From a29fc35ba1571662663a7675119e4949cf443cc5 Mon Sep 17 00:00:00 2001 From: may Date: Thu, 6 Mar 2025 09:07:06 +0100 Subject: [PATCH] chore: tree-sitter generate --- src/grammar.json | 41 + src/node-types.json | 4 + src/parser.c | 270101 +++++++++++++++++++++-------------------- 3 files changed, 136332 insertions(+), 133814 deletions(-) diff --git a/src/grammar.json b/src/grammar.json index 29be325..f83bfb5 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -1287,6 +1287,18 @@ "foreign_mod_item": { "type": "SEQ", "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "unsafe" + }, + { + "type": "BLANK" + } + ] + }, { "type": "CHOICE", "members": [ @@ -2117,6 +2129,27 @@ } ] }, + { + "type": "CHOICE", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "unsafe" + }, + { + "type": "STRING", + "value": "safe" + } + ] + }, + { + "type": "BLANK" + } + ] + }, { "type": "STRING", "value": "static" @@ -2536,6 +2569,10 @@ "type": "STRING", "value": "unsafe" }, + { + "type": "STRING", + "value": "safe" + }, { "type": "SYMBOL", "name": "extern_modifier" @@ -9659,6 +9696,10 @@ [ "visibility_modifier" ], + [ + "foreign_mod_item", + "function_modifiers" + ], [ "visibility_modifier", "scoped_identifier", diff --git a/src/node-types.json b/src/node-types.json index b4492a1..6b4b38a 100644 --- a/src/node-types.json +++ b/src/node-types.json @@ -5427,6 +5427,10 @@ "type": "return", "named": false }, + { + "type": "safe", + "named": false + }, { "type": "self", "named": true diff --git a/src/parser.c b/src/parser.c index dc4632d..33322a0 100644 --- a/src/parser.c +++ b/src/parser.c @@ -7,16 +7,16 @@ #endif #define LANGUAGE_VERSION 14 -#define STATE_COUNT 3747 -#define LARGE_STATE_COUNT 1034 -#define SYMBOL_COUNT 349 +#define STATE_COUNT 3782 +#define LARGE_STATE_COUNT 1042 +#define SYMBOL_COUNT 350 #define ALIAS_COUNT 4 -#define TOKEN_COUNT 155 +#define TOKEN_COUNT 156 #define EXTERNAL_TOKEN_COUNT 10 #define FIELD_COUNT 31 -#define MAX_ALIAS_SEQUENCE_LENGTH 10 +#define MAX_ALIAS_SEQUENCE_LENGTH 11 #define MAX_RESERVED_WORD_SET_SIZE 0 -#define PRODUCTION_ID_COUNT 293 +#define PRODUCTION_ID_COUNT 295 #define SUPERTYPE_COUNT 0 enum ts_symbol_identifiers { @@ -134,244 +134,245 @@ enum ts_symbol_identifiers { anon_sym_where = 112, anon_sym_while = 113, anon_sym_extern = 114, - anon_sym_ref = 115, - anon_sym_else = 116, - anon_sym_in = 117, - anon_sym_LT2 = 118, - anon_sym_dyn = 119, - sym_mutable_specifier = 120, - anon_sym_raw = 121, - anon_sym_yield = 122, - anon_sym_move = 123, - anon_sym_try = 124, - sym_integer_literal = 125, - aux_sym_string_literal_token1 = 126, - anon_sym_DQUOTE = 127, - sym_char_literal = 128, - sym_escape_sequence = 129, - anon_sym_true = 130, - anon_sym_false = 131, - anon_sym_SLASH_SLASH = 132, - aux_sym_line_comment_token1 = 133, - aux_sym_line_comment_token2 = 134, - aux_sym_line_comment_token3 = 135, - anon_sym_BANG2 = 136, - anon_sym_SLASH2 = 137, - anon_sym_SLASH_STAR = 138, - anon_sym_STAR_SLASH = 139, - sym_shebang = 140, - sym_self = 141, - sym_super = 142, - sym_crate = 143, - sym_metavariable = 144, - sym_string_content = 145, - sym__raw_string_literal_start = 146, - sym_raw_string_literal_content = 147, - sym__raw_string_literal_end = 148, - sym_float_literal = 149, - sym__outer_block_doc_comment_marker = 150, - sym__inner_block_doc_comment_marker = 151, - sym__block_comment_content = 152, - sym__line_doc_content = 153, - sym__error_sentinel = 154, - sym_source_file = 155, - sym__statement = 156, - sym_empty_statement = 157, - sym_expression_statement = 158, - sym_macro_definition = 159, - sym_macro_rule = 160, - sym__token_pattern = 161, - sym_token_tree_pattern = 162, - sym_token_binding_pattern = 163, - sym_token_repetition_pattern = 164, - sym_fragment_specifier = 165, - sym_token_tree = 166, - sym_token_repetition = 167, - sym_attribute_item = 168, - sym_inner_attribute_item = 169, - sym_attribute = 170, - sym_mod_item = 171, - sym_foreign_mod_item = 172, - sym_declaration_list = 173, - sym_struct_item = 174, - sym_union_item = 175, - sym_enum_item = 176, - sym_enum_variant_list = 177, - sym_enum_variant = 178, - sym_field_declaration_list = 179, - sym_field_declaration = 180, - sym_ordered_field_declaration_list = 181, - sym_extern_crate_declaration = 182, - sym_const_item = 183, - sym_static_item = 184, - sym_type_item = 185, - sym_function_item = 186, - sym_function_signature_item = 187, - sym_function_modifiers = 188, - sym_where_clause = 189, - sym_where_predicate = 190, - sym_impl_item = 191, - sym_trait_item = 192, - sym_associated_type = 193, - sym_trait_bounds = 194, - sym_higher_ranked_trait_bound = 195, - sym_removed_trait_bound = 196, - sym_type_parameters = 197, - sym_const_parameter = 198, - sym_type_parameter = 199, - sym_lifetime_parameter = 200, - sym_let_declaration = 201, - sym_use_declaration = 202, - sym__use_clause = 203, - sym_scoped_use_list = 204, - sym_use_list = 205, - sym_use_as_clause = 206, - sym_use_wildcard = 207, - sym_parameters = 208, - sym_self_parameter = 209, - sym_variadic_parameter = 210, - sym_parameter = 211, - sym_extern_modifier = 212, - sym_visibility_modifier = 213, - sym__type = 214, - sym_bracketed_type = 215, - sym_qualified_type = 216, - sym_lifetime = 217, - sym_array_type = 218, - sym_for_lifetimes = 219, - sym_function_type = 220, - sym_tuple_type = 221, - sym_unit_type = 222, - sym_generic_function = 223, - sym_generic_type = 224, - sym_generic_type_with_turbofish = 225, - sym_bounded_type = 226, - sym_use_bounds = 227, - sym_type_arguments = 228, - sym_type_binding = 229, - sym_reference_type = 230, - sym_pointer_type = 231, - sym_never_type = 232, - sym_abstract_type = 233, - sym_dynamic_type = 234, - sym__expression_except_range = 235, - sym__expression = 236, - sym_macro_invocation = 237, - sym_delim_token_tree = 238, - sym__delim_tokens = 239, - sym__non_delim_token = 240, - sym_scoped_identifier = 241, - sym_scoped_type_identifier_in_expression_position = 242, - sym_scoped_type_identifier = 243, - sym_range_expression = 244, - sym_unary_expression = 245, - sym_try_expression = 246, - sym_reference_expression = 247, - sym_binary_expression = 248, - sym_assignment_expression = 249, - sym_compound_assignment_expr = 250, - sym_type_cast_expression = 251, - sym_return_expression = 252, - sym_yield_expression = 253, - sym_call_expression = 254, - sym_arguments = 255, - sym_array_expression = 256, - sym_parenthesized_expression = 257, - sym_tuple_expression = 258, - sym_unit_expression = 259, - sym_struct_expression = 260, - sym_field_initializer_list = 261, - sym_shorthand_field_initializer = 262, - sym_field_initializer = 263, - sym_base_field_initializer = 264, - sym_if_expression = 265, - sym_let_condition = 266, - sym__let_chain = 267, - sym__condition = 268, - sym_else_clause = 269, - sym_match_expression = 270, - sym_match_block = 271, - sym_match_arm = 272, - sym_last_match_arm = 273, - sym_match_pattern = 274, - sym_while_expression = 275, - sym_loop_expression = 276, - sym_for_expression = 277, - sym_const_block = 278, - sym_closure_expression = 279, - sym_closure_parameters = 280, - sym_label = 281, - sym_break_expression = 282, - sym_continue_expression = 283, - sym_index_expression = 284, - sym_await_expression = 285, - sym_field_expression = 286, - sym_unsafe_block = 287, - sym_async_block = 288, - sym_gen_block = 289, - sym_try_block = 290, - sym_block = 291, - sym__pattern = 292, - sym_generic_pattern = 293, - sym_tuple_pattern = 294, - sym_slice_pattern = 295, - sym_tuple_struct_pattern = 296, - sym_struct_pattern = 297, - sym_field_pattern = 298, - sym_remaining_field_pattern = 299, - sym_mut_pattern = 300, - sym_range_pattern = 301, - sym_ref_pattern = 302, - sym_captured_pattern = 303, - sym_reference_pattern = 304, - sym_or_pattern = 305, - sym__literal = 306, - sym__literal_pattern = 307, - sym_negative_literal = 308, - sym_string_literal = 309, - sym_raw_string_literal = 310, - sym_boolean_literal = 311, - sym_line_comment = 312, - sym__line_doc_comment_marker = 313, - sym__inner_line_doc_comment_marker = 314, - sym__outer_line_doc_comment_marker = 315, - sym_block_comment = 316, - sym__block_doc_comment_marker = 317, - aux_sym_source_file_repeat1 = 318, - aux_sym_macro_definition_repeat1 = 319, - aux_sym_token_tree_pattern_repeat1 = 320, - aux_sym_token_tree_repeat1 = 321, - aux_sym__non_special_token_repeat1 = 322, - aux_sym_declaration_list_repeat1 = 323, - aux_sym_enum_variant_list_repeat1 = 324, - aux_sym_enum_variant_list_repeat2 = 325, - aux_sym_field_declaration_list_repeat1 = 326, - aux_sym_ordered_field_declaration_list_repeat1 = 327, - aux_sym_function_modifiers_repeat1 = 328, - aux_sym_where_clause_repeat1 = 329, - aux_sym_trait_bounds_repeat1 = 330, - aux_sym_type_parameters_repeat1 = 331, - aux_sym_use_list_repeat1 = 332, - aux_sym_parameters_repeat1 = 333, - aux_sym_for_lifetimes_repeat1 = 334, - aux_sym_tuple_type_repeat1 = 335, - aux_sym_use_bounds_repeat1 = 336, - aux_sym_type_arguments_repeat1 = 337, - aux_sym_delim_token_tree_repeat1 = 338, - aux_sym_arguments_repeat1 = 339, - aux_sym_tuple_expression_repeat1 = 340, - aux_sym_field_initializer_list_repeat1 = 341, - aux_sym_match_block_repeat1 = 342, - aux_sym_match_arm_repeat1 = 343, - aux_sym_closure_parameters_repeat1 = 344, - aux_sym_tuple_pattern_repeat1 = 345, - aux_sym_slice_pattern_repeat1 = 346, - aux_sym_struct_pattern_repeat1 = 347, - aux_sym_string_literal_repeat1 = 348, - alias_sym_field_identifier = 349, - alias_sym_let_chain = 350, - alias_sym_shorthand_field_identifier = 351, - alias_sym_type_identifier = 352, + anon_sym_safe = 115, + anon_sym_ref = 116, + anon_sym_else = 117, + anon_sym_in = 118, + anon_sym_LT2 = 119, + anon_sym_dyn = 120, + sym_mutable_specifier = 121, + anon_sym_raw = 122, + anon_sym_yield = 123, + anon_sym_move = 124, + anon_sym_try = 125, + sym_integer_literal = 126, + aux_sym_string_literal_token1 = 127, + anon_sym_DQUOTE = 128, + sym_char_literal = 129, + sym_escape_sequence = 130, + anon_sym_true = 131, + anon_sym_false = 132, + anon_sym_SLASH_SLASH = 133, + aux_sym_line_comment_token1 = 134, + aux_sym_line_comment_token2 = 135, + aux_sym_line_comment_token3 = 136, + anon_sym_BANG2 = 137, + anon_sym_SLASH2 = 138, + anon_sym_SLASH_STAR = 139, + anon_sym_STAR_SLASH = 140, + sym_shebang = 141, + sym_self = 142, + sym_super = 143, + sym_crate = 144, + sym_metavariable = 145, + sym_string_content = 146, + sym__raw_string_literal_start = 147, + sym_raw_string_literal_content = 148, + sym__raw_string_literal_end = 149, + sym_float_literal = 150, + sym__outer_block_doc_comment_marker = 151, + sym__inner_block_doc_comment_marker = 152, + sym__block_comment_content = 153, + sym__line_doc_content = 154, + sym__error_sentinel = 155, + sym_source_file = 156, + sym__statement = 157, + sym_empty_statement = 158, + sym_expression_statement = 159, + sym_macro_definition = 160, + sym_macro_rule = 161, + sym__token_pattern = 162, + sym_token_tree_pattern = 163, + sym_token_binding_pattern = 164, + sym_token_repetition_pattern = 165, + sym_fragment_specifier = 166, + sym_token_tree = 167, + sym_token_repetition = 168, + sym_attribute_item = 169, + sym_inner_attribute_item = 170, + sym_attribute = 171, + sym_mod_item = 172, + sym_foreign_mod_item = 173, + sym_declaration_list = 174, + sym_struct_item = 175, + sym_union_item = 176, + sym_enum_item = 177, + sym_enum_variant_list = 178, + sym_enum_variant = 179, + sym_field_declaration_list = 180, + sym_field_declaration = 181, + sym_ordered_field_declaration_list = 182, + sym_extern_crate_declaration = 183, + sym_const_item = 184, + sym_static_item = 185, + sym_type_item = 186, + sym_function_item = 187, + sym_function_signature_item = 188, + sym_function_modifiers = 189, + sym_where_clause = 190, + sym_where_predicate = 191, + sym_impl_item = 192, + sym_trait_item = 193, + sym_associated_type = 194, + sym_trait_bounds = 195, + sym_higher_ranked_trait_bound = 196, + sym_removed_trait_bound = 197, + sym_type_parameters = 198, + sym_const_parameter = 199, + sym_type_parameter = 200, + sym_lifetime_parameter = 201, + sym_let_declaration = 202, + sym_use_declaration = 203, + sym__use_clause = 204, + sym_scoped_use_list = 205, + sym_use_list = 206, + sym_use_as_clause = 207, + sym_use_wildcard = 208, + sym_parameters = 209, + sym_self_parameter = 210, + sym_variadic_parameter = 211, + sym_parameter = 212, + sym_extern_modifier = 213, + sym_visibility_modifier = 214, + sym__type = 215, + sym_bracketed_type = 216, + sym_qualified_type = 217, + sym_lifetime = 218, + sym_array_type = 219, + sym_for_lifetimes = 220, + sym_function_type = 221, + sym_tuple_type = 222, + sym_unit_type = 223, + sym_generic_function = 224, + sym_generic_type = 225, + sym_generic_type_with_turbofish = 226, + sym_bounded_type = 227, + sym_use_bounds = 228, + sym_type_arguments = 229, + sym_type_binding = 230, + sym_reference_type = 231, + sym_pointer_type = 232, + sym_never_type = 233, + sym_abstract_type = 234, + sym_dynamic_type = 235, + sym__expression_except_range = 236, + sym__expression = 237, + sym_macro_invocation = 238, + sym_delim_token_tree = 239, + sym__delim_tokens = 240, + sym__non_delim_token = 241, + sym_scoped_identifier = 242, + sym_scoped_type_identifier_in_expression_position = 243, + sym_scoped_type_identifier = 244, + sym_range_expression = 245, + sym_unary_expression = 246, + sym_try_expression = 247, + sym_reference_expression = 248, + sym_binary_expression = 249, + sym_assignment_expression = 250, + sym_compound_assignment_expr = 251, + sym_type_cast_expression = 252, + sym_return_expression = 253, + sym_yield_expression = 254, + sym_call_expression = 255, + sym_arguments = 256, + sym_array_expression = 257, + sym_parenthesized_expression = 258, + sym_tuple_expression = 259, + sym_unit_expression = 260, + sym_struct_expression = 261, + sym_field_initializer_list = 262, + sym_shorthand_field_initializer = 263, + sym_field_initializer = 264, + sym_base_field_initializer = 265, + sym_if_expression = 266, + sym_let_condition = 267, + sym__let_chain = 268, + sym__condition = 269, + sym_else_clause = 270, + sym_match_expression = 271, + sym_match_block = 272, + sym_match_arm = 273, + sym_last_match_arm = 274, + sym_match_pattern = 275, + sym_while_expression = 276, + sym_loop_expression = 277, + sym_for_expression = 278, + sym_const_block = 279, + sym_closure_expression = 280, + sym_closure_parameters = 281, + sym_label = 282, + sym_break_expression = 283, + sym_continue_expression = 284, + sym_index_expression = 285, + sym_await_expression = 286, + sym_field_expression = 287, + sym_unsafe_block = 288, + sym_async_block = 289, + sym_gen_block = 290, + sym_try_block = 291, + sym_block = 292, + sym__pattern = 293, + sym_generic_pattern = 294, + sym_tuple_pattern = 295, + sym_slice_pattern = 296, + sym_tuple_struct_pattern = 297, + sym_struct_pattern = 298, + sym_field_pattern = 299, + sym_remaining_field_pattern = 300, + sym_mut_pattern = 301, + sym_range_pattern = 302, + sym_ref_pattern = 303, + sym_captured_pattern = 304, + sym_reference_pattern = 305, + sym_or_pattern = 306, + sym__literal = 307, + sym__literal_pattern = 308, + sym_negative_literal = 309, + sym_string_literal = 310, + sym_raw_string_literal = 311, + sym_boolean_literal = 312, + sym_line_comment = 313, + sym__line_doc_comment_marker = 314, + sym__inner_line_doc_comment_marker = 315, + sym__outer_line_doc_comment_marker = 316, + sym_block_comment = 317, + sym__block_doc_comment_marker = 318, + aux_sym_source_file_repeat1 = 319, + aux_sym_macro_definition_repeat1 = 320, + aux_sym_token_tree_pattern_repeat1 = 321, + aux_sym_token_tree_repeat1 = 322, + aux_sym__non_special_token_repeat1 = 323, + aux_sym_declaration_list_repeat1 = 324, + aux_sym_enum_variant_list_repeat1 = 325, + aux_sym_enum_variant_list_repeat2 = 326, + aux_sym_field_declaration_list_repeat1 = 327, + aux_sym_ordered_field_declaration_list_repeat1 = 328, + aux_sym_function_modifiers_repeat1 = 329, + aux_sym_where_clause_repeat1 = 330, + aux_sym_trait_bounds_repeat1 = 331, + aux_sym_type_parameters_repeat1 = 332, + aux_sym_use_list_repeat1 = 333, + aux_sym_parameters_repeat1 = 334, + aux_sym_for_lifetimes_repeat1 = 335, + aux_sym_tuple_type_repeat1 = 336, + aux_sym_use_bounds_repeat1 = 337, + aux_sym_type_arguments_repeat1 = 338, + aux_sym_delim_token_tree_repeat1 = 339, + aux_sym_arguments_repeat1 = 340, + aux_sym_tuple_expression_repeat1 = 341, + aux_sym_field_initializer_list_repeat1 = 342, + aux_sym_match_block_repeat1 = 343, + aux_sym_match_arm_repeat1 = 344, + aux_sym_closure_parameters_repeat1 = 345, + aux_sym_tuple_pattern_repeat1 = 346, + aux_sym_slice_pattern_repeat1 = 347, + aux_sym_struct_pattern_repeat1 = 348, + aux_sym_string_literal_repeat1 = 349, + alias_sym_field_identifier = 350, + alias_sym_let_chain = 351, + alias_sym_shorthand_field_identifier = 352, + alias_sym_type_identifier = 353, }; static const char * const ts_symbol_names[] = { @@ -490,6 +491,7 @@ static const char * const ts_symbol_names[] = { [anon_sym_where] = "where", [anon_sym_while] = "while", [anon_sym_extern] = "extern", + [anon_sym_safe] = "safe", [anon_sym_ref] = "ref", [anon_sym_else] = "else", [anon_sym_in] = "in", @@ -846,6 +848,7 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_where] = anon_sym_where, [anon_sym_while] = anon_sym_while, [anon_sym_extern] = anon_sym_extern, + [anon_sym_safe] = anon_sym_safe, [anon_sym_ref] = anon_sym_ref, [anon_sym_else] = anon_sym_else, [anon_sym_in] = anon_sym_in, @@ -1547,6 +1550,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, + [anon_sym_safe] = { + .visible = true, + .named = false, + }, [anon_sym_ref] = { .visible = true, .named = false, @@ -2616,13 +2623,13 @@ static const TSMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { [41] = {.index = 39, .length = 2}, [42] = {.index = 41, .length = 1}, [43] = {.index = 42, .length = 1}, - [44] = {.index = 43, .length = 2}, - [45] = {.index = 28, .length = 1}, - [46] = {.index = 16, .length = 2}, + [44] = {.index = 43, .length = 1}, + [45] = {.index = 44, .length = 2}, + [46] = {.index = 28, .length = 1}, [47] = {.index = 16, .length = 2}, - [48] = {.index = 45, .length = 2}, - [49] = {.index = 47, .length = 2}, - [50] = {.index = 49, .length = 1}, + [48] = {.index = 16, .length = 2}, + [49] = {.index = 46, .length = 2}, + [50] = {.index = 48, .length = 2}, [51] = {.index = 16, .length = 2}, [52] = {.index = 16, .length = 2}, [53] = {.index = 50, .length = 3}, @@ -2630,7 +2637,7 @@ static const TSMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { [55] = {.index = 55, .length = 2}, [56] = {.index = 55, .length = 2}, [57] = {.index = 57, .length = 2}, - [58] = {.index = 47, .length = 2}, + [58] = {.index = 48, .length = 2}, [59] = {.index = 11, .length = 3}, [60] = {.index = 3, .length = 1}, [61] = {.index = 59, .length = 1}, @@ -2668,16 +2675,16 @@ static const TSMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { [93] = {.index = 102, .length = 2}, [94] = {.index = 104, .length = 2}, [95] = {.index = 106, .length = 2}, - [96] = {.index = 108, .length = 2}, - [97] = {.index = 110, .length = 2}, - [98] = {.index = 108, .length = 2}, - [99] = {.index = 110, .length = 2}, - [100] = {.index = 112, .length = 1}, - [101] = {.index = 106, .length = 2}, - [102] = {.index = 112, .length = 1}, + [96] = {.index = 108, .length = 1}, + [97] = {.index = 109, .length = 2}, + [98] = {.index = 111, .length = 2}, + [99] = {.index = 109, .length = 2}, + [100] = {.index = 111, .length = 2}, + [101] = {.index = 113, .length = 1}, + [102] = {.index = 106, .length = 2}, [103] = {.index = 113, .length = 1}, - [104] = {.index = 114, .length = 3}, - [105] = {.index = 117, .length = 1}, + [104] = {.index = 114, .length = 1}, + [105] = {.index = 115, .length = 3}, [106] = {.index = 118, .length = 1}, [107] = {.index = 119, .length = 2}, [108] = {.index = 3, .length = 1}, @@ -2726,7 +2733,7 @@ static const TSMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { [152] = {.index = 203, .length = 2}, [153] = {.index = 205, .length = 1}, [154] = {.index = 206, .length = 2}, - [155] = {.index = 112, .length = 1}, + [155] = {.index = 113, .length = 1}, [156] = {.index = 208, .length = 2}, [157] = {.index = 210, .length = 2}, [158] = {.index = 212, .length = 1}, @@ -2842,10 +2849,10 @@ static const TSMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { [270] = {.index = 465, .length = 4}, [271] = {.index = 469, .length = 4}, [272] = {.index = 469, .length = 4}, - [273] = {.index = 473, .length = 4}, - [274] = {.index = 477, .length = 5}, - [275] = {.index = 482, .length = 4}, - [276] = {.index = 486, .length = 2}, + [273] = {.index = 473, .length = 2}, + [274] = {.index = 475, .length = 4}, + [275] = {.index = 479, .length = 5}, + [276] = {.index = 484, .length = 4}, [277] = {.index = 488, .length = 3}, [278] = {.index = 491, .length = 4}, [279] = {.index = 495, .length = 4}, @@ -2856,12 +2863,14 @@ static const TSMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { [284] = {.index = 513, .length = 4}, [285] = {.index = 513, .length = 4}, [286] = {.index = 517, .length = 5}, - [287] = {.index = 522, .length = 4}, - [288] = {.index = 526, .length = 5}, - [289] = {.index = 531, .length = 4}, - [290] = {.index = 535, .length = 4}, - [291] = {.index = 539, .length = 3}, - [292] = {.index = 542, .length = 5}, + [287] = {.index = 522, .length = 2}, + [288] = {.index = 524, .length = 4}, + [289] = {.index = 528, .length = 5}, + [290] = {.index = 533, .length = 4}, + [291] = {.index = 537, .length = 4}, + [292] = {.index = 541, .length = 3}, + [293] = {.index = 544, .length = 5}, + [294] = {.index = 549, .length = 3}, }; static const TSFieldMapEntry ts_field_map_entries[] = { @@ -2934,20 +2943,20 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_body, 2}, {field_parameters, 1}, [41] = - {field_list, 1}, + {field_body, 2}, [42] = - {field_argument, 1}, + {field_list, 1}, [43] = + {field_argument, 1}, + [44] = {field_body, 2}, {field_condition, 1}, - [45] = + [46] = {field_function, 0}, {field_type_arguments, 2}, - [47] = + [48] = {field_type, 0}, {field_type_arguments, 2}, - [49] = - {field_body, 2}, [50] = {field_left, 0}, {field_operator, 1}, @@ -3037,21 +3046,21 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_body, 3}, {field_name, 2}, [108] = + {field_body, 3}, + [109] = {field_list, 2}, {field_path, 0}, - [110] = + [111] = {field_alias, 2}, {field_path, 0}, - [112] = - {field_name, 2}, [113] = - {field_argument, 2}, + {field_name, 2}, [114] = + {field_argument, 2}, + [115] = {field_body, 3}, {field_parameters, 0}, {field_return_type, 2}, - [117] = - {field_body, 3}, [118] = {field_length, 3}, [119] = @@ -3538,24 +3547,24 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_type, 5}, {field_type_parameters, 2}, [473] = + {field_name, 4}, + {field_type, 6}, + [475] = {field_name, 2}, {field_parameters, 4}, {field_return_type, 6}, {field_type_parameters, 3}, - [477] = + [479] = {field_body, 7}, {field_name, 2}, {field_parameters, 4}, {field_return_type, 6}, {field_type_parameters, 3}, - [482] = + [484] = {field_body, 7}, {field_name, 2}, {field_parameters, 3}, {field_return_type, 5}, - [486] = - {field_name, 4}, - {field_type, 6}, [488] = {field_name, 2}, {field_type, 6}, @@ -3600,36 +3609,43 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_return_type, 6}, {field_type_parameters, 3}, [522] = + {field_name, 5}, + {field_type, 7}, + [524] = {field_name, 3}, {field_parameters, 5}, {field_return_type, 7}, {field_type_parameters, 4}, - [526] = + [528] = {field_body, 8}, {field_name, 3}, {field_parameters, 5}, {field_return_type, 7}, {field_type_parameters, 4}, - [531] = + [533] = {field_body, 8}, {field_name, 3}, {field_parameters, 4}, {field_return_type, 6}, - [535] = + [537] = {field_alternative, 8}, {field_pattern, 2}, {field_type, 4}, {field_value, 6}, - [539] = + [541] = {field_name, 4}, {field_type, 6}, {field_value, 8}, - [542] = + [544] = {field_body, 9}, {field_name, 3}, {field_parameters, 5}, {field_return_type, 7}, {field_type_parameters, 4}, + [549] = + {field_name, 5}, + {field_type, 7}, + {field_value, 9}, }; static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE_LENGTH] = { @@ -3683,10 +3699,10 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE [35] = { [0] = alias_sym_type_identifier, }, - [47] = { + [48] = { [2] = alias_sym_type_identifier, }, - [49] = { + [50] = { [0] = alias_sym_type_identifier, }, [51] = { @@ -3751,13 +3767,13 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE [95] = { [2] = alias_sym_type_identifier, }, - [96] = { + [97] = { [0] = sym_identifier, }, - [97] = { + [98] = { [0] = sym_identifier, }, - [102] = { + [103] = { [2] = alias_sym_type_identifier, }, [108] = { @@ -4024,35 +4040,35 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [35] = 35, [36] = 36, [37] = 37, - [38] = 36, + [38] = 38, [39] = 37, [40] = 40, - [41] = 41, + [41] = 36, [42] = 42, [43] = 35, - [44] = 42, - [45] = 35, - [46] = 41, - [47] = 40, + [44] = 35, + [45] = 38, + [46] = 40, + [47] = 42, [48] = 36, [49] = 37, [50] = 36, - [51] = 37, - [52] = 35, - [53] = 36, - [54] = 42, - [55] = 40, - [56] = 41, - [57] = 42, - [58] = 36, - [59] = 41, - [60] = 40, - [61] = 37, - [62] = 36, + [51] = 35, + [52] = 37, + [53] = 37, + [54] = 37, + [55] = 36, + [56] = 42, + [57] = 38, + [58] = 40, + [59] = 36, + [60] = 42, + [61] = 38, + [62] = 40, [63] = 37, [64] = 37, [65] = 36, - [66] = 37, + [66] = 36, [67] = 67, [68] = 68, [69] = 69, @@ -4064,73 +4080,73 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [75] = 75, [76] = 76, [77] = 77, - [78] = 74, - [79] = 72, - [80] = 71, + [78] = 69, + [79] = 71, + [80] = 68, [81] = 75, [82] = 76, [83] = 77, [84] = 84, - [85] = 84, + [85] = 85, [86] = 86, [87] = 87, - [88] = 88, + [88] = 84, [89] = 89, - [90] = 90, - [91] = 88, + [90] = 87, + [91] = 84, [92] = 89, - [93] = 90, + [93] = 93, [94] = 94, [95] = 95, [96] = 96, - [97] = 84, - [98] = 98, - [99] = 99, + [97] = 97, + [98] = 96, + [99] = 97, [100] = 100, - [101] = 86, - [102] = 87, - [103] = 94, - [104] = 98, - [105] = 105, - [106] = 88, - [107] = 89, - [108] = 90, - [109] = 95, - [110] = 96, - [111] = 84, - [112] = 112, - [113] = 100, - [114] = 88, + [101] = 101, + [102] = 85, + [103] = 86, + [104] = 87, + [105] = 84, + [106] = 89, + [107] = 100, + [108] = 93, + [109] = 94, + [110] = 95, + [111] = 111, + [112] = 101, + [113] = 87, + [114] = 84, [115] = 89, - [116] = 90, - [117] = 95, - [118] = 96, - [119] = 84, - [120] = 88, + [116] = 93, + [117] = 94, + [118] = 95, + [119] = 87, + [120] = 84, [121] = 89, - [122] = 90, - [123] = 95, - [124] = 96, - [125] = 88, + [122] = 93, + [123] = 94, + [124] = 95, + [125] = 87, [126] = 89, - [127] = 90, - [128] = 95, - [129] = 95, - [130] = 96, - [131] = 84, - [132] = 96, - [133] = 99, + [127] = 93, + [128] = 93, + [129] = 94, + [130] = 95, + [131] = 94, + [132] = 95, + [133] = 133, [134] = 134, [135] = 135, - [136] = 134, + [136] = 136, [137] = 137, - [138] = 135, - [139] = 139, + [138] = 138, + [139] = 134, [140] = 140, - [141] = 141, - [142] = 139, - [143] = 143, - [144] = 137, + [141] = 140, + [142] = 142, + [143] = 137, + [144] = 138, [145] = 145, [146] = 146, [147] = 147, @@ -4141,109 +4157,109 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [152] = 152, [153] = 153, [154] = 154, - [155] = 147, + [155] = 155, [156] = 156, [157] = 157, [158] = 158, - [159] = 159, + [159] = 147, [160] = 160, - [161] = 161, + [161] = 142, [162] = 162, [163] = 163, - [164] = 164, - [165] = 165, + [164] = 153, + [165] = 154, [166] = 166, [167] = 167, - [168] = 152, - [169] = 153, + [168] = 168, + [169] = 169, [170] = 170, [171] = 171, - [172] = 165, - [173] = 173, + [172] = 172, + [173] = 160, [174] = 174, [175] = 175, - [176] = 176, - [177] = 158, - [178] = 178, - [179] = 164, + [176] = 155, + [177] = 177, + [178] = 152, + [179] = 179, [180] = 180, - [181] = 181, + [181] = 149, [182] = 182, [183] = 183, - [184] = 160, - [185] = 151, + [184] = 184, + [185] = 156, [186] = 186, - [187] = 157, - [188] = 145, - [189] = 143, - [190] = 173, - [191] = 157, - [192] = 145, - [193] = 173, - [194] = 157, - [195] = 145, - [196] = 173, + [187] = 187, + [188] = 186, + [189] = 175, + [190] = 169, + [191] = 186, + [192] = 175, + [193] = 169, + [194] = 186, + [195] = 175, + [196] = 169, [197] = 197, - [198] = 178, - [199] = 180, - [200] = 182, - [201] = 201, - [202] = 202, - [203] = 203, + [198] = 198, + [199] = 199, + [200] = 200, + [201] = 174, + [202] = 157, + [203] = 179, [204] = 204, - [205] = 159, + [205] = 205, [206] = 206, - [207] = 207, + [207] = 182, [208] = 208, [209] = 209, - [210] = 210, - [211] = 203, - [212] = 175, - [213] = 201, - [214] = 176, + [210] = 183, + [211] = 206, + [212] = 177, + [213] = 213, + [214] = 213, [215] = 215, - [216] = 215, + [216] = 216, [217] = 217, - [218] = 215, + [218] = 217, [219] = 219, [220] = 220, - [221] = 221, - [222] = 220, - [223] = 221, - [224] = 220, - [225] = 221, + [221] = 220, + [222] = 222, + [223] = 222, + [224] = 222, + [225] = 225, [226] = 226, [227] = 227, - [228] = 228, - [229] = 228, - [230] = 215, - [231] = 226, - [232] = 220, - [233] = 228, - [234] = 227, - [235] = 217, + [228] = 217, + [229] = 220, + [230] = 227, + [231] = 231, + [232] = 217, + [233] = 220, + [234] = 222, + [235] = 220, [236] = 236, - [237] = 236, - [238] = 220, - [239] = 228, - [240] = 240, - [241] = 221, - [242] = 242, - [243] = 242, - [244] = 228, - [245] = 219, - [246] = 215, + [237] = 222, + [238] = 236, + [239] = 231, + [240] = 236, + [241] = 219, + [242] = 225, + [243] = 236, + [244] = 215, + [245] = 226, + [246] = 236, [247] = 247, [248] = 248, - [249] = 249, - [250] = 250, - [251] = 251, + [249] = 247, + [250] = 248, + [251] = 248, [252] = 252, - [253] = 253, + [253] = 247, [254] = 254, [255] = 255, [256] = 256, - [257] = 257, + [257] = 255, [258] = 258, [259] = 259, [260] = 260, @@ -4261,7 +4277,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [272] = 272, [273] = 273, [274] = 274, - [275] = 275, + [275] = 254, [276] = 276, [277] = 277, [278] = 278, @@ -4271,133 +4287,133 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [282] = 282, [283] = 283, [284] = 284, - [285] = 280, + [285] = 285, [286] = 286, - [287] = 259, - [288] = 261, - [289] = 262, - [290] = 247, - [291] = 263, - [292] = 264, - [293] = 265, - [294] = 272, - [295] = 273, - [296] = 274, - [297] = 275, - [298] = 276, - [299] = 284, - [300] = 300, - [301] = 301, - [302] = 302, - [303] = 286, - [304] = 259, - [305] = 261, - [306] = 262, - [307] = 247, - [308] = 263, - [309] = 264, - [310] = 265, - [311] = 272, - [312] = 273, - [313] = 274, - [314] = 275, - [315] = 276, - [316] = 316, - [317] = 284, - [318] = 286, - [319] = 319, - [320] = 286, - [321] = 321, - [322] = 259, - [323] = 261, - [324] = 262, - [325] = 247, - [326] = 263, - [327] = 264, - [328] = 265, - [329] = 272, - [330] = 273, - [331] = 274, - [332] = 275, - [333] = 276, - [334] = 284, - [335] = 276, - [336] = 276, - [337] = 276, - [338] = 276, - [339] = 339, - [340] = 280, - [341] = 301, + [287] = 287, + [288] = 288, + [289] = 289, + [290] = 290, + [291] = 291, + [292] = 292, + [293] = 293, + [294] = 294, + [295] = 295, + [296] = 296, + [297] = 277, + [298] = 278, + [299] = 279, + [300] = 280, + [301] = 281, + [302] = 282, + [303] = 283, + [304] = 284, + [305] = 285, + [306] = 286, + [307] = 287, + [308] = 288, + [309] = 289, + [310] = 310, + [311] = 290, + [312] = 312, + [313] = 278, + [314] = 279, + [315] = 280, + [316] = 281, + [317] = 282, + [318] = 283, + [319] = 277, + [320] = 284, + [321] = 285, + [322] = 278, + [323] = 279, + [324] = 280, + [325] = 325, + [326] = 282, + [327] = 283, + [328] = 284, + [329] = 285, + [330] = 286, + [331] = 287, + [332] = 288, + [333] = 289, + [334] = 290, + [335] = 292, + [336] = 289, + [337] = 337, + [338] = 289, + [339] = 289, + [340] = 289, + [341] = 254, [342] = 342, [343] = 343, - [344] = 250, - [345] = 280, + [344] = 286, + [345] = 287, [346] = 346, - [347] = 347, - [348] = 301, - [349] = 250, - [350] = 300, - [351] = 351, - [352] = 302, - [353] = 255, - [354] = 281, - [355] = 316, - [356] = 321, - [357] = 342, - [358] = 343, - [359] = 351, - [360] = 251, - [361] = 253, - [362] = 256, - [363] = 260, - [364] = 268, - [365] = 270, - [366] = 271, - [367] = 279, - [368] = 283, - [369] = 302, - [370] = 316, - [371] = 343, - [372] = 260, - [373] = 302, - [374] = 316, - [375] = 260, - [376] = 376, - [377] = 377, - [378] = 378, - [379] = 379, - [380] = 380, - [381] = 381, - [382] = 377, - [383] = 376, - [384] = 384, - [385] = 377, - [386] = 376, - [387] = 384, - [388] = 384, - [389] = 389, - [390] = 390, - [391] = 391, + [347] = 288, + [348] = 289, + [349] = 349, + [350] = 350, + [351] = 259, + [352] = 277, + [353] = 353, + [354] = 268, + [355] = 290, + [356] = 254, + [357] = 346, + [358] = 358, + [359] = 346, + [360] = 259, + [361] = 268, + [362] = 362, + [363] = 363, + [364] = 364, + [365] = 365, + [366] = 291, + [367] = 293, + [368] = 350, + [369] = 258, + [370] = 267, + [371] = 371, + [372] = 294, + [373] = 296, + [374] = 337, + [375] = 358, + [376] = 363, + [377] = 365, + [378] = 255, + [379] = 262, + [380] = 264, + [381] = 265, + [382] = 271, + [383] = 273, + [384] = 274, + [385] = 291, + [386] = 258, + [387] = 296, + [388] = 255, + [389] = 291, + [390] = 258, + [391] = 281, [392] = 392, - [393] = 393, + [393] = 392, [394] = 394, [395] = 395, [396] = 396, [397] = 397, - [398] = 398, - [399] = 396, + [398] = 392, + [399] = 399, [400] = 400, [401] = 401, - [402] = 209, - [403] = 396, + [402] = 402, + [403] = 403, [404] = 404, [405] = 405, [406] = 406, - [407] = 210, + [407] = 199, [408] = 408, [409] = 409, [410] = 410, - [411] = 411, + [411] = 198, [412] = 412, [413] = 413, [414] = 414, @@ -4405,81 +4421,81 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [416] = 416, [417] = 417, [418] = 418, - [419] = 411, + [419] = 419, [420] = 420, - [421] = 420, - [422] = 420, + [421] = 401, + [422] = 422, [423] = 423, - [424] = 424, - [425] = 425, - [426] = 425, + [424] = 423, + [425] = 423, + [426] = 426, [427] = 427, - [428] = 428, + [428] = 427, [429] = 429, - [430] = 427, - [431] = 427, - [432] = 428, - [433] = 429, - [434] = 429, - [435] = 435, - [436] = 435, + [430] = 429, + [431] = 431, + [432] = 429, + [433] = 433, + [434] = 431, + [435] = 433, + [436] = 433, [437] = 437, - [438] = 438, + [438] = 437, [439] = 439, - [440] = 439, + [440] = 440, [441] = 441, - [442] = 439, + [442] = 442, [443] = 443, - [444] = 439, + [444] = 442, [445] = 441, [446] = 443, - [447] = 443, + [447] = 442, [448] = 443, [449] = 441, - [450] = 441, - [451] = 451, - [452] = 452, - [453] = 452, - [454] = 452, - [455] = 452, - [456] = 456, - [457] = 456, - [458] = 456, - [459] = 456, - [460] = 319, - [461] = 461, - [462] = 389, - [463] = 380, - [464] = 381, - [465] = 379, - [466] = 461, - [467] = 461, - [468] = 378, - [469] = 461, - [470] = 470, - [471] = 415, - [472] = 472, - [473] = 413, - [474] = 414, - [475] = 406, - [476] = 404, + [450] = 443, + [451] = 441, + [452] = 442, + [453] = 453, + [454] = 453, + [455] = 453, + [456] = 453, + [457] = 457, + [458] = 458, + [459] = 458, + [460] = 458, + [461] = 458, + [462] = 252, + [463] = 349, + [464] = 353, + [465] = 465, + [466] = 295, + [467] = 465, + [468] = 266, + [469] = 256, + [470] = 465, + [471] = 465, + [472] = 419, + [473] = 415, + [474] = 397, + [475] = 417, + [476] = 416, [477] = 412, - [478] = 395, - [479] = 391, - [480] = 480, - [481] = 417, - [482] = 416, - [483] = 405, - [484] = 393, - [485] = 409, - [486] = 400, - [487] = 390, - [488] = 410, - [489] = 418, - [490] = 397, - [491] = 408, - [492] = 492, - [493] = 492, + [478] = 478, + [479] = 400, + [480] = 394, + [481] = 481, + [482] = 408, + [483] = 409, + [484] = 413, + [485] = 403, + [486] = 420, + [487] = 414, + [488] = 406, + [489] = 399, + [490] = 395, + [491] = 418, + [492] = 410, + [493] = 493, [494] = 494, [495] = 495, [496] = 496, @@ -4567,7 +4583,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [578] = 578, [579] = 579, [580] = 580, - [581] = 581, + [581] = 349, [582] = 582, [583] = 583, [584] = 584, @@ -4585,15 +4601,15 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [596] = 596, [597] = 597, [598] = 598, - [599] = 599, + [599] = 353, [600] = 600, [601] = 601, [602] = 602, - [603] = 603, + [603] = 295, [604] = 604, [605] = 605, - [606] = 606, - [607] = 607, + [606] = 256, + [607] = 266, [608] = 608, [609] = 609, [610] = 610, @@ -4621,7 +4637,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [632] = 632, [633] = 633, [634] = 634, - [635] = 635, + [635] = 524, [636] = 636, [637] = 637, [638] = 638, @@ -4631,7 +4647,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [642] = 642, [643] = 643, [644] = 644, - [645] = 645, + [645] = 513, [646] = 646, [647] = 647, [648] = 648, @@ -4643,7 +4659,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [654] = 654, [655] = 655, [656] = 656, - [657] = 381, + [657] = 657, [658] = 658, [659] = 659, [660] = 660, @@ -4654,18 +4670,18 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [665] = 665, [666] = 666, [667] = 667, - [668] = 389, + [668] = 668, [669] = 669, - [670] = 380, - [671] = 379, - [672] = 378, + [670] = 670, + [671] = 671, + [672] = 672, [673] = 673, [674] = 674, [675] = 675, [676] = 676, [677] = 677, [678] = 678, - [679] = 679, + [679] = 634, [680] = 680, [681] = 681, [682] = 682, @@ -4674,21 +4690,21 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [685] = 685, [686] = 686, [687] = 687, - [688] = 660, + [688] = 688, [689] = 689, [690] = 690, [691] = 691, [692] = 692, - [693] = 685, + [693] = 693, [694] = 694, [695] = 695, [696] = 696, [697] = 697, [698] = 698, [699] = 699, - [700] = 696, + [700] = 700, [701] = 701, - [702] = 664, + [702] = 702, [703] = 703, [704] = 704, [705] = 705, @@ -4771,30 +4787,30 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [782] = 782, [783] = 783, [784] = 784, - [785] = 785, - [786] = 786, - [787] = 786, - [788] = 783, + [785] = 783, + [786] = 782, + [787] = 787, + [788] = 788, [789] = 789, - [790] = 789, + [790] = 790, [791] = 791, [792] = 792, [793] = 793, - [794] = 794, - [795] = 795, + [794] = 791, + [795] = 793, [796] = 796, - [797] = 797, - [798] = 797, - [799] = 791, - [800] = 795, - [801] = 796, + [797] = 792, + [798] = 798, + [799] = 799, + [800] = 800, + [801] = 801, [802] = 802, [803] = 803, - [804] = 792, - [805] = 793, + [804] = 804, + [805] = 805, [806] = 806, [807] = 807, - [808] = 808, + [808] = 803, [809] = 809, [810] = 810, [811] = 811, @@ -4802,73 +4818,73 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [813] = 813, [814] = 814, [815] = 815, - [816] = 816, + [816] = 804, [817] = 817, - [818] = 818, - [819] = 819, - [820] = 820, - [821] = 821, + [818] = 809, + [819] = 810, + [820] = 811, + [821] = 807, [822] = 822, [823] = 823, - [824] = 823, + [824] = 824, [825] = 825, [826] = 826, - [827] = 826, + [827] = 827, [828] = 828, - [829] = 825, - [830] = 828, + [829] = 829, + [830] = 830, [831] = 831, [832] = 832, - [833] = 833, - [834] = 815, - [835] = 819, + [833] = 822, + [834] = 825, + [835] = 835, [836] = 836, - [837] = 836, - [838] = 838, - [839] = 820, - [840] = 821, - [841] = 841, - [842] = 838, - [843] = 833, - [844] = 838, - [845] = 833, - [846] = 838, - [847] = 833, - [848] = 816, - [849] = 849, - [850] = 850, - [851] = 850, - [852] = 852, - [853] = 850, - [854] = 850, + [837] = 831, + [838] = 823, + [839] = 839, + [840] = 835, + [841] = 836, + [842] = 828, + [843] = 829, + [844] = 844, + [845] = 845, + [846] = 846, + [847] = 824, + [848] = 839, + [849] = 830, + [850] = 823, + [851] = 831, + [852] = 823, + [853] = 831, + [854] = 846, [855] = 855, - [856] = 852, + [856] = 856, [857] = 857, [858] = 857, - [859] = 859, - [860] = 860, + [859] = 857, + [860] = 857, [861] = 861, - [862] = 862, + [862] = 861, [863] = 863, [864] = 864, - [865] = 864, - [866] = 861, + [865] = 865, + [866] = 866, [867] = 867, - [868] = 862, - [869] = 867, - [870] = 870, - [871] = 860, - [872] = 862, - [873] = 857, - [874] = 860, - [875] = 875, - [876] = 876, + [868] = 864, + [869] = 869, + [870] = 866, + [871] = 871, + [872] = 872, + [873] = 871, + [874] = 869, + [875] = 871, + [876] = 869, [877] = 877, - [878] = 861, - [879] = 857, - [880] = 880, - [881] = 881, - [882] = 882, + [878] = 866, + [879] = 872, + [880] = 864, + [881] = 877, + [882] = 866, [883] = 883, [884] = 884, [885] = 885, @@ -4884,7 +4900,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [895] = 895, [896] = 896, [897] = 897, - [898] = 882, + [898] = 898, [899] = 899, [900] = 900, [901] = 901, @@ -4901,547 +4917,547 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [912] = 912, [913] = 913, [914] = 914, - [915] = 905, - [916] = 887, + [915] = 915, + [916] = 916, [917] = 917, [918] = 918, - [919] = 914, - [920] = 889, + [919] = 919, + [920] = 920, [921] = 921, [922] = 922, [923] = 923, [924] = 924, [925] = 925, [926] = 926, - [927] = 927, + [927] = 903, [928] = 928, [929] = 929, [930] = 930, - [931] = 931, + [931] = 893, [932] = 932, - [933] = 933, - [934] = 887, - [935] = 897, - [936] = 936, + [933] = 922, + [934] = 923, + [935] = 922, + [936] = 923, [937] = 937, [938] = 938, [939] = 939, - [940] = 882, - [941] = 899, - [942] = 901, - [943] = 943, - [944] = 884, - [945] = 914, - [946] = 889, - [947] = 897, - [948] = 909, - [949] = 911, - [950] = 887, + [940] = 940, + [941] = 938, + [942] = 942, + [943] = 937, + [944] = 944, + [945] = 945, + [946] = 910, + [947] = 947, + [948] = 948, + [949] = 949, + [950] = 945, [951] = 951, - [952] = 907, - [953] = 882, - [954] = 912, - [955] = 955, - [956] = 899, + [952] = 910, + [953] = 926, + [954] = 929, + [955] = 922, + [956] = 956, [957] = 957, - [958] = 883, - [959] = 959, + [958] = 957, + [959] = 923, [960] = 960, - [961] = 961, + [961] = 937, [962] = 962, - [963] = 963, - [964] = 895, - [965] = 896, - [966] = 886, - [967] = 890, - [968] = 951, - [969] = 969, - [970] = 884, - [971] = 907, - [972] = 972, - [973] = 921, - [974] = 925, - [975] = 926, - [976] = 928, - [977] = 930, - [978] = 932, + [963] = 960, + [964] = 962, + [965] = 965, + [966] = 903, + [967] = 938, + [968] = 968, + [969] = 945, + [970] = 970, + [971] = 887, + [972] = 910, + [973] = 926, + [974] = 929, + [975] = 918, + [976] = 976, + [977] = 977, + [978] = 918, [979] = 979, - [980] = 936, - [981] = 937, - [982] = 969, - [983] = 983, + [980] = 980, + [981] = 981, + [982] = 982, + [983] = 979, [984] = 984, - [985] = 985, - [986] = 984, - [987] = 939, - [988] = 892, - [989] = 900, - [990] = 960, - [991] = 991, - [992] = 894, - [993] = 902, - [994] = 903, - [995] = 908, - [996] = 913, - [997] = 924, - [998] = 957, - [999] = 963, + [985] = 957, + [986] = 906, + [987] = 960, + [988] = 962, + [989] = 947, + [990] = 968, + [991] = 920, + [992] = 942, + [993] = 945, + [994] = 980, + [995] = 984, + [996] = 901, + [997] = 904, + [998] = 982, + [999] = 999, [1000] = 1000, - [1001] = 961, - [1002] = 917, - [1003] = 918, - [1004] = 933, - [1005] = 909, - [1006] = 959, - [1007] = 979, - [1008] = 1000, - [1009] = 911, - [1010] = 943, - [1011] = 912, - [1012] = 991, - [1013] = 1013, - [1014] = 962, - [1015] = 985, - [1016] = 983, - [1017] = 923, - [1018] = 955, - [1019] = 1019, - [1020] = 922, - [1021] = 914, - [1022] = 889, - [1023] = 1023, - [1024] = 901, - [1025] = 1013, - [1026] = 905, - [1027] = 922, - [1028] = 1013, - [1029] = 1029, - [1030] = 717, - [1031] = 1031, - [1032] = 1032, - [1033] = 1033, - [1034] = 1034, - [1035] = 717, - [1036] = 1036, + [1001] = 888, + [1002] = 894, + [1003] = 902, + [1004] = 907, + [1005] = 908, + [1006] = 921, + [1007] = 924, + [1008] = 949, + [1009] = 970, + [1010] = 1010, + [1011] = 895, + [1012] = 898, + [1013] = 911, + [1014] = 925, + [1015] = 930, + [1016] = 932, + [1017] = 939, + [1018] = 940, + [1019] = 948, + [1020] = 976, + [1021] = 977, + [1022] = 896, + [1023] = 897, + [1024] = 899, + [1025] = 905, + [1026] = 913, + [1027] = 917, + [1028] = 915, + [1029] = 928, + [1030] = 981, + [1031] = 981, + [1032] = 999, + [1033] = 1010, + [1034] = 1000, + [1035] = 1035, + [1036] = 887, [1037] = 1037, [1038] = 1038, - [1039] = 1039, + [1039] = 564, [1040] = 1040, [1041] = 1041, - [1042] = 381, - [1043] = 379, - [1044] = 378, - [1045] = 210, - [1046] = 380, - [1047] = 394, - [1048] = 209, - [1049] = 1049, - [1050] = 401, - [1051] = 1051, - [1052] = 1052, + [1042] = 1042, + [1043] = 564, + [1044] = 1044, + [1045] = 1045, + [1046] = 1046, + [1047] = 1047, + [1048] = 1048, + [1049] = 396, + [1050] = 198, + [1051] = 266, + [1052] = 199, [1053] = 1053, - [1054] = 389, - [1055] = 1055, - [1056] = 1056, - [1057] = 1057, - [1058] = 1058, - [1059] = 620, + [1054] = 349, + [1055] = 405, + [1056] = 256, + [1057] = 353, + [1058] = 295, + [1059] = 597, [1060] = 1060, [1061] = 1061, - [1062] = 1062, - [1063] = 1063, - [1064] = 1064, - [1065] = 521, - [1066] = 718, - [1067] = 563, + [1062] = 514, + [1063] = 689, + [1064] = 624, + [1065] = 1065, + [1066] = 1066, + [1067] = 730, [1068] = 1068, [1069] = 1069, - [1070] = 745, - [1071] = 1071, - [1072] = 1071, + [1070] = 1070, + [1071] = 1069, + [1072] = 1069, [1073] = 1073, - [1074] = 1029, + [1074] = 1074, [1075] = 1075, [1076] = 1076, [1077] = 1077, [1078] = 1078, - [1079] = 1079, - [1080] = 1079, - [1081] = 1071, + [1079] = 1075, + [1080] = 1080, + [1081] = 1075, [1082] = 1082, [1083] = 1083, [1084] = 1084, - [1085] = 1079, - [1086] = 1040, - [1087] = 1087, - [1088] = 1088, - [1089] = 1089, - [1090] = 1090, - [1091] = 1091, - [1092] = 1092, - [1093] = 1093, - [1094] = 1094, - [1095] = 1095, - [1096] = 435, - [1097] = 1097, - [1098] = 497, - [1099] = 1038, - [1100] = 1100, - [1101] = 1101, - [1102] = 1102, - [1103] = 659, - [1104] = 663, - [1105] = 1039, - [1106] = 1106, - [1107] = 1037, + [1085] = 1037, + [1086] = 1086, + [1087] = 765, + [1088] = 644, + [1089] = 649, + [1090] = 781, + [1091] = 653, + [1092] = 661, + [1093] = 662, + [1094] = 663, + [1095] = 664, + [1096] = 665, + [1097] = 666, + [1098] = 667, + [1099] = 669, + [1100] = 558, + [1101] = 675, + [1102] = 676, + [1103] = 677, + [1104] = 1104, + [1105] = 680, + [1106] = 681, + [1107] = 682, [1108] = 1108, - [1109] = 1109, - [1110] = 1036, - [1111] = 1111, - [1112] = 1112, - [1113] = 1113, - [1114] = 1114, - [1115] = 1115, - [1116] = 630, - [1117] = 319, - [1118] = 654, - [1119] = 655, - [1120] = 656, - [1121] = 667, - [1122] = 669, - [1123] = 673, - [1124] = 675, - [1125] = 676, - [1126] = 677, - [1127] = 678, - [1128] = 680, - [1129] = 684, - [1130] = 686, - [1131] = 689, - [1132] = 694, - [1133] = 695, - [1134] = 1134, - [1135] = 1135, - [1136] = 1136, - [1137] = 1137, - [1138] = 1138, - [1139] = 726, - [1140] = 727, - [1141] = 728, - [1142] = 730, - [1143] = 731, - [1144] = 737, - [1145] = 738, - [1146] = 739, - [1147] = 740, - [1148] = 741, - [1149] = 746, - [1150] = 747, - [1151] = 748, - [1152] = 749, - [1153] = 750, - [1154] = 752, - [1155] = 754, - [1156] = 757, - [1157] = 767, - [1158] = 769, - [1159] = 773, - [1160] = 775, - [1161] = 778, - [1162] = 780, - [1163] = 666, - [1164] = 615, - [1165] = 618, - [1166] = 674, - [1167] = 709, - [1168] = 712, - [1169] = 714, - [1170] = 716, - [1171] = 772, - [1172] = 639, - [1173] = 640, - [1174] = 658, - [1175] = 1175, - [1176] = 1176, - [1177] = 1177, - [1178] = 1178, - [1179] = 768, - [1180] = 770, - [1181] = 779, - [1182] = 494, - [1183] = 517, - [1184] = 519, - [1185] = 550, - [1186] = 551, - [1187] = 608, - [1188] = 609, - [1189] = 610, - [1190] = 611, - [1191] = 612, - [1192] = 613, - [1193] = 614, - [1194] = 616, - [1195] = 617, - [1196] = 619, - [1197] = 621, - [1198] = 622, - [1199] = 623, - [1200] = 624, - [1201] = 625, - [1202] = 626, - [1203] = 627, - [1204] = 628, - [1205] = 629, - [1206] = 631, - [1207] = 632, - [1208] = 633, - [1209] = 634, - [1210] = 635, - [1211] = 636, - [1212] = 637, - [1213] = 638, - [1214] = 781, - [1215] = 642, - [1216] = 643, - [1217] = 644, - [1218] = 645, - [1219] = 646, - [1220] = 647, - [1221] = 648, - [1222] = 649, - [1223] = 650, - [1224] = 651, - [1225] = 652, - [1226] = 653, - [1227] = 661, - [1228] = 665, - [1229] = 1229, - [1230] = 1230, - [1231] = 679, - [1232] = 681, - [1233] = 682, - [1234] = 683, - [1235] = 687, - [1236] = 690, - [1237] = 691, - [1238] = 692, - [1239] = 697, - [1240] = 698, - [1241] = 699, - [1242] = 701, - [1243] = 703, - [1244] = 704, - [1245] = 705, - [1246] = 706, - [1247] = 707, - [1248] = 708, - [1249] = 710, - [1250] = 711, - [1251] = 715, - [1252] = 719, - [1253] = 720, - [1254] = 721, - [1255] = 722, - [1256] = 723, - [1257] = 724, - [1258] = 1258, - [1259] = 729, - [1260] = 732, - [1261] = 733, - [1262] = 734, - [1263] = 735, - [1264] = 736, - [1265] = 742, - [1266] = 743, - [1267] = 751, - [1268] = 753, - [1269] = 755, - [1270] = 756, - [1271] = 758, - [1272] = 759, - [1273] = 760, - [1274] = 761, - [1275] = 762, - [1276] = 763, - [1277] = 764, - [1278] = 765, - [1279] = 766, - [1280] = 774, - [1281] = 776, - [1282] = 1282, - [1283] = 1283, - [1284] = 495, - [1285] = 496, - [1286] = 498, - [1287] = 499, - [1288] = 500, - [1289] = 501, - [1290] = 502, - [1291] = 503, - [1292] = 504, - [1293] = 505, - [1294] = 506, - [1295] = 507, - [1296] = 508, - [1297] = 509, - [1298] = 510, - [1299] = 511, - [1300] = 512, - [1301] = 513, - [1302] = 514, - [1303] = 515, - [1304] = 516, - [1305] = 518, - [1306] = 520, - [1307] = 522, - [1308] = 523, - [1309] = 524, - [1310] = 525, - [1311] = 526, - [1312] = 527, - [1313] = 528, - [1314] = 529, - [1315] = 530, - [1316] = 531, - [1317] = 532, - [1318] = 533, - [1319] = 534, - [1320] = 535, - [1321] = 536, - [1322] = 537, - [1323] = 538, - [1324] = 539, - [1325] = 540, - [1326] = 541, - [1327] = 542, - [1328] = 543, - [1329] = 544, - [1330] = 545, - [1331] = 546, - [1332] = 547, - [1333] = 548, - [1334] = 549, - [1335] = 1335, - [1336] = 1336, - [1337] = 552, - [1338] = 553, - [1339] = 554, - [1340] = 555, - [1341] = 556, - [1342] = 557, - [1343] = 558, - [1344] = 559, - [1345] = 560, - [1346] = 561, - [1347] = 562, - [1348] = 564, - [1349] = 565, - [1350] = 566, - [1351] = 567, - [1352] = 568, - [1353] = 569, - [1354] = 570, - [1355] = 571, - [1356] = 572, - [1357] = 573, - [1358] = 574, - [1359] = 575, - [1360] = 576, - [1361] = 577, - [1362] = 578, - [1363] = 579, - [1364] = 580, - [1365] = 581, - [1366] = 582, - [1367] = 583, - [1368] = 584, - [1369] = 585, - [1370] = 586, - [1371] = 587, - [1372] = 588, - [1373] = 589, - [1374] = 590, - [1375] = 591, - [1376] = 592, - [1377] = 593, - [1378] = 594, - [1379] = 595, - [1380] = 596, - [1381] = 597, - [1382] = 598, - [1383] = 599, - [1384] = 600, - [1385] = 601, - [1386] = 602, - [1387] = 603, - [1388] = 604, - [1389] = 605, - [1390] = 606, - [1391] = 607, + [1109] = 683, + [1110] = 684, + [1111] = 685, + [1112] = 686, + [1113] = 688, + [1114] = 559, + [1115] = 690, + [1116] = 1116, + [1117] = 1117, + [1118] = 693, + [1119] = 515, + [1120] = 694, + [1121] = 695, + [1122] = 696, + [1123] = 697, + [1124] = 698, + [1125] = 699, + [1126] = 700, + [1127] = 701, + [1128] = 703, + [1129] = 706, + [1130] = 710, + [1131] = 711, + [1132] = 713, + [1133] = 714, + [1134] = 722, + [1135] = 725, + [1136] = 726, + [1137] = 727, + [1138] = 729, + [1139] = 738, + [1140] = 740, + [1141] = 741, + [1142] = 743, + [1143] = 744, + [1144] = 745, + [1145] = 749, + [1146] = 750, + [1147] = 751, + [1148] = 752, + [1149] = 753, + [1150] = 521, + [1151] = 528, + [1152] = 754, + [1153] = 755, + [1154] = 756, + [1155] = 757, + [1156] = 758, + [1157] = 760, + [1158] = 761, + [1159] = 762, + [1160] = 764, + [1161] = 768, + [1162] = 769, + [1163] = 770, + [1164] = 771, + [1165] = 775, + [1166] = 1166, + [1167] = 562, + [1168] = 505, + [1169] = 510, + [1170] = 553, + [1171] = 508, + [1172] = 509, + [1173] = 566, + [1174] = 591, + [1175] = 592, + [1176] = 594, + [1177] = 670, + [1178] = 671, + [1179] = 687, + [1180] = 712, + [1181] = 746, + [1182] = 759, + [1183] = 778, + [1184] = 497, + [1185] = 498, + [1186] = 552, + [1187] = 499, + [1188] = 500, + [1189] = 501, + [1190] = 502, + [1191] = 555, + [1192] = 556, + [1193] = 557, + [1194] = 673, + [1195] = 674, + [1196] = 504, + [1197] = 748, + [1198] = 766, + [1199] = 773, + [1200] = 776, + [1201] = 779, + [1202] = 506, + [1203] = 507, + [1204] = 511, + [1205] = 650, + [1206] = 512, + [1207] = 495, + [1208] = 496, + [1209] = 503, + [1210] = 525, + [1211] = 527, + [1212] = 516, + [1213] = 517, + [1214] = 518, + [1215] = 519, + [1216] = 520, + [1217] = 522, + [1218] = 523, + [1219] = 526, + [1220] = 531, + [1221] = 532, + [1222] = 533, + [1223] = 586, + [1224] = 596, + [1225] = 598, + [1226] = 601, + [1227] = 602, + [1228] = 534, + [1229] = 608, + [1230] = 609, + [1231] = 611, + [1232] = 612, + [1233] = 615, + [1234] = 535, + [1235] = 625, + [1236] = 627, + [1237] = 628, + [1238] = 629, + [1239] = 569, + [1240] = 632, + [1241] = 633, + [1242] = 636, + [1243] = 637, + [1244] = 638, + [1245] = 639, + [1246] = 640, + [1247] = 641, + [1248] = 642, + [1249] = 643, + [1250] = 646, + [1251] = 647, + [1252] = 648, + [1253] = 651, + [1254] = 654, + [1255] = 655, + [1256] = 656, + [1257] = 657, + [1258] = 658, + [1259] = 659, + [1260] = 660, + [1261] = 536, + [1262] = 672, + [1263] = 678, + [1264] = 1264, + [1265] = 537, + [1266] = 538, + [1267] = 539, + [1268] = 541, + [1269] = 542, + [1270] = 1270, + [1271] = 543, + [1272] = 544, + [1273] = 545, + [1274] = 546, + [1275] = 547, + [1276] = 548, + [1277] = 1277, + [1278] = 549, + [1279] = 550, + [1280] = 691, + [1281] = 551, + [1282] = 692, + [1283] = 540, + [1284] = 560, + [1285] = 561, + [1286] = 567, + [1287] = 568, + [1288] = 570, + [1289] = 571, + [1290] = 572, + [1291] = 702, + [1292] = 704, + [1293] = 705, + [1294] = 707, + [1295] = 708, + [1296] = 573, + [1297] = 574, + [1298] = 1298, + [1299] = 575, + [1300] = 576, + [1301] = 1301, + [1302] = 709, + [1303] = 715, + [1304] = 577, + [1305] = 578, + [1306] = 579, + [1307] = 580, + [1308] = 582, + [1309] = 583, + [1310] = 716, + [1311] = 1311, + [1312] = 584, + [1313] = 585, + [1314] = 717, + [1315] = 587, + [1316] = 718, + [1317] = 588, + [1318] = 589, + [1319] = 590, + [1320] = 593, + [1321] = 1321, + [1322] = 595, + [1323] = 554, + [1324] = 600, + [1325] = 719, + [1326] = 720, + [1327] = 721, + [1328] = 604, + [1329] = 605, + [1330] = 610, + [1331] = 613, + [1332] = 723, + [1333] = 614, + [1334] = 616, + [1335] = 724, + [1336] = 617, + [1337] = 618, + [1338] = 728, + [1339] = 619, + [1340] = 731, + [1341] = 732, + [1342] = 733, + [1343] = 620, + [1344] = 734, + [1345] = 735, + [1346] = 736, + [1347] = 737, + [1348] = 739, + [1349] = 742, + [1350] = 494, + [1351] = 747, + [1352] = 763, + [1353] = 565, + [1354] = 767, + [1355] = 772, + [1356] = 774, + [1357] = 777, + [1358] = 780, + [1359] = 563, + [1360] = 621, + [1361] = 564, + [1362] = 622, + [1363] = 623, + [1364] = 626, + [1365] = 630, + [1366] = 631, + [1367] = 1053, + [1368] = 1053, + [1369] = 1369, + [1370] = 1370, + [1371] = 1371, + [1372] = 1372, + [1373] = 1373, + [1374] = 1374, + [1375] = 437, + [1376] = 1376, + [1377] = 1038, + [1378] = 1046, + [1379] = 1379, + [1380] = 1380, + [1381] = 1381, + [1382] = 1045, + [1383] = 1383, + [1384] = 1047, + [1385] = 1385, + [1386] = 1386, + [1387] = 1044, + [1388] = 1388, + [1389] = 1389, + [1390] = 1390, + [1391] = 1391, [1392] = 1392, - [1393] = 768, + [1393] = 252, [1394] = 1394, [1395] = 1395, [1396] = 1396, - [1397] = 717, - [1398] = 717, + [1397] = 1397, + [1398] = 1398, [1399] = 1399, - [1400] = 1040, + [1400] = 1400, [1401] = 1401, [1402] = 1402, - [1403] = 725, + [1403] = 1403, [1404] = 1404, - [1405] = 404, - [1406] = 405, - [1407] = 409, - [1408] = 400, - [1409] = 418, - [1410] = 414, + [1405] = 1405, + [1406] = 1406, + [1407] = 1407, + [1408] = 1408, + [1409] = 1409, + [1410] = 1410, [1411] = 1411, - [1412] = 389, - [1413] = 379, - [1414] = 408, + [1412] = 1412, + [1413] = 564, + [1414] = 691, [1415] = 1415, - [1416] = 1416, + [1416] = 564, [1417] = 1417, - [1418] = 1418, + [1418] = 266, [1419] = 1419, [1420] = 1420, [1421] = 1421, [1422] = 1422, [1423] = 1423, [1424] = 1424, - [1425] = 176, + [1425] = 1425, [1426] = 1426, [1427] = 1427, [1428] = 1428, [1429] = 1429, - [1430] = 1430, - [1431] = 1431, + [1430] = 420, + [1431] = 405, [1432] = 395, - [1433] = 401, - [1434] = 1434, - [1435] = 391, - [1436] = 406, - [1437] = 1437, - [1438] = 417, - [1439] = 1439, + [1433] = 1433, + [1434] = 415, + [1435] = 177, + [1436] = 419, + [1437] = 396, + [1438] = 295, + [1439] = 183, [1440] = 1440, [1441] = 1441, [1442] = 1442, [1443] = 1443, - [1444] = 393, - [1445] = 394, + [1444] = 1444, + [1445] = 1445, [1446] = 1446, - [1447] = 182, - [1448] = 378, + [1447] = 1447, + [1448] = 1448, [1449] = 1449, - [1450] = 1450, - [1451] = 1451, - [1452] = 1452, - [1453] = 380, - [1454] = 1454, - [1455] = 1455, + [1450] = 198, + [1451] = 406, + [1452] = 394, + [1453] = 1453, + [1454] = 400, + [1455] = 349, [1456] = 1456, [1457] = 1457, [1458] = 1458, @@ -5450,50 +5466,50 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1461] = 1461, [1462] = 1462, [1463] = 1463, - [1464] = 209, - [1465] = 1465, - [1466] = 390, - [1467] = 1467, + [1464] = 1464, + [1465] = 199, + [1466] = 408, + [1467] = 409, [1468] = 410, - [1469] = 415, + [1469] = 1469, [1470] = 1470, - [1471] = 1471, - [1472] = 1472, - [1473] = 175, + [1471] = 256, + [1472] = 417, + [1473] = 1473, [1474] = 1474, [1475] = 1475, - [1476] = 1476, + [1476] = 403, [1477] = 1477, [1478] = 1478, [1479] = 1479, [1480] = 1480, - [1481] = 397, + [1481] = 1481, [1482] = 1482, - [1483] = 1483, - [1484] = 1484, + [1483] = 416, + [1484] = 179, [1485] = 1485, [1486] = 1486, [1487] = 1487, - [1488] = 1488, + [1488] = 399, [1489] = 1489, [1490] = 1490, - [1491] = 210, - [1492] = 412, - [1493] = 413, - [1494] = 1031, - [1495] = 381, - [1496] = 717, - [1497] = 1497, - [1498] = 1040, - [1499] = 416, + [1491] = 1491, + [1492] = 1492, + [1493] = 418, + [1494] = 1494, + [1495] = 412, + [1496] = 413, + [1497] = 414, + [1498] = 1498, + [1499] = 1499, [1500] = 1500, [1501] = 1501, - [1502] = 178, + [1502] = 1502, [1503] = 1503, [1504] = 1504, [1505] = 1505, [1506] = 1506, - [1507] = 1507, + [1507] = 353, [1508] = 1508, [1509] = 1509, [1510] = 1510, @@ -5504,685 +5520,685 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1515] = 1515, [1516] = 1516, [1517] = 1517, - [1518] = 1518, - [1519] = 1519, + [1518] = 182, + [1519] = 1053, [1520] = 1520, [1521] = 1521, - [1522] = 180, + [1522] = 1522, [1523] = 1523, [1524] = 1524, [1525] = 1525, [1526] = 1526, - [1527] = 1527, + [1527] = 1449, [1528] = 1528, - [1529] = 1528, - [1530] = 1530, - [1531] = 1040, + [1529] = 1529, + [1530] = 174, + [1531] = 1531, [1532] = 1532, - [1533] = 1528, - [1534] = 1040, + [1533] = 1533, + [1534] = 1449, [1535] = 1535, [1536] = 1536, [1537] = 1537, - [1538] = 1535, + [1538] = 1538, [1539] = 1539, [1540] = 1540, [1541] = 1541, - [1542] = 1542, - [1543] = 1543, + [1542] = 397, + [1543] = 1053, [1544] = 1544, - [1545] = 1545, + [1545] = 1053, [1546] = 1546, [1547] = 1547, [1548] = 1548, [1549] = 1549, [1550] = 1550, [1551] = 1551, - [1552] = 1078, - [1553] = 1041, - [1554] = 1536, + [1552] = 1552, + [1553] = 1553, + [1554] = 1554, [1555] = 1555, [1556] = 1556, [1557] = 1557, [1558] = 1558, [1559] = 1559, [1560] = 1560, - [1561] = 1556, + [1561] = 1561, [1562] = 1562, - [1563] = 1053, + [1563] = 1048, [1564] = 1564, - [1565] = 1051, + [1565] = 1565, [1566] = 1566, - [1567] = 1049, + [1567] = 1567, [1568] = 1568, - [1569] = 1078, + [1569] = 1567, [1570] = 1570, - [1571] = 1571, - [1572] = 1078, - [1573] = 1068, - [1574] = 1089, - [1575] = 1094, - [1576] = 1258, - [1577] = 1091, - [1578] = 1258, - [1579] = 1062, - [1580] = 1060, - [1581] = 1089, - [1582] = 1057, - [1583] = 1056, - [1584] = 1069, - [1585] = 1091, - [1586] = 1061, - [1587] = 1520, - [1588] = 1094, - [1589] = 1428, - [1590] = 1058, - [1591] = 1520, - [1592] = 1476, - [1593] = 1392, - [1594] = 1594, - [1595] = 1459, - [1596] = 1075, - [1597] = 1459, - [1598] = 1084, - [1599] = 1520, - [1600] = 1175, - [1601] = 1601, - [1602] = 1602, - [1603] = 1229, - [1604] = 1282, - [1605] = 1335, - [1606] = 319, - [1607] = 1428, - [1608] = 1608, - [1609] = 1609, - [1610] = 1601, - [1611] = 1608, - [1612] = 1602, - [1613] = 1609, - [1614] = 1077, - [1615] = 1476, - [1616] = 1602, - [1617] = 1609, - [1618] = 1602, - [1619] = 1609, - [1620] = 1532, - [1621] = 1530, - [1622] = 1073, - [1623] = 1594, - [1624] = 1594, - [1625] = 1392, - [1626] = 1100, - [1627] = 1548, - [1628] = 1336, - [1629] = 1541, - [1630] = 1630, - [1631] = 1530, - [1632] = 1134, - [1633] = 1537, - [1634] = 1135, - [1635] = 1542, - [1636] = 1539, - [1637] = 381, - [1638] = 389, - [1639] = 380, - [1640] = 1136, - [1641] = 379, - [1642] = 378, - [1643] = 1109, - [1644] = 1644, - [1645] = 1101, - [1646] = 1102, - [1647] = 1647, - [1648] = 1543, - [1649] = 1137, - [1650] = 1550, - [1651] = 1551, - [1652] = 1555, - [1653] = 1558, - [1654] = 1111, - [1655] = 1138, - [1656] = 1544, - [1657] = 1657, - [1658] = 1647, - [1659] = 1399, - [1660] = 1660, - [1661] = 1545, - [1662] = 1546, - [1663] = 1114, - [1664] = 1547, - [1665] = 1092, - [1666] = 1660, - [1667] = 1093, - [1668] = 1549, - [1669] = 1115, - [1670] = 1176, - [1671] = 1401, - [1672] = 1560, - [1673] = 1177, - [1674] = 1532, - [1675] = 1675, - [1676] = 1540, - [1677] = 1178, - [1678] = 1657, - [1679] = 1112, - [1680] = 1113, - [1681] = 1230, - [1682] = 1106, - [1683] = 1108, - [1684] = 1559, - [1685] = 1283, - [1686] = 1557, - [1687] = 1542, - [1688] = 1461, - [1689] = 1462, - [1690] = 1514, - [1691] = 1504, - [1692] = 1437, - [1693] = 1507, - [1694] = 1557, - [1695] = 1513, - [1696] = 1483, - [1697] = 1501, - [1698] = 1485, - [1699] = 1475, - [1700] = 1486, - [1701] = 1701, - [1702] = 1702, - [1703] = 1525, - [1704] = 1487, - [1705] = 1465, - [1706] = 1490, - [1707] = 1419, - [1708] = 1463, - [1709] = 1474, - [1710] = 1417, - [1711] = 1418, - [1712] = 1439, - [1713] = 1420, - [1714] = 1421, - [1715] = 1422, - [1716] = 1716, - [1717] = 1423, - [1718] = 1467, - [1719] = 1506, - [1720] = 1449, - [1721] = 1450, - [1722] = 1451, - [1723] = 1723, - [1724] = 1724, - [1725] = 1471, - [1726] = 1472, - [1727] = 1488, - [1728] = 1489, - [1729] = 1729, - [1730] = 1730, - [1731] = 435, - [1732] = 404, - [1733] = 409, - [1734] = 400, - [1735] = 418, - [1736] = 414, - [1737] = 1555, - [1738] = 1560, - [1739] = 1739, - [1740] = 1427, - [1741] = 395, - [1742] = 1559, - [1743] = 391, - [1744] = 1515, - [1745] = 417, - [1746] = 1746, - [1747] = 1548, - [1748] = 393, - [1749] = 1441, - [1750] = 1537, - [1751] = 1539, - [1752] = 1540, - [1753] = 1541, - [1754] = 1754, - [1755] = 1543, - [1756] = 1544, - [1757] = 1545, - [1758] = 1546, - [1759] = 1547, - [1760] = 1549, - [1761] = 1456, - [1762] = 1457, - [1763] = 1763, - [1764] = 390, - [1765] = 410, - [1766] = 1557, - [1767] = 397, - [1768] = 1484, - [1769] = 1497, - [1770] = 412, - [1771] = 413, - [1772] = 416, - [1773] = 408, - [1774] = 406, - [1775] = 415, - [1776] = 175, - [1777] = 176, - [1778] = 405, - [1779] = 178, - [1780] = 1560, - [1781] = 180, - [1782] = 1442, - [1783] = 401, - [1784] = 1548, - [1785] = 182, - [1786] = 394, - [1787] = 1526, - [1788] = 1404, - [1789] = 1557, - [1790] = 1503, - [1791] = 1431, - [1792] = 1509, - [1793] = 1560, - [1794] = 1505, - [1795] = 209, - [1796] = 210, - [1797] = 1511, - [1798] = 1512, - [1799] = 1440, - [1800] = 1550, - [1801] = 1801, - [1802] = 1802, - [1803] = 1424, - [1804] = 1804, - [1805] = 1805, - [1806] = 1426, - [1807] = 1807, - [1808] = 1808, - [1809] = 1036, - [1810] = 1434, - [1811] = 1804, - [1812] = 1516, - [1813] = 1429, - [1814] = 1517, - [1815] = 1519, - [1816] = 1518, - [1817] = 1817, + [1571] = 1555, + [1572] = 1572, + [1573] = 1573, + [1574] = 1574, + [1575] = 1558, + [1576] = 1270, + [1577] = 1577, + [1578] = 1578, + [1579] = 1066, + [1580] = 1061, + [1581] = 1060, + [1582] = 1582, + [1583] = 1270, + [1584] = 1270, + [1585] = 1070, + [1586] = 1370, + [1587] = 1083, + [1588] = 1078, + [1589] = 1540, + [1590] = 1369, + [1591] = 1591, + [1592] = 1086, + [1593] = 1076, + [1594] = 1068, + [1595] = 1077, + [1596] = 1373, + [1597] = 1415, + [1598] = 1373, + [1599] = 1415, + [1600] = 1369, + [1601] = 1370, + [1602] = 1528, + [1603] = 1591, + [1604] = 1540, + [1605] = 1591, + [1606] = 1073, + [1607] = 1422, + [1608] = 1461, + [1609] = 1117, + [1610] = 1405, + [1611] = 1417, + [1612] = 1612, + [1613] = 1407, + [1614] = 1410, + [1615] = 1615, + [1616] = 1116, + [1617] = 1399, + [1618] = 1528, + [1619] = 1619, + [1620] = 1417, + [1621] = 1621, + [1622] = 1612, + [1623] = 1540, + [1624] = 1615, + [1625] = 1461, + [1626] = 1619, + [1627] = 252, + [1628] = 1621, + [1629] = 1619, + [1630] = 1621, + [1631] = 1544, + [1632] = 1546, + [1633] = 1619, + [1634] = 1104, + [1635] = 1301, + [1636] = 1621, + [1637] = 1422, + [1638] = 1401, + [1639] = 1578, + [1640] = 1565, + [1641] = 1383, + [1642] = 1385, + [1643] = 1386, + [1644] = 1388, + [1645] = 1645, + [1646] = 1389, + [1647] = 349, + [1648] = 353, + [1649] = 295, + [1650] = 1556, + [1651] = 256, + [1652] = 266, + [1653] = 1546, + [1654] = 1390, + [1655] = 1655, + [1656] = 1391, + [1657] = 1392, + [1658] = 1409, + [1659] = 1554, + [1660] = 1559, + [1661] = 1577, + [1662] = 1557, + [1663] = 1568, + [1664] = 1549, + [1665] = 1665, + [1666] = 1547, + [1667] = 1667, + [1668] = 1560, + [1669] = 1645, + [1670] = 1670, + [1671] = 1394, + [1672] = 1395, + [1673] = 1665, + [1674] = 1566, + [1675] = 1396, + [1676] = 1397, + [1677] = 1398, + [1678] = 1380, + [1679] = 1381, + [1680] = 1400, + [1681] = 1371, + [1682] = 1553, + [1683] = 1544, + [1684] = 1667, + [1685] = 1402, + [1686] = 1570, + [1687] = 1572, + [1688] = 1550, + [1689] = 1689, + [1690] = 1412, + [1691] = 1551, + [1692] = 1406, + [1693] = 1564, + [1694] = 1552, + [1695] = 1408, + [1696] = 1372, + [1697] = 1411, + [1698] = 1379, + [1699] = 1699, + [1700] = 1700, + [1701] = 1486, + [1702] = 1525, + [1703] = 1533, + [1704] = 1426, + [1705] = 1705, + [1706] = 1706, + [1707] = 1515, + [1708] = 1469, + [1709] = 1445, + [1710] = 1710, + [1711] = 1492, + [1712] = 1473, + [1713] = 1713, + [1714] = 1517, + [1715] = 1505, + [1716] = 1524, + [1717] = 1529, + [1718] = 1463, + [1719] = 1531, + [1720] = 1720, + [1721] = 1470, + [1722] = 1535, + [1723] = 1522, + [1724] = 1541, + [1725] = 1725, + [1726] = 1421, + [1727] = 1564, + [1728] = 1424, + [1729] = 1428, + [1730] = 1433, + [1731] = 1731, + [1732] = 1444, + [1733] = 1487, + [1734] = 1419, + [1735] = 1044, + [1736] = 1423, + [1737] = 1425, + [1738] = 1577, + [1739] = 1578, + [1740] = 1566, + [1741] = 1557, + [1742] = 1570, + [1743] = 1572, + [1744] = 1550, + [1745] = 1551, + [1746] = 1552, + [1747] = 1553, + [1748] = 1554, + [1749] = 1556, + [1750] = 1559, + [1751] = 1560, + [1752] = 1547, + [1753] = 1427, + [1754] = 1440, + [1755] = 1441, + [1756] = 1446, + [1757] = 1447, + [1758] = 1448, + [1759] = 1759, + [1760] = 1760, + [1761] = 1565, + [1762] = 1456, + [1763] = 1568, + [1764] = 1459, + [1765] = 1460, + [1766] = 1462, + [1767] = 1767, + [1768] = 1464, + [1769] = 1549, + [1770] = 1481, + [1771] = 1474, + [1772] = 1475, + [1773] = 1477, + [1774] = 1478, + [1775] = 1479, + [1776] = 1480, + [1777] = 1482, + [1778] = 1489, + [1779] = 1490, + [1780] = 1491, + [1781] = 1498, + [1782] = 1499, + [1783] = 1509, + [1784] = 1510, + [1785] = 1494, + [1786] = 1786, + [1787] = 437, + [1788] = 403, + [1789] = 399, + [1790] = 418, + [1791] = 413, + [1792] = 414, + [1793] = 1501, + [1794] = 1564, + [1795] = 1795, + [1796] = 1502, + [1797] = 1420, + [1798] = 420, + [1799] = 1578, + [1800] = 395, + [1801] = 1503, + [1802] = 415, + [1803] = 1566, + [1804] = 419, + [1805] = 1570, + [1806] = 1572, + [1807] = 1550, + [1808] = 1551, + [1809] = 1552, + [1810] = 1553, + [1811] = 1554, + [1812] = 1556, + [1813] = 1559, + [1814] = 1560, + [1815] = 1547, + [1816] = 1442, + [1817] = 1443, [1818] = 1818, - [1819] = 1430, - [1820] = 1723, - [1821] = 1821, - [1822] = 1822, - [1823] = 1823, - [1824] = 1739, - [1825] = 1825, - [1826] = 1411, - [1827] = 1827, - [1828] = 1482, - [1829] = 1829, - [1830] = 1559, - [1831] = 1702, - [1832] = 1754, - [1833] = 1833, - [1834] = 1834, - [1835] = 1548, - [1836] = 1833, - [1837] = 1701, - [1838] = 1470, - [1839] = 1446, - [1840] = 1730, - [1841] = 1452, - [1842] = 1508, - [1843] = 1558, - [1844] = 1415, - [1845] = 1550, - [1846] = 1551, - [1847] = 1804, - [1848] = 1555, - [1849] = 1558, - [1850] = 1817, - [1851] = 1527, - [1852] = 1827, - [1853] = 1537, - [1854] = 1539, - [1855] = 1477, - [1856] = 1540, - [1857] = 1827, - [1858] = 1541, - [1859] = 1754, - [1860] = 1542, - [1861] = 1730, - [1862] = 1804, - [1863] = 1817, - [1864] = 1864, - [1865] = 1829, - [1866] = 1543, - [1867] = 1827, - [1868] = 1478, - [1869] = 1754, - [1870] = 1544, - [1871] = 1545, - [1872] = 1479, - [1873] = 1730, - [1874] = 1817, - [1875] = 1827, - [1876] = 1754, - [1877] = 1730, - [1878] = 1817, - [1879] = 1521, - [1880] = 1827, - [1881] = 1754, - [1882] = 1730, - [1883] = 1817, - [1884] = 1827, - [1885] = 1754, - [1886] = 1546, - [1887] = 1547, + [1819] = 406, + [1820] = 394, + [1821] = 1565, + [1822] = 400, + [1823] = 1457, + [1824] = 1516, + [1825] = 408, + [1826] = 409, + [1827] = 410, + [1828] = 417, + [1829] = 416, + [1830] = 412, + [1831] = 174, + [1832] = 177, + [1833] = 1485, + [1834] = 397, + [1835] = 179, + [1836] = 1508, + [1837] = 1511, + [1838] = 1564, + [1839] = 182, + [1840] = 405, + [1841] = 1566, + [1842] = 183, + [1843] = 396, + [1844] = 1565, + [1845] = 1845, + [1846] = 1512, + [1847] = 1500, + [1848] = 1504, + [1849] = 1506, + [1850] = 198, + [1851] = 199, + [1852] = 1513, + [1853] = 1514, + [1854] = 1854, + [1855] = 1520, + [1856] = 1699, + [1857] = 1521, + [1858] = 1858, + [1859] = 1786, + [1860] = 1860, + [1861] = 1523, + [1862] = 1818, + [1863] = 1863, + [1864] = 1526, + [1865] = 1854, + [1866] = 1532, + [1867] = 1867, + [1868] = 1867, + [1869] = 1710, + [1870] = 1713, + [1871] = 1871, + [1872] = 1845, + [1873] = 1873, + [1874] = 1874, + [1875] = 1875, + [1876] = 1876, + [1877] = 1877, + [1878] = 1536, + [1879] = 1858, + [1880] = 1880, + [1881] = 1699, + [1882] = 1699, + [1883] = 1537, + [1884] = 1577, + [1885] = 1557, + [1886] = 1786, + [1887] = 1568, [1888] = 1549, - [1889] = 1480, - [1890] = 1416, - [1891] = 1510, - [1892] = 1523, - [1893] = 1524, - [1894] = 1454, - [1895] = 1551, - [1896] = 1455, - [1897] = 1500, - [1898] = 1458, - [1899] = 1899, - [1900] = 1817, - [1901] = 1834, - [1902] = 1805, - [1903] = 1460, - [1904] = 1730, - [1905] = 1905, - [1906] = 1906, - [1907] = 1907, - [1908] = 1908, - [1909] = 1909, - [1910] = 1910, - [1911] = 1911, - [1912] = 1899, + [1889] = 1818, + [1890] = 1538, + [1891] = 1539, + [1892] = 1710, + [1893] = 1873, + [1894] = 1863, + [1895] = 1873, + [1896] = 1699, + [1897] = 1786, + [1898] = 1818, + [1899] = 1710, + [1900] = 1873, + [1901] = 1699, + [1902] = 1818, + [1903] = 1876, + [1904] = 1710, + [1905] = 1873, + [1906] = 1699, + [1907] = 1818, + [1908] = 1710, + [1909] = 1873, + [1910] = 1818, + [1911] = 1710, + [1912] = 1873, [1913] = 1913, - [1914] = 1914, - [1915] = 1908, - [1916] = 1916, + [1914] = 1453, + [1915] = 1877, + [1916] = 1458, [1917] = 1917, [1918] = 1918, [1919] = 1919, [1920] = 1920, [1921] = 1921, - [1922] = 1920, - [1923] = 1923, - [1924] = 1924, - [1925] = 1910, - [1926] = 1724, - [1927] = 1923, - [1928] = 1716, - [1929] = 1905, - [1930] = 1914, - [1931] = 1917, - [1932] = 1919, - [1933] = 1911, - [1934] = 1934, - [1935] = 1918, - [1936] = 1906, - [1937] = 1905, + [1922] = 1922, + [1923] = 1795, + [1924] = 1920, + [1925] = 1925, + [1926] = 1926, + [1927] = 1927, + [1928] = 1917, + [1929] = 1929, + [1930] = 1930, + [1931] = 1931, + [1932] = 1932, + [1933] = 1933, + [1934] = 1921, + [1935] = 1935, + [1936] = 1927, + [1937] = 1937, [1938] = 1938, [1939] = 1939, - [1940] = 1924, - [1941] = 1921, - [1942] = 1942, - [1943] = 1942, - [1944] = 1944, - [1945] = 1945, + [1940] = 1917, + [1941] = 1932, + [1942] = 1760, + [1943] = 1943, + [1944] = 1931, + [1945] = 1933, [1946] = 1946, - [1947] = 1946, - [1948] = 1944, - [1949] = 1945, - [1950] = 1950, - [1951] = 1951, - [1952] = 1952, - [1953] = 1953, - [1954] = 1954, - [1955] = 1954, - [1956] = 1953, - [1957] = 1954, - [1958] = 1953, - [1959] = 1954, - [1960] = 1954, - [1961] = 1954, - [1962] = 1962, - [1963] = 1962, - [1964] = 178, - [1965] = 182, - [1966] = 1041, - [1967] = 1057, - [1968] = 1069, - [1969] = 1056, + [1947] = 1947, + [1948] = 1925, + [1949] = 1946, + [1950] = 1938, + [1951] = 1929, + [1952] = 1930, + [1953] = 1860, + [1954] = 1935, + [1955] = 1919, + [1956] = 1956, + [1957] = 1957, + [1958] = 1957, + [1959] = 1956, + [1960] = 1960, + [1961] = 1961, + [1962] = 1961, + [1963] = 1960, + [1964] = 1964, + [1965] = 1965, + [1966] = 1966, + [1967] = 1967, + [1968] = 1967, + [1969] = 1967, [1970] = 1970, - [1971] = 1061, - [1972] = 1051, - [1973] = 1049, - [1974] = 1053, - [1975] = 1058, - [1976] = 1061, - [1977] = 1282, - [1978] = 1062, - [1979] = 1229, - [1980] = 1056, - [1981] = 1069, - [1982] = 1335, - [1983] = 1175, - [1984] = 1060, - [1985] = 1057, - [1986] = 1068, + [1971] = 1967, + [1972] = 1970, + [1973] = 1967, + [1974] = 1967, + [1975] = 1970, + [1976] = 1976, + [1977] = 1976, + [1978] = 183, + [1979] = 179, + [1980] = 1048, + [1981] = 1086, + [1982] = 1070, + [1983] = 1068, + [1984] = 1066, + [1985] = 1076, + [1986] = 1060, [1987] = 1987, - [1988] = 1077, - [1989] = 1073, - [1990] = 1075, - [1991] = 1134, - [1992] = 1084, - [1993] = 1109, - [1994] = 1106, - [1995] = 1995, - [1996] = 1996, - [1997] = 1996, - [1998] = 1998, - [1999] = 1108, - [2000] = 1113, - [2001] = 1102, - [2002] = 1138, + [1988] = 1061, + [1989] = 1405, + [1990] = 1077, + [1991] = 1076, + [1992] = 1078, + [1993] = 1070, + [1994] = 1399, + [1995] = 1086, + [1996] = 1410, + [1997] = 1073, + [1998] = 1068, + [1999] = 1083, + [2000] = 1407, + [2001] = 1117, + [2002] = 1394, [2003] = 2003, - [2004] = 209, - [2005] = 1101, - [2006] = 1115, - [2007] = 1230, - [2008] = 210, - [2009] = 401, - [2010] = 1136, - [2011] = 1336, - [2012] = 1135, - [2013] = 394, - [2014] = 1283, - [2015] = 1564, - [2016] = 2016, - [2017] = 1114, - [2018] = 2003, - [2019] = 1112, - [2020] = 1176, - [2021] = 2003, - [2022] = 1177, - [2023] = 1178, - [2024] = 1137, - [2025] = 1100, - [2026] = 1995, - [2027] = 1111, - [2028] = 1460, - [2029] = 1457, - [2030] = 1526, - [2031] = 1568, - [2032] = 1455, - [2033] = 1424, - [2034] = 1488, - [2035] = 1429, - [2036] = 1420, - [2037] = 1426, - [2038] = 1421, - [2039] = 1418, - [2040] = 1483, - [2041] = 1566, - [2042] = 1484, - [2043] = 1422, - [2044] = 1449, - [2045] = 1485, - [2046] = 1417, - [2047] = 1486, - [2048] = 2048, - [2049] = 1450, - [2050] = 1497, - [2051] = 1487, - [2052] = 1490, - [2053] = 1461, - [2054] = 1462, - [2055] = 1471, - [2056] = 1427, - [2057] = 1571, - [2058] = 1456, - [2059] = 1515, - [2060] = 1451, - [2061] = 1472, - [2062] = 1423, - [2063] = 1454, - [2064] = 1995, - [2065] = 1489, - [2066] = 1430, - [2067] = 2067, - [2068] = 2068, - [2069] = 2069, - [2070] = 2070, - [2071] = 176, - [2072] = 180, - [2073] = 2073, - [2074] = 2074, - [2075] = 1970, - [2076] = 2076, - [2077] = 1069, - [2078] = 1069, - [2079] = 1057, - [2080] = 1056, - [2081] = 1061, - [2082] = 1056, - [2083] = 1061, - [2084] = 1069, - [2085] = 1056, - [2086] = 1057, - [2087] = 1057, - [2088] = 1061, - [2089] = 2089, - [2090] = 2090, - [2091] = 2091, - [2092] = 2092, - [2093] = 2089, - [2094] = 2094, - [2095] = 2091, - [2096] = 2092, - [2097] = 2097, + [2004] = 2004, + [2005] = 1104, + [2006] = 2006, + [2007] = 1116, + [2008] = 2003, + [2009] = 1301, + [2010] = 2010, + [2011] = 1383, + [2012] = 2010, + [2013] = 1386, + [2014] = 1562, + [2015] = 2015, + [2016] = 1385, + [2017] = 1401, + [2018] = 1398, + [2019] = 2019, + [2020] = 1389, + [2021] = 1411, + [2022] = 1381, + [2023] = 1573, + [2024] = 405, + [2025] = 1392, + [2026] = 1388, + [2027] = 1406, + [2028] = 1390, + [2029] = 2029, + [2030] = 1395, + [2031] = 199, + [2032] = 2032, + [2033] = 1391, + [2034] = 1380, + [2035] = 1400, + [2036] = 1402, + [2037] = 2010, + [2038] = 1396, + [2039] = 2039, + [2040] = 198, + [2041] = 1408, + [2042] = 1379, + [2043] = 1397, + [2044] = 2019, + [2045] = 1561, + [2046] = 1574, + [2047] = 396, + [2048] = 2019, + [2049] = 1480, + [2050] = 1509, + [2051] = 1491, + [2052] = 1463, + [2053] = 1510, + [2054] = 1442, + [2055] = 1419, + [2056] = 1516, + [2057] = 1462, + [2058] = 1460, + [2059] = 1456, + [2060] = 1420, + [2061] = 1489, + [2062] = 1464, + [2063] = 1440, + [2064] = 1498, + [2065] = 1446, + [2066] = 1474, + [2067] = 1499, + [2068] = 1475, + [2069] = 1470, + [2070] = 1457, + [2071] = 1441, + [2072] = 1477, + [2073] = 1478, + [2074] = 1479, + [2075] = 1447, + [2076] = 1448, + [2077] = 1459, + [2078] = 1423, + [2079] = 1490, + [2080] = 1425, + [2081] = 1487, + [2082] = 1443, + [2083] = 2083, + [2084] = 2084, + [2085] = 2085, + [2086] = 2086, + [2087] = 182, + [2088] = 177, + [2089] = 1068, + [2090] = 1987, + [2091] = 1086, + [2092] = 1086, + [2093] = 1076, + [2094] = 1070, + [2095] = 2095, + [2096] = 1070, + [2097] = 1086, [2098] = 2098, - [2099] = 2099, - [2100] = 379, - [2101] = 2098, + [2099] = 1068, + [2100] = 1068, + [2101] = 1076, [2102] = 2102, - [2103] = 2103, - [2104] = 2104, + [2103] = 1076, + [2104] = 1070, [2105] = 2105, [2106] = 2106, [2107] = 2107, - [2108] = 381, - [2109] = 2109, + [2108] = 2108, + [2109] = 2105, [2110] = 2110, - [2111] = 2111, - [2112] = 389, - [2113] = 378, + [2111] = 2110, + [2112] = 2112, + [2113] = 2113, [2114] = 2114, - [2115] = 2115, - [2116] = 2116, - [2117] = 1998, + [2115] = 2112, + [2116] = 2107, + [2117] = 2106, [2118] = 2118, - [2119] = 2119, + [2119] = 295, [2120] = 2120, - [2121] = 2121, - [2122] = 2122, - [2123] = 2121, - [2124] = 380, + [2121] = 256, + [2122] = 266, + [2123] = 2123, + [2124] = 2124, [2125] = 2125, - [2126] = 2111, + [2126] = 2126, [2127] = 2127, - [2128] = 2120, + [2128] = 2128, [2129] = 2129, [2130] = 2130, - [2131] = 2129, - [2132] = 2122, - [2133] = 2133, - [2134] = 2109, - [2135] = 2110, + [2131] = 2131, + [2132] = 1086, + [2133] = 1070, + [2134] = 1076, + [2135] = 1068, [2136] = 2136, - [2137] = 1069, - [2138] = 1057, - [2139] = 1056, - [2140] = 2136, - [2141] = 1061, + [2137] = 2128, + [2138] = 2129, + [2139] = 2131, + [2140] = 2140, + [2141] = 2141, [2142] = 2142, - [2143] = 2143, - [2144] = 2144, - [2145] = 2145, + [2143] = 2128, + [2144] = 349, + [2145] = 353, [2146] = 2146, [2147] = 2147, [2148] = 2148, [2149] = 2149, [2150] = 2150, [2151] = 2151, - [2152] = 2152, + [2152] = 2150, [2153] = 2153, - [2154] = 2154, + [2154] = 2151, [2155] = 2155, - [2156] = 2156, + [2156] = 2015, [2157] = 2157, - [2158] = 2149, - [2159] = 2159, - [2160] = 2160, - [2161] = 2161, + [2158] = 2158, + [2159] = 2120, + [2160] = 2157, + [2161] = 2130, [2162] = 2162, - [2163] = 2162, + [2163] = 2163, [2164] = 2164, [2165] = 2165, [2166] = 2166, [2167] = 2167, [2168] = 2168, - [2169] = 2155, - [2170] = 2159, - [2171] = 2171, - [2172] = 405, + [2169] = 2169, + [2170] = 2170, + [2171] = 2170, + [2172] = 2172, [2173] = 2173, [2174] = 2174, - [2175] = 2155, - [2176] = 2176, + [2175] = 2175, + [2176] = 2164, [2177] = 2177, - [2178] = 2178, + [2178] = 2164, [2179] = 2179, [2180] = 2180, - [2181] = 2181, + [2181] = 397, [2182] = 2182, [2183] = 2183, [2184] = 2184, [2185] = 2185, [2186] = 2186, - [2187] = 2187, + [2187] = 2015, [2188] = 2188, [2189] = 2189, [2190] = 2190, - [2191] = 2016, - [2192] = 1998, + [2191] = 2191, + [2192] = 2192, [2193] = 2193, - [2194] = 2164, - [2195] = 1998, - [2196] = 1077, + [2194] = 2175, + [2195] = 2195, + [2196] = 2196, [2197] = 2197, [2198] = 2198, [2199] = 2199, @@ -6190,391 +6206,391 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2201] = 2201, [2202] = 2202, [2203] = 2203, - [2204] = 2204, + [2204] = 2166, [2205] = 2205, [2206] = 2206, - [2207] = 2207, - [2208] = 1073, - [2209] = 2197, - [2210] = 2210, + [2207] = 2167, + [2208] = 2032, + [2209] = 2209, + [2210] = 2168, [2211] = 2211, - [2212] = 2199, + [2212] = 2015, [2213] = 2213, [2214] = 2214, - [2215] = 2198, - [2216] = 2207, - [2217] = 1084, - [2218] = 2016, - [2219] = 2199, - [2220] = 2211, + [2215] = 2215, + [2216] = 2169, + [2217] = 2217, + [2218] = 2218, + [2219] = 2219, + [2220] = 2220, [2221] = 2221, - [2222] = 2222, - [2223] = 2210, - [2224] = 2213, - [2225] = 2202, + [2222] = 2218, + [2223] = 2223, + [2224] = 2224, + [2225] = 2225, [2226] = 2226, [2227] = 2227, - [2228] = 2228, - [2229] = 2203, - [2230] = 1998, + [2228] = 2221, + [2229] = 2229, + [2230] = 2230, [2231] = 2231, [2232] = 2232, - [2233] = 2214, - [2234] = 2211, - [2235] = 2206, + [2233] = 2233, + [2234] = 2015, + [2235] = 2235, [2236] = 2236, - [2237] = 2016, - [2238] = 2222, - [2239] = 2231, - [2240] = 2200, - [2241] = 2232, - [2242] = 2201, - [2243] = 1075, + [2237] = 2237, + [2238] = 2032, + [2239] = 2239, + [2240] = 2240, + [2241] = 2241, + [2242] = 2229, + [2243] = 2236, [2244] = 2244, [2245] = 2245, [2246] = 2246, - [2247] = 2247, - [2248] = 2248, + [2247] = 2246, + [2248] = 1301, [2249] = 2249, - [2250] = 2250, + [2250] = 2224, [2251] = 2251, - [2252] = 2252, - [2253] = 2253, - [2254] = 2244, - [2255] = 2255, - [2256] = 2256, - [2257] = 2257, - [2258] = 2258, - [2259] = 2259, - [2260] = 2260, - [2261] = 2261, - [2262] = 2245, + [2252] = 1116, + [2253] = 2239, + [2254] = 2032, + [2255] = 2229, + [2256] = 1104, + [2257] = 2223, + [2258] = 2225, + [2259] = 2230, + [2260] = 2220, + [2261] = 1117, + [2262] = 2249, [2263] = 2263, - [2264] = 2264, - [2265] = 2265, - [2266] = 2250, + [2264] = 2233, + [2265] = 2245, + [2266] = 2266, [2267] = 2267, - [2268] = 2267, + [2268] = 2268, [2269] = 2269, [2270] = 2270, [2271] = 2271, [2272] = 2272, - [2273] = 2016, + [2273] = 2273, [2274] = 2274, [2275] = 2275, - [2276] = 2253, + [2276] = 2276, [2277] = 2277, [2278] = 2278, - [2279] = 2271, - [2280] = 2261, - [2281] = 2256, + [2279] = 2273, + [2280] = 2280, + [2281] = 2281, [2282] = 2282, - [2283] = 2263, - [2284] = 2249, - [2285] = 2257, + [2283] = 2283, + [2284] = 2284, + [2285] = 2285, [2286] = 2286, - [2287] = 2275, + [2287] = 2287, [2288] = 2288, - [2289] = 2246, - [2290] = 2272, - [2291] = 2291, - [2292] = 2286, - [2293] = 2251, - [2294] = 2255, - [2295] = 2295, - [2296] = 2248, - [2297] = 2258, + [2289] = 2289, + [2290] = 2268, + [2291] = 2270, + [2292] = 2292, + [2293] = 2293, + [2294] = 2284, + [2295] = 2282, + [2296] = 2274, + [2297] = 2297, [2298] = 2298, - [2299] = 2269, - [2300] = 2300, + [2299] = 2032, + [2300] = 2292, [2301] = 2301, - [2302] = 2302, - [2303] = 2303, + [2302] = 2283, + [2303] = 2288, [2304] = 2304, - [2305] = 2305, + [2305] = 2267, [2306] = 2306, - [2307] = 2307, + [2307] = 2304, [2308] = 2308, - [2309] = 2069, - [2310] = 2310, - [2311] = 2311, - [2312] = 2312, - [2313] = 2312, - [2314] = 2314, + [2309] = 2286, + [2310] = 2275, + [2311] = 2298, + [2312] = 2293, + [2313] = 2313, + [2314] = 2285, [2315] = 2315, - [2316] = 2307, - [2317] = 2311, - [2318] = 2302, - [2319] = 2319, + [2316] = 2269, + [2317] = 2266, + [2318] = 2281, + [2319] = 2301, [2320] = 2320, - [2321] = 2321, - [2322] = 2322, - [2323] = 2323, + [2321] = 2308, + [2322] = 2271, + [2323] = 2297, [2324] = 2324, - [2325] = 2325, + [2325] = 2084, [2326] = 2326, - [2327] = 2301, - [2328] = 2314, - [2329] = 2303, - [2330] = 2304, - [2331] = 2308, - [2332] = 2310, + [2327] = 2327, + [2328] = 2328, + [2329] = 2329, + [2330] = 2330, + [2331] = 2331, + [2332] = 2332, [2333] = 2333, - [2334] = 2300, - [2335] = 2333, + [2334] = 2334, + [2335] = 2335, [2336] = 2336, - [2337] = 2320, - [2338] = 2322, - [2339] = 2323, - [2340] = 2305, - [2341] = 2324, - [2342] = 2325, - [2343] = 2306, + [2337] = 2337, + [2338] = 2338, + [2339] = 2339, + [2340] = 2340, + [2341] = 2336, + [2342] = 2342, + [2343] = 2343, [2344] = 2344, - [2345] = 2321, - [2346] = 2346, + [2345] = 2345, + [2346] = 2342, [2347] = 2347, - [2348] = 2348, - [2349] = 2349, - [2350] = 2350, - [2351] = 2300, + [2348] = 2331, + [2349] = 2337, + [2350] = 2345, + [2351] = 2333, [2352] = 2352, - [2353] = 2353, - [2354] = 2347, + [2353] = 2326, + [2354] = 2354, [2355] = 2355, - [2356] = 2315, + [2356] = 2336, [2357] = 2357, - [2358] = 2358, - [2359] = 2359, + [2358] = 2339, + [2359] = 2340, [2360] = 2360, [2361] = 2361, - [2362] = 2362, - [2363] = 2363, - [2364] = 2364, - [2365] = 178, - [2366] = 2366, - [2367] = 2367, - [2368] = 2368, - [2369] = 2369, + [2362] = 2347, + [2363] = 2330, + [2364] = 2335, + [2365] = 2365, + [2366] = 2324, + [2367] = 2361, + [2368] = 2355, + [2369] = 2365, [2370] = 2370, [2371] = 2371, - [2372] = 2372, + [2372] = 2338, [2373] = 2373, - [2374] = 180, - [2375] = 2373, - [2376] = 2360, + [2374] = 2354, + [2375] = 2357, + [2376] = 2332, [2377] = 2377, [2378] = 2378, [2379] = 2379, [2380] = 2380, - [2381] = 2381, + [2381] = 2379, [2382] = 2382, - [2383] = 2378, - [2384] = 2382, - [2385] = 2367, + [2383] = 2383, + [2384] = 2384, + [2385] = 2385, [2386] = 2386, [2387] = 2387, [2388] = 2388, - [2389] = 2074, - [2390] = 2390, + [2389] = 2389, + [2390] = 2384, [2391] = 2391, [2392] = 2392, - [2393] = 2393, - [2394] = 2358, + [2393] = 2382, + [2394] = 2394, [2395] = 2395, - [2396] = 2379, - [2397] = 176, + [2396] = 2396, + [2397] = 2397, [2398] = 2398, - [2399] = 182, - [2400] = 2377, - [2401] = 2076, - [2402] = 2362, - [2403] = 2070, - [2404] = 2371, - [2405] = 2372, + [2399] = 2399, + [2400] = 2400, + [2401] = 2085, + [2402] = 2402, + [2403] = 2403, + [2404] = 2404, + [2405] = 2405, [2406] = 2406, [2407] = 2407, - [2408] = 2408, + [2408] = 2383, [2409] = 2409, - [2410] = 2410, - [2411] = 2361, - [2412] = 2410, + [2410] = 2406, + [2411] = 2411, + [2412] = 2394, [2413] = 2413, - [2414] = 2364, - [2415] = 2371, - [2416] = 2372, + [2414] = 2414, + [2415] = 2415, + [2416] = 2407, [2417] = 2417, - [2418] = 2369, - [2419] = 2373, - [2420] = 2359, - [2421] = 2387, - [2422] = 2422, + [2418] = 2388, + [2419] = 2419, + [2420] = 2420, + [2421] = 177, + [2422] = 179, [2423] = 2380, - [2424] = 2386, - [2425] = 2425, - [2426] = 2407, - [2427] = 2427, - [2428] = 2363, - [2429] = 2429, + [2424] = 2403, + [2425] = 2419, + [2426] = 182, + [2427] = 2420, + [2428] = 183, + [2429] = 2098, [2430] = 2430, - [2431] = 2431, - [2432] = 2371, - [2433] = 2433, - [2434] = 2434, - [2435] = 2433, - [2436] = 2434, - [2437] = 2372, - [2438] = 2373, - [2439] = 2429, - [2440] = 2381, - [2441] = 2393, - [2442] = 2430, - [2443] = 2408, - [2444] = 2417, - [2445] = 2429, - [2446] = 2390, - [2447] = 2447, - [2448] = 2406, - [2449] = 2392, - [2450] = 2388, - [2451] = 2398, - [2452] = 2427, + [2431] = 2391, + [2432] = 2392, + [2433] = 2417, + [2434] = 2395, + [2435] = 2409, + [2436] = 2391, + [2437] = 2392, + [2438] = 2438, + [2439] = 2395, + [2440] = 2095, + [2441] = 2398, + [2442] = 2442, + [2443] = 2443, + [2444] = 2395, + [2445] = 2445, + [2446] = 2399, + [2447] = 2398, + [2448] = 2377, + [2449] = 2449, + [2450] = 2450, + [2451] = 2394, + [2452] = 2402, [2453] = 2378, - [2454] = 2368, - [2455] = 2395, - [2456] = 2456, + [2454] = 2400, + [2455] = 2386, + [2456] = 2442, [2457] = 2457, [2458] = 2458, - [2459] = 2459, - [2460] = 2458, - [2461] = 2461, - [2462] = 2462, + [2459] = 2404, + [2460] = 2449, + [2461] = 2391, + [2462] = 2457, [2463] = 2463, - [2464] = 2464, - [2465] = 2461, - [2466] = 2466, - [2467] = 2467, - [2468] = 2468, - [2469] = 2469, - [2470] = 2470, - [2471] = 2471, - [2472] = 2472, - [2473] = 2473, - [2474] = 2474, - [2475] = 2475, + [2464] = 2414, + [2465] = 2415, + [2466] = 2405, + [2467] = 2392, + [2468] = 2396, + [2469] = 2397, + [2470] = 2389, + [2471] = 2387, + [2472] = 2411, + [2473] = 2385, + [2474] = 1410, + [2475] = 1399, [2476] = 2476, [2477] = 2477, [2478] = 2478, [2479] = 2479, [2480] = 2480, - [2481] = 2476, - [2482] = 2469, + [2481] = 2481, + [2482] = 2482, [2483] = 2483, [2484] = 2484, - [2485] = 1088, + [2485] = 2485, [2486] = 2486, - [2487] = 1402, + [2487] = 2487, [2488] = 2488, - [2489] = 2489, - [2490] = 2490, - [2491] = 2489, - [2492] = 2473, - [2493] = 2472, + [2489] = 2476, + [2490] = 1321, + [2491] = 2491, + [2492] = 2492, + [2493] = 2493, [2494] = 2494, - [2495] = 2488, + [2495] = 2495, [2496] = 2496, - [2497] = 2456, - [2498] = 1175, - [2499] = 2489, - [2500] = 2486, - [2501] = 2094, - [2502] = 2502, - [2503] = 1229, - [2504] = 2488, + [2497] = 2480, + [2498] = 2498, + [2499] = 2499, + [2500] = 2500, + [2501] = 2501, + [2502] = 2481, + [2503] = 2503, + [2504] = 2504, [2505] = 2505, [2506] = 2506, - [2507] = 1282, - [2508] = 2097, - [2509] = 1335, - [2510] = 2510, + [2507] = 2507, + [2508] = 2508, + [2509] = 2509, + [2510] = 2480, [2511] = 2511, - [2512] = 2512, + [2512] = 2504, [2513] = 2513, [2514] = 2514, - [2515] = 2473, - [2516] = 2516, + [2515] = 2515, + [2516] = 2478, [2517] = 2517, [2518] = 2518, - [2519] = 2513, - [2520] = 2520, - [2521] = 2466, - [2522] = 2522, - [2523] = 2479, - [2524] = 2524, - [2525] = 2525, - [2526] = 2526, - [2527] = 2489, - [2528] = 2496, + [2519] = 2476, + [2520] = 2494, + [2521] = 1405, + [2522] = 2481, + [2523] = 2523, + [2524] = 2113, + [2525] = 1407, + [2526] = 2504, + [2527] = 2527, + [2528] = 2487, [2529] = 2529, - [2530] = 2473, - [2531] = 2467, + [2530] = 2530, + [2531] = 2531, [2532] = 2532, - [2533] = 2533, - [2534] = 2469, - [2535] = 2512, - [2536] = 2475, - [2537] = 2537, - [2538] = 1036, + [2533] = 2118, + [2534] = 2532, + [2535] = 2487, + [2536] = 2536, + [2537] = 1166, + [2538] = 2538, [2539] = 2539, - [2540] = 2525, + [2540] = 2505, [2541] = 2541, [2542] = 2542, - [2543] = 2543, - [2544] = 2517, - [2545] = 2478, - [2546] = 2546, - [2547] = 2547, - [2548] = 2480, + [2543] = 1044, + [2544] = 2544, + [2545] = 2481, + [2546] = 2483, + [2547] = 2499, + [2548] = 2548, [2549] = 2549, - [2550] = 2517, - [2551] = 2551, - [2552] = 2466, - [2553] = 2496, - [2554] = 2456, + [2550] = 2488, + [2551] = 2495, + [2552] = 2548, + [2553] = 2514, + [2554] = 2511, [2555] = 2555, - [2556] = 2546, - [2557] = 2459, - [2558] = 1087, - [2559] = 1394, - [2560] = 2471, - [2561] = 2561, - [2562] = 2532, - [2563] = 2563, - [2564] = 2477, - [2565] = 2565, + [2556] = 2486, + [2557] = 2507, + [2558] = 2558, + [2559] = 2559, + [2560] = 2541, + [2561] = 2485, + [2562] = 2562, + [2563] = 2538, + [2564] = 2496, + [2565] = 2492, [2566] = 2566, [2567] = 2567, - [2568] = 2568, + [2568] = 2548, [2569] = 2569, - [2570] = 2570, - [2571] = 2571, + [2570] = 2559, + [2571] = 1277, [2572] = 2572, - [2573] = 2572, - [2574] = 2574, - [2575] = 2575, + [2573] = 2494, + [2574] = 2562, + [2575] = 2542, [2576] = 2576, - [2577] = 2577, - [2578] = 2578, - [2579] = 2579, - [2580] = 2578, + [2577] = 2488, + [2578] = 1311, + [2579] = 2480, + [2580] = 2580, [2581] = 2581, [2582] = 2582, [2583] = 2583, - [2584] = 2570, + [2584] = 2584, [2585] = 2585, [2586] = 2586, [2587] = 2587, - [2588] = 2104, + [2588] = 2588, [2589] = 2589, [2590] = 2590, [2591] = 2591, @@ -6582,251 +6598,251 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2593] = 2593, [2594] = 2594, [2595] = 2595, - [2596] = 2596, - [2597] = 2597, + [2596] = 2586, + [2597] = 2595, [2598] = 2598, [2599] = 2599, [2600] = 2600, [2601] = 2601, [2602] = 2602, - [2603] = 2603, - [2604] = 2105, - [2605] = 2566, - [2606] = 2565, + [2603] = 2600, + [2604] = 2604, + [2605] = 2605, + [2606] = 2606, [2607] = 2607, - [2608] = 2583, - [2609] = 2106, + [2608] = 2608, + [2609] = 2609, [2610] = 2610, - [2611] = 2572, - [2612] = 2578, - [2613] = 2107, + [2611] = 2611, + [2612] = 2612, + [2613] = 2613, [2614] = 2614, - [2615] = 2615, + [2615] = 2585, [2616] = 2616, - [2617] = 2568, + [2617] = 2617, [2618] = 2618, - [2619] = 2571, + [2619] = 2619, [2620] = 2620, [2621] = 2621, - [2622] = 2622, + [2622] = 2606, [2623] = 2623, [2624] = 2624, [2625] = 2625, - [2626] = 2614, - [2627] = 2570, - [2628] = 166, - [2629] = 2629, - [2630] = 2615, - [2631] = 2631, + [2626] = 2626, + [2627] = 2610, + [2628] = 2628, + [2629] = 2583, + [2630] = 2630, + [2631] = 2598, [2632] = 2632, - [2633] = 2602, - [2634] = 2603, - [2635] = 2602, + [2633] = 2633, + [2634] = 2585, + [2635] = 2635, [2636] = 2636, - [2637] = 2565, - [2638] = 2572, - [2639] = 2578, + [2637] = 2588, + [2638] = 2638, + [2639] = 163, [2640] = 2640, - [2641] = 2614, - [2642] = 2615, - [2643] = 2616, - [2644] = 2568, - [2645] = 2616, - [2646] = 2646, + [2641] = 2641, + [2642] = 2642, + [2643] = 2643, + [2644] = 2644, + [2645] = 2645, + [2646] = 2136, [2647] = 2647, - [2648] = 2648, + [2648] = 2600, [2649] = 2649, - [2650] = 2602, + [2650] = 2617, [2651] = 2651, - [2652] = 2572, - [2653] = 2567, - [2654] = 2616, - [2655] = 2568, - [2656] = 2656, - [2657] = 2657, - [2658] = 2594, - [2659] = 2568, - [2660] = 2596, - [2661] = 2597, - [2662] = 2662, - [2663] = 2582, + [2652] = 2633, + [2653] = 2618, + [2654] = 2619, + [2655] = 2655, + [2656] = 2623, + [2657] = 2628, + [2658] = 2658, + [2659] = 2162, + [2660] = 2598, + [2661] = 2632, + [2662] = 2633, + [2663] = 2585, [2664] = 2664, - [2665] = 2575, + [2665] = 2665, [2666] = 2666, - [2667] = 2667, - [2668] = 2616, - [2669] = 2568, + [2667] = 2600, + [2668] = 2636, + [2669] = 2632, [2670] = 2670, - [2671] = 2671, - [2672] = 2581, - [2673] = 2574, - [2674] = 2674, - [2675] = 2567, - [2676] = 2676, - [2677] = 2623, - [2678] = 2678, - [2679] = 2679, - [2680] = 2651, + [2671] = 2619, + [2672] = 2624, + [2673] = 2673, + [2674] = 2618, + [2675] = 2675, + [2676] = 2628, + [2677] = 2677, + [2678] = 2633, + [2679] = 2585, + [2680] = 2680, [2681] = 2681, [2682] = 2682, - [2683] = 2587, - [2684] = 2666, - [2685] = 2569, - [2686] = 2686, - [2687] = 2603, - [2688] = 2688, - [2689] = 2568, - [2690] = 2585, - [2691] = 2691, - [2692] = 2566, - [2693] = 2640, - [2694] = 2596, - [2695] = 2695, - [2696] = 2600, - [2697] = 2565, + [2683] = 2683, + [2684] = 2684, + [2685] = 2616, + [2686] = 2617, + [2687] = 2146, + [2688] = 2618, + [2689] = 2147, + [2690] = 2633, + [2691] = 2585, + [2692] = 2148, + [2693] = 2149, + [2694] = 2641, + [2695] = 2613, + [2696] = 2681, + [2697] = 2641, [2698] = 2698, - [2699] = 2571, - [2700] = 2597, - [2701] = 2695, - [2702] = 2702, - [2703] = 2571, - [2704] = 2598, + [2699] = 2666, + [2700] = 2123, + [2701] = 2124, + [2702] = 2125, + [2703] = 2619, + [2704] = 2698, [2705] = 2705, - [2706] = 2706, - [2707] = 2599, - [2708] = 2708, - [2709] = 2616, + [2706] = 2140, + [2707] = 2126, + [2708] = 2666, + [2709] = 2673, [2710] = 2710, - [2711] = 2702, + [2711] = 2611, [2712] = 2712, - [2713] = 2679, - [2714] = 167, - [2715] = 2587, - [2716] = 2118, - [2717] = 2717, - [2718] = 2575, - [2719] = 2719, - [2720] = 2601, - [2721] = 2607, - [2722] = 2602, - [2723] = 2723, - [2724] = 2624, - [2725] = 2590, - [2726] = 2130, - [2727] = 2119, - [2728] = 2676, - [2729] = 2589, + [2713] = 2612, + [2714] = 2665, + [2715] = 2584, + [2716] = 2716, + [2717] = 2664, + [2718] = 2675, + [2719] = 2589, + [2720] = 2658, + [2721] = 2698, + [2722] = 2722, + [2723] = 2585, + [2724] = 2141, + [2725] = 2644, + [2726] = 2604, + [2727] = 2584, + [2728] = 2623, + [2729] = 2729, [2730] = 2730, - [2731] = 2591, - [2732] = 2115, - [2733] = 2116, - [2734] = 2577, - [2735] = 2723, - [2736] = 2600, - [2737] = 2601, - [2738] = 2602, - [2739] = 2600, - [2740] = 2682, - [2741] = 2741, - [2742] = 2603, - [2743] = 2625, - [2744] = 2744, - [2745] = 2583, - [2746] = 2744, + [2731] = 2651, + [2732] = 2732, + [2733] = 2604, + [2734] = 2240, + [2735] = 2705, + [2736] = 2736, + [2737] = 2642, + [2738] = 2588, + [2739] = 2609, + [2740] = 2606, + [2741] = 2594, + [2742] = 2623, + [2743] = 2613, + [2744] = 2624, + [2745] = 2625, + [2746] = 2614, [2747] = 2747, - [2748] = 2610, - [2749] = 2705, + [2748] = 2645, + [2749] = 2599, [2750] = 2750, - [2751] = 2603, - [2752] = 2622, - [2753] = 2648, - [2754] = 2577, - [2755] = 2678, - [2756] = 2698, - [2757] = 2710, - [2758] = 2670, - [2759] = 2625, - [2760] = 2601, - [2761] = 2761, - [2762] = 2762, - [2763] = 2566, - [2764] = 2764, - [2765] = 2765, - [2766] = 2099, - [2767] = 2598, - [2768] = 2768, - [2769] = 2587, - [2770] = 2620, - [2771] = 2647, - [2772] = 2599, - [2773] = 2695, - [2774] = 2616, - [2775] = 2565, - [2776] = 2670, - [2777] = 2691, + [2751] = 2594, + [2752] = 2752, + [2753] = 2753, + [2754] = 2611, + [2755] = 2614, + [2756] = 2670, + [2757] = 2612, + [2758] = 2736, + [2759] = 2759, + [2760] = 2625, + [2761] = 2610, + [2762] = 2621, + [2763] = 2626, + [2764] = 2616, + [2765] = 2605, + [2766] = 2616, + [2767] = 2617, + [2768] = 2618, + [2769] = 2628, + [2770] = 2770, + [2771] = 2607, + [2772] = 2619, + [2773] = 2773, + [2774] = 2774, + [2775] = 2705, + [2776] = 2682, + [2777] = 2583, [2778] = 2778, - [2779] = 2607, - [2780] = 2741, - [2781] = 2607, - [2782] = 2570, - [2783] = 2587, - [2784] = 2784, + [2779] = 2753, + [2780] = 2780, + [2781] = 2640, + [2782] = 2782, + [2783] = 2628, + [2784] = 2651, [2785] = 2785, - [2786] = 2695, - [2787] = 2621, - [2788] = 2583, - [2789] = 2133, - [2790] = 2688, - [2791] = 2103, - [2792] = 2610, - [2793] = 2579, - [2794] = 2794, - [2795] = 2730, + [2786] = 2786, + [2787] = 2698, + [2788] = 2788, + [2789] = 2789, + [2790] = 2790, + [2791] = 2643, + [2792] = 2664, + [2793] = 2683, + [2794] = 2606, + [2795] = 2587, [2796] = 2796, - [2797] = 2615, - [2798] = 2717, - [2799] = 2761, - [2800] = 2674, - [2801] = 2768, - [2802] = 2802, - [2803] = 2590, - [2804] = 2572, - [2805] = 2578, - [2806] = 2581, - [2807] = 2594, - [2808] = 2708, - [2809] = 2636, - [2810] = 2595, - [2811] = 2747, - [2812] = 2614, - [2813] = 2785, - [2814] = 2814, - [2815] = 2615, - [2816] = 2632, + [2797] = 2797, + [2798] = 2677, + [2799] = 2712, + [2800] = 2623, + [2801] = 2588, + [2802] = 2698, + [2803] = 2729, + [2804] = 2624, + [2805] = 2664, + [2806] = 2773, + [2807] = 2774, + [2808] = 2630, + [2809] = 2625, + [2810] = 2810, + [2811] = 2583, + [2812] = 2620, + [2813] = 2610, + [2814] = 2598, + [2815] = 2796, + [2816] = 2816, [2817] = 2632, - [2818] = 2717, - [2819] = 2614, - [2820] = 2764, - [2821] = 2610, - [2822] = 2778, + [2818] = 2628, + [2819] = 2819, + [2820] = 2618, + [2821] = 2583, + [2822] = 2638, [2823] = 2823, - [2824] = 2824, - [2825] = 2825, - [2826] = 2826, - [2827] = 2827, - [2828] = 2828, - [2829] = 2829, - [2830] = 2830, - [2831] = 2831, - [2832] = 2832, - [2833] = 2833, - [2834] = 2834, - [2835] = 2835, - [2836] = 2836, - [2837] = 2837, - [2838] = 2838, - [2839] = 2839, - [2840] = 2840, + [2824] = 2782, + [2825] = 2750, + [2826] = 2796, + [2827] = 2797, + [2828] = 2592, + [2829] = 2591, + [2830] = 166, + [2831] = 2732, + [2832] = 2747, + [2833] = 2633, + [2834] = 2598, + [2835] = 2632, + [2836] = 2638, + [2837] = 2782, + [2838] = 2633, + [2839] = 2819, + [2840] = 2752, [2841] = 2841, [2842] = 2842, [2843] = 2843, @@ -6835,22 +6851,22 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2846] = 2846, [2847] = 2847, [2848] = 2848, - [2849] = 2848, - [2850] = 2850, - [2851] = 2851, - [2852] = 2852, - [2853] = 2853, - [2854] = 2824, - [2855] = 2855, - [2856] = 2856, + [2849] = 2849, + [2850] = 2173, + [2851] = 2174, + [2852] = 2179, + [2853] = 2182, + [2854] = 2183, + [2855] = 2184, + [2856] = 2215, [2857] = 2857, [2858] = 2858, - [2859] = 2859, + [2859] = 2165, [2860] = 2860, [2861] = 2861, - [2862] = 2829, + [2862] = 2862, [2863] = 2863, - [2864] = 2837, + [2864] = 2864, [2865] = 2865, [2866] = 2866, [2867] = 2867, @@ -6864,10 +6880,10 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2875] = 2875, [2876] = 2876, [2877] = 2877, - [2878] = 2865, + [2878] = 2878, [2879] = 2879, [2880] = 2880, - [2881] = 2881, + [2881] = 2865, [2882] = 2882, [2883] = 2883, [2884] = 2884, @@ -6878,283 +6894,283 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2889] = 2889, [2890] = 2890, [2891] = 2891, - [2892] = 2892, + [2892] = 2858, [2893] = 2893, [2894] = 2894, - [2895] = 2895, + [2895] = 2866, [2896] = 2896, - [2897] = 2144, - [2898] = 2147, + [2897] = 2897, + [2898] = 2898, [2899] = 2899, [2900] = 2900, [2901] = 2901, [2902] = 2902, - [2903] = 2903, + [2903] = 2209, [2904] = 2904, - [2905] = 2152, + [2905] = 2905, [2906] = 2906, - [2907] = 2153, + [2907] = 2907, [2908] = 2908, - [2909] = 2850, - [2910] = 2874, - [2911] = 2911, - [2912] = 2165, - [2913] = 2166, + [2909] = 2909, + [2910] = 2910, + [2911] = 2860, + [2912] = 2875, + [2913] = 2913, [2914] = 2914, - [2915] = 2171, - [2916] = 2892, + [2915] = 2884, + [2916] = 2877, [2917] = 2917, - [2918] = 2173, - [2919] = 2177, - [2920] = 2180, + [2918] = 2918, + [2919] = 2878, + [2920] = 2920, [2921] = 2921, [2922] = 2922, - [2923] = 2168, - [2924] = 2868, - [2925] = 2867, - [2926] = 2148, + [2923] = 2923, + [2924] = 2924, + [2925] = 2925, + [2926] = 2926, [2927] = 2927, [2928] = 2928, [2929] = 2929, [2930] = 2930, - [2931] = 2931, - [2932] = 2932, + [2931] = 2879, + [2932] = 2896, [2933] = 2933, [2934] = 2934, [2935] = 2935, [2936] = 2936, [2937] = 2937, - [2938] = 2938, - [2939] = 2835, - [2940] = 2933, - [2941] = 2941, + [2938] = 2861, + [2939] = 2939, + [2940] = 2940, + [2941] = 2842, [2942] = 2942, - [2943] = 2825, + [2943] = 2943, [2944] = 2944, [2945] = 2945, [2946] = 2946, [2947] = 2947, - [2948] = 2826, - [2949] = 2827, - [2950] = 2843, - [2951] = 2900, - [2952] = 2914, - [2953] = 2151, + [2948] = 174, + [2949] = 2949, + [2950] = 2950, + [2951] = 2951, + [2952] = 2952, + [2953] = 2953, [2954] = 2954, - [2955] = 2932, - [2956] = 2936, - [2957] = 2957, - [2958] = 2838, - [2959] = 2944, - [2960] = 2960, - [2961] = 2917, - [2962] = 2962, - [2963] = 2963, - [2964] = 2852, - [2965] = 2965, - [2966] = 2853, - [2967] = 2967, - [2968] = 2968, - [2969] = 2957, + [2955] = 2955, + [2956] = 2956, + [2957] = 2863, + [2958] = 2958, + [2959] = 2943, + [2960] = 2190, + [2961] = 2192, + [2962] = 2196, + [2963] = 2197, + [2964] = 2198, + [2965] = 2199, + [2966] = 2966, + [2967] = 2936, + [2968] = 2901, + [2969] = 2935, [2970] = 2970, [2971] = 2971, - [2972] = 2873, - [2973] = 2855, + [2972] = 2869, + [2973] = 2876, [2974] = 2974, - [2975] = 2975, - [2976] = 2976, - [2977] = 2977, - [2978] = 2978, + [2975] = 2890, + [2976] = 2897, + [2977] = 2898, + [2978] = 2880, [2979] = 2979, [2980] = 2980, - [2981] = 2181, - [2982] = 2182, - [2983] = 2856, - [2984] = 2185, - [2985] = 2186, - [2986] = 2927, - [2987] = 2987, + [2981] = 2981, + [2982] = 2847, + [2983] = 2983, + [2984] = 2984, + [2985] = 2985, + [2986] = 2986, + [2987] = 2882, [2988] = 2988, [2989] = 2989, [2990] = 2990, - [2991] = 2991, + [2991] = 2917, [2992] = 2992, - [2993] = 2843, - [2994] = 2928, - [2995] = 2883, - [2996] = 2884, - [2997] = 2929, + [2993] = 2918, + [2994] = 2883, + [2995] = 2843, + [2996] = 2163, + [2997] = 2997, [2998] = 2998, - [2999] = 2891, - [3000] = 2156, - [3001] = 2893, - [3002] = 2157, - [3003] = 3003, - [3004] = 2962, - [3005] = 2867, - [3006] = 2927, - [3007] = 2928, - [3008] = 2929, - [3009] = 2160, - [3010] = 2946, - [3011] = 3011, - [3012] = 2947, - [3013] = 2963, - [3014] = 2161, - [3015] = 3015, - [3016] = 2957, - [3017] = 2174, - [3018] = 2176, - [3019] = 2183, - [3020] = 2987, - [3021] = 2188, - [3022] = 2987, - [3023] = 2193, - [3024] = 2146, - [3025] = 2145, - [3026] = 2883, - [3027] = 2884, - [3028] = 2911, - [3029] = 2867, - [3030] = 2857, - [3031] = 3031, - [3032] = 2957, - [3033] = 3033, - [3034] = 2840, - [3035] = 405, - [3036] = 3036, - [3037] = 2921, - [3038] = 2880, + [2999] = 2868, + [3000] = 3000, + [3001] = 3001, + [3002] = 3002, + [3003] = 2180, + [3004] = 2185, + [3005] = 2966, + [3006] = 2937, + [3007] = 3007, + [3008] = 2970, + [3009] = 2885, + [3010] = 3010, + [3011] = 2866, + [3012] = 2868, + [3013] = 2193, + [3014] = 2909, + [3015] = 2971, + [3016] = 2195, + [3017] = 3007, + [3018] = 2904, + [3019] = 2905, + [3020] = 2172, + [3021] = 2875, + [3022] = 3022, + [3023] = 2189, + [3024] = 2884, + [3025] = 2205, + [3026] = 2214, + [3027] = 2217, + [3028] = 2186, + [3029] = 2945, + [3030] = 2202, + [3031] = 2949, + [3032] = 2950, + [3033] = 2951, + [3034] = 2942, + [3035] = 2901, + [3036] = 2935, + [3037] = 2213, + [3038] = 2886, [3039] = 3039, - [3040] = 3040, - [3041] = 3041, + [3040] = 2992, + [3041] = 2177, [3042] = 3042, [3043] = 3043, - [3044] = 2931, - [3045] = 2904, - [3046] = 2858, - [3047] = 2883, - [3048] = 2884, - [3049] = 2991, - [3050] = 2831, - [3051] = 2885, - [3052] = 3052, + [3044] = 2206, + [3045] = 3045, + [3046] = 2921, + [3047] = 3047, + [3048] = 3048, + [3049] = 3007, + [3050] = 3050, + [3051] = 3051, + [3052] = 2922, [3053] = 3053, - [3054] = 2887, - [3055] = 2859, - [3056] = 3056, - [3057] = 3057, + [3054] = 3054, + [3055] = 3055, + [3056] = 2188, + [3057] = 2889, [3058] = 3058, - [3059] = 2988, - [3060] = 3060, - [3061] = 2832, - [3062] = 2934, - [3063] = 3056, - [3064] = 2888, - [3065] = 2834, - [3066] = 2890, - [3067] = 2957, - [3068] = 3068, + [3059] = 2904, + [3060] = 2905, + [3061] = 2945, + [3062] = 2992, + [3063] = 3063, + [3064] = 2925, + [3065] = 397, + [3066] = 3066, + [3067] = 3067, + [3068] = 2891, [3069] = 3069, - [3070] = 175, + [3070] = 3070, [3071] = 3071, - [3072] = 2935, + [3072] = 3072, [3073] = 3073, - [3074] = 3074, - [3075] = 3075, + [3074] = 2864, + [3075] = 2945, [3076] = 3076, - [3077] = 3077, - [3078] = 2891, + [3077] = 2848, + [3078] = 3078, [3079] = 3079, - [3080] = 2906, - [3081] = 2893, + [3080] = 3080, + [3081] = 2894, [3082] = 3082, - [3083] = 3083, + [3083] = 2983, [3084] = 3084, - [3085] = 2828, - [3086] = 2946, - [3087] = 3087, - [3088] = 2947, - [3089] = 2937, - [3090] = 3090, - [3091] = 2178, - [3092] = 2179, - [3093] = 2938, - [3094] = 3031, - [3095] = 2184, + [3085] = 3039, + [3086] = 2927, + [3087] = 3022, + [3088] = 3050, + [3089] = 3089, + [3090] = 2893, + [3091] = 3039, + [3092] = 2992, + [3093] = 2984, + [3094] = 3094, + [3095] = 3095, [3096] = 3096, - [3097] = 2187, - [3098] = 2894, - [3099] = 2189, - [3100] = 2895, + [3097] = 3097, + [3098] = 3098, + [3099] = 2949, + [3100] = 3100, [3101] = 3101, - [3102] = 2190, - [3103] = 3069, - [3104] = 2861, - [3105] = 3101, - [3106] = 3056, - [3107] = 3058, - [3108] = 2150, - [3109] = 2823, - [3110] = 3110, - [3111] = 2856, + [3102] = 3102, + [3103] = 3103, + [3104] = 3104, + [3105] = 2950, + [3106] = 2951, + [3107] = 3107, + [3108] = 3108, + [3109] = 3109, + [3110] = 2902, + [3111] = 2933, [3112] = 3112, [3113] = 3113, - [3114] = 2987, - [3115] = 3115, + [3114] = 3114, + [3115] = 2952, [3116] = 3116, - [3117] = 2836, - [3118] = 2846, - [3119] = 3119, - [3120] = 2872, - [3121] = 2970, - [3122] = 2968, - [3123] = 3113, - [3124] = 2945, - [3125] = 2980, - [3126] = 2901, - [3127] = 3033, - [3128] = 2876, - [3129] = 3129, + [3117] = 3117, + [3118] = 3118, + [3119] = 3109, + [3120] = 2953, + [3121] = 2954, + [3122] = 3122, + [3123] = 2870, + [3124] = 2929, + [3125] = 2997, + [3126] = 3063, + [3127] = 2904, + [3128] = 2955, + [3129] = 2930, [3130] = 3130, - [3131] = 2902, - [3132] = 2840, + [3131] = 2905, + [3132] = 2956, [3133] = 3133, - [3134] = 3134, - [3135] = 1427, - [3136] = 3136, - [3137] = 3137, - [3138] = 3138, - [3139] = 3139, - [3140] = 3140, - [3141] = 3141, - [3142] = 3142, - [3143] = 3143, + [3134] = 2966, + [3135] = 2201, + [3136] = 2211, + [3137] = 3107, + [3138] = 2985, + [3139] = 3007, + [3140] = 2874, + [3141] = 2906, + [3142] = 3133, + [3143] = 2992, [3144] = 3144, - [3145] = 3145, + [3145] = 2923, [3146] = 3146, [3147] = 3147, - [3148] = 3145, - [3149] = 3133, - [3150] = 3150, - [3151] = 3151, - [3152] = 3152, - [3153] = 3153, - [3154] = 3154, - [3155] = 3155, - [3156] = 3156, - [3157] = 3157, - [3158] = 1456, - [3159] = 3159, + [3148] = 2888, + [3149] = 2907, + [3150] = 3070, + [3151] = 2900, + [3152] = 2871, + [3153] = 2928, + [3154] = 2191, + [3155] = 2908, + [3156] = 2958, + [3157] = 3118, + [3158] = 2200, + [3159] = 3147, [3160] = 3160, [3161] = 3161, - [3162] = 1457, + [3162] = 3162, [3163] = 3163, [3164] = 3164, [3165] = 3165, [3166] = 3166, [3167] = 3167, - [3168] = 3139, + [3168] = 3168, [3169] = 3169, [3170] = 3170, [3171] = 3171, @@ -7173,275 +7189,275 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [3184] = 3184, [3185] = 3185, [3186] = 3186, - [3187] = 3151, + [3187] = 3187, [3188] = 3188, - [3189] = 3152, - [3190] = 3134, - [3191] = 3139, + [3189] = 3189, + [3190] = 3190, + [3191] = 3191, [3192] = 3192, - [3193] = 3193, - [3194] = 3141, + [3193] = 3163, + [3194] = 3165, [3195] = 3195, [3196] = 3196, [3197] = 3197, [3198] = 3198, [3199] = 3199, - [3200] = 3200, - [3201] = 3184, - [3202] = 3139, + [3200] = 3163, + [3201] = 3201, + [3202] = 3202, [3203] = 3203, [3204] = 3204, - [3205] = 3143, - [3206] = 3206, + [3205] = 1442, + [3206] = 3188, [3207] = 3207, - [3208] = 3196, - [3209] = 3133, - [3210] = 3150, + [3208] = 3208, + [3209] = 1443, + [3210] = 3210, [3211] = 3211, [3212] = 3212, - [3213] = 3213, - [3214] = 3204, - [3215] = 3161, + [3213] = 3192, + [3214] = 3214, + [3215] = 3215, [3216] = 3216, - [3217] = 3212, - [3218] = 3213, - [3219] = 3165, - [3220] = 3139, - [3221] = 3170, - [3222] = 3171, + [3217] = 3217, + [3218] = 3218, + [3219] = 3219, + [3220] = 3220, + [3221] = 3221, + [3222] = 3222, [3223] = 3223, - [3224] = 3224, - [3225] = 3225, + [3224] = 3217, + [3225] = 3220, [3226] = 3226, [3227] = 3227, [3228] = 3228, [3229] = 3229, - [3230] = 3155, - [3231] = 3231, - [3232] = 3232, - [3233] = 3233, - [3234] = 3137, - [3235] = 1484, - [3236] = 3169, - [3237] = 3237, - [3238] = 3188, - [3239] = 3143, - [3240] = 3240, - [3241] = 3143, - [3242] = 3150, - [3243] = 3185, - [3244] = 3161, - [3245] = 3245, + [3230] = 3230, + [3231] = 3218, + [3232] = 3204, + [3233] = 3160, + [3234] = 3234, + [3235] = 3163, + [3236] = 3236, + [3237] = 3168, + [3238] = 3167, + [3239] = 3239, + [3240] = 3172, + [3241] = 3173, + [3242] = 3170, + [3243] = 3243, + [3244] = 3244, + [3245] = 3183, [3246] = 3246, - [3247] = 3139, - [3248] = 3248, - [3249] = 3170, - [3250] = 3171, + [3247] = 3247, + [3248] = 3189, + [3249] = 3249, + [3250] = 3163, [3251] = 3251, - [3252] = 3252, - [3253] = 3171, - [3254] = 3254, - [3255] = 3165, - [3256] = 3150, + [3252] = 3165, + [3253] = 3195, + [3254] = 3164, + [3255] = 3255, + [3256] = 3197, [3257] = 3257, - [3258] = 3139, - [3259] = 3170, - [3260] = 3171, + [3258] = 3210, + [3259] = 3199, + [3260] = 3215, [3261] = 3261, - [3262] = 3262, + [3262] = 3169, [3263] = 3263, - [3264] = 3200, + [3264] = 3264, [3265] = 3265, - [3266] = 3266, - [3267] = 3150, - [3268] = 3139, - [3269] = 3170, - [3270] = 3171, - [3271] = 3166, + [3266] = 3168, + [3267] = 1457, + [3268] = 3173, + [3269] = 3183, + [3270] = 3270, + [3271] = 3271, [3272] = 3272, - [3273] = 3150, - [3274] = 3139, - [3275] = 3170, - [3276] = 3171, - [3277] = 3150, - [3278] = 3170, - [3279] = 3171, - [3280] = 3150, - [3281] = 3170, - [3282] = 3171, - [3283] = 3150, - [3284] = 3170, - [3285] = 3171, - [3286] = 3150, - [3287] = 3170, - [3288] = 3171, - [3289] = 3207, - [3290] = 3153, - [3291] = 3291, + [3273] = 3163, + [3274] = 3165, + [3275] = 3195, + [3276] = 3178, + [3277] = 3277, + [3278] = 3175, + [3279] = 3279, + [3280] = 3184, + [3281] = 3189, + [3282] = 3201, + [3283] = 3187, + [3284] = 3190, + [3285] = 3285, + [3286] = 3171, + [3287] = 3173, + [3288] = 3288, + [3289] = 3163, + [3290] = 3165, + [3291] = 3195, [3292] = 3292, - [3293] = 3265, - [3294] = 3294, - [3295] = 3139, - [3296] = 3175, - [3297] = 3141, - [3298] = 3298, - [3299] = 3159, - [3300] = 3300, - [3301] = 3154, - [3302] = 3143, - [3303] = 3152, - [3304] = 3197, - [3305] = 3206, - [3306] = 3306, - [3307] = 3180, - [3308] = 3211, - [3309] = 3309, - [3310] = 3161, - [3311] = 3167, - [3312] = 3291, - [3313] = 3261, - [3314] = 3181, - [3315] = 3145, - [3316] = 3133, - [3317] = 3246, - [3318] = 3318, - [3319] = 3300, - [3320] = 3150, + [3293] = 3293, + [3294] = 3176, + [3295] = 3183, + [3296] = 3296, + [3297] = 3173, + [3298] = 3163, + [3299] = 3163, + [3300] = 3165, + [3301] = 3195, + [3302] = 3202, + [3303] = 3172, + [3304] = 3304, + [3305] = 3173, + [3306] = 3163, + [3307] = 3165, + [3308] = 3195, + [3309] = 3173, + [3310] = 3165, + [3311] = 3195, + [3312] = 3173, + [3313] = 3165, + [3314] = 3195, + [3315] = 3173, + [3316] = 3165, + [3317] = 3195, + [3318] = 3173, + [3319] = 3165, + [3320] = 3195, [3321] = 3321, - [3322] = 3322, + [3322] = 3207, [3323] = 3323, - [3324] = 3251, - [3325] = 3152, - [3326] = 3326, - [3327] = 3327, - [3328] = 3328, - [3329] = 3216, - [3330] = 3153, - [3331] = 3228, - [3332] = 3233, - [3333] = 3237, - [3334] = 3334, + [3324] = 3324, + [3325] = 3325, + [3326] = 3247, + [3327] = 3166, + [3328] = 3249, + [3329] = 3160, + [3330] = 3251, + [3331] = 3168, + [3332] = 3175, + [3333] = 3333, + [3334] = 3333, [3335] = 3335, - [3336] = 3336, - [3337] = 3206, - [3338] = 3338, - [3339] = 3090, - [3340] = 3116, - [3341] = 3231, - [3342] = 3160, + [3336] = 3239, + [3337] = 3335, + [3338] = 3246, + [3339] = 3339, + [3340] = 3340, + [3341] = 3171, + [3342] = 3172, [3343] = 3343, - [3344] = 3344, + [3344] = 3214, [3345] = 3345, - [3346] = 3138, - [3347] = 3161, - [3348] = 3195, - [3349] = 3198, - [3350] = 3224, - [3351] = 3225, - [3352] = 3318, - [3353] = 3199, + [3346] = 3346, + [3347] = 3347, + [3348] = 3173, + [3349] = 3349, + [3350] = 3350, + [3351] = 3175, + [3352] = 3352, + [3353] = 3219, [3354] = 3354, - [3355] = 3229, - [3356] = 3164, - [3357] = 3232, - [3358] = 3165, - [3359] = 3166, - [3360] = 3227, - [3361] = 3170, - [3362] = 3321, - [3363] = 3164, - [3364] = 3140, - [3365] = 3335, + [3355] = 3162, + [3356] = 3356, + [3357] = 3176, + [3358] = 1420, + [3359] = 3343, + [3360] = 3360, + [3361] = 3361, + [3362] = 3362, + [3363] = 3363, + [3364] = 3364, + [3365] = 3161, [3366] = 3366, - [3367] = 3263, - [3368] = 3368, + [3367] = 3367, + [3368] = 3361, [3369] = 3369, - [3370] = 3159, - [3371] = 3139, - [3372] = 3200, - [3373] = 3197, - [3374] = 3150, - [3375] = 3181, - [3376] = 3170, - [3377] = 3171, + [3370] = 3219, + [3371] = 3089, + [3372] = 3112, + [3373] = 3272, + [3374] = 3374, + [3375] = 3192, + [3376] = 3264, + [3377] = 3270, [3378] = 3378, - [3379] = 3379, - [3380] = 3380, - [3381] = 3381, - [3382] = 3159, - [3383] = 3292, - [3384] = 3384, + [3379] = 3183, + [3380] = 3345, + [3381] = 3350, + [3382] = 3360, + [3383] = 3362, + [3384] = 3204, [3385] = 3385, - [3386] = 3151, - [3387] = 3159, - [3388] = 3175, + [3386] = 3279, + [3387] = 3387, + [3388] = 3374, [3389] = 3389, - [3390] = 3177, - [3391] = 3368, - [3392] = 3186, - [3393] = 3193, - [3394] = 3366, - [3395] = 3395, - [3396] = 3309, - [3397] = 3397, - [3398] = 1497, - [3399] = 3344, - [3400] = 3182, - [3401] = 3389, - [3402] = 3182, - [3403] = 3378, - [3404] = 3146, - [3405] = 3203, - [3406] = 3384, - [3407] = 3139, - [3408] = 3179, - [3409] = 3142, - [3410] = 3226, - [3411] = 3368, - [3412] = 3193, - [3413] = 3179, - [3414] = 3193, - [3415] = 3179, + [3390] = 3188, + [3391] = 3223, + [3392] = 3189, + [3393] = 3190, + [3394] = 3198, + [3395] = 3346, + [3396] = 3285, + [3397] = 3255, + [3398] = 3182, + [3399] = 3399, + [3400] = 3400, + [3401] = 3401, + [3402] = 3402, + [3403] = 3403, + [3404] = 3404, + [3405] = 3160, + [3406] = 3166, + [3407] = 3363, + [3408] = 3333, + [3409] = 3163, + [3410] = 3214, + [3411] = 3162, + [3412] = 3347, + [3413] = 3296, + [3414] = 3165, + [3415] = 3364, [3416] = 3416, - [3417] = 3266, - [3418] = 3248, - [3419] = 3257, - [3420] = 3343, - [3421] = 3380, - [3422] = 3177, - [3423] = 3245, - [3424] = 3424, - [3425] = 3425, - [3426] = 3426, + [3417] = 3195, + [3418] = 3418, + [3419] = 3173, + [3420] = 3160, + [3421] = 3421, + [3422] = 3339, + [3423] = 3340, + [3424] = 3199, + [3425] = 3201, + [3426] = 3236, [3427] = 3427, - [3428] = 3428, - [3429] = 3429, - [3430] = 3430, - [3431] = 3431, - [3432] = 3432, - [3433] = 3433, - [3434] = 3434, - [3435] = 3435, - [3436] = 163, - [3437] = 3437, - [3438] = 3438, - [3439] = 3439, - [3440] = 3440, - [3441] = 3441, - [3442] = 3442, - [3443] = 3443, - [3444] = 3444, - [3445] = 3445, - [3446] = 3446, - [3447] = 3435, - [3448] = 3448, - [3449] = 3448, - [3450] = 3450, - [3451] = 3451, - [3452] = 161, - [3453] = 3453, - [3454] = 3454, - [3455] = 3455, + [3428] = 3226, + [3429] = 3168, + [3430] = 3163, + [3431] = 3244, + [3432] = 3402, + [3433] = 3401, + [3434] = 3221, + [3435] = 3208, + [3436] = 3195, + [3437] = 3416, + [3438] = 1516, + [3439] = 3323, + [3440] = 3191, + [3441] = 3421, + [3442] = 3340, + [3443] = 3323, + [3444] = 3340, + [3445] = 3323, + [3446] = 3389, + [3447] = 3229, + [3448] = 3399, + [3449] = 3324, + [3450] = 3354, + [3451] = 3227, + [3452] = 3293, + [3453] = 3263, + [3454] = 3212, + [3455] = 3421, [3456] = 3456, [3457] = 3457, [3458] = 3458, @@ -7450,22 +7466,22 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [3461] = 3461, [3462] = 3462, [3463] = 3463, - [3464] = 3440, + [3464] = 3464, [3465] = 3465, [3466] = 3466, - [3467] = 3465, + [3467] = 3467, [3468] = 3468, [3469] = 3469, [3470] = 3470, [3471] = 3471, [3472] = 3472, - [3473] = 3442, + [3473] = 3473, [3474] = 3474, [3475] = 3475, - [3476] = 3431, - [3477] = 3455, + [3476] = 158, + [3477] = 3477, [3478] = 3478, - [3479] = 3429, + [3479] = 3479, [3480] = 3480, [3481] = 3481, [3482] = 3482, @@ -7479,260 +7495,295 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [3490] = 3490, [3491] = 3491, [3492] = 3492, - [3493] = 3493, + [3493] = 3456, [3494] = 3494, [3495] = 3495, [3496] = 3496, [3497] = 3497, [3498] = 3498, - [3499] = 3430, + [3499] = 3477, [3500] = 3500, [3501] = 3501, - [3502] = 3502, - [3503] = 3503, - [3504] = 3425, + [3502] = 162, + [3503] = 3471, + [3504] = 3504, [3505] = 3505, [3506] = 3506, - [3507] = 3462, + [3507] = 3507, [3508] = 3508, [3509] = 3509, [3510] = 3510, - [3511] = 3511, - [3512] = 3509, - [3513] = 3513, - [3514] = 3514, - [3515] = 3500, + [3511] = 3469, + [3512] = 3495, + [3513] = 3488, + [3514] = 3486, + [3515] = 3515, [3516] = 3516, [3517] = 3517, - [3518] = 3518, + [3518] = 3478, [3519] = 3519, - [3520] = 3432, - [3521] = 3521, + [3520] = 3496, + [3521] = 3497, [3522] = 3522, - [3523] = 3437, - [3524] = 3524, + [3523] = 3523, + [3524] = 3489, [3525] = 3525, [3526] = 3526, - [3527] = 3527, + [3527] = 3464, [3528] = 3528, - [3529] = 3440, - [3530] = 3530, - [3531] = 3430, + [3529] = 3529, + [3530] = 3529, + [3531] = 3531, [3532] = 3532, [3533] = 3533, [3534] = 3534, - [3535] = 3469, - [3536] = 3488, + [3535] = 3535, + [3536] = 3494, [3537] = 3537, - [3538] = 3434, - [3539] = 3533, + [3538] = 3538, + [3539] = 3539, [3540] = 3540, - [3541] = 3540, + [3541] = 3541, [3542] = 3542, [3543] = 3543, - [3544] = 3485, - [3545] = 3491, - [3546] = 3438, + [3544] = 3544, + [3545] = 3545, + [3546] = 3546, [3547] = 3547, - [3548] = 3548, - [3549] = 3549, - [3550] = 3550, - [3551] = 3439, - [3552] = 3457, - [3553] = 3511, + [3548] = 3505, + [3549] = 3489, + [3550] = 3490, + [3551] = 3551, + [3552] = 3498, + [3553] = 3523, [3554] = 3554, [3555] = 3555, - [3556] = 3478, + [3556] = 3556, [3557] = 3557, [3558] = 3558, [3559] = 3559, - [3560] = 3442, - [3561] = 3561, - [3562] = 3528, - [3563] = 3453, - [3564] = 3564, - [3565] = 3547, + [3560] = 3537, + [3561] = 3532, + [3562] = 3562, + [3563] = 3487, + [3564] = 3483, + [3565] = 3515, [3566] = 3566, - [3567] = 3498, - [3568] = 3524, - [3569] = 3514, + [3567] = 3567, + [3568] = 3567, + [3569] = 3569, [3570] = 3570, [3571] = 3571, - [3572] = 3572, - [3573] = 3505, - [3574] = 3530, + [3572] = 3556, + [3573] = 3573, + [3574] = 3574, [3575] = 3575, [3576] = 3576, - [3577] = 3518, - [3578] = 3425, - [3579] = 3579, - [3580] = 3426, - [3581] = 3581, - [3582] = 3581, + [3577] = 3487, + [3578] = 3578, + [3579] = 3519, + [3580] = 3580, + [3581] = 3474, + [3582] = 3582, [3583] = 3583, [3584] = 3584, - [3585] = 3481, - [3586] = 3439, - [3587] = 3441, - [3588] = 3433, - [3589] = 3589, - [3590] = 3590, - [3591] = 3448, - [3592] = 3511, - [3593] = 3440, - [3594] = 3440, - [3595] = 3455, - [3596] = 3424, - [3597] = 3457, - [3598] = 3598, - [3599] = 3599, - [3600] = 3465, - [3601] = 3522, - [3602] = 3511, - [3603] = 3485, - [3604] = 3501, - [3605] = 3487, - [3606] = 3488, + [3585] = 3585, + [3586] = 3586, + [3587] = 3516, + [3588] = 3588, + [3589] = 3555, + [3590] = 3533, + [3591] = 3480, + [3592] = 3570, + [3593] = 3593, + [3594] = 3594, + [3595] = 3595, + [3596] = 3596, + [3597] = 3597, + [3598] = 3576, + [3599] = 3473, + [3600] = 3535, + [3601] = 3535, + [3602] = 3602, + [3603] = 3603, + [3604] = 3456, + [3605] = 3489, + [3606] = 3465, [3607] = 3607, - [3608] = 3490, - [3609] = 3506, - [3610] = 3610, - [3611] = 3493, - [3612] = 3559, + [3608] = 3608, + [3609] = 3510, + [3610] = 3491, + [3611] = 3611, + [3612] = 3612, [3613] = 3613, - [3614] = 3522, - [3615] = 3435, - [3616] = 3616, - [3617] = 3581, - [3618] = 3618, - [3619] = 3619, - [3620] = 3589, - [3621] = 3441, - [3622] = 3566, - [3623] = 3490, - [3624] = 3448, - [3625] = 3442, - [3626] = 3583, - [3627] = 3457, - [3628] = 3532, - [3629] = 3468, - [3630] = 3460, - [3631] = 3487, - [3632] = 3490, - [3633] = 3485, - [3634] = 3634, - [3635] = 3492, - [3636] = 3636, - [3637] = 3581, - [3638] = 3448, + [3614] = 3458, + [3615] = 3534, + [3616] = 3523, + [3617] = 3465, + [3618] = 3467, + [3619] = 3509, + [3620] = 3620, + [3621] = 3474, + [3622] = 3558, + [3623] = 3545, + [3624] = 3480, + [3625] = 3625, + [3626] = 3482, + [3627] = 3627, + [3628] = 3628, + [3629] = 3489, + [3630] = 3487, + [3631] = 3469, + [3632] = 3628, + [3633] = 3488, + [3634] = 3486, + [3635] = 3635, + [3636] = 3516, + [3637] = 3637, + [3638] = 3562, [3639] = 3639, - [3640] = 3457, - [3641] = 3618, - [3642] = 3490, - [3643] = 3581, - [3644] = 3448, - [3645] = 3457, - [3646] = 3508, - [3647] = 3490, - [3648] = 3448, + [3640] = 3640, + [3641] = 3641, + [3642] = 3510, + [3643] = 3490, + [3644] = 3644, + [3645] = 3593, + [3646] = 3613, + [3647] = 3459, + [3648] = 3613, [3649] = 3457, - [3650] = 3490, - [3651] = 3448, - [3652] = 3448, - [3653] = 3448, - [3654] = 3448, - [3655] = 3448, - [3656] = 3487, - [3657] = 3437, - [3658] = 3658, + [3650] = 3467, + [3651] = 3586, + [3652] = 3652, + [3653] = 3474, + [3654] = 3593, + [3655] = 3655, + [3656] = 3482, + [3657] = 3657, + [3658] = 3528, [3659] = 3659, - [3660] = 3521, - [3661] = 3661, - [3662] = 3662, - [3663] = 3607, + [3660] = 3488, + [3661] = 3516, + [3662] = 3578, + [3663] = 3625, [3664] = 3664, - [3665] = 3579, - [3666] = 3430, - [3667] = 3667, - [3668] = 3668, - [3669] = 3669, - [3670] = 3482, - [3671] = 3517, - [3672] = 3442, - [3673] = 3466, - [3674] = 3674, - [3675] = 3636, - [3676] = 3664, - [3677] = 3425, - [3678] = 3510, - [3679] = 3550, - [3680] = 3497, - [3681] = 3493, - [3682] = 3471, - [3683] = 3590, - [3684] = 3503, - [3685] = 3525, - [3686] = 3472, - [3687] = 3687, - [3688] = 3441, - [3689] = 3557, - [3690] = 3463, - [3691] = 3691, - [3692] = 3618, - [3693] = 3474, - [3694] = 3491, - [3695] = 3470, - [3696] = 3475, - [3697] = 3691, - [3698] = 3662, - [3699] = 3543, - [3700] = 3700, - [3701] = 3537, - [3702] = 3599, - [3703] = 3548, - [3704] = 3445, - [3705] = 3435, - [3706] = 3521, - [3707] = 3661, - [3708] = 3607, - [3709] = 3664, - [3710] = 3427, - [3711] = 3667, - [3712] = 3521, - [3713] = 3664, - [3714] = 3510, - [3715] = 3489, - [3716] = 3664, + [3665] = 3665, + [3666] = 3613, + [3667] = 3474, + [3668] = 3534, + [3669] = 3482, + [3670] = 3492, + [3671] = 3516, + [3672] = 3613, + [3673] = 3474, + [3674] = 3482, + [3675] = 3469, + [3676] = 3516, + [3677] = 3474, + [3678] = 3482, + [3679] = 3516, + [3680] = 3474, + [3681] = 3474, + [3682] = 3474, + [3683] = 3474, + [3684] = 3474, + [3685] = 3528, + [3686] = 3686, + [3687] = 3558, + [3688] = 3470, + [3689] = 3504, + [3690] = 3526, + [3691] = 3506, + [3692] = 3539, + [3693] = 3582, + [3694] = 3472, + [3695] = 3501, + [3696] = 3546, + [3697] = 3544, + [3698] = 3698, + [3699] = 3500, + [3700] = 3686, + [3701] = 3701, + [3702] = 3485, + [3703] = 3522, + [3704] = 3535, + [3705] = 3655, + [3706] = 3706, + [3707] = 3487, + [3708] = 3627, + [3709] = 3644, + [3710] = 3710, + [3711] = 3580, + [3712] = 3712, + [3713] = 3566, + [3714] = 3714, + [3715] = 3473, + [3716] = 3716, [3717] = 3664, - [3718] = 3664, - [3719] = 3440, - [3720] = 3616, - [3721] = 3572, - [3722] = 3442, - [3723] = 3443, - [3724] = 3584, - [3725] = 3575, - [3726] = 3458, - [3727] = 3558, - [3728] = 3728, - [3729] = 3486, + [3718] = 3657, + [3719] = 3659, + [3720] = 3720, + [3721] = 3473, + [3722] = 3714, + [3723] = 3723, + [3724] = 3724, + [3725] = 3489, + [3726] = 3597, + [3727] = 3541, + [3728] = 3554, + [3729] = 3585, [3730] = 3730, - [3731] = 3731, - [3732] = 3517, - [3733] = 3444, - [3734] = 3564, - [3735] = 3581, - [3736] = 3494, - [3737] = 3737, - [3738] = 3661, - [3739] = 3610, - [3740] = 3740, - [3741] = 3741, - [3742] = 3742, - [3743] = 3743, - [3744] = 3744, - [3745] = 3745, - [3746] = 3746, + [3731] = 3463, + [3732] = 3573, + [3733] = 3461, + [3734] = 3734, + [3735] = 3484, + [3736] = 3504, + [3737] = 3526, + [3738] = 3539, + [3739] = 3582, + [3740] = 3665, + [3741] = 3620, + [3742] = 3504, + [3743] = 3582, + [3744] = 3487, + [3745] = 3528, + [3746] = 3582, + [3747] = 3582, + [3748] = 3582, + [3749] = 3517, + [3750] = 3596, + [3751] = 3608, + [3752] = 3467, + [3753] = 3698, + [3754] = 3507, + [3755] = 3541, + [3756] = 3542, + [3757] = 3583, + [3758] = 3758, + [3759] = 3641, + [3760] = 3760, + [3761] = 3523, + [3762] = 3762, + [3763] = 3613, + [3764] = 3482, + [3765] = 3723, + [3766] = 3466, + [3767] = 3508, + [3768] = 3460, + [3769] = 3769, + [3770] = 3531, + [3771] = 3771, + [3772] = 3734, + [3773] = 3485, + [3774] = 3758, + [3775] = 3775, + [3776] = 3776, + [3777] = 3777, + [3778] = 3778, + [3779] = 3779, + [3780] = 3780, + [3781] = 3781, }; const TSCharacterRange sym_identifier_character_set_1[] = { @@ -9695,651 +9746,661 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { if (lookahead == 'e') ADVANCE(59); END_STATE(); case 14: - if (lookahead == 'e') ADVANCE(60); - if (lookahead == 't') ADVANCE(61); - if (lookahead == 'u') ADVANCE(62); + if (lookahead == 'a') ADVANCE(60); + 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 == 'o') 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 == 'e') ADVANCE(80); END_STATE(); case 25: - if (lookahead == 'a') ADVANCE(80); + if (lookahead == 'a') ADVANCE(81); END_STATE(); case 26: - if (lookahead == 'n') ADVANCE(81); + if (lookahead == 'n') ADVANCE(82); END_STATE(); case 27: - if (lookahead == 'a') ADVANCE(82); + if (lookahead == 'a') ADVANCE(83); END_STATE(); case 28: - if (lookahead == 'f') ADVANCE(83); + if (lookahead == 'f') ADVANCE(84); END_STATE(); case 29: - if (lookahead == 'n') ADVANCE(84); + if (lookahead == 'n') ADVANCE(85); END_STATE(); case 30: - if (lookahead == 's') ADVANCE(85); + if (lookahead == 's') ADVANCE(86); END_STATE(); case 31: - if (lookahead == 'u') ADVANCE(86); + if (lookahead == 'u') ADVANCE(87); END_STATE(); case 32: - if (lookahead == 'p') ADVANCE(87); - if (lookahead == 't') ADVANCE(88); + if (lookahead == 'p') ADVANCE(88); + if (lookahead == 't') ADVANCE(89); END_STATE(); case 33: - if (lookahead == '2') ADVANCE(89); + if (lookahead == '2') ADVANCE(90); END_STATE(); case 34: - if (lookahead == '4') ADVANCE(90); + if (lookahead == '4') ADVANCE(91); END_STATE(); case 35: - if (lookahead == 'l') ADVANCE(91); + if (lookahead == 'l') ADVANCE(92); END_STATE(); case 36: ACCEPT_TOKEN(anon_sym_fn); END_STATE(); case 37: - if (lookahead == 'r') ADVANCE(92); + if (lookahead == 'r') ADVANCE(93); END_STATE(); case 38: - if (lookahead == 'n') ADVANCE(93); + if (lookahead == 'n') ADVANCE(94); END_STATE(); case 39: - if (lookahead == '2') ADVANCE(94); - if (lookahead == '6') ADVANCE(95); + if (lookahead == '2') ADVANCE(95); + if (lookahead == '6') ADVANCE(96); END_STATE(); case 40: - if (lookahead == '2') ADVANCE(96); + if (lookahead == '2') ADVANCE(97); END_STATE(); case 41: - if (lookahead == '4') ADVANCE(97); + if (lookahead == '4') ADVANCE(98); END_STATE(); case 42: ACCEPT_TOKEN(anon_sym_i8); END_STATE(); case 43: - if (lookahead == 'e') ADVANCE(98); + if (lookahead == 'e') ADVANCE(99); END_STATE(); case 44: ACCEPT_TOKEN(anon_sym_if); END_STATE(); case 45: - if (lookahead == 'p') ADVANCE(99); + if (lookahead == 'p') ADVANCE(100); END_STATE(); case 46: ACCEPT_TOKEN(anon_sym_in); END_STATE(); case 47: - if (lookahead == 'i') ADVANCE(100); + if (lookahead == 'i') ADVANCE(101); END_STATE(); case 48: - if (lookahead == 'e') ADVANCE(101); + if (lookahead == 'e') ADVANCE(102); END_STATE(); case 49: - if (lookahead == 't') ADVANCE(102); + if (lookahead == 't') ADVANCE(103); END_STATE(); case 50: - if (lookahead == 'f') ADVANCE(103); - if (lookahead == 't') ADVANCE(104); + if (lookahead == 'f') ADVANCE(104); + if (lookahead == 't') ADVANCE(105); END_STATE(); case 51: - if (lookahead == 'o') ADVANCE(105); + if (lookahead == 'o') ADVANCE(106); END_STATE(); case 52: - if (lookahead == 't') ADVANCE(106); + if (lookahead == 't') 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 == 'd') ADVANCE(109); + if (lookahead == 'v') ADVANCE(110); END_STATE(); case 55: - if (lookahead == 't') ADVANCE(110); + if (lookahead == 't') 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 == 'b') ADVANCE(113); END_STATE(); case 58: - if (lookahead == 'w') ADVANCE(113); + if (lookahead == 'w') ADVANCE(114); END_STATE(); case 59: - if (lookahead == 'f') ADVANCE(114); - if (lookahead == 't') ADVANCE(115); + if (lookahead == 'f') ADVANCE(115); + if (lookahead == 't') ADVANCE(116); END_STATE(); case 60: - if (lookahead == 'l') ADVANCE(116); + if (lookahead == 'f') 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 == 'c') ADVANCE(141); END_STATE(); case 79: - if (lookahead == 'a') ADVANCE(141); + if (lookahead == 'l') ADVANCE(142); END_STATE(); case 80: - if (lookahead == 'r') ADVANCE(142); + if (lookahead == 'a') ADVANCE(143); END_STATE(); case 81: - if (lookahead == 's') ADVANCE(143); - if (lookahead == 't') ADVANCE(144); + if (lookahead == 'r') ADVANCE(144); END_STATE(); case 82: - if (lookahead == 't') ADVANCE(145); + if (lookahead == 's') ADVANCE(145); + if (lookahead == 't') ADVANCE(146); END_STATE(); case 83: - if (lookahead == 'a') ADVANCE(146); + if (lookahead == 't') ADVANCE(147); END_STATE(); case 84: - ACCEPT_TOKEN(anon_sym_dyn); + if (lookahead == 'a') ADVANCE(148); END_STATE(); case 85: - if (lookahead == 'e') ADVANCE(147); + ACCEPT_TOKEN(anon_sym_dyn); END_STATE(); case 86: - if (lookahead == 'm') ADVANCE(148); + if (lookahead == 'e') ADVANCE(149); END_STATE(); case 87: - if (lookahead == 'r') ADVANCE(149); + if (lookahead == 'm') ADVANCE(150); END_STATE(); case 88: - if (lookahead == 'e') ADVANCE(150); + if (lookahead == 'r') ADVANCE(151); END_STATE(); case 89: - ACCEPT_TOKEN(anon_sym_f32); + if (lookahead == 'e') ADVANCE(152); END_STATE(); case 90: - ACCEPT_TOKEN(anon_sym_f64); + ACCEPT_TOKEN(anon_sym_f32); END_STATE(); case 91: - if (lookahead == 's') ADVANCE(151); + ACCEPT_TOKEN(anon_sym_f64); END_STATE(); case 92: - ACCEPT_TOKEN(anon_sym_for); + if (lookahead == 's') ADVANCE(153); END_STATE(); case 93: - ACCEPT_TOKEN(anon_sym_gen); + ACCEPT_TOKEN(anon_sym_for); END_STATE(); case 94: - if (lookahead == '8') ADVANCE(152); + ACCEPT_TOKEN(anon_sym_gen); END_STATE(); case 95: - ACCEPT_TOKEN(anon_sym_i16); + if (lookahead == '8') ADVANCE(154); END_STATE(); case 96: - ACCEPT_TOKEN(anon_sym_i32); + ACCEPT_TOKEN(anon_sym_i16); END_STATE(); case 97: - ACCEPT_TOKEN(anon_sym_i64); + ACCEPT_TOKEN(anon_sym_i32); END_STATE(); case 98: - if (lookahead == 'n') ADVANCE(153); + ACCEPT_TOKEN(anon_sym_i64); END_STATE(); case 99: - if (lookahead == 'l') ADVANCE(154); + if (lookahead == 'n') ADVANCE(155); END_STATE(); case 100: - if (lookahead == 'z') ADVANCE(155); + if (lookahead == 'l') ADVANCE(156); END_STATE(); case 101: - if (lookahead == 'm') ADVANCE(156); + if (lookahead == 'z') ADVANCE(157); END_STATE(); case 102: - ACCEPT_TOKEN(anon_sym_let); + if (lookahead == 'm') ADVANCE(158); END_STATE(); case 103: - if (lookahead == 'e') ADVANCE(157); + ACCEPT_TOKEN(anon_sym_let); END_STATE(); case 104: - if (lookahead == 'e') ADVANCE(158); + if (lookahead == 'e') ADVANCE(159); 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 == 'p') ADVANCE(161); END_STATE(); case 107: - if (lookahead == 'a') ADVANCE(161); + if (lookahead == 'c') ADVANCE(162); END_STATE(); case 108: - ACCEPT_TOKEN(anon_sym_mod); + if (lookahead == 'a') ADVANCE(163); END_STATE(); case 109: - if (lookahead == 'e') ADVANCE(162); + ACCEPT_TOKEN(anon_sym_mod); END_STATE(); case 110: - ACCEPT_TOKEN(sym_mutable_specifier); + if (lookahead == 'e') ADVANCE(164); END_STATE(); case 111: - ACCEPT_TOKEN(anon_sym_pat); - if (lookahead == 'h') ADVANCE(163); + ACCEPT_TOKEN(sym_mutable_specifier); END_STATE(); case 112: - ACCEPT_TOKEN(anon_sym_pub); + ACCEPT_TOKEN(anon_sym_pat); + if (lookahead == 'h') ADVANCE(165); END_STATE(); case 113: - ACCEPT_TOKEN(anon_sym_raw); + ACCEPT_TOKEN(anon_sym_pub); END_STATE(); case 114: - ACCEPT_TOKEN(anon_sym_ref); + ACCEPT_TOKEN(anon_sym_raw); END_STATE(); case 115: - if (lookahead == 'u') ADVANCE(164); + ACCEPT_TOKEN(anon_sym_ref); END_STATE(); case 116: - if (lookahead == 'f') ADVANCE(165); + if (lookahead == 'u') ADVANCE(166); END_STATE(); case 117: - if (lookahead == 't') ADVANCE(166); + if (lookahead == 'e') ADVANCE(167); END_STATE(); case 118: - if (lookahead == 't') ADVANCE(167); + if (lookahead == 'f') ADVANCE(168); END_STATE(); case 119: - ACCEPT_TOKEN(anon_sym_str); - if (lookahead == 'u') ADVANCE(168); + if (lookahead == 't') ADVANCE(169); END_STATE(); case 120: - if (lookahead == 'e') ADVANCE(169); + if (lookahead == 't') ADVANCE(170); END_STATE(); case 121: - if (lookahead == 'i') ADVANCE(170); + ACCEPT_TOKEN(anon_sym_str); + if (lookahead == 'u') ADVANCE(171); END_STATE(); case 122: - if (lookahead == 'e') ADVANCE(171); + if (lookahead == 'e') ADVANCE(172); END_STATE(); case 123: - ACCEPT_TOKEN(anon_sym_try); + if (lookahead == 'i') ADVANCE(173); END_STATE(); case 124: - if (lookahead == 'e') ADVANCE(172); + if (lookahead == 'e') ADVANCE(174); END_STATE(); case 125: - if (lookahead == '8') ADVANCE(173); + ACCEPT_TOKEN(anon_sym_try); END_STATE(); case 126: - ACCEPT_TOKEN(anon_sym_u16); + if (lookahead == 'e') ADVANCE(175); END_STATE(); case 127: - ACCEPT_TOKEN(anon_sym_u32); + if (lookahead == '8') ADVANCE(176); END_STATE(); case 128: - ACCEPT_TOKEN(anon_sym_u64); + ACCEPT_TOKEN(anon_sym_u16); END_STATE(); case 129: - if (lookahead == 'o') ADVANCE(174); + ACCEPT_TOKEN(anon_sym_u32); END_STATE(); case 130: - if (lookahead == 'a') ADVANCE(175); + ACCEPT_TOKEN(anon_sym_u64); END_STATE(); case 131: - ACCEPT_TOKEN(anon_sym_use); + if (lookahead == 'o') ADVANCE(177); END_STATE(); case 132: - if (lookahead == 'z') ADVANCE(176); + if (lookahead == 'a') ADVANCE(178); END_STATE(); case 133: - ACCEPT_TOKEN(anon_sym_vis); + ACCEPT_TOKEN(anon_sym_use); END_STATE(); case 134: - if (lookahead == 'r') ADVANCE(177); + if (lookahead == 'z') ADVANCE(179); END_STATE(); case 135: - if (lookahead == 'l') ADVANCE(178); + ACCEPT_TOKEN(anon_sym_vis); END_STATE(); case 136: - if (lookahead == 'l') ADVANCE(179); + if (lookahead == 'r') ADVANCE(180); END_STATE(); case 137: - if (lookahead == 'c') ADVANCE(180); + if (lookahead == 'l') ADVANCE(181); END_STATE(); case 138: - if (lookahead == 't') ADVANCE(181); + if (lookahead == 'l') ADVANCE(182); END_STATE(); case 139: - if (lookahead == 'k') ADVANCE(182); + if (lookahead == 'c') ADVANCE(183); END_STATE(); case 140: - ACCEPT_TOKEN(anon_sym_bool); + if (lookahead == 't') ADVANCE(184); END_STATE(); case 141: - if (lookahead == 'k') ADVANCE(183); + if (lookahead == 'k') ADVANCE(185); END_STATE(); case 142: - ACCEPT_TOKEN(anon_sym_char); + ACCEPT_TOKEN(anon_sym_bool); END_STATE(); case 143: - if (lookahead == 't') ADVANCE(184); + if (lookahead == 'k') ADVANCE(186); END_STATE(); case 144: - if (lookahead == 'i') ADVANCE(185); + ACCEPT_TOKEN(anon_sym_char); END_STATE(); case 145: - if (lookahead == 'e') ADVANCE(186); + if (lookahead == 't') ADVANCE(187); END_STATE(); case 146: - if (lookahead == 'u') ADVANCE(187); + if (lookahead == 'i') ADVANCE(188); END_STATE(); case 147: - ACCEPT_TOKEN(anon_sym_else); + if (lookahead == 'e') ADVANCE(189); END_STATE(); case 148: - ACCEPT_TOKEN(anon_sym_enum); + if (lookahead == 'u') ADVANCE(190); END_STATE(); case 149: - ACCEPT_TOKEN(anon_sym_expr); + ACCEPT_TOKEN(anon_sym_else); END_STATE(); case 150: - if (lookahead == 'r') ADVANCE(188); + ACCEPT_TOKEN(anon_sym_enum); END_STATE(); case 151: - if (lookahead == 'e') ADVANCE(189); + ACCEPT_TOKEN(anon_sym_expr); END_STATE(); case 152: - ACCEPT_TOKEN(anon_sym_i128); + if (lookahead == 'r') ADVANCE(191); END_STATE(); case 153: - if (lookahead == 't') ADVANCE(190); + if (lookahead == 'e') ADVANCE(192); END_STATE(); case 154: - ACCEPT_TOKEN(anon_sym_impl); + ACCEPT_TOKEN(anon_sym_i128); END_STATE(); case 155: - if (lookahead == 'e') ADVANCE(191); + if (lookahead == 't') ADVANCE(193); END_STATE(); case 156: - ACCEPT_TOKEN(anon_sym_item); + ACCEPT_TOKEN(anon_sym_impl); END_STATE(); case 157: - if (lookahead == 't') ADVANCE(192); + if (lookahead == 'e') ADVANCE(194); END_STATE(); case 158: - if (lookahead == 'r') ADVANCE(193); + ACCEPT_TOKEN(anon_sym_item); END_STATE(); case 159: - ACCEPT_TOKEN(anon_sym_loop); + if (lookahead == 't') ADVANCE(195); END_STATE(); case 160: - if (lookahead == 'h') ADVANCE(194); + if (lookahead == 'r') ADVANCE(196); END_STATE(); case 161: - ACCEPT_TOKEN(anon_sym_meta); + ACCEPT_TOKEN(anon_sym_loop); END_STATE(); case 162: - ACCEPT_TOKEN(anon_sym_move); + if (lookahead == 'h') ADVANCE(197); END_STATE(); case 163: - ACCEPT_TOKEN(anon_sym_path); + ACCEPT_TOKEN(anon_sym_meta); END_STATE(); case 164: - if (lookahead == 'r') ADVANCE(195); + ACCEPT_TOKEN(anon_sym_move); END_STATE(); case 165: - ACCEPT_TOKEN(sym_self); + ACCEPT_TOKEN(anon_sym_path); END_STATE(); case 166: - if (lookahead == 'i') ADVANCE(196); + if (lookahead == 'r') ADVANCE(198); END_STATE(); case 167: - ACCEPT_TOKEN(anon_sym_stmt); + ACCEPT_TOKEN(anon_sym_safe); END_STATE(); case 168: - if (lookahead == 'c') ADVANCE(197); + ACCEPT_TOKEN(sym_self); END_STATE(); case 169: - if (lookahead == 'r') ADVANCE(198); + if (lookahead == 'i') ADVANCE(199); END_STATE(); case 170: - if (lookahead == 't') ADVANCE(199); + ACCEPT_TOKEN(anon_sym_stmt); END_STATE(); case 171: - ACCEPT_TOKEN(anon_sym_true); + if (lookahead == 'c') ADVANCE(200); END_STATE(); case 172: - ACCEPT_TOKEN(anon_sym_type); + if (lookahead == 'r') ADVANCE(201); END_STATE(); case 173: - ACCEPT_TOKEN(anon_sym_u128); + if (lookahead == 't') ADVANCE(202); END_STATE(); case 174: - if (lookahead == 'n') ADVANCE(200); + ACCEPT_TOKEN(anon_sym_true); END_STATE(); case 175: - if (lookahead == 'f') ADVANCE(201); + ACCEPT_TOKEN(anon_sym_type); END_STATE(); case 176: - if (lookahead == 'e') ADVANCE(202); + ACCEPT_TOKEN(anon_sym_u128); END_STATE(); case 177: - if (lookahead == 'e') ADVANCE(203); + if (lookahead == 'n') ADVANCE(203); END_STATE(); case 178: - if (lookahead == 'e') ADVANCE(204); + if (lookahead == 'f') ADVANCE(204); END_STATE(); case 179: - if (lookahead == 'd') ADVANCE(205); + if (lookahead == 'e') ADVANCE(205); END_STATE(); case 180: - ACCEPT_TOKEN(anon_sym_async); + if (lookahead == 'e') ADVANCE(206); END_STATE(); case 181: - ACCEPT_TOKEN(anon_sym_await); + if (lookahead == 'e') ADVANCE(207); END_STATE(); case 182: - ACCEPT_TOKEN(anon_sym_block); + if (lookahead == 'd') ADVANCE(208); END_STATE(); case 183: - ACCEPT_TOKEN(anon_sym_break); + ACCEPT_TOKEN(anon_sym_async); END_STATE(); case 184: - ACCEPT_TOKEN(anon_sym_const); + ACCEPT_TOKEN(anon_sym_await); END_STATE(); case 185: - if (lookahead == 'n') ADVANCE(206); + ACCEPT_TOKEN(anon_sym_block); END_STATE(); case 186: - ACCEPT_TOKEN(sym_crate); + ACCEPT_TOKEN(anon_sym_break); END_STATE(); case 187: - if (lookahead == 'l') ADVANCE(207); + ACCEPT_TOKEN(anon_sym_const); END_STATE(); case 188: - if (lookahead == 'n') ADVANCE(208); + if (lookahead == 'n') ADVANCE(209); END_STATE(); case 189: - ACCEPT_TOKEN(anon_sym_false); + ACCEPT_TOKEN(sym_crate); END_STATE(); case 190: - ACCEPT_TOKEN(anon_sym_ident); + if (lookahead == 'l') ADVANCE(210); END_STATE(); case 191: - ACCEPT_TOKEN(anon_sym_isize); + if (lookahead == 'n') ADVANCE(211); END_STATE(); case 192: - if (lookahead == 'i') ADVANCE(209); + ACCEPT_TOKEN(anon_sym_false); END_STATE(); case 193: - if (lookahead == 'a') ADVANCE(210); + ACCEPT_TOKEN(anon_sym_ident); END_STATE(); case 194: - ACCEPT_TOKEN(anon_sym_match); + ACCEPT_TOKEN(anon_sym_isize); END_STATE(); case 195: - if (lookahead == 'n') ADVANCE(211); + if (lookahead == 'i') ADVANCE(212); END_STATE(); case 196: - if (lookahead == 'c') ADVANCE(212); + if (lookahead == 'a') ADVANCE(213); END_STATE(); case 197: - if (lookahead == 't') ADVANCE(213); + ACCEPT_TOKEN(anon_sym_match); END_STATE(); case 198: - ACCEPT_TOKEN(sym_super); + if (lookahead == 'n') ADVANCE(214); END_STATE(); case 199: - ACCEPT_TOKEN(anon_sym_trait); + if (lookahead == 'c') ADVANCE(215); END_STATE(); case 200: - ACCEPT_TOKEN(anon_sym_union); + if (lookahead == 't') ADVANCE(216); END_STATE(); case 201: - if (lookahead == 'e') ADVANCE(214); + ACCEPT_TOKEN(sym_super); END_STATE(); case 202: - ACCEPT_TOKEN(anon_sym_usize); + ACCEPT_TOKEN(anon_sym_trait); END_STATE(); case 203: - ACCEPT_TOKEN(anon_sym_where); + ACCEPT_TOKEN(anon_sym_union); END_STATE(); case 204: - ACCEPT_TOKEN(anon_sym_while); + if (lookahead == 'e') ADVANCE(217); END_STATE(); case 205: - ACCEPT_TOKEN(anon_sym_yield); + ACCEPT_TOKEN(anon_sym_usize); END_STATE(); case 206: - if (lookahead == 'u') ADVANCE(215); + ACCEPT_TOKEN(anon_sym_where); END_STATE(); case 207: - if (lookahead == 't') ADVANCE(216); + ACCEPT_TOKEN(anon_sym_while); END_STATE(); case 208: - ACCEPT_TOKEN(anon_sym_extern); + ACCEPT_TOKEN(anon_sym_yield); END_STATE(); case 209: - if (lookahead == 'm') ADVANCE(217); + if (lookahead == 'u') ADVANCE(218); END_STATE(); case 210: - if (lookahead == 'l') ADVANCE(218); + if (lookahead == 't') ADVANCE(219); END_STATE(); case 211: - ACCEPT_TOKEN(anon_sym_return); + ACCEPT_TOKEN(anon_sym_extern); END_STATE(); case 212: - ACCEPT_TOKEN(anon_sym_static); + if (lookahead == 'm') ADVANCE(220); END_STATE(); case 213: - ACCEPT_TOKEN(anon_sym_struct); + if (lookahead == 'l') ADVANCE(221); END_STATE(); case 214: - ACCEPT_TOKEN(anon_sym_unsafe); + ACCEPT_TOKEN(anon_sym_return); END_STATE(); case 215: - if (lookahead == 'e') ADVANCE(219); + ACCEPT_TOKEN(anon_sym_static); END_STATE(); case 216: - ACCEPT_TOKEN(anon_sym_default); + ACCEPT_TOKEN(anon_sym_struct); END_STATE(); case 217: - if (lookahead == 'e') ADVANCE(220); + ACCEPT_TOKEN(anon_sym_unsafe); END_STATE(); case 218: - ACCEPT_TOKEN(anon_sym_literal); + if (lookahead == 'e') ADVANCE(222); END_STATE(); case 219: - ACCEPT_TOKEN(anon_sym_continue); + ACCEPT_TOKEN(anon_sym_default); END_STATE(); case 220: + if (lookahead == 'e') ADVANCE(223); + END_STATE(); + case 221: + ACCEPT_TOKEN(anon_sym_literal); + END_STATE(); + case 222: + ACCEPT_TOKEN(anon_sym_continue); + END_STATE(); + case 223: ACCEPT_TOKEN(anon_sym_lifetime); END_STATE(); default: @@ -10392,15 +10453,15 @@ static const TSLexMode 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 = 7, .external_lex_state = 2}, - [45] = {.lex_state = 5, .external_lex_state = 2}, + [44] = {.lex_state = 5, .external_lex_state = 2}, + [45] = {.lex_state = 7, .external_lex_state = 2}, [46] = {.lex_state = 7, .external_lex_state = 2}, [47] = {.lex_state = 7, .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 = 7, .external_lex_state = 2}, - [52] = {.lex_state = 5, .external_lex_state = 2}, + [51] = {.lex_state = 5, .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}, [55] = {.lex_state = 5, .external_lex_state = 2}, @@ -10416,11 +10477,11 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [65] = {.lex_state = 5, .external_lex_state = 2}, [66] = {.lex_state = 5, .external_lex_state = 2}, [67] = {.lex_state = 4, .external_lex_state = 2}, - [68] = {.lex_state = 6, .external_lex_state = 2}, + [68] = {.lex_state = 4, .external_lex_state = 2}, [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}, @@ -10433,35 +10494,35 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [82] = {.lex_state = 4, .external_lex_state = 2}, [83] = {.lex_state = 4, .external_lex_state = 2}, [84] = {.lex_state = 6, .external_lex_state = 2}, - [85] = {.lex_state = 6, .external_lex_state = 2}, + [85] = {.lex_state = 4, .external_lex_state = 2}, [86] = {.lex_state = 4, .external_lex_state = 2}, - [87] = {.lex_state = 4, .external_lex_state = 2}, + [87] = {.lex_state = 6, .external_lex_state = 2}, [88] = {.lex_state = 6, .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 = 6, .external_lex_state = 2}, [93] = {.lex_state = 6, .external_lex_state = 2}, - [94] = {.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}, + [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 = 4, .external_lex_state = 2}, [100] = {.lex_state = 4, .external_lex_state = 2}, [101] = {.lex_state = 4, .external_lex_state = 2}, [102] = {.lex_state = 4, .external_lex_state = 2}, [103] = {.lex_state = 4, .external_lex_state = 2}, - [104] = {.lex_state = 4, .external_lex_state = 2}, - [105] = {.lex_state = 4, .external_lex_state = 2}, + [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}, + [107] = {.lex_state = 4, .external_lex_state = 2}, [108] = {.lex_state = 6, .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}, + [111] = {.lex_state = 4, .external_lex_state = 2}, [112] = {.lex_state = 4, .external_lex_state = 2}, - [113] = {.lex_state = 4, .external_lex_state = 2}, + [113] = {.lex_state = 6, .external_lex_state = 2}, [114] = {.lex_state = 6, .external_lex_state = 2}, [115] = {.lex_state = 6, .external_lex_state = 2}, [116] = {.lex_state = 6, .external_lex_state = 2}, @@ -10483,61 +10544,61 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [132] = {.lex_state = 6, .external_lex_state = 2}, [133] = {.lex_state = 4, .external_lex_state = 2}, [134] = {.lex_state = 13, .external_lex_state = 2}, - [135] = {.lex_state = 13, .external_lex_state = 2}, - [136] = {.lex_state = 13, .external_lex_state = 2}, + [135] = {.lex_state = 4, .external_lex_state = 2}, + [136] = {.lex_state = 4, .external_lex_state = 2}, [137] = {.lex_state = 13, .external_lex_state = 2}, [138] = {.lex_state = 13, .external_lex_state = 2}, [139] = {.lex_state = 13, .external_lex_state = 2}, - [140] = {.lex_state = 4, .external_lex_state = 2}, - [141] = {.lex_state = 4, .external_lex_state = 2}, - [142] = {.lex_state = 13, .external_lex_state = 2}, - [143] = {.lex_state = 4, .external_lex_state = 2}, + [140] = {.lex_state = 13, .external_lex_state = 2}, + [141] = {.lex_state = 13, .external_lex_state = 2}, + [142] = {.lex_state = 4, .external_lex_state = 2}, + [143] = {.lex_state = 13, .external_lex_state = 2}, [144] = {.lex_state = 13, .external_lex_state = 2}, - [145] = {.lex_state = 13, .external_lex_state = 2}, + [145] = {.lex_state = 4, .external_lex_state = 2}, [146] = {.lex_state = 4, .external_lex_state = 2}, [147] = {.lex_state = 13, .external_lex_state = 2}, [148] = {.lex_state = 4, .external_lex_state = 2}, - [149] = {.lex_state = 4, .external_lex_state = 2}, + [149] = {.lex_state = 13, .external_lex_state = 2}, [150] = {.lex_state = 4, .external_lex_state = 2}, - [151] = {.lex_state = 13, .external_lex_state = 2}, + [151] = {.lex_state = 4, .external_lex_state = 2}, [152] = {.lex_state = 13, .external_lex_state = 2}, [153] = {.lex_state = 13, .external_lex_state = 2}, - [154] = {.lex_state = 4, .external_lex_state = 2}, + [154] = {.lex_state = 13, .external_lex_state = 2}, [155] = {.lex_state = 13, .external_lex_state = 2}, - [156] = {.lex_state = 4, .external_lex_state = 2}, - [157] = {.lex_state = 13, .external_lex_state = 2}, - [158] = {.lex_state = 13, .external_lex_state = 2}, - [159] = {.lex_state = 4, .external_lex_state = 2}, + [156] = {.lex_state = 13, .external_lex_state = 2}, + [157] = {.lex_state = 4, .external_lex_state = 2}, + [158] = {.lex_state = 4, .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 = 6, .external_lex_state = 2}, [162] = {.lex_state = 4, .external_lex_state = 2}, [163] = {.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 = 4, .external_lex_state = 2}, [167] = {.lex_state = 4, .external_lex_state = 2}, - [168] = {.lex_state = 13, .external_lex_state = 2}, + [168] = {.lex_state = 4, .external_lex_state = 2}, [169] = {.lex_state = 13, .external_lex_state = 2}, [170] = {.lex_state = 4, .external_lex_state = 2}, - [171] = {.lex_state = 13, .external_lex_state = 2}, + [171] = {.lex_state = 4, .external_lex_state = 2}, [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 = 4, .external_lex_state = 2}, - [176] = {.lex_state = 4, .external_lex_state = 2}, - [177] = {.lex_state = 13, .external_lex_state = 2}, - [178] = {.lex_state = 4, .external_lex_state = 2}, - [179] = {.lex_state = 13, .external_lex_state = 2}, - [180] = {.lex_state = 4, .external_lex_state = 2}, - [181] = {.lex_state = 6, .external_lex_state = 2}, + [175] = {.lex_state = 13, .external_lex_state = 2}, + [176] = {.lex_state = 13, .external_lex_state = 2}, + [177] = {.lex_state = 4, .external_lex_state = 2}, + [178] = {.lex_state = 13, .external_lex_state = 2}, + [179] = {.lex_state = 4, .external_lex_state = 2}, + [180] = {.lex_state = 6, .external_lex_state = 2}, + [181] = {.lex_state = 13, .external_lex_state = 2}, [182] = {.lex_state = 4, .external_lex_state = 2}, [183] = {.lex_state = 4, .external_lex_state = 2}, - [184] = {.lex_state = 13, .external_lex_state = 2}, + [184] = {.lex_state = 4, .external_lex_state = 2}, [185] = {.lex_state = 13, .external_lex_state = 2}, - [186] = {.lex_state = 4, .external_lex_state = 2}, - [187] = {.lex_state = 13, .external_lex_state = 2}, + [186] = {.lex_state = 13, .external_lex_state = 2}, + [187] = {.lex_state = 4, .external_lex_state = 2}, [188] = {.lex_state = 13, .external_lex_state = 2}, - [189] = {.lex_state = 6, .external_lex_state = 2}, + [189] = {.lex_state = 13, .external_lex_state = 2}, [190] = {.lex_state = 13, .external_lex_state = 2}, [191] = {.lex_state = 13, .external_lex_state = 2}, [192] = {.lex_state = 13, .external_lex_state = 2}, @@ -10548,13 +10609,13 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [197] = {.lex_state = 4, .external_lex_state = 2}, [198] = {.lex_state = 6, .external_lex_state = 2}, [199] = {.lex_state = 6, .external_lex_state = 2}, - [200] = {.lex_state = 6, .external_lex_state = 2}, - [201] = {.lex_state = 13, .external_lex_state = 2}, - [202] = {.lex_state = 13, .external_lex_state = 2}, - [203] = {.lex_state = 13, .external_lex_state = 2}, - [204] = {.lex_state = 13, .external_lex_state = 2}, - [205] = {.lex_state = 6, .external_lex_state = 2}, - [206] = {.lex_state = 6, .external_lex_state = 2}, + [200] = {.lex_state = 13, .external_lex_state = 2}, + [201] = {.lex_state = 6, .external_lex_state = 2}, + [202] = {.lex_state = 6, .external_lex_state = 2}, + [203] = {.lex_state = 6, .external_lex_state = 2}, + [204] = {.lex_state = 6, .external_lex_state = 2}, + [205] = {.lex_state = 13, .external_lex_state = 2}, + [206] = {.lex_state = 13, .external_lex_state = 2}, [207] = {.lex_state = 6, .external_lex_state = 2}, [208] = {.lex_state = 6, .external_lex_state = 2}, [209] = {.lex_state = 6, .external_lex_state = 2}, @@ -10562,61 +10623,61 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [211] = {.lex_state = 13, .external_lex_state = 2}, [212] = {.lex_state = 6, .external_lex_state = 2}, [213] = {.lex_state = 13, .external_lex_state = 2}, - [214] = {.lex_state = 6, .external_lex_state = 2}, - [215] = {.lex_state = 15, .external_lex_state = 2}, - [216] = {.lex_state = 15, .external_lex_state = 2}, + [214] = {.lex_state = 13, .external_lex_state = 2}, + [215] = {.lex_state = 13, .external_lex_state = 2}, + [216] = {.lex_state = 13, .external_lex_state = 2}, [217] = {.lex_state = 13, .external_lex_state = 2}, - [218] = {.lex_state = 15, .external_lex_state = 2}, + [218] = {.lex_state = 13, .external_lex_state = 2}, [219] = {.lex_state = 13, .external_lex_state = 2}, [220] = {.lex_state = 15, .external_lex_state = 2}, - [221] = {.lex_state = 13, .external_lex_state = 2}, + [221] = {.lex_state = 15, .external_lex_state = 2}, [222] = {.lex_state = 15, .external_lex_state = 2}, - [223] = {.lex_state = 13, .external_lex_state = 2}, + [223] = {.lex_state = 15, .external_lex_state = 2}, [224] = {.lex_state = 15, .external_lex_state = 2}, [225] = {.lex_state = 13, .external_lex_state = 2}, [226] = {.lex_state = 13, .external_lex_state = 2}, [227] = {.lex_state = 13, .external_lex_state = 2}, - [228] = {.lex_state = 15, .external_lex_state = 2}, + [228] = {.lex_state = 13, .external_lex_state = 2}, [229] = {.lex_state = 15, .external_lex_state = 2}, - [230] = {.lex_state = 15, .external_lex_state = 2}, + [230] = {.lex_state = 13, .external_lex_state = 2}, [231] = {.lex_state = 13, .external_lex_state = 2}, - [232] = {.lex_state = 15, .external_lex_state = 2}, + [232] = {.lex_state = 13, .external_lex_state = 2}, [233] = {.lex_state = 15, .external_lex_state = 2}, - [234] = {.lex_state = 13, .external_lex_state = 2}, - [235] = {.lex_state = 13, .external_lex_state = 2}, - [236] = {.lex_state = 13, .external_lex_state = 2}, - [237] = {.lex_state = 13, .external_lex_state = 2}, + [234] = {.lex_state = 15, .external_lex_state = 2}, + [235] = {.lex_state = 15, .external_lex_state = 2}, + [236] = {.lex_state = 15, .external_lex_state = 2}, + [237] = {.lex_state = 15, .external_lex_state = 2}, [238] = {.lex_state = 15, .external_lex_state = 2}, - [239] = {.lex_state = 15, .external_lex_state = 2}, - [240] = {.lex_state = 13, .external_lex_state = 2}, + [239] = {.lex_state = 13, .external_lex_state = 2}, + [240] = {.lex_state = 15, .external_lex_state = 2}, [241] = {.lex_state = 13, .external_lex_state = 2}, [242] = {.lex_state = 13, .external_lex_state = 2}, - [243] = {.lex_state = 13, .external_lex_state = 2}, - [244] = {.lex_state = 15, .external_lex_state = 2}, + [243] = {.lex_state = 15, .external_lex_state = 2}, + [244] = {.lex_state = 13, .external_lex_state = 2}, [245] = {.lex_state = 13, .external_lex_state = 2}, [246] = {.lex_state = 15, .external_lex_state = 2}, - [247] = {.lex_state = 13, .external_lex_state = 2}, - [248] = {.lex_state = 13, .external_lex_state = 2}, - [249] = {.lex_state = 13, .external_lex_state = 2}, + [247] = {.lex_state = 12, .external_lex_state = 2}, + [248] = {.lex_state = 12, .external_lex_state = 2}, + [249] = {.lex_state = 12, .external_lex_state = 2}, [250] = {.lex_state = 12, .external_lex_state = 2}, - [251] = {.lex_state = 13, .external_lex_state = 2}, - [252] = {.lex_state = 13, .external_lex_state = 2}, - [253] = {.lex_state = 13, .external_lex_state = 2}, + [251] = {.lex_state = 12, .external_lex_state = 2}, + [252] = {.lex_state = 71, .external_lex_state = 2}, + [253] = {.lex_state = 12, .external_lex_state = 2}, [254] = {.lex_state = 13, .external_lex_state = 2}, [255] = {.lex_state = 13, .external_lex_state = 2}, - [256] = {.lex_state = 13, .external_lex_state = 2}, + [256] = {.lex_state = 71, .external_lex_state = 2}, [257] = {.lex_state = 13, .external_lex_state = 2}, [258] = {.lex_state = 13, .external_lex_state = 2}, - [259] = {.lex_state = 13, .external_lex_state = 2}, + [259] = {.lex_state = 12, .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 = 13, .external_lex_state = 2}, - [266] = {.lex_state = 13, .external_lex_state = 2}, + [266] = {.lex_state = 71, .external_lex_state = 2}, [267] = {.lex_state = 13, .external_lex_state = 2}, - [268] = {.lex_state = 13, .external_lex_state = 2}, + [268] = {.lex_state = 12, .external_lex_state = 2}, [269] = {.lex_state = 13, .external_lex_state = 2}, [270] = {.lex_state = 13, .external_lex_state = 2}, [271] = {.lex_state = 13, .external_lex_state = 2}, @@ -10643,13 +10704,13 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [292] = {.lex_state = 13, .external_lex_state = 2}, [293] = {.lex_state = 13, .external_lex_state = 2}, [294] = {.lex_state = 13, .external_lex_state = 2}, - [295] = {.lex_state = 13, .external_lex_state = 2}, + [295] = {.lex_state = 71, .external_lex_state = 2}, [296] = {.lex_state = 13, .external_lex_state = 2}, [297] = {.lex_state = 13, .external_lex_state = 2}, [298] = {.lex_state = 13, .external_lex_state = 2}, [299] = {.lex_state = 13, .external_lex_state = 2}, [300] = {.lex_state = 13, .external_lex_state = 2}, - [301] = {.lex_state = 12, .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}, [304] = {.lex_state = 13, .external_lex_state = 2}, @@ -10667,7 +10728,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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 = 71, .external_lex_state = 2}, + [319] = {.lex_state = 13, .external_lex_state = 2}, [320] = {.lex_state = 13, .external_lex_state = 2}, [321] = {.lex_state = 13, .external_lex_state = 2}, [322] = {.lex_state = 13, .external_lex_state = 2}, @@ -10689,27 +10750,27 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [338] = {.lex_state = 13, .external_lex_state = 2}, [339] = {.lex_state = 13, .external_lex_state = 2}, [340] = {.lex_state = 13, .external_lex_state = 2}, - [341] = {.lex_state = 12, .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}, - [344] = {.lex_state = 12, .external_lex_state = 2}, + [344] = {.lex_state = 13, .external_lex_state = 2}, [345] = {.lex_state = 13, .external_lex_state = 2}, - [346] = {.lex_state = 13, .external_lex_state = 2}, + [346] = {.lex_state = 12, .external_lex_state = 2}, [347] = {.lex_state = 13, .external_lex_state = 2}, - [348] = {.lex_state = 12, .external_lex_state = 2}, - [349] = {.lex_state = 12, .external_lex_state = 2}, + [348] = {.lex_state = 13, .external_lex_state = 2}, + [349] = {.lex_state = 71, .external_lex_state = 2}, [350] = {.lex_state = 13, .external_lex_state = 2}, - [351] = {.lex_state = 13, .external_lex_state = 2}, + [351] = {.lex_state = 12, .external_lex_state = 2}, [352] = {.lex_state = 13, .external_lex_state = 2}, - [353] = {.lex_state = 13, .external_lex_state = 2}, - [354] = {.lex_state = 13, .external_lex_state = 2}, + [353] = {.lex_state = 71, .external_lex_state = 2}, + [354] = {.lex_state = 12, .external_lex_state = 2}, [355] = {.lex_state = 13, .external_lex_state = 2}, [356] = {.lex_state = 13, .external_lex_state = 2}, - [357] = {.lex_state = 13, .external_lex_state = 2}, + [357] = {.lex_state = 12, .external_lex_state = 2}, [358] = {.lex_state = 13, .external_lex_state = 2}, - [359] = {.lex_state = 13, .external_lex_state = 2}, - [360] = {.lex_state = 13, .external_lex_state = 2}, - [361] = {.lex_state = 13, .external_lex_state = 2}, + [359] = {.lex_state = 12, .external_lex_state = 2}, + [360] = {.lex_state = 12, .external_lex_state = 2}, + [361] = {.lex_state = 12, .external_lex_state = 2}, [362] = {.lex_state = 13, .external_lex_state = 2}, [363] = {.lex_state = 13, .external_lex_state = 2}, [364] = {.lex_state = 13, .external_lex_state = 2}, @@ -10724,34 +10785,34 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [373] = {.lex_state = 13, .external_lex_state = 2}, [374] = {.lex_state = 13, .external_lex_state = 2}, [375] = {.lex_state = 13, .external_lex_state = 2}, - [376] = {.lex_state = 12, .external_lex_state = 2}, - [377] = {.lex_state = 12, .external_lex_state = 2}, - [378] = {.lex_state = 71, .external_lex_state = 2}, - [379] = {.lex_state = 71, .external_lex_state = 2}, - [380] = {.lex_state = 71, .external_lex_state = 2}, - [381] = {.lex_state = 71, .external_lex_state = 2}, - [382] = {.lex_state = 12, .external_lex_state = 2}, - [383] = {.lex_state = 12, .external_lex_state = 2}, - [384] = {.lex_state = 12, .external_lex_state = 2}, - [385] = {.lex_state = 12, .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 = 71, .external_lex_state = 2}, - [390] = {.lex_state = 71, .external_lex_state = 2}, - [391] = {.lex_state = 71, .external_lex_state = 2}, - [392] = {.lex_state = 71, .external_lex_state = 2}, - [393] = {.lex_state = 71, .external_lex_state = 2}, + [376] = {.lex_state = 13, .external_lex_state = 2}, + [377] = {.lex_state = 13, .external_lex_state = 2}, + [378] = {.lex_state = 13, .external_lex_state = 2}, + [379] = {.lex_state = 13, .external_lex_state = 2}, + [380] = {.lex_state = 13, .external_lex_state = 2}, + [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 = 14, .external_lex_state = 2}, + [393] = {.lex_state = 14, .external_lex_state = 2}, [394] = {.lex_state = 71, .external_lex_state = 2}, [395] = {.lex_state = 71, .external_lex_state = 2}, - [396] = {.lex_state = 14, .external_lex_state = 2}, + [396] = {.lex_state = 71, .external_lex_state = 2}, [397] = {.lex_state = 71, .external_lex_state = 2}, - [398] = {.lex_state = 12, .external_lex_state = 2}, - [399] = {.lex_state = 14, .external_lex_state = 2}, + [398] = {.lex_state = 14, .external_lex_state = 2}, + [399] = {.lex_state = 71, .external_lex_state = 2}, [400] = {.lex_state = 71, .external_lex_state = 2}, [401] = {.lex_state = 71, .external_lex_state = 2}, - [402] = {.lex_state = 71, .external_lex_state = 2}, - [403] = {.lex_state = 14, .external_lex_state = 2}, + [402] = {.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}, @@ -10768,12 +10829,12 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [417] = {.lex_state = 71, .external_lex_state = 2}, [418] = {.lex_state = 71, .external_lex_state = 2}, [419] = {.lex_state = 71, .external_lex_state = 2}, - [420] = {.lex_state = 12, .external_lex_state = 2}, - [421] = {.lex_state = 12, .external_lex_state = 2}, + [420] = {.lex_state = 71, .external_lex_state = 2}, + [421] = {.lex_state = 71, .external_lex_state = 2}, [422] = {.lex_state = 12, .external_lex_state = 2}, [423] = {.lex_state = 12, .external_lex_state = 2}, - [424] = {.lex_state = 14, .external_lex_state = 2}, - [425] = {.lex_state = 14, .external_lex_state = 2}, + [424] = {.lex_state = 12, .external_lex_state = 2}, + [425] = {.lex_state = 12, .external_lex_state = 2}, [426] = {.lex_state = 14, .external_lex_state = 2}, [427] = {.lex_state = 14, .external_lex_state = 2}, [428] = {.lex_state = 14, .external_lex_state = 2}, @@ -10783,12 +10844,12 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [432] = {.lex_state = 14, .external_lex_state = 2}, [433] = {.lex_state = 14, .external_lex_state = 2}, [434] = {.lex_state = 14, .external_lex_state = 2}, - [435] = {.lex_state = 5, .external_lex_state = 2}, - [436] = {.lex_state = 7, .external_lex_state = 2}, - [437] = {.lex_state = 16, .external_lex_state = 2}, - [438] = {.lex_state = 16, .external_lex_state = 2}, - [439] = {.lex_state = 13, .external_lex_state = 2}, - [440] = {.lex_state = 13, .external_lex_state = 2}, + [435] = {.lex_state = 14, .external_lex_state = 2}, + [436] = {.lex_state = 14, .external_lex_state = 2}, + [437] = {.lex_state = 5, .external_lex_state = 2}, + [438] = {.lex_state = 7, .external_lex_state = 2}, + [439] = {.lex_state = 16, .external_lex_state = 2}, + [440] = {.lex_state = 16, .external_lex_state = 2}, [441] = {.lex_state = 13, .external_lex_state = 2}, [442] = {.lex_state = 13, .external_lex_state = 2}, [443] = {.lex_state = 13, .external_lex_state = 2}, @@ -10804,23 +10865,23 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [453] = {.lex_state = 13, .external_lex_state = 2}, [454] = {.lex_state = 13, .external_lex_state = 2}, [455] = {.lex_state = 13, .external_lex_state = 2}, - [456] = {.lex_state = 14, .external_lex_state = 2}, - [457] = {.lex_state = 14, .external_lex_state = 2}, + [456] = {.lex_state = 13, .external_lex_state = 2}, + [457] = {.lex_state = 13, .external_lex_state = 2}, [458] = {.lex_state = 14, .external_lex_state = 2}, [459] = {.lex_state = 14, .external_lex_state = 2}, - [460] = {.lex_state = 5, .external_lex_state = 2}, + [460] = {.lex_state = 14, .external_lex_state = 2}, [461] = {.lex_state = 14, .external_lex_state = 2}, [462] = {.lex_state = 5, .external_lex_state = 2}, [463] = {.lex_state = 5, .external_lex_state = 2}, [464] = {.lex_state = 5, .external_lex_state = 2}, - [465] = {.lex_state = 5, .external_lex_state = 2}, - [466] = {.lex_state = 14, .external_lex_state = 2}, + [465] = {.lex_state = 14, .external_lex_state = 2}, + [466] = {.lex_state = 5, .external_lex_state = 2}, [467] = {.lex_state = 14, .external_lex_state = 2}, [468] = {.lex_state = 5, .external_lex_state = 2}, - [469] = {.lex_state = 14, .external_lex_state = 2}, - [470] = {.lex_state = 5, .external_lex_state = 2}, - [471] = {.lex_state = 5, .external_lex_state = 2}, - [472] = {.lex_state = 14, .external_lex_state = 2}, + [469] = {.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 = 5, .external_lex_state = 2}, [473] = {.lex_state = 5, .external_lex_state = 2}, [474] = {.lex_state = 5, .external_lex_state = 2}, [475] = {.lex_state = 5, .external_lex_state = 2}, @@ -10840,7 +10901,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [489] = {.lex_state = 5, .external_lex_state = 2}, [490] = {.lex_state = 5, .external_lex_state = 2}, [491] = {.lex_state = 5, .external_lex_state = 2}, - [492] = {.lex_state = 14, .external_lex_state = 2}, + [492] = {.lex_state = 5, .external_lex_state = 2}, [493] = {.lex_state = 14, .external_lex_state = 2}, [494] = {.lex_state = 73, .external_lex_state = 2}, [495] = {.lex_state = 73, .external_lex_state = 2}, @@ -10861,7 +10922,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [510] = {.lex_state = 73, .external_lex_state = 2}, [511] = {.lex_state = 73, .external_lex_state = 2}, [512] = {.lex_state = 73, .external_lex_state = 2}, - [513] = {.lex_state = 73, .external_lex_state = 2}, + [513] = {.lex_state = 23}, [514] = {.lex_state = 73, .external_lex_state = 2}, [515] = {.lex_state = 73, .external_lex_state = 2}, [516] = {.lex_state = 73, .external_lex_state = 2}, @@ -10872,7 +10933,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [521] = {.lex_state = 73, .external_lex_state = 2}, [522] = {.lex_state = 73, .external_lex_state = 2}, [523] = {.lex_state = 73, .external_lex_state = 2}, - [524] = {.lex_state = 73, .external_lex_state = 2}, + [524] = {.lex_state = 23}, [525] = {.lex_state = 73, .external_lex_state = 2}, [526] = {.lex_state = 73, .external_lex_state = 2}, [527] = {.lex_state = 73, .external_lex_state = 2}, @@ -10982,25 +11043,25 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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}, + [634] = {.lex_state = 14, .external_lex_state = 2}, + [635] = {.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}, [640] = {.lex_state = 73, .external_lex_state = 2}, - [641] = {.lex_state = 23}, + [641] = {.lex_state = 73, .external_lex_state = 2}, [642] = {.lex_state = 73, .external_lex_state = 2}, [643] = {.lex_state = 73, .external_lex_state = 2}, [644] = {.lex_state = 73, .external_lex_state = 2}, - [645] = {.lex_state = 73, .external_lex_state = 2}, + [645] = {.lex_state = 23}, [646] = {.lex_state = 73, .external_lex_state = 2}, [647] = {.lex_state = 73, .external_lex_state = 2}, [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}, - [652] = {.lex_state = 73, .external_lex_state = 2}, + [652] = {.lex_state = 23}, [653] = {.lex_state = 73, .external_lex_state = 2}, [654] = {.lex_state = 73, .external_lex_state = 2}, [655] = {.lex_state = 73, .external_lex_state = 2}, @@ -11008,11 +11069,11 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [657] = {.lex_state = 73, .external_lex_state = 2}, [658] = {.lex_state = 73, .external_lex_state = 2}, [659] = {.lex_state = 73, .external_lex_state = 2}, - [660] = {.lex_state = 23}, + [660] = {.lex_state = 73, .external_lex_state = 2}, [661] = {.lex_state = 73, .external_lex_state = 2}, [662] = {.lex_state = 73, .external_lex_state = 2}, [663] = {.lex_state = 73, .external_lex_state = 2}, - [664] = {.lex_state = 14, .external_lex_state = 2}, + [664] = {.lex_state = 73, .external_lex_state = 2}, [665] = {.lex_state = 73, .external_lex_state = 2}, [666] = {.lex_state = 73, .external_lex_state = 2}, [667] = {.lex_state = 73, .external_lex_state = 2}, @@ -11027,30 +11088,30 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [676] = {.lex_state = 73, .external_lex_state = 2}, [677] = {.lex_state = 73, .external_lex_state = 2}, [678] = {.lex_state = 73, .external_lex_state = 2}, - [679] = {.lex_state = 73, .external_lex_state = 2}, + [679] = {.lex_state = 14, .external_lex_state = 2}, [680] = {.lex_state = 73, .external_lex_state = 2}, [681] = {.lex_state = 73, .external_lex_state = 2}, [682] = {.lex_state = 73, .external_lex_state = 2}, [683] = {.lex_state = 73, .external_lex_state = 2}, [684] = {.lex_state = 73, .external_lex_state = 2}, - [685] = {.lex_state = 23}, + [685] = {.lex_state = 73, .external_lex_state = 2}, [686] = {.lex_state = 73, .external_lex_state = 2}, [687] = {.lex_state = 73, .external_lex_state = 2}, - [688] = {.lex_state = 23}, + [688] = {.lex_state = 73, .external_lex_state = 2}, [689] = {.lex_state = 73, .external_lex_state = 2}, [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 = 23}, + [693] = {.lex_state = 73, .external_lex_state = 2}, [694] = {.lex_state = 73, .external_lex_state = 2}, [695] = {.lex_state = 73, .external_lex_state = 2}, - [696] = {.lex_state = 14, .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 = 14, .external_lex_state = 2}, + [700] = {.lex_state = 73, .external_lex_state = 2}, [701] = {.lex_state = 73, .external_lex_state = 2}, - [702] = {.lex_state = 14, .external_lex_state = 2}, + [702] = {.lex_state = 73, .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}, @@ -11061,7 +11122,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [710] = {.lex_state = 73, .external_lex_state = 2}, [711] = {.lex_state = 73, .external_lex_state = 2}, [712] = {.lex_state = 73, .external_lex_state = 2}, - [713] = {.lex_state = 14, .external_lex_state = 2}, + [713] = {.lex_state = 73, .external_lex_state = 2}, [714] = {.lex_state = 73, .external_lex_state = 2}, [715] = {.lex_state = 73, .external_lex_state = 2}, [716] = {.lex_state = 73, .external_lex_state = 2}, @@ -11092,7 +11153,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [741] = {.lex_state = 73, .external_lex_state = 2}, [742] = {.lex_state = 73, .external_lex_state = 2}, [743] = {.lex_state = 73, .external_lex_state = 2}, - [744] = {.lex_state = 14, .external_lex_state = 2}, + [744] = {.lex_state = 73, .external_lex_state = 2}, [745] = {.lex_state = 73, .external_lex_state = 2}, [746] = {.lex_state = 73, .external_lex_state = 2}, [747] = {.lex_state = 73, .external_lex_state = 2}, @@ -11132,37 +11193,37 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [781] = {.lex_state = 73, .external_lex_state = 2}, [782] = {.lex_state = 14, .external_lex_state = 2}, [783] = {.lex_state = 14, .external_lex_state = 2}, - [784] = {.lex_state = 17}, - [785] = {.lex_state = 17}, + [784] = {.lex_state = 14, .external_lex_state = 2}, + [785] = {.lex_state = 14, .external_lex_state = 2}, [786] = {.lex_state = 14, .external_lex_state = 2}, [787] = {.lex_state = 14, .external_lex_state = 2}, [788] = {.lex_state = 14, .external_lex_state = 2}, - [789] = {.lex_state = 14, .external_lex_state = 2}, - [790] = {.lex_state = 14, .external_lex_state = 2}, + [789] = {.lex_state = 17}, + [790] = {.lex_state = 17}, [791] = {.lex_state = 14, .external_lex_state = 2}, [792] = {.lex_state = 14, .external_lex_state = 2}, [793] = {.lex_state = 14, .external_lex_state = 2}, - [794] = {.lex_state = 17}, + [794] = {.lex_state = 14, .external_lex_state = 2}, [795] = {.lex_state = 14, .external_lex_state = 2}, - [796] = {.lex_state = 14, .external_lex_state = 2}, + [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}, - [800] = {.lex_state = 14, .external_lex_state = 2}, - [801] = {.lex_state = 14, .external_lex_state = 2}, - [802] = {.lex_state = 14, .external_lex_state = 2}, - [803] = {.lex_state = 12, .external_lex_state = 2}, + [798] = {.lex_state = 17}, + [799] = {.lex_state = 17}, + [800] = {.lex_state = 17}, + [801] = {.lex_state = 17}, + [802] = {.lex_state = 17}, + [803] = {.lex_state = 14, .external_lex_state = 2}, [804] = {.lex_state = 14, .external_lex_state = 2}, - [805] = {.lex_state = 14, .external_lex_state = 2}, + [805] = {.lex_state = 12, .external_lex_state = 2}, [806] = {.lex_state = 17}, - [807] = {.lex_state = 17}, - [808] = {.lex_state = 17}, - [809] = {.lex_state = 17}, + [807] = {.lex_state = 14, .external_lex_state = 2}, + [808] = {.lex_state = 14, .external_lex_state = 2}, + [809] = {.lex_state = 14, .external_lex_state = 2}, [810] = {.lex_state = 14, .external_lex_state = 2}, - [811] = {.lex_state = 17}, - [812] = {.lex_state = 14, .external_lex_state = 2}, + [811] = {.lex_state = 14, .external_lex_state = 2}, + [812] = {.lex_state = 17}, [813] = {.lex_state = 14, .external_lex_state = 2}, - [814] = {.lex_state = 14, .external_lex_state = 2}, + [814] = {.lex_state = 17}, [815] = {.lex_state = 14, .external_lex_state = 2}, [816] = {.lex_state = 14, .external_lex_state = 2}, [817] = {.lex_state = 14, .external_lex_state = 2}, @@ -11170,7 +11231,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [819] = {.lex_state = 14, .external_lex_state = 2}, [820] = {.lex_state = 14, .external_lex_state = 2}, [821] = {.lex_state = 14, .external_lex_state = 2}, - [822] = {.lex_state = 17}, + [822] = {.lex_state = 14, .external_lex_state = 2}, [823] = {.lex_state = 14, .external_lex_state = 2}, [824] = {.lex_state = 14, .external_lex_state = 2}, [825] = {.lex_state = 14, .external_lex_state = 2}, @@ -11179,8 +11240,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [828] = {.lex_state = 14, .external_lex_state = 2}, [829] = {.lex_state = 14, .external_lex_state = 2}, [830] = {.lex_state = 14, .external_lex_state = 2}, - [831] = {.lex_state = 17}, - [832] = {.lex_state = 17}, + [831] = {.lex_state = 14, .external_lex_state = 2}, + [832] = {.lex_state = 14, .external_lex_state = 2}, [833] = {.lex_state = 14, .external_lex_state = 2}, [834] = {.lex_state = 14, .external_lex_state = 2}, [835] = {.lex_state = 14, .external_lex_state = 2}, @@ -11197,12 +11258,12 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [846] = {.lex_state = 14, .external_lex_state = 2}, [847] = {.lex_state = 14, .external_lex_state = 2}, [848] = {.lex_state = 14, .external_lex_state = 2}, - [849] = {.lex_state = 17}, - [850] = {.lex_state = 17}, - [851] = {.lex_state = 17}, - [852] = {.lex_state = 17}, - [853] = {.lex_state = 17}, - [854] = {.lex_state = 17}, + [849] = {.lex_state = 14, .external_lex_state = 2}, + [850] = {.lex_state = 14, .external_lex_state = 2}, + [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 = 14, .external_lex_state = 2}, [855] = {.lex_state = 17}, [856] = {.lex_state = 17}, [857] = {.lex_state = 17}, @@ -11377,94 +11438,94 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1026] = {.lex_state = 17}, [1027] = {.lex_state = 17}, [1028] = {.lex_state = 17}, - [1029] = {.lex_state = 13, .external_lex_state = 2}, - [1030] = {.lex_state = 13, .external_lex_state = 2}, - [1031] = {.lex_state = 13, .external_lex_state = 2}, - [1032] = {.lex_state = 15, .external_lex_state = 2}, - [1033] = {.lex_state = 15, .external_lex_state = 2}, - [1034] = {.lex_state = 13, .external_lex_state = 2}, - [1035] = {.lex_state = 12, .external_lex_state = 2}, + [1029] = {.lex_state = 17}, + [1030] = {.lex_state = 17}, + [1031] = {.lex_state = 17}, + [1032] = {.lex_state = 17}, + [1033] = {.lex_state = 17}, + [1034] = {.lex_state = 17}, + [1035] = {.lex_state = 17}, [1036] = {.lex_state = 17}, [1037] = {.lex_state = 13, .external_lex_state = 2}, [1038] = {.lex_state = 13, .external_lex_state = 2}, [1039] = {.lex_state = 13, .external_lex_state = 2}, - [1040] = {.lex_state = 9}, - [1041] = {.lex_state = 8}, - [1042] = {.lex_state = 23}, - [1043] = {.lex_state = 23}, - [1044] = {.lex_state = 23}, - [1045] = {.lex_state = 23}, - [1046] = {.lex_state = 23}, - [1047] = {.lex_state = 23}, - [1048] = {.lex_state = 23}, - [1049] = {.lex_state = 8}, + [1040] = {.lex_state = 15, .external_lex_state = 2}, + [1041] = {.lex_state = 15, .external_lex_state = 2}, + [1042] = {.lex_state = 13, .external_lex_state = 2}, + [1043] = {.lex_state = 12, .external_lex_state = 2}, + [1044] = {.lex_state = 17}, + [1045] = {.lex_state = 13, .external_lex_state = 2}, + [1046] = {.lex_state = 13, .external_lex_state = 2}, + [1047] = {.lex_state = 13, .external_lex_state = 2}, + [1048] = {.lex_state = 8}, + [1049] = {.lex_state = 23}, [1050] = {.lex_state = 23}, - [1051] = {.lex_state = 8}, - [1052] = {.lex_state = 14, .external_lex_state = 2}, - [1053] = {.lex_state = 8}, + [1051] = {.lex_state = 23}, + [1052] = {.lex_state = 23}, + [1053] = {.lex_state = 9}, [1054] = {.lex_state = 23}, - [1055] = {.lex_state = 17}, - [1056] = {.lex_state = 8}, - [1057] = {.lex_state = 8}, - [1058] = {.lex_state = 8}, + [1055] = {.lex_state = 23}, + [1056] = {.lex_state = 23}, + [1057] = {.lex_state = 23}, + [1058] = {.lex_state = 23}, [1059] = {.lex_state = 26}, [1060] = {.lex_state = 8}, [1061] = {.lex_state = 8}, - [1062] = {.lex_state = 8}, - [1063] = {.lex_state = 17}, - [1064] = {.lex_state = 17}, - [1065] = {.lex_state = 26}, - [1066] = {.lex_state = 26}, + [1062] = {.lex_state = 26}, + [1063] = {.lex_state = 26}, + [1064] = {.lex_state = 26}, + [1065] = {.lex_state = 14, .external_lex_state = 2}, + [1066] = {.lex_state = 8}, [1067] = {.lex_state = 26}, [1068] = {.lex_state = 8}, - [1069] = {.lex_state = 8}, - [1070] = {.lex_state = 26}, + [1069] = {.lex_state = 17}, + [1070] = {.lex_state = 8}, [1071] = {.lex_state = 17}, [1072] = {.lex_state = 17}, - [1073] = {.lex_state = 9}, + [1073] = {.lex_state = 8}, [1074] = {.lex_state = 17}, - [1075] = {.lex_state = 9}, - [1076] = {.lex_state = 14, .external_lex_state = 2}, - [1077] = {.lex_state = 9}, - [1078] = {.lex_state = 9}, + [1075] = {.lex_state = 17}, + [1076] = {.lex_state = 8}, + [1077] = {.lex_state = 8}, + [1078] = {.lex_state = 8}, [1079] = {.lex_state = 17}, [1080] = {.lex_state = 17}, [1081] = {.lex_state = 17}, - [1082] = {.lex_state = 14, .external_lex_state = 2}, - [1083] = {.lex_state = 9}, - [1084] = {.lex_state = 9}, + [1082] = {.lex_state = 9}, + [1083] = {.lex_state = 8}, + [1084] = {.lex_state = 17}, [1085] = {.lex_state = 17}, - [1086] = {.lex_state = 9}, - [1087] = {.lex_state = 17}, - [1088] = {.lex_state = 17}, - [1089] = {.lex_state = 9}, + [1086] = {.lex_state = 8}, + [1087] = {.lex_state = 23}, + [1088] = {.lex_state = 23}, + [1089] = {.lex_state = 23}, [1090] = {.lex_state = 23}, - [1091] = {.lex_state = 9}, - [1092] = {.lex_state = 9}, - [1093] = {.lex_state = 9}, - [1094] = {.lex_state = 9}, - [1095] = {.lex_state = 14, .external_lex_state = 2}, - [1096] = {.lex_state = 21}, - [1097] = {.lex_state = 14, .external_lex_state = 2}, + [1091] = {.lex_state = 23}, + [1092] = {.lex_state = 23}, + [1093] = {.lex_state = 23}, + [1094] = {.lex_state = 23}, + [1095] = {.lex_state = 23}, + [1096] = {.lex_state = 23}, + [1097] = {.lex_state = 23}, [1098] = {.lex_state = 23}, - [1099] = {.lex_state = 12, .external_lex_state = 2}, - [1100] = {.lex_state = 9}, - [1101] = {.lex_state = 9}, - [1102] = {.lex_state = 9}, + [1099] = {.lex_state = 23}, + [1100] = {.lex_state = 23}, + [1101] = {.lex_state = 23}, + [1102] = {.lex_state = 23}, [1103] = {.lex_state = 23}, - [1104] = {.lex_state = 23}, - [1105] = {.lex_state = 12, .external_lex_state = 2}, - [1106] = {.lex_state = 9}, - [1107] = {.lex_state = 12, .external_lex_state = 2}, - [1108] = {.lex_state = 9}, - [1109] = {.lex_state = 9}, - [1110] = {.lex_state = 21}, - [1111] = {.lex_state = 20}, - [1112] = {.lex_state = 9}, - [1113] = {.lex_state = 9}, - [1114] = {.lex_state = 20}, - [1115] = {.lex_state = 20}, - [1116] = {.lex_state = 23}, + [1104] = {.lex_state = 9}, + [1105] = {.lex_state = 23}, + [1106] = {.lex_state = 23}, + [1107] = {.lex_state = 23}, + [1108] = {.lex_state = 23}, + [1109] = {.lex_state = 23}, + [1110] = {.lex_state = 23}, + [1111] = {.lex_state = 23}, + [1112] = {.lex_state = 23}, + [1113] = {.lex_state = 23}, + [1114] = {.lex_state = 23}, + [1115] = {.lex_state = 23}, + [1116] = {.lex_state = 9}, [1117] = {.lex_state = 9}, [1118] = {.lex_state = 23}, [1119] = {.lex_state = 23}, @@ -11482,11 +11543,11 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1131] = {.lex_state = 23}, [1132] = {.lex_state = 23}, [1133] = {.lex_state = 23}, - [1134] = {.lex_state = 8}, - [1135] = {.lex_state = 20}, - [1136] = {.lex_state = 20}, - [1137] = {.lex_state = 20}, - [1138] = {.lex_state = 20}, + [1134] = {.lex_state = 23}, + [1135] = {.lex_state = 23}, + [1136] = {.lex_state = 23}, + [1137] = {.lex_state = 23}, + [1138] = {.lex_state = 23}, [1139] = {.lex_state = 23}, [1140] = {.lex_state = 23}, [1141] = {.lex_state = 23}, @@ -11514,7 +11575,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1163] = {.lex_state = 23}, [1164] = {.lex_state = 23}, [1165] = {.lex_state = 23}, - [1166] = {.lex_state = 23}, + [1166] = {.lex_state = 17}, [1167] = {.lex_state = 23}, [1168] = {.lex_state = 23}, [1169] = {.lex_state = 23}, @@ -11523,10 +11584,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1172] = {.lex_state = 23}, [1173] = {.lex_state = 23}, [1174] = {.lex_state = 23}, - [1175] = {.lex_state = 9}, - [1176] = {.lex_state = 20}, - [1177] = {.lex_state = 9}, - [1178] = {.lex_state = 20}, + [1175] = {.lex_state = 23}, + [1176] = {.lex_state = 23}, + [1177] = {.lex_state = 23}, + [1178] = {.lex_state = 23}, [1179] = {.lex_state = 23}, [1180] = {.lex_state = 23}, [1181] = {.lex_state = 23}, @@ -11577,8 +11638,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1226] = {.lex_state = 23}, [1227] = {.lex_state = 23}, [1228] = {.lex_state = 23}, - [1229] = {.lex_state = 9}, - [1230] = {.lex_state = 20}, + [1229] = {.lex_state = 23}, + [1230] = {.lex_state = 23}, [1231] = {.lex_state = 23}, [1232] = {.lex_state = 23}, [1233] = {.lex_state = 23}, @@ -11606,32 +11667,32 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1255] = {.lex_state = 23}, [1256] = {.lex_state = 23}, [1257] = {.lex_state = 23}, - [1258] = {.lex_state = 9}, + [1258] = {.lex_state = 23}, [1259] = {.lex_state = 23}, [1260] = {.lex_state = 23}, [1261] = {.lex_state = 23}, [1262] = {.lex_state = 23}, [1263] = {.lex_state = 23}, - [1264] = {.lex_state = 23}, + [1264] = {.lex_state = 14, .external_lex_state = 2}, [1265] = {.lex_state = 23}, [1266] = {.lex_state = 23}, [1267] = {.lex_state = 23}, [1268] = {.lex_state = 23}, [1269] = {.lex_state = 23}, - [1270] = {.lex_state = 23}, + [1270] = {.lex_state = 9}, [1271] = {.lex_state = 23}, [1272] = {.lex_state = 23}, [1273] = {.lex_state = 23}, [1274] = {.lex_state = 23}, [1275] = {.lex_state = 23}, [1276] = {.lex_state = 23}, - [1277] = {.lex_state = 23}, + [1277] = {.lex_state = 17}, [1278] = {.lex_state = 23}, [1279] = {.lex_state = 23}, [1280] = {.lex_state = 23}, [1281] = {.lex_state = 23}, - [1282] = {.lex_state = 9}, - [1283] = {.lex_state = 20}, + [1282] = {.lex_state = 23}, + [1283] = {.lex_state = 23}, [1284] = {.lex_state = 23}, [1285] = {.lex_state = 23}, [1286] = {.lex_state = 23}, @@ -11646,10 +11707,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1295] = {.lex_state = 23}, [1296] = {.lex_state = 23}, [1297] = {.lex_state = 23}, - [1298] = {.lex_state = 23}, + [1298] = {.lex_state = 14, .external_lex_state = 2}, [1299] = {.lex_state = 23}, [1300] = {.lex_state = 23}, - [1301] = {.lex_state = 23}, + [1301] = {.lex_state = 9}, [1302] = {.lex_state = 23}, [1303] = {.lex_state = 23}, [1304] = {.lex_state = 23}, @@ -11659,7 +11720,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1308] = {.lex_state = 23}, [1309] = {.lex_state = 23}, [1310] = {.lex_state = 23}, - [1311] = {.lex_state = 23}, + [1311] = {.lex_state = 17}, [1312] = {.lex_state = 23}, [1313] = {.lex_state = 23}, [1314] = {.lex_state = 23}, @@ -11669,7 +11730,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1318] = {.lex_state = 23}, [1319] = {.lex_state = 23}, [1320] = {.lex_state = 23}, - [1321] = {.lex_state = 23}, + [1321] = {.lex_state = 17}, [1322] = {.lex_state = 23}, [1323] = {.lex_state = 23}, [1324] = {.lex_state = 23}, @@ -11683,8 +11744,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1332] = {.lex_state = 23}, [1333] = {.lex_state = 23}, [1334] = {.lex_state = 23}, - [1335] = {.lex_state = 9}, - [1336] = {.lex_state = 20}, + [1335] = {.lex_state = 23}, + [1336] = {.lex_state = 23}, [1337] = {.lex_state = 23}, [1338] = {.lex_state = 23}, [1339] = {.lex_state = 23}, @@ -11715,56 +11776,56 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1364] = {.lex_state = 23}, [1365] = {.lex_state = 23}, [1366] = {.lex_state = 23}, - [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 = 23}, - [1374] = {.lex_state = 23}, - [1375] = {.lex_state = 23}, - [1376] = {.lex_state = 23}, - [1377] = {.lex_state = 23}, - [1378] = {.lex_state = 23}, - [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 = 23}, - [1386] = {.lex_state = 23}, - [1387] = {.lex_state = 23}, - [1388] = {.lex_state = 23}, - [1389] = {.lex_state = 23}, - [1390] = {.lex_state = 23}, - [1391] = {.lex_state = 23}, - [1392] = {.lex_state = 9}, - [1393] = {.lex_state = 14, .external_lex_state = 2}, - [1394] = {.lex_state = 17}, - [1395] = {.lex_state = 14, .external_lex_state = 2}, - [1396] = {.lex_state = 14, .external_lex_state = 2}, - [1397] = {.lex_state = 23}, - [1398] = {.lex_state = 14, .external_lex_state = 2}, + [1367] = {.lex_state = 9}, + [1368] = {.lex_state = 9}, + [1369] = {.lex_state = 9}, + [1370] = {.lex_state = 9}, + [1371] = {.lex_state = 9}, + [1372] = {.lex_state = 9}, + [1373] = {.lex_state = 9}, + [1374] = {.lex_state = 14, .external_lex_state = 2}, + [1375] = {.lex_state = 21}, + [1376] = {.lex_state = 14, .external_lex_state = 2}, + [1377] = {.lex_state = 17}, + [1378] = {.lex_state = 12, .external_lex_state = 2}, + [1379] = {.lex_state = 9}, + [1380] = {.lex_state = 9}, + [1381] = {.lex_state = 9}, + [1382] = {.lex_state = 12, .external_lex_state = 2}, + [1383] = {.lex_state = 9}, + [1384] = {.lex_state = 12, .external_lex_state = 2}, + [1385] = {.lex_state = 9}, + [1386] = {.lex_state = 9}, + [1387] = {.lex_state = 21}, + [1388] = {.lex_state = 20}, + [1389] = {.lex_state = 9}, + [1390] = {.lex_state = 9}, + [1391] = {.lex_state = 20}, + [1392] = {.lex_state = 20}, + [1393] = {.lex_state = 9}, + [1394] = {.lex_state = 8}, + [1395] = {.lex_state = 20}, + [1396] = {.lex_state = 20}, + [1397] = {.lex_state = 20}, + [1398] = {.lex_state = 20}, [1399] = {.lex_state = 9}, - [1400] = {.lex_state = 9}, + [1400] = {.lex_state = 20}, [1401] = {.lex_state = 9}, - [1402] = {.lex_state = 17}, - [1403] = {.lex_state = 23}, - [1404] = {.lex_state = 9}, + [1402] = {.lex_state = 20}, + [1403] = {.lex_state = 14, .external_lex_state = 2}, + [1404] = {.lex_state = 14, .external_lex_state = 2}, [1405] = {.lex_state = 9}, - [1406] = {.lex_state = 9}, + [1406] = {.lex_state = 20}, [1407] = {.lex_state = 9}, - [1408] = {.lex_state = 9}, + [1408] = {.lex_state = 20}, [1409] = {.lex_state = 9}, [1410] = {.lex_state = 9}, - [1411] = {.lex_state = 9}, + [1411] = {.lex_state = 20}, [1412] = {.lex_state = 9}, - [1413] = {.lex_state = 9}, - [1414] = {.lex_state = 9}, + [1413] = {.lex_state = 17}, + [1414] = {.lex_state = 14, .external_lex_state = 2}, [1415] = {.lex_state = 9}, - [1416] = {.lex_state = 9}, + [1416] = {.lex_state = 14, .external_lex_state = 2}, [1417] = {.lex_state = 9}, [1418] = {.lex_state = 9}, [1419] = {.lex_state = 9}, @@ -11777,7 +11838,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1426] = {.lex_state = 9}, [1427] = {.lex_state = 9}, [1428] = {.lex_state = 9}, - [1429] = {.lex_state = 9}, + [1429] = {.lex_state = 17}, [1430] = {.lex_state = 9}, [1431] = {.lex_state = 9}, [1432] = {.lex_state = 9}, @@ -11791,13 +11852,13 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1440] = {.lex_state = 9}, [1441] = {.lex_state = 9}, [1442] = {.lex_state = 9}, - [1443] = {.lex_state = 17}, + [1443] = {.lex_state = 9}, [1444] = {.lex_state = 9}, [1445] = {.lex_state = 9}, [1446] = {.lex_state = 9}, [1447] = {.lex_state = 9}, [1448] = {.lex_state = 9}, - [1449] = {.lex_state = 9}, + [1449] = {.lex_state = 17}, [1450] = {.lex_state = 9}, [1451] = {.lex_state = 9}, [1452] = {.lex_state = 9}, @@ -11842,11 +11903,11 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1491] = {.lex_state = 9}, [1492] = {.lex_state = 9}, [1493] = {.lex_state = 9}, - [1494] = {.lex_state = 17}, + [1494] = {.lex_state = 9}, [1495] = {.lex_state = 9}, - [1496] = {.lex_state = 17}, + [1496] = {.lex_state = 9}, [1497] = {.lex_state = 9}, - [1498] = {.lex_state = 10}, + [1498] = {.lex_state = 9}, [1499] = {.lex_state = 9}, [1500] = {.lex_state = 9}, [1501] = {.lex_state = 9}, @@ -11867,7 +11928,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1516] = {.lex_state = 9}, [1517] = {.lex_state = 9}, [1518] = {.lex_state = 9}, - [1519] = {.lex_state = 9}, + [1519] = {.lex_state = 10}, [1520] = {.lex_state = 9}, [1521] = {.lex_state = 9}, [1522] = {.lex_state = 9}, @@ -11875,18 +11936,18 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1524] = {.lex_state = 9}, [1525] = {.lex_state = 9}, [1526] = {.lex_state = 9}, - [1527] = {.lex_state = 9}, - [1528] = {.lex_state = 17}, - [1529] = {.lex_state = 17}, + [1527] = {.lex_state = 17}, + [1528] = {.lex_state = 9}, + [1529] = {.lex_state = 9}, [1530] = {.lex_state = 9}, [1531] = {.lex_state = 9}, [1532] = {.lex_state = 9}, - [1533] = {.lex_state = 17}, - [1534] = {.lex_state = 9}, - [1535] = {.lex_state = 13, .external_lex_state = 2}, - [1536] = {.lex_state = 13, .external_lex_state = 2}, + [1533] = {.lex_state = 9}, + [1534] = {.lex_state = 17}, + [1535] = {.lex_state = 9}, + [1536] = {.lex_state = 9}, [1537] = {.lex_state = 9}, - [1538] = {.lex_state = 13, .external_lex_state = 2}, + [1538] = {.lex_state = 9}, [1539] = {.lex_state = 9}, [1540] = {.lex_state = 9}, [1541] = {.lex_state = 9}, @@ -11896,226 +11957,226 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1545] = {.lex_state = 9}, [1546] = {.lex_state = 9}, [1547] = {.lex_state = 9}, - [1548] = {.lex_state = 9}, + [1548] = {.lex_state = 17}, [1549] = {.lex_state = 9}, [1550] = {.lex_state = 9}, [1551] = {.lex_state = 9}, [1552] = {.lex_state = 9}, - [1553] = {.lex_state = 11}, - [1554] = {.lex_state = 13, .external_lex_state = 2}, - [1555] = {.lex_state = 9}, - [1556] = {.lex_state = 13, .external_lex_state = 2}, + [1553] = {.lex_state = 9}, + [1554] = {.lex_state = 9}, + [1555] = {.lex_state = 13, .external_lex_state = 2}, + [1556] = {.lex_state = 9}, [1557] = {.lex_state = 9}, - [1558] = {.lex_state = 9}, + [1558] = {.lex_state = 13, .external_lex_state = 2}, [1559] = {.lex_state = 9}, [1560] = {.lex_state = 9}, - [1561] = {.lex_state = 13, .external_lex_state = 2}, - [1562] = {.lex_state = 9}, + [1561] = {.lex_state = 17}, + [1562] = {.lex_state = 17}, [1563] = {.lex_state = 11}, - [1564] = {.lex_state = 17}, - [1565] = {.lex_state = 11}, - [1566] = {.lex_state = 17}, - [1567] = {.lex_state = 11}, - [1568] = {.lex_state = 17}, - [1569] = {.lex_state = 9}, - [1570] = {.lex_state = 17}, - [1571] = {.lex_state = 17}, - [1572] = {.lex_state = 10}, - [1573] = {.lex_state = 11}, - [1574] = {.lex_state = 10}, - [1575] = {.lex_state = 10}, + [1564] = {.lex_state = 9}, + [1565] = {.lex_state = 9}, + [1566] = {.lex_state = 9}, + [1567] = {.lex_state = 13, .external_lex_state = 2}, + [1568] = {.lex_state = 9}, + [1569] = {.lex_state = 13, .external_lex_state = 2}, + [1570] = {.lex_state = 9}, + [1571] = {.lex_state = 13, .external_lex_state = 2}, + [1572] = {.lex_state = 9}, + [1573] = {.lex_state = 17}, + [1574] = {.lex_state = 17}, + [1575] = {.lex_state = 13, .external_lex_state = 2}, [1576] = {.lex_state = 9}, - [1577] = {.lex_state = 10}, - [1578] = {.lex_state = 10}, + [1577] = {.lex_state = 9}, + [1578] = {.lex_state = 9}, [1579] = {.lex_state = 11}, [1580] = {.lex_state = 11}, - [1581] = {.lex_state = 9}, - [1582] = {.lex_state = 11}, - [1583] = {.lex_state = 11}, - [1584] = {.lex_state = 11}, - [1585] = {.lex_state = 9}, - [1586] = {.lex_state = 11}, - [1587] = {.lex_state = 9}, - [1588] = {.lex_state = 9}, + [1581] = {.lex_state = 11}, + [1582] = {.lex_state = 9}, + [1583] = {.lex_state = 9}, + [1584] = {.lex_state = 10}, + [1585] = {.lex_state = 11}, + [1586] = {.lex_state = 10}, + [1587] = {.lex_state = 11}, + [1588] = {.lex_state = 11}, [1589] = {.lex_state = 9}, - [1590] = {.lex_state = 11}, - [1591] = {.lex_state = 9}, - [1592] = {.lex_state = 10}, - [1593] = {.lex_state = 9}, - [1594] = {.lex_state = 17}, - [1595] = {.lex_state = 9}, + [1590] = {.lex_state = 10}, + [1591] = {.lex_state = 17}, + [1592] = {.lex_state = 11}, + [1593] = {.lex_state = 11}, + [1594] = {.lex_state = 11}, + [1595] = {.lex_state = 11}, [1596] = {.lex_state = 10}, - [1597] = {.lex_state = 10}, - [1598] = {.lex_state = 10}, + [1597] = {.lex_state = 9}, + [1598] = {.lex_state = 9}, [1599] = {.lex_state = 10}, - [1600] = {.lex_state = 10}, + [1600] = {.lex_state = 9}, [1601] = {.lex_state = 9}, [1602] = {.lex_state = 9}, - [1603] = {.lex_state = 10}, - [1604] = {.lex_state = 10}, - [1605] = {.lex_state = 10}, - [1606] = {.lex_state = 10}, + [1603] = {.lex_state = 17}, + [1604] = {.lex_state = 9}, + [1605] = {.lex_state = 17}, + [1606] = {.lex_state = 11}, [1607] = {.lex_state = 10}, - [1608] = {.lex_state = 9}, - [1609] = {.lex_state = 9}, - [1610] = {.lex_state = 9}, + [1608] = {.lex_state = 10}, + [1609] = {.lex_state = 10}, + [1610] = {.lex_state = 10}, [1611] = {.lex_state = 9}, [1612] = {.lex_state = 9}, - [1613] = {.lex_state = 9}, + [1613] = {.lex_state = 10}, [1614] = {.lex_state = 10}, [1615] = {.lex_state = 9}, - [1616] = {.lex_state = 9}, - [1617] = {.lex_state = 9}, - [1618] = {.lex_state = 9}, + [1616] = {.lex_state = 10}, + [1617] = {.lex_state = 10}, + [1618] = {.lex_state = 10}, [1619] = {.lex_state = 9}, - [1620] = {.lex_state = 9}, + [1620] = {.lex_state = 10}, [1621] = {.lex_state = 9}, - [1622] = {.lex_state = 10}, - [1623] = {.lex_state = 17}, - [1624] = {.lex_state = 17}, - [1625] = {.lex_state = 10}, - [1626] = {.lex_state = 10}, - [1627] = {.lex_state = 9}, - [1628] = {.lex_state = 22}, + [1622] = {.lex_state = 9}, + [1623] = {.lex_state = 10}, + [1624] = {.lex_state = 9}, + [1625] = {.lex_state = 9}, + [1626] = {.lex_state = 9}, + [1627] = {.lex_state = 10}, + [1628] = {.lex_state = 9}, [1629] = {.lex_state = 9}, - [1630] = {.lex_state = 17}, - [1631] = {.lex_state = 10}, - [1632] = {.lex_state = 11}, + [1630] = {.lex_state = 9}, + [1631] = {.lex_state = 9}, + [1632] = {.lex_state = 9}, [1633] = {.lex_state = 9}, - [1634] = {.lex_state = 22}, - [1635] = {.lex_state = 9}, + [1634] = {.lex_state = 10}, + [1635] = {.lex_state = 10}, [1636] = {.lex_state = 9}, - [1637] = {.lex_state = 10}, + [1637] = {.lex_state = 9}, [1638] = {.lex_state = 10}, - [1639] = {.lex_state = 10}, - [1640] = {.lex_state = 22}, + [1639] = {.lex_state = 9}, + [1640] = {.lex_state = 9}, [1641] = {.lex_state = 10}, [1642] = {.lex_state = 10}, [1643] = {.lex_state = 10}, - [1644] = {.lex_state = 9}, - [1645] = {.lex_state = 10}, + [1644] = {.lex_state = 22}, + [1645] = {.lex_state = 9}, [1646] = {.lex_state = 10}, - [1647] = {.lex_state = 9}, - [1648] = {.lex_state = 9}, - [1649] = {.lex_state = 22}, + [1647] = {.lex_state = 10}, + [1648] = {.lex_state = 10}, + [1649] = {.lex_state = 10}, [1650] = {.lex_state = 9}, - [1651] = {.lex_state = 9}, - [1652] = {.lex_state = 9}, - [1653] = {.lex_state = 9}, - [1654] = {.lex_state = 22}, - [1655] = {.lex_state = 22}, - [1656] = {.lex_state = 9}, - [1657] = {.lex_state = 9}, - [1658] = {.lex_state = 9}, - [1659] = {.lex_state = 10}, + [1651] = {.lex_state = 10}, + [1652] = {.lex_state = 10}, + [1653] = {.lex_state = 10}, + [1654] = {.lex_state = 10}, + [1655] = {.lex_state = 9}, + [1656] = {.lex_state = 22}, + [1657] = {.lex_state = 22}, + [1658] = {.lex_state = 10}, + [1659] = {.lex_state = 9}, [1660] = {.lex_state = 9}, [1661] = {.lex_state = 9}, [1662] = {.lex_state = 9}, - [1663] = {.lex_state = 22}, + [1663] = {.lex_state = 9}, [1664] = {.lex_state = 9}, - [1665] = {.lex_state = 10}, + [1665] = {.lex_state = 9}, [1666] = {.lex_state = 9}, - [1667] = {.lex_state = 10}, + [1667] = {.lex_state = 9}, [1668] = {.lex_state = 9}, - [1669] = {.lex_state = 22}, - [1670] = {.lex_state = 22}, - [1671] = {.lex_state = 10}, - [1672] = {.lex_state = 9}, - [1673] = {.lex_state = 10}, - [1674] = {.lex_state = 10}, - [1675] = {.lex_state = 9}, - [1676] = {.lex_state = 9}, + [1669] = {.lex_state = 9}, + [1670] = {.lex_state = 17}, + [1671] = {.lex_state = 11}, + [1672] = {.lex_state = 22}, + [1673] = {.lex_state = 9}, + [1674] = {.lex_state = 9}, + [1675] = {.lex_state = 22}, + [1676] = {.lex_state = 22}, [1677] = {.lex_state = 22}, - [1678] = {.lex_state = 9}, + [1678] = {.lex_state = 10}, [1679] = {.lex_state = 10}, - [1680] = {.lex_state = 10}, - [1681] = {.lex_state = 22}, - [1682] = {.lex_state = 10}, + [1680] = {.lex_state = 22}, + [1681] = {.lex_state = 10}, + [1682] = {.lex_state = 9}, [1683] = {.lex_state = 10}, [1684] = {.lex_state = 9}, [1685] = {.lex_state = 22}, [1686] = {.lex_state = 9}, - [1687] = {.lex_state = 10}, - [1688] = {.lex_state = 10}, - [1689] = {.lex_state = 10}, + [1687] = {.lex_state = 9}, + [1688] = {.lex_state = 9}, + [1689] = {.lex_state = 9}, [1690] = {.lex_state = 10}, - [1691] = {.lex_state = 10}, - [1692] = {.lex_state = 10}, - [1693] = {.lex_state = 10}, + [1691] = {.lex_state = 9}, + [1692] = {.lex_state = 22}, + [1693] = {.lex_state = 9}, [1694] = {.lex_state = 9}, - [1695] = {.lex_state = 10}, + [1695] = {.lex_state = 22}, [1696] = {.lex_state = 10}, - [1697] = {.lex_state = 10}, + [1697] = {.lex_state = 22}, [1698] = {.lex_state = 10}, - [1699] = {.lex_state = 10}, - [1700] = {.lex_state = 10}, - [1701] = {.lex_state = 9}, - [1702] = {.lex_state = 9}, + [1699] = {.lex_state = 9}, + [1700] = {.lex_state = 9}, + [1701] = {.lex_state = 10}, + [1702] = {.lex_state = 10}, [1703] = {.lex_state = 10}, [1704] = {.lex_state = 10}, - [1705] = {.lex_state = 10}, - [1706] = {.lex_state = 10}, + [1705] = {.lex_state = 17}, + [1706] = {.lex_state = 9}, [1707] = {.lex_state = 10}, [1708] = {.lex_state = 10}, [1709] = {.lex_state = 10}, - [1710] = {.lex_state = 10}, + [1710] = {.lex_state = 9}, [1711] = {.lex_state = 10}, [1712] = {.lex_state = 10}, - [1713] = {.lex_state = 10}, + [1713] = {.lex_state = 9}, [1714] = {.lex_state = 10}, [1715] = {.lex_state = 10}, - [1716] = {.lex_state = 9}, + [1716] = {.lex_state = 10}, [1717] = {.lex_state = 10}, [1718] = {.lex_state = 10}, [1719] = {.lex_state = 10}, - [1720] = {.lex_state = 10}, + [1720] = {.lex_state = 9}, [1721] = {.lex_state = 10}, [1722] = {.lex_state = 10}, - [1723] = {.lex_state = 9}, - [1724] = {.lex_state = 9}, - [1725] = {.lex_state = 10}, + [1723] = {.lex_state = 10}, + [1724] = {.lex_state = 10}, + [1725] = {.lex_state = 9}, [1726] = {.lex_state = 10}, - [1727] = {.lex_state = 10}, + [1727] = {.lex_state = 9}, [1728] = {.lex_state = 10}, - [1729] = {.lex_state = 17}, - [1730] = {.lex_state = 9}, - [1731] = {.lex_state = 10}, + [1729] = {.lex_state = 10}, + [1730] = {.lex_state = 10}, + [1731] = {.lex_state = 9}, [1732] = {.lex_state = 10}, [1733] = {.lex_state = 10}, [1734] = {.lex_state = 10}, [1735] = {.lex_state = 10}, [1736] = {.lex_state = 10}, [1737] = {.lex_state = 10}, - [1738] = {.lex_state = 9}, + [1738] = {.lex_state = 10}, [1739] = {.lex_state = 9}, - [1740] = {.lex_state = 10}, + [1740] = {.lex_state = 9}, [1741] = {.lex_state = 10}, - [1742] = {.lex_state = 10}, - [1743] = {.lex_state = 10}, - [1744] = {.lex_state = 10}, - [1745] = {.lex_state = 10}, + [1742] = {.lex_state = 9}, + [1743] = {.lex_state = 9}, + [1744] = {.lex_state = 9}, + [1745] = {.lex_state = 9}, [1746] = {.lex_state = 9}, [1747] = {.lex_state = 9}, - [1748] = {.lex_state = 10}, - [1749] = {.lex_state = 10}, - [1750] = {.lex_state = 10}, - [1751] = {.lex_state = 10}, - [1752] = {.lex_state = 10}, + [1748] = {.lex_state = 9}, + [1749] = {.lex_state = 9}, + [1750] = {.lex_state = 9}, + [1751] = {.lex_state = 9}, + [1752] = {.lex_state = 9}, [1753] = {.lex_state = 10}, - [1754] = {.lex_state = 9}, + [1754] = {.lex_state = 10}, [1755] = {.lex_state = 10}, [1756] = {.lex_state = 10}, [1757] = {.lex_state = 10}, [1758] = {.lex_state = 10}, - [1759] = {.lex_state = 10}, - [1760] = {.lex_state = 10}, - [1761] = {.lex_state = 10}, + [1759] = {.lex_state = 9}, + [1760] = {.lex_state = 9}, + [1761] = {.lex_state = 9}, [1762] = {.lex_state = 10}, - [1763] = {.lex_state = 9}, + [1763] = {.lex_state = 10}, [1764] = {.lex_state = 10}, [1765] = {.lex_state = 10}, - [1766] = {.lex_state = 9}, - [1767] = {.lex_state = 10}, + [1766] = {.lex_state = 10}, + [1767] = {.lex_state = 9}, [1768] = {.lex_state = 10}, [1769] = {.lex_state = 10}, [1770] = {.lex_state = 10}, @@ -12134,176 +12195,176 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1783] = {.lex_state = 10}, [1784] = {.lex_state = 10}, [1785] = {.lex_state = 10}, - [1786] = {.lex_state = 10}, + [1786] = {.lex_state = 9}, [1787] = {.lex_state = 10}, [1788] = {.lex_state = 10}, [1789] = {.lex_state = 10}, [1790] = {.lex_state = 10}, [1791] = {.lex_state = 10}, [1792] = {.lex_state = 10}, - [1793] = {.lex_state = 9}, - [1794] = {.lex_state = 10}, - [1795] = {.lex_state = 10}, + [1793] = {.lex_state = 10}, + [1794] = {.lex_state = 9}, + [1795] = {.lex_state = 9}, [1796] = {.lex_state = 10}, [1797] = {.lex_state = 10}, [1798] = {.lex_state = 10}, [1799] = {.lex_state = 10}, [1800] = {.lex_state = 10}, - [1801] = {.lex_state = 9}, - [1802] = {.lex_state = 9}, - [1803] = {.lex_state = 10}, - [1804] = {.lex_state = 9}, - [1805] = {.lex_state = 9}, + [1801] = {.lex_state = 10}, + [1802] = {.lex_state = 10}, + [1803] = {.lex_state = 9}, + [1804] = {.lex_state = 10}, + [1805] = {.lex_state = 10}, [1806] = {.lex_state = 10}, - [1807] = {.lex_state = 9}, - [1808] = {.lex_state = 9}, + [1807] = {.lex_state = 10}, + [1808] = {.lex_state = 10}, [1809] = {.lex_state = 10}, [1810] = {.lex_state = 10}, - [1811] = {.lex_state = 9}, + [1811] = {.lex_state = 10}, [1812] = {.lex_state = 10}, [1813] = {.lex_state = 10}, [1814] = {.lex_state = 10}, [1815] = {.lex_state = 10}, [1816] = {.lex_state = 10}, - [1817] = {.lex_state = 9}, + [1817] = {.lex_state = 10}, [1818] = {.lex_state = 9}, [1819] = {.lex_state = 10}, - [1820] = {.lex_state = 9}, + [1820] = {.lex_state = 10}, [1821] = {.lex_state = 9}, - [1822] = {.lex_state = 17}, - [1823] = {.lex_state = 9}, - [1824] = {.lex_state = 9}, - [1825] = {.lex_state = 9}, + [1822] = {.lex_state = 10}, + [1823] = {.lex_state = 10}, + [1824] = {.lex_state = 10}, + [1825] = {.lex_state = 10}, [1826] = {.lex_state = 10}, - [1827] = {.lex_state = 9}, + [1827] = {.lex_state = 10}, [1828] = {.lex_state = 10}, - [1829] = {.lex_state = 9}, - [1830] = {.lex_state = 9}, - [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}, + [1829] = {.lex_state = 10}, + [1830] = {.lex_state = 10}, + [1831] = {.lex_state = 10}, + [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 = 9}, + [1840] = {.lex_state = 10}, [1841] = {.lex_state = 10}, [1842] = {.lex_state = 10}, [1843] = {.lex_state = 10}, [1844] = {.lex_state = 10}, [1845] = {.lex_state = 9}, - [1846] = {.lex_state = 9}, - [1847] = {.lex_state = 9}, - [1848] = {.lex_state = 9}, - [1849] = {.lex_state = 9}, - [1850] = {.lex_state = 9}, + [1846] = {.lex_state = 10}, + [1847] = {.lex_state = 10}, + [1848] = {.lex_state = 10}, + [1849] = {.lex_state = 10}, + [1850] = {.lex_state = 10}, [1851] = {.lex_state = 10}, - [1852] = {.lex_state = 9}, - [1853] = {.lex_state = 9}, + [1852] = {.lex_state = 10}, + [1853] = {.lex_state = 10}, [1854] = {.lex_state = 9}, [1855] = {.lex_state = 10}, [1856] = {.lex_state = 9}, - [1857] = {.lex_state = 9}, + [1857] = {.lex_state = 10}, [1858] = {.lex_state = 9}, [1859] = {.lex_state = 9}, [1860] = {.lex_state = 9}, - [1861] = {.lex_state = 9}, + [1861] = {.lex_state = 10}, [1862] = {.lex_state = 9}, [1863] = {.lex_state = 9}, - [1864] = {.lex_state = 9}, + [1864] = {.lex_state = 10}, [1865] = {.lex_state = 9}, - [1866] = {.lex_state = 9}, + [1866] = {.lex_state = 10}, [1867] = {.lex_state = 9}, - [1868] = {.lex_state = 10}, + [1868] = {.lex_state = 9}, [1869] = {.lex_state = 9}, [1870] = {.lex_state = 9}, - [1871] = {.lex_state = 9}, - [1872] = {.lex_state = 10}, + [1871] = {.lex_state = 17}, + [1872] = {.lex_state = 9}, [1873] = {.lex_state = 9}, [1874] = {.lex_state = 9}, [1875] = {.lex_state = 9}, [1876] = {.lex_state = 9}, [1877] = {.lex_state = 9}, - [1878] = {.lex_state = 9}, - [1879] = {.lex_state = 10}, + [1878] = {.lex_state = 10}, + [1879] = {.lex_state = 9}, [1880] = {.lex_state = 9}, [1881] = {.lex_state = 9}, [1882] = {.lex_state = 9}, - [1883] = {.lex_state = 9}, + [1883] = {.lex_state = 10}, [1884] = {.lex_state = 9}, [1885] = {.lex_state = 9}, [1886] = {.lex_state = 9}, [1887] = {.lex_state = 9}, [1888] = {.lex_state = 9}, - [1889] = {.lex_state = 10}, + [1889] = {.lex_state = 9}, [1890] = {.lex_state = 10}, [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}, + [1892] = {.lex_state = 9}, + [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 = 9}, - [1903] = {.lex_state = 10}, + [1903] = {.lex_state = 9}, [1904] = {.lex_state = 9}, [1905] = {.lex_state = 9}, [1906] = {.lex_state = 9}, [1907] = {.lex_state = 9}, [1908] = {.lex_state = 9}, - [1909] = {.lex_state = 17}, + [1909] = {.lex_state = 9}, [1910] = {.lex_state = 9}, - [1911] = {.lex_state = 17}, - [1912] = {.lex_state = 10}, + [1911] = {.lex_state = 9}, + [1912] = {.lex_state = 9}, [1913] = {.lex_state = 9}, - [1914] = {.lex_state = 9}, + [1914] = {.lex_state = 10}, [1915] = {.lex_state = 9}, - [1916] = {.lex_state = 9}, + [1916] = {.lex_state = 10}, [1917] = {.lex_state = 9}, - [1918] = {.lex_state = 17}, + [1918] = {.lex_state = 9}, [1919] = {.lex_state = 9}, [1920] = {.lex_state = 9}, [1921] = {.lex_state = 9}, [1922] = {.lex_state = 9}, - [1923] = {.lex_state = 9}, + [1923] = {.lex_state = 10}, [1924] = {.lex_state = 9}, [1925] = {.lex_state = 9}, - [1926] = {.lex_state = 10}, + [1926] = {.lex_state = 9}, [1927] = {.lex_state = 9}, - [1928] = {.lex_state = 10}, + [1928] = {.lex_state = 9}, [1929] = {.lex_state = 9}, [1930] = {.lex_state = 9}, [1931] = {.lex_state = 9}, [1932] = {.lex_state = 9}, - [1933] = {.lex_state = 17}, + [1933] = {.lex_state = 9}, [1934] = {.lex_state = 9}, - [1935] = {.lex_state = 17}, + [1935] = {.lex_state = 9}, [1936] = {.lex_state = 9}, - [1937] = {.lex_state = 9}, - [1938] = {.lex_state = 9}, + [1937] = {.lex_state = 17}, + [1938] = {.lex_state = 17}, [1939] = {.lex_state = 9}, [1940] = {.lex_state = 9}, [1941] = {.lex_state = 9}, - [1942] = {.lex_state = 17}, - [1943] = {.lex_state = 17}, - [1944] = {.lex_state = 17}, - [1945] = {.lex_state = 17}, + [1942] = {.lex_state = 10}, + [1943] = {.lex_state = 9}, + [1944] = {.lex_state = 9}, + [1945] = {.lex_state = 9}, [1946] = {.lex_state = 17}, - [1947] = {.lex_state = 17}, - [1948] = {.lex_state = 17}, + [1947] = {.lex_state = 9}, + [1948] = {.lex_state = 9}, [1949] = {.lex_state = 17}, [1950] = {.lex_state = 17}, - [1951] = {.lex_state = 17}, - [1952] = {.lex_state = 17}, - [1953] = {.lex_state = 17}, - [1954] = {.lex_state = 17}, - [1955] = {.lex_state = 17}, + [1951] = {.lex_state = 9}, + [1952] = {.lex_state = 9}, + [1953] = {.lex_state = 10}, + [1954] = {.lex_state = 9}, + [1955] = {.lex_state = 9}, [1956] = {.lex_state = 17}, [1957] = {.lex_state = 17}, [1958] = {.lex_state = 17}, @@ -12312,91 +12373,91 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1961] = {.lex_state = 17}, [1962] = {.lex_state = 17}, [1963] = {.lex_state = 17}, - [1964] = {.lex_state = 31}, - [1965] = {.lex_state = 31}, - [1966] = {.lex_state = 18}, - [1967] = {.lex_state = 18}, - [1968] = {.lex_state = 18}, - [1969] = {.lex_state = 18}, - [1970] = {.lex_state = 18}, - [1971] = {.lex_state = 18}, - [1972] = {.lex_state = 18}, - [1973] = {.lex_state = 18}, - [1974] = {.lex_state = 18}, - [1975] = {.lex_state = 31}, - [1976] = {.lex_state = 18}, + [1964] = {.lex_state = 17}, + [1965] = {.lex_state = 17}, + [1966] = {.lex_state = 17}, + [1967] = {.lex_state = 17}, + [1968] = {.lex_state = 17}, + [1969] = {.lex_state = 17}, + [1970] = {.lex_state = 17}, + [1971] = {.lex_state = 17}, + [1972] = {.lex_state = 17}, + [1973] = {.lex_state = 17}, + [1974] = {.lex_state = 17}, + [1975] = {.lex_state = 17}, + [1976] = {.lex_state = 17}, [1977] = {.lex_state = 17}, [1978] = {.lex_state = 31}, - [1979] = {.lex_state = 17}, + [1979] = {.lex_state = 31}, [1980] = {.lex_state = 18}, [1981] = {.lex_state = 18}, - [1982] = {.lex_state = 17}, - [1983] = {.lex_state = 17}, - [1984] = {.lex_state = 31}, + [1982] = {.lex_state = 18}, + [1983] = {.lex_state = 18}, + [1984] = {.lex_state = 18}, [1985] = {.lex_state = 18}, - [1986] = {.lex_state = 31}, - [1987] = {.lex_state = 13, .external_lex_state = 2}, - [1988] = {.lex_state = 17}, + [1986] = {.lex_state = 18}, + [1987] = {.lex_state = 18}, + [1988] = {.lex_state = 18}, [1989] = {.lex_state = 17}, - [1990] = {.lex_state = 17}, - [1991] = {.lex_state = 31}, - [1992] = {.lex_state = 17}, - [1993] = {.lex_state = 17}, + [1990] = {.lex_state = 31}, + [1991] = {.lex_state = 18}, + [1992] = {.lex_state = 31}, + [1993] = {.lex_state = 18}, [1994] = {.lex_state = 17}, [1995] = {.lex_state = 18}, [1996] = {.lex_state = 17}, - [1997] = {.lex_state = 17}, + [1997] = {.lex_state = 31}, [1998] = {.lex_state = 18}, - [1999] = {.lex_state = 17}, + [1999] = {.lex_state = 31}, [2000] = {.lex_state = 17}, [2001] = {.lex_state = 17}, [2002] = {.lex_state = 31}, - [2003] = {.lex_state = 18}, - [2004] = {.lex_state = 31}, + [2003] = {.lex_state = 17}, + [2004] = {.lex_state = 17}, [2005] = {.lex_state = 17}, - [2006] = {.lex_state = 31}, - [2007] = {.lex_state = 31}, - [2008] = {.lex_state = 31}, - [2009] = {.lex_state = 31}, - [2010] = {.lex_state = 31}, - [2011] = {.lex_state = 31}, - [2012] = {.lex_state = 31}, - [2013] = {.lex_state = 31}, - [2014] = {.lex_state = 31}, - [2015] = {.lex_state = 17}, + [2006] = {.lex_state = 13, .external_lex_state = 2}, + [2007] = {.lex_state = 17}, + [2008] = {.lex_state = 17}, + [2009] = {.lex_state = 17}, + [2010] = {.lex_state = 18}, + [2011] = {.lex_state = 17}, + [2012] = {.lex_state = 18}, + [2013] = {.lex_state = 17}, + [2014] = {.lex_state = 17}, + [2015] = {.lex_state = 18}, [2016] = {.lex_state = 17}, - [2017] = {.lex_state = 31}, - [2018] = {.lex_state = 18}, - [2019] = {.lex_state = 17}, - [2020] = {.lex_state = 31}, - [2021] = {.lex_state = 18}, + [2017] = {.lex_state = 17}, + [2018] = {.lex_state = 31}, + [2019] = {.lex_state = 18}, + [2020] = {.lex_state = 17}, + [2021] = {.lex_state = 31}, [2022] = {.lex_state = 17}, - [2023] = {.lex_state = 31}, + [2023] = {.lex_state = 17}, [2024] = {.lex_state = 31}, - [2025] = {.lex_state = 17}, - [2026] = {.lex_state = 18}, + [2025] = {.lex_state = 31}, + [2026] = {.lex_state = 31}, [2027] = {.lex_state = 31}, - [2028] = {.lex_state = 31}, - [2029] = {.lex_state = 31}, + [2028] = {.lex_state = 17}, + [2029] = {.lex_state = 17}, [2030] = {.lex_state = 31}, - [2031] = {.lex_state = 17}, - [2032] = {.lex_state = 31}, + [2031] = {.lex_state = 31}, + [2032] = {.lex_state = 17}, [2033] = {.lex_state = 31}, - [2034] = {.lex_state = 31}, + [2034] = {.lex_state = 17}, [2035] = {.lex_state = 31}, [2036] = {.lex_state = 31}, - [2037] = {.lex_state = 31}, + [2037] = {.lex_state = 18}, [2038] = {.lex_state = 31}, - [2039] = {.lex_state = 31}, + [2039] = {.lex_state = 17}, [2040] = {.lex_state = 31}, - [2041] = {.lex_state = 17}, - [2042] = {.lex_state = 31}, + [2041] = {.lex_state = 31}, + [2042] = {.lex_state = 17}, [2043] = {.lex_state = 31}, - [2044] = {.lex_state = 31}, - [2045] = {.lex_state = 31}, - [2046] = {.lex_state = 31}, + [2044] = {.lex_state = 18}, + [2045] = {.lex_state = 17}, + [2046] = {.lex_state = 17}, [2047] = {.lex_state = 31}, - [2048] = {.lex_state = 17}, + [2048] = {.lex_state = 18}, [2049] = {.lex_state = 31}, [2050] = {.lex_state = 31}, [2051] = {.lex_state = 31}, @@ -12405,128 +12466,128 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2054] = {.lex_state = 31}, [2055] = {.lex_state = 31}, [2056] = {.lex_state = 31}, - [2057] = {.lex_state = 17}, + [2057] = {.lex_state = 31}, [2058] = {.lex_state = 31}, [2059] = {.lex_state = 31}, [2060] = {.lex_state = 31}, [2061] = {.lex_state = 31}, [2062] = {.lex_state = 31}, [2063] = {.lex_state = 31}, - [2064] = {.lex_state = 18}, + [2064] = {.lex_state = 31}, [2065] = {.lex_state = 31}, [2066] = {.lex_state = 31}, - [2067] = {.lex_state = 17}, - [2068] = {.lex_state = 17}, - [2069] = {.lex_state = 17}, + [2067] = {.lex_state = 31}, + [2068] = {.lex_state = 31}, + [2069] = {.lex_state = 31}, [2070] = {.lex_state = 31}, [2071] = {.lex_state = 31}, [2072] = {.lex_state = 31}, - [2073] = {.lex_state = 18}, + [2073] = {.lex_state = 31}, [2074] = {.lex_state = 31}, - [2075] = {.lex_state = 19}, + [2075] = {.lex_state = 31}, [2076] = {.lex_state = 31}, - [2077] = {.lex_state = 18}, - [2078] = {.lex_state = 18}, - [2079] = {.lex_state = 18}, - [2080] = {.lex_state = 18}, - [2081] = {.lex_state = 18}, - [2082] = {.lex_state = 18}, - [2083] = {.lex_state = 18}, - [2084] = {.lex_state = 18}, - [2085] = {.lex_state = 18}, - [2086] = {.lex_state = 18}, - [2087] = {.lex_state = 18}, - [2088] = {.lex_state = 18}, - [2089] = {.lex_state = 17}, - [2090] = {.lex_state = 17}, - [2091] = {.lex_state = 17}, - [2092] = {.lex_state = 17}, - [2093] = {.lex_state = 17}, - [2094] = {.lex_state = 17}, - [2095] = {.lex_state = 17}, - [2096] = {.lex_state = 17}, - [2097] = {.lex_state = 17}, - [2098] = {.lex_state = 24}, - [2099] = {.lex_state = 17}, - [2100] = {.lex_state = 31}, - [2101] = {.lex_state = 24}, - [2102] = {.lex_state = 17}, - [2103] = {.lex_state = 17}, - [2104] = {.lex_state = 17}, + [2077] = {.lex_state = 31}, + [2078] = {.lex_state = 31}, + [2079] = {.lex_state = 31}, + [2080] = {.lex_state = 31}, + [2081] = {.lex_state = 31}, + [2082] = {.lex_state = 31}, + [2083] = {.lex_state = 17}, + [2084] = {.lex_state = 17}, + [2085] = {.lex_state = 31}, + [2086] = {.lex_state = 17}, + [2087] = {.lex_state = 31}, + [2088] = {.lex_state = 31}, + [2089] = {.lex_state = 18}, + [2090] = {.lex_state = 19}, + [2091] = {.lex_state = 18}, + [2092] = {.lex_state = 18}, + [2093] = {.lex_state = 18}, + [2094] = {.lex_state = 18}, + [2095] = {.lex_state = 31}, + [2096] = {.lex_state = 18}, + [2097] = {.lex_state = 18}, + [2098] = {.lex_state = 31}, + [2099] = {.lex_state = 18}, + [2100] = {.lex_state = 18}, + [2101] = {.lex_state = 18}, + [2102] = {.lex_state = 18}, + [2103] = {.lex_state = 18}, + [2104] = {.lex_state = 18}, [2105] = {.lex_state = 17}, [2106] = {.lex_state = 17}, - [2107] = {.lex_state = 17}, - [2108] = {.lex_state = 31}, - [2109] = {.lex_state = 18}, - [2110] = {.lex_state = 18}, - [2111] = {.lex_state = 27}, - [2112] = {.lex_state = 31}, - [2113] = {.lex_state = 31}, + [2107] = {.lex_state = 24}, + [2108] = {.lex_state = 17}, + [2109] = {.lex_state = 17}, + [2110] = {.lex_state = 17}, + [2111] = {.lex_state = 17}, + [2112] = {.lex_state = 24}, + [2113] = {.lex_state = 17}, [2114] = {.lex_state = 17}, - [2115] = {.lex_state = 17}, - [2116] = {.lex_state = 17}, - [2117] = {.lex_state = 18}, + [2115] = {.lex_state = 24}, + [2116] = {.lex_state = 24}, + [2117] = {.lex_state = 17}, [2118] = {.lex_state = 17}, - [2119] = {.lex_state = 17}, - [2120] = {.lex_state = 17}, - [2121] = {.lex_state = 17}, - [2122] = {.lex_state = 18}, + [2119] = {.lex_state = 31}, + [2120] = {.lex_state = 18}, + [2121] = {.lex_state = 31}, + [2122] = {.lex_state = 31}, [2123] = {.lex_state = 17}, - [2124] = {.lex_state = 31}, - [2125] = {.lex_state = 18}, - [2126] = {.lex_state = 27}, + [2124] = {.lex_state = 17}, + [2125] = {.lex_state = 17}, + [2126] = {.lex_state = 17}, [2127] = {.lex_state = 17}, - [2128] = {.lex_state = 17}, - [2129] = {.lex_state = 24}, - [2130] = {.lex_state = 17}, - [2131] = {.lex_state = 24}, - [2132] = {.lex_state = 18}, - [2133] = {.lex_state = 17}, - [2134] = {.lex_state = 18}, - [2135] = {.lex_state = 18}, - [2136] = {.lex_state = 18}, - [2137] = {.lex_state = 19}, - [2138] = {.lex_state = 19}, - [2139] = {.lex_state = 19}, - [2140] = {.lex_state = 18}, - [2141] = {.lex_state = 19}, + [2128] = {.lex_state = 18}, + [2129] = {.lex_state = 27}, + [2130] = {.lex_state = 18}, + [2131] = {.lex_state = 18}, + [2132] = {.lex_state = 19}, + [2133] = {.lex_state = 19}, + [2134] = {.lex_state = 19}, + [2135] = {.lex_state = 19}, + [2136] = {.lex_state = 17}, + [2137] = {.lex_state = 18}, + [2138] = {.lex_state = 27}, + [2139] = {.lex_state = 18}, + [2140] = {.lex_state = 17}, + [2141] = {.lex_state = 17}, [2142] = {.lex_state = 17}, - [2143] = {.lex_state = 17}, + [2143] = {.lex_state = 18}, [2144] = {.lex_state = 31}, [2145] = {.lex_state = 31}, - [2146] = {.lex_state = 31}, - [2147] = {.lex_state = 31}, - [2148] = {.lex_state = 31}, + [2146] = {.lex_state = 17}, + [2147] = {.lex_state = 17}, + [2148] = {.lex_state = 17}, [2149] = {.lex_state = 17}, - [2150] = {.lex_state = 31}, - [2151] = {.lex_state = 31}, - [2152] = {.lex_state = 31}, - [2153] = {.lex_state = 31}, - [2154] = {.lex_state = 31}, - [2155] = {.lex_state = 18}, - [2156] = {.lex_state = 31}, - [2157] = {.lex_state = 31}, + [2150] = {.lex_state = 17}, + [2151] = {.lex_state = 17}, + [2152] = {.lex_state = 17}, + [2153] = {.lex_state = 18}, + [2154] = {.lex_state = 17}, + [2155] = {.lex_state = 17}, + [2156] = {.lex_state = 18}, + [2157] = {.lex_state = 18}, [2158] = {.lex_state = 17}, - [2159] = {.lex_state = 17}, - [2160] = {.lex_state = 31}, - [2161] = {.lex_state = 31}, - [2162] = {.lex_state = 27}, - [2163] = {.lex_state = 27}, - [2164] = {.lex_state = 27}, + [2159] = {.lex_state = 18}, + [2160] = {.lex_state = 18}, + [2161] = {.lex_state = 18}, + [2162] = {.lex_state = 17}, + [2163] = {.lex_state = 31}, + [2164] = {.lex_state = 8}, [2165] = {.lex_state = 31}, - [2166] = {.lex_state = 31}, + [2166] = {.lex_state = 17}, [2167] = {.lex_state = 17}, - [2168] = {.lex_state = 31}, - [2169] = {.lex_state = 18}, - [2170] = {.lex_state = 17}, - [2171] = {.lex_state = 31}, + [2168] = {.lex_state = 17}, + [2169] = {.lex_state = 27}, + [2170] = {.lex_state = 27}, + [2171] = {.lex_state = 27}, [2172] = {.lex_state = 31}, [2173] = {.lex_state = 31}, [2174] = {.lex_state = 31}, - [2175] = {.lex_state = 18}, - [2176] = {.lex_state = 31}, + [2175] = {.lex_state = 17}, + [2176] = {.lex_state = 8}, [2177] = {.lex_state = 31}, - [2178] = {.lex_state = 31}, + [2178] = {.lex_state = 8}, [2179] = {.lex_state = 31}, [2180] = {.lex_state = 31}, [2181] = {.lex_state = 31}, @@ -12535,757 +12596,757 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2184] = {.lex_state = 31}, [2185] = {.lex_state = 31}, [2186] = {.lex_state = 31}, - [2187] = {.lex_state = 31}, + [2187] = {.lex_state = 19}, [2188] = {.lex_state = 31}, [2189] = {.lex_state = 31}, [2190] = {.lex_state = 31}, - [2191] = {.lex_state = 12}, - [2192] = {.lex_state = 18}, + [2191] = {.lex_state = 31}, + [2192] = {.lex_state = 31}, [2193] = {.lex_state = 31}, - [2194] = {.lex_state = 27}, - [2195] = {.lex_state = 19}, - [2196] = {.lex_state = 19}, - [2197] = {.lex_state = 17}, - [2198] = {.lex_state = 17}, - [2199] = {.lex_state = 8}, + [2194] = {.lex_state = 17}, + [2195] = {.lex_state = 31}, + [2196] = {.lex_state = 31}, + [2197] = {.lex_state = 31}, + [2198] = {.lex_state = 31}, + [2199] = {.lex_state = 31}, [2200] = {.lex_state = 31}, [2201] = {.lex_state = 31}, - [2202] = {.lex_state = 17}, - [2203] = {.lex_state = 17}, + [2202] = {.lex_state = 31}, + [2203] = {.lex_state = 31}, [2204] = {.lex_state = 17}, - [2205] = {.lex_state = 27}, - [2206] = {.lex_state = 17}, + [2205] = {.lex_state = 31}, + [2206] = {.lex_state = 31}, [2207] = {.lex_state = 17}, - [2208] = {.lex_state = 19}, - [2209] = {.lex_state = 17}, + [2208] = {.lex_state = 12}, + [2209] = {.lex_state = 31}, [2210] = {.lex_state = 17}, - [2211] = {.lex_state = 12}, - [2212] = {.lex_state = 8}, - [2213] = {.lex_state = 17}, - [2214] = {.lex_state = 17}, - [2215] = {.lex_state = 17}, - [2216] = {.lex_state = 17}, - [2217] = {.lex_state = 19}, - [2218] = {.lex_state = 19}, - [2219] = {.lex_state = 8}, - [2220] = {.lex_state = 12}, - [2221] = {.lex_state = 72}, - [2222] = {.lex_state = 31}, - [2223] = {.lex_state = 17}, + [2211] = {.lex_state = 31}, + [2212] = {.lex_state = 18}, + [2213] = {.lex_state = 31}, + [2214] = {.lex_state = 31}, + [2215] = {.lex_state = 31}, + [2216] = {.lex_state = 27}, + [2217] = {.lex_state = 31}, + [2218] = {.lex_state = 17}, + [2219] = {.lex_state = 17}, + [2220] = {.lex_state = 31}, + [2221] = {.lex_state = 17}, + [2222] = {.lex_state = 17}, + [2223] = {.lex_state = 31}, [2224] = {.lex_state = 17}, [2225] = {.lex_state = 17}, [2226] = {.lex_state = 17}, [2227] = {.lex_state = 17}, [2228] = {.lex_state = 17}, - [2229] = {.lex_state = 17}, - [2230] = {.lex_state = 18}, + [2229] = {.lex_state = 12}, + [2230] = {.lex_state = 17}, [2231] = {.lex_state = 17}, - [2232] = {.lex_state = 31}, - [2233] = {.lex_state = 17}, - [2234] = {.lex_state = 12}, + [2232] = {.lex_state = 17}, + [2233] = {.lex_state = 31}, + [2234] = {.lex_state = 18}, [2235] = {.lex_state = 17}, [2236] = {.lex_state = 17}, - [2237] = {.lex_state = 12}, - [2238] = {.lex_state = 31}, + [2237] = {.lex_state = 72}, + [2238] = {.lex_state = 19}, [2239] = {.lex_state = 17}, - [2240] = {.lex_state = 31}, - [2241] = {.lex_state = 31}, - [2242] = {.lex_state = 31}, - [2243] = {.lex_state = 19}, + [2240] = {.lex_state = 24}, + [2241] = {.lex_state = 27}, + [2242] = {.lex_state = 12}, + [2243] = {.lex_state = 17}, [2244] = {.lex_state = 17}, [2245] = {.lex_state = 17}, [2246] = {.lex_state = 17}, [2247] = {.lex_state = 17}, - [2248] = {.lex_state = 17}, - [2249] = {.lex_state = 17}, - [2250] = {.lex_state = 27}, + [2248] = {.lex_state = 19}, + [2249] = {.lex_state = 31}, + [2250] = {.lex_state = 17}, [2251] = {.lex_state = 17}, - [2252] = {.lex_state = 17}, - [2253] = {.lex_state = 27}, - [2254] = {.lex_state = 17}, - [2255] = {.lex_state = 17}, - [2256] = {.lex_state = 27}, - [2257] = {.lex_state = 17}, + [2252] = {.lex_state = 19}, + [2253] = {.lex_state = 17}, + [2254] = {.lex_state = 12}, + [2255] = {.lex_state = 12}, + [2256] = {.lex_state = 19}, + [2257] = {.lex_state = 31}, [2258] = {.lex_state = 17}, [2259] = {.lex_state = 17}, - [2260] = {.lex_state = 17}, - [2261] = {.lex_state = 17}, - [2262] = {.lex_state = 17}, + [2260] = {.lex_state = 31}, + [2261] = {.lex_state = 19}, + [2262] = {.lex_state = 31}, [2263] = {.lex_state = 17}, - [2264] = {.lex_state = 17}, + [2264] = {.lex_state = 31}, [2265] = {.lex_state = 17}, - [2266] = {.lex_state = 27}, - [2267] = {.lex_state = 27}, + [2266] = {.lex_state = 17}, + [2267] = {.lex_state = 17}, [2268] = {.lex_state = 27}, [2269] = {.lex_state = 17}, - [2270] = {.lex_state = 17}, + [2270] = {.lex_state = 27}, [2271] = {.lex_state = 17}, [2272] = {.lex_state = 17}, - [2273] = {.lex_state = 12}, + [2273] = {.lex_state = 17}, [2274] = {.lex_state = 17}, - [2275] = {.lex_state = 27}, - [2276] = {.lex_state = 27}, + [2275] = {.lex_state = 17}, + [2276] = {.lex_state = 17}, [2277] = {.lex_state = 17}, [2278] = {.lex_state = 17}, [2279] = {.lex_state = 17}, [2280] = {.lex_state = 17}, - [2281] = {.lex_state = 27}, - [2282] = {.lex_state = 17}, + [2281] = {.lex_state = 17}, + [2282] = {.lex_state = 27}, [2283] = {.lex_state = 17}, - [2284] = {.lex_state = 17}, + [2284] = {.lex_state = 27}, [2285] = {.lex_state = 17}, [2286] = {.lex_state = 27}, - [2287] = {.lex_state = 27}, + [2287] = {.lex_state = 17}, [2288] = {.lex_state = 17}, [2289] = {.lex_state = 17}, - [2290] = {.lex_state = 17}, - [2291] = {.lex_state = 17}, - [2292] = {.lex_state = 27}, + [2290] = {.lex_state = 27}, + [2291] = {.lex_state = 27}, + [2292] = {.lex_state = 17}, [2293] = {.lex_state = 17}, - [2294] = {.lex_state = 17}, - [2295] = {.lex_state = 24}, + [2294] = {.lex_state = 27}, + [2295] = {.lex_state = 27}, [2296] = {.lex_state = 17}, [2297] = {.lex_state = 17}, [2298] = {.lex_state = 17}, - [2299] = {.lex_state = 17}, - [2300] = {.lex_state = 12}, + [2299] = {.lex_state = 12}, + [2300] = {.lex_state = 17}, [2301] = {.lex_state = 17}, - [2302] = {.lex_state = 27}, - [2303] = {.lex_state = 72}, - [2304] = {.lex_state = 72}, - [2305] = {.lex_state = 72}, - [2306] = {.lex_state = 72}, - [2307] = {.lex_state = 72}, - [2308] = {.lex_state = 72}, - [2309] = {.lex_state = 19}, - [2310] = {.lex_state = 72}, - [2311] = {.lex_state = 72}, + [2302] = {.lex_state = 17}, + [2303] = {.lex_state = 17}, + [2304] = {.lex_state = 27}, + [2305] = {.lex_state = 17}, + [2306] = {.lex_state = 17}, + [2307] = {.lex_state = 27}, + [2308] = {.lex_state = 17}, + [2309] = {.lex_state = 27}, + [2310] = {.lex_state = 17}, + [2311] = {.lex_state = 17}, [2312] = {.lex_state = 17}, [2313] = {.lex_state = 17}, - [2314] = {.lex_state = 27}, + [2314] = {.lex_state = 17}, [2315] = {.lex_state = 17}, - [2316] = {.lex_state = 72}, - [2317] = {.lex_state = 72}, - [2318] = {.lex_state = 27}, - [2319] = {.lex_state = 72}, - [2320] = {.lex_state = 27}, - [2321] = {.lex_state = 27}, - [2322] = {.lex_state = 72}, - [2323] = {.lex_state = 72}, + [2316] = {.lex_state = 17}, + [2317] = {.lex_state = 17}, + [2318] = {.lex_state = 17}, + [2319] = {.lex_state = 17}, + [2320] = {.lex_state = 17}, + [2321] = {.lex_state = 17}, + [2322] = {.lex_state = 17}, + [2323] = {.lex_state = 17}, [2324] = {.lex_state = 72}, - [2325] = {.lex_state = 72}, - [2326] = {.lex_state = 17}, - [2327] = {.lex_state = 17}, - [2328] = {.lex_state = 27}, + [2325] = {.lex_state = 19}, + [2326] = {.lex_state = 72}, + [2327] = {.lex_state = 72}, + [2328] = {.lex_state = 72}, [2329] = {.lex_state = 72}, [2330] = {.lex_state = 72}, [2331] = {.lex_state = 72}, [2332] = {.lex_state = 72}, - [2333] = {.lex_state = 5}, - [2334] = {.lex_state = 12}, + [2333] = {.lex_state = 72}, + [2334] = {.lex_state = 31}, [2335] = {.lex_state = 5}, - [2336] = {.lex_state = 72}, + [2336] = {.lex_state = 12}, [2337] = {.lex_state = 27}, [2338] = {.lex_state = 72}, - [2339] = {.lex_state = 72}, - [2340] = {.lex_state = 72}, - [2341] = {.lex_state = 72}, + [2339] = {.lex_state = 17}, + [2340] = {.lex_state = 17}, + [2341] = {.lex_state = 12}, [2342] = {.lex_state = 72}, [2343] = {.lex_state = 72}, - [2344] = {.lex_state = 31}, + [2344] = {.lex_state = 72}, [2345] = {.lex_state = 27}, [2346] = {.lex_state = 72}, - [2347] = {.lex_state = 17}, + [2347] = {.lex_state = 72}, [2348] = {.lex_state = 72}, - [2349] = {.lex_state = 72}, - [2350] = {.lex_state = 72}, - [2351] = {.lex_state = 12}, + [2349] = {.lex_state = 27}, + [2350] = {.lex_state = 27}, + [2351] = {.lex_state = 72}, [2352] = {.lex_state = 31}, - [2353] = {.lex_state = 169}, - [2354] = {.lex_state = 17}, - [2355] = {.lex_state = 17}, - [2356] = {.lex_state = 17}, - [2357] = {.lex_state = 5}, + [2353] = {.lex_state = 72}, + [2354] = {.lex_state = 72}, + [2355] = {.lex_state = 27}, + [2356] = {.lex_state = 12}, + [2357] = {.lex_state = 72}, [2358] = {.lex_state = 17}, - [2359] = {.lex_state = 31}, - [2360] = {.lex_state = 17}, - [2361] = {.lex_state = 17}, - [2362] = {.lex_state = 17}, - [2363] = {.lex_state = 17}, - [2364] = {.lex_state = 17}, - [2365] = {.lex_state = 19}, + [2359] = {.lex_state = 17}, + [2360] = {.lex_state = 169}, + [2361] = {.lex_state = 72}, + [2362] = {.lex_state = 72}, + [2363] = {.lex_state = 72}, + [2364] = {.lex_state = 5}, + [2365] = {.lex_state = 27}, [2366] = {.lex_state = 72}, - [2367] = {.lex_state = 21}, - [2368] = {.lex_state = 17}, - [2369] = {.lex_state = 17}, - [2370] = {.lex_state = 27}, - [2371] = {.lex_state = 31}, - [2372] = {.lex_state = 31}, + [2367] = {.lex_state = 72}, + [2368] = {.lex_state = 27}, + [2369] = {.lex_state = 27}, + [2370] = {.lex_state = 5}, + [2371] = {.lex_state = 72}, + [2372] = {.lex_state = 72}, [2373] = {.lex_state = 17}, - [2374] = {.lex_state = 19}, - [2375] = {.lex_state = 17}, - [2376] = {.lex_state = 17}, + [2374] = {.lex_state = 72}, + [2375] = {.lex_state = 72}, + [2376] = {.lex_state = 72}, [2377] = {.lex_state = 17}, - [2378] = {.lex_state = 31}, + [2378] = {.lex_state = 17}, [2379] = {.lex_state = 17}, [2380] = {.lex_state = 17}, [2381] = {.lex_state = 17}, - [2382] = {.lex_state = 17}, + [2382] = {.lex_state = 21}, [2383] = {.lex_state = 31}, [2384] = {.lex_state = 17}, - [2385] = {.lex_state = 21}, + [2385] = {.lex_state = 17}, [2386] = {.lex_state = 17}, - [2387] = {.lex_state = 5}, + [2387] = {.lex_state = 17}, [2388] = {.lex_state = 17}, - [2389] = {.lex_state = 19}, + [2389] = {.lex_state = 17}, [2390] = {.lex_state = 17}, - [2391] = {.lex_state = 17}, - [2392] = {.lex_state = 17}, - [2393] = {.lex_state = 17}, - [2394] = {.lex_state = 17}, - [2395] = {.lex_state = 5}, + [2391] = {.lex_state = 31}, + [2392] = {.lex_state = 31}, + [2393] = {.lex_state = 21}, + [2394] = {.lex_state = 31}, + [2395] = {.lex_state = 17}, [2396] = {.lex_state = 17}, - [2397] = {.lex_state = 19}, - [2398] = {.lex_state = 17}, - [2399] = {.lex_state = 19}, - [2400] = {.lex_state = 17}, + [2397] = {.lex_state = 17}, + [2398] = {.lex_state = 31}, + [2399] = {.lex_state = 17}, + [2400] = {.lex_state = 21}, [2401] = {.lex_state = 19}, [2402] = {.lex_state = 17}, - [2403] = {.lex_state = 19}, - [2404] = {.lex_state = 31}, - [2405] = {.lex_state = 31}, - [2406] = {.lex_state = 21}, + [2403] = {.lex_state = 17}, + [2404] = {.lex_state = 17}, + [2405] = {.lex_state = 17}, + [2406] = {.lex_state = 17}, [2407] = {.lex_state = 17}, - [2408] = {.lex_state = 17}, - [2409] = {.lex_state = 17}, + [2408] = {.lex_state = 31}, + [2409] = {.lex_state = 21}, [2410] = {.lex_state = 17}, [2411] = {.lex_state = 17}, - [2412] = {.lex_state = 17}, - [2413] = {.lex_state = 17}, + [2412] = {.lex_state = 15}, + [2413] = {.lex_state = 72}, [2414] = {.lex_state = 17}, - [2415] = {.lex_state = 31}, - [2416] = {.lex_state = 31}, - [2417] = {.lex_state = 21}, + [2415] = {.lex_state = 17}, + [2416] = {.lex_state = 17}, + [2417] = {.lex_state = 17}, [2418] = {.lex_state = 17}, [2419] = {.lex_state = 17}, - [2420] = {.lex_state = 31}, - [2421] = {.lex_state = 5}, - [2422] = {.lex_state = 72}, + [2420] = {.lex_state = 17}, + [2421] = {.lex_state = 19}, + [2422] = {.lex_state = 19}, [2423] = {.lex_state = 17}, [2424] = {.lex_state = 17}, [2425] = {.lex_state = 17}, - [2426] = {.lex_state = 17}, + [2426] = {.lex_state = 19}, [2427] = {.lex_state = 17}, - [2428] = {.lex_state = 17}, - [2429] = {.lex_state = 31}, - [2430] = {.lex_state = 17}, - [2431] = {.lex_state = 17}, + [2428] = {.lex_state = 19}, + [2429] = {.lex_state = 19}, + [2430] = {.lex_state = 72}, + [2431] = {.lex_state = 31}, [2432] = {.lex_state = 31}, [2433] = {.lex_state = 17}, [2434] = {.lex_state = 17}, - [2435] = {.lex_state = 17}, - [2436] = {.lex_state = 17}, + [2435] = {.lex_state = 21}, + [2436] = {.lex_state = 31}, [2437] = {.lex_state = 31}, [2438] = {.lex_state = 17}, - [2439] = {.lex_state = 31}, - [2440] = {.lex_state = 17}, - [2441] = {.lex_state = 17}, - [2442] = {.lex_state = 17}, + [2439] = {.lex_state = 17}, + [2440] = {.lex_state = 19}, + [2441] = {.lex_state = 31}, + [2442] = {.lex_state = 5}, [2443] = {.lex_state = 17}, - [2444] = {.lex_state = 21}, - [2445] = {.lex_state = 15}, + [2444] = {.lex_state = 17}, + [2445] = {.lex_state = 27}, [2446] = {.lex_state = 17}, - [2447] = {.lex_state = 17}, - [2448] = {.lex_state = 21}, - [2449] = {.lex_state = 17}, + [2447] = {.lex_state = 15}, + [2448] = {.lex_state = 17}, + [2449] = {.lex_state = 5}, [2450] = {.lex_state = 17}, - [2451] = {.lex_state = 17}, + [2451] = {.lex_state = 31}, [2452] = {.lex_state = 17}, - [2453] = {.lex_state = 15}, - [2454] = {.lex_state = 17}, - [2455] = {.lex_state = 5}, - [2456] = {.lex_state = 17}, + [2453] = {.lex_state = 17}, + [2454] = {.lex_state = 21}, + [2455] = {.lex_state = 17}, + [2456] = {.lex_state = 5}, [2457] = {.lex_state = 17}, - [2458] = {.lex_state = 23}, + [2458] = {.lex_state = 17}, [2459] = {.lex_state = 17}, - [2460] = {.lex_state = 23}, - [2461] = {.lex_state = 23}, + [2460] = {.lex_state = 5}, + [2461] = {.lex_state = 31}, [2462] = {.lex_state = 17}, [2463] = {.lex_state = 17}, [2464] = {.lex_state = 17}, - [2465] = {.lex_state = 23}, - [2466] = {.lex_state = 31}, - [2467] = {.lex_state = 23}, + [2465] = {.lex_state = 17}, + [2466] = {.lex_state = 17}, + [2467] = {.lex_state = 31}, [2468] = {.lex_state = 17}, [2469] = {.lex_state = 17}, [2470] = {.lex_state = 17}, - [2471] = {.lex_state = 23}, - [2472] = {.lex_state = 23}, - [2473] = {.lex_state = 31}, - [2474] = {.lex_state = 5}, - [2475] = {.lex_state = 23}, - [2476] = {.lex_state = 23}, - [2477] = {.lex_state = 23}, + [2471] = {.lex_state = 17}, + [2472] = {.lex_state = 17}, + [2473] = {.lex_state = 17}, + [2474] = {.lex_state = 19}, + [2475] = {.lex_state = 19}, + [2476] = {.lex_state = 8}, + [2477] = {.lex_state = 5}, [2478] = {.lex_state = 23}, - [2479] = {.lex_state = 23}, - [2480] = {.lex_state = 23}, - [2481] = {.lex_state = 23}, - [2482] = {.lex_state = 17}, - [2483] = {.lex_state = 31}, + [2479] = {.lex_state = 17}, + [2480] = {.lex_state = 31}, + [2481] = {.lex_state = 31}, + [2482] = {.lex_state = 31}, + [2483] = {.lex_state = 23}, [2484] = {.lex_state = 31}, [2485] = {.lex_state = 31}, - [2486] = {.lex_state = 31}, + [2486] = {.lex_state = 23}, [2487] = {.lex_state = 31}, - [2488] = {.lex_state = 8}, - [2489] = {.lex_state = 31}, + [2488] = {.lex_state = 17}, + [2489] = {.lex_state = 8}, [2490] = {.lex_state = 31}, - [2491] = {.lex_state = 31}, - [2492] = {.lex_state = 31}, - [2493] = {.lex_state = 23}, - [2494] = {.lex_state = 23, .external_lex_state = 3}, - [2495] = {.lex_state = 8}, - [2496] = {.lex_state = 31}, - [2497] = {.lex_state = 17}, - [2498] = {.lex_state = 19}, - [2499] = {.lex_state = 31}, - [2500] = {.lex_state = 31}, - [2501] = {.lex_state = 19}, - [2502] = {.lex_state = 17}, - [2503] = {.lex_state = 19}, - [2504] = {.lex_state = 8}, - [2505] = {.lex_state = 17}, + [2491] = {.lex_state = 17}, + [2492] = {.lex_state = 23}, + [2493] = {.lex_state = 31}, + [2494] = {.lex_state = 17}, + [2495] = {.lex_state = 23}, + [2496] = {.lex_state = 23}, + [2497] = {.lex_state = 31}, + [2498] = {.lex_state = 17}, + [2499] = {.lex_state = 23}, + [2500] = {.lex_state = 17}, + [2501] = {.lex_state = 17}, + [2502] = {.lex_state = 31}, + [2503] = {.lex_state = 17}, + [2504] = {.lex_state = 31}, + [2505] = {.lex_state = 31}, [2506] = {.lex_state = 17}, - [2507] = {.lex_state = 19}, - [2508] = {.lex_state = 19}, - [2509] = {.lex_state = 19}, - [2510] = {.lex_state = 17}, - [2511] = {.lex_state = 17}, + [2507] = {.lex_state = 23}, + [2508] = {.lex_state = 17}, + [2509] = {.lex_state = 17}, + [2510] = {.lex_state = 31}, + [2511] = {.lex_state = 23}, [2512] = {.lex_state = 31}, - [2513] = {.lex_state = 23}, - [2514] = {.lex_state = 31}, - [2515] = {.lex_state = 31}, - [2516] = {.lex_state = 17}, + [2513] = {.lex_state = 17}, + [2514] = {.lex_state = 23}, + [2515] = {.lex_state = 8}, + [2516] = {.lex_state = 23}, [2517] = {.lex_state = 31}, - [2518] = {.lex_state = 5}, - [2519] = {.lex_state = 23}, + [2518] = {.lex_state = 31}, + [2519] = {.lex_state = 8}, [2520] = {.lex_state = 17}, - [2521] = {.lex_state = 31}, - [2522] = {.lex_state = 17}, - [2523] = {.lex_state = 23}, - [2524] = {.lex_state = 17}, - [2525] = {.lex_state = 23}, - [2526] = {.lex_state = 17}, - [2527] = {.lex_state = 31}, + [2521] = {.lex_state = 19}, + [2522] = {.lex_state = 31}, + [2523] = {.lex_state = 17}, + [2524] = {.lex_state = 19}, + [2525] = {.lex_state = 19}, + [2526] = {.lex_state = 72}, + [2527] = {.lex_state = 17}, [2528] = {.lex_state = 31}, - [2529] = {.lex_state = 31}, - [2530] = {.lex_state = 31}, - [2531] = {.lex_state = 23}, + [2529] = {.lex_state = 5}, + [2530] = {.lex_state = 17}, + [2531] = {.lex_state = 17}, [2532] = {.lex_state = 23}, - [2533] = {.lex_state = 8}, - [2534] = {.lex_state = 17}, + [2533] = {.lex_state = 19}, + [2534] = {.lex_state = 23}, [2535] = {.lex_state = 31}, - [2536] = {.lex_state = 23}, - [2537] = {.lex_state = 17}, - [2538] = {.lex_state = 31}, + [2536] = {.lex_state = 31}, + [2537] = {.lex_state = 31}, + [2538] = {.lex_state = 23}, [2539] = {.lex_state = 17}, - [2540] = {.lex_state = 23}, - [2541] = {.lex_state = 17}, + [2540] = {.lex_state = 31}, + [2541] = {.lex_state = 23}, [2542] = {.lex_state = 17}, - [2543] = {.lex_state = 17}, - [2544] = {.lex_state = 72}, - [2545] = {.lex_state = 23}, + [2543] = {.lex_state = 31}, + [2544] = {.lex_state = 23, .external_lex_state = 3}, + [2545] = {.lex_state = 31}, [2546] = {.lex_state = 23}, - [2547] = {.lex_state = 17}, - [2548] = {.lex_state = 23}, + [2547] = {.lex_state = 23}, + [2548] = {.lex_state = 31}, [2549] = {.lex_state = 17}, - [2550] = {.lex_state = 31}, - [2551] = {.lex_state = 31}, - [2552] = {.lex_state = 72}, - [2553] = {.lex_state = 31}, - [2554] = {.lex_state = 17}, - [2555] = {.lex_state = 31}, + [2550] = {.lex_state = 17}, + [2551] = {.lex_state = 23}, + [2552] = {.lex_state = 31}, + [2553] = {.lex_state = 23}, + [2554] = {.lex_state = 23}, + [2555] = {.lex_state = 17}, [2556] = {.lex_state = 23}, - [2557] = {.lex_state = 17}, - [2558] = {.lex_state = 31}, - [2559] = {.lex_state = 31}, + [2557] = {.lex_state = 23}, + [2558] = {.lex_state = 17}, + [2559] = {.lex_state = 23}, [2560] = {.lex_state = 23}, - [2561] = {.lex_state = 17}, + [2561] = {.lex_state = 31}, [2562] = {.lex_state = 23}, - [2563] = {.lex_state = 17}, + [2563] = {.lex_state = 23}, [2564] = {.lex_state = 23}, - [2565] = {.lex_state = 72}, - [2566] = {.lex_state = 23}, - [2567] = {.lex_state = 8}, - [2568] = {.lex_state = 8}, + [2565] = {.lex_state = 23}, + [2566] = {.lex_state = 17}, + [2567] = {.lex_state = 17}, + [2568] = {.lex_state = 72}, [2569] = {.lex_state = 17}, [2570] = {.lex_state = 23}, - [2571] = {.lex_state = 23}, - [2572] = {.lex_state = 23, .external_lex_state = 4}, - [2573] = {.lex_state = 23, .external_lex_state = 4}, - [2574] = {.lex_state = 17}, - [2575] = {.lex_state = 8}, - [2576] = {.lex_state = 72}, - [2577] = {.lex_state = 72}, - [2578] = {.lex_state = 72}, - [2579] = {.lex_state = 17}, - [2580] = {.lex_state = 72}, - [2581] = {.lex_state = 8}, + [2571] = {.lex_state = 31}, + [2572] = {.lex_state = 17}, + [2573] = {.lex_state = 17}, + [2574] = {.lex_state = 23}, + [2575] = {.lex_state = 17}, + [2576] = {.lex_state = 17}, + [2577] = {.lex_state = 17}, + [2578] = {.lex_state = 31}, + [2579] = {.lex_state = 31}, + [2580] = {.lex_state = 17}, + [2581] = {.lex_state = 31}, [2582] = {.lex_state = 17}, - [2583] = {.lex_state = 23}, - [2584] = {.lex_state = 23}, - [2585] = {.lex_state = 17}, - [2586] = {.lex_state = 33}, - [2587] = {.lex_state = 5}, - [2588] = {.lex_state = 19}, + [2583] = {.lex_state = 72}, + [2584] = {.lex_state = 8}, + [2585] = {.lex_state = 8}, + [2586] = {.lex_state = 17}, + [2587] = {.lex_state = 17}, + [2588] = {.lex_state = 23}, [2589] = {.lex_state = 17}, - [2590] = {.lex_state = 72}, + [2590] = {.lex_state = 31}, [2591] = {.lex_state = 17}, - [2592] = {.lex_state = 72}, - [2593] = {.lex_state = 72}, - [2594] = {.lex_state = 8}, + [2592] = {.lex_state = 8}, + [2593] = {.lex_state = 33}, + [2594] = {.lex_state = 72}, [2595] = {.lex_state = 17}, [2596] = {.lex_state = 17}, [2597] = {.lex_state = 17}, - [2598] = {.lex_state = 17}, + [2598] = {.lex_state = 8}, [2599] = {.lex_state = 17}, [2600] = {.lex_state = 23}, - [2601] = {.lex_state = 23}, - [2602] = {.lex_state = 23, .external_lex_state = 4}, + [2601] = {.lex_state = 72}, + [2602] = {.lex_state = 31}, [2603] = {.lex_state = 23}, - [2604] = {.lex_state = 19}, - [2605] = {.lex_state = 23}, - [2606] = {.lex_state = 72}, - [2607] = {.lex_state = 23}, - [2608] = {.lex_state = 23}, - [2609] = {.lex_state = 19}, + [2604] = {.lex_state = 72}, + [2605] = {.lex_state = 17}, + [2606] = {.lex_state = 23}, + [2607] = {.lex_state = 17}, + [2608] = {.lex_state = 72}, + [2609] = {.lex_state = 17}, [2610] = {.lex_state = 23}, - [2611] = {.lex_state = 23, .external_lex_state = 4}, - [2612] = {.lex_state = 72}, - [2613] = {.lex_state = 19}, - [2614] = {.lex_state = 8}, + [2611] = {.lex_state = 17}, + [2612] = {.lex_state = 17}, + [2613] = {.lex_state = 17}, + [2614] = {.lex_state = 17}, [2615] = {.lex_state = 8}, - [2616] = {.lex_state = 8}, - [2617] = {.lex_state = 8}, - [2618] = {.lex_state = 33}, + [2616] = {.lex_state = 23}, + [2617] = {.lex_state = 23}, + [2618] = {.lex_state = 23, .external_lex_state = 4}, [2619] = {.lex_state = 23}, - [2620] = {.lex_state = 72}, - [2621] = {.lex_state = 72}, - [2622] = {.lex_state = 17}, - [2623] = {.lex_state = 17}, - [2624] = {.lex_state = 72}, + [2620] = {.lex_state = 17}, + [2621] = {.lex_state = 23}, + [2622] = {.lex_state = 23}, + [2623] = {.lex_state = 72}, + [2624] = {.lex_state = 23}, [2625] = {.lex_state = 23}, - [2626] = {.lex_state = 8}, + [2626] = {.lex_state = 23}, [2627] = {.lex_state = 23}, - [2628] = {.lex_state = 72}, - [2629] = {.lex_state = 23}, - [2630] = {.lex_state = 8}, - [2631] = {.lex_state = 31}, - [2632] = {.lex_state = 72}, - [2633] = {.lex_state = 23, .external_lex_state = 4}, - [2634] = {.lex_state = 23}, - [2635] = {.lex_state = 23, .external_lex_state = 4}, - [2636] = {.lex_state = 8}, - [2637] = {.lex_state = 72}, - [2638] = {.lex_state = 23, .external_lex_state = 4}, + [2628] = {.lex_state = 23, .external_lex_state = 4}, + [2629] = {.lex_state = 72}, + [2630] = {.lex_state = 72}, + [2631] = {.lex_state = 8}, + [2632] = {.lex_state = 8}, + [2633] = {.lex_state = 8}, + [2634] = {.lex_state = 8}, + [2635] = {.lex_state = 23}, + [2636] = {.lex_state = 17}, + [2637] = {.lex_state = 23}, + [2638] = {.lex_state = 72}, [2639] = {.lex_state = 72}, - [2640] = {.lex_state = 17}, + [2640] = {.lex_state = 23}, [2641] = {.lex_state = 8}, - [2642] = {.lex_state = 8}, - [2643] = {.lex_state = 8}, - [2644] = {.lex_state = 8}, - [2645] = {.lex_state = 8}, - [2646] = {.lex_state = 31}, - [2647] = {.lex_state = 17}, - [2648] = {.lex_state = 17}, + [2642] = {.lex_state = 72}, + [2643] = {.lex_state = 17}, + [2644] = {.lex_state = 72}, + [2645] = {.lex_state = 17}, + [2646] = {.lex_state = 19}, + [2647] = {.lex_state = 33}, + [2648] = {.lex_state = 23}, [2649] = {.lex_state = 72}, - [2650] = {.lex_state = 23, .external_lex_state = 4}, - [2651] = {.lex_state = 17}, - [2652] = {.lex_state = 23, .external_lex_state = 4}, - [2653] = {.lex_state = 8}, - [2654] = {.lex_state = 8}, - [2655] = {.lex_state = 8}, + [2650] = {.lex_state = 23}, + [2651] = {.lex_state = 18}, + [2652] = {.lex_state = 8}, + [2653] = {.lex_state = 23, .external_lex_state = 4}, + [2654] = {.lex_state = 23}, + [2655] = {.lex_state = 72}, [2656] = {.lex_state = 72}, - [2657] = {.lex_state = 31}, - [2658] = {.lex_state = 8}, - [2659] = {.lex_state = 8}, - [2660] = {.lex_state = 17}, - [2661] = {.lex_state = 17}, - [2662] = {.lex_state = 33}, - [2663] = {.lex_state = 17}, - [2664] = {.lex_state = 72}, - [2665] = {.lex_state = 8}, - [2666] = {.lex_state = 17}, - [2667] = {.lex_state = 72}, - [2668] = {.lex_state = 8}, + [2657] = {.lex_state = 23, .external_lex_state = 4}, + [2658] = {.lex_state = 72}, + [2659] = {.lex_state = 19}, + [2660] = {.lex_state = 8}, + [2661] = {.lex_state = 8}, + [2662] = {.lex_state = 8}, + [2663] = {.lex_state = 8}, + [2664] = {.lex_state = 17}, + [2665] = {.lex_state = 17}, + [2666] = {.lex_state = 8}, + [2667] = {.lex_state = 23}, + [2668] = {.lex_state = 17}, [2669] = {.lex_state = 8}, - [2670] = {.lex_state = 18}, - [2671] = {.lex_state = 31}, - [2672] = {.lex_state = 8}, - [2673] = {.lex_state = 17}, - [2674] = {.lex_state = 8}, - [2675] = {.lex_state = 8}, - [2676] = {.lex_state = 23}, + [2670] = {.lex_state = 72}, + [2671] = {.lex_state = 23}, + [2672] = {.lex_state = 23}, + [2673] = {.lex_state = 72}, + [2674] = {.lex_state = 23, .external_lex_state = 4}, + [2675] = {.lex_state = 17}, + [2676] = {.lex_state = 23, .external_lex_state = 4}, [2677] = {.lex_state = 17}, - [2678] = {.lex_state = 23}, - [2679] = {.lex_state = 72}, - [2680] = {.lex_state = 17}, - [2681] = {.lex_state = 31}, - [2682] = {.lex_state = 23}, - [2683] = {.lex_state = 5}, - [2684] = {.lex_state = 17}, - [2685] = {.lex_state = 17}, - [2686] = {.lex_state = 31}, - [2687] = {.lex_state = 23}, - [2688] = {.lex_state = 72}, - [2689] = {.lex_state = 8}, - [2690] = {.lex_state = 17}, - [2691] = {.lex_state = 17}, - [2692] = {.lex_state = 23}, - [2693] = {.lex_state = 17}, - [2694] = {.lex_state = 17}, + [2678] = {.lex_state = 8}, + [2679] = {.lex_state = 8}, + [2680] = {.lex_state = 31}, + [2681] = {.lex_state = 17}, + [2682] = {.lex_state = 17}, + [2683] = {.lex_state = 17}, + [2684] = {.lex_state = 31}, + [2685] = {.lex_state = 23}, + [2686] = {.lex_state = 23}, + [2687] = {.lex_state = 19}, + [2688] = {.lex_state = 23, .external_lex_state = 4}, + [2689] = {.lex_state = 19}, + [2690] = {.lex_state = 8}, + [2691] = {.lex_state = 8}, + [2692] = {.lex_state = 19}, + [2693] = {.lex_state = 19}, + [2694] = {.lex_state = 8}, [2695] = {.lex_state = 17}, - [2696] = {.lex_state = 23}, - [2697] = {.lex_state = 72}, - [2698] = {.lex_state = 23}, - [2699] = {.lex_state = 23}, - [2700] = {.lex_state = 17}, - [2701] = {.lex_state = 17}, - [2702] = {.lex_state = 17}, + [2696] = {.lex_state = 17}, + [2697] = {.lex_state = 8}, + [2698] = {.lex_state = 5}, + [2699] = {.lex_state = 8}, + [2700] = {.lex_state = 19}, + [2701] = {.lex_state = 19}, + [2702] = {.lex_state = 19}, [2703] = {.lex_state = 23}, - [2704] = {.lex_state = 17}, - [2705] = {.lex_state = 17}, - [2706] = {.lex_state = 72}, - [2707] = {.lex_state = 17}, + [2704] = {.lex_state = 5}, + [2705] = {.lex_state = 23}, + [2706] = {.lex_state = 19}, + [2707] = {.lex_state = 19}, [2708] = {.lex_state = 8}, - [2709] = {.lex_state = 8}, - [2710] = {.lex_state = 17}, + [2709] = {.lex_state = 72}, + [2710] = {.lex_state = 33}, [2711] = {.lex_state = 17}, - [2712] = {.lex_state = 31}, - [2713] = {.lex_state = 72}, - [2714] = {.lex_state = 72}, - [2715] = {.lex_state = 5}, - [2716] = {.lex_state = 19}, - [2717] = {.lex_state = 8}, - [2718] = {.lex_state = 8}, - [2719] = {.lex_state = 31}, - [2720] = {.lex_state = 23}, - [2721] = {.lex_state = 23}, - [2722] = {.lex_state = 23, .external_lex_state = 4}, - [2723] = {.lex_state = 72}, - [2724] = {.lex_state = 72}, + [2712] = {.lex_state = 17}, + [2713] = {.lex_state = 17}, + [2714] = {.lex_state = 17}, + [2715] = {.lex_state = 8}, + [2716] = {.lex_state = 31}, + [2717] = {.lex_state = 17}, + [2718] = {.lex_state = 17}, + [2719] = {.lex_state = 17}, + [2720] = {.lex_state = 72}, + [2721] = {.lex_state = 5}, + [2722] = {.lex_state = 31}, + [2723] = {.lex_state = 8}, + [2724] = {.lex_state = 19}, [2725] = {.lex_state = 72}, - [2726] = {.lex_state = 19}, - [2727] = {.lex_state = 19}, - [2728] = {.lex_state = 23}, - [2729] = {.lex_state = 17}, - [2730] = {.lex_state = 72}, - [2731] = {.lex_state = 17}, - [2732] = {.lex_state = 19}, - [2733] = {.lex_state = 19}, + [2726] = {.lex_state = 72}, + [2727] = {.lex_state = 8}, + [2728] = {.lex_state = 72}, + [2729] = {.lex_state = 72}, + [2730] = {.lex_state = 31}, + [2731] = {.lex_state = 18}, + [2732] = {.lex_state = 23}, + [2733] = {.lex_state = 72}, [2734] = {.lex_state = 72}, - [2735] = {.lex_state = 72}, - [2736] = {.lex_state = 23}, - [2737] = {.lex_state = 23}, - [2738] = {.lex_state = 23, .external_lex_state = 4}, - [2739] = {.lex_state = 23}, + [2735] = {.lex_state = 23}, + [2736] = {.lex_state = 17}, + [2737] = {.lex_state = 72}, + [2738] = {.lex_state = 23}, + [2739] = {.lex_state = 17}, [2740] = {.lex_state = 23}, - [2741] = {.lex_state = 23}, - [2742] = {.lex_state = 23}, - [2743] = {.lex_state = 23}, - [2744] = {.lex_state = 17}, + [2741] = {.lex_state = 72}, + [2742] = {.lex_state = 72}, + [2743] = {.lex_state = 17}, + [2744] = {.lex_state = 23}, [2745] = {.lex_state = 23}, [2746] = {.lex_state = 17}, - [2747] = {.lex_state = 17}, - [2748] = {.lex_state = 23}, + [2747] = {.lex_state = 8}, + [2748] = {.lex_state = 17}, [2749] = {.lex_state = 17}, - [2750] = {.lex_state = 72}, - [2751] = {.lex_state = 23}, + [2750] = {.lex_state = 23}, + [2751] = {.lex_state = 72}, [2752] = {.lex_state = 17}, - [2753] = {.lex_state = 17}, - [2754] = {.lex_state = 72}, - [2755] = {.lex_state = 23}, - [2756] = {.lex_state = 23}, + [2753] = {.lex_state = 23}, + [2754] = {.lex_state = 17}, + [2755] = {.lex_state = 17}, + [2756] = {.lex_state = 72}, [2757] = {.lex_state = 17}, - [2758] = {.lex_state = 18}, - [2759] = {.lex_state = 23}, + [2758] = {.lex_state = 17}, + [2759] = {.lex_state = 72}, [2760] = {.lex_state = 23}, [2761] = {.lex_state = 23}, - [2762] = {.lex_state = 31}, + [2762] = {.lex_state = 23}, [2763] = {.lex_state = 23}, [2764] = {.lex_state = 23}, - [2765] = {.lex_state = 31}, - [2766] = {.lex_state = 19}, - [2767] = {.lex_state = 17}, - [2768] = {.lex_state = 17}, - [2769] = {.lex_state = 5}, - [2770] = {.lex_state = 72}, + [2765] = {.lex_state = 17}, + [2766] = {.lex_state = 23}, + [2767] = {.lex_state = 23}, + [2768] = {.lex_state = 23, .external_lex_state = 4}, + [2769] = {.lex_state = 23, .external_lex_state = 4}, + [2770] = {.lex_state = 23, .external_lex_state = 4}, [2771] = {.lex_state = 17}, - [2772] = {.lex_state = 17}, - [2773] = {.lex_state = 17}, - [2774] = {.lex_state = 8}, - [2775] = {.lex_state = 72}, - [2776] = {.lex_state = 18}, - [2777] = {.lex_state = 17}, - [2778] = {.lex_state = 23}, + [2772] = {.lex_state = 23}, + [2773] = {.lex_state = 23}, + [2774] = {.lex_state = 23}, + [2775] = {.lex_state = 23}, + [2776] = {.lex_state = 17}, + [2777] = {.lex_state = 72}, + [2778] = {.lex_state = 72}, [2779] = {.lex_state = 23}, - [2780] = {.lex_state = 23}, + [2780] = {.lex_state = 72}, [2781] = {.lex_state = 23}, - [2782] = {.lex_state = 23}, - [2783] = {.lex_state = 5}, - [2784] = {.lex_state = 72}, - [2785] = {.lex_state = 8}, - [2786] = {.lex_state = 17}, - [2787] = {.lex_state = 72}, - [2788] = {.lex_state = 23}, - [2789] = {.lex_state = 19}, - [2790] = {.lex_state = 72}, - [2791] = {.lex_state = 19}, - [2792] = {.lex_state = 23}, + [2782] = {.lex_state = 8}, + [2783] = {.lex_state = 23, .external_lex_state = 4}, + [2784] = {.lex_state = 18}, + [2785] = {.lex_state = 31}, + [2786] = {.lex_state = 33}, + [2787] = {.lex_state = 5}, + [2788] = {.lex_state = 31}, + [2789] = {.lex_state = 72}, + [2790] = {.lex_state = 31}, + [2791] = {.lex_state = 17}, + [2792] = {.lex_state = 17}, [2793] = {.lex_state = 17}, - [2794] = {.lex_state = 23, .external_lex_state = 4}, - [2795] = {.lex_state = 72}, - [2796] = {.lex_state = 33}, + [2794] = {.lex_state = 23}, + [2795] = {.lex_state = 17}, + [2796] = {.lex_state = 8}, [2797] = {.lex_state = 8}, - [2798] = {.lex_state = 8}, - [2799] = {.lex_state = 23}, - [2800] = {.lex_state = 8}, - [2801] = {.lex_state = 17}, - [2802] = {.lex_state = 31}, + [2798] = {.lex_state = 17}, + [2799] = {.lex_state = 17}, + [2800] = {.lex_state = 72}, + [2801] = {.lex_state = 23}, + [2802] = {.lex_state = 5}, [2803] = {.lex_state = 72}, - [2804] = {.lex_state = 23, .external_lex_state = 4}, - [2805] = {.lex_state = 72}, - [2806] = {.lex_state = 8}, - [2807] = {.lex_state = 8}, - [2808] = {.lex_state = 8}, - [2809] = {.lex_state = 8}, - [2810] = {.lex_state = 17}, - [2811] = {.lex_state = 17}, - [2812] = {.lex_state = 8}, - [2813] = {.lex_state = 8}, - [2814] = {.lex_state = 72}, + [2804] = {.lex_state = 23}, + [2805] = {.lex_state = 17}, + [2806] = {.lex_state = 23}, + [2807] = {.lex_state = 23}, + [2808] = {.lex_state = 72}, + [2809] = {.lex_state = 23}, + [2810] = {.lex_state = 72}, + [2811] = {.lex_state = 72}, + [2812] = {.lex_state = 17}, + [2813] = {.lex_state = 23}, + [2814] = {.lex_state = 8}, [2815] = {.lex_state = 8}, [2816] = {.lex_state = 72}, - [2817] = {.lex_state = 72}, - [2818] = {.lex_state = 8}, + [2817] = {.lex_state = 8}, + [2818] = {.lex_state = 23, .external_lex_state = 4}, [2819] = {.lex_state = 8}, - [2820] = {.lex_state = 23}, - [2821] = {.lex_state = 23}, - [2822] = {.lex_state = 23}, - [2823] = {.lex_state = 72}, - [2824] = {.lex_state = 72}, - [2825] = {.lex_state = 72}, - [2826] = {.lex_state = 72}, - [2827] = {.lex_state = 72}, - [2828] = {.lex_state = 72}, - [2829] = {.lex_state = 72}, + [2820] = {.lex_state = 23, .external_lex_state = 4}, + [2821] = {.lex_state = 72}, + [2822] = {.lex_state = 72}, + [2823] = {.lex_state = 31}, + [2824] = {.lex_state = 8}, + [2825] = {.lex_state = 23}, + [2826] = {.lex_state = 8}, + [2827] = {.lex_state = 8}, + [2828] = {.lex_state = 8}, + [2829] = {.lex_state = 17}, [2830] = {.lex_state = 72}, - [2831] = {.lex_state = 72}, - [2832] = {.lex_state = 72}, - [2833] = {.lex_state = 72}, - [2834] = {.lex_state = 72}, - [2835] = {.lex_state = 72}, - [2836] = {.lex_state = 8}, - [2837] = {.lex_state = 72}, - [2838] = {.lex_state = 72}, - [2839] = {.lex_state = 72}, - [2840] = {.lex_state = 72}, + [2831] = {.lex_state = 23}, + [2832] = {.lex_state = 8}, + [2833] = {.lex_state = 8}, + [2834] = {.lex_state = 8}, + [2835] = {.lex_state = 8}, + [2836] = {.lex_state = 72}, + [2837] = {.lex_state = 8}, + [2838] = {.lex_state = 8}, + [2839] = {.lex_state = 8}, + [2840] = {.lex_state = 17}, [2841] = {.lex_state = 72}, [2842] = {.lex_state = 72}, - [2843] = {.lex_state = 72}, + [2843] = {.lex_state = 17}, [2844] = {.lex_state = 72}, [2845] = {.lex_state = 72}, [2846] = {.lex_state = 72}, [2847] = {.lex_state = 72}, [2848] = {.lex_state = 72}, [2849] = {.lex_state = 72}, - [2850] = {.lex_state = 72}, - [2851] = {.lex_state = 21}, - [2852] = {.lex_state = 72}, - [2853] = {.lex_state = 72}, - [2854] = {.lex_state = 72}, - [2855] = {.lex_state = 72}, - [2856] = {.lex_state = 72}, + [2850] = {.lex_state = 19}, + [2851] = {.lex_state = 19}, + [2852] = {.lex_state = 19}, + [2853] = {.lex_state = 19}, + [2854] = {.lex_state = 19}, + [2855] = {.lex_state = 19}, + [2856] = {.lex_state = 19}, [2857] = {.lex_state = 72}, [2858] = {.lex_state = 72}, - [2859] = {.lex_state = 17}, + [2859] = {.lex_state = 19}, [2860] = {.lex_state = 72}, - [2861] = {.lex_state = 17}, - [2862] = {.lex_state = 72}, - [2863] = {.lex_state = 21}, + [2861] = {.lex_state = 72}, + [2862] = {.lex_state = 17}, + [2863] = {.lex_state = 72}, [2864] = {.lex_state = 72}, [2865] = {.lex_state = 72}, [2866] = {.lex_state = 72}, [2867] = {.lex_state = 72}, - [2868] = {.lex_state = 17}, + [2868] = {.lex_state = 72}, [2869] = {.lex_state = 72}, [2870] = {.lex_state = 72}, - [2871] = {.lex_state = 72}, - [2872] = {.lex_state = 72}, + [2871] = {.lex_state = 8}, + [2872] = {.lex_state = 17}, [2873] = {.lex_state = 72}, [2874] = {.lex_state = 72}, [2875] = {.lex_state = 72}, - [2876] = {.lex_state = 17}, + [2876] = {.lex_state = 72}, [2877] = {.lex_state = 72}, [2878] = {.lex_state = 72}, [2879] = {.lex_state = 72}, [2880] = {.lex_state = 72}, - [2881] = {.lex_state = 21}, - [2882] = {.lex_state = 21}, - [2883] = {.lex_state = 72}, + [2881] = {.lex_state = 72}, + [2882] = {.lex_state = 72}, + [2883] = {.lex_state = 17}, [2884] = {.lex_state = 72}, - [2885] = {.lex_state = 72}, + [2885] = {.lex_state = 17}, [2886] = {.lex_state = 72}, - [2887] = {.lex_state = 72}, + [2887] = {.lex_state = 17}, [2888] = {.lex_state = 72}, [2889] = {.lex_state = 72}, [2890] = {.lex_state = 72}, - [2891] = {.lex_state = 72}, + [2891] = {.lex_state = 17}, [2892] = {.lex_state = 72}, - [2893] = {.lex_state = 72}, + [2893] = {.lex_state = 8}, [2894] = {.lex_state = 72}, [2895] = {.lex_state = 72}, [2896] = {.lex_state = 72}, - [2897] = {.lex_state = 19}, - [2898] = {.lex_state = 19}, - [2899] = {.lex_state = 17}, + [2897] = {.lex_state = 72}, + [2898] = {.lex_state = 72}, + [2899] = {.lex_state = 72}, [2900] = {.lex_state = 72}, [2901] = {.lex_state = 72}, [2902] = {.lex_state = 72}, - [2903] = {.lex_state = 17}, + [2903] = {.lex_state = 19}, [2904] = {.lex_state = 72}, - [2905] = {.lex_state = 19}, + [2905] = {.lex_state = 72}, [2906] = {.lex_state = 72}, - [2907] = {.lex_state = 19}, + [2907] = {.lex_state = 72}, [2908] = {.lex_state = 72}, [2909] = {.lex_state = 72}, [2910] = {.lex_state = 72}, [2911] = {.lex_state = 72}, - [2912] = {.lex_state = 19}, - [2913] = {.lex_state = 19}, + [2912] = {.lex_state = 72}, + [2913] = {.lex_state = 72}, [2914] = {.lex_state = 72}, - [2915] = {.lex_state = 19}, + [2915] = {.lex_state = 72}, [2916] = {.lex_state = 72}, - [2917] = {.lex_state = 17}, - [2918] = {.lex_state = 19}, - [2919] = {.lex_state = 19}, - [2920] = {.lex_state = 19}, + [2917] = {.lex_state = 72}, + [2918] = {.lex_state = 72}, + [2919] = {.lex_state = 72}, + [2920] = {.lex_state = 17}, [2921] = {.lex_state = 72}, [2922] = {.lex_state = 72}, - [2923] = {.lex_state = 19}, - [2924] = {.lex_state = 17}, + [2923] = {.lex_state = 8}, + [2924] = {.lex_state = 23}, [2925] = {.lex_state = 72}, - [2926] = {.lex_state = 19}, + [2926] = {.lex_state = 72}, [2927] = {.lex_state = 72}, - [2928] = {.lex_state = 72}, + [2928] = {.lex_state = 17}, [2929] = {.lex_state = 72}, - [2930] = {.lex_state = 31}, + [2930] = {.lex_state = 72}, [2931] = {.lex_state = 72}, [2932] = {.lex_state = 72}, [2933] = {.lex_state = 72}, [2934] = {.lex_state = 72}, [2935] = {.lex_state = 72}, [2936] = {.lex_state = 72}, - [2937] = {.lex_state = 72}, + [2937] = {.lex_state = 17}, [2938] = {.lex_state = 72}, [2939] = {.lex_state = 72}, [2940] = {.lex_state = 72}, @@ -13293,32 +13354,32 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2942] = {.lex_state = 72}, [2943] = {.lex_state = 72}, [2944] = {.lex_state = 72}, - [2945] = {.lex_state = 17}, + [2945] = {.lex_state = 72}, [2946] = {.lex_state = 72}, - [2947] = {.lex_state = 72}, - [2948] = {.lex_state = 72}, + [2947] = {.lex_state = 19}, + [2948] = {.lex_state = 31}, [2949] = {.lex_state = 72}, [2950] = {.lex_state = 72}, [2951] = {.lex_state = 72}, [2952] = {.lex_state = 72}, - [2953] = {.lex_state = 19}, - [2954] = {.lex_state = 17}, + [2953] = {.lex_state = 72}, + [2954] = {.lex_state = 72}, [2955] = {.lex_state = 72}, [2956] = {.lex_state = 72}, - [2957] = {.lex_state = 17}, - [2958] = {.lex_state = 72}, + [2957] = {.lex_state = 72}, + [2958] = {.lex_state = 17}, [2959] = {.lex_state = 72}, - [2960] = {.lex_state = 72}, - [2961] = {.lex_state = 17}, - [2962] = {.lex_state = 72}, - [2963] = {.lex_state = 72}, - [2964] = {.lex_state = 72}, - [2965] = {.lex_state = 72}, + [2960] = {.lex_state = 19}, + [2961] = {.lex_state = 19}, + [2962] = {.lex_state = 19}, + [2963] = {.lex_state = 19}, + [2964] = {.lex_state = 19}, + [2965] = {.lex_state = 19}, [2966] = {.lex_state = 72}, [2967] = {.lex_state = 72}, [2968] = {.lex_state = 72}, - [2969] = {.lex_state = 17}, - [2970] = {.lex_state = 8}, + [2969] = {.lex_state = 72}, + [2970] = {.lex_state = 72}, [2971] = {.lex_state = 72}, [2972] = {.lex_state = 72}, [2973] = {.lex_state = 72}, @@ -13328,237 +13389,237 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2977] = {.lex_state = 72}, [2978] = {.lex_state = 72}, [2979] = {.lex_state = 72}, - [2980] = {.lex_state = 8}, - [2981] = {.lex_state = 19}, - [2982] = {.lex_state = 19}, + [2980] = {.lex_state = 72}, + [2981] = {.lex_state = 72}, + [2982] = {.lex_state = 72}, [2983] = {.lex_state = 72}, - [2984] = {.lex_state = 19}, - [2985] = {.lex_state = 19}, + [2984] = {.lex_state = 72}, + [2985] = {.lex_state = 72}, [2986] = {.lex_state = 72}, - [2987] = {.lex_state = 8}, - [2988] = {.lex_state = 8}, - [2989] = {.lex_state = 23}, + [2987] = {.lex_state = 72}, + [2988] = {.lex_state = 72}, + [2989] = {.lex_state = 72}, [2990] = {.lex_state = 72}, - [2991] = {.lex_state = 17}, - [2992] = {.lex_state = 72}, + [2991] = {.lex_state = 72}, + [2992] = {.lex_state = 17}, [2993] = {.lex_state = 72}, - [2994] = {.lex_state = 72}, - [2995] = {.lex_state = 72}, - [2996] = {.lex_state = 72}, + [2994] = {.lex_state = 17}, + [2995] = {.lex_state = 17}, + [2996] = {.lex_state = 19}, [2997] = {.lex_state = 72}, - [2998] = {.lex_state = 19}, + [2998] = {.lex_state = 23, .external_lex_state = 4}, [2999] = {.lex_state = 72}, - [3000] = {.lex_state = 19}, + [3000] = {.lex_state = 72}, [3001] = {.lex_state = 72}, - [3002] = {.lex_state = 19}, - [3003] = {.lex_state = 72}, - [3004] = {.lex_state = 72}, + [3002] = {.lex_state = 72}, + [3003] = {.lex_state = 19}, + [3004] = {.lex_state = 19}, [3005] = {.lex_state = 72}, - [3006] = {.lex_state = 72}, - [3007] = {.lex_state = 72}, + [3006] = {.lex_state = 17}, + [3007] = {.lex_state = 8}, [3008] = {.lex_state = 72}, - [3009] = {.lex_state = 19}, + [3009] = {.lex_state = 17}, [3010] = {.lex_state = 72}, - [3011] = {.lex_state = 17}, + [3011] = {.lex_state = 72}, [3012] = {.lex_state = 72}, - [3013] = {.lex_state = 72}, - [3014] = {.lex_state = 19}, + [3013] = {.lex_state = 19}, + [3014] = {.lex_state = 72}, [3015] = {.lex_state = 72}, - [3016] = {.lex_state = 17}, - [3017] = {.lex_state = 19}, - [3018] = {.lex_state = 19}, - [3019] = {.lex_state = 19}, - [3020] = {.lex_state = 8}, - [3021] = {.lex_state = 19}, - [3022] = {.lex_state = 8}, + [3016] = {.lex_state = 19}, + [3017] = {.lex_state = 8}, + [3018] = {.lex_state = 72}, + [3019] = {.lex_state = 72}, + [3020] = {.lex_state = 19}, + [3021] = {.lex_state = 72}, + [3022] = {.lex_state = 72}, [3023] = {.lex_state = 19}, - [3024] = {.lex_state = 19}, + [3024] = {.lex_state = 72}, [3025] = {.lex_state = 19}, - [3026] = {.lex_state = 72}, - [3027] = {.lex_state = 72}, - [3028] = {.lex_state = 72}, + [3026] = {.lex_state = 19}, + [3027] = {.lex_state = 19}, + [3028] = {.lex_state = 19}, [3029] = {.lex_state = 72}, - [3030] = {.lex_state = 72}, - [3031] = {.lex_state = 17}, - [3032] = {.lex_state = 17}, - [3033] = {.lex_state = 17}, + [3030] = {.lex_state = 19}, + [3031] = {.lex_state = 72}, + [3032] = {.lex_state = 72}, + [3033] = {.lex_state = 72}, [3034] = {.lex_state = 72}, - [3035] = {.lex_state = 19}, + [3035] = {.lex_state = 72}, [3036] = {.lex_state = 72}, - [3037] = {.lex_state = 72}, + [3037] = {.lex_state = 19}, [3038] = {.lex_state = 72}, [3039] = {.lex_state = 72}, - [3040] = {.lex_state = 72}, - [3041] = {.lex_state = 72}, - [3042] = {.lex_state = 17}, + [3040] = {.lex_state = 17}, + [3041] = {.lex_state = 19}, + [3042] = {.lex_state = 72}, [3043] = {.lex_state = 72}, - [3044] = {.lex_state = 72}, + [3044] = {.lex_state = 19}, [3045] = {.lex_state = 72}, [3046] = {.lex_state = 72}, [3047] = {.lex_state = 72}, [3048] = {.lex_state = 72}, - [3049] = {.lex_state = 17}, + [3049] = {.lex_state = 8}, [3050] = {.lex_state = 72}, [3051] = {.lex_state = 72}, - [3052] = {.lex_state = 23, .external_lex_state = 4}, - [3053] = {.lex_state = 21}, + [3052] = {.lex_state = 72}, + [3053] = {.lex_state = 72}, [3054] = {.lex_state = 72}, - [3055] = {.lex_state = 17}, - [3056] = {.lex_state = 72}, + [3055] = {.lex_state = 72}, + [3056] = {.lex_state = 19}, [3057] = {.lex_state = 72}, - [3058] = {.lex_state = 72}, - [3059] = {.lex_state = 8}, + [3058] = {.lex_state = 21}, + [3059] = {.lex_state = 72}, [3060] = {.lex_state = 72}, [3061] = {.lex_state = 72}, - [3062] = {.lex_state = 72}, + [3062] = {.lex_state = 17}, [3063] = {.lex_state = 72}, [3064] = {.lex_state = 72}, - [3065] = {.lex_state = 72}, + [3065] = {.lex_state = 19}, [3066] = {.lex_state = 72}, [3067] = {.lex_state = 17}, - [3068] = {.lex_state = 72}, + [3068] = {.lex_state = 17}, [3069] = {.lex_state = 72}, - [3070] = {.lex_state = 31}, - [3071] = {.lex_state = 72}, + [3070] = {.lex_state = 17}, + [3071] = {.lex_state = 21}, [3072] = {.lex_state = 72}, - [3073] = {.lex_state = 72}, + [3073] = {.lex_state = 21}, [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}, + [3080] = {.lex_state = 21}, [3081] = {.lex_state = 72}, - [3082] = {.lex_state = 23}, + [3082] = {.lex_state = 72}, [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 = 23}, - [3091] = {.lex_state = 19}, - [3092] = {.lex_state = 19}, + [3089] = {.lex_state = 23}, + [3090] = {.lex_state = 8}, + [3091] = {.lex_state = 72}, + [3092] = {.lex_state = 17}, [3093] = {.lex_state = 72}, - [3094] = {.lex_state = 17}, - [3095] = {.lex_state = 19}, + [3094] = {.lex_state = 72}, + [3095] = {.lex_state = 72}, [3096] = {.lex_state = 72}, - [3097] = {.lex_state = 19}, + [3097] = {.lex_state = 72}, [3098] = {.lex_state = 72}, - [3099] = {.lex_state = 19}, - [3100] = {.lex_state = 72}, + [3099] = {.lex_state = 72}, + [3100] = {.lex_state = 31}, [3101] = {.lex_state = 72}, - [3102] = {.lex_state = 19}, - [3103] = {.lex_state = 72}, - [3104] = {.lex_state = 17}, + [3102] = {.lex_state = 72}, + [3103] = {.lex_state = 23}, + [3104] = {.lex_state = 72}, [3105] = {.lex_state = 72}, [3106] = {.lex_state = 72}, [3107] = {.lex_state = 72}, - [3108] = {.lex_state = 19}, - [3109] = {.lex_state = 72}, + [3108] = {.lex_state = 72}, + [3109] = {.lex_state = 17}, [3110] = {.lex_state = 72}, [3111] = {.lex_state = 72}, - [3112] = {.lex_state = 72}, - [3113] = {.lex_state = 8}, - [3114] = {.lex_state = 8}, + [3112] = {.lex_state = 23}, + [3113] = {.lex_state = 72}, + [3114] = {.lex_state = 72}, [3115] = {.lex_state = 72}, - [3116] = {.lex_state = 23}, - [3117] = {.lex_state = 8}, - [3118] = {.lex_state = 72}, - [3119] = {.lex_state = 72}, + [3116] = {.lex_state = 72}, + [3117] = {.lex_state = 72}, + [3118] = {.lex_state = 17}, + [3119] = {.lex_state = 17}, [3120] = {.lex_state = 72}, - [3121] = {.lex_state = 8}, + [3121] = {.lex_state = 72}, [3122] = {.lex_state = 72}, - [3123] = {.lex_state = 8}, - [3124] = {.lex_state = 17}, - [3125] = {.lex_state = 8}, + [3123] = {.lex_state = 72}, + [3124] = {.lex_state = 72}, + [3125] = {.lex_state = 72}, [3126] = {.lex_state = 72}, - [3127] = {.lex_state = 17}, - [3128] = {.lex_state = 17}, + [3127] = {.lex_state = 72}, + [3128] = {.lex_state = 72}, [3129] = {.lex_state = 72}, [3130] = {.lex_state = 72}, [3131] = {.lex_state = 72}, [3132] = {.lex_state = 72}, - [3133] = {.lex_state = 17}, - [3134] = {.lex_state = 17}, - [3135] = {.lex_state = 31}, - [3136] = {.lex_state = 72}, + [3133] = {.lex_state = 8}, + [3134] = {.lex_state = 72}, + [3135] = {.lex_state = 19}, + [3136] = {.lex_state = 19}, [3137] = {.lex_state = 72}, [3138] = {.lex_state = 72}, - [3139] = {.lex_state = 17}, - [3140] = {.lex_state = 17}, - [3141] = {.lex_state = 17}, - [3142] = {.lex_state = 17}, - [3143] = {.lex_state = 72}, - [3144] = {.lex_state = 23}, - [3145] = {.lex_state = 17}, - [3146] = {.lex_state = 17}, - [3147] = {.lex_state = 72}, - [3148] = {.lex_state = 17}, - [3149] = {.lex_state = 17}, + [3139] = {.lex_state = 8}, + [3140] = {.lex_state = 72}, + [3141] = {.lex_state = 72}, + [3142] = {.lex_state = 8}, + [3143] = {.lex_state = 17}, + [3144] = {.lex_state = 21}, + [3145] = {.lex_state = 8}, + [3146] = {.lex_state = 72}, + [3147] = {.lex_state = 8}, + [3148] = {.lex_state = 72}, + [3149] = {.lex_state = 72}, [3150] = {.lex_state = 17}, [3151] = {.lex_state = 72}, - [3152] = {.lex_state = 17}, - [3153] = {.lex_state = 72}, - [3154] = {.lex_state = 72}, + [3152] = {.lex_state = 8}, + [3153] = {.lex_state = 17}, + [3154] = {.lex_state = 19}, [3155] = {.lex_state = 72}, - [3156] = {.lex_state = 72}, - [3157] = {.lex_state = 72}, - [3158] = {.lex_state = 31}, - [3159] = {.lex_state = 72}, + [3156] = {.lex_state = 17}, + [3157] = {.lex_state = 17}, + [3158] = {.lex_state = 19}, + [3159] = {.lex_state = 8}, [3160] = {.lex_state = 72}, [3161] = {.lex_state = 72}, - [3162] = {.lex_state = 31}, - [3163] = {.lex_state = 72}, - [3164] = {.lex_state = 17}, + [3162] = {.lex_state = 17}, + [3163] = {.lex_state = 17}, + [3164] = {.lex_state = 72}, [3165] = {.lex_state = 17}, [3166] = {.lex_state = 17}, [3167] = {.lex_state = 72}, - [3168] = {.lex_state = 17}, + [3168] = {.lex_state = 72}, [3169] = {.lex_state = 72}, - [3170] = {.lex_state = 17}, + [3170] = {.lex_state = 72}, [3171] = {.lex_state = 17}, - [3172] = {.lex_state = 72}, - [3173] = {.lex_state = 72}, - [3174] = {.lex_state = 21}, - [3175] = {.lex_state = 72}, + [3172] = {.lex_state = 17}, + [3173] = {.lex_state = 17}, + [3174] = {.lex_state = 72}, + [3175] = {.lex_state = 17}, [3176] = {.lex_state = 72}, - [3177] = {.lex_state = 72}, + [3177] = {.lex_state = 23, .external_lex_state = 5}, [3178] = {.lex_state = 72}, - [3179] = {.lex_state = 17}, + [3179] = {.lex_state = 72}, [3180] = {.lex_state = 72}, - [3181] = {.lex_state = 72}, - [3182] = {.lex_state = 17}, + [3181] = {.lex_state = 23, .external_lex_state = 5}, + [3182] = {.lex_state = 8}, [3183] = {.lex_state = 72}, [3184] = {.lex_state = 72}, [3185] = {.lex_state = 72}, - [3186] = {.lex_state = 17}, + [3186] = {.lex_state = 72}, [3187] = {.lex_state = 72}, - [3188] = {.lex_state = 72}, + [3188] = {.lex_state = 17}, [3189] = {.lex_state = 17}, [3190] = {.lex_state = 17}, [3191] = {.lex_state = 17}, [3192] = {.lex_state = 72}, [3193] = {.lex_state = 17}, [3194] = {.lex_state = 17}, - [3195] = {.lex_state = 72}, + [3195] = {.lex_state = 17}, [3196] = {.lex_state = 72}, [3197] = {.lex_state = 72}, [3198] = {.lex_state = 72}, [3199] = {.lex_state = 72}, [3200] = {.lex_state = 17}, [3201] = {.lex_state = 72}, - [3202] = {.lex_state = 17}, - [3203] = {.lex_state = 72}, - [3204] = {.lex_state = 72}, - [3205] = {.lex_state = 72}, + [3202] = {.lex_state = 72}, + [3203] = {.lex_state = 23}, + [3204] = {.lex_state = 17}, + [3205] = {.lex_state = 31}, [3206] = {.lex_state = 17}, [3207] = {.lex_state = 72}, - [3208] = {.lex_state = 72}, - [3209] = {.lex_state = 17}, - [3210] = {.lex_state = 17}, + [3208] = {.lex_state = 17}, + [3209] = {.lex_state = 31}, + [3210] = {.lex_state = 72}, [3211] = {.lex_state = 72}, [3212] = {.lex_state = 72}, [3213] = {.lex_state = 72}, @@ -13568,165 +13629,165 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3217] = {.lex_state = 72}, [3218] = {.lex_state = 72}, [3219] = {.lex_state = 17}, - [3220] = {.lex_state = 17}, + [3220] = {.lex_state = 72}, [3221] = {.lex_state = 17}, - [3222] = {.lex_state = 17}, + [3222] = {.lex_state = 72}, [3223] = {.lex_state = 72}, [3224] = {.lex_state = 72}, [3225] = {.lex_state = 72}, - [3226] = {.lex_state = 72}, + [3226] = {.lex_state = 17}, [3227] = {.lex_state = 72}, [3228] = {.lex_state = 72}, - [3229] = {.lex_state = 72}, + [3229] = {.lex_state = 17}, [3230] = {.lex_state = 72}, [3231] = {.lex_state = 72}, - [3232] = {.lex_state = 72}, + [3232] = {.lex_state = 17}, [3233] = {.lex_state = 72}, - [3234] = {.lex_state = 72}, - [3235] = {.lex_state = 31}, - [3236] = {.lex_state = 72}, + [3234] = {.lex_state = 17}, + [3235] = {.lex_state = 17}, + [3236] = {.lex_state = 17}, [3237] = {.lex_state = 72}, [3238] = {.lex_state = 72}, [3239] = {.lex_state = 72}, - [3240] = {.lex_state = 72}, - [3241] = {.lex_state = 72}, - [3242] = {.lex_state = 17}, + [3240] = {.lex_state = 17}, + [3241] = {.lex_state = 17}, + [3242] = {.lex_state = 72}, [3243] = {.lex_state = 72}, - [3244] = {.lex_state = 72}, + [3244] = {.lex_state = 17}, [3245] = {.lex_state = 72}, - [3246] = {.lex_state = 72}, - [3247] = {.lex_state = 17}, - [3248] = {.lex_state = 72}, - [3249] = {.lex_state = 17}, + [3246] = {.lex_state = 17}, + [3247] = {.lex_state = 72}, + [3248] = {.lex_state = 17}, + [3249] = {.lex_state = 72}, [3250] = {.lex_state = 17}, [3251] = {.lex_state = 72}, - [3252] = {.lex_state = 72}, + [3252] = {.lex_state = 17}, [3253] = {.lex_state = 17}, [3254] = {.lex_state = 72}, - [3255] = {.lex_state = 17}, - [3256] = {.lex_state = 17}, - [3257] = {.lex_state = 72}, - [3258] = {.lex_state = 17}, - [3259] = {.lex_state = 17}, - [3260] = {.lex_state = 17}, + [3255] = {.lex_state = 72}, + [3256] = {.lex_state = 72}, + [3257] = {.lex_state = 23, .external_lex_state = 5}, + [3258] = {.lex_state = 72}, + [3259] = {.lex_state = 72}, + [3260] = {.lex_state = 72}, [3261] = {.lex_state = 72}, [3262] = {.lex_state = 72}, [3263] = {.lex_state = 72}, - [3264] = {.lex_state = 17}, + [3264] = {.lex_state = 72}, [3265] = {.lex_state = 72}, - [3266] = {.lex_state = 17}, - [3267] = {.lex_state = 17}, + [3266] = {.lex_state = 72}, + [3267] = {.lex_state = 31}, [3268] = {.lex_state = 17}, - [3269] = {.lex_state = 17}, - [3270] = {.lex_state = 17}, + [3269] = {.lex_state = 72}, + [3270] = {.lex_state = 72}, [3271] = {.lex_state = 17}, - [3272] = {.lex_state = 23, .external_lex_state = 5}, + [3272] = {.lex_state = 72}, [3273] = {.lex_state = 17}, [3274] = {.lex_state = 17}, [3275] = {.lex_state = 17}, - [3276] = {.lex_state = 17}, - [3277] = {.lex_state = 17}, + [3276] = {.lex_state = 72}, + [3277] = {.lex_state = 72}, [3278] = {.lex_state = 17}, - [3279] = {.lex_state = 17}, - [3280] = {.lex_state = 17}, + [3279] = {.lex_state = 72}, + [3280] = {.lex_state = 72}, [3281] = {.lex_state = 17}, - [3282] = {.lex_state = 17}, - [3283] = {.lex_state = 17}, + [3282] = {.lex_state = 72}, + [3283] = {.lex_state = 72}, [3284] = {.lex_state = 17}, - [3285] = {.lex_state = 17}, + [3285] = {.lex_state = 72}, [3286] = {.lex_state = 17}, [3287] = {.lex_state = 17}, - [3288] = {.lex_state = 17}, - [3289] = {.lex_state = 72}, - [3290] = {.lex_state = 72}, - [3291] = {.lex_state = 72}, - [3292] = {.lex_state = 72}, - [3293] = {.lex_state = 72}, - [3294] = {.lex_state = 17}, - [3295] = {.lex_state = 17}, - [3296] = {.lex_state = 72}, + [3288] = {.lex_state = 72}, + [3289] = {.lex_state = 17}, + [3290] = {.lex_state = 17}, + [3291] = {.lex_state = 17}, + [3292] = {.lex_state = 31}, + [3293] = {.lex_state = 17}, + [3294] = {.lex_state = 72}, + [3295] = {.lex_state = 72}, + [3296] = {.lex_state = 17}, [3297] = {.lex_state = 17}, - [3298] = {.lex_state = 72}, - [3299] = {.lex_state = 72}, - [3300] = {.lex_state = 72, .external_lex_state = 6}, - [3301] = {.lex_state = 72}, + [3298] = {.lex_state = 17}, + [3299] = {.lex_state = 17}, + [3300] = {.lex_state = 17}, + [3301] = {.lex_state = 17}, [3302] = {.lex_state = 72}, [3303] = {.lex_state = 17}, [3304] = {.lex_state = 72}, [3305] = {.lex_state = 17}, - [3306] = {.lex_state = 72}, - [3307] = {.lex_state = 72}, - [3308] = {.lex_state = 72}, + [3306] = {.lex_state = 17}, + [3307] = {.lex_state = 17}, + [3308] = {.lex_state = 17}, [3309] = {.lex_state = 17}, - [3310] = {.lex_state = 72}, - [3311] = {.lex_state = 72}, - [3312] = {.lex_state = 72}, - [3313] = {.lex_state = 72}, - [3314] = {.lex_state = 72}, + [3310] = {.lex_state = 17}, + [3311] = {.lex_state = 17}, + [3312] = {.lex_state = 17}, + [3313] = {.lex_state = 17}, + [3314] = {.lex_state = 17}, [3315] = {.lex_state = 17}, [3316] = {.lex_state = 17}, - [3317] = {.lex_state = 72}, - [3318] = {.lex_state = 72}, - [3319] = {.lex_state = 72, .external_lex_state = 6}, + [3317] = {.lex_state = 17}, + [3318] = {.lex_state = 17}, + [3319] = {.lex_state = 17}, [3320] = {.lex_state = 17}, - [3321] = {.lex_state = 8}, - [3322] = {.lex_state = 23, .external_lex_state = 5}, - [3323] = {.lex_state = 72}, - [3324] = {.lex_state = 72}, - [3325] = {.lex_state = 17}, + [3321] = {.lex_state = 72}, + [3322] = {.lex_state = 72}, + [3323] = {.lex_state = 17}, + [3324] = {.lex_state = 17}, + [3325] = {.lex_state = 23}, [3326] = {.lex_state = 72}, - [3327] = {.lex_state = 72}, + [3327] = {.lex_state = 17}, [3328] = {.lex_state = 72}, [3329] = {.lex_state = 72}, [3330] = {.lex_state = 72}, [3331] = {.lex_state = 72}, - [3332] = {.lex_state = 72}, + [3332] = {.lex_state = 17}, [3333] = {.lex_state = 72}, [3334] = {.lex_state = 72}, [3335] = {.lex_state = 72}, - [3336] = {.lex_state = 23}, - [3337] = {.lex_state = 17}, - [3338] = {.lex_state = 72}, - [3339] = {.lex_state = 7}, - [3340] = {.lex_state = 7}, - [3341] = {.lex_state = 72}, - [3342] = {.lex_state = 72}, - [3343] = {.lex_state = 17}, + [3336] = {.lex_state = 72}, + [3337] = {.lex_state = 72}, + [3338] = {.lex_state = 17}, + [3339] = {.lex_state = 17}, + [3340] = {.lex_state = 17}, + [3341] = {.lex_state = 17}, + [3342] = {.lex_state = 17}, + [3343] = {.lex_state = 72}, [3344] = {.lex_state = 72}, - [3345] = {.lex_state = 31}, - [3346] = {.lex_state = 72}, + [3345] = {.lex_state = 72}, + [3346] = {.lex_state = 72, .external_lex_state = 6}, [3347] = {.lex_state = 72}, - [3348] = {.lex_state = 72}, + [3348] = {.lex_state = 17}, [3349] = {.lex_state = 72}, [3350] = {.lex_state = 72}, - [3351] = {.lex_state = 72}, + [3351] = {.lex_state = 17}, [3352] = {.lex_state = 72}, - [3353] = {.lex_state = 72}, + [3353] = {.lex_state = 17}, [3354] = {.lex_state = 72}, - [3355] = {.lex_state = 72}, - [3356] = {.lex_state = 17}, + [3355] = {.lex_state = 17}, + [3356] = {.lex_state = 72}, [3357] = {.lex_state = 72}, - [3358] = {.lex_state = 17}, - [3359] = {.lex_state = 17}, + [3358] = {.lex_state = 31}, + [3359] = {.lex_state = 72}, [3360] = {.lex_state = 72}, - [3361] = {.lex_state = 17}, - [3362] = {.lex_state = 8}, - [3363] = {.lex_state = 17}, - [3364] = {.lex_state = 17}, + [3361] = {.lex_state = 72}, + [3362] = {.lex_state = 72}, + [3363] = {.lex_state = 72}, + [3364] = {.lex_state = 72}, [3365] = {.lex_state = 72}, - [3366] = {.lex_state = 17}, + [3366] = {.lex_state = 72}, [3367] = {.lex_state = 72}, [3368] = {.lex_state = 72}, - [3369] = {.lex_state = 23, .external_lex_state = 5}, - [3370] = {.lex_state = 72}, - [3371] = {.lex_state = 17}, - [3372] = {.lex_state = 17}, + [3369] = {.lex_state = 72}, + [3370] = {.lex_state = 17}, + [3371] = {.lex_state = 7}, + [3372] = {.lex_state = 7}, [3373] = {.lex_state = 72}, - [3374] = {.lex_state = 17}, + [3374] = {.lex_state = 72}, [3375] = {.lex_state = 72}, - [3376] = {.lex_state = 17}, - [3377] = {.lex_state = 17}, - [3378] = {.lex_state = 17}, + [3376] = {.lex_state = 72}, + [3377] = {.lex_state = 72}, + [3378] = {.lex_state = 72}, [3379] = {.lex_state = 72}, [3380] = {.lex_state = 72}, [3381] = {.lex_state = 72}, @@ -13738,363 +13799,398 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3387] = {.lex_state = 72}, [3388] = {.lex_state = 72}, [3389] = {.lex_state = 72}, - [3390] = {.lex_state = 72}, + [3390] = {.lex_state = 17}, [3391] = {.lex_state = 72}, [3392] = {.lex_state = 17}, [3393] = {.lex_state = 17}, - [3394] = {.lex_state = 17}, - [3395] = {.lex_state = 72}, - [3396] = {.lex_state = 17}, + [3394] = {.lex_state = 72}, + [3395] = {.lex_state = 72, .external_lex_state = 6}, + [3396] = {.lex_state = 72}, [3397] = {.lex_state = 72}, - [3398] = {.lex_state = 31}, + [3398] = {.lex_state = 8}, [3399] = {.lex_state = 72}, - [3400] = {.lex_state = 17}, - [3401] = {.lex_state = 72}, - [3402] = {.lex_state = 17}, - [3403] = {.lex_state = 17}, - [3404] = {.lex_state = 17}, + [3400] = {.lex_state = 72}, + [3401] = {.lex_state = 17}, + [3402] = {.lex_state = 72}, + [3403] = {.lex_state = 72}, + [3404] = {.lex_state = 72}, [3405] = {.lex_state = 72}, [3406] = {.lex_state = 17}, - [3407] = {.lex_state = 17}, - [3408] = {.lex_state = 17}, + [3407] = {.lex_state = 72}, + [3408] = {.lex_state = 72}, [3409] = {.lex_state = 17}, [3410] = {.lex_state = 72}, - [3411] = {.lex_state = 72}, - [3412] = {.lex_state = 17}, + [3411] = {.lex_state = 17}, + [3412] = {.lex_state = 72}, [3413] = {.lex_state = 17}, [3414] = {.lex_state = 17}, - [3415] = {.lex_state = 17}, + [3415] = {.lex_state = 72}, [3416] = {.lex_state = 72}, [3417] = {.lex_state = 17}, - [3418] = {.lex_state = 72}, - [3419] = {.lex_state = 72}, - [3420] = {.lex_state = 17}, + [3418] = {.lex_state = 21}, + [3419] = {.lex_state = 17}, + [3420] = {.lex_state = 72}, [3421] = {.lex_state = 72}, - [3422] = {.lex_state = 72}, - [3423] = {.lex_state = 72}, + [3422] = {.lex_state = 17}, + [3423] = {.lex_state = 17}, [3424] = {.lex_state = 72}, - [3425] = {.lex_state = 17}, + [3425] = {.lex_state = 72}, [3426] = {.lex_state = 17}, [3427] = {.lex_state = 72}, [3428] = {.lex_state = 17}, [3429] = {.lex_state = 72}, - [3430] = {.lex_state = 72}, + [3430] = {.lex_state = 17}, [3431] = {.lex_state = 17}, - [3432] = {.lex_state = 17}, + [3432] = {.lex_state = 72}, [3433] = {.lex_state = 17}, [3434] = {.lex_state = 17}, [3435] = {.lex_state = 17}, - [3436] = {.lex_state = 73}, + [3436] = {.lex_state = 17}, [3437] = {.lex_state = 72}, - [3438] = {.lex_state = 72}, - [3439] = {.lex_state = 72}, - [3440] = {.lex_state = 72, .external_lex_state = 7}, + [3438] = {.lex_state = 31}, + [3439] = {.lex_state = 17}, + [3440] = {.lex_state = 17}, [3441] = {.lex_state = 72}, - [3442] = {.lex_state = 72}, + [3442] = {.lex_state = 17}, [3443] = {.lex_state = 17}, - [3444] = {.lex_state = 72}, - [3445] = {.lex_state = 72}, - [3446] = {.lex_state = 73}, + [3444] = {.lex_state = 17}, + [3445] = {.lex_state = 17}, + [3446] = {.lex_state = 72}, [3447] = {.lex_state = 17}, [3448] = {.lex_state = 72}, - [3449] = {.lex_state = 72}, + [3449] = {.lex_state = 17}, [3450] = {.lex_state = 72}, - [3451] = {.lex_state = 73}, - [3452] = {.lex_state = 73}, - [3453] = {.lex_state = 17}, - [3454] = {.lex_state = 21}, - [3455] = {.lex_state = 17}, - [3456] = {.lex_state = 17}, - [3457] = {.lex_state = 72}, + [3451] = {.lex_state = 72}, + [3452] = {.lex_state = 17}, + [3453] = {.lex_state = 72}, + [3454] = {.lex_state = 72}, + [3455] = {.lex_state = 72}, + [3456] = {.lex_state = 72}, + [3457] = {.lex_state = 17}, [3458] = {.lex_state = 17}, [3459] = {.lex_state = 17}, - [3460] = {.lex_state = 72}, + [3460] = {.lex_state = 17}, [3461] = {.lex_state = 72}, [3462] = {.lex_state = 72}, - [3463] = {.lex_state = 21}, - [3464] = {.lex_state = 72, .external_lex_state = 7}, + [3463] = {.lex_state = 72}, + [3464] = {.lex_state = 72}, [3465] = {.lex_state = 72}, [3466] = {.lex_state = 17}, [3467] = {.lex_state = 72}, - [3468] = {.lex_state = 17}, - [3469] = {.lex_state = 17}, - [3470] = {.lex_state = 17}, - [3471] = {.lex_state = 17}, - [3472] = {.lex_state = 17}, - [3473] = {.lex_state = 72}, + [3468] = {.lex_state = 23}, + [3469] = {.lex_state = 72}, + [3470] = {.lex_state = 72}, + [3471] = {.lex_state = 72}, + [3472] = {.lex_state = 21}, + [3473] = {.lex_state = 17}, [3474] = {.lex_state = 72}, [3475] = {.lex_state = 72}, - [3476] = {.lex_state = 17}, - [3477] = {.lex_state = 17}, + [3476] = {.lex_state = 73}, + [3477] = {.lex_state = 72}, [3478] = {.lex_state = 72}, - [3479] = {.lex_state = 72}, - [3480] = {.lex_state = 72}, + [3479] = {.lex_state = 17}, + [3480] = {.lex_state = 17}, [3481] = {.lex_state = 72}, - [3482] = {.lex_state = 21}, - [3483] = {.lex_state = 73}, - [3484] = {.lex_state = 17}, + [3482] = {.lex_state = 72}, + [3483] = {.lex_state = 72}, + [3484] = {.lex_state = 72}, [3485] = {.lex_state = 72}, [3486] = {.lex_state = 17}, [3487] = {.lex_state = 72}, - [3488] = {.lex_state = 17}, - [3489] = {.lex_state = 72}, - [3490] = {.lex_state = 72}, - [3491] = {.lex_state = 72}, + [3488] = {.lex_state = 72}, + [3489] = {.lex_state = 72, .external_lex_state = 7}, + [3490] = {.lex_state = 8}, + [3491] = {.lex_state = 17}, [3492] = {.lex_state = 72}, - [3493] = {.lex_state = 17}, - [3494] = {.lex_state = 72}, + [3493] = {.lex_state = 72}, + [3494] = {.lex_state = 17}, [3495] = {.lex_state = 17}, - [3496] = {.lex_state = 72, .external_lex_state = 8}, - [3497] = {.lex_state = 21}, - [3498] = {.lex_state = 72}, + [3496] = {.lex_state = 17}, + [3497] = {.lex_state = 17}, + [3498] = {.lex_state = 17}, [3499] = {.lex_state = 72}, - [3500] = {.lex_state = 72}, + [3500] = {.lex_state = 21}, [3501] = {.lex_state = 72}, - [3502] = {.lex_state = 72, .external_lex_state = 8}, - [3503] = {.lex_state = 21}, - [3504] = {.lex_state = 17}, - [3505] = {.lex_state = 17}, - [3506] = {.lex_state = 17}, + [3502] = {.lex_state = 73}, + [3503] = {.lex_state = 72}, + [3504] = {.lex_state = 21}, + [3505] = {.lex_state = 72}, + [3506] = {.lex_state = 72}, [3507] = {.lex_state = 72}, - [3508] = {.lex_state = 72}, + [3508] = {.lex_state = 17}, [3509] = {.lex_state = 72}, [3510] = {.lex_state = 72}, [3511] = {.lex_state = 72}, - [3512] = {.lex_state = 72}, + [3512] = {.lex_state = 17}, [3513] = {.lex_state = 72}, - [3514] = {.lex_state = 72}, - [3515] = {.lex_state = 72}, + [3514] = {.lex_state = 17}, + [3515] = {.lex_state = 17}, [3516] = {.lex_state = 72}, [3517] = {.lex_state = 72}, [3518] = {.lex_state = 72}, [3519] = {.lex_state = 72}, [3520] = {.lex_state = 17}, - [3521] = {.lex_state = 21}, - [3522] = {.lex_state = 8}, + [3521] = {.lex_state = 17}, + [3522] = {.lex_state = 72}, [3523] = {.lex_state = 72}, - [3524] = {.lex_state = 72}, - [3525] = {.lex_state = 72}, - [3526] = {.lex_state = 17}, - [3527] = {.lex_state = 73}, - [3528] = {.lex_state = 72}, - [3529] = {.lex_state = 72, .external_lex_state = 7}, + [3524] = {.lex_state = 72, .external_lex_state = 7}, + [3525] = {.lex_state = 21}, + [3526] = {.lex_state = 72}, + [3527] = {.lex_state = 72}, + [3528] = {.lex_state = 17}, + [3529] = {.lex_state = 72}, [3530] = {.lex_state = 72}, [3531] = {.lex_state = 72}, - [3532] = {.lex_state = 72}, - [3533] = {.lex_state = 72}, + [3532] = {.lex_state = 17}, + [3533] = {.lex_state = 17}, [3534] = {.lex_state = 72}, - [3535] = {.lex_state = 17}, + [3535] = {.lex_state = 72}, [3536] = {.lex_state = 17}, - [3537] = {.lex_state = 17}, - [3538] = {.lex_state = 17}, + [3537] = {.lex_state = 72}, + [3538] = {.lex_state = 72}, [3539] = {.lex_state = 72}, [3540] = {.lex_state = 72}, [3541] = {.lex_state = 72}, - [3542] = {.lex_state = 73}, - [3543] = {.lex_state = 72}, + [3542] = {.lex_state = 17}, + [3543] = {.lex_state = 17}, [3544] = {.lex_state = 72}, [3545] = {.lex_state = 72}, [3546] = {.lex_state = 72}, - [3547] = {.lex_state = 72}, - [3548] = {.lex_state = 21}, - [3549] = {.lex_state = 23}, - [3550] = {.lex_state = 72}, - [3551] = {.lex_state = 72}, - [3552] = {.lex_state = 72}, + [3547] = {.lex_state = 73}, + [3548] = {.lex_state = 72}, + [3549] = {.lex_state = 72, .external_lex_state = 7}, + [3550] = {.lex_state = 8}, + [3551] = {.lex_state = 23}, + [3552] = {.lex_state = 17}, [3553] = {.lex_state = 72}, [3554] = {.lex_state = 72}, - [3555] = {.lex_state = 73}, + [3555] = {.lex_state = 72}, [3556] = {.lex_state = 72}, - [3557] = {.lex_state = 72}, - [3558] = {.lex_state = 17}, - [3559] = {.lex_state = 72}, + [3557] = {.lex_state = 21}, + [3558] = {.lex_state = 72}, + [3559] = {.lex_state = 167}, [3560] = {.lex_state = 72}, - [3561] = {.lex_state = 72, .external_lex_state = 8}, + [3561] = {.lex_state = 17}, [3562] = {.lex_state = 72}, - [3563] = {.lex_state = 17}, - [3564] = {.lex_state = 17}, - [3565] = {.lex_state = 72}, - [3566] = {.lex_state = 72}, + [3563] = {.lex_state = 72}, + [3564] = {.lex_state = 72}, + [3565] = {.lex_state = 17}, + [3566] = {.lex_state = 21}, [3567] = {.lex_state = 72}, [3568] = {.lex_state = 72}, - [3569] = {.lex_state = 72}, - [3570] = {.lex_state = 23}, - [3571] = {.lex_state = 72, .external_lex_state = 8}, + [3569] = {.lex_state = 17}, + [3570] = {.lex_state = 17}, + [3571] = {.lex_state = 17}, [3572] = {.lex_state = 72}, - [3573] = {.lex_state = 17}, - [3574] = {.lex_state = 72}, + [3573] = {.lex_state = 21}, + [3574] = {.lex_state = 72, .external_lex_state = 8}, [3575] = {.lex_state = 72}, - [3576] = {.lex_state = 21}, + [3576] = {.lex_state = 72}, [3577] = {.lex_state = 72}, - [3578] = {.lex_state = 17}, - [3579] = {.lex_state = 21}, - [3580] = {.lex_state = 17}, - [3581] = {.lex_state = 72, .external_lex_state = 9}, - [3582] = {.lex_state = 72, .external_lex_state = 9}, - [3583] = {.lex_state = 72}, + [3578] = {.lex_state = 72}, + [3579] = {.lex_state = 72}, + [3580] = {.lex_state = 72}, + [3581] = {.lex_state = 72}, + [3582] = {.lex_state = 21}, + [3583] = {.lex_state = 17}, [3584] = {.lex_state = 72}, [3585] = {.lex_state = 72}, [3586] = {.lex_state = 72}, [3587] = {.lex_state = 72}, - [3588] = {.lex_state = 17}, + [3588] = {.lex_state = 72, .external_lex_state = 8}, [3589] = {.lex_state = 72}, - [3590] = {.lex_state = 72}, - [3591] = {.lex_state = 72}, - [3592] = {.lex_state = 72}, - [3593] = {.lex_state = 72, .external_lex_state = 7}, - [3594] = {.lex_state = 72, .external_lex_state = 7}, - [3595] = {.lex_state = 17}, - [3596] = {.lex_state = 72}, + [3590] = {.lex_state = 17}, + [3591] = {.lex_state = 17}, + [3592] = {.lex_state = 17}, + [3593] = {.lex_state = 17}, + [3594] = {.lex_state = 72}, + [3595] = {.lex_state = 72, .external_lex_state = 8}, + [3596] = {.lex_state = 17}, [3597] = {.lex_state = 72}, - [3598] = {.lex_state = 72, .external_lex_state = 8}, - [3599] = {.lex_state = 72}, + [3598] = {.lex_state = 72}, + [3599] = {.lex_state = 17}, [3600] = {.lex_state = 72}, - [3601] = {.lex_state = 8}, + [3601] = {.lex_state = 72}, [3602] = {.lex_state = 72}, - [3603] = {.lex_state = 72}, + [3603] = {.lex_state = 72, .external_lex_state = 8}, [3604] = {.lex_state = 72}, - [3605] = {.lex_state = 72}, - [3606] = {.lex_state = 17}, - [3607] = {.lex_state = 72}, + [3605] = {.lex_state = 72, .external_lex_state = 7}, + [3606] = {.lex_state = 72}, + [3607] = {.lex_state = 73}, [3608] = {.lex_state = 72}, - [3609] = {.lex_state = 17}, - [3610] = {.lex_state = 72}, + [3609] = {.lex_state = 72}, + [3610] = {.lex_state = 17}, [3611] = {.lex_state = 17}, - [3612] = {.lex_state = 72}, - [3613] = {.lex_state = 17}, - [3614] = {.lex_state = 8}, - [3615] = {.lex_state = 17}, - [3616] = {.lex_state = 17}, - [3617] = {.lex_state = 72, .external_lex_state = 9}, + [3612] = {.lex_state = 21}, + [3613] = {.lex_state = 72, .external_lex_state = 9}, + [3614] = {.lex_state = 17}, + [3615] = {.lex_state = 72}, + [3616] = {.lex_state = 72}, + [3617] = {.lex_state = 72}, [3618] = {.lex_state = 72}, - [3619] = {.lex_state = 17}, + [3619] = {.lex_state = 72}, [3620] = {.lex_state = 72}, [3621] = {.lex_state = 72}, [3622] = {.lex_state = 72}, [3623] = {.lex_state = 72}, - [3624] = {.lex_state = 72}, + [3624] = {.lex_state = 17}, [3625] = {.lex_state = 72}, [3626] = {.lex_state = 72}, [3627] = {.lex_state = 72}, [3628] = {.lex_state = 72}, - [3629] = {.lex_state = 17}, + [3629] = {.lex_state = 72, .external_lex_state = 7}, [3630] = {.lex_state = 72}, [3631] = {.lex_state = 72}, [3632] = {.lex_state = 72}, [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 = 9}, + [3637] = {.lex_state = 21}, [3638] = {.lex_state = 72}, - [3639] = {.lex_state = 21}, - [3640] = {.lex_state = 72}, - [3641] = {.lex_state = 72}, + [3639] = {.lex_state = 72}, + [3640] = {.lex_state = 73}, + [3641] = {.lex_state = 17}, [3642] = {.lex_state = 72}, - [3643] = {.lex_state = 72, .external_lex_state = 9}, - [3644] = {.lex_state = 72}, - [3645] = {.lex_state = 72}, - [3646] = {.lex_state = 72}, - [3647] = {.lex_state = 72}, - [3648] = {.lex_state = 72}, - [3649] = {.lex_state = 72}, + [3643] = {.lex_state = 8}, + [3644] = {.lex_state = 21}, + [3645] = {.lex_state = 17}, + [3646] = {.lex_state = 72, .external_lex_state = 9}, + [3647] = {.lex_state = 17}, + [3648] = {.lex_state = 72, .external_lex_state = 9}, + [3649] = {.lex_state = 17}, [3650] = {.lex_state = 72}, [3651] = {.lex_state = 72}, [3652] = {.lex_state = 72}, [3653] = {.lex_state = 72}, - [3654] = {.lex_state = 72}, + [3654] = {.lex_state = 17}, [3655] = {.lex_state = 72}, [3656] = {.lex_state = 72}, [3657] = {.lex_state = 72}, [3658] = {.lex_state = 17}, - [3659] = {.lex_state = 72}, - [3660] = {.lex_state = 21}, + [3659] = {.lex_state = 21}, + [3660] = {.lex_state = 72}, [3661] = {.lex_state = 72}, [3662] = {.lex_state = 72}, [3663] = {.lex_state = 72}, - [3664] = {.lex_state = 21}, - [3665] = {.lex_state = 21}, - [3666] = {.lex_state = 72}, + [3664] = {.lex_state = 72}, + [3665] = {.lex_state = 72}, + [3666] = {.lex_state = 72, .external_lex_state = 9}, [3667] = {.lex_state = 72}, [3668] = {.lex_state = 72}, [3669] = {.lex_state = 72}, - [3670] = {.lex_state = 21}, + [3670] = {.lex_state = 72}, [3671] = {.lex_state = 72}, - [3672] = {.lex_state = 72}, - [3673] = {.lex_state = 17}, + [3672] = {.lex_state = 72, .external_lex_state = 9}, + [3673] = {.lex_state = 72}, [3674] = {.lex_state = 72}, [3675] = {.lex_state = 72}, - [3676] = {.lex_state = 21}, - [3677] = {.lex_state = 17}, + [3676] = {.lex_state = 72}, + [3677] = {.lex_state = 72}, [3678] = {.lex_state = 72}, [3679] = {.lex_state = 72}, - [3680] = {.lex_state = 21}, - [3681] = {.lex_state = 17}, - [3682] = {.lex_state = 17}, + [3680] = {.lex_state = 72}, + [3681] = {.lex_state = 72}, + [3682] = {.lex_state = 72}, [3683] = {.lex_state = 72}, - [3684] = {.lex_state = 21}, - [3685] = {.lex_state = 72}, - [3686] = {.lex_state = 17}, + [3684] = {.lex_state = 72}, + [3685] = {.lex_state = 17}, + [3686] = {.lex_state = 72}, [3687] = {.lex_state = 72}, [3688] = {.lex_state = 72}, - [3689] = {.lex_state = 72}, - [3690] = {.lex_state = 21}, + [3689] = {.lex_state = 21}, + [3690] = {.lex_state = 72}, [3691] = {.lex_state = 72}, [3692] = {.lex_state = 72}, - [3693] = {.lex_state = 72}, - [3694] = {.lex_state = 72}, - [3695] = {.lex_state = 17}, + [3693] = {.lex_state = 21}, + [3694] = {.lex_state = 21}, + [3695] = {.lex_state = 72}, [3696] = {.lex_state = 72}, [3697] = {.lex_state = 72}, - [3698] = {.lex_state = 72}, - [3699] = {.lex_state = 72}, - [3700] = {.lex_state = 17}, + [3698] = {.lex_state = 17}, + [3699] = {.lex_state = 21}, + [3700] = {.lex_state = 72}, [3701] = {.lex_state = 17}, [3702] = {.lex_state = 72}, - [3703] = {.lex_state = 21}, + [3703] = {.lex_state = 72}, [3704] = {.lex_state = 72}, - [3705] = {.lex_state = 17}, - [3706] = {.lex_state = 21}, + [3705] = {.lex_state = 72}, + [3706] = {.lex_state = 17}, [3707] = {.lex_state = 72}, [3708] = {.lex_state = 72}, [3709] = {.lex_state = 21}, - [3710] = {.lex_state = 72}, + [3710] = {.lex_state = 17}, [3711] = {.lex_state = 72}, - [3712] = {.lex_state = 21}, + [3712] = {.lex_state = 73}, [3713] = {.lex_state = 21}, [3714] = {.lex_state = 72}, - [3715] = {.lex_state = 72}, - [3716] = {.lex_state = 21}, - [3717] = {.lex_state = 21}, - [3718] = {.lex_state = 21}, - [3719] = {.lex_state = 72, .external_lex_state = 7}, - [3720] = {.lex_state = 17}, - [3721] = {.lex_state = 72}, + [3715] = {.lex_state = 17}, + [3716] = {.lex_state = 72, .external_lex_state = 8}, + [3717] = {.lex_state = 72}, + [3718] = {.lex_state = 72}, + [3719] = {.lex_state = 21}, + [3720] = {.lex_state = 21}, + [3721] = {.lex_state = 17}, [3722] = {.lex_state = 72}, [3723] = {.lex_state = 17}, [3724] = {.lex_state = 72}, - [3725] = {.lex_state = 72}, - [3726] = {.lex_state = 17}, - [3727] = {.lex_state = 17}, - [3728] = {.lex_state = 21}, - [3729] = {.lex_state = 17}, - [3730] = {.lex_state = 21}, - [3731] = {.lex_state = 167}, - [3732] = {.lex_state = 72}, + [3725] = {.lex_state = 72, .external_lex_state = 7}, + [3726] = {.lex_state = 72}, + [3727] = {.lex_state = 72}, + [3728] = {.lex_state = 72}, + [3729] = {.lex_state = 72}, + [3730] = {.lex_state = 17}, + [3731] = {.lex_state = 72}, + [3732] = {.lex_state = 21}, [3733] = {.lex_state = 72}, - [3734] = {.lex_state = 17}, - [3735] = {.lex_state = 72, .external_lex_state = 9}, - [3736] = {.lex_state = 72}, + [3734] = {.lex_state = 21}, + [3735] = {.lex_state = 72}, + [3736] = {.lex_state = 21}, [3737] = {.lex_state = 72}, [3738] = {.lex_state = 72}, - [3739] = {.lex_state = 72}, - [3740] = {(TSStateId)(-1),}, - [3741] = {(TSStateId)(-1),}, - [3742] = {(TSStateId)(-1),}, - [3743] = {(TSStateId)(-1),}, - [3744] = {(TSStateId)(-1),}, - [3745] = {(TSStateId)(-1),}, - [3746] = {(TSStateId)(-1),}, + [3739] = {.lex_state = 21}, + [3740] = {.lex_state = 72}, + [3741] = {.lex_state = 72}, + [3742] = {.lex_state = 21}, + [3743] = {.lex_state = 21}, + [3744] = {.lex_state = 72}, + [3745] = {.lex_state = 17}, + [3746] = {.lex_state = 21}, + [3747] = {.lex_state = 21}, + [3748] = {.lex_state = 21}, + [3749] = {.lex_state = 72}, + [3750] = {.lex_state = 17}, + [3751] = {.lex_state = 72}, + [3752] = {.lex_state = 72}, + [3753] = {.lex_state = 17}, + [3754] = {.lex_state = 72}, + [3755] = {.lex_state = 72}, + [3756] = {.lex_state = 17}, + [3757] = {.lex_state = 17}, + [3758] = {.lex_state = 72}, + [3759] = {.lex_state = 17}, + [3760] = {.lex_state = 72}, + [3761] = {.lex_state = 72}, + [3762] = {.lex_state = 72}, + [3763] = {.lex_state = 72, .external_lex_state = 9}, + [3764] = {.lex_state = 72}, + [3765] = {.lex_state = 17}, + [3766] = {.lex_state = 17}, + [3767] = {.lex_state = 17}, + [3768] = {.lex_state = 17}, + [3769] = {.lex_state = 73}, + [3770] = {.lex_state = 72}, + [3771] = {.lex_state = 73}, + [3772] = {.lex_state = 21}, + [3773] = {.lex_state = 72}, + [3774] = {.lex_state = 72}, + [3775] = {(TSStateId)(-1),}, + [3776] = {(TSStateId)(-1),}, + [3777] = {(TSStateId)(-1),}, + [3778] = {(TSStateId)(-1),}, + [3779] = {(TSStateId)(-1),}, + [3780] = {(TSStateId)(-1),}, + [3781] = {(TSStateId)(-1),}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { @@ -14215,6 +14311,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(1), [anon_sym_while] = ACTIONS(1), [anon_sym_extern] = ACTIONS(1), + [anon_sym_safe] = ACTIONS(1), [anon_sym_ref] = ACTIONS(1), [anon_sym_else] = ACTIONS(1), [anon_sym_in] = ACTIONS(1), @@ -14253,83 +14350,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__error_sentinel] = ACTIONS(1), }, [STATE(1)] = { - [sym_source_file] = STATE(3687), - [sym__statement] = STATE(771), - [sym_empty_statement] = STATE(662), - [sym_expression_statement] = STATE(662), - [sym_macro_definition] = STATE(662), - [sym_attribute_item] = STATE(662), - [sym_inner_attribute_item] = STATE(662), - [sym_mod_item] = STATE(662), - [sym_foreign_mod_item] = STATE(662), - [sym_struct_item] = STATE(662), - [sym_union_item] = STATE(662), - [sym_enum_item] = STATE(662), - [sym_extern_crate_declaration] = STATE(662), - [sym_const_item] = STATE(662), - [sym_static_item] = STATE(662), - [sym_type_item] = STATE(662), - [sym_function_item] = STATE(662), - [sym_function_signature_item] = STATE(662), - [sym_function_modifiers] = STATE(3616), - [sym_impl_item] = STATE(662), - [sym_trait_item] = STATE(662), - [sym_associated_type] = STATE(662), - [sym_let_declaration] = STATE(662), - [sym_use_declaration] = STATE(662), - [sym_extern_modifier] = STATE(2203), - [sym_visibility_modifier] = STATE(1996), - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1913), - [sym_macro_invocation] = STATE(411), - [sym_scoped_identifier] = STATE(1587), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(392), - [sym_match_expression] = STATE(392), - [sym_while_expression] = STATE(392), - [sym_loop_expression] = STATE(392), - [sym_for_expression] = STATE(392), - [sym_const_block] = STATE(392), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3521), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(392), - [sym_async_block] = STATE(392), - [sym_gen_block] = STATE(392), - [sym_try_block] = STATE(392), - [sym_block] = STATE(392), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), + [sym_source_file] = STATE(3652), + [sym__statement] = STATE(529), + [sym_empty_statement] = STATE(668), + [sym_expression_statement] = STATE(668), + [sym_macro_definition] = STATE(668), + [sym_attribute_item] = STATE(668), + [sym_inner_attribute_item] = STATE(668), + [sym_mod_item] = STATE(668), + [sym_foreign_mod_item] = STATE(668), + [sym_struct_item] = STATE(668), + [sym_union_item] = STATE(668), + [sym_enum_item] = STATE(668), + [sym_extern_crate_declaration] = STATE(668), + [sym_const_item] = STATE(668), + [sym_static_item] = STATE(668), + [sym_type_item] = STATE(668), + [sym_function_item] = STATE(668), + [sym_function_signature_item] = STATE(668), + [sym_function_modifiers] = STATE(3596), + [sym_impl_item] = STATE(668), + [sym_trait_item] = STATE(668), + [sym_associated_type] = STATE(668), + [sym_let_declaration] = STATE(668), + [sym_use_declaration] = STATE(668), + [sym_extern_modifier] = STATE(2175), + [sym_visibility_modifier] = STATE(2008), + [sym_bracketed_type] = STATE(3752), + [sym_generic_function] = STATE(1492), + [sym_generic_type_with_turbofish] = STATE(3039), + [sym__expression_except_range] = STATE(1409), + [sym__expression] = STATE(1918), + [sym_macro_invocation] = STATE(401), + [sym_scoped_identifier] = STATE(1589), + [sym_scoped_type_identifier_in_expression_position] = STATE(3335), + [sym_range_expression] = STATE(1505), + [sym_unary_expression] = STATE(1492), + [sym_try_expression] = STATE(1492), + [sym_reference_expression] = STATE(1492), + [sym_binary_expression] = STATE(1492), + [sym_assignment_expression] = STATE(1492), + [sym_compound_assignment_expr] = STATE(1492), + [sym_type_cast_expression] = STATE(1492), + [sym_return_expression] = STATE(1492), + [sym_yield_expression] = STATE(1492), + [sym_call_expression] = STATE(1492), + [sym_array_expression] = STATE(1492), + [sym_parenthesized_expression] = STATE(1492), + [sym_tuple_expression] = STATE(1492), + [sym_unit_expression] = STATE(1492), + [sym_struct_expression] = STATE(1492), + [sym_if_expression] = STATE(404), + [sym_match_expression] = STATE(404), + [sym_while_expression] = STATE(404), + [sym_loop_expression] = STATE(404), + [sym_for_expression] = STATE(404), + [sym_const_block] = STATE(404), + [sym_closure_expression] = STATE(1492), + [sym_closure_parameters] = STATE(229), + [sym_label] = STATE(3504), + [sym_break_expression] = STATE(1492), + [sym_continue_expression] = STATE(1492), + [sym_index_expression] = STATE(1492), + [sym_await_expression] = STATE(1492), + [sym_field_expression] = STATE(1412), + [sym_unsafe_block] = STATE(404), + [sym_async_block] = STATE(404), + [sym_gen_block] = STATE(404), + [sym_try_block] = STATE(404), + [sym_block] = STATE(404), + [sym__literal] = STATE(1492), + [sym_string_literal] = STATE(1530), + [sym_raw_string_literal] = STATE(1530), + [sym_boolean_literal] = STATE(1530), [sym_line_comment] = STATE(1), [sym_block_comment] = STATE(1), [aux_sym_source_file_repeat1] = STATE(5), - [aux_sym_function_modifiers_repeat1] = STATE(2252), + [aux_sym_function_modifiers_repeat1] = STATE(2244), [ts_builtin_sym_end] = ACTIONS(7), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), @@ -14390,108 +14487,109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(85), [anon_sym_while] = ACTIONS(87), [anon_sym_extern] = ACTIONS(89), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(95), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_shebang] = ACTIONS(107), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(113), - [sym_metavariable] = ACTIONS(115), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [anon_sym_safe] = 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), }, [STATE(2)] = { - [sym__statement] = STATE(771), - [sym_empty_statement] = STATE(662), - [sym_expression_statement] = STATE(662), - [sym_macro_definition] = STATE(662), - [sym_attribute_item] = STATE(662), - [sym_inner_attribute_item] = STATE(662), - [sym_mod_item] = STATE(662), - [sym_foreign_mod_item] = STATE(662), - [sym_struct_item] = STATE(662), - [sym_union_item] = STATE(662), - [sym_enum_item] = STATE(662), - [sym_extern_crate_declaration] = STATE(662), - [sym_const_item] = STATE(662), - [sym_static_item] = STATE(662), - [sym_type_item] = STATE(662), - [sym_function_item] = STATE(662), - [sym_function_signature_item] = STATE(662), - [sym_function_modifiers] = STATE(3616), - [sym_impl_item] = STATE(662), - [sym_trait_item] = STATE(662), - [sym_associated_type] = STATE(662), - [sym_let_declaration] = STATE(662), - [sym_use_declaration] = STATE(662), - [sym_extern_modifier] = STATE(2203), - [sym_visibility_modifier] = STATE(1996), - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1885), - [sym_macro_invocation] = STATE(411), - [sym_scoped_identifier] = STATE(1587), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(392), - [sym_match_expression] = STATE(392), - [sym_while_expression] = STATE(392), - [sym_loop_expression] = STATE(392), - [sym_for_expression] = STATE(392), - [sym_const_block] = STATE(392), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3521), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(392), - [sym_async_block] = STATE(392), - [sym_gen_block] = STATE(392), - [sym_try_block] = STATE(392), - [sym_block] = STATE(392), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), + [sym__statement] = STATE(529), + [sym_empty_statement] = STATE(668), + [sym_expression_statement] = STATE(668), + [sym_macro_definition] = STATE(668), + [sym_attribute_item] = STATE(668), + [sym_inner_attribute_item] = STATE(668), + [sym_mod_item] = STATE(668), + [sym_foreign_mod_item] = STATE(668), + [sym_struct_item] = STATE(668), + [sym_union_item] = STATE(668), + [sym_enum_item] = STATE(668), + [sym_extern_crate_declaration] = STATE(668), + [sym_const_item] = STATE(668), + [sym_static_item] = STATE(668), + [sym_type_item] = STATE(668), + [sym_function_item] = STATE(668), + [sym_function_signature_item] = STATE(668), + [sym_function_modifiers] = STATE(3596), + [sym_impl_item] = STATE(668), + [sym_trait_item] = STATE(668), + [sym_associated_type] = STATE(668), + [sym_let_declaration] = STATE(668), + [sym_use_declaration] = STATE(668), + [sym_extern_modifier] = STATE(2175), + [sym_visibility_modifier] = STATE(2008), + [sym_bracketed_type] = STATE(3752), + [sym_generic_function] = STATE(1492), + [sym_generic_type_with_turbofish] = STATE(3039), + [sym__expression_except_range] = STATE(1409), + [sym__expression] = STATE(1912), + [sym_macro_invocation] = STATE(401), + [sym_scoped_identifier] = STATE(1589), + [sym_scoped_type_identifier_in_expression_position] = STATE(3335), + [sym_range_expression] = STATE(1505), + [sym_unary_expression] = STATE(1492), + [sym_try_expression] = STATE(1492), + [sym_reference_expression] = STATE(1492), + [sym_binary_expression] = STATE(1492), + [sym_assignment_expression] = STATE(1492), + [sym_compound_assignment_expr] = STATE(1492), + [sym_type_cast_expression] = STATE(1492), + [sym_return_expression] = STATE(1492), + [sym_yield_expression] = STATE(1492), + [sym_call_expression] = STATE(1492), + [sym_array_expression] = STATE(1492), + [sym_parenthesized_expression] = STATE(1492), + [sym_tuple_expression] = STATE(1492), + [sym_unit_expression] = STATE(1492), + [sym_struct_expression] = STATE(1492), + [sym_if_expression] = STATE(404), + [sym_match_expression] = STATE(404), + [sym_while_expression] = STATE(404), + [sym_loop_expression] = STATE(404), + [sym_for_expression] = STATE(404), + [sym_const_block] = STATE(404), + [sym_closure_expression] = STATE(1492), + [sym_closure_parameters] = STATE(229), + [sym_label] = STATE(3504), + [sym_break_expression] = STATE(1492), + [sym_continue_expression] = STATE(1492), + [sym_index_expression] = STATE(1492), + [sym_await_expression] = STATE(1492), + [sym_field_expression] = STATE(1412), + [sym_unsafe_block] = STATE(404), + [sym_async_block] = STATE(404), + [sym_gen_block] = STATE(404), + [sym_try_block] = STATE(404), + [sym_block] = STATE(404), + [sym__literal] = STATE(1492), + [sym_string_literal] = STATE(1530), + [sym_raw_string_literal] = STATE(1530), + [sym_boolean_literal] = STATE(1530), [sym_line_comment] = STATE(2), [sym_block_comment] = STATE(2), [aux_sym_source_file_repeat1] = STATE(13), - [aux_sym_function_modifiers_repeat1] = STATE(2252), + [aux_sym_function_modifiers_repeat1] = STATE(2244), [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(119), + [anon_sym_RBRACE] = ACTIONS(121), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -14517,7 +14615,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(121), + [anon_sym_POUND] = ACTIONS(123), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(39), [anon_sym_break] = ACTIONS(41), @@ -14545,107 +14643,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(85), [anon_sym_while] = ACTIONS(87), [anon_sym_extern] = ACTIONS(89), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(95), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(113), - [sym_metavariable] = ACTIONS(115), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [anon_sym_safe] = 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(3)] = { - [sym__statement] = STATE(771), - [sym_empty_statement] = STATE(662), - [sym_expression_statement] = STATE(662), - [sym_macro_definition] = STATE(662), - [sym_attribute_item] = STATE(662), - [sym_inner_attribute_item] = STATE(662), - [sym_mod_item] = STATE(662), - [sym_foreign_mod_item] = STATE(662), - [sym_struct_item] = STATE(662), - [sym_union_item] = STATE(662), - [sym_enum_item] = STATE(662), - [sym_extern_crate_declaration] = STATE(662), - [sym_const_item] = STATE(662), - [sym_static_item] = STATE(662), - [sym_type_item] = STATE(662), - [sym_function_item] = STATE(662), - [sym_function_signature_item] = STATE(662), - [sym_function_modifiers] = STATE(3616), - [sym_impl_item] = STATE(662), - [sym_trait_item] = STATE(662), - [sym_associated_type] = STATE(662), - [sym_let_declaration] = STATE(662), - [sym_use_declaration] = STATE(662), - [sym_extern_modifier] = STATE(2203), - [sym_visibility_modifier] = STATE(1996), - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1884), - [sym_macro_invocation] = STATE(411), - [sym_scoped_identifier] = STATE(1587), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(392), - [sym_match_expression] = STATE(392), - [sym_while_expression] = STATE(392), - [sym_loop_expression] = STATE(392), - [sym_for_expression] = STATE(392), - [sym_const_block] = STATE(392), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3521), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(392), - [sym_async_block] = STATE(392), - [sym_gen_block] = STATE(392), - [sym_try_block] = STATE(392), - [sym_block] = STATE(392), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), + [sym__statement] = STATE(529), + [sym_empty_statement] = STATE(668), + [sym_expression_statement] = STATE(668), + [sym_macro_definition] = STATE(668), + [sym_attribute_item] = STATE(668), + [sym_inner_attribute_item] = STATE(668), + [sym_mod_item] = STATE(668), + [sym_foreign_mod_item] = STATE(668), + [sym_struct_item] = STATE(668), + [sym_union_item] = STATE(668), + [sym_enum_item] = STATE(668), + [sym_extern_crate_declaration] = STATE(668), + [sym_const_item] = STATE(668), + [sym_static_item] = STATE(668), + [sym_type_item] = STATE(668), + [sym_function_item] = STATE(668), + [sym_function_signature_item] = STATE(668), + [sym_function_modifiers] = STATE(3596), + [sym_impl_item] = STATE(668), + [sym_trait_item] = STATE(668), + [sym_associated_type] = STATE(668), + [sym_let_declaration] = STATE(668), + [sym_use_declaration] = STATE(668), + [sym_extern_modifier] = STATE(2175), + [sym_visibility_modifier] = STATE(2008), + [sym_bracketed_type] = STATE(3752), + [sym_generic_function] = STATE(1492), + [sym_generic_type_with_turbofish] = STATE(3039), + [sym__expression_except_range] = STATE(1409), + [sym__expression] = STATE(1911), + [sym_macro_invocation] = STATE(401), + [sym_scoped_identifier] = STATE(1589), + [sym_scoped_type_identifier_in_expression_position] = STATE(3335), + [sym_range_expression] = STATE(1505), + [sym_unary_expression] = STATE(1492), + [sym_try_expression] = STATE(1492), + [sym_reference_expression] = STATE(1492), + [sym_binary_expression] = STATE(1492), + [sym_assignment_expression] = STATE(1492), + [sym_compound_assignment_expr] = STATE(1492), + [sym_type_cast_expression] = STATE(1492), + [sym_return_expression] = STATE(1492), + [sym_yield_expression] = STATE(1492), + [sym_call_expression] = STATE(1492), + [sym_array_expression] = STATE(1492), + [sym_parenthesized_expression] = STATE(1492), + [sym_tuple_expression] = STATE(1492), + [sym_unit_expression] = STATE(1492), + [sym_struct_expression] = STATE(1492), + [sym_if_expression] = STATE(404), + [sym_match_expression] = STATE(404), + [sym_while_expression] = STATE(404), + [sym_loop_expression] = STATE(404), + [sym_for_expression] = STATE(404), + [sym_const_block] = STATE(404), + [sym_closure_expression] = STATE(1492), + [sym_closure_parameters] = STATE(229), + [sym_label] = STATE(3504), + [sym_break_expression] = STATE(1492), + [sym_continue_expression] = STATE(1492), + [sym_index_expression] = STATE(1492), + [sym_await_expression] = STATE(1492), + [sym_field_expression] = STATE(1412), + [sym_unsafe_block] = STATE(404), + [sym_async_block] = STATE(404), + [sym_gen_block] = STATE(404), + [sym_try_block] = STATE(404), + [sym_block] = STATE(404), + [sym__literal] = STATE(1492), + [sym_string_literal] = STATE(1530), + [sym_raw_string_literal] = STATE(1530), + [sym_boolean_literal] = STATE(1530), [sym_line_comment] = STATE(3), [sym_block_comment] = STATE(3), [aux_sym_source_file_repeat1] = STATE(2), - [aux_sym_function_modifiers_repeat1] = STATE(2252), + [aux_sym_function_modifiers_repeat1] = STATE(2244), [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(123), + [anon_sym_RBRACE] = ACTIONS(125), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -14671,7 +14770,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(121), + [anon_sym_POUND] = ACTIONS(123), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(39), [anon_sym_break] = ACTIONS(41), @@ -14699,101 +14798,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(85), [anon_sym_while] = ACTIONS(87), [anon_sym_extern] = ACTIONS(89), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(95), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(113), - [sym_metavariable] = ACTIONS(115), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [anon_sym_safe] = 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(4)] = { - [sym__statement] = STATE(771), - [sym_empty_statement] = STATE(662), - [sym_expression_statement] = STATE(662), - [sym_macro_definition] = STATE(662), - [sym_attribute_item] = STATE(662), - [sym_inner_attribute_item] = STATE(662), - [sym_mod_item] = STATE(662), - [sym_foreign_mod_item] = STATE(662), - [sym_struct_item] = STATE(662), - [sym_union_item] = STATE(662), - [sym_enum_item] = STATE(662), - [sym_extern_crate_declaration] = STATE(662), - [sym_const_item] = STATE(662), - [sym_static_item] = STATE(662), - [sym_type_item] = STATE(662), - [sym_function_item] = STATE(662), - [sym_function_signature_item] = STATE(662), - [sym_function_modifiers] = STATE(3616), - [sym_impl_item] = STATE(662), - [sym_trait_item] = STATE(662), - [sym_associated_type] = STATE(662), - [sym_let_declaration] = STATE(662), - [sym_use_declaration] = STATE(662), - [sym_extern_modifier] = STATE(2203), - [sym_visibility_modifier] = STATE(1996), - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1913), - [sym_macro_invocation] = STATE(411), - [sym_scoped_identifier] = STATE(1587), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(392), - [sym_match_expression] = STATE(392), - [sym_while_expression] = STATE(392), - [sym_loop_expression] = STATE(392), - [sym_for_expression] = STATE(392), - [sym_const_block] = STATE(392), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3521), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(392), - [sym_async_block] = STATE(392), - [sym_gen_block] = STATE(392), - [sym_try_block] = STATE(392), - [sym_block] = STATE(392), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), + [sym__statement] = STATE(529), + [sym_empty_statement] = STATE(668), + [sym_expression_statement] = STATE(668), + [sym_macro_definition] = STATE(668), + [sym_attribute_item] = STATE(668), + [sym_inner_attribute_item] = STATE(668), + [sym_mod_item] = STATE(668), + [sym_foreign_mod_item] = STATE(668), + [sym_struct_item] = STATE(668), + [sym_union_item] = STATE(668), + [sym_enum_item] = STATE(668), + [sym_extern_crate_declaration] = STATE(668), + [sym_const_item] = STATE(668), + [sym_static_item] = STATE(668), + [sym_type_item] = STATE(668), + [sym_function_item] = STATE(668), + [sym_function_signature_item] = STATE(668), + [sym_function_modifiers] = STATE(3596), + [sym_impl_item] = STATE(668), + [sym_trait_item] = STATE(668), + [sym_associated_type] = STATE(668), + [sym_let_declaration] = STATE(668), + [sym_use_declaration] = STATE(668), + [sym_extern_modifier] = STATE(2175), + [sym_visibility_modifier] = STATE(2008), + [sym_bracketed_type] = STATE(3752), + [sym_generic_function] = STATE(1492), + [sym_generic_type_with_turbofish] = STATE(3039), + [sym__expression_except_range] = STATE(1409), + [sym__expression] = STATE(1918), + [sym_macro_invocation] = STATE(401), + [sym_scoped_identifier] = STATE(1589), + [sym_scoped_type_identifier_in_expression_position] = STATE(3335), + [sym_range_expression] = STATE(1505), + [sym_unary_expression] = STATE(1492), + [sym_try_expression] = STATE(1492), + [sym_reference_expression] = STATE(1492), + [sym_binary_expression] = STATE(1492), + [sym_assignment_expression] = STATE(1492), + [sym_compound_assignment_expr] = STATE(1492), + [sym_type_cast_expression] = STATE(1492), + [sym_return_expression] = STATE(1492), + [sym_yield_expression] = STATE(1492), + [sym_call_expression] = STATE(1492), + [sym_array_expression] = STATE(1492), + [sym_parenthesized_expression] = STATE(1492), + [sym_tuple_expression] = STATE(1492), + [sym_unit_expression] = STATE(1492), + [sym_struct_expression] = STATE(1492), + [sym_if_expression] = STATE(404), + [sym_match_expression] = STATE(404), + [sym_while_expression] = STATE(404), + [sym_loop_expression] = STATE(404), + [sym_for_expression] = STATE(404), + [sym_const_block] = STATE(404), + [sym_closure_expression] = STATE(1492), + [sym_closure_parameters] = STATE(229), + [sym_label] = STATE(3504), + [sym_break_expression] = STATE(1492), + [sym_continue_expression] = STATE(1492), + [sym_index_expression] = STATE(1492), + [sym_await_expression] = STATE(1492), + [sym_field_expression] = STATE(1412), + [sym_unsafe_block] = STATE(404), + [sym_async_block] = STATE(404), + [sym_gen_block] = STATE(404), + [sym_try_block] = STATE(404), + [sym_block] = STATE(404), + [sym__literal] = STATE(1492), + [sym_string_literal] = STATE(1530), + [sym_raw_string_literal] = STATE(1530), + [sym_boolean_literal] = STATE(1530), [sym_line_comment] = STATE(4), [sym_block_comment] = STATE(4), [aux_sym_source_file_repeat1] = STATE(7), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [ts_builtin_sym_end] = ACTIONS(125), + [aux_sym_function_modifiers_repeat1] = STATE(2244), + [ts_builtin_sym_end] = ACTIONS(127), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -14825,7 +14925,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(121), + [anon_sym_POUND] = ACTIONS(123), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(39), [anon_sym_break] = ACTIONS(41), @@ -14853,101 +14953,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(85), [anon_sym_while] = ACTIONS(87), [anon_sym_extern] = ACTIONS(89), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(95), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(113), - [sym_metavariable] = ACTIONS(115), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [anon_sym_safe] = 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(5)] = { - [sym__statement] = STATE(771), - [sym_empty_statement] = STATE(662), - [sym_expression_statement] = STATE(662), - [sym_macro_definition] = STATE(662), - [sym_attribute_item] = STATE(662), - [sym_inner_attribute_item] = STATE(662), - [sym_mod_item] = STATE(662), - [sym_foreign_mod_item] = STATE(662), - [sym_struct_item] = STATE(662), - [sym_union_item] = STATE(662), - [sym_enum_item] = STATE(662), - [sym_extern_crate_declaration] = STATE(662), - [sym_const_item] = STATE(662), - [sym_static_item] = STATE(662), - [sym_type_item] = STATE(662), - [sym_function_item] = STATE(662), - [sym_function_signature_item] = STATE(662), - [sym_function_modifiers] = STATE(3616), - [sym_impl_item] = STATE(662), - [sym_trait_item] = STATE(662), - [sym_associated_type] = STATE(662), - [sym_let_declaration] = STATE(662), - [sym_use_declaration] = STATE(662), - [sym_extern_modifier] = STATE(2203), - [sym_visibility_modifier] = STATE(1996), - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1913), - [sym_macro_invocation] = STATE(411), - [sym_scoped_identifier] = STATE(1587), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(392), - [sym_match_expression] = STATE(392), - [sym_while_expression] = STATE(392), - [sym_loop_expression] = STATE(392), - [sym_for_expression] = STATE(392), - [sym_const_block] = STATE(392), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3521), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(392), - [sym_async_block] = STATE(392), - [sym_gen_block] = STATE(392), - [sym_try_block] = STATE(392), - [sym_block] = STATE(392), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), + [sym__statement] = STATE(529), + [sym_empty_statement] = STATE(668), + [sym_expression_statement] = STATE(668), + [sym_macro_definition] = STATE(668), + [sym_attribute_item] = STATE(668), + [sym_inner_attribute_item] = STATE(668), + [sym_mod_item] = STATE(668), + [sym_foreign_mod_item] = STATE(668), + [sym_struct_item] = STATE(668), + [sym_union_item] = STATE(668), + [sym_enum_item] = STATE(668), + [sym_extern_crate_declaration] = STATE(668), + [sym_const_item] = STATE(668), + [sym_static_item] = STATE(668), + [sym_type_item] = STATE(668), + [sym_function_item] = STATE(668), + [sym_function_signature_item] = STATE(668), + [sym_function_modifiers] = STATE(3596), + [sym_impl_item] = STATE(668), + [sym_trait_item] = STATE(668), + [sym_associated_type] = STATE(668), + [sym_let_declaration] = STATE(668), + [sym_use_declaration] = STATE(668), + [sym_extern_modifier] = STATE(2175), + [sym_visibility_modifier] = STATE(2008), + [sym_bracketed_type] = STATE(3752), + [sym_generic_function] = STATE(1492), + [sym_generic_type_with_turbofish] = STATE(3039), + [sym__expression_except_range] = STATE(1409), + [sym__expression] = STATE(1918), + [sym_macro_invocation] = STATE(401), + [sym_scoped_identifier] = STATE(1589), + [sym_scoped_type_identifier_in_expression_position] = STATE(3335), + [sym_range_expression] = STATE(1505), + [sym_unary_expression] = STATE(1492), + [sym_try_expression] = STATE(1492), + [sym_reference_expression] = STATE(1492), + [sym_binary_expression] = STATE(1492), + [sym_assignment_expression] = STATE(1492), + [sym_compound_assignment_expr] = STATE(1492), + [sym_type_cast_expression] = STATE(1492), + [sym_return_expression] = STATE(1492), + [sym_yield_expression] = STATE(1492), + [sym_call_expression] = STATE(1492), + [sym_array_expression] = STATE(1492), + [sym_parenthesized_expression] = STATE(1492), + [sym_tuple_expression] = STATE(1492), + [sym_unit_expression] = STATE(1492), + [sym_struct_expression] = STATE(1492), + [sym_if_expression] = STATE(404), + [sym_match_expression] = STATE(404), + [sym_while_expression] = STATE(404), + [sym_loop_expression] = STATE(404), + [sym_for_expression] = STATE(404), + [sym_const_block] = STATE(404), + [sym_closure_expression] = STATE(1492), + [sym_closure_parameters] = STATE(229), + [sym_label] = STATE(3504), + [sym_break_expression] = STATE(1492), + [sym_continue_expression] = STATE(1492), + [sym_index_expression] = STATE(1492), + [sym_await_expression] = STATE(1492), + [sym_field_expression] = STATE(1412), + [sym_unsafe_block] = STATE(404), + [sym_async_block] = STATE(404), + [sym_gen_block] = STATE(404), + [sym_try_block] = STATE(404), + [sym_block] = STATE(404), + [sym__literal] = STATE(1492), + [sym_string_literal] = STATE(1530), + [sym_raw_string_literal] = STATE(1530), + [sym_boolean_literal] = STATE(1530), [sym_line_comment] = STATE(5), [sym_block_comment] = STATE(5), [aux_sym_source_file_repeat1] = STATE(8), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [ts_builtin_sym_end] = ACTIONS(125), + [aux_sym_function_modifiers_repeat1] = STATE(2244), + [ts_builtin_sym_end] = ACTIONS(127), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -14979,7 +15080,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(121), + [anon_sym_POUND] = ACTIONS(123), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(39), [anon_sym_break] = ACTIONS(41), @@ -15007,107 +15108,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(85), [anon_sym_while] = ACTIONS(87), [anon_sym_extern] = ACTIONS(89), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(95), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(113), - [sym_metavariable] = ACTIONS(115), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [anon_sym_safe] = 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(6)] = { - [sym__statement] = STATE(771), - [sym_empty_statement] = STATE(662), - [sym_expression_statement] = STATE(662), - [sym_macro_definition] = STATE(662), - [sym_attribute_item] = STATE(662), - [sym_inner_attribute_item] = STATE(662), - [sym_mod_item] = STATE(662), - [sym_foreign_mod_item] = STATE(662), - [sym_struct_item] = STATE(662), - [sym_union_item] = STATE(662), - [sym_enum_item] = STATE(662), - [sym_extern_crate_declaration] = STATE(662), - [sym_const_item] = STATE(662), - [sym_static_item] = STATE(662), - [sym_type_item] = STATE(662), - [sym_function_item] = STATE(662), - [sym_function_signature_item] = STATE(662), - [sym_function_modifiers] = STATE(3616), - [sym_impl_item] = STATE(662), - [sym_trait_item] = STATE(662), - [sym_associated_type] = STATE(662), - [sym_let_declaration] = STATE(662), - [sym_use_declaration] = STATE(662), - [sym_extern_modifier] = STATE(2203), - [sym_visibility_modifier] = STATE(1996), - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1900), - [sym_macro_invocation] = STATE(411), - [sym_scoped_identifier] = STATE(1587), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(392), - [sym_match_expression] = STATE(392), - [sym_while_expression] = STATE(392), - [sym_loop_expression] = STATE(392), - [sym_for_expression] = STATE(392), - [sym_const_block] = STATE(392), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3521), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(392), - [sym_async_block] = STATE(392), - [sym_gen_block] = STATE(392), - [sym_try_block] = STATE(392), - [sym_block] = STATE(392), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), + [sym__statement] = STATE(529), + [sym_empty_statement] = STATE(668), + [sym_expression_statement] = STATE(668), + [sym_macro_definition] = STATE(668), + [sym_attribute_item] = STATE(668), + [sym_inner_attribute_item] = STATE(668), + [sym_mod_item] = STATE(668), + [sym_foreign_mod_item] = STATE(668), + [sym_struct_item] = STATE(668), + [sym_union_item] = STATE(668), + [sym_enum_item] = STATE(668), + [sym_extern_crate_declaration] = STATE(668), + [sym_const_item] = STATE(668), + [sym_static_item] = STATE(668), + [sym_type_item] = STATE(668), + [sym_function_item] = STATE(668), + [sym_function_signature_item] = STATE(668), + [sym_function_modifiers] = STATE(3596), + [sym_impl_item] = STATE(668), + [sym_trait_item] = STATE(668), + [sym_associated_type] = STATE(668), + [sym_let_declaration] = STATE(668), + [sym_use_declaration] = STATE(668), + [sym_extern_modifier] = STATE(2175), + [sym_visibility_modifier] = STATE(2008), + [sym_bracketed_type] = STATE(3752), + [sym_generic_function] = STATE(1492), + [sym_generic_type_with_turbofish] = STATE(3039), + [sym__expression_except_range] = STATE(1409), + [sym__expression] = STATE(1818), + [sym_macro_invocation] = STATE(401), + [sym_scoped_identifier] = STATE(1589), + [sym_scoped_type_identifier_in_expression_position] = STATE(3335), + [sym_range_expression] = STATE(1505), + [sym_unary_expression] = STATE(1492), + [sym_try_expression] = STATE(1492), + [sym_reference_expression] = STATE(1492), + [sym_binary_expression] = STATE(1492), + [sym_assignment_expression] = STATE(1492), + [sym_compound_assignment_expr] = STATE(1492), + [sym_type_cast_expression] = STATE(1492), + [sym_return_expression] = STATE(1492), + [sym_yield_expression] = STATE(1492), + [sym_call_expression] = STATE(1492), + [sym_array_expression] = STATE(1492), + [sym_parenthesized_expression] = STATE(1492), + [sym_tuple_expression] = STATE(1492), + [sym_unit_expression] = STATE(1492), + [sym_struct_expression] = STATE(1492), + [sym_if_expression] = STATE(404), + [sym_match_expression] = STATE(404), + [sym_while_expression] = STATE(404), + [sym_loop_expression] = STATE(404), + [sym_for_expression] = STATE(404), + [sym_const_block] = STATE(404), + [sym_closure_expression] = STATE(1492), + [sym_closure_parameters] = STATE(229), + [sym_label] = STATE(3504), + [sym_break_expression] = STATE(1492), + [sym_continue_expression] = STATE(1492), + [sym_index_expression] = STATE(1492), + [sym_await_expression] = STATE(1492), + [sym_field_expression] = STATE(1412), + [sym_unsafe_block] = STATE(404), + [sym_async_block] = STATE(404), + [sym_gen_block] = STATE(404), + [sym_try_block] = STATE(404), + [sym_block] = STATE(404), + [sym__literal] = STATE(1492), + [sym_string_literal] = STATE(1530), + [sym_raw_string_literal] = STATE(1530), + [sym_boolean_literal] = STATE(1530), [sym_line_comment] = STATE(6), [sym_block_comment] = STATE(6), [aux_sym_source_file_repeat1] = STATE(13), - [aux_sym_function_modifiers_repeat1] = STATE(2252), + [aux_sym_function_modifiers_repeat1] = STATE(2244), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(127), + [anon_sym_RBRACE] = ACTIONS(129), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -15133,7 +15235,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(121), + [anon_sym_POUND] = ACTIONS(123), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(39), [anon_sym_break] = ACTIONS(41), @@ -15161,101 +15263,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(85), [anon_sym_while] = ACTIONS(87), [anon_sym_extern] = ACTIONS(89), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(95), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(113), - [sym_metavariable] = ACTIONS(115), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [anon_sym_safe] = 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(7)] = { - [sym__statement] = STATE(771), - [sym_empty_statement] = STATE(662), - [sym_expression_statement] = STATE(662), - [sym_macro_definition] = STATE(662), - [sym_attribute_item] = STATE(662), - [sym_inner_attribute_item] = STATE(662), - [sym_mod_item] = STATE(662), - [sym_foreign_mod_item] = STATE(662), - [sym_struct_item] = STATE(662), - [sym_union_item] = STATE(662), - [sym_enum_item] = STATE(662), - [sym_extern_crate_declaration] = STATE(662), - [sym_const_item] = STATE(662), - [sym_static_item] = STATE(662), - [sym_type_item] = STATE(662), - [sym_function_item] = STATE(662), - [sym_function_signature_item] = STATE(662), - [sym_function_modifiers] = STATE(3616), - [sym_impl_item] = STATE(662), - [sym_trait_item] = STATE(662), - [sym_associated_type] = STATE(662), - [sym_let_declaration] = STATE(662), - [sym_use_declaration] = STATE(662), - [sym_extern_modifier] = STATE(2203), - [sym_visibility_modifier] = STATE(1996), - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1913), - [sym_macro_invocation] = STATE(411), - [sym_scoped_identifier] = STATE(1587), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(392), - [sym_match_expression] = STATE(392), - [sym_while_expression] = STATE(392), - [sym_loop_expression] = STATE(392), - [sym_for_expression] = STATE(392), - [sym_const_block] = STATE(392), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3521), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(392), - [sym_async_block] = STATE(392), - [sym_gen_block] = STATE(392), - [sym_try_block] = STATE(392), - [sym_block] = STATE(392), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), + [sym__statement] = STATE(529), + [sym_empty_statement] = STATE(668), + [sym_expression_statement] = STATE(668), + [sym_macro_definition] = STATE(668), + [sym_attribute_item] = STATE(668), + [sym_inner_attribute_item] = STATE(668), + [sym_mod_item] = STATE(668), + [sym_foreign_mod_item] = STATE(668), + [sym_struct_item] = STATE(668), + [sym_union_item] = STATE(668), + [sym_enum_item] = STATE(668), + [sym_extern_crate_declaration] = STATE(668), + [sym_const_item] = STATE(668), + [sym_static_item] = STATE(668), + [sym_type_item] = STATE(668), + [sym_function_item] = STATE(668), + [sym_function_signature_item] = STATE(668), + [sym_function_modifiers] = STATE(3596), + [sym_impl_item] = STATE(668), + [sym_trait_item] = STATE(668), + [sym_associated_type] = STATE(668), + [sym_let_declaration] = STATE(668), + [sym_use_declaration] = STATE(668), + [sym_extern_modifier] = STATE(2175), + [sym_visibility_modifier] = STATE(2008), + [sym_bracketed_type] = STATE(3752), + [sym_generic_function] = STATE(1492), + [sym_generic_type_with_turbofish] = STATE(3039), + [sym__expression_except_range] = STATE(1409), + [sym__expression] = STATE(1918), + [sym_macro_invocation] = STATE(401), + [sym_scoped_identifier] = STATE(1589), + [sym_scoped_type_identifier_in_expression_position] = STATE(3335), + [sym_range_expression] = STATE(1505), + [sym_unary_expression] = STATE(1492), + [sym_try_expression] = STATE(1492), + [sym_reference_expression] = STATE(1492), + [sym_binary_expression] = STATE(1492), + [sym_assignment_expression] = STATE(1492), + [sym_compound_assignment_expr] = STATE(1492), + [sym_type_cast_expression] = STATE(1492), + [sym_return_expression] = STATE(1492), + [sym_yield_expression] = STATE(1492), + [sym_call_expression] = STATE(1492), + [sym_array_expression] = STATE(1492), + [sym_parenthesized_expression] = STATE(1492), + [sym_tuple_expression] = STATE(1492), + [sym_unit_expression] = STATE(1492), + [sym_struct_expression] = STATE(1492), + [sym_if_expression] = STATE(404), + [sym_match_expression] = STATE(404), + [sym_while_expression] = STATE(404), + [sym_loop_expression] = STATE(404), + [sym_for_expression] = STATE(404), + [sym_const_block] = STATE(404), + [sym_closure_expression] = STATE(1492), + [sym_closure_parameters] = STATE(229), + [sym_label] = STATE(3504), + [sym_break_expression] = STATE(1492), + [sym_continue_expression] = STATE(1492), + [sym_index_expression] = STATE(1492), + [sym_await_expression] = STATE(1492), + [sym_field_expression] = STATE(1412), + [sym_unsafe_block] = STATE(404), + [sym_async_block] = STATE(404), + [sym_gen_block] = STATE(404), + [sym_try_block] = STATE(404), + [sym_block] = STATE(404), + [sym__literal] = STATE(1492), + [sym_string_literal] = STATE(1530), + [sym_raw_string_literal] = STATE(1530), + [sym_boolean_literal] = STATE(1530), [sym_line_comment] = STATE(7), [sym_block_comment] = STATE(7), [aux_sym_source_file_repeat1] = STATE(8), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [ts_builtin_sym_end] = ACTIONS(129), + [aux_sym_function_modifiers_repeat1] = STATE(2244), + [ts_builtin_sym_end] = ACTIONS(131), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -15287,7 +15390,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(121), + [anon_sym_POUND] = ACTIONS(123), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(39), [anon_sym_break] = ACTIONS(41), @@ -15315,261 +15418,263 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(85), [anon_sym_while] = ACTIONS(87), [anon_sym_extern] = ACTIONS(89), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(95), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(113), - [sym_metavariable] = ACTIONS(115), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [anon_sym_safe] = 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(8)] = { - [sym__statement] = STATE(771), - [sym_empty_statement] = STATE(662), - [sym_expression_statement] = STATE(662), - [sym_macro_definition] = STATE(662), - [sym_attribute_item] = STATE(662), - [sym_inner_attribute_item] = STATE(662), - [sym_mod_item] = STATE(662), - [sym_foreign_mod_item] = STATE(662), - [sym_struct_item] = STATE(662), - [sym_union_item] = STATE(662), - [sym_enum_item] = STATE(662), - [sym_extern_crate_declaration] = STATE(662), - [sym_const_item] = STATE(662), - [sym_static_item] = STATE(662), - [sym_type_item] = STATE(662), - [sym_function_item] = STATE(662), - [sym_function_signature_item] = STATE(662), - [sym_function_modifiers] = STATE(3616), - [sym_impl_item] = STATE(662), - [sym_trait_item] = STATE(662), - [sym_associated_type] = STATE(662), - [sym_let_declaration] = STATE(662), - [sym_use_declaration] = STATE(662), - [sym_extern_modifier] = STATE(2203), - [sym_visibility_modifier] = STATE(1996), - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1913), - [sym_macro_invocation] = STATE(411), - [sym_scoped_identifier] = STATE(1587), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(392), - [sym_match_expression] = STATE(392), - [sym_while_expression] = STATE(392), - [sym_loop_expression] = STATE(392), - [sym_for_expression] = STATE(392), - [sym_const_block] = STATE(392), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3521), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(392), - [sym_async_block] = STATE(392), - [sym_gen_block] = STATE(392), - [sym_try_block] = STATE(392), - [sym_block] = STATE(392), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), + [sym__statement] = STATE(529), + [sym_empty_statement] = STATE(668), + [sym_expression_statement] = STATE(668), + [sym_macro_definition] = STATE(668), + [sym_attribute_item] = STATE(668), + [sym_inner_attribute_item] = STATE(668), + [sym_mod_item] = STATE(668), + [sym_foreign_mod_item] = STATE(668), + [sym_struct_item] = STATE(668), + [sym_union_item] = STATE(668), + [sym_enum_item] = STATE(668), + [sym_extern_crate_declaration] = STATE(668), + [sym_const_item] = STATE(668), + [sym_static_item] = STATE(668), + [sym_type_item] = STATE(668), + [sym_function_item] = STATE(668), + [sym_function_signature_item] = STATE(668), + [sym_function_modifiers] = STATE(3596), + [sym_impl_item] = STATE(668), + [sym_trait_item] = STATE(668), + [sym_associated_type] = STATE(668), + [sym_let_declaration] = STATE(668), + [sym_use_declaration] = STATE(668), + [sym_extern_modifier] = STATE(2175), + [sym_visibility_modifier] = STATE(2008), + [sym_bracketed_type] = STATE(3752), + [sym_generic_function] = STATE(1492), + [sym_generic_type_with_turbofish] = STATE(3039), + [sym__expression_except_range] = STATE(1409), + [sym__expression] = STATE(1918), + [sym_macro_invocation] = STATE(401), + [sym_scoped_identifier] = STATE(1589), + [sym_scoped_type_identifier_in_expression_position] = STATE(3335), + [sym_range_expression] = STATE(1505), + [sym_unary_expression] = STATE(1492), + [sym_try_expression] = STATE(1492), + [sym_reference_expression] = STATE(1492), + [sym_binary_expression] = STATE(1492), + [sym_assignment_expression] = STATE(1492), + [sym_compound_assignment_expr] = STATE(1492), + [sym_type_cast_expression] = STATE(1492), + [sym_return_expression] = STATE(1492), + [sym_yield_expression] = STATE(1492), + [sym_call_expression] = STATE(1492), + [sym_array_expression] = STATE(1492), + [sym_parenthesized_expression] = STATE(1492), + [sym_tuple_expression] = STATE(1492), + [sym_unit_expression] = STATE(1492), + [sym_struct_expression] = STATE(1492), + [sym_if_expression] = STATE(404), + [sym_match_expression] = STATE(404), + [sym_while_expression] = STATE(404), + [sym_loop_expression] = STATE(404), + [sym_for_expression] = STATE(404), + [sym_const_block] = STATE(404), + [sym_closure_expression] = STATE(1492), + [sym_closure_parameters] = STATE(229), + [sym_label] = STATE(3504), + [sym_break_expression] = STATE(1492), + [sym_continue_expression] = STATE(1492), + [sym_index_expression] = STATE(1492), + [sym_await_expression] = STATE(1492), + [sym_field_expression] = STATE(1412), + [sym_unsafe_block] = STATE(404), + [sym_async_block] = STATE(404), + [sym_gen_block] = STATE(404), + [sym_try_block] = STATE(404), + [sym_block] = STATE(404), + [sym__literal] = STATE(1492), + [sym_string_literal] = STATE(1530), + [sym_raw_string_literal] = STATE(1530), + [sym_boolean_literal] = STATE(1530), [sym_line_comment] = STATE(8), [sym_block_comment] = STATE(8), [aux_sym_source_file_repeat1] = STATE(8), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [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_yield] = ACTIONS(256), - [anon_sym_move] = ACTIONS(259), - [anon_sym_try] = ACTIONS(262), - [sym_integer_literal] = ACTIONS(265), - [aux_sym_string_literal_token1] = ACTIONS(268), - [sym_char_literal] = ACTIONS(265), - [anon_sym_true] = ACTIONS(271), - [anon_sym_false] = ACTIONS(271), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(274), - [sym_super] = ACTIONS(277), - [sym_crate] = ACTIONS(280), - [sym_metavariable] = ACTIONS(283), - [sym__raw_string_literal_start] = ACTIONS(286), - [sym_float_literal] = ACTIONS(265), + [aux_sym_function_modifiers_repeat1] = STATE(2244), + [ts_builtin_sym_end] = ACTIONS(133), + [sym_identifier] = ACTIONS(135), + [anon_sym_SEMI] = ACTIONS(138), + [anon_sym_macro_rules_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(144), + [anon_sym_LBRACK] = ACTIONS(147), + [anon_sym_LBRACE] = ACTIONS(150), + [anon_sym_STAR] = ACTIONS(153), + [anon_sym_u8] = ACTIONS(156), + [anon_sym_i8] = ACTIONS(156), + [anon_sym_u16] = ACTIONS(156), + [anon_sym_i16] = ACTIONS(156), + [anon_sym_u32] = ACTIONS(156), + [anon_sym_i32] = ACTIONS(156), + [anon_sym_u64] = ACTIONS(156), + [anon_sym_i64] = ACTIONS(156), + [anon_sym_u128] = ACTIONS(156), + [anon_sym_i128] = ACTIONS(156), + [anon_sym_isize] = ACTIONS(156), + [anon_sym_usize] = ACTIONS(156), + [anon_sym_f32] = ACTIONS(156), + [anon_sym_f64] = ACTIONS(156), + [anon_sym_bool] = ACTIONS(156), + [anon_sym_str] = ACTIONS(156), + [anon_sym_char] = ACTIONS(156), + [anon_sym_DASH] = ACTIONS(153), + [anon_sym_BANG] = ACTIONS(153), + [anon_sym_AMP] = ACTIONS(159), + [anon_sym_PIPE] = ACTIONS(162), + [anon_sym_LT] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(168), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_POUND] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(177), + [anon_sym_async] = ACTIONS(180), + [anon_sym_break] = ACTIONS(183), + [anon_sym_const] = ACTIONS(186), + [anon_sym_continue] = ACTIONS(189), + [anon_sym_default] = ACTIONS(192), + [anon_sym_enum] = ACTIONS(195), + [anon_sym_fn] = ACTIONS(198), + [anon_sym_for] = ACTIONS(201), + [anon_sym_gen] = ACTIONS(204), + [anon_sym_if] = ACTIONS(207), + [anon_sym_impl] = ACTIONS(210), + [anon_sym_let] = ACTIONS(213), + [anon_sym_loop] = ACTIONS(216), + [anon_sym_match] = ACTIONS(219), + [anon_sym_mod] = ACTIONS(222), + [anon_sym_pub] = ACTIONS(225), + [anon_sym_return] = ACTIONS(228), + [anon_sym_static] = ACTIONS(231), + [anon_sym_struct] = ACTIONS(234), + [anon_sym_trait] = ACTIONS(237), + [anon_sym_type] = ACTIONS(240), + [anon_sym_union] = ACTIONS(243), + [anon_sym_unsafe] = ACTIONS(246), + [anon_sym_use] = ACTIONS(249), + [anon_sym_while] = ACTIONS(252), + [anon_sym_extern] = ACTIONS(255), + [anon_sym_safe] = ACTIONS(258), + [anon_sym_yield] = ACTIONS(261), + [anon_sym_move] = ACTIONS(264), + [anon_sym_try] = ACTIONS(267), + [sym_integer_literal] = ACTIONS(270), + [aux_sym_string_literal_token1] = ACTIONS(273), + [sym_char_literal] = ACTIONS(270), + [anon_sym_true] = ACTIONS(276), + [anon_sym_false] = ACTIONS(276), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(279), + [sym_super] = ACTIONS(282), + [sym_crate] = ACTIONS(285), + [sym_metavariable] = ACTIONS(288), + [sym__raw_string_literal_start] = ACTIONS(291), + [sym_float_literal] = ACTIONS(270), }, [STATE(9)] = { - [sym__statement] = STATE(771), - [sym_empty_statement] = STATE(662), - [sym_expression_statement] = STATE(662), - [sym_macro_definition] = STATE(662), - [sym_attribute_item] = STATE(662), - [sym_inner_attribute_item] = STATE(662), - [sym_mod_item] = STATE(662), - [sym_foreign_mod_item] = STATE(662), - [sym_struct_item] = STATE(662), - [sym_union_item] = STATE(662), - [sym_enum_item] = STATE(662), - [sym_extern_crate_declaration] = STATE(662), - [sym_const_item] = STATE(662), - [sym_static_item] = STATE(662), - [sym_type_item] = STATE(662), - [sym_function_item] = STATE(662), - [sym_function_signature_item] = STATE(662), - [sym_function_modifiers] = STATE(3616), - [sym_impl_item] = STATE(662), - [sym_trait_item] = STATE(662), - [sym_associated_type] = STATE(662), - [sym_let_declaration] = STATE(662), - [sym_use_declaration] = STATE(662), - [sym_extern_modifier] = STATE(2203), - [sym_visibility_modifier] = STATE(1996), - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1852), - [sym_macro_invocation] = STATE(411), - [sym_scoped_identifier] = STATE(1587), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(392), - [sym_match_expression] = STATE(392), - [sym_while_expression] = STATE(392), - [sym_loop_expression] = STATE(392), - [sym_for_expression] = STATE(392), - [sym_const_block] = STATE(392), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3521), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(392), - [sym_async_block] = STATE(392), - [sym_gen_block] = STATE(392), - [sym_try_block] = STATE(392), - [sym_block] = STATE(392), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), + [sym__statement] = STATE(529), + [sym_empty_statement] = STATE(668), + [sym_expression_statement] = STATE(668), + [sym_macro_definition] = STATE(668), + [sym_attribute_item] = STATE(668), + [sym_inner_attribute_item] = STATE(668), + [sym_mod_item] = STATE(668), + [sym_foreign_mod_item] = STATE(668), + [sym_struct_item] = STATE(668), + [sym_union_item] = STATE(668), + [sym_enum_item] = STATE(668), + [sym_extern_crate_declaration] = STATE(668), + [sym_const_item] = STATE(668), + [sym_static_item] = STATE(668), + [sym_type_item] = STATE(668), + [sym_function_item] = STATE(668), + [sym_function_signature_item] = STATE(668), + [sym_function_modifiers] = STATE(3596), + [sym_impl_item] = STATE(668), + [sym_trait_item] = STATE(668), + [sym_associated_type] = STATE(668), + [sym_let_declaration] = STATE(668), + [sym_use_declaration] = STATE(668), + [sym_extern_modifier] = STATE(2175), + [sym_visibility_modifier] = STATE(2008), + [sym_bracketed_type] = STATE(3752), + [sym_generic_function] = STATE(1492), + [sym_generic_type_with_turbofish] = STATE(3039), + [sym__expression_except_range] = STATE(1409), + [sym__expression] = STATE(1710), + [sym_macro_invocation] = STATE(401), + [sym_scoped_identifier] = STATE(1589), + [sym_scoped_type_identifier_in_expression_position] = STATE(3335), + [sym_range_expression] = STATE(1505), + [sym_unary_expression] = STATE(1492), + [sym_try_expression] = STATE(1492), + [sym_reference_expression] = STATE(1492), + [sym_binary_expression] = STATE(1492), + [sym_assignment_expression] = STATE(1492), + [sym_compound_assignment_expr] = STATE(1492), + [sym_type_cast_expression] = STATE(1492), + [sym_return_expression] = STATE(1492), + [sym_yield_expression] = STATE(1492), + [sym_call_expression] = STATE(1492), + [sym_array_expression] = STATE(1492), + [sym_parenthesized_expression] = STATE(1492), + [sym_tuple_expression] = STATE(1492), + [sym_unit_expression] = STATE(1492), + [sym_struct_expression] = STATE(1492), + [sym_if_expression] = STATE(404), + [sym_match_expression] = STATE(404), + [sym_while_expression] = STATE(404), + [sym_loop_expression] = STATE(404), + [sym_for_expression] = STATE(404), + [sym_const_block] = STATE(404), + [sym_closure_expression] = STATE(1492), + [sym_closure_parameters] = STATE(229), + [sym_label] = STATE(3504), + [sym_break_expression] = STATE(1492), + [sym_continue_expression] = STATE(1492), + [sym_index_expression] = STATE(1492), + [sym_await_expression] = STATE(1492), + [sym_field_expression] = STATE(1412), + [sym_unsafe_block] = STATE(404), + [sym_async_block] = STATE(404), + [sym_gen_block] = STATE(404), + [sym_try_block] = STATE(404), + [sym_block] = STATE(404), + [sym__literal] = STATE(1492), + [sym_string_literal] = STATE(1530), + [sym_raw_string_literal] = STATE(1530), + [sym_boolean_literal] = STATE(1530), [sym_line_comment] = STATE(9), [sym_block_comment] = STATE(9), [aux_sym_source_file_repeat1] = STATE(10), - [aux_sym_function_modifiers_repeat1] = STATE(2252), + [aux_sym_function_modifiers_repeat1] = STATE(2244), [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(289), + [anon_sym_RBRACE] = ACTIONS(294), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -15595,7 +15700,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(121), + [anon_sym_POUND] = ACTIONS(123), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(39), [anon_sym_break] = ACTIONS(41), @@ -15623,107 +15728,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(85), [anon_sym_while] = ACTIONS(87), [anon_sym_extern] = ACTIONS(89), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(95), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(113), - [sym_metavariable] = ACTIONS(115), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [anon_sym_safe] = 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(10)] = { - [sym__statement] = STATE(771), - [sym_empty_statement] = STATE(662), - [sym_expression_statement] = STATE(662), - [sym_macro_definition] = STATE(662), - [sym_attribute_item] = STATE(662), - [sym_inner_attribute_item] = STATE(662), - [sym_mod_item] = STATE(662), - [sym_foreign_mod_item] = STATE(662), - [sym_struct_item] = STATE(662), - [sym_union_item] = STATE(662), - [sym_enum_item] = STATE(662), - [sym_extern_crate_declaration] = STATE(662), - [sym_const_item] = STATE(662), - [sym_static_item] = STATE(662), - [sym_type_item] = STATE(662), - [sym_function_item] = STATE(662), - [sym_function_signature_item] = STATE(662), - [sym_function_modifiers] = STATE(3616), - [sym_impl_item] = STATE(662), - [sym_trait_item] = STATE(662), - [sym_associated_type] = STATE(662), - [sym_let_declaration] = STATE(662), - [sym_use_declaration] = STATE(662), - [sym_extern_modifier] = STATE(2203), - [sym_visibility_modifier] = STATE(1996), - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1754), - [sym_macro_invocation] = STATE(411), - [sym_scoped_identifier] = STATE(1587), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(392), - [sym_match_expression] = STATE(392), - [sym_while_expression] = STATE(392), - [sym_loop_expression] = STATE(392), - [sym_for_expression] = STATE(392), - [sym_const_block] = STATE(392), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3521), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(392), - [sym_async_block] = STATE(392), - [sym_gen_block] = STATE(392), - [sym_try_block] = STATE(392), - [sym_block] = STATE(392), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), + [sym__statement] = STATE(529), + [sym_empty_statement] = STATE(668), + [sym_expression_statement] = STATE(668), + [sym_macro_definition] = STATE(668), + [sym_attribute_item] = STATE(668), + [sym_inner_attribute_item] = STATE(668), + [sym_mod_item] = STATE(668), + [sym_foreign_mod_item] = STATE(668), + [sym_struct_item] = STATE(668), + [sym_union_item] = STATE(668), + [sym_enum_item] = STATE(668), + [sym_extern_crate_declaration] = STATE(668), + [sym_const_item] = STATE(668), + [sym_static_item] = STATE(668), + [sym_type_item] = STATE(668), + [sym_function_item] = STATE(668), + [sym_function_signature_item] = STATE(668), + [sym_function_modifiers] = STATE(3596), + [sym_impl_item] = STATE(668), + [sym_trait_item] = STATE(668), + [sym_associated_type] = STATE(668), + [sym_let_declaration] = STATE(668), + [sym_use_declaration] = STATE(668), + [sym_extern_modifier] = STATE(2175), + [sym_visibility_modifier] = STATE(2008), + [sym_bracketed_type] = STATE(3752), + [sym_generic_function] = STATE(1492), + [sym_generic_type_with_turbofish] = STATE(3039), + [sym__expression_except_range] = STATE(1409), + [sym__expression] = STATE(1895), + [sym_macro_invocation] = STATE(401), + [sym_scoped_identifier] = STATE(1589), + [sym_scoped_type_identifier_in_expression_position] = STATE(3335), + [sym_range_expression] = STATE(1505), + [sym_unary_expression] = STATE(1492), + [sym_try_expression] = STATE(1492), + [sym_reference_expression] = STATE(1492), + [sym_binary_expression] = STATE(1492), + [sym_assignment_expression] = STATE(1492), + [sym_compound_assignment_expr] = STATE(1492), + [sym_type_cast_expression] = STATE(1492), + [sym_return_expression] = STATE(1492), + [sym_yield_expression] = STATE(1492), + [sym_call_expression] = STATE(1492), + [sym_array_expression] = STATE(1492), + [sym_parenthesized_expression] = STATE(1492), + [sym_tuple_expression] = STATE(1492), + [sym_unit_expression] = STATE(1492), + [sym_struct_expression] = STATE(1492), + [sym_if_expression] = STATE(404), + [sym_match_expression] = STATE(404), + [sym_while_expression] = STATE(404), + [sym_loop_expression] = STATE(404), + [sym_for_expression] = STATE(404), + [sym_const_block] = STATE(404), + [sym_closure_expression] = STATE(1492), + [sym_closure_parameters] = STATE(229), + [sym_label] = STATE(3504), + [sym_break_expression] = STATE(1492), + [sym_continue_expression] = STATE(1492), + [sym_index_expression] = STATE(1492), + [sym_await_expression] = STATE(1492), + [sym_field_expression] = STATE(1412), + [sym_unsafe_block] = STATE(404), + [sym_async_block] = STATE(404), + [sym_gen_block] = STATE(404), + [sym_try_block] = STATE(404), + [sym_block] = STATE(404), + [sym__literal] = STATE(1492), + [sym_string_literal] = STATE(1530), + [sym_raw_string_literal] = STATE(1530), + [sym_boolean_literal] = STATE(1530), [sym_line_comment] = STATE(10), [sym_block_comment] = STATE(10), [aux_sym_source_file_repeat1] = STATE(13), - [aux_sym_function_modifiers_repeat1] = STATE(2252), + [aux_sym_function_modifiers_repeat1] = STATE(2244), [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(291), + [anon_sym_RBRACE] = ACTIONS(296), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -15749,7 +15855,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(121), + [anon_sym_POUND] = ACTIONS(123), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(39), [anon_sym_break] = ACTIONS(41), @@ -15777,107 +15883,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(85), [anon_sym_while] = ACTIONS(87), [anon_sym_extern] = ACTIONS(89), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(95), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(113), - [sym_metavariable] = ACTIONS(115), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [anon_sym_safe] = 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(11)] = { - [sym__statement] = STATE(771), - [sym_empty_statement] = STATE(662), - [sym_expression_statement] = STATE(662), - [sym_macro_definition] = STATE(662), - [sym_attribute_item] = STATE(662), - [sym_inner_attribute_item] = STATE(662), - [sym_mod_item] = STATE(662), - [sym_foreign_mod_item] = STATE(662), - [sym_struct_item] = STATE(662), - [sym_union_item] = STATE(662), - [sym_enum_item] = STATE(662), - [sym_extern_crate_declaration] = STATE(662), - [sym_const_item] = STATE(662), - [sym_static_item] = STATE(662), - [sym_type_item] = STATE(662), - [sym_function_item] = STATE(662), - [sym_function_signature_item] = STATE(662), - [sym_function_modifiers] = STATE(3616), - [sym_impl_item] = STATE(662), - [sym_trait_item] = STATE(662), - [sym_associated_type] = STATE(662), - [sym_let_declaration] = STATE(662), - [sym_use_declaration] = STATE(662), - [sym_extern_modifier] = STATE(2203), - [sym_visibility_modifier] = STATE(1996), - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1904), - [sym_macro_invocation] = STATE(411), - [sym_scoped_identifier] = STATE(1587), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(392), - [sym_match_expression] = STATE(392), - [sym_while_expression] = STATE(392), - [sym_loop_expression] = STATE(392), - [sym_for_expression] = STATE(392), - [sym_const_block] = STATE(392), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3521), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(392), - [sym_async_block] = STATE(392), - [sym_gen_block] = STATE(392), - [sym_try_block] = STATE(392), - [sym_block] = STATE(392), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), + [sym__statement] = STATE(529), + [sym_empty_statement] = STATE(668), + [sym_expression_statement] = STATE(668), + [sym_macro_definition] = STATE(668), + [sym_attribute_item] = STATE(668), + [sym_inner_attribute_item] = STATE(668), + [sym_mod_item] = STATE(668), + [sym_foreign_mod_item] = STATE(668), + [sym_struct_item] = STATE(668), + [sym_union_item] = STATE(668), + [sym_enum_item] = STATE(668), + [sym_extern_crate_declaration] = STATE(668), + [sym_const_item] = STATE(668), + [sym_static_item] = STATE(668), + [sym_type_item] = STATE(668), + [sym_function_item] = STATE(668), + [sym_function_signature_item] = STATE(668), + [sym_function_modifiers] = STATE(3596), + [sym_impl_item] = STATE(668), + [sym_trait_item] = STATE(668), + [sym_associated_type] = STATE(668), + [sym_let_declaration] = STATE(668), + [sym_use_declaration] = STATE(668), + [sym_extern_modifier] = STATE(2175), + [sym_visibility_modifier] = STATE(2008), + [sym_bracketed_type] = STATE(3752), + [sym_generic_function] = STATE(1492), + [sym_generic_type_with_turbofish] = STATE(3039), + [sym__expression_except_range] = STATE(1409), + [sym__expression] = STATE(1856), + [sym_macro_invocation] = STATE(401), + [sym_scoped_identifier] = STATE(1589), + [sym_scoped_type_identifier_in_expression_position] = STATE(3335), + [sym_range_expression] = STATE(1505), + [sym_unary_expression] = STATE(1492), + [sym_try_expression] = STATE(1492), + [sym_reference_expression] = STATE(1492), + [sym_binary_expression] = STATE(1492), + [sym_assignment_expression] = STATE(1492), + [sym_compound_assignment_expr] = STATE(1492), + [sym_type_cast_expression] = STATE(1492), + [sym_return_expression] = STATE(1492), + [sym_yield_expression] = STATE(1492), + [sym_call_expression] = STATE(1492), + [sym_array_expression] = STATE(1492), + [sym_parenthesized_expression] = STATE(1492), + [sym_tuple_expression] = STATE(1492), + [sym_unit_expression] = STATE(1492), + [sym_struct_expression] = STATE(1492), + [sym_if_expression] = STATE(404), + [sym_match_expression] = STATE(404), + [sym_while_expression] = STATE(404), + [sym_loop_expression] = STATE(404), + [sym_for_expression] = STATE(404), + [sym_const_block] = STATE(404), + [sym_closure_expression] = STATE(1492), + [sym_closure_parameters] = STATE(229), + [sym_label] = STATE(3504), + [sym_break_expression] = STATE(1492), + [sym_continue_expression] = STATE(1492), + [sym_index_expression] = STATE(1492), + [sym_await_expression] = STATE(1492), + [sym_field_expression] = STATE(1412), + [sym_unsafe_block] = STATE(404), + [sym_async_block] = STATE(404), + [sym_gen_block] = STATE(404), + [sym_try_block] = STATE(404), + [sym_block] = STATE(404), + [sym__literal] = STATE(1492), + [sym_string_literal] = STATE(1530), + [sym_raw_string_literal] = STATE(1530), + [sym_boolean_literal] = STATE(1530), [sym_line_comment] = STATE(11), [sym_block_comment] = STATE(11), [aux_sym_source_file_repeat1] = STATE(12), - [aux_sym_function_modifiers_repeat1] = STATE(2252), + [aux_sym_function_modifiers_repeat1] = STATE(2244), [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(293), + [anon_sym_RBRACE] = ACTIONS(298), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -15903,7 +16010,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(121), + [anon_sym_POUND] = ACTIONS(123), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(39), [anon_sym_break] = ACTIONS(41), @@ -15931,107 +16038,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(85), [anon_sym_while] = ACTIONS(87), [anon_sym_extern] = ACTIONS(89), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(95), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(113), - [sym_metavariable] = ACTIONS(115), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [anon_sym_safe] = 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(12)] = { - [sym__statement] = STATE(771), - [sym_empty_statement] = STATE(662), - [sym_expression_statement] = STATE(662), - [sym_macro_definition] = STATE(662), - [sym_attribute_item] = STATE(662), - [sym_inner_attribute_item] = STATE(662), - [sym_mod_item] = STATE(662), - [sym_foreign_mod_item] = STATE(662), - [sym_struct_item] = STATE(662), - [sym_union_item] = STATE(662), - [sym_enum_item] = STATE(662), - [sym_extern_crate_declaration] = STATE(662), - [sym_const_item] = STATE(662), - [sym_static_item] = STATE(662), - [sym_type_item] = STATE(662), - [sym_function_item] = STATE(662), - [sym_function_signature_item] = STATE(662), - [sym_function_modifiers] = STATE(3616), - [sym_impl_item] = STATE(662), - [sym_trait_item] = STATE(662), - [sym_associated_type] = STATE(662), - [sym_let_declaration] = STATE(662), - [sym_use_declaration] = STATE(662), - [sym_extern_modifier] = STATE(2203), - [sym_visibility_modifier] = STATE(1996), - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1817), - [sym_macro_invocation] = STATE(411), - [sym_scoped_identifier] = STATE(1587), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(392), - [sym_match_expression] = STATE(392), - [sym_while_expression] = STATE(392), - [sym_loop_expression] = STATE(392), - [sym_for_expression] = STATE(392), - [sym_const_block] = STATE(392), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3521), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(392), - [sym_async_block] = STATE(392), - [sym_gen_block] = STATE(392), - [sym_try_block] = STATE(392), - [sym_block] = STATE(392), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), + [sym__statement] = STATE(529), + [sym_empty_statement] = STATE(668), + [sym_expression_statement] = STATE(668), + [sym_macro_definition] = STATE(668), + [sym_attribute_item] = STATE(668), + [sym_inner_attribute_item] = STATE(668), + [sym_mod_item] = STATE(668), + [sym_foreign_mod_item] = STATE(668), + [sym_struct_item] = STATE(668), + [sym_union_item] = STATE(668), + [sym_enum_item] = STATE(668), + [sym_extern_crate_declaration] = STATE(668), + [sym_const_item] = STATE(668), + [sym_static_item] = STATE(668), + [sym_type_item] = STATE(668), + [sym_function_item] = STATE(668), + [sym_function_signature_item] = STATE(668), + [sym_function_modifiers] = STATE(3596), + [sym_impl_item] = STATE(668), + [sym_trait_item] = STATE(668), + [sym_associated_type] = STATE(668), + [sym_let_declaration] = STATE(668), + [sym_use_declaration] = STATE(668), + [sym_extern_modifier] = STATE(2175), + [sym_visibility_modifier] = STATE(2008), + [sym_bracketed_type] = STATE(3752), + [sym_generic_function] = STATE(1492), + [sym_generic_type_with_turbofish] = STATE(3039), + [sym__expression_except_range] = STATE(1409), + [sym__expression] = STATE(1862), + [sym_macro_invocation] = STATE(401), + [sym_scoped_identifier] = STATE(1589), + [sym_scoped_type_identifier_in_expression_position] = STATE(3335), + [sym_range_expression] = STATE(1505), + [sym_unary_expression] = STATE(1492), + [sym_try_expression] = STATE(1492), + [sym_reference_expression] = STATE(1492), + [sym_binary_expression] = STATE(1492), + [sym_assignment_expression] = STATE(1492), + [sym_compound_assignment_expr] = STATE(1492), + [sym_type_cast_expression] = STATE(1492), + [sym_return_expression] = STATE(1492), + [sym_yield_expression] = STATE(1492), + [sym_call_expression] = STATE(1492), + [sym_array_expression] = STATE(1492), + [sym_parenthesized_expression] = STATE(1492), + [sym_tuple_expression] = STATE(1492), + [sym_unit_expression] = STATE(1492), + [sym_struct_expression] = STATE(1492), + [sym_if_expression] = STATE(404), + [sym_match_expression] = STATE(404), + [sym_while_expression] = STATE(404), + [sym_loop_expression] = STATE(404), + [sym_for_expression] = STATE(404), + [sym_const_block] = STATE(404), + [sym_closure_expression] = STATE(1492), + [sym_closure_parameters] = STATE(229), + [sym_label] = STATE(3504), + [sym_break_expression] = STATE(1492), + [sym_continue_expression] = STATE(1492), + [sym_index_expression] = STATE(1492), + [sym_await_expression] = STATE(1492), + [sym_field_expression] = STATE(1412), + [sym_unsafe_block] = STATE(404), + [sym_async_block] = STATE(404), + [sym_gen_block] = STATE(404), + [sym_try_block] = STATE(404), + [sym_block] = STATE(404), + [sym__literal] = STATE(1492), + [sym_string_literal] = STATE(1530), + [sym_raw_string_literal] = STATE(1530), + [sym_boolean_literal] = STATE(1530), [sym_line_comment] = STATE(12), [sym_block_comment] = STATE(12), [aux_sym_source_file_repeat1] = STATE(13), - [aux_sym_function_modifiers_repeat1] = STATE(2252), + [aux_sym_function_modifiers_repeat1] = STATE(2244), [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_RBRACE] = ACTIONS(300), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -16057,7 +16165,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(121), + [anon_sym_POUND] = ACTIONS(123), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(39), [anon_sym_break] = ACTIONS(41), @@ -16085,261 +16193,263 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(85), [anon_sym_while] = ACTIONS(87), [anon_sym_extern] = ACTIONS(89), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(95), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(113), - [sym_metavariable] = ACTIONS(115), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [anon_sym_safe] = 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(13)] = { - [sym__statement] = STATE(771), - [sym_empty_statement] = STATE(662), - [sym_expression_statement] = STATE(662), - [sym_macro_definition] = STATE(662), - [sym_attribute_item] = STATE(662), - [sym_inner_attribute_item] = STATE(662), - [sym_mod_item] = STATE(662), - [sym_foreign_mod_item] = STATE(662), - [sym_struct_item] = STATE(662), - [sym_union_item] = STATE(662), - [sym_enum_item] = STATE(662), - [sym_extern_crate_declaration] = STATE(662), - [sym_const_item] = STATE(662), - [sym_static_item] = STATE(662), - [sym_type_item] = STATE(662), - [sym_function_item] = STATE(662), - [sym_function_signature_item] = STATE(662), - [sym_function_modifiers] = STATE(3616), - [sym_impl_item] = STATE(662), - [sym_trait_item] = STATE(662), - [sym_associated_type] = STATE(662), - [sym_let_declaration] = STATE(662), - [sym_use_declaration] = STATE(662), - [sym_extern_modifier] = STATE(2203), - [sym_visibility_modifier] = STATE(1996), - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1913), - [sym_macro_invocation] = STATE(419), - [sym_scoped_identifier] = STATE(1587), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(392), - [sym_match_expression] = STATE(392), - [sym_while_expression] = STATE(392), - [sym_loop_expression] = STATE(392), - [sym_for_expression] = STATE(392), - [sym_const_block] = STATE(392), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3521), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(392), - [sym_async_block] = STATE(392), - [sym_gen_block] = STATE(392), - [sym_try_block] = STATE(392), - [sym_block] = STATE(392), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), + [sym__statement] = STATE(529), + [sym_empty_statement] = STATE(668), + [sym_expression_statement] = STATE(668), + [sym_macro_definition] = STATE(668), + [sym_attribute_item] = STATE(668), + [sym_inner_attribute_item] = STATE(668), + [sym_mod_item] = STATE(668), + [sym_foreign_mod_item] = STATE(668), + [sym_struct_item] = STATE(668), + [sym_union_item] = STATE(668), + [sym_enum_item] = STATE(668), + [sym_extern_crate_declaration] = STATE(668), + [sym_const_item] = STATE(668), + [sym_static_item] = STATE(668), + [sym_type_item] = STATE(668), + [sym_function_item] = STATE(668), + [sym_function_signature_item] = STATE(668), + [sym_function_modifiers] = STATE(3596), + [sym_impl_item] = STATE(668), + [sym_trait_item] = STATE(668), + [sym_associated_type] = STATE(668), + [sym_let_declaration] = STATE(668), + [sym_use_declaration] = STATE(668), + [sym_extern_modifier] = STATE(2175), + [sym_visibility_modifier] = STATE(2008), + [sym_bracketed_type] = STATE(3752), + [sym_generic_function] = STATE(1492), + [sym_generic_type_with_turbofish] = STATE(3039), + [sym__expression_except_range] = STATE(1409), + [sym__expression] = STATE(1918), + [sym_macro_invocation] = STATE(421), + [sym_scoped_identifier] = STATE(1589), + [sym_scoped_type_identifier_in_expression_position] = STATE(3335), + [sym_range_expression] = STATE(1505), + [sym_unary_expression] = STATE(1492), + [sym_try_expression] = STATE(1492), + [sym_reference_expression] = STATE(1492), + [sym_binary_expression] = STATE(1492), + [sym_assignment_expression] = STATE(1492), + [sym_compound_assignment_expr] = STATE(1492), + [sym_type_cast_expression] = STATE(1492), + [sym_return_expression] = STATE(1492), + [sym_yield_expression] = STATE(1492), + [sym_call_expression] = STATE(1492), + [sym_array_expression] = STATE(1492), + [sym_parenthesized_expression] = STATE(1492), + [sym_tuple_expression] = STATE(1492), + [sym_unit_expression] = STATE(1492), + [sym_struct_expression] = STATE(1492), + [sym_if_expression] = STATE(404), + [sym_match_expression] = STATE(404), + [sym_while_expression] = STATE(404), + [sym_loop_expression] = STATE(404), + [sym_for_expression] = STATE(404), + [sym_const_block] = STATE(404), + [sym_closure_expression] = STATE(1492), + [sym_closure_parameters] = STATE(229), + [sym_label] = STATE(3504), + [sym_break_expression] = STATE(1492), + [sym_continue_expression] = STATE(1492), + [sym_index_expression] = STATE(1492), + [sym_await_expression] = STATE(1492), + [sym_field_expression] = STATE(1412), + [sym_unsafe_block] = STATE(404), + [sym_async_block] = STATE(404), + [sym_gen_block] = STATE(404), + [sym_try_block] = STATE(404), + [sym_block] = STATE(404), + [sym__literal] = STATE(1492), + [sym_string_literal] = STATE(1530), + [sym_raw_string_literal] = STATE(1530), + [sym_boolean_literal] = STATE(1530), [sym_line_comment] = STATE(13), [sym_block_comment] = STATE(13), [aux_sym_source_file_repeat1] = STATE(13), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(133), - [anon_sym_SEMI] = ACTIONS(136), - [anon_sym_macro_rules_BANG] = ACTIONS(139), - [anon_sym_LPAREN] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(148), - [anon_sym_RBRACE] = ACTIONS(131), - [anon_sym_STAR] = ACTIONS(151), - [anon_sym_u8] = ACTIONS(154), - [anon_sym_i8] = ACTIONS(154), - [anon_sym_u16] = ACTIONS(154), - [anon_sym_i16] = ACTIONS(154), - [anon_sym_u32] = ACTIONS(154), - [anon_sym_i32] = ACTIONS(154), - [anon_sym_u64] = ACTIONS(154), - [anon_sym_i64] = ACTIONS(154), - [anon_sym_u128] = ACTIONS(154), - [anon_sym_i128] = ACTIONS(154), - [anon_sym_isize] = ACTIONS(154), - [anon_sym_usize] = ACTIONS(154), - [anon_sym_f32] = ACTIONS(154), - [anon_sym_f64] = ACTIONS(154), - [anon_sym_bool] = ACTIONS(154), - [anon_sym_str] = ACTIONS(154), - [anon_sym_char] = ACTIONS(154), - [anon_sym_DASH] = ACTIONS(151), - [anon_sym_BANG] = ACTIONS(151), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_PIPE] = ACTIONS(160), - [anon_sym_LT] = ACTIONS(163), - [anon_sym_DOT_DOT] = ACTIONS(166), - [anon_sym_COLON_COLON] = ACTIONS(169), - [anon_sym_POUND] = ACTIONS(172), - [anon_sym_SQUOTE] = ACTIONS(175), - [anon_sym_async] = ACTIONS(178), - [anon_sym_break] = ACTIONS(181), - [anon_sym_const] = ACTIONS(184), - [anon_sym_continue] = ACTIONS(187), - [anon_sym_default] = ACTIONS(190), - [anon_sym_enum] = ACTIONS(193), - [anon_sym_fn] = ACTIONS(196), - [anon_sym_for] = ACTIONS(199), - [anon_sym_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_yield] = ACTIONS(256), - [anon_sym_move] = ACTIONS(259), - [anon_sym_try] = ACTIONS(262), - [sym_integer_literal] = ACTIONS(265), - [aux_sym_string_literal_token1] = ACTIONS(268), - [sym_char_literal] = ACTIONS(265), - [anon_sym_true] = ACTIONS(271), - [anon_sym_false] = ACTIONS(271), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(274), - [sym_super] = ACTIONS(277), - [sym_crate] = ACTIONS(280), - [sym_metavariable] = ACTIONS(283), - [sym__raw_string_literal_start] = ACTIONS(286), - [sym_float_literal] = ACTIONS(265), + [aux_sym_function_modifiers_repeat1] = STATE(2244), + [sym_identifier] = ACTIONS(135), + [anon_sym_SEMI] = ACTIONS(138), + [anon_sym_macro_rules_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(144), + [anon_sym_LBRACK] = ACTIONS(147), + [anon_sym_LBRACE] = ACTIONS(150), + [anon_sym_RBRACE] = ACTIONS(133), + [anon_sym_STAR] = ACTIONS(153), + [anon_sym_u8] = ACTIONS(156), + [anon_sym_i8] = ACTIONS(156), + [anon_sym_u16] = ACTIONS(156), + [anon_sym_i16] = ACTIONS(156), + [anon_sym_u32] = ACTIONS(156), + [anon_sym_i32] = ACTIONS(156), + [anon_sym_u64] = ACTIONS(156), + [anon_sym_i64] = ACTIONS(156), + [anon_sym_u128] = ACTIONS(156), + [anon_sym_i128] = ACTIONS(156), + [anon_sym_isize] = ACTIONS(156), + [anon_sym_usize] = ACTIONS(156), + [anon_sym_f32] = ACTIONS(156), + [anon_sym_f64] = ACTIONS(156), + [anon_sym_bool] = ACTIONS(156), + [anon_sym_str] = ACTIONS(156), + [anon_sym_char] = ACTIONS(156), + [anon_sym_DASH] = ACTIONS(153), + [anon_sym_BANG] = ACTIONS(153), + [anon_sym_AMP] = ACTIONS(159), + [anon_sym_PIPE] = ACTIONS(162), + [anon_sym_LT] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(168), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_POUND] = ACTIONS(174), + [anon_sym_SQUOTE] = ACTIONS(177), + [anon_sym_async] = ACTIONS(180), + [anon_sym_break] = ACTIONS(183), + [anon_sym_const] = ACTIONS(186), + [anon_sym_continue] = ACTIONS(189), + [anon_sym_default] = ACTIONS(192), + [anon_sym_enum] = ACTIONS(195), + [anon_sym_fn] = ACTIONS(198), + [anon_sym_for] = ACTIONS(201), + [anon_sym_gen] = ACTIONS(204), + [anon_sym_if] = ACTIONS(207), + [anon_sym_impl] = ACTIONS(210), + [anon_sym_let] = ACTIONS(213), + [anon_sym_loop] = ACTIONS(216), + [anon_sym_match] = ACTIONS(219), + [anon_sym_mod] = ACTIONS(222), + [anon_sym_pub] = ACTIONS(225), + [anon_sym_return] = ACTIONS(228), + [anon_sym_static] = ACTIONS(231), + [anon_sym_struct] = ACTIONS(234), + [anon_sym_trait] = ACTIONS(237), + [anon_sym_type] = ACTIONS(240), + [anon_sym_union] = ACTIONS(243), + [anon_sym_unsafe] = ACTIONS(246), + [anon_sym_use] = ACTIONS(249), + [anon_sym_while] = ACTIONS(252), + [anon_sym_extern] = ACTIONS(255), + [anon_sym_safe] = ACTIONS(258), + [anon_sym_yield] = ACTIONS(261), + [anon_sym_move] = ACTIONS(264), + [anon_sym_try] = ACTIONS(267), + [sym_integer_literal] = ACTIONS(270), + [aux_sym_string_literal_token1] = ACTIONS(273), + [sym_char_literal] = ACTIONS(270), + [anon_sym_true] = ACTIONS(276), + [anon_sym_false] = ACTIONS(276), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(279), + [sym_super] = ACTIONS(282), + [sym_crate] = ACTIONS(285), + [sym_metavariable] = ACTIONS(288), + [sym__raw_string_literal_start] = ACTIONS(291), + [sym_float_literal] = ACTIONS(270), }, [STATE(14)] = { - [sym__statement] = STATE(771), - [sym_empty_statement] = STATE(662), - [sym_expression_statement] = STATE(662), - [sym_macro_definition] = STATE(662), - [sym_attribute_item] = STATE(662), - [sym_inner_attribute_item] = STATE(662), - [sym_mod_item] = STATE(662), - [sym_foreign_mod_item] = STATE(662), - [sym_struct_item] = STATE(662), - [sym_union_item] = STATE(662), - [sym_enum_item] = STATE(662), - [sym_extern_crate_declaration] = STATE(662), - [sym_const_item] = STATE(662), - [sym_static_item] = STATE(662), - [sym_type_item] = STATE(662), - [sym_function_item] = STATE(662), - [sym_function_signature_item] = STATE(662), - [sym_function_modifiers] = STATE(3616), - [sym_impl_item] = STATE(662), - [sym_trait_item] = STATE(662), - [sym_associated_type] = STATE(662), - [sym_let_declaration] = STATE(662), - [sym_use_declaration] = STATE(662), - [sym_extern_modifier] = STATE(2203), - [sym_visibility_modifier] = STATE(1996), - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1827), - [sym_macro_invocation] = STATE(411), - [sym_scoped_identifier] = STATE(1587), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(392), - [sym_match_expression] = STATE(392), - [sym_while_expression] = STATE(392), - [sym_loop_expression] = STATE(392), - [sym_for_expression] = STATE(392), - [sym_const_block] = STATE(392), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3521), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(392), - [sym_async_block] = STATE(392), - [sym_gen_block] = STATE(392), - [sym_try_block] = STATE(392), - [sym_block] = STATE(392), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), + [sym__statement] = STATE(529), + [sym_empty_statement] = STATE(668), + [sym_expression_statement] = STATE(668), + [sym_macro_definition] = STATE(668), + [sym_attribute_item] = STATE(668), + [sym_inner_attribute_item] = STATE(668), + [sym_mod_item] = STATE(668), + [sym_foreign_mod_item] = STATE(668), + [sym_struct_item] = STATE(668), + [sym_union_item] = STATE(668), + [sym_enum_item] = STATE(668), + [sym_extern_crate_declaration] = STATE(668), + [sym_const_item] = STATE(668), + [sym_static_item] = STATE(668), + [sym_type_item] = STATE(668), + [sym_function_item] = STATE(668), + [sym_function_signature_item] = STATE(668), + [sym_function_modifiers] = STATE(3596), + [sym_impl_item] = STATE(668), + [sym_trait_item] = STATE(668), + [sym_associated_type] = STATE(668), + [sym_let_declaration] = STATE(668), + [sym_use_declaration] = STATE(668), + [sym_extern_modifier] = STATE(2175), + [sym_visibility_modifier] = STATE(2008), + [sym_bracketed_type] = STATE(3752), + [sym_generic_function] = STATE(1492), + [sym_generic_type_with_turbofish] = STATE(3039), + [sym__expression_except_range] = STATE(1409), + [sym__expression] = STATE(1869), + [sym_macro_invocation] = STATE(401), + [sym_scoped_identifier] = STATE(1589), + [sym_scoped_type_identifier_in_expression_position] = STATE(3335), + [sym_range_expression] = STATE(1505), + [sym_unary_expression] = STATE(1492), + [sym_try_expression] = STATE(1492), + [sym_reference_expression] = STATE(1492), + [sym_binary_expression] = STATE(1492), + [sym_assignment_expression] = STATE(1492), + [sym_compound_assignment_expr] = STATE(1492), + [sym_type_cast_expression] = STATE(1492), + [sym_return_expression] = STATE(1492), + [sym_yield_expression] = STATE(1492), + [sym_call_expression] = STATE(1492), + [sym_array_expression] = STATE(1492), + [sym_parenthesized_expression] = STATE(1492), + [sym_tuple_expression] = STATE(1492), + [sym_unit_expression] = STATE(1492), + [sym_struct_expression] = STATE(1492), + [sym_if_expression] = STATE(404), + [sym_match_expression] = STATE(404), + [sym_while_expression] = STATE(404), + [sym_loop_expression] = STATE(404), + [sym_for_expression] = STATE(404), + [sym_const_block] = STATE(404), + [sym_closure_expression] = STATE(1492), + [sym_closure_parameters] = STATE(229), + [sym_label] = STATE(3504), + [sym_break_expression] = STATE(1492), + [sym_continue_expression] = STATE(1492), + [sym_index_expression] = STATE(1492), + [sym_await_expression] = STATE(1492), + [sym_field_expression] = STATE(1412), + [sym_unsafe_block] = STATE(404), + [sym_async_block] = STATE(404), + [sym_gen_block] = STATE(404), + [sym_try_block] = STATE(404), + [sym_block] = STATE(404), + [sym__literal] = STATE(1492), + [sym_string_literal] = STATE(1530), + [sym_raw_string_literal] = STATE(1530), + [sym_boolean_literal] = STATE(1530), [sym_line_comment] = STATE(14), [sym_block_comment] = STATE(14), [aux_sym_source_file_repeat1] = STATE(15), - [aux_sym_function_modifiers_repeat1] = STATE(2252), + [aux_sym_function_modifiers_repeat1] = STATE(2244), [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(297), + [anon_sym_RBRACE] = ACTIONS(302), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -16365,7 +16475,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(121), + [anon_sym_POUND] = ACTIONS(123), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(39), [anon_sym_break] = ACTIONS(41), @@ -16393,107 +16503,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(85), [anon_sym_while] = ACTIONS(87), [anon_sym_extern] = ACTIONS(89), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(95), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(113), - [sym_metavariable] = ACTIONS(115), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [anon_sym_safe] = 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(15)] = { - [sym__statement] = STATE(771), - [sym_empty_statement] = STATE(662), - [sym_expression_statement] = STATE(662), - [sym_macro_definition] = STATE(662), - [sym_attribute_item] = STATE(662), - [sym_inner_attribute_item] = STATE(662), - [sym_mod_item] = STATE(662), - [sym_foreign_mod_item] = STATE(662), - [sym_struct_item] = STATE(662), - [sym_union_item] = STATE(662), - [sym_enum_item] = STATE(662), - [sym_extern_crate_declaration] = STATE(662), - [sym_const_item] = STATE(662), - [sym_static_item] = STATE(662), - [sym_type_item] = STATE(662), - [sym_function_item] = STATE(662), - [sym_function_signature_item] = STATE(662), - [sym_function_modifiers] = STATE(3616), - [sym_impl_item] = STATE(662), - [sym_trait_item] = STATE(662), - [sym_associated_type] = STATE(662), - [sym_let_declaration] = STATE(662), - [sym_use_declaration] = STATE(662), - [sym_extern_modifier] = STATE(2203), - [sym_visibility_modifier] = STATE(1996), - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1832), - [sym_macro_invocation] = STATE(411), - [sym_scoped_identifier] = STATE(1587), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(392), - [sym_match_expression] = STATE(392), - [sym_while_expression] = STATE(392), - [sym_loop_expression] = STATE(392), - [sym_for_expression] = STATE(392), - [sym_const_block] = STATE(392), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3521), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(392), - [sym_async_block] = STATE(392), - [sym_gen_block] = STATE(392), - [sym_try_block] = STATE(392), - [sym_block] = STATE(392), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), + [sym__statement] = STATE(529), + [sym_empty_statement] = STATE(668), + [sym_expression_statement] = STATE(668), + [sym_macro_definition] = STATE(668), + [sym_attribute_item] = STATE(668), + [sym_inner_attribute_item] = STATE(668), + [sym_mod_item] = STATE(668), + [sym_foreign_mod_item] = STATE(668), + [sym_struct_item] = STATE(668), + [sym_union_item] = STATE(668), + [sym_enum_item] = STATE(668), + [sym_extern_crate_declaration] = STATE(668), + [sym_const_item] = STATE(668), + [sym_static_item] = STATE(668), + [sym_type_item] = STATE(668), + [sym_function_item] = STATE(668), + [sym_function_signature_item] = STATE(668), + [sym_function_modifiers] = STATE(3596), + [sym_impl_item] = STATE(668), + [sym_trait_item] = STATE(668), + [sym_associated_type] = STATE(668), + [sym_let_declaration] = STATE(668), + [sym_use_declaration] = STATE(668), + [sym_extern_modifier] = STATE(2175), + [sym_visibility_modifier] = STATE(2008), + [sym_bracketed_type] = STATE(3752), + [sym_generic_function] = STATE(1492), + [sym_generic_type_with_turbofish] = STATE(3039), + [sym__expression_except_range] = STATE(1409), + [sym__expression] = STATE(1873), + [sym_macro_invocation] = STATE(401), + [sym_scoped_identifier] = STATE(1589), + [sym_scoped_type_identifier_in_expression_position] = STATE(3335), + [sym_range_expression] = STATE(1505), + [sym_unary_expression] = STATE(1492), + [sym_try_expression] = STATE(1492), + [sym_reference_expression] = STATE(1492), + [sym_binary_expression] = STATE(1492), + [sym_assignment_expression] = STATE(1492), + [sym_compound_assignment_expr] = STATE(1492), + [sym_type_cast_expression] = STATE(1492), + [sym_return_expression] = STATE(1492), + [sym_yield_expression] = STATE(1492), + [sym_call_expression] = STATE(1492), + [sym_array_expression] = STATE(1492), + [sym_parenthesized_expression] = STATE(1492), + [sym_tuple_expression] = STATE(1492), + [sym_unit_expression] = STATE(1492), + [sym_struct_expression] = STATE(1492), + [sym_if_expression] = STATE(404), + [sym_match_expression] = STATE(404), + [sym_while_expression] = STATE(404), + [sym_loop_expression] = STATE(404), + [sym_for_expression] = STATE(404), + [sym_const_block] = STATE(404), + [sym_closure_expression] = STATE(1492), + [sym_closure_parameters] = STATE(229), + [sym_label] = STATE(3504), + [sym_break_expression] = STATE(1492), + [sym_continue_expression] = STATE(1492), + [sym_index_expression] = STATE(1492), + [sym_await_expression] = STATE(1492), + [sym_field_expression] = STATE(1412), + [sym_unsafe_block] = STATE(404), + [sym_async_block] = STATE(404), + [sym_gen_block] = STATE(404), + [sym_try_block] = STATE(404), + [sym_block] = STATE(404), + [sym__literal] = STATE(1492), + [sym_string_literal] = STATE(1530), + [sym_raw_string_literal] = STATE(1530), + [sym_boolean_literal] = STATE(1530), [sym_line_comment] = STATE(15), [sym_block_comment] = STATE(15), [aux_sym_source_file_repeat1] = STATE(13), - [aux_sym_function_modifiers_repeat1] = STATE(2252), + [aux_sym_function_modifiers_repeat1] = STATE(2244), [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(299), + [anon_sym_RBRACE] = ACTIONS(304), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -16519,7 +16630,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(121), + [anon_sym_POUND] = ACTIONS(123), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(39), [anon_sym_break] = ACTIONS(41), @@ -16547,107 +16658,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(85), [anon_sym_while] = ACTIONS(87), [anon_sym_extern] = ACTIONS(89), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(95), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(113), - [sym_metavariable] = ACTIONS(115), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [anon_sym_safe] = 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(16)] = { - [sym__statement] = STATE(771), - [sym_empty_statement] = STATE(662), - [sym_expression_statement] = STATE(662), - [sym_macro_definition] = STATE(662), - [sym_attribute_item] = STATE(662), - [sym_inner_attribute_item] = STATE(662), - [sym_mod_item] = STATE(662), - [sym_foreign_mod_item] = STATE(662), - [sym_struct_item] = STATE(662), - [sym_union_item] = STATE(662), - [sym_enum_item] = STATE(662), - [sym_extern_crate_declaration] = STATE(662), - [sym_const_item] = STATE(662), - [sym_static_item] = STATE(662), - [sym_type_item] = STATE(662), - [sym_function_item] = STATE(662), - [sym_function_signature_item] = STATE(662), - [sym_function_modifiers] = STATE(3616), - [sym_impl_item] = STATE(662), - [sym_trait_item] = STATE(662), - [sym_associated_type] = STATE(662), - [sym_let_declaration] = STATE(662), - [sym_use_declaration] = STATE(662), - [sym_extern_modifier] = STATE(2203), - [sym_visibility_modifier] = STATE(1996), - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1840), - [sym_macro_invocation] = STATE(411), - [sym_scoped_identifier] = STATE(1587), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(392), - [sym_match_expression] = STATE(392), - [sym_while_expression] = STATE(392), - [sym_loop_expression] = STATE(392), - [sym_for_expression] = STATE(392), - [sym_const_block] = STATE(392), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3521), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(392), - [sym_async_block] = STATE(392), - [sym_gen_block] = STATE(392), - [sym_try_block] = STATE(392), - [sym_block] = STATE(392), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), + [sym__statement] = STATE(529), + [sym_empty_statement] = STATE(668), + [sym_expression_statement] = STATE(668), + [sym_macro_definition] = STATE(668), + [sym_attribute_item] = STATE(668), + [sym_inner_attribute_item] = STATE(668), + [sym_mod_item] = STATE(668), + [sym_foreign_mod_item] = STATE(668), + [sym_struct_item] = STATE(668), + [sym_union_item] = STATE(668), + [sym_enum_item] = STATE(668), + [sym_extern_crate_declaration] = STATE(668), + [sym_const_item] = STATE(668), + [sym_static_item] = STATE(668), + [sym_type_item] = STATE(668), + [sym_function_item] = STATE(668), + [sym_function_signature_item] = STATE(668), + [sym_function_modifiers] = STATE(3596), + [sym_impl_item] = STATE(668), + [sym_trait_item] = STATE(668), + [sym_associated_type] = STATE(668), + [sym_let_declaration] = STATE(668), + [sym_use_declaration] = STATE(668), + [sym_extern_modifier] = STATE(2175), + [sym_visibility_modifier] = STATE(2008), + [sym_bracketed_type] = STATE(3752), + [sym_generic_function] = STATE(1492), + [sym_generic_type_with_turbofish] = STATE(3039), + [sym__expression_except_range] = STATE(1409), + [sym__expression] = STATE(1881), + [sym_macro_invocation] = STATE(401), + [sym_scoped_identifier] = STATE(1589), + [sym_scoped_type_identifier_in_expression_position] = STATE(3335), + [sym_range_expression] = STATE(1505), + [sym_unary_expression] = STATE(1492), + [sym_try_expression] = STATE(1492), + [sym_reference_expression] = STATE(1492), + [sym_binary_expression] = STATE(1492), + [sym_assignment_expression] = STATE(1492), + [sym_compound_assignment_expr] = STATE(1492), + [sym_type_cast_expression] = STATE(1492), + [sym_return_expression] = STATE(1492), + [sym_yield_expression] = STATE(1492), + [sym_call_expression] = STATE(1492), + [sym_array_expression] = STATE(1492), + [sym_parenthesized_expression] = STATE(1492), + [sym_tuple_expression] = STATE(1492), + [sym_unit_expression] = STATE(1492), + [sym_struct_expression] = STATE(1492), + [sym_if_expression] = STATE(404), + [sym_match_expression] = STATE(404), + [sym_while_expression] = STATE(404), + [sym_loop_expression] = STATE(404), + [sym_for_expression] = STATE(404), + [sym_const_block] = STATE(404), + [sym_closure_expression] = STATE(1492), + [sym_closure_parameters] = STATE(229), + [sym_label] = STATE(3504), + [sym_break_expression] = STATE(1492), + [sym_continue_expression] = STATE(1492), + [sym_index_expression] = STATE(1492), + [sym_await_expression] = STATE(1492), + [sym_field_expression] = STATE(1412), + [sym_unsafe_block] = STATE(404), + [sym_async_block] = STATE(404), + [sym_gen_block] = STATE(404), + [sym_try_block] = STATE(404), + [sym_block] = STATE(404), + [sym__literal] = STATE(1492), + [sym_string_literal] = STATE(1530), + [sym_raw_string_literal] = STATE(1530), + [sym_boolean_literal] = STATE(1530), [sym_line_comment] = STATE(16), [sym_block_comment] = STATE(16), [aux_sym_source_file_repeat1] = STATE(17), - [aux_sym_function_modifiers_repeat1] = STATE(2252), + [aux_sym_function_modifiers_repeat1] = STATE(2244), [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(301), + [anon_sym_RBRACE] = ACTIONS(306), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -16673,7 +16785,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(121), + [anon_sym_POUND] = ACTIONS(123), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(39), [anon_sym_break] = ACTIONS(41), @@ -16701,107 +16813,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(85), [anon_sym_while] = ACTIONS(87), [anon_sym_extern] = ACTIONS(89), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(95), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(113), - [sym_metavariable] = ACTIONS(115), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [anon_sym_safe] = 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(17)] = { - [sym__statement] = STATE(771), - [sym_empty_statement] = STATE(662), - [sym_expression_statement] = STATE(662), - [sym_macro_definition] = STATE(662), - [sym_attribute_item] = STATE(662), - [sym_inner_attribute_item] = STATE(662), - [sym_mod_item] = STATE(662), - [sym_foreign_mod_item] = STATE(662), - [sym_struct_item] = STATE(662), - [sym_union_item] = STATE(662), - [sym_enum_item] = STATE(662), - [sym_extern_crate_declaration] = STATE(662), - [sym_const_item] = STATE(662), - [sym_static_item] = STATE(662), - [sym_type_item] = STATE(662), - [sym_function_item] = STATE(662), - [sym_function_signature_item] = STATE(662), - [sym_function_modifiers] = STATE(3616), - [sym_impl_item] = STATE(662), - [sym_trait_item] = STATE(662), - [sym_associated_type] = STATE(662), - [sym_let_declaration] = STATE(662), - [sym_use_declaration] = STATE(662), - [sym_extern_modifier] = STATE(2203), - [sym_visibility_modifier] = STATE(1996), - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1850), - [sym_macro_invocation] = STATE(411), - [sym_scoped_identifier] = STATE(1587), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(392), - [sym_match_expression] = STATE(392), - [sym_while_expression] = STATE(392), - [sym_loop_expression] = STATE(392), - [sym_for_expression] = STATE(392), - [sym_const_block] = STATE(392), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3521), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(392), - [sym_async_block] = STATE(392), - [sym_gen_block] = STATE(392), - [sym_try_block] = STATE(392), - [sym_block] = STATE(392), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), + [sym__statement] = STATE(529), + [sym_empty_statement] = STATE(668), + [sym_expression_statement] = STATE(668), + [sym_macro_definition] = STATE(668), + [sym_attribute_item] = STATE(668), + [sym_inner_attribute_item] = STATE(668), + [sym_mod_item] = STATE(668), + [sym_foreign_mod_item] = STATE(668), + [sym_struct_item] = STATE(668), + [sym_union_item] = STATE(668), + [sym_enum_item] = STATE(668), + [sym_extern_crate_declaration] = STATE(668), + [sym_const_item] = STATE(668), + [sym_static_item] = STATE(668), + [sym_type_item] = STATE(668), + [sym_function_item] = STATE(668), + [sym_function_signature_item] = STATE(668), + [sym_function_modifiers] = STATE(3596), + [sym_impl_item] = STATE(668), + [sym_trait_item] = STATE(668), + [sym_associated_type] = STATE(668), + [sym_let_declaration] = STATE(668), + [sym_use_declaration] = STATE(668), + [sym_extern_modifier] = STATE(2175), + [sym_visibility_modifier] = STATE(2008), + [sym_bracketed_type] = STATE(3752), + [sym_generic_function] = STATE(1492), + [sym_generic_type_with_turbofish] = STATE(3039), + [sym__expression_except_range] = STATE(1409), + [sym__expression] = STATE(1889), + [sym_macro_invocation] = STATE(401), + [sym_scoped_identifier] = STATE(1589), + [sym_scoped_type_identifier_in_expression_position] = STATE(3335), + [sym_range_expression] = STATE(1505), + [sym_unary_expression] = STATE(1492), + [sym_try_expression] = STATE(1492), + [sym_reference_expression] = STATE(1492), + [sym_binary_expression] = STATE(1492), + [sym_assignment_expression] = STATE(1492), + [sym_compound_assignment_expr] = STATE(1492), + [sym_type_cast_expression] = STATE(1492), + [sym_return_expression] = STATE(1492), + [sym_yield_expression] = STATE(1492), + [sym_call_expression] = STATE(1492), + [sym_array_expression] = STATE(1492), + [sym_parenthesized_expression] = STATE(1492), + [sym_tuple_expression] = STATE(1492), + [sym_unit_expression] = STATE(1492), + [sym_struct_expression] = STATE(1492), + [sym_if_expression] = STATE(404), + [sym_match_expression] = STATE(404), + [sym_while_expression] = STATE(404), + [sym_loop_expression] = STATE(404), + [sym_for_expression] = STATE(404), + [sym_const_block] = STATE(404), + [sym_closure_expression] = STATE(1492), + [sym_closure_parameters] = STATE(229), + [sym_label] = STATE(3504), + [sym_break_expression] = STATE(1492), + [sym_continue_expression] = STATE(1492), + [sym_index_expression] = STATE(1492), + [sym_await_expression] = STATE(1492), + [sym_field_expression] = STATE(1412), + [sym_unsafe_block] = STATE(404), + [sym_async_block] = STATE(404), + [sym_gen_block] = STATE(404), + [sym_try_block] = STATE(404), + [sym_block] = STATE(404), + [sym__literal] = STATE(1492), + [sym_string_literal] = STATE(1530), + [sym_raw_string_literal] = STATE(1530), + [sym_boolean_literal] = STATE(1530), [sym_line_comment] = STATE(17), [sym_block_comment] = STATE(17), [aux_sym_source_file_repeat1] = STATE(13), - [aux_sym_function_modifiers_repeat1] = STATE(2252), + [aux_sym_function_modifiers_repeat1] = STATE(2244), [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(303), + [anon_sym_RBRACE] = ACTIONS(308), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -16827,7 +16940,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(121), + [anon_sym_POUND] = ACTIONS(123), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(39), [anon_sym_break] = ACTIONS(41), @@ -16855,107 +16968,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(85), [anon_sym_while] = ACTIONS(87), [anon_sym_extern] = ACTIONS(89), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(95), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(113), - [sym_metavariable] = ACTIONS(115), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [anon_sym_safe] = 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(18)] = { - [sym__statement] = STATE(771), - [sym_empty_statement] = STATE(662), - [sym_expression_statement] = STATE(662), - [sym_macro_definition] = STATE(662), - [sym_attribute_item] = STATE(662), - [sym_inner_attribute_item] = STATE(662), - [sym_mod_item] = STATE(662), - [sym_foreign_mod_item] = STATE(662), - [sym_struct_item] = STATE(662), - [sym_union_item] = STATE(662), - [sym_enum_item] = STATE(662), - [sym_extern_crate_declaration] = STATE(662), - [sym_const_item] = STATE(662), - [sym_static_item] = STATE(662), - [sym_type_item] = STATE(662), - [sym_function_item] = STATE(662), - [sym_function_signature_item] = STATE(662), - [sym_function_modifiers] = STATE(3616), - [sym_impl_item] = STATE(662), - [sym_trait_item] = STATE(662), - [sym_associated_type] = STATE(662), - [sym_let_declaration] = STATE(662), - [sym_use_declaration] = STATE(662), - [sym_extern_modifier] = STATE(2203), - [sym_visibility_modifier] = STATE(1996), - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1857), - [sym_macro_invocation] = STATE(411), - [sym_scoped_identifier] = STATE(1587), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(392), - [sym_match_expression] = STATE(392), - [sym_while_expression] = STATE(392), - [sym_loop_expression] = STATE(392), - [sym_for_expression] = STATE(392), - [sym_const_block] = STATE(392), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3521), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(392), - [sym_async_block] = STATE(392), - [sym_gen_block] = STATE(392), - [sym_try_block] = STATE(392), - [sym_block] = STATE(392), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), + [sym__statement] = STATE(529), + [sym_empty_statement] = STATE(668), + [sym_expression_statement] = STATE(668), + [sym_macro_definition] = STATE(668), + [sym_attribute_item] = STATE(668), + [sym_inner_attribute_item] = STATE(668), + [sym_mod_item] = STATE(668), + [sym_foreign_mod_item] = STATE(668), + [sym_struct_item] = STATE(668), + [sym_union_item] = STATE(668), + [sym_enum_item] = STATE(668), + [sym_extern_crate_declaration] = STATE(668), + [sym_const_item] = STATE(668), + [sym_static_item] = STATE(668), + [sym_type_item] = STATE(668), + [sym_function_item] = STATE(668), + [sym_function_signature_item] = STATE(668), + [sym_function_modifiers] = STATE(3596), + [sym_impl_item] = STATE(668), + [sym_trait_item] = STATE(668), + [sym_associated_type] = STATE(668), + [sym_let_declaration] = STATE(668), + [sym_use_declaration] = STATE(668), + [sym_extern_modifier] = STATE(2175), + [sym_visibility_modifier] = STATE(2008), + [sym_bracketed_type] = STATE(3752), + [sym_generic_function] = STATE(1492), + [sym_generic_type_with_turbofish] = STATE(3039), + [sym__expression_except_range] = STATE(1409), + [sym__expression] = STATE(1892), + [sym_macro_invocation] = STATE(401), + [sym_scoped_identifier] = STATE(1589), + [sym_scoped_type_identifier_in_expression_position] = STATE(3335), + [sym_range_expression] = STATE(1505), + [sym_unary_expression] = STATE(1492), + [sym_try_expression] = STATE(1492), + [sym_reference_expression] = STATE(1492), + [sym_binary_expression] = STATE(1492), + [sym_assignment_expression] = STATE(1492), + [sym_compound_assignment_expr] = STATE(1492), + [sym_type_cast_expression] = STATE(1492), + [sym_return_expression] = STATE(1492), + [sym_yield_expression] = STATE(1492), + [sym_call_expression] = STATE(1492), + [sym_array_expression] = STATE(1492), + [sym_parenthesized_expression] = STATE(1492), + [sym_tuple_expression] = STATE(1492), + [sym_unit_expression] = STATE(1492), + [sym_struct_expression] = STATE(1492), + [sym_if_expression] = STATE(404), + [sym_match_expression] = STATE(404), + [sym_while_expression] = STATE(404), + [sym_loop_expression] = STATE(404), + [sym_for_expression] = STATE(404), + [sym_const_block] = STATE(404), + [sym_closure_expression] = STATE(1492), + [sym_closure_parameters] = STATE(229), + [sym_label] = STATE(3504), + [sym_break_expression] = STATE(1492), + [sym_continue_expression] = STATE(1492), + [sym_index_expression] = STATE(1492), + [sym_await_expression] = STATE(1492), + [sym_field_expression] = STATE(1412), + [sym_unsafe_block] = STATE(404), + [sym_async_block] = STATE(404), + [sym_gen_block] = STATE(404), + [sym_try_block] = STATE(404), + [sym_block] = STATE(404), + [sym__literal] = STATE(1492), + [sym_string_literal] = STATE(1530), + [sym_raw_string_literal] = STATE(1530), + [sym_boolean_literal] = STATE(1530), [sym_line_comment] = STATE(18), [sym_block_comment] = STATE(18), [aux_sym_source_file_repeat1] = STATE(19), - [aux_sym_function_modifiers_repeat1] = STATE(2252), + [aux_sym_function_modifiers_repeat1] = STATE(2244), [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_RBRACE] = ACTIONS(310), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -16981,7 +17095,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(121), + [anon_sym_POUND] = ACTIONS(123), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(39), [anon_sym_break] = ACTIONS(41), @@ -17009,107 +17123,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(85), [anon_sym_while] = ACTIONS(87), [anon_sym_extern] = ACTIONS(89), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(95), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(113), - [sym_metavariable] = ACTIONS(115), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [anon_sym_safe] = 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(19)] = { - [sym__statement] = STATE(771), - [sym_empty_statement] = STATE(662), - [sym_expression_statement] = STATE(662), - [sym_macro_definition] = STATE(662), - [sym_attribute_item] = STATE(662), - [sym_inner_attribute_item] = STATE(662), - [sym_mod_item] = STATE(662), - [sym_foreign_mod_item] = STATE(662), - [sym_struct_item] = STATE(662), - [sym_union_item] = STATE(662), - [sym_enum_item] = STATE(662), - [sym_extern_crate_declaration] = STATE(662), - [sym_const_item] = STATE(662), - [sym_static_item] = STATE(662), - [sym_type_item] = STATE(662), - [sym_function_item] = STATE(662), - [sym_function_signature_item] = STATE(662), - [sym_function_modifiers] = STATE(3616), - [sym_impl_item] = STATE(662), - [sym_trait_item] = STATE(662), - [sym_associated_type] = STATE(662), - [sym_let_declaration] = STATE(662), - [sym_use_declaration] = STATE(662), - [sym_extern_modifier] = STATE(2203), - [sym_visibility_modifier] = STATE(1996), - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1859), - [sym_macro_invocation] = STATE(411), - [sym_scoped_identifier] = STATE(1587), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(392), - [sym_match_expression] = STATE(392), - [sym_while_expression] = STATE(392), - [sym_loop_expression] = STATE(392), - [sym_for_expression] = STATE(392), - [sym_const_block] = STATE(392), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3521), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(392), - [sym_async_block] = STATE(392), - [sym_gen_block] = STATE(392), - [sym_try_block] = STATE(392), - [sym_block] = STATE(392), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), + [sym__statement] = STATE(529), + [sym_empty_statement] = STATE(668), + [sym_expression_statement] = STATE(668), + [sym_macro_definition] = STATE(668), + [sym_attribute_item] = STATE(668), + [sym_inner_attribute_item] = STATE(668), + [sym_mod_item] = STATE(668), + [sym_foreign_mod_item] = STATE(668), + [sym_struct_item] = STATE(668), + [sym_union_item] = STATE(668), + [sym_enum_item] = STATE(668), + [sym_extern_crate_declaration] = STATE(668), + [sym_const_item] = STATE(668), + [sym_static_item] = STATE(668), + [sym_type_item] = STATE(668), + [sym_function_item] = STATE(668), + [sym_function_signature_item] = STATE(668), + [sym_function_modifiers] = STATE(3596), + [sym_impl_item] = STATE(668), + [sym_trait_item] = STATE(668), + [sym_associated_type] = STATE(668), + [sym_let_declaration] = STATE(668), + [sym_use_declaration] = STATE(668), + [sym_extern_modifier] = STATE(2175), + [sym_visibility_modifier] = STATE(2008), + [sym_bracketed_type] = STATE(3752), + [sym_generic_function] = STATE(1492), + [sym_generic_type_with_turbofish] = STATE(3039), + [sym__expression_except_range] = STATE(1409), + [sym__expression] = STATE(1893), + [sym_macro_invocation] = STATE(401), + [sym_scoped_identifier] = STATE(1589), + [sym_scoped_type_identifier_in_expression_position] = STATE(3335), + [sym_range_expression] = STATE(1505), + [sym_unary_expression] = STATE(1492), + [sym_try_expression] = STATE(1492), + [sym_reference_expression] = STATE(1492), + [sym_binary_expression] = STATE(1492), + [sym_assignment_expression] = STATE(1492), + [sym_compound_assignment_expr] = STATE(1492), + [sym_type_cast_expression] = STATE(1492), + [sym_return_expression] = STATE(1492), + [sym_yield_expression] = STATE(1492), + [sym_call_expression] = STATE(1492), + [sym_array_expression] = STATE(1492), + [sym_parenthesized_expression] = STATE(1492), + [sym_tuple_expression] = STATE(1492), + [sym_unit_expression] = STATE(1492), + [sym_struct_expression] = STATE(1492), + [sym_if_expression] = STATE(404), + [sym_match_expression] = STATE(404), + [sym_while_expression] = STATE(404), + [sym_loop_expression] = STATE(404), + [sym_for_expression] = STATE(404), + [sym_const_block] = STATE(404), + [sym_closure_expression] = STATE(1492), + [sym_closure_parameters] = STATE(229), + [sym_label] = STATE(3504), + [sym_break_expression] = STATE(1492), + [sym_continue_expression] = STATE(1492), + [sym_index_expression] = STATE(1492), + [sym_await_expression] = STATE(1492), + [sym_field_expression] = STATE(1412), + [sym_unsafe_block] = STATE(404), + [sym_async_block] = STATE(404), + [sym_gen_block] = STATE(404), + [sym_try_block] = STATE(404), + [sym_block] = STATE(404), + [sym__literal] = STATE(1492), + [sym_string_literal] = STATE(1530), + [sym_raw_string_literal] = STATE(1530), + [sym_boolean_literal] = STATE(1530), [sym_line_comment] = STATE(19), [sym_block_comment] = STATE(19), [aux_sym_source_file_repeat1] = STATE(13), - [aux_sym_function_modifiers_repeat1] = STATE(2252), + [aux_sym_function_modifiers_repeat1] = STATE(2244), [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(307), + [anon_sym_RBRACE] = ACTIONS(312), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -17135,7 +17250,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(121), + [anon_sym_POUND] = ACTIONS(123), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(39), [anon_sym_break] = ACTIONS(41), @@ -17163,107 +17278,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(85), [anon_sym_while] = ACTIONS(87), [anon_sym_extern] = ACTIONS(89), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(95), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(113), - [sym_metavariable] = ACTIONS(115), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [anon_sym_safe] = 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(20)] = { - [sym__statement] = STATE(771), - [sym_empty_statement] = STATE(662), - [sym_expression_statement] = STATE(662), - [sym_macro_definition] = STATE(662), - [sym_attribute_item] = STATE(662), - [sym_inner_attribute_item] = STATE(662), - [sym_mod_item] = STATE(662), - [sym_foreign_mod_item] = STATE(662), - [sym_struct_item] = STATE(662), - [sym_union_item] = STATE(662), - [sym_enum_item] = STATE(662), - [sym_extern_crate_declaration] = STATE(662), - [sym_const_item] = STATE(662), - [sym_static_item] = STATE(662), - [sym_type_item] = STATE(662), - [sym_function_item] = STATE(662), - [sym_function_signature_item] = STATE(662), - [sym_function_modifiers] = STATE(3616), - [sym_impl_item] = STATE(662), - [sym_trait_item] = STATE(662), - [sym_associated_type] = STATE(662), - [sym_let_declaration] = STATE(662), - [sym_use_declaration] = STATE(662), - [sym_extern_modifier] = STATE(2203), - [sym_visibility_modifier] = STATE(1996), - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1861), - [sym_macro_invocation] = STATE(411), - [sym_scoped_identifier] = STATE(1587), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(392), - [sym_match_expression] = STATE(392), - [sym_while_expression] = STATE(392), - [sym_loop_expression] = STATE(392), - [sym_for_expression] = STATE(392), - [sym_const_block] = STATE(392), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3521), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(392), - [sym_async_block] = STATE(392), - [sym_gen_block] = STATE(392), - [sym_try_block] = STATE(392), - [sym_block] = STATE(392), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), + [sym__statement] = STATE(529), + [sym_empty_statement] = STATE(668), + [sym_expression_statement] = STATE(668), + [sym_macro_definition] = STATE(668), + [sym_attribute_item] = STATE(668), + [sym_inner_attribute_item] = STATE(668), + [sym_mod_item] = STATE(668), + [sym_foreign_mod_item] = STATE(668), + [sym_struct_item] = STATE(668), + [sym_union_item] = STATE(668), + [sym_enum_item] = STATE(668), + [sym_extern_crate_declaration] = STATE(668), + [sym_const_item] = STATE(668), + [sym_static_item] = STATE(668), + [sym_type_item] = STATE(668), + [sym_function_item] = STATE(668), + [sym_function_signature_item] = STATE(668), + [sym_function_modifiers] = STATE(3596), + [sym_impl_item] = STATE(668), + [sym_trait_item] = STATE(668), + [sym_associated_type] = STATE(668), + [sym_let_declaration] = STATE(668), + [sym_use_declaration] = STATE(668), + [sym_extern_modifier] = STATE(2175), + [sym_visibility_modifier] = STATE(2008), + [sym_bracketed_type] = STATE(3752), + [sym_generic_function] = STATE(1492), + [sym_generic_type_with_turbofish] = STATE(3039), + [sym__expression_except_range] = STATE(1409), + [sym__expression] = STATE(1896), + [sym_macro_invocation] = STATE(401), + [sym_scoped_identifier] = STATE(1589), + [sym_scoped_type_identifier_in_expression_position] = STATE(3335), + [sym_range_expression] = STATE(1505), + [sym_unary_expression] = STATE(1492), + [sym_try_expression] = STATE(1492), + [sym_reference_expression] = STATE(1492), + [sym_binary_expression] = STATE(1492), + [sym_assignment_expression] = STATE(1492), + [sym_compound_assignment_expr] = STATE(1492), + [sym_type_cast_expression] = STATE(1492), + [sym_return_expression] = STATE(1492), + [sym_yield_expression] = STATE(1492), + [sym_call_expression] = STATE(1492), + [sym_array_expression] = STATE(1492), + [sym_parenthesized_expression] = STATE(1492), + [sym_tuple_expression] = STATE(1492), + [sym_unit_expression] = STATE(1492), + [sym_struct_expression] = STATE(1492), + [sym_if_expression] = STATE(404), + [sym_match_expression] = STATE(404), + [sym_while_expression] = STATE(404), + [sym_loop_expression] = STATE(404), + [sym_for_expression] = STATE(404), + [sym_const_block] = STATE(404), + [sym_closure_expression] = STATE(1492), + [sym_closure_parameters] = STATE(229), + [sym_label] = STATE(3504), + [sym_break_expression] = STATE(1492), + [sym_continue_expression] = STATE(1492), + [sym_index_expression] = STATE(1492), + [sym_await_expression] = STATE(1492), + [sym_field_expression] = STATE(1412), + [sym_unsafe_block] = STATE(404), + [sym_async_block] = STATE(404), + [sym_gen_block] = STATE(404), + [sym_try_block] = STATE(404), + [sym_block] = STATE(404), + [sym__literal] = STATE(1492), + [sym_string_literal] = STATE(1530), + [sym_raw_string_literal] = STATE(1530), + [sym_boolean_literal] = STATE(1530), [sym_line_comment] = STATE(20), [sym_block_comment] = STATE(20), [aux_sym_source_file_repeat1] = STATE(21), - [aux_sym_function_modifiers_repeat1] = STATE(2252), + [aux_sym_function_modifiers_repeat1] = STATE(2244), [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(309), + [anon_sym_RBRACE] = ACTIONS(314), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -17289,7 +17405,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(121), + [anon_sym_POUND] = ACTIONS(123), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(39), [anon_sym_break] = ACTIONS(41), @@ -17317,107 +17433,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(85), [anon_sym_while] = ACTIONS(87), [anon_sym_extern] = ACTIONS(89), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(95), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(113), - [sym_metavariable] = ACTIONS(115), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [anon_sym_safe] = 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(21)] = { - [sym__statement] = STATE(771), - [sym_empty_statement] = STATE(662), - [sym_expression_statement] = STATE(662), - [sym_macro_definition] = STATE(662), - [sym_attribute_item] = STATE(662), - [sym_inner_attribute_item] = STATE(662), - [sym_mod_item] = STATE(662), - [sym_foreign_mod_item] = STATE(662), - [sym_struct_item] = STATE(662), - [sym_union_item] = STATE(662), - [sym_enum_item] = STATE(662), - [sym_extern_crate_declaration] = STATE(662), - [sym_const_item] = STATE(662), - [sym_static_item] = STATE(662), - [sym_type_item] = STATE(662), - [sym_function_item] = STATE(662), - [sym_function_signature_item] = STATE(662), - [sym_function_modifiers] = STATE(3616), - [sym_impl_item] = STATE(662), - [sym_trait_item] = STATE(662), - [sym_associated_type] = STATE(662), - [sym_let_declaration] = STATE(662), - [sym_use_declaration] = STATE(662), - [sym_extern_modifier] = STATE(2203), - [sym_visibility_modifier] = STATE(1996), - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1863), - [sym_macro_invocation] = STATE(411), - [sym_scoped_identifier] = STATE(1587), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(392), - [sym_match_expression] = STATE(392), - [sym_while_expression] = STATE(392), - [sym_loop_expression] = STATE(392), - [sym_for_expression] = STATE(392), - [sym_const_block] = STATE(392), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3521), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(392), - [sym_async_block] = STATE(392), - [sym_gen_block] = STATE(392), - [sym_try_block] = STATE(392), - [sym_block] = STATE(392), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), + [sym__statement] = STATE(529), + [sym_empty_statement] = STATE(668), + [sym_expression_statement] = STATE(668), + [sym_macro_definition] = STATE(668), + [sym_attribute_item] = STATE(668), + [sym_inner_attribute_item] = STATE(668), + [sym_mod_item] = STATE(668), + [sym_foreign_mod_item] = STATE(668), + [sym_struct_item] = STATE(668), + [sym_union_item] = STATE(668), + [sym_enum_item] = STATE(668), + [sym_extern_crate_declaration] = STATE(668), + [sym_const_item] = STATE(668), + [sym_static_item] = STATE(668), + [sym_type_item] = STATE(668), + [sym_function_item] = STATE(668), + [sym_function_signature_item] = STATE(668), + [sym_function_modifiers] = STATE(3596), + [sym_impl_item] = STATE(668), + [sym_trait_item] = STATE(668), + [sym_associated_type] = STATE(668), + [sym_let_declaration] = STATE(668), + [sym_use_declaration] = STATE(668), + [sym_extern_modifier] = STATE(2175), + [sym_visibility_modifier] = STATE(2008), + [sym_bracketed_type] = STATE(3752), + [sym_generic_function] = STATE(1492), + [sym_generic_type_with_turbofish] = STATE(3039), + [sym__expression_except_range] = STATE(1409), + [sym__expression] = STATE(1898), + [sym_macro_invocation] = STATE(401), + [sym_scoped_identifier] = STATE(1589), + [sym_scoped_type_identifier_in_expression_position] = STATE(3335), + [sym_range_expression] = STATE(1505), + [sym_unary_expression] = STATE(1492), + [sym_try_expression] = STATE(1492), + [sym_reference_expression] = STATE(1492), + [sym_binary_expression] = STATE(1492), + [sym_assignment_expression] = STATE(1492), + [sym_compound_assignment_expr] = STATE(1492), + [sym_type_cast_expression] = STATE(1492), + [sym_return_expression] = STATE(1492), + [sym_yield_expression] = STATE(1492), + [sym_call_expression] = STATE(1492), + [sym_array_expression] = STATE(1492), + [sym_parenthesized_expression] = STATE(1492), + [sym_tuple_expression] = STATE(1492), + [sym_unit_expression] = STATE(1492), + [sym_struct_expression] = STATE(1492), + [sym_if_expression] = STATE(404), + [sym_match_expression] = STATE(404), + [sym_while_expression] = STATE(404), + [sym_loop_expression] = STATE(404), + [sym_for_expression] = STATE(404), + [sym_const_block] = STATE(404), + [sym_closure_expression] = STATE(1492), + [sym_closure_parameters] = STATE(229), + [sym_label] = STATE(3504), + [sym_break_expression] = STATE(1492), + [sym_continue_expression] = STATE(1492), + [sym_index_expression] = STATE(1492), + [sym_await_expression] = STATE(1492), + [sym_field_expression] = STATE(1412), + [sym_unsafe_block] = STATE(404), + [sym_async_block] = STATE(404), + [sym_gen_block] = STATE(404), + [sym_try_block] = STATE(404), + [sym_block] = STATE(404), + [sym__literal] = STATE(1492), + [sym_string_literal] = STATE(1530), + [sym_raw_string_literal] = STATE(1530), + [sym_boolean_literal] = STATE(1530), [sym_line_comment] = STATE(21), [sym_block_comment] = STATE(21), [aux_sym_source_file_repeat1] = STATE(13), - [aux_sym_function_modifiers_repeat1] = STATE(2252), + [aux_sym_function_modifiers_repeat1] = STATE(2244), [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(311), + [anon_sym_RBRACE] = ACTIONS(316), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -17443,7 +17560,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(121), + [anon_sym_POUND] = ACTIONS(123), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(39), [anon_sym_break] = ACTIONS(41), @@ -17471,107 +17588,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(85), [anon_sym_while] = ACTIONS(87), [anon_sym_extern] = ACTIONS(89), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(95), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(113), - [sym_metavariable] = ACTIONS(115), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [anon_sym_safe] = 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(22)] = { - [sym__statement] = STATE(771), - [sym_empty_statement] = STATE(662), - [sym_expression_statement] = STATE(662), - [sym_macro_definition] = STATE(662), - [sym_attribute_item] = STATE(662), - [sym_inner_attribute_item] = STATE(662), - [sym_mod_item] = STATE(662), - [sym_foreign_mod_item] = STATE(662), - [sym_struct_item] = STATE(662), - [sym_union_item] = STATE(662), - [sym_enum_item] = STATE(662), - [sym_extern_crate_declaration] = STATE(662), - [sym_const_item] = STATE(662), - [sym_static_item] = STATE(662), - [sym_type_item] = STATE(662), - [sym_function_item] = STATE(662), - [sym_function_signature_item] = STATE(662), - [sym_function_modifiers] = STATE(3616), - [sym_impl_item] = STATE(662), - [sym_trait_item] = STATE(662), - [sym_associated_type] = STATE(662), - [sym_let_declaration] = STATE(662), - [sym_use_declaration] = STATE(662), - [sym_extern_modifier] = STATE(2203), - [sym_visibility_modifier] = STATE(1996), - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1867), - [sym_macro_invocation] = STATE(411), - [sym_scoped_identifier] = STATE(1587), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(392), - [sym_match_expression] = STATE(392), - [sym_while_expression] = STATE(392), - [sym_loop_expression] = STATE(392), - [sym_for_expression] = STATE(392), - [sym_const_block] = STATE(392), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3521), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(392), - [sym_async_block] = STATE(392), - [sym_gen_block] = STATE(392), - [sym_try_block] = STATE(392), - [sym_block] = STATE(392), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), + [sym__statement] = STATE(529), + [sym_empty_statement] = STATE(668), + [sym_expression_statement] = STATE(668), + [sym_macro_definition] = STATE(668), + [sym_attribute_item] = STATE(668), + [sym_inner_attribute_item] = STATE(668), + [sym_mod_item] = STATE(668), + [sym_foreign_mod_item] = STATE(668), + [sym_struct_item] = STATE(668), + [sym_union_item] = STATE(668), + [sym_enum_item] = STATE(668), + [sym_extern_crate_declaration] = STATE(668), + [sym_const_item] = STATE(668), + [sym_static_item] = STATE(668), + [sym_type_item] = STATE(668), + [sym_function_item] = STATE(668), + [sym_function_signature_item] = STATE(668), + [sym_function_modifiers] = STATE(3596), + [sym_impl_item] = STATE(668), + [sym_trait_item] = STATE(668), + [sym_associated_type] = STATE(668), + [sym_let_declaration] = STATE(668), + [sym_use_declaration] = STATE(668), + [sym_extern_modifier] = STATE(2175), + [sym_visibility_modifier] = STATE(2008), + [sym_bracketed_type] = STATE(3752), + [sym_generic_function] = STATE(1492), + [sym_generic_type_with_turbofish] = STATE(3039), + [sym__expression_except_range] = STATE(1409), + [sym__expression] = STATE(1899), + [sym_macro_invocation] = STATE(401), + [sym_scoped_identifier] = STATE(1589), + [sym_scoped_type_identifier_in_expression_position] = STATE(3335), + [sym_range_expression] = STATE(1505), + [sym_unary_expression] = STATE(1492), + [sym_try_expression] = STATE(1492), + [sym_reference_expression] = STATE(1492), + [sym_binary_expression] = STATE(1492), + [sym_assignment_expression] = STATE(1492), + [sym_compound_assignment_expr] = STATE(1492), + [sym_type_cast_expression] = STATE(1492), + [sym_return_expression] = STATE(1492), + [sym_yield_expression] = STATE(1492), + [sym_call_expression] = STATE(1492), + [sym_array_expression] = STATE(1492), + [sym_parenthesized_expression] = STATE(1492), + [sym_tuple_expression] = STATE(1492), + [sym_unit_expression] = STATE(1492), + [sym_struct_expression] = STATE(1492), + [sym_if_expression] = STATE(404), + [sym_match_expression] = STATE(404), + [sym_while_expression] = STATE(404), + [sym_loop_expression] = STATE(404), + [sym_for_expression] = STATE(404), + [sym_const_block] = STATE(404), + [sym_closure_expression] = STATE(1492), + [sym_closure_parameters] = STATE(229), + [sym_label] = STATE(3504), + [sym_break_expression] = STATE(1492), + [sym_continue_expression] = STATE(1492), + [sym_index_expression] = STATE(1492), + [sym_await_expression] = STATE(1492), + [sym_field_expression] = STATE(1412), + [sym_unsafe_block] = STATE(404), + [sym_async_block] = STATE(404), + [sym_gen_block] = STATE(404), + [sym_try_block] = STATE(404), + [sym_block] = STATE(404), + [sym__literal] = STATE(1492), + [sym_string_literal] = STATE(1530), + [sym_raw_string_literal] = STATE(1530), + [sym_boolean_literal] = STATE(1530), [sym_line_comment] = STATE(22), [sym_block_comment] = STATE(22), [aux_sym_source_file_repeat1] = STATE(23), - [aux_sym_function_modifiers_repeat1] = STATE(2252), + [aux_sym_function_modifiers_repeat1] = STATE(2244), [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(313), + [anon_sym_RBRACE] = ACTIONS(318), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -17597,7 +17715,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(121), + [anon_sym_POUND] = ACTIONS(123), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(39), [anon_sym_break] = ACTIONS(41), @@ -17625,107 +17743,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(85), [anon_sym_while] = ACTIONS(87), [anon_sym_extern] = ACTIONS(89), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(95), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(113), - [sym_metavariable] = ACTIONS(115), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [anon_sym_safe] = 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(23)] = { - [sym__statement] = STATE(771), - [sym_empty_statement] = STATE(662), - [sym_expression_statement] = STATE(662), - [sym_macro_definition] = STATE(662), - [sym_attribute_item] = STATE(662), - [sym_inner_attribute_item] = STATE(662), - [sym_mod_item] = STATE(662), - [sym_foreign_mod_item] = STATE(662), - [sym_struct_item] = STATE(662), - [sym_union_item] = STATE(662), - [sym_enum_item] = STATE(662), - [sym_extern_crate_declaration] = STATE(662), - [sym_const_item] = STATE(662), - [sym_static_item] = STATE(662), - [sym_type_item] = STATE(662), - [sym_function_item] = STATE(662), - [sym_function_signature_item] = STATE(662), - [sym_function_modifiers] = STATE(3616), - [sym_impl_item] = STATE(662), - [sym_trait_item] = STATE(662), - [sym_associated_type] = STATE(662), - [sym_let_declaration] = STATE(662), - [sym_use_declaration] = STATE(662), - [sym_extern_modifier] = STATE(2203), - [sym_visibility_modifier] = STATE(1996), - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1869), - [sym_macro_invocation] = STATE(411), - [sym_scoped_identifier] = STATE(1587), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(392), - [sym_match_expression] = STATE(392), - [sym_while_expression] = STATE(392), - [sym_loop_expression] = STATE(392), - [sym_for_expression] = STATE(392), - [sym_const_block] = STATE(392), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3521), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(392), - [sym_async_block] = STATE(392), - [sym_gen_block] = STATE(392), - [sym_try_block] = STATE(392), - [sym_block] = STATE(392), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), + [sym__statement] = STATE(529), + [sym_empty_statement] = STATE(668), + [sym_expression_statement] = STATE(668), + [sym_macro_definition] = STATE(668), + [sym_attribute_item] = STATE(668), + [sym_inner_attribute_item] = STATE(668), + [sym_mod_item] = STATE(668), + [sym_foreign_mod_item] = STATE(668), + [sym_struct_item] = STATE(668), + [sym_union_item] = STATE(668), + [sym_enum_item] = STATE(668), + [sym_extern_crate_declaration] = STATE(668), + [sym_const_item] = STATE(668), + [sym_static_item] = STATE(668), + [sym_type_item] = STATE(668), + [sym_function_item] = STATE(668), + [sym_function_signature_item] = STATE(668), + [sym_function_modifiers] = STATE(3596), + [sym_impl_item] = STATE(668), + [sym_trait_item] = STATE(668), + [sym_associated_type] = STATE(668), + [sym_let_declaration] = STATE(668), + [sym_use_declaration] = STATE(668), + [sym_extern_modifier] = STATE(2175), + [sym_visibility_modifier] = STATE(2008), + [sym_bracketed_type] = STATE(3752), + [sym_generic_function] = STATE(1492), + [sym_generic_type_with_turbofish] = STATE(3039), + [sym__expression_except_range] = STATE(1409), + [sym__expression] = STATE(1900), + [sym_macro_invocation] = STATE(401), + [sym_scoped_identifier] = STATE(1589), + [sym_scoped_type_identifier_in_expression_position] = STATE(3335), + [sym_range_expression] = STATE(1505), + [sym_unary_expression] = STATE(1492), + [sym_try_expression] = STATE(1492), + [sym_reference_expression] = STATE(1492), + [sym_binary_expression] = STATE(1492), + [sym_assignment_expression] = STATE(1492), + [sym_compound_assignment_expr] = STATE(1492), + [sym_type_cast_expression] = STATE(1492), + [sym_return_expression] = STATE(1492), + [sym_yield_expression] = STATE(1492), + [sym_call_expression] = STATE(1492), + [sym_array_expression] = STATE(1492), + [sym_parenthesized_expression] = STATE(1492), + [sym_tuple_expression] = STATE(1492), + [sym_unit_expression] = STATE(1492), + [sym_struct_expression] = STATE(1492), + [sym_if_expression] = STATE(404), + [sym_match_expression] = STATE(404), + [sym_while_expression] = STATE(404), + [sym_loop_expression] = STATE(404), + [sym_for_expression] = STATE(404), + [sym_const_block] = STATE(404), + [sym_closure_expression] = STATE(1492), + [sym_closure_parameters] = STATE(229), + [sym_label] = STATE(3504), + [sym_break_expression] = STATE(1492), + [sym_continue_expression] = STATE(1492), + [sym_index_expression] = STATE(1492), + [sym_await_expression] = STATE(1492), + [sym_field_expression] = STATE(1412), + [sym_unsafe_block] = STATE(404), + [sym_async_block] = STATE(404), + [sym_gen_block] = STATE(404), + [sym_try_block] = STATE(404), + [sym_block] = STATE(404), + [sym__literal] = STATE(1492), + [sym_string_literal] = STATE(1530), + [sym_raw_string_literal] = STATE(1530), + [sym_boolean_literal] = STATE(1530), [sym_line_comment] = STATE(23), [sym_block_comment] = STATE(23), [aux_sym_source_file_repeat1] = STATE(13), - [aux_sym_function_modifiers_repeat1] = STATE(2252), + [aux_sym_function_modifiers_repeat1] = STATE(2244), [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(315), + [anon_sym_RBRACE] = ACTIONS(320), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -17751,7 +17870,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(121), + [anon_sym_POUND] = ACTIONS(123), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(39), [anon_sym_break] = ACTIONS(41), @@ -17779,107 +17898,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(85), [anon_sym_while] = ACTIONS(87), [anon_sym_extern] = ACTIONS(89), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(95), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(113), - [sym_metavariable] = ACTIONS(115), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [anon_sym_safe] = 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(24)] = { - [sym__statement] = STATE(771), - [sym_empty_statement] = STATE(662), - [sym_expression_statement] = STATE(662), - [sym_macro_definition] = STATE(662), - [sym_attribute_item] = STATE(662), - [sym_inner_attribute_item] = STATE(662), - [sym_mod_item] = STATE(662), - [sym_foreign_mod_item] = STATE(662), - [sym_struct_item] = STATE(662), - [sym_union_item] = STATE(662), - [sym_enum_item] = STATE(662), - [sym_extern_crate_declaration] = STATE(662), - [sym_const_item] = STATE(662), - [sym_static_item] = STATE(662), - [sym_type_item] = STATE(662), - [sym_function_item] = STATE(662), - [sym_function_signature_item] = STATE(662), - [sym_function_modifiers] = STATE(3616), - [sym_impl_item] = STATE(662), - [sym_trait_item] = STATE(662), - [sym_associated_type] = STATE(662), - [sym_let_declaration] = STATE(662), - [sym_use_declaration] = STATE(662), - [sym_extern_modifier] = STATE(2203), - [sym_visibility_modifier] = STATE(1996), - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1873), - [sym_macro_invocation] = STATE(411), - [sym_scoped_identifier] = STATE(1587), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(392), - [sym_match_expression] = STATE(392), - [sym_while_expression] = STATE(392), - [sym_loop_expression] = STATE(392), - [sym_for_expression] = STATE(392), - [sym_const_block] = STATE(392), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3521), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(392), - [sym_async_block] = STATE(392), - [sym_gen_block] = STATE(392), - [sym_try_block] = STATE(392), - [sym_block] = STATE(392), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), + [sym__statement] = STATE(529), + [sym_empty_statement] = STATE(668), + [sym_expression_statement] = STATE(668), + [sym_macro_definition] = STATE(668), + [sym_attribute_item] = STATE(668), + [sym_inner_attribute_item] = STATE(668), + [sym_mod_item] = STATE(668), + [sym_foreign_mod_item] = STATE(668), + [sym_struct_item] = STATE(668), + [sym_union_item] = STATE(668), + [sym_enum_item] = STATE(668), + [sym_extern_crate_declaration] = STATE(668), + [sym_const_item] = STATE(668), + [sym_static_item] = STATE(668), + [sym_type_item] = STATE(668), + [sym_function_item] = STATE(668), + [sym_function_signature_item] = STATE(668), + [sym_function_modifiers] = STATE(3596), + [sym_impl_item] = STATE(668), + [sym_trait_item] = STATE(668), + [sym_associated_type] = STATE(668), + [sym_let_declaration] = STATE(668), + [sym_use_declaration] = STATE(668), + [sym_extern_modifier] = STATE(2175), + [sym_visibility_modifier] = STATE(2008), + [sym_bracketed_type] = STATE(3752), + [sym_generic_function] = STATE(1492), + [sym_generic_type_with_turbofish] = STATE(3039), + [sym__expression_except_range] = STATE(1409), + [sym__expression] = STATE(1901), + [sym_macro_invocation] = STATE(401), + [sym_scoped_identifier] = STATE(1589), + [sym_scoped_type_identifier_in_expression_position] = STATE(3335), + [sym_range_expression] = STATE(1505), + [sym_unary_expression] = STATE(1492), + [sym_try_expression] = STATE(1492), + [sym_reference_expression] = STATE(1492), + [sym_binary_expression] = STATE(1492), + [sym_assignment_expression] = STATE(1492), + [sym_compound_assignment_expr] = STATE(1492), + [sym_type_cast_expression] = STATE(1492), + [sym_return_expression] = STATE(1492), + [sym_yield_expression] = STATE(1492), + [sym_call_expression] = STATE(1492), + [sym_array_expression] = STATE(1492), + [sym_parenthesized_expression] = STATE(1492), + [sym_tuple_expression] = STATE(1492), + [sym_unit_expression] = STATE(1492), + [sym_struct_expression] = STATE(1492), + [sym_if_expression] = STATE(404), + [sym_match_expression] = STATE(404), + [sym_while_expression] = STATE(404), + [sym_loop_expression] = STATE(404), + [sym_for_expression] = STATE(404), + [sym_const_block] = STATE(404), + [sym_closure_expression] = STATE(1492), + [sym_closure_parameters] = STATE(229), + [sym_label] = STATE(3504), + [sym_break_expression] = STATE(1492), + [sym_continue_expression] = STATE(1492), + [sym_index_expression] = STATE(1492), + [sym_await_expression] = STATE(1492), + [sym_field_expression] = STATE(1412), + [sym_unsafe_block] = STATE(404), + [sym_async_block] = STATE(404), + [sym_gen_block] = STATE(404), + [sym_try_block] = STATE(404), + [sym_block] = STATE(404), + [sym__literal] = STATE(1492), + [sym_string_literal] = STATE(1530), + [sym_raw_string_literal] = STATE(1530), + [sym_boolean_literal] = STATE(1530), [sym_line_comment] = STATE(24), [sym_block_comment] = STATE(24), [aux_sym_source_file_repeat1] = STATE(25), - [aux_sym_function_modifiers_repeat1] = STATE(2252), + [aux_sym_function_modifiers_repeat1] = STATE(2244), [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(317), + [anon_sym_RBRACE] = ACTIONS(322), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -17905,7 +18025,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(121), + [anon_sym_POUND] = ACTIONS(123), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(39), [anon_sym_break] = ACTIONS(41), @@ -17933,107 +18053,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(85), [anon_sym_while] = ACTIONS(87), [anon_sym_extern] = ACTIONS(89), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(95), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(113), - [sym_metavariable] = ACTIONS(115), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [anon_sym_safe] = 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(25)] = { - [sym__statement] = STATE(771), - [sym_empty_statement] = STATE(662), - [sym_expression_statement] = STATE(662), - [sym_macro_definition] = STATE(662), - [sym_attribute_item] = STATE(662), - [sym_inner_attribute_item] = STATE(662), - [sym_mod_item] = STATE(662), - [sym_foreign_mod_item] = STATE(662), - [sym_struct_item] = STATE(662), - [sym_union_item] = STATE(662), - [sym_enum_item] = STATE(662), - [sym_extern_crate_declaration] = STATE(662), - [sym_const_item] = STATE(662), - [sym_static_item] = STATE(662), - [sym_type_item] = STATE(662), - [sym_function_item] = STATE(662), - [sym_function_signature_item] = STATE(662), - [sym_function_modifiers] = STATE(3616), - [sym_impl_item] = STATE(662), - [sym_trait_item] = STATE(662), - [sym_associated_type] = STATE(662), - [sym_let_declaration] = STATE(662), - [sym_use_declaration] = STATE(662), - [sym_extern_modifier] = STATE(2203), - [sym_visibility_modifier] = STATE(1996), - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1874), - [sym_macro_invocation] = STATE(411), - [sym_scoped_identifier] = STATE(1587), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(392), - [sym_match_expression] = STATE(392), - [sym_while_expression] = STATE(392), - [sym_loop_expression] = STATE(392), - [sym_for_expression] = STATE(392), - [sym_const_block] = STATE(392), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3521), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(392), - [sym_async_block] = STATE(392), - [sym_gen_block] = STATE(392), - [sym_try_block] = STATE(392), - [sym_block] = STATE(392), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), + [sym__statement] = STATE(529), + [sym_empty_statement] = STATE(668), + [sym_expression_statement] = STATE(668), + [sym_macro_definition] = STATE(668), + [sym_attribute_item] = STATE(668), + [sym_inner_attribute_item] = STATE(668), + [sym_mod_item] = STATE(668), + [sym_foreign_mod_item] = STATE(668), + [sym_struct_item] = STATE(668), + [sym_union_item] = STATE(668), + [sym_enum_item] = STATE(668), + [sym_extern_crate_declaration] = STATE(668), + [sym_const_item] = STATE(668), + [sym_static_item] = STATE(668), + [sym_type_item] = STATE(668), + [sym_function_item] = STATE(668), + [sym_function_signature_item] = STATE(668), + [sym_function_modifiers] = STATE(3596), + [sym_impl_item] = STATE(668), + [sym_trait_item] = STATE(668), + [sym_associated_type] = STATE(668), + [sym_let_declaration] = STATE(668), + [sym_use_declaration] = STATE(668), + [sym_extern_modifier] = STATE(2175), + [sym_visibility_modifier] = STATE(2008), + [sym_bracketed_type] = STATE(3752), + [sym_generic_function] = STATE(1492), + [sym_generic_type_with_turbofish] = STATE(3039), + [sym__expression_except_range] = STATE(1409), + [sym__expression] = STATE(1902), + [sym_macro_invocation] = STATE(401), + [sym_scoped_identifier] = STATE(1589), + [sym_scoped_type_identifier_in_expression_position] = STATE(3335), + [sym_range_expression] = STATE(1505), + [sym_unary_expression] = STATE(1492), + [sym_try_expression] = STATE(1492), + [sym_reference_expression] = STATE(1492), + [sym_binary_expression] = STATE(1492), + [sym_assignment_expression] = STATE(1492), + [sym_compound_assignment_expr] = STATE(1492), + [sym_type_cast_expression] = STATE(1492), + [sym_return_expression] = STATE(1492), + [sym_yield_expression] = STATE(1492), + [sym_call_expression] = STATE(1492), + [sym_array_expression] = STATE(1492), + [sym_parenthesized_expression] = STATE(1492), + [sym_tuple_expression] = STATE(1492), + [sym_unit_expression] = STATE(1492), + [sym_struct_expression] = STATE(1492), + [sym_if_expression] = STATE(404), + [sym_match_expression] = STATE(404), + [sym_while_expression] = STATE(404), + [sym_loop_expression] = STATE(404), + [sym_for_expression] = STATE(404), + [sym_const_block] = STATE(404), + [sym_closure_expression] = STATE(1492), + [sym_closure_parameters] = STATE(229), + [sym_label] = STATE(3504), + [sym_break_expression] = STATE(1492), + [sym_continue_expression] = STATE(1492), + [sym_index_expression] = STATE(1492), + [sym_await_expression] = STATE(1492), + [sym_field_expression] = STATE(1412), + [sym_unsafe_block] = STATE(404), + [sym_async_block] = STATE(404), + [sym_gen_block] = STATE(404), + [sym_try_block] = STATE(404), + [sym_block] = STATE(404), + [sym__literal] = STATE(1492), + [sym_string_literal] = STATE(1530), + [sym_raw_string_literal] = STATE(1530), + [sym_boolean_literal] = STATE(1530), [sym_line_comment] = STATE(25), [sym_block_comment] = STATE(25), [aux_sym_source_file_repeat1] = STATE(13), - [aux_sym_function_modifiers_repeat1] = STATE(2252), + [aux_sym_function_modifiers_repeat1] = STATE(2244), [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(319), + [anon_sym_RBRACE] = ACTIONS(324), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -18059,7 +18180,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(121), + [anon_sym_POUND] = ACTIONS(123), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(39), [anon_sym_break] = ACTIONS(41), @@ -18087,107 +18208,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(85), [anon_sym_while] = ACTIONS(87), [anon_sym_extern] = ACTIONS(89), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(95), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(113), - [sym_metavariable] = ACTIONS(115), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [anon_sym_safe] = 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(26)] = { - [sym__statement] = STATE(771), - [sym_empty_statement] = STATE(662), - [sym_expression_statement] = STATE(662), - [sym_macro_definition] = STATE(662), - [sym_attribute_item] = STATE(662), - [sym_inner_attribute_item] = STATE(662), - [sym_mod_item] = STATE(662), - [sym_foreign_mod_item] = STATE(662), - [sym_struct_item] = STATE(662), - [sym_union_item] = STATE(662), - [sym_enum_item] = STATE(662), - [sym_extern_crate_declaration] = STATE(662), - [sym_const_item] = STATE(662), - [sym_static_item] = STATE(662), - [sym_type_item] = STATE(662), - [sym_function_item] = STATE(662), - [sym_function_signature_item] = STATE(662), - [sym_function_modifiers] = STATE(3616), - [sym_impl_item] = STATE(662), - [sym_trait_item] = STATE(662), - [sym_associated_type] = STATE(662), - [sym_let_declaration] = STATE(662), - [sym_use_declaration] = STATE(662), - [sym_extern_modifier] = STATE(2203), - [sym_visibility_modifier] = STATE(1996), - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1875), - [sym_macro_invocation] = STATE(411), - [sym_scoped_identifier] = STATE(1587), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(392), - [sym_match_expression] = STATE(392), - [sym_while_expression] = STATE(392), - [sym_loop_expression] = STATE(392), - [sym_for_expression] = STATE(392), - [sym_const_block] = STATE(392), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3521), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(392), - [sym_async_block] = STATE(392), - [sym_gen_block] = STATE(392), - [sym_try_block] = STATE(392), - [sym_block] = STATE(392), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), + [sym__statement] = STATE(529), + [sym_empty_statement] = STATE(668), + [sym_expression_statement] = STATE(668), + [sym_macro_definition] = STATE(668), + [sym_attribute_item] = STATE(668), + [sym_inner_attribute_item] = STATE(668), + [sym_mod_item] = STATE(668), + [sym_foreign_mod_item] = STATE(668), + [sym_struct_item] = STATE(668), + [sym_union_item] = STATE(668), + [sym_enum_item] = STATE(668), + [sym_extern_crate_declaration] = STATE(668), + [sym_const_item] = STATE(668), + [sym_static_item] = STATE(668), + [sym_type_item] = STATE(668), + [sym_function_item] = STATE(668), + [sym_function_signature_item] = STATE(668), + [sym_function_modifiers] = STATE(3596), + [sym_impl_item] = STATE(668), + [sym_trait_item] = STATE(668), + [sym_associated_type] = STATE(668), + [sym_let_declaration] = STATE(668), + [sym_use_declaration] = STATE(668), + [sym_extern_modifier] = STATE(2175), + [sym_visibility_modifier] = STATE(2008), + [sym_bracketed_type] = STATE(3752), + [sym_generic_function] = STATE(1492), + [sym_generic_type_with_turbofish] = STATE(3039), + [sym__expression_except_range] = STATE(1409), + [sym__expression] = STATE(1904), + [sym_macro_invocation] = STATE(401), + [sym_scoped_identifier] = STATE(1589), + [sym_scoped_type_identifier_in_expression_position] = STATE(3335), + [sym_range_expression] = STATE(1505), + [sym_unary_expression] = STATE(1492), + [sym_try_expression] = STATE(1492), + [sym_reference_expression] = STATE(1492), + [sym_binary_expression] = STATE(1492), + [sym_assignment_expression] = STATE(1492), + [sym_compound_assignment_expr] = STATE(1492), + [sym_type_cast_expression] = STATE(1492), + [sym_return_expression] = STATE(1492), + [sym_yield_expression] = STATE(1492), + [sym_call_expression] = STATE(1492), + [sym_array_expression] = STATE(1492), + [sym_parenthesized_expression] = STATE(1492), + [sym_tuple_expression] = STATE(1492), + [sym_unit_expression] = STATE(1492), + [sym_struct_expression] = STATE(1492), + [sym_if_expression] = STATE(404), + [sym_match_expression] = STATE(404), + [sym_while_expression] = STATE(404), + [sym_loop_expression] = STATE(404), + [sym_for_expression] = STATE(404), + [sym_const_block] = STATE(404), + [sym_closure_expression] = STATE(1492), + [sym_closure_parameters] = STATE(229), + [sym_label] = STATE(3504), + [sym_break_expression] = STATE(1492), + [sym_continue_expression] = STATE(1492), + [sym_index_expression] = STATE(1492), + [sym_await_expression] = STATE(1492), + [sym_field_expression] = STATE(1412), + [sym_unsafe_block] = STATE(404), + [sym_async_block] = STATE(404), + [sym_gen_block] = STATE(404), + [sym_try_block] = STATE(404), + [sym_block] = STATE(404), + [sym__literal] = STATE(1492), + [sym_string_literal] = STATE(1530), + [sym_raw_string_literal] = STATE(1530), + [sym_boolean_literal] = STATE(1530), [sym_line_comment] = STATE(26), [sym_block_comment] = STATE(26), [aux_sym_source_file_repeat1] = STATE(27), - [aux_sym_function_modifiers_repeat1] = STATE(2252), + [aux_sym_function_modifiers_repeat1] = STATE(2244), [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(321), + [anon_sym_RBRACE] = ACTIONS(326), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -18213,7 +18335,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(121), + [anon_sym_POUND] = ACTIONS(123), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(39), [anon_sym_break] = ACTIONS(41), @@ -18241,107 +18363,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(85), [anon_sym_while] = ACTIONS(87), [anon_sym_extern] = ACTIONS(89), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(95), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(113), - [sym_metavariable] = ACTIONS(115), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [anon_sym_safe] = 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(27)] = { - [sym__statement] = STATE(771), - [sym_empty_statement] = STATE(662), - [sym_expression_statement] = STATE(662), - [sym_macro_definition] = STATE(662), - [sym_attribute_item] = STATE(662), - [sym_inner_attribute_item] = STATE(662), - [sym_mod_item] = STATE(662), - [sym_foreign_mod_item] = STATE(662), - [sym_struct_item] = STATE(662), - [sym_union_item] = STATE(662), - [sym_enum_item] = STATE(662), - [sym_extern_crate_declaration] = STATE(662), - [sym_const_item] = STATE(662), - [sym_static_item] = STATE(662), - [sym_type_item] = STATE(662), - [sym_function_item] = STATE(662), - [sym_function_signature_item] = STATE(662), - [sym_function_modifiers] = STATE(3616), - [sym_impl_item] = STATE(662), - [sym_trait_item] = STATE(662), - [sym_associated_type] = STATE(662), - [sym_let_declaration] = STATE(662), - [sym_use_declaration] = STATE(662), - [sym_extern_modifier] = STATE(2203), - [sym_visibility_modifier] = STATE(1996), - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1876), - [sym_macro_invocation] = STATE(411), - [sym_scoped_identifier] = STATE(1587), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(392), - [sym_match_expression] = STATE(392), - [sym_while_expression] = STATE(392), - [sym_loop_expression] = STATE(392), - [sym_for_expression] = STATE(392), - [sym_const_block] = STATE(392), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3521), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(392), - [sym_async_block] = STATE(392), - [sym_gen_block] = STATE(392), - [sym_try_block] = STATE(392), - [sym_block] = STATE(392), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), + [sym__statement] = STATE(529), + [sym_empty_statement] = STATE(668), + [sym_expression_statement] = STATE(668), + [sym_macro_definition] = STATE(668), + [sym_attribute_item] = STATE(668), + [sym_inner_attribute_item] = STATE(668), + [sym_mod_item] = STATE(668), + [sym_foreign_mod_item] = STATE(668), + [sym_struct_item] = STATE(668), + [sym_union_item] = STATE(668), + [sym_enum_item] = STATE(668), + [sym_extern_crate_declaration] = STATE(668), + [sym_const_item] = STATE(668), + [sym_static_item] = STATE(668), + [sym_type_item] = STATE(668), + [sym_function_item] = STATE(668), + [sym_function_signature_item] = STATE(668), + [sym_function_modifiers] = STATE(3596), + [sym_impl_item] = STATE(668), + [sym_trait_item] = STATE(668), + [sym_associated_type] = STATE(668), + [sym_let_declaration] = STATE(668), + [sym_use_declaration] = STATE(668), + [sym_extern_modifier] = STATE(2175), + [sym_visibility_modifier] = STATE(2008), + [sym_bracketed_type] = STATE(3752), + [sym_generic_function] = STATE(1492), + [sym_generic_type_with_turbofish] = STATE(3039), + [sym__expression_except_range] = STATE(1409), + [sym__expression] = STATE(1905), + [sym_macro_invocation] = STATE(401), + [sym_scoped_identifier] = STATE(1589), + [sym_scoped_type_identifier_in_expression_position] = STATE(3335), + [sym_range_expression] = STATE(1505), + [sym_unary_expression] = STATE(1492), + [sym_try_expression] = STATE(1492), + [sym_reference_expression] = STATE(1492), + [sym_binary_expression] = STATE(1492), + [sym_assignment_expression] = STATE(1492), + [sym_compound_assignment_expr] = STATE(1492), + [sym_type_cast_expression] = STATE(1492), + [sym_return_expression] = STATE(1492), + [sym_yield_expression] = STATE(1492), + [sym_call_expression] = STATE(1492), + [sym_array_expression] = STATE(1492), + [sym_parenthesized_expression] = STATE(1492), + [sym_tuple_expression] = STATE(1492), + [sym_unit_expression] = STATE(1492), + [sym_struct_expression] = STATE(1492), + [sym_if_expression] = STATE(404), + [sym_match_expression] = STATE(404), + [sym_while_expression] = STATE(404), + [sym_loop_expression] = STATE(404), + [sym_for_expression] = STATE(404), + [sym_const_block] = STATE(404), + [sym_closure_expression] = STATE(1492), + [sym_closure_parameters] = STATE(229), + [sym_label] = STATE(3504), + [sym_break_expression] = STATE(1492), + [sym_continue_expression] = STATE(1492), + [sym_index_expression] = STATE(1492), + [sym_await_expression] = STATE(1492), + [sym_field_expression] = STATE(1412), + [sym_unsafe_block] = STATE(404), + [sym_async_block] = STATE(404), + [sym_gen_block] = STATE(404), + [sym_try_block] = STATE(404), + [sym_block] = STATE(404), + [sym__literal] = STATE(1492), + [sym_string_literal] = STATE(1530), + [sym_raw_string_literal] = STATE(1530), + [sym_boolean_literal] = STATE(1530), [sym_line_comment] = STATE(27), [sym_block_comment] = STATE(27), [aux_sym_source_file_repeat1] = STATE(13), - [aux_sym_function_modifiers_repeat1] = STATE(2252), + [aux_sym_function_modifiers_repeat1] = STATE(2244), [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(323), + [anon_sym_RBRACE] = ACTIONS(328), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -18367,7 +18490,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(121), + [anon_sym_POUND] = ACTIONS(123), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(39), [anon_sym_break] = ACTIONS(41), @@ -18395,107 +18518,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(85), [anon_sym_while] = ACTIONS(87), [anon_sym_extern] = ACTIONS(89), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(95), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(113), - [sym_metavariable] = ACTIONS(115), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [anon_sym_safe] = 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(28)] = { - [sym__statement] = STATE(771), - [sym_empty_statement] = STATE(662), - [sym_expression_statement] = STATE(662), - [sym_macro_definition] = STATE(662), - [sym_attribute_item] = STATE(662), - [sym_inner_attribute_item] = STATE(662), - [sym_mod_item] = STATE(662), - [sym_foreign_mod_item] = STATE(662), - [sym_struct_item] = STATE(662), - [sym_union_item] = STATE(662), - [sym_enum_item] = STATE(662), - [sym_extern_crate_declaration] = STATE(662), - [sym_const_item] = STATE(662), - [sym_static_item] = STATE(662), - [sym_type_item] = STATE(662), - [sym_function_item] = STATE(662), - [sym_function_signature_item] = STATE(662), - [sym_function_modifiers] = STATE(3616), - [sym_impl_item] = STATE(662), - [sym_trait_item] = STATE(662), - [sym_associated_type] = STATE(662), - [sym_let_declaration] = STATE(662), - [sym_use_declaration] = STATE(662), - [sym_extern_modifier] = STATE(2203), - [sym_visibility_modifier] = STATE(1996), - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1877), - [sym_macro_invocation] = STATE(411), - [sym_scoped_identifier] = STATE(1587), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(392), - [sym_match_expression] = STATE(392), - [sym_while_expression] = STATE(392), - [sym_loop_expression] = STATE(392), - [sym_for_expression] = STATE(392), - [sym_const_block] = STATE(392), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3521), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(392), - [sym_async_block] = STATE(392), - [sym_gen_block] = STATE(392), - [sym_try_block] = STATE(392), - [sym_block] = STATE(392), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), + [sym__statement] = STATE(529), + [sym_empty_statement] = STATE(668), + [sym_expression_statement] = STATE(668), + [sym_macro_definition] = STATE(668), + [sym_attribute_item] = STATE(668), + [sym_inner_attribute_item] = STATE(668), + [sym_mod_item] = STATE(668), + [sym_foreign_mod_item] = STATE(668), + [sym_struct_item] = STATE(668), + [sym_union_item] = STATE(668), + [sym_enum_item] = STATE(668), + [sym_extern_crate_declaration] = STATE(668), + [sym_const_item] = STATE(668), + [sym_static_item] = STATE(668), + [sym_type_item] = STATE(668), + [sym_function_item] = STATE(668), + [sym_function_signature_item] = STATE(668), + [sym_function_modifiers] = STATE(3596), + [sym_impl_item] = STATE(668), + [sym_trait_item] = STATE(668), + [sym_associated_type] = STATE(668), + [sym_let_declaration] = STATE(668), + [sym_use_declaration] = STATE(668), + [sym_extern_modifier] = STATE(2175), + [sym_visibility_modifier] = STATE(2008), + [sym_bracketed_type] = STATE(3752), + [sym_generic_function] = STATE(1492), + [sym_generic_type_with_turbofish] = STATE(3039), + [sym__expression_except_range] = STATE(1409), + [sym__expression] = STATE(1906), + [sym_macro_invocation] = STATE(401), + [sym_scoped_identifier] = STATE(1589), + [sym_scoped_type_identifier_in_expression_position] = STATE(3335), + [sym_range_expression] = STATE(1505), + [sym_unary_expression] = STATE(1492), + [sym_try_expression] = STATE(1492), + [sym_reference_expression] = STATE(1492), + [sym_binary_expression] = STATE(1492), + [sym_assignment_expression] = STATE(1492), + [sym_compound_assignment_expr] = STATE(1492), + [sym_type_cast_expression] = STATE(1492), + [sym_return_expression] = STATE(1492), + [sym_yield_expression] = STATE(1492), + [sym_call_expression] = STATE(1492), + [sym_array_expression] = STATE(1492), + [sym_parenthesized_expression] = STATE(1492), + [sym_tuple_expression] = STATE(1492), + [sym_unit_expression] = STATE(1492), + [sym_struct_expression] = STATE(1492), + [sym_if_expression] = STATE(404), + [sym_match_expression] = STATE(404), + [sym_while_expression] = STATE(404), + [sym_loop_expression] = STATE(404), + [sym_for_expression] = STATE(404), + [sym_const_block] = STATE(404), + [sym_closure_expression] = STATE(1492), + [sym_closure_parameters] = STATE(229), + [sym_label] = STATE(3504), + [sym_break_expression] = STATE(1492), + [sym_continue_expression] = STATE(1492), + [sym_index_expression] = STATE(1492), + [sym_await_expression] = STATE(1492), + [sym_field_expression] = STATE(1412), + [sym_unsafe_block] = STATE(404), + [sym_async_block] = STATE(404), + [sym_gen_block] = STATE(404), + [sym_try_block] = STATE(404), + [sym_block] = STATE(404), + [sym__literal] = STATE(1492), + [sym_string_literal] = STATE(1530), + [sym_raw_string_literal] = STATE(1530), + [sym_boolean_literal] = STATE(1530), [sym_line_comment] = STATE(28), [sym_block_comment] = STATE(28), [aux_sym_source_file_repeat1] = STATE(29), - [aux_sym_function_modifiers_repeat1] = STATE(2252), + [aux_sym_function_modifiers_repeat1] = STATE(2244), [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(325), + [anon_sym_RBRACE] = ACTIONS(330), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -18521,7 +18645,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(121), + [anon_sym_POUND] = ACTIONS(123), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(39), [anon_sym_break] = ACTIONS(41), @@ -18549,107 +18673,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(85), [anon_sym_while] = ACTIONS(87), [anon_sym_extern] = ACTIONS(89), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(95), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(113), - [sym_metavariable] = ACTIONS(115), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [anon_sym_safe] = 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(29)] = { - [sym__statement] = STATE(771), - [sym_empty_statement] = STATE(662), - [sym_expression_statement] = STATE(662), - [sym_macro_definition] = STATE(662), - [sym_attribute_item] = STATE(662), - [sym_inner_attribute_item] = STATE(662), - [sym_mod_item] = STATE(662), - [sym_foreign_mod_item] = STATE(662), - [sym_struct_item] = STATE(662), - [sym_union_item] = STATE(662), - [sym_enum_item] = STATE(662), - [sym_extern_crate_declaration] = STATE(662), - [sym_const_item] = STATE(662), - [sym_static_item] = STATE(662), - [sym_type_item] = STATE(662), - [sym_function_item] = STATE(662), - [sym_function_signature_item] = STATE(662), - [sym_function_modifiers] = STATE(3616), - [sym_impl_item] = STATE(662), - [sym_trait_item] = STATE(662), - [sym_associated_type] = STATE(662), - [sym_let_declaration] = STATE(662), - [sym_use_declaration] = STATE(662), - [sym_extern_modifier] = STATE(2203), - [sym_visibility_modifier] = STATE(1996), - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1878), - [sym_macro_invocation] = STATE(411), - [sym_scoped_identifier] = STATE(1587), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(392), - [sym_match_expression] = STATE(392), - [sym_while_expression] = STATE(392), - [sym_loop_expression] = STATE(392), - [sym_for_expression] = STATE(392), - [sym_const_block] = STATE(392), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3521), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(392), - [sym_async_block] = STATE(392), - [sym_gen_block] = STATE(392), - [sym_try_block] = STATE(392), - [sym_block] = STATE(392), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), + [sym__statement] = STATE(529), + [sym_empty_statement] = STATE(668), + [sym_expression_statement] = STATE(668), + [sym_macro_definition] = STATE(668), + [sym_attribute_item] = STATE(668), + [sym_inner_attribute_item] = STATE(668), + [sym_mod_item] = STATE(668), + [sym_foreign_mod_item] = STATE(668), + [sym_struct_item] = STATE(668), + [sym_union_item] = STATE(668), + [sym_enum_item] = STATE(668), + [sym_extern_crate_declaration] = STATE(668), + [sym_const_item] = STATE(668), + [sym_static_item] = STATE(668), + [sym_type_item] = STATE(668), + [sym_function_item] = STATE(668), + [sym_function_signature_item] = STATE(668), + [sym_function_modifiers] = STATE(3596), + [sym_impl_item] = STATE(668), + [sym_trait_item] = STATE(668), + [sym_associated_type] = STATE(668), + [sym_let_declaration] = STATE(668), + [sym_use_declaration] = STATE(668), + [sym_extern_modifier] = STATE(2175), + [sym_visibility_modifier] = STATE(2008), + [sym_bracketed_type] = STATE(3752), + [sym_generic_function] = STATE(1492), + [sym_generic_type_with_turbofish] = STATE(3039), + [sym__expression_except_range] = STATE(1409), + [sym__expression] = STATE(1907), + [sym_macro_invocation] = STATE(401), + [sym_scoped_identifier] = STATE(1589), + [sym_scoped_type_identifier_in_expression_position] = STATE(3335), + [sym_range_expression] = STATE(1505), + [sym_unary_expression] = STATE(1492), + [sym_try_expression] = STATE(1492), + [sym_reference_expression] = STATE(1492), + [sym_binary_expression] = STATE(1492), + [sym_assignment_expression] = STATE(1492), + [sym_compound_assignment_expr] = STATE(1492), + [sym_type_cast_expression] = STATE(1492), + [sym_return_expression] = STATE(1492), + [sym_yield_expression] = STATE(1492), + [sym_call_expression] = STATE(1492), + [sym_array_expression] = STATE(1492), + [sym_parenthesized_expression] = STATE(1492), + [sym_tuple_expression] = STATE(1492), + [sym_unit_expression] = STATE(1492), + [sym_struct_expression] = STATE(1492), + [sym_if_expression] = STATE(404), + [sym_match_expression] = STATE(404), + [sym_while_expression] = STATE(404), + [sym_loop_expression] = STATE(404), + [sym_for_expression] = STATE(404), + [sym_const_block] = STATE(404), + [sym_closure_expression] = STATE(1492), + [sym_closure_parameters] = STATE(229), + [sym_label] = STATE(3504), + [sym_break_expression] = STATE(1492), + [sym_continue_expression] = STATE(1492), + [sym_index_expression] = STATE(1492), + [sym_await_expression] = STATE(1492), + [sym_field_expression] = STATE(1412), + [sym_unsafe_block] = STATE(404), + [sym_async_block] = STATE(404), + [sym_gen_block] = STATE(404), + [sym_try_block] = STATE(404), + [sym_block] = STATE(404), + [sym__literal] = STATE(1492), + [sym_string_literal] = STATE(1530), + [sym_raw_string_literal] = STATE(1530), + [sym_boolean_literal] = STATE(1530), [sym_line_comment] = STATE(29), [sym_block_comment] = STATE(29), [aux_sym_source_file_repeat1] = STATE(13), - [aux_sym_function_modifiers_repeat1] = STATE(2252), + [aux_sym_function_modifiers_repeat1] = STATE(2244), [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(327), + [anon_sym_RBRACE] = ACTIONS(332), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -18675,7 +18800,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(121), + [anon_sym_POUND] = ACTIONS(123), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(39), [anon_sym_break] = ACTIONS(41), @@ -18703,107 +18828,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(85), [anon_sym_while] = ACTIONS(87), [anon_sym_extern] = ACTIONS(89), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(95), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(113), - [sym_metavariable] = ACTIONS(115), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [anon_sym_safe] = 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(30)] = { - [sym__statement] = STATE(771), - [sym_empty_statement] = STATE(662), - [sym_expression_statement] = STATE(662), - [sym_macro_definition] = STATE(662), - [sym_attribute_item] = STATE(662), - [sym_inner_attribute_item] = STATE(662), - [sym_mod_item] = STATE(662), - [sym_foreign_mod_item] = STATE(662), - [sym_struct_item] = STATE(662), - [sym_union_item] = STATE(662), - [sym_enum_item] = STATE(662), - [sym_extern_crate_declaration] = STATE(662), - [sym_const_item] = STATE(662), - [sym_static_item] = STATE(662), - [sym_type_item] = STATE(662), - [sym_function_item] = STATE(662), - [sym_function_signature_item] = STATE(662), - [sym_function_modifiers] = STATE(3616), - [sym_impl_item] = STATE(662), - [sym_trait_item] = STATE(662), - [sym_associated_type] = STATE(662), - [sym_let_declaration] = STATE(662), - [sym_use_declaration] = STATE(662), - [sym_extern_modifier] = STATE(2203), - [sym_visibility_modifier] = STATE(1996), - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1880), - [sym_macro_invocation] = STATE(411), - [sym_scoped_identifier] = STATE(1587), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(392), - [sym_match_expression] = STATE(392), - [sym_while_expression] = STATE(392), - [sym_loop_expression] = STATE(392), - [sym_for_expression] = STATE(392), - [sym_const_block] = STATE(392), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3521), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(392), - [sym_async_block] = STATE(392), - [sym_gen_block] = STATE(392), - [sym_try_block] = STATE(392), - [sym_block] = STATE(392), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), + [sym__statement] = STATE(529), + [sym_empty_statement] = STATE(668), + [sym_expression_statement] = STATE(668), + [sym_macro_definition] = STATE(668), + [sym_attribute_item] = STATE(668), + [sym_inner_attribute_item] = STATE(668), + [sym_mod_item] = STATE(668), + [sym_foreign_mod_item] = STATE(668), + [sym_struct_item] = STATE(668), + [sym_union_item] = STATE(668), + [sym_enum_item] = STATE(668), + [sym_extern_crate_declaration] = STATE(668), + [sym_const_item] = STATE(668), + [sym_static_item] = STATE(668), + [sym_type_item] = STATE(668), + [sym_function_item] = STATE(668), + [sym_function_signature_item] = STATE(668), + [sym_function_modifiers] = STATE(3596), + [sym_impl_item] = STATE(668), + [sym_trait_item] = STATE(668), + [sym_associated_type] = STATE(668), + [sym_let_declaration] = STATE(668), + [sym_use_declaration] = STATE(668), + [sym_extern_modifier] = STATE(2175), + [sym_visibility_modifier] = STATE(2008), + [sym_bracketed_type] = STATE(3752), + [sym_generic_function] = STATE(1492), + [sym_generic_type_with_turbofish] = STATE(3039), + [sym__expression_except_range] = STATE(1409), + [sym__expression] = STATE(1908), + [sym_macro_invocation] = STATE(401), + [sym_scoped_identifier] = STATE(1589), + [sym_scoped_type_identifier_in_expression_position] = STATE(3335), + [sym_range_expression] = STATE(1505), + [sym_unary_expression] = STATE(1492), + [sym_try_expression] = STATE(1492), + [sym_reference_expression] = STATE(1492), + [sym_binary_expression] = STATE(1492), + [sym_assignment_expression] = STATE(1492), + [sym_compound_assignment_expr] = STATE(1492), + [sym_type_cast_expression] = STATE(1492), + [sym_return_expression] = STATE(1492), + [sym_yield_expression] = STATE(1492), + [sym_call_expression] = STATE(1492), + [sym_array_expression] = STATE(1492), + [sym_parenthesized_expression] = STATE(1492), + [sym_tuple_expression] = STATE(1492), + [sym_unit_expression] = STATE(1492), + [sym_struct_expression] = STATE(1492), + [sym_if_expression] = STATE(404), + [sym_match_expression] = STATE(404), + [sym_while_expression] = STATE(404), + [sym_loop_expression] = STATE(404), + [sym_for_expression] = STATE(404), + [sym_const_block] = STATE(404), + [sym_closure_expression] = STATE(1492), + [sym_closure_parameters] = STATE(229), + [sym_label] = STATE(3504), + [sym_break_expression] = STATE(1492), + [sym_continue_expression] = STATE(1492), + [sym_index_expression] = STATE(1492), + [sym_await_expression] = STATE(1492), + [sym_field_expression] = STATE(1412), + [sym_unsafe_block] = STATE(404), + [sym_async_block] = STATE(404), + [sym_gen_block] = STATE(404), + [sym_try_block] = STATE(404), + [sym_block] = STATE(404), + [sym__literal] = STATE(1492), + [sym_string_literal] = STATE(1530), + [sym_raw_string_literal] = STATE(1530), + [sym_boolean_literal] = STATE(1530), [sym_line_comment] = STATE(30), [sym_block_comment] = STATE(30), [aux_sym_source_file_repeat1] = STATE(31), - [aux_sym_function_modifiers_repeat1] = STATE(2252), + [aux_sym_function_modifiers_repeat1] = STATE(2244), [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(329), + [anon_sym_RBRACE] = ACTIONS(334), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -18829,7 +18955,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(121), + [anon_sym_POUND] = ACTIONS(123), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(39), [anon_sym_break] = ACTIONS(41), @@ -18857,107 +18983,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(85), [anon_sym_while] = ACTIONS(87), [anon_sym_extern] = ACTIONS(89), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(95), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(113), - [sym_metavariable] = ACTIONS(115), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [anon_sym_safe] = 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(771), - [sym_empty_statement] = STATE(662), - [sym_expression_statement] = STATE(662), - [sym_macro_definition] = STATE(662), - [sym_attribute_item] = STATE(662), - [sym_inner_attribute_item] = STATE(662), - [sym_mod_item] = STATE(662), - [sym_foreign_mod_item] = STATE(662), - [sym_struct_item] = STATE(662), - [sym_union_item] = STATE(662), - [sym_enum_item] = STATE(662), - [sym_extern_crate_declaration] = STATE(662), - [sym_const_item] = STATE(662), - [sym_static_item] = STATE(662), - [sym_type_item] = STATE(662), - [sym_function_item] = STATE(662), - [sym_function_signature_item] = STATE(662), - [sym_function_modifiers] = STATE(3616), - [sym_impl_item] = STATE(662), - [sym_trait_item] = STATE(662), - [sym_associated_type] = STATE(662), - [sym_let_declaration] = STATE(662), - [sym_use_declaration] = STATE(662), - [sym_extern_modifier] = STATE(2203), - [sym_visibility_modifier] = STATE(1996), - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1881), - [sym_macro_invocation] = STATE(411), - [sym_scoped_identifier] = STATE(1587), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(392), - [sym_match_expression] = STATE(392), - [sym_while_expression] = STATE(392), - [sym_loop_expression] = STATE(392), - [sym_for_expression] = STATE(392), - [sym_const_block] = STATE(392), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3521), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(392), - [sym_async_block] = STATE(392), - [sym_gen_block] = STATE(392), - [sym_try_block] = STATE(392), - [sym_block] = STATE(392), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), + [sym__statement] = STATE(529), + [sym_empty_statement] = STATE(668), + [sym_expression_statement] = STATE(668), + [sym_macro_definition] = STATE(668), + [sym_attribute_item] = STATE(668), + [sym_inner_attribute_item] = STATE(668), + [sym_mod_item] = STATE(668), + [sym_foreign_mod_item] = STATE(668), + [sym_struct_item] = STATE(668), + [sym_union_item] = STATE(668), + [sym_enum_item] = STATE(668), + [sym_extern_crate_declaration] = STATE(668), + [sym_const_item] = STATE(668), + [sym_static_item] = STATE(668), + [sym_type_item] = STATE(668), + [sym_function_item] = STATE(668), + [sym_function_signature_item] = STATE(668), + [sym_function_modifiers] = STATE(3596), + [sym_impl_item] = STATE(668), + [sym_trait_item] = STATE(668), + [sym_associated_type] = STATE(668), + [sym_let_declaration] = STATE(668), + [sym_use_declaration] = STATE(668), + [sym_extern_modifier] = STATE(2175), + [sym_visibility_modifier] = STATE(2008), + [sym_bracketed_type] = STATE(3752), + [sym_generic_function] = STATE(1492), + [sym_generic_type_with_turbofish] = STATE(3039), + [sym__expression_except_range] = STATE(1409), + [sym__expression] = STATE(1909), + [sym_macro_invocation] = STATE(401), + [sym_scoped_identifier] = STATE(1589), + [sym_scoped_type_identifier_in_expression_position] = STATE(3335), + [sym_range_expression] = STATE(1505), + [sym_unary_expression] = STATE(1492), + [sym_try_expression] = STATE(1492), + [sym_reference_expression] = STATE(1492), + [sym_binary_expression] = STATE(1492), + [sym_assignment_expression] = STATE(1492), + [sym_compound_assignment_expr] = STATE(1492), + [sym_type_cast_expression] = STATE(1492), + [sym_return_expression] = STATE(1492), + [sym_yield_expression] = STATE(1492), + [sym_call_expression] = STATE(1492), + [sym_array_expression] = STATE(1492), + [sym_parenthesized_expression] = STATE(1492), + [sym_tuple_expression] = STATE(1492), + [sym_unit_expression] = STATE(1492), + [sym_struct_expression] = STATE(1492), + [sym_if_expression] = STATE(404), + [sym_match_expression] = STATE(404), + [sym_while_expression] = STATE(404), + [sym_loop_expression] = STATE(404), + [sym_for_expression] = STATE(404), + [sym_const_block] = STATE(404), + [sym_closure_expression] = STATE(1492), + [sym_closure_parameters] = STATE(229), + [sym_label] = STATE(3504), + [sym_break_expression] = STATE(1492), + [sym_continue_expression] = STATE(1492), + [sym_index_expression] = STATE(1492), + [sym_await_expression] = STATE(1492), + [sym_field_expression] = STATE(1412), + [sym_unsafe_block] = STATE(404), + [sym_async_block] = STATE(404), + [sym_gen_block] = STATE(404), + [sym_try_block] = STATE(404), + [sym_block] = STATE(404), + [sym__literal] = STATE(1492), + [sym_string_literal] = STATE(1530), + [sym_raw_string_literal] = STATE(1530), + [sym_boolean_literal] = STATE(1530), [sym_line_comment] = STATE(31), [sym_block_comment] = STATE(31), [aux_sym_source_file_repeat1] = STATE(13), - [aux_sym_function_modifiers_repeat1] = STATE(2252), + [aux_sym_function_modifiers_repeat1] = STATE(2244), [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(331), + [anon_sym_RBRACE] = ACTIONS(336), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -18983,7 +19110,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(121), + [anon_sym_POUND] = ACTIONS(123), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(39), [anon_sym_break] = ACTIONS(41), @@ -19011,107 +19138,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(85), [anon_sym_while] = ACTIONS(87), [anon_sym_extern] = ACTIONS(89), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(95), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(113), - [sym_metavariable] = ACTIONS(115), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [anon_sym_safe] = 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(771), - [sym_empty_statement] = STATE(662), - [sym_expression_statement] = STATE(662), - [sym_macro_definition] = STATE(662), - [sym_attribute_item] = STATE(662), - [sym_inner_attribute_item] = STATE(662), - [sym_mod_item] = STATE(662), - [sym_foreign_mod_item] = STATE(662), - [sym_struct_item] = STATE(662), - [sym_union_item] = STATE(662), - [sym_enum_item] = STATE(662), - [sym_extern_crate_declaration] = STATE(662), - [sym_const_item] = STATE(662), - [sym_static_item] = STATE(662), - [sym_type_item] = STATE(662), - [sym_function_item] = STATE(662), - [sym_function_signature_item] = STATE(662), - [sym_function_modifiers] = STATE(3616), - [sym_impl_item] = STATE(662), - [sym_trait_item] = STATE(662), - [sym_associated_type] = STATE(662), - [sym_let_declaration] = STATE(662), - [sym_use_declaration] = STATE(662), - [sym_extern_modifier] = STATE(2203), - [sym_visibility_modifier] = STATE(1996), - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1882), - [sym_macro_invocation] = STATE(411), - [sym_scoped_identifier] = STATE(1587), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(392), - [sym_match_expression] = STATE(392), - [sym_while_expression] = STATE(392), - [sym_loop_expression] = STATE(392), - [sym_for_expression] = STATE(392), - [sym_const_block] = STATE(392), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3521), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(392), - [sym_async_block] = STATE(392), - [sym_gen_block] = STATE(392), - [sym_try_block] = STATE(392), - [sym_block] = STATE(392), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), + [sym__statement] = STATE(529), + [sym_empty_statement] = STATE(668), + [sym_expression_statement] = STATE(668), + [sym_macro_definition] = STATE(668), + [sym_attribute_item] = STATE(668), + [sym_inner_attribute_item] = STATE(668), + [sym_mod_item] = STATE(668), + [sym_foreign_mod_item] = STATE(668), + [sym_struct_item] = STATE(668), + [sym_union_item] = STATE(668), + [sym_enum_item] = STATE(668), + [sym_extern_crate_declaration] = STATE(668), + [sym_const_item] = STATE(668), + [sym_static_item] = STATE(668), + [sym_type_item] = STATE(668), + [sym_function_item] = STATE(668), + [sym_function_signature_item] = STATE(668), + [sym_function_modifiers] = STATE(3596), + [sym_impl_item] = STATE(668), + [sym_trait_item] = STATE(668), + [sym_associated_type] = STATE(668), + [sym_let_declaration] = STATE(668), + [sym_use_declaration] = STATE(668), + [sym_extern_modifier] = STATE(2175), + [sym_visibility_modifier] = STATE(2008), + [sym_bracketed_type] = STATE(3752), + [sym_generic_function] = STATE(1492), + [sym_generic_type_with_turbofish] = STATE(3039), + [sym__expression_except_range] = STATE(1409), + [sym__expression] = STATE(1699), + [sym_macro_invocation] = STATE(401), + [sym_scoped_identifier] = STATE(1589), + [sym_scoped_type_identifier_in_expression_position] = STATE(3335), + [sym_range_expression] = STATE(1505), + [sym_unary_expression] = STATE(1492), + [sym_try_expression] = STATE(1492), + [sym_reference_expression] = STATE(1492), + [sym_binary_expression] = STATE(1492), + [sym_assignment_expression] = STATE(1492), + [sym_compound_assignment_expr] = STATE(1492), + [sym_type_cast_expression] = STATE(1492), + [sym_return_expression] = STATE(1492), + [sym_yield_expression] = STATE(1492), + [sym_call_expression] = STATE(1492), + [sym_array_expression] = STATE(1492), + [sym_parenthesized_expression] = STATE(1492), + [sym_tuple_expression] = STATE(1492), + [sym_unit_expression] = STATE(1492), + [sym_struct_expression] = STATE(1492), + [sym_if_expression] = STATE(404), + [sym_match_expression] = STATE(404), + [sym_while_expression] = STATE(404), + [sym_loop_expression] = STATE(404), + [sym_for_expression] = STATE(404), + [sym_const_block] = STATE(404), + [sym_closure_expression] = STATE(1492), + [sym_closure_parameters] = STATE(229), + [sym_label] = STATE(3504), + [sym_break_expression] = STATE(1492), + [sym_continue_expression] = STATE(1492), + [sym_index_expression] = STATE(1492), + [sym_await_expression] = STATE(1492), + [sym_field_expression] = STATE(1412), + [sym_unsafe_block] = STATE(404), + [sym_async_block] = STATE(404), + [sym_gen_block] = STATE(404), + [sym_try_block] = STATE(404), + [sym_block] = STATE(404), + [sym__literal] = STATE(1492), + [sym_string_literal] = STATE(1530), + [sym_raw_string_literal] = STATE(1530), + [sym_boolean_literal] = STATE(1530), [sym_line_comment] = STATE(32), [sym_block_comment] = STATE(32), [aux_sym_source_file_repeat1] = STATE(33), - [aux_sym_function_modifiers_repeat1] = STATE(2252), + [aux_sym_function_modifiers_repeat1] = STATE(2244), [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(333), + [anon_sym_RBRACE] = ACTIONS(338), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -19137,7 +19265,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(121), + [anon_sym_POUND] = ACTIONS(123), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(39), [anon_sym_break] = ACTIONS(41), @@ -19165,107 +19293,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(85), [anon_sym_while] = ACTIONS(87), [anon_sym_extern] = ACTIONS(89), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(95), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(113), - [sym_metavariable] = ACTIONS(115), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [anon_sym_safe] = 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(33)] = { - [sym__statement] = STATE(771), - [sym_empty_statement] = STATE(662), - [sym_expression_statement] = STATE(662), - [sym_macro_definition] = STATE(662), - [sym_attribute_item] = STATE(662), - [sym_inner_attribute_item] = STATE(662), - [sym_mod_item] = STATE(662), - [sym_foreign_mod_item] = STATE(662), - [sym_struct_item] = STATE(662), - [sym_union_item] = STATE(662), - [sym_enum_item] = STATE(662), - [sym_extern_crate_declaration] = STATE(662), - [sym_const_item] = STATE(662), - [sym_static_item] = STATE(662), - [sym_type_item] = STATE(662), - [sym_function_item] = STATE(662), - [sym_function_signature_item] = STATE(662), - [sym_function_modifiers] = STATE(3616), - [sym_impl_item] = STATE(662), - [sym_trait_item] = STATE(662), - [sym_associated_type] = STATE(662), - [sym_let_declaration] = STATE(662), - [sym_use_declaration] = STATE(662), - [sym_extern_modifier] = STATE(2203), - [sym_visibility_modifier] = STATE(1996), - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1883), - [sym_macro_invocation] = STATE(411), - [sym_scoped_identifier] = STATE(1587), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(392), - [sym_match_expression] = STATE(392), - [sym_while_expression] = STATE(392), - [sym_loop_expression] = STATE(392), - [sym_for_expression] = STATE(392), - [sym_const_block] = STATE(392), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3521), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(392), - [sym_async_block] = STATE(392), - [sym_gen_block] = STATE(392), - [sym_try_block] = STATE(392), - [sym_block] = STATE(392), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), + [sym__statement] = STATE(529), + [sym_empty_statement] = STATE(668), + [sym_expression_statement] = STATE(668), + [sym_macro_definition] = STATE(668), + [sym_attribute_item] = STATE(668), + [sym_inner_attribute_item] = STATE(668), + [sym_mod_item] = STATE(668), + [sym_foreign_mod_item] = STATE(668), + [sym_struct_item] = STATE(668), + [sym_union_item] = STATE(668), + [sym_enum_item] = STATE(668), + [sym_extern_crate_declaration] = STATE(668), + [sym_const_item] = STATE(668), + [sym_static_item] = STATE(668), + [sym_type_item] = STATE(668), + [sym_function_item] = STATE(668), + [sym_function_signature_item] = STATE(668), + [sym_function_modifiers] = STATE(3596), + [sym_impl_item] = STATE(668), + [sym_trait_item] = STATE(668), + [sym_associated_type] = STATE(668), + [sym_let_declaration] = STATE(668), + [sym_use_declaration] = STATE(668), + [sym_extern_modifier] = STATE(2175), + [sym_visibility_modifier] = STATE(2008), + [sym_bracketed_type] = STATE(3752), + [sym_generic_function] = STATE(1492), + [sym_generic_type_with_turbofish] = STATE(3039), + [sym__expression_except_range] = STATE(1409), + [sym__expression] = STATE(1910), + [sym_macro_invocation] = STATE(401), + [sym_scoped_identifier] = STATE(1589), + [sym_scoped_type_identifier_in_expression_position] = STATE(3335), + [sym_range_expression] = STATE(1505), + [sym_unary_expression] = STATE(1492), + [sym_try_expression] = STATE(1492), + [sym_reference_expression] = STATE(1492), + [sym_binary_expression] = STATE(1492), + [sym_assignment_expression] = STATE(1492), + [sym_compound_assignment_expr] = STATE(1492), + [sym_type_cast_expression] = STATE(1492), + [sym_return_expression] = STATE(1492), + [sym_yield_expression] = STATE(1492), + [sym_call_expression] = STATE(1492), + [sym_array_expression] = STATE(1492), + [sym_parenthesized_expression] = STATE(1492), + [sym_tuple_expression] = STATE(1492), + [sym_unit_expression] = STATE(1492), + [sym_struct_expression] = STATE(1492), + [sym_if_expression] = STATE(404), + [sym_match_expression] = STATE(404), + [sym_while_expression] = STATE(404), + [sym_loop_expression] = STATE(404), + [sym_for_expression] = STATE(404), + [sym_const_block] = STATE(404), + [sym_closure_expression] = STATE(1492), + [sym_closure_parameters] = STATE(229), + [sym_label] = STATE(3504), + [sym_break_expression] = STATE(1492), + [sym_continue_expression] = STATE(1492), + [sym_index_expression] = STATE(1492), + [sym_await_expression] = STATE(1492), + [sym_field_expression] = STATE(1412), + [sym_unsafe_block] = STATE(404), + [sym_async_block] = STATE(404), + [sym_gen_block] = STATE(404), + [sym_try_block] = STATE(404), + [sym_block] = STATE(404), + [sym__literal] = STATE(1492), + [sym_string_literal] = STATE(1530), + [sym_raw_string_literal] = STATE(1530), + [sym_boolean_literal] = STATE(1530), [sym_line_comment] = STATE(33), [sym_block_comment] = STATE(33), [aux_sym_source_file_repeat1] = STATE(13), - [aux_sym_function_modifiers_repeat1] = STATE(2252), + [aux_sym_function_modifiers_repeat1] = STATE(2244), [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(335), + [anon_sym_RBRACE] = ACTIONS(340), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -19291,7 +19420,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(121), + [anon_sym_POUND] = ACTIONS(123), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(39), [anon_sym_break] = ACTIONS(41), @@ -19319,107 +19448,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(85), [anon_sym_while] = ACTIONS(87), [anon_sym_extern] = ACTIONS(89), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(95), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(113), - [sym_metavariable] = ACTIONS(115), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [anon_sym_safe] = 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(34)] = { - [sym__statement] = STATE(771), - [sym_empty_statement] = STATE(662), - [sym_expression_statement] = STATE(662), - [sym_macro_definition] = STATE(662), - [sym_attribute_item] = STATE(662), - [sym_inner_attribute_item] = STATE(662), - [sym_mod_item] = STATE(662), - [sym_foreign_mod_item] = STATE(662), - [sym_struct_item] = STATE(662), - [sym_union_item] = STATE(662), - [sym_enum_item] = STATE(662), - [sym_extern_crate_declaration] = STATE(662), - [sym_const_item] = STATE(662), - [sym_static_item] = STATE(662), - [sym_type_item] = STATE(662), - [sym_function_item] = STATE(662), - [sym_function_signature_item] = STATE(662), - [sym_function_modifiers] = STATE(3616), - [sym_impl_item] = STATE(662), - [sym_trait_item] = STATE(662), - [sym_associated_type] = STATE(662), - [sym_let_declaration] = STATE(662), - [sym_use_declaration] = STATE(662), - [sym_extern_modifier] = STATE(2203), - [sym_visibility_modifier] = STATE(1996), - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1730), - [sym_macro_invocation] = STATE(411), - [sym_scoped_identifier] = STATE(1587), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(392), - [sym_match_expression] = STATE(392), - [sym_while_expression] = STATE(392), - [sym_loop_expression] = STATE(392), - [sym_for_expression] = STATE(392), - [sym_const_block] = STATE(392), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3521), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(392), - [sym_async_block] = STATE(392), - [sym_gen_block] = STATE(392), - [sym_try_block] = STATE(392), - [sym_block] = STATE(392), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), + [sym__statement] = STATE(529), + [sym_empty_statement] = STATE(668), + [sym_expression_statement] = STATE(668), + [sym_macro_definition] = STATE(668), + [sym_attribute_item] = STATE(668), + [sym_inner_attribute_item] = STATE(668), + [sym_mod_item] = STATE(668), + [sym_foreign_mod_item] = STATE(668), + [sym_struct_item] = STATE(668), + [sym_union_item] = STATE(668), + [sym_enum_item] = STATE(668), + [sym_extern_crate_declaration] = STATE(668), + [sym_const_item] = STATE(668), + [sym_static_item] = STATE(668), + [sym_type_item] = STATE(668), + [sym_function_item] = STATE(668), + [sym_function_signature_item] = STATE(668), + [sym_function_modifiers] = STATE(3596), + [sym_impl_item] = STATE(668), + [sym_trait_item] = STATE(668), + [sym_associated_type] = STATE(668), + [sym_let_declaration] = STATE(668), + [sym_use_declaration] = STATE(668), + [sym_extern_modifier] = STATE(2175), + [sym_visibility_modifier] = STATE(2008), + [sym_bracketed_type] = STATE(3752), + [sym_generic_function] = STATE(1492), + [sym_generic_type_with_turbofish] = STATE(3039), + [sym__expression_except_range] = STATE(1409), + [sym__expression] = STATE(1882), + [sym_macro_invocation] = STATE(401), + [sym_scoped_identifier] = STATE(1589), + [sym_scoped_type_identifier_in_expression_position] = STATE(3335), + [sym_range_expression] = STATE(1505), + [sym_unary_expression] = STATE(1492), + [sym_try_expression] = STATE(1492), + [sym_reference_expression] = STATE(1492), + [sym_binary_expression] = STATE(1492), + [sym_assignment_expression] = STATE(1492), + [sym_compound_assignment_expr] = STATE(1492), + [sym_type_cast_expression] = STATE(1492), + [sym_return_expression] = STATE(1492), + [sym_yield_expression] = STATE(1492), + [sym_call_expression] = STATE(1492), + [sym_array_expression] = STATE(1492), + [sym_parenthesized_expression] = STATE(1492), + [sym_tuple_expression] = STATE(1492), + [sym_unit_expression] = STATE(1492), + [sym_struct_expression] = STATE(1492), + [sym_if_expression] = STATE(404), + [sym_match_expression] = STATE(404), + [sym_while_expression] = STATE(404), + [sym_loop_expression] = STATE(404), + [sym_for_expression] = STATE(404), + [sym_const_block] = STATE(404), + [sym_closure_expression] = STATE(1492), + [sym_closure_parameters] = STATE(229), + [sym_label] = STATE(3504), + [sym_break_expression] = STATE(1492), + [sym_continue_expression] = STATE(1492), + [sym_index_expression] = STATE(1492), + [sym_await_expression] = STATE(1492), + [sym_field_expression] = STATE(1412), + [sym_unsafe_block] = STATE(404), + [sym_async_block] = STATE(404), + [sym_gen_block] = STATE(404), + [sym_try_block] = STATE(404), + [sym_block] = STATE(404), + [sym__literal] = STATE(1492), + [sym_string_literal] = STATE(1530), + [sym_raw_string_literal] = STATE(1530), + [sym_boolean_literal] = STATE(1530), [sym_line_comment] = STATE(34), [sym_block_comment] = STATE(34), [aux_sym_source_file_repeat1] = STATE(6), - [aux_sym_function_modifiers_repeat1] = STATE(2252), + [aux_sym_function_modifiers_repeat1] = STATE(2244), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(337), + [anon_sym_RBRACE] = ACTIONS(342), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -19445,7 +19575,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(121), + [anon_sym_POUND] = ACTIONS(123), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(39), [anon_sym_break] = ACTIONS(41), @@ -19473,85 +19603,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(85), [anon_sym_while] = ACTIONS(87), [anon_sym_extern] = ACTIONS(89), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(95), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(113), - [sym_metavariable] = ACTIONS(115), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [anon_sym_safe] = 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(35)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1559), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1520), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), + [sym_bracketed_type] = STATE(3752), + [sym_generic_function] = STATE(1492), + [sym_generic_type_with_turbofish] = STATE(3039), + [sym__expression_except_range] = STATE(1409), + [sym__expression] = STATE(1578), + [sym_macro_invocation] = STATE(1529), + [sym_scoped_identifier] = STATE(1540), + [sym_scoped_type_identifier_in_expression_position] = STATE(3335), + [sym_range_expression] = STATE(1505), + [sym_unary_expression] = STATE(1492), + [sym_try_expression] = STATE(1492), + [sym_reference_expression] = STATE(1492), + [sym_binary_expression] = STATE(1492), + [sym_assignment_expression] = STATE(1492), + [sym_compound_assignment_expr] = STATE(1492), + [sym_type_cast_expression] = STATE(1492), + [sym_return_expression] = STATE(1492), + [sym_yield_expression] = STATE(1492), + [sym_call_expression] = STATE(1492), + [sym_array_expression] = STATE(1492), + [sym_parenthesized_expression] = STATE(1492), + [sym_tuple_expression] = STATE(1492), + [sym_unit_expression] = STATE(1492), + [sym_struct_expression] = STATE(1492), + [sym_if_expression] = STATE(1492), + [sym_match_expression] = STATE(1492), + [sym_while_expression] = STATE(1492), + [sym_loop_expression] = STATE(1492), + [sym_for_expression] = STATE(1492), + [sym_const_block] = STATE(1492), + [sym_closure_expression] = STATE(1492), + [sym_closure_parameters] = STATE(229), + [sym_label] = STATE(3689), + [sym_break_expression] = STATE(1492), + [sym_continue_expression] = STATE(1492), + [sym_index_expression] = STATE(1492), + [sym_await_expression] = STATE(1492), + [sym_field_expression] = STATE(1412), + [sym_unsafe_block] = STATE(1492), + [sym_async_block] = STATE(1492), + [sym_gen_block] = STATE(1492), + [sym_try_block] = STATE(1492), + [sym_block] = STATE(1492), + [sym__literal] = STATE(1492), + [sym_string_literal] = STATE(1530), + [sym_raw_string_literal] = STATE(1530), + [sym_boolean_literal] = STATE(1530), [sym_line_comment] = STATE(35), [sym_block_comment] = STATE(35), - [sym_identifier] = ACTIONS(339), - [anon_sym_SEMI] = ACTIONS(341), - [anon_sym_LPAREN] = ACTIONS(341), - [anon_sym_RPAREN] = ACTIONS(341), - [anon_sym_LBRACK] = ACTIONS(341), - [anon_sym_RBRACK] = ACTIONS(341), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_RBRACE] = ACTIONS(341), - [anon_sym_COLON] = ACTIONS(345), - [anon_sym_PLUS] = ACTIONS(347), - [anon_sym_STAR] = ACTIONS(347), - [anon_sym_QMARK] = ACTIONS(341), + [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), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), [anon_sym_u16] = ACTIONS(23), @@ -19569,136 +19700,136 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(23), [anon_sym_str] = ACTIONS(23), [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(347), - [anon_sym_SLASH] = ACTIONS(347), - [anon_sym_PERCENT] = ACTIONS(347), - [anon_sym_CARET] = ACTIONS(347), - [anon_sym_BANG] = ACTIONS(349), - [anon_sym_AMP] = ACTIONS(347), - [anon_sym_PIPE] = ACTIONS(347), - [anon_sym_AMP_AMP] = ACTIONS(341), - [anon_sym_PIPE_PIPE] = ACTIONS(341), - [anon_sym_LT_LT] = ACTIONS(347), - [anon_sym_GT_GT] = ACTIONS(347), - [anon_sym_PLUS_EQ] = ACTIONS(341), - [anon_sym_DASH_EQ] = ACTIONS(341), - [anon_sym_STAR_EQ] = ACTIONS(341), - [anon_sym_SLASH_EQ] = ACTIONS(341), - [anon_sym_PERCENT_EQ] = ACTIONS(341), - [anon_sym_CARET_EQ] = ACTIONS(341), - [anon_sym_AMP_EQ] = ACTIONS(341), - [anon_sym_PIPE_EQ] = ACTIONS(341), - [anon_sym_LT_LT_EQ] = ACTIONS(341), - [anon_sym_GT_GT_EQ] = ACTIONS(341), - [anon_sym_EQ] = ACTIONS(347), - [anon_sym_EQ_EQ] = ACTIONS(341), - [anon_sym_BANG_EQ] = ACTIONS(341), - [anon_sym_GT] = ACTIONS(347), - [anon_sym_LT] = ACTIONS(347), - [anon_sym_GT_EQ] = ACTIONS(341), - [anon_sym_LT_EQ] = ACTIONS(341), - [anon_sym_DOT] = ACTIONS(347), - [anon_sym_DOT_DOT] = ACTIONS(347), - [anon_sym_DOT_DOT_DOT] = ACTIONS(341), - [anon_sym_DOT_DOT_EQ] = ACTIONS(341), - [anon_sym_COMMA] = ACTIONS(341), + [anon_sym_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_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(347), - [anon_sym_async] = ACTIONS(351), + [anon_sym_as] = ACTIONS(352), + [anon_sym_async] = ACTIONS(356), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(358), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), + [anon_sym_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(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_else] = ACTIONS(347), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(115), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [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_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(36)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1550), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1520), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), + [sym_bracketed_type] = STATE(3752), + [sym_generic_function] = STATE(1492), + [sym_generic_type_with_turbofish] = STATE(3039), + [sym__expression_except_range] = STATE(1409), + [sym__expression] = STATE(1577), + [sym_macro_invocation] = STATE(1529), + [sym_scoped_identifier] = STATE(1540), + [sym_scoped_type_identifier_in_expression_position] = STATE(3335), + [sym_range_expression] = STATE(1505), + [sym_unary_expression] = STATE(1492), + [sym_try_expression] = STATE(1492), + [sym_reference_expression] = STATE(1492), + [sym_binary_expression] = STATE(1492), + [sym_assignment_expression] = STATE(1492), + [sym_compound_assignment_expr] = STATE(1492), + [sym_type_cast_expression] = STATE(1492), + [sym_return_expression] = STATE(1492), + [sym_yield_expression] = STATE(1492), + [sym_call_expression] = STATE(1492), + [sym_array_expression] = STATE(1492), + [sym_parenthesized_expression] = STATE(1492), + [sym_tuple_expression] = STATE(1492), + [sym_unit_expression] = STATE(1492), + [sym_struct_expression] = STATE(1492), + [sym_if_expression] = STATE(1492), + [sym_match_expression] = STATE(1492), + [sym_while_expression] = STATE(1492), + [sym_loop_expression] = STATE(1492), + [sym_for_expression] = STATE(1492), + [sym_const_block] = STATE(1492), + [sym_closure_expression] = STATE(1492), + [sym_closure_parameters] = STATE(229), + [sym_label] = STATE(3689), + [sym_break_expression] = STATE(1492), + [sym_continue_expression] = STATE(1492), + [sym_index_expression] = STATE(1492), + [sym_await_expression] = STATE(1492), + [sym_field_expression] = STATE(1412), + [sym_unsafe_block] = STATE(1492), + [sym_async_block] = STATE(1492), + [sym_gen_block] = STATE(1492), + [sym_try_block] = STATE(1492), + [sym_block] = STATE(1492), + [sym__literal] = STATE(1492), + [sym_string_literal] = STATE(1530), + [sym_raw_string_literal] = STATE(1530), + [sym_boolean_literal] = STATE(1530), [sym_line_comment] = STATE(36), [sym_block_comment] = STATE(36), - [sym_identifier] = ACTIONS(339), - [anon_sym_SEMI] = ACTIONS(375), + [sym_identifier] = ACTIONS(344), + [anon_sym_SEMI] = ACTIONS(380), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(375), - [anon_sym_LBRACK] = ACTIONS(375), - [anon_sym_RBRACK] = ACTIONS(375), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_RBRACE] = ACTIONS(375), - [anon_sym_PLUS] = ACTIONS(377), - [anon_sym_STAR] = ACTIONS(377), - [anon_sym_QMARK] = ACTIONS(375), + [anon_sym_RPAREN] = ACTIONS(380), + [anon_sym_LBRACK] = ACTIONS(380), + [anon_sym_RBRACK] = ACTIONS(380), + [anon_sym_LBRACE] = ACTIONS(348), + [anon_sym_RBRACE] = ACTIONS(380), + [anon_sym_PLUS] = ACTIONS(382), + [anon_sym_STAR] = ACTIONS(382), + [anon_sym_QMARK] = ACTIONS(380), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), [anon_sym_u16] = ACTIONS(23), @@ -19716,136 +19847,136 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(23), [anon_sym_str] = ACTIONS(23), [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(377), - [anon_sym_SLASH] = ACTIONS(377), - [anon_sym_PERCENT] = ACTIONS(377), - [anon_sym_CARET] = ACTIONS(377), - [anon_sym_BANG] = ACTIONS(349), - [anon_sym_AMP] = ACTIONS(377), - [anon_sym_PIPE] = ACTIONS(377), - [anon_sym_AMP_AMP] = ACTIONS(375), - [anon_sym_PIPE_PIPE] = ACTIONS(375), - [anon_sym_LT_LT] = ACTIONS(377), - [anon_sym_GT_GT] = ACTIONS(377), - [anon_sym_PLUS_EQ] = ACTIONS(375), - [anon_sym_DASH_EQ] = ACTIONS(375), - [anon_sym_STAR_EQ] = ACTIONS(375), - [anon_sym_SLASH_EQ] = ACTIONS(375), - [anon_sym_PERCENT_EQ] = ACTIONS(375), - [anon_sym_CARET_EQ] = ACTIONS(375), - [anon_sym_AMP_EQ] = ACTIONS(375), - [anon_sym_PIPE_EQ] = ACTIONS(375), - [anon_sym_LT_LT_EQ] = ACTIONS(375), - [anon_sym_GT_GT_EQ] = ACTIONS(375), - [anon_sym_EQ] = ACTIONS(377), - [anon_sym_EQ_EQ] = ACTIONS(375), - [anon_sym_BANG_EQ] = ACTIONS(375), - [anon_sym_GT] = ACTIONS(377), - [anon_sym_LT] = ACTIONS(377), - [anon_sym_GT_EQ] = ACTIONS(375), - [anon_sym_LT_EQ] = ACTIONS(375), - [anon_sym_DOT] = ACTIONS(377), - [anon_sym_DOT_DOT] = ACTIONS(377), - [anon_sym_DOT_DOT_DOT] = ACTIONS(375), - [anon_sym_DOT_DOT_EQ] = ACTIONS(375), - [anon_sym_COMMA] = ACTIONS(375), + [anon_sym_DASH] = ACTIONS(382), + [anon_sym_SLASH] = ACTIONS(382), + [anon_sym_PERCENT] = ACTIONS(382), + [anon_sym_CARET] = ACTIONS(382), + [anon_sym_BANG] = ACTIONS(354), + [anon_sym_AMP] = ACTIONS(382), + [anon_sym_PIPE] = ACTIONS(382), + [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(382), + [anon_sym_GT_EQ] = ACTIONS(380), + [anon_sym_LT_EQ] = ACTIONS(380), + [anon_sym_DOT] = ACTIONS(382), + [anon_sym_DOT_DOT] = ACTIONS(382), + [anon_sym_DOT_DOT_DOT] = ACTIONS(380), + [anon_sym_DOT_DOT_EQ] = ACTIONS(380), + [anon_sym_COMMA] = ACTIONS(380), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(377), - [anon_sym_async] = ACTIONS(351), + [anon_sym_as] = ACTIONS(382), + [anon_sym_async] = ACTIONS(356), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(358), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), + [anon_sym_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(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_else] = ACTIONS(377), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(115), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [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_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(37)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1549), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1520), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), + [sym_bracketed_type] = STATE(3752), + [sym_generic_function] = STATE(1492), + [sym_generic_type_with_turbofish] = STATE(3039), + [sym__expression_except_range] = STATE(1409), + [sym__expression] = STATE(1547), + [sym_macro_invocation] = STATE(1529), + [sym_scoped_identifier] = STATE(1540), + [sym_scoped_type_identifier_in_expression_position] = STATE(3335), + [sym_range_expression] = STATE(1505), + [sym_unary_expression] = STATE(1492), + [sym_try_expression] = STATE(1492), + [sym_reference_expression] = STATE(1492), + [sym_binary_expression] = STATE(1492), + [sym_assignment_expression] = STATE(1492), + [sym_compound_assignment_expr] = STATE(1492), + [sym_type_cast_expression] = STATE(1492), + [sym_return_expression] = STATE(1492), + [sym_yield_expression] = STATE(1492), + [sym_call_expression] = STATE(1492), + [sym_array_expression] = STATE(1492), + [sym_parenthesized_expression] = STATE(1492), + [sym_tuple_expression] = STATE(1492), + [sym_unit_expression] = STATE(1492), + [sym_struct_expression] = STATE(1492), + [sym_if_expression] = STATE(1492), + [sym_match_expression] = STATE(1492), + [sym_while_expression] = STATE(1492), + [sym_loop_expression] = STATE(1492), + [sym_for_expression] = STATE(1492), + [sym_const_block] = STATE(1492), + [sym_closure_expression] = STATE(1492), + [sym_closure_parameters] = STATE(229), + [sym_label] = STATE(3689), + [sym_break_expression] = STATE(1492), + [sym_continue_expression] = STATE(1492), + [sym_index_expression] = STATE(1492), + [sym_await_expression] = STATE(1492), + [sym_field_expression] = STATE(1412), + [sym_unsafe_block] = STATE(1492), + [sym_async_block] = STATE(1492), + [sym_gen_block] = STATE(1492), + [sym_try_block] = STATE(1492), + [sym_block] = STATE(1492), + [sym__literal] = STATE(1492), + [sym_string_literal] = STATE(1530), + [sym_raw_string_literal] = STATE(1530), + [sym_boolean_literal] = STATE(1530), [sym_line_comment] = STATE(37), [sym_block_comment] = STATE(37), - [sym_identifier] = ACTIONS(339), - [anon_sym_SEMI] = ACTIONS(379), - [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_RPAREN] = ACTIONS(379), - [anon_sym_LBRACK] = ACTIONS(379), - [anon_sym_RBRACK] = ACTIONS(379), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_RBRACE] = ACTIONS(379), - [anon_sym_PLUS] = ACTIONS(381), - [anon_sym_STAR] = ACTIONS(381), - [anon_sym_QMARK] = ACTIONS(379), + [sym_identifier] = ACTIONS(344), + [anon_sym_SEMI] = ACTIONS(384), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(384), + [anon_sym_LBRACK] = ACTIONS(384), + [anon_sym_RBRACK] = ACTIONS(384), + [anon_sym_LBRACE] = ACTIONS(348), + [anon_sym_RBRACE] = ACTIONS(384), + [anon_sym_PLUS] = ACTIONS(386), + [anon_sym_STAR] = ACTIONS(386), + [anon_sym_QMARK] = ACTIONS(384), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), [anon_sym_u16] = ACTIONS(23), @@ -19863,136 +19994,136 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(23), [anon_sym_str] = ACTIONS(23), [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(381), - [anon_sym_SLASH] = ACTIONS(381), - [anon_sym_PERCENT] = ACTIONS(381), - [anon_sym_CARET] = ACTIONS(381), - [anon_sym_BANG] = ACTIONS(349), - [anon_sym_AMP] = ACTIONS(381), - [anon_sym_PIPE] = ACTIONS(381), - [anon_sym_AMP_AMP] = ACTIONS(379), - [anon_sym_PIPE_PIPE] = ACTIONS(379), - [anon_sym_LT_LT] = ACTIONS(381), - [anon_sym_GT_GT] = ACTIONS(381), - [anon_sym_PLUS_EQ] = ACTIONS(379), - [anon_sym_DASH_EQ] = ACTIONS(379), - [anon_sym_STAR_EQ] = ACTIONS(379), - [anon_sym_SLASH_EQ] = ACTIONS(379), - [anon_sym_PERCENT_EQ] = ACTIONS(379), - [anon_sym_CARET_EQ] = ACTIONS(379), - [anon_sym_AMP_EQ] = ACTIONS(379), - [anon_sym_PIPE_EQ] = ACTIONS(379), - [anon_sym_LT_LT_EQ] = ACTIONS(379), - [anon_sym_GT_GT_EQ] = ACTIONS(379), - [anon_sym_EQ] = ACTIONS(381), - [anon_sym_EQ_EQ] = ACTIONS(379), - [anon_sym_BANG_EQ] = ACTIONS(379), - [anon_sym_GT] = ACTIONS(381), - [anon_sym_LT] = ACTIONS(381), - [anon_sym_GT_EQ] = ACTIONS(379), - [anon_sym_LT_EQ] = ACTIONS(379), - [anon_sym_DOT] = ACTIONS(381), - [anon_sym_DOT_DOT] = ACTIONS(381), - [anon_sym_DOT_DOT_DOT] = ACTIONS(379), - [anon_sym_DOT_DOT_EQ] = ACTIONS(379), - [anon_sym_COMMA] = ACTIONS(379), + [anon_sym_DASH] = ACTIONS(386), + [anon_sym_SLASH] = ACTIONS(386), + [anon_sym_PERCENT] = ACTIONS(386), + [anon_sym_CARET] = ACTIONS(386), + [anon_sym_BANG] = ACTIONS(354), + [anon_sym_AMP] = ACTIONS(386), + [anon_sym_PIPE] = ACTIONS(386), + [anon_sym_AMP_AMP] = ACTIONS(384), + [anon_sym_PIPE_PIPE] = ACTIONS(384), + [anon_sym_LT_LT] = ACTIONS(386), + [anon_sym_GT_GT] = ACTIONS(386), + [anon_sym_PLUS_EQ] = ACTIONS(384), + [anon_sym_DASH_EQ] = ACTIONS(384), + [anon_sym_STAR_EQ] = ACTIONS(384), + [anon_sym_SLASH_EQ] = ACTIONS(384), + [anon_sym_PERCENT_EQ] = ACTIONS(384), + [anon_sym_CARET_EQ] = ACTIONS(384), + [anon_sym_AMP_EQ] = ACTIONS(384), + [anon_sym_PIPE_EQ] = ACTIONS(384), + [anon_sym_LT_LT_EQ] = ACTIONS(384), + [anon_sym_GT_GT_EQ] = ACTIONS(384), + [anon_sym_EQ] = ACTIONS(386), + [anon_sym_EQ_EQ] = ACTIONS(384), + [anon_sym_BANG_EQ] = ACTIONS(384), + [anon_sym_GT] = ACTIONS(386), + [anon_sym_LT] = ACTIONS(386), + [anon_sym_GT_EQ] = ACTIONS(384), + [anon_sym_LT_EQ] = ACTIONS(384), + [anon_sym_DOT] = ACTIONS(386), + [anon_sym_DOT_DOT] = ACTIONS(386), + [anon_sym_DOT_DOT_DOT] = ACTIONS(384), + [anon_sym_DOT_DOT_EQ] = ACTIONS(384), + [anon_sym_COMMA] = ACTIONS(384), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(381), - [anon_sym_async] = ACTIONS(351), + [anon_sym_as] = ACTIONS(386), + [anon_sym_async] = ACTIONS(356), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(358), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), + [anon_sym_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(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_else] = ACTIONS(381), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(115), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [anon_sym_static] = ACTIONS(372), + [anon_sym_union] = ACTIONS(360), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [anon_sym_else] = ACTIONS(386), + [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(38)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1550), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1520), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), + [sym_bracketed_type] = STATE(3752), + [sym_generic_function] = STATE(1492), + [sym_generic_type_with_turbofish] = STATE(3039), + [sym__expression_except_range] = STATE(1409), + [sym__expression] = STATE(1568), + [sym_macro_invocation] = STATE(1529), + [sym_scoped_identifier] = STATE(1540), + [sym_scoped_type_identifier_in_expression_position] = STATE(3335), + [sym_range_expression] = STATE(1505), + [sym_unary_expression] = STATE(1492), + [sym_try_expression] = STATE(1492), + [sym_reference_expression] = STATE(1492), + [sym_binary_expression] = STATE(1492), + [sym_assignment_expression] = STATE(1492), + [sym_compound_assignment_expr] = STATE(1492), + [sym_type_cast_expression] = STATE(1492), + [sym_return_expression] = STATE(1492), + [sym_yield_expression] = STATE(1492), + [sym_call_expression] = STATE(1492), + [sym_array_expression] = STATE(1492), + [sym_parenthesized_expression] = STATE(1492), + [sym_tuple_expression] = STATE(1492), + [sym_unit_expression] = STATE(1492), + [sym_struct_expression] = STATE(1492), + [sym_if_expression] = STATE(1492), + [sym_match_expression] = STATE(1492), + [sym_while_expression] = STATE(1492), + [sym_loop_expression] = STATE(1492), + [sym_for_expression] = STATE(1492), + [sym_const_block] = STATE(1492), + [sym_closure_expression] = STATE(1492), + [sym_closure_parameters] = STATE(229), + [sym_label] = STATE(3689), + [sym_break_expression] = STATE(1492), + [sym_continue_expression] = STATE(1492), + [sym_index_expression] = STATE(1492), + [sym_await_expression] = STATE(1492), + [sym_field_expression] = STATE(1412), + [sym_unsafe_block] = STATE(1492), + [sym_async_block] = STATE(1492), + [sym_gen_block] = STATE(1492), + [sym_try_block] = STATE(1492), + [sym_block] = STATE(1492), + [sym__literal] = STATE(1492), + [sym_string_literal] = STATE(1530), + [sym_raw_string_literal] = STATE(1530), + [sym_boolean_literal] = STATE(1530), [sym_line_comment] = STATE(38), [sym_block_comment] = STATE(38), - [sym_identifier] = ACTIONS(339), - [anon_sym_SEMI] = ACTIONS(375), - [anon_sym_LPAREN] = ACTIONS(375), - [anon_sym_RPAREN] = ACTIONS(375), - [anon_sym_LBRACK] = ACTIONS(375), - [anon_sym_RBRACK] = ACTIONS(375), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_RBRACE] = ACTIONS(375), - [anon_sym_PLUS] = ACTIONS(377), - [anon_sym_STAR] = ACTIONS(377), - [anon_sym_QMARK] = ACTIONS(375), + [sym_identifier] = ACTIONS(344), + [anon_sym_SEMI] = ACTIONS(388), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(388), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_RBRACK] = ACTIONS(388), + [anon_sym_LBRACE] = ACTIONS(348), + [anon_sym_RBRACE] = ACTIONS(388), + [anon_sym_PLUS] = ACTIONS(390), + [anon_sym_STAR] = ACTIONS(354), + [anon_sym_QMARK] = ACTIONS(388), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), [anon_sym_u16] = ACTIONS(23), @@ -20010,136 +20141,136 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(23), [anon_sym_str] = ACTIONS(23), [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(377), - [anon_sym_SLASH] = ACTIONS(377), - [anon_sym_PERCENT] = ACTIONS(377), - [anon_sym_CARET] = ACTIONS(377), - [anon_sym_BANG] = ACTIONS(349), - [anon_sym_AMP] = ACTIONS(377), - [anon_sym_PIPE] = ACTIONS(377), - [anon_sym_AMP_AMP] = ACTIONS(375), - [anon_sym_PIPE_PIPE] = ACTIONS(375), - [anon_sym_LT_LT] = ACTIONS(377), - [anon_sym_GT_GT] = ACTIONS(377), - [anon_sym_PLUS_EQ] = ACTIONS(375), - [anon_sym_DASH_EQ] = ACTIONS(375), - [anon_sym_STAR_EQ] = ACTIONS(375), - [anon_sym_SLASH_EQ] = ACTIONS(375), - [anon_sym_PERCENT_EQ] = ACTIONS(375), - [anon_sym_CARET_EQ] = ACTIONS(375), - [anon_sym_AMP_EQ] = ACTIONS(375), - [anon_sym_PIPE_EQ] = ACTIONS(375), - [anon_sym_LT_LT_EQ] = ACTIONS(375), - [anon_sym_GT_GT_EQ] = ACTIONS(375), - [anon_sym_EQ] = ACTIONS(377), - [anon_sym_EQ_EQ] = ACTIONS(375), - [anon_sym_BANG_EQ] = ACTIONS(375), - [anon_sym_GT] = ACTIONS(377), - [anon_sym_LT] = ACTIONS(377), - [anon_sym_GT_EQ] = ACTIONS(375), - [anon_sym_LT_EQ] = ACTIONS(375), - [anon_sym_DOT] = ACTIONS(377), - [anon_sym_DOT_DOT] = ACTIONS(377), - [anon_sym_DOT_DOT_DOT] = ACTIONS(375), - [anon_sym_DOT_DOT_EQ] = ACTIONS(375), - [anon_sym_COMMA] = ACTIONS(375), + [anon_sym_DASH] = ACTIONS(354), + [anon_sym_SLASH] = ACTIONS(390), + [anon_sym_PERCENT] = ACTIONS(390), + [anon_sym_CARET] = ACTIONS(390), + [anon_sym_BANG] = ACTIONS(354), + [anon_sym_AMP] = ACTIONS(392), + [anon_sym_PIPE] = ACTIONS(394), + [anon_sym_AMP_AMP] = ACTIONS(388), + [anon_sym_PIPE_PIPE] = ACTIONS(388), + [anon_sym_LT_LT] = ACTIONS(390), + [anon_sym_GT_GT] = ACTIONS(390), + [anon_sym_PLUS_EQ] = ACTIONS(388), + [anon_sym_DASH_EQ] = ACTIONS(388), + [anon_sym_STAR_EQ] = ACTIONS(388), + [anon_sym_SLASH_EQ] = ACTIONS(388), + [anon_sym_PERCENT_EQ] = ACTIONS(388), + [anon_sym_CARET_EQ] = ACTIONS(388), + [anon_sym_AMP_EQ] = ACTIONS(388), + [anon_sym_PIPE_EQ] = ACTIONS(388), + [anon_sym_LT_LT_EQ] = ACTIONS(388), + [anon_sym_GT_GT_EQ] = ACTIONS(388), + [anon_sym_EQ] = ACTIONS(390), + [anon_sym_EQ_EQ] = ACTIONS(388), + [anon_sym_BANG_EQ] = ACTIONS(388), + [anon_sym_GT] = ACTIONS(390), + [anon_sym_LT] = ACTIONS(396), + [anon_sym_GT_EQ] = ACTIONS(388), + [anon_sym_LT_EQ] = ACTIONS(388), + [anon_sym_DOT] = ACTIONS(390), + [anon_sym_DOT_DOT] = ACTIONS(398), + [anon_sym_DOT_DOT_DOT] = ACTIONS(388), + [anon_sym_DOT_DOT_EQ] = ACTIONS(388), + [anon_sym_COMMA] = ACTIONS(388), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(377), - [anon_sym_async] = ACTIONS(351), + [anon_sym_as] = ACTIONS(390), + [anon_sym_async] = ACTIONS(356), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(358), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), + [anon_sym_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(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_else] = ACTIONS(377), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(115), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [anon_sym_static] = ACTIONS(372), + [anon_sym_union] = ACTIONS(360), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [anon_sym_else] = ACTIONS(390), + [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(39)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1549), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1520), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), + [sym_bracketed_type] = STATE(3752), + [sym_generic_function] = STATE(1492), + [sym_generic_type_with_turbofish] = STATE(3039), + [sym__expression_except_range] = STATE(1409), + [sym__expression] = STATE(1547), + [sym_macro_invocation] = STATE(1529), + [sym_scoped_identifier] = STATE(1540), + [sym_scoped_type_identifier_in_expression_position] = STATE(3335), + [sym_range_expression] = STATE(1505), + [sym_unary_expression] = STATE(1492), + [sym_try_expression] = STATE(1492), + [sym_reference_expression] = STATE(1492), + [sym_binary_expression] = STATE(1492), + [sym_assignment_expression] = STATE(1492), + [sym_compound_assignment_expr] = STATE(1492), + [sym_type_cast_expression] = STATE(1492), + [sym_return_expression] = STATE(1492), + [sym_yield_expression] = STATE(1492), + [sym_call_expression] = STATE(1492), + [sym_array_expression] = STATE(1492), + [sym_parenthesized_expression] = STATE(1492), + [sym_tuple_expression] = STATE(1492), + [sym_unit_expression] = STATE(1492), + [sym_struct_expression] = STATE(1492), + [sym_if_expression] = STATE(1492), + [sym_match_expression] = STATE(1492), + [sym_while_expression] = STATE(1492), + [sym_loop_expression] = STATE(1492), + [sym_for_expression] = STATE(1492), + [sym_const_block] = STATE(1492), + [sym_closure_expression] = STATE(1492), + [sym_closure_parameters] = STATE(229), + [sym_label] = STATE(3689), + [sym_break_expression] = STATE(1492), + [sym_continue_expression] = STATE(1492), + [sym_index_expression] = STATE(1492), + [sym_await_expression] = STATE(1492), + [sym_field_expression] = STATE(1412), + [sym_unsafe_block] = STATE(1492), + [sym_async_block] = STATE(1492), + [sym_gen_block] = STATE(1492), + [sym_try_block] = STATE(1492), + [sym_block] = STATE(1492), + [sym__literal] = STATE(1492), + [sym_string_literal] = STATE(1530), + [sym_raw_string_literal] = STATE(1530), + [sym_boolean_literal] = STATE(1530), [sym_line_comment] = STATE(39), [sym_block_comment] = STATE(39), - [sym_identifier] = ACTIONS(339), - [anon_sym_SEMI] = ACTIONS(379), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(379), - [anon_sym_LBRACK] = ACTIONS(379), - [anon_sym_RBRACK] = ACTIONS(379), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_RBRACE] = ACTIONS(379), - [anon_sym_PLUS] = ACTIONS(381), - [anon_sym_STAR] = ACTIONS(381), - [anon_sym_QMARK] = ACTIONS(379), + [sym_identifier] = ACTIONS(344), + [anon_sym_SEMI] = ACTIONS(384), + [anon_sym_LPAREN] = ACTIONS(384), + [anon_sym_RPAREN] = ACTIONS(384), + [anon_sym_LBRACK] = ACTIONS(384), + [anon_sym_RBRACK] = ACTIONS(384), + [anon_sym_LBRACE] = ACTIONS(348), + [anon_sym_RBRACE] = ACTIONS(384), + [anon_sym_PLUS] = ACTIONS(386), + [anon_sym_STAR] = ACTIONS(386), + [anon_sym_QMARK] = ACTIONS(384), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), [anon_sym_u16] = ACTIONS(23), @@ -20157,136 +20288,136 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(23), [anon_sym_str] = ACTIONS(23), [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(381), - [anon_sym_SLASH] = ACTIONS(381), - [anon_sym_PERCENT] = ACTIONS(381), - [anon_sym_CARET] = ACTIONS(381), - [anon_sym_BANG] = ACTIONS(349), - [anon_sym_AMP] = ACTIONS(381), - [anon_sym_PIPE] = ACTIONS(381), - [anon_sym_AMP_AMP] = ACTIONS(379), - [anon_sym_PIPE_PIPE] = ACTIONS(379), - [anon_sym_LT_LT] = ACTIONS(381), - [anon_sym_GT_GT] = ACTIONS(381), - [anon_sym_PLUS_EQ] = ACTIONS(379), - [anon_sym_DASH_EQ] = ACTIONS(379), - [anon_sym_STAR_EQ] = ACTIONS(379), - [anon_sym_SLASH_EQ] = ACTIONS(379), - [anon_sym_PERCENT_EQ] = ACTIONS(379), - [anon_sym_CARET_EQ] = ACTIONS(379), - [anon_sym_AMP_EQ] = ACTIONS(379), - [anon_sym_PIPE_EQ] = ACTIONS(379), - [anon_sym_LT_LT_EQ] = ACTIONS(379), - [anon_sym_GT_GT_EQ] = ACTIONS(379), - [anon_sym_EQ] = ACTIONS(381), - [anon_sym_EQ_EQ] = ACTIONS(379), - [anon_sym_BANG_EQ] = ACTIONS(379), - [anon_sym_GT] = ACTIONS(381), - [anon_sym_LT] = ACTIONS(381), - [anon_sym_GT_EQ] = ACTIONS(379), - [anon_sym_LT_EQ] = ACTIONS(379), - [anon_sym_DOT] = ACTIONS(381), - [anon_sym_DOT_DOT] = ACTIONS(381), - [anon_sym_DOT_DOT_DOT] = ACTIONS(379), - [anon_sym_DOT_DOT_EQ] = ACTIONS(379), - [anon_sym_COMMA] = ACTIONS(379), + [anon_sym_DASH] = ACTIONS(386), + [anon_sym_SLASH] = ACTIONS(386), + [anon_sym_PERCENT] = ACTIONS(386), + [anon_sym_CARET] = ACTIONS(386), + [anon_sym_BANG] = ACTIONS(354), + [anon_sym_AMP] = ACTIONS(386), + [anon_sym_PIPE] = ACTIONS(386), + [anon_sym_AMP_AMP] = ACTIONS(384), + [anon_sym_PIPE_PIPE] = ACTIONS(384), + [anon_sym_LT_LT] = ACTIONS(386), + [anon_sym_GT_GT] = ACTIONS(386), + [anon_sym_PLUS_EQ] = ACTIONS(384), + [anon_sym_DASH_EQ] = ACTIONS(384), + [anon_sym_STAR_EQ] = ACTIONS(384), + [anon_sym_SLASH_EQ] = ACTIONS(384), + [anon_sym_PERCENT_EQ] = ACTIONS(384), + [anon_sym_CARET_EQ] = ACTIONS(384), + [anon_sym_AMP_EQ] = ACTIONS(384), + [anon_sym_PIPE_EQ] = ACTIONS(384), + [anon_sym_LT_LT_EQ] = ACTIONS(384), + [anon_sym_GT_GT_EQ] = ACTIONS(384), + [anon_sym_EQ] = ACTIONS(386), + [anon_sym_EQ_EQ] = ACTIONS(384), + [anon_sym_BANG_EQ] = ACTIONS(384), + [anon_sym_GT] = ACTIONS(386), + [anon_sym_LT] = ACTIONS(386), + [anon_sym_GT_EQ] = ACTIONS(384), + [anon_sym_LT_EQ] = ACTIONS(384), + [anon_sym_DOT] = ACTIONS(386), + [anon_sym_DOT_DOT] = ACTIONS(386), + [anon_sym_DOT_DOT_DOT] = ACTIONS(384), + [anon_sym_DOT_DOT_EQ] = ACTIONS(384), + [anon_sym_COMMA] = ACTIONS(384), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(381), - [anon_sym_async] = ACTIONS(351), + [anon_sym_as] = ACTIONS(386), + [anon_sym_async] = ACTIONS(356), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(358), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), + [anon_sym_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(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_else] = ACTIONS(381), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(115), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [anon_sym_static] = ACTIONS(372), + [anon_sym_union] = ACTIONS(360), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [anon_sym_else] = ACTIONS(386), + [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(40)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1558), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1520), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), + [sym_bracketed_type] = STATE(3752), + [sym_generic_function] = STATE(1492), + [sym_generic_type_with_turbofish] = STATE(3039), + [sym__expression_except_range] = STATE(1409), + [sym__expression] = STATE(1549), + [sym_macro_invocation] = STATE(1529), + [sym_scoped_identifier] = STATE(1540), + [sym_scoped_type_identifier_in_expression_position] = STATE(3335), + [sym_range_expression] = STATE(1505), + [sym_unary_expression] = STATE(1492), + [sym_try_expression] = STATE(1492), + [sym_reference_expression] = STATE(1492), + [sym_binary_expression] = STATE(1492), + [sym_assignment_expression] = STATE(1492), + [sym_compound_assignment_expr] = STATE(1492), + [sym_type_cast_expression] = STATE(1492), + [sym_return_expression] = STATE(1492), + [sym_yield_expression] = STATE(1492), + [sym_call_expression] = STATE(1492), + [sym_array_expression] = STATE(1492), + [sym_parenthesized_expression] = STATE(1492), + [sym_tuple_expression] = STATE(1492), + [sym_unit_expression] = STATE(1492), + [sym_struct_expression] = STATE(1492), + [sym_if_expression] = STATE(1492), + [sym_match_expression] = STATE(1492), + [sym_while_expression] = STATE(1492), + [sym_loop_expression] = STATE(1492), + [sym_for_expression] = STATE(1492), + [sym_const_block] = STATE(1492), + [sym_closure_expression] = STATE(1492), + [sym_closure_parameters] = STATE(229), + [sym_label] = STATE(3689), + [sym_break_expression] = STATE(1492), + [sym_continue_expression] = STATE(1492), + [sym_index_expression] = STATE(1492), + [sym_await_expression] = STATE(1492), + [sym_field_expression] = STATE(1412), + [sym_unsafe_block] = STATE(1492), + [sym_async_block] = STATE(1492), + [sym_gen_block] = STATE(1492), + [sym_try_block] = STATE(1492), + [sym_block] = STATE(1492), + [sym__literal] = STATE(1492), + [sym_string_literal] = STATE(1530), + [sym_raw_string_literal] = STATE(1530), + [sym_boolean_literal] = STATE(1530), [sym_line_comment] = STATE(40), [sym_block_comment] = STATE(40), - [sym_identifier] = ACTIONS(339), - [anon_sym_SEMI] = ACTIONS(383), + [sym_identifier] = ACTIONS(344), + [anon_sym_SEMI] = ACTIONS(400), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(383), + [anon_sym_RPAREN] = ACTIONS(400), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(383), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_RBRACE] = ACTIONS(383), - [anon_sym_PLUS] = ACTIONS(385), - [anon_sym_STAR] = ACTIONS(349), - [anon_sym_QMARK] = ACTIONS(383), + [anon_sym_RBRACK] = ACTIONS(400), + [anon_sym_LBRACE] = ACTIONS(348), + [anon_sym_RBRACE] = ACTIONS(400), + [anon_sym_PLUS] = ACTIONS(402), + [anon_sym_STAR] = ACTIONS(354), + [anon_sym_QMARK] = ACTIONS(400), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), [anon_sym_u16] = ACTIONS(23), @@ -20304,136 +20435,136 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(23), [anon_sym_str] = ACTIONS(23), [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(349), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_PERCENT] = ACTIONS(385), - [anon_sym_CARET] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(349), - [anon_sym_AMP] = ACTIONS(387), - [anon_sym_PIPE] = ACTIONS(389), - [anon_sym_AMP_AMP] = ACTIONS(383), - [anon_sym_PIPE_PIPE] = ACTIONS(383), - [anon_sym_LT_LT] = ACTIONS(385), - [anon_sym_GT_GT] = ACTIONS(385), - [anon_sym_PLUS_EQ] = ACTIONS(383), - [anon_sym_DASH_EQ] = ACTIONS(383), - [anon_sym_STAR_EQ] = ACTIONS(383), - [anon_sym_SLASH_EQ] = ACTIONS(383), - [anon_sym_PERCENT_EQ] = ACTIONS(383), - [anon_sym_CARET_EQ] = ACTIONS(383), - [anon_sym_AMP_EQ] = ACTIONS(383), - [anon_sym_PIPE_EQ] = ACTIONS(383), - [anon_sym_LT_LT_EQ] = ACTIONS(383), - [anon_sym_GT_GT_EQ] = ACTIONS(383), - [anon_sym_EQ] = ACTIONS(385), - [anon_sym_EQ_EQ] = ACTIONS(383), - [anon_sym_BANG_EQ] = ACTIONS(383), - [anon_sym_GT] = ACTIONS(385), - [anon_sym_LT] = ACTIONS(391), - [anon_sym_GT_EQ] = ACTIONS(383), - [anon_sym_LT_EQ] = ACTIONS(383), - [anon_sym_DOT] = ACTIONS(385), - [anon_sym_DOT_DOT] = ACTIONS(393), - [anon_sym_DOT_DOT_DOT] = ACTIONS(383), - [anon_sym_DOT_DOT_EQ] = ACTIONS(383), - [anon_sym_COMMA] = ACTIONS(383), + [anon_sym_DASH] = ACTIONS(354), + [anon_sym_SLASH] = ACTIONS(402), + [anon_sym_PERCENT] = ACTIONS(402), + [anon_sym_CARET] = ACTIONS(402), + [anon_sym_BANG] = ACTIONS(354), + [anon_sym_AMP] = ACTIONS(392), + [anon_sym_PIPE] = ACTIONS(394), + [anon_sym_AMP_AMP] = ACTIONS(400), + [anon_sym_PIPE_PIPE] = ACTIONS(400), + [anon_sym_LT_LT] = ACTIONS(402), + [anon_sym_GT_GT] = ACTIONS(402), + [anon_sym_PLUS_EQ] = ACTIONS(400), + [anon_sym_DASH_EQ] = ACTIONS(400), + [anon_sym_STAR_EQ] = ACTIONS(400), + [anon_sym_SLASH_EQ] = ACTIONS(400), + [anon_sym_PERCENT_EQ] = ACTIONS(400), + [anon_sym_CARET_EQ] = ACTIONS(400), + [anon_sym_AMP_EQ] = ACTIONS(400), + [anon_sym_PIPE_EQ] = ACTIONS(400), + [anon_sym_LT_LT_EQ] = ACTIONS(400), + [anon_sym_GT_GT_EQ] = ACTIONS(400), + [anon_sym_EQ] = ACTIONS(402), + [anon_sym_EQ_EQ] = ACTIONS(400), + [anon_sym_BANG_EQ] = ACTIONS(400), + [anon_sym_GT] = ACTIONS(402), + [anon_sym_LT] = ACTIONS(396), + [anon_sym_GT_EQ] = ACTIONS(400), + [anon_sym_LT_EQ] = ACTIONS(400), + [anon_sym_DOT] = ACTIONS(402), + [anon_sym_DOT_DOT] = ACTIONS(398), + [anon_sym_DOT_DOT_DOT] = ACTIONS(400), + [anon_sym_DOT_DOT_EQ] = ACTIONS(400), + [anon_sym_COMMA] = ACTIONS(400), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(385), - [anon_sym_async] = ACTIONS(351), + [anon_sym_as] = ACTIONS(402), + [anon_sym_async] = ACTIONS(356), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(358), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), + [anon_sym_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(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_else] = ACTIONS(385), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(115), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [anon_sym_static] = ACTIONS(372), + [anon_sym_union] = ACTIONS(360), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [anon_sym_else] = ACTIONS(402), + [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(41)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1555), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1520), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), + [sym_bracketed_type] = STATE(3752), + [sym_generic_function] = STATE(1492), + [sym_generic_type_with_turbofish] = STATE(3039), + [sym__expression_except_range] = STATE(1409), + [sym__expression] = STATE(1577), + [sym_macro_invocation] = STATE(1529), + [sym_scoped_identifier] = STATE(1540), + [sym_scoped_type_identifier_in_expression_position] = STATE(3335), + [sym_range_expression] = STATE(1505), + [sym_unary_expression] = STATE(1492), + [sym_try_expression] = STATE(1492), + [sym_reference_expression] = STATE(1492), + [sym_binary_expression] = STATE(1492), + [sym_assignment_expression] = STATE(1492), + [sym_compound_assignment_expr] = STATE(1492), + [sym_type_cast_expression] = STATE(1492), + [sym_return_expression] = STATE(1492), + [sym_yield_expression] = STATE(1492), + [sym_call_expression] = STATE(1492), + [sym_array_expression] = STATE(1492), + [sym_parenthesized_expression] = STATE(1492), + [sym_tuple_expression] = STATE(1492), + [sym_unit_expression] = STATE(1492), + [sym_struct_expression] = STATE(1492), + [sym_if_expression] = STATE(1492), + [sym_match_expression] = STATE(1492), + [sym_while_expression] = STATE(1492), + [sym_loop_expression] = STATE(1492), + [sym_for_expression] = STATE(1492), + [sym_const_block] = STATE(1492), + [sym_closure_expression] = STATE(1492), + [sym_closure_parameters] = STATE(229), + [sym_label] = STATE(3689), + [sym_break_expression] = STATE(1492), + [sym_continue_expression] = STATE(1492), + [sym_index_expression] = STATE(1492), + [sym_await_expression] = STATE(1492), + [sym_field_expression] = STATE(1412), + [sym_unsafe_block] = STATE(1492), + [sym_async_block] = STATE(1492), + [sym_gen_block] = STATE(1492), + [sym_try_block] = STATE(1492), + [sym_block] = STATE(1492), + [sym__literal] = STATE(1492), + [sym_string_literal] = STATE(1530), + [sym_raw_string_literal] = STATE(1530), + [sym_boolean_literal] = STATE(1530), [sym_line_comment] = STATE(41), [sym_block_comment] = STATE(41), - [sym_identifier] = ACTIONS(339), - [anon_sym_SEMI] = ACTIONS(395), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(395), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(395), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_RBRACE] = ACTIONS(395), - [anon_sym_PLUS] = ACTIONS(397), - [anon_sym_STAR] = ACTIONS(349), - [anon_sym_QMARK] = ACTIONS(395), + [sym_identifier] = ACTIONS(344), + [anon_sym_SEMI] = ACTIONS(380), + [anon_sym_LPAREN] = ACTIONS(380), + [anon_sym_RPAREN] = ACTIONS(380), + [anon_sym_LBRACK] = ACTIONS(380), + [anon_sym_RBRACK] = ACTIONS(380), + [anon_sym_LBRACE] = ACTIONS(348), + [anon_sym_RBRACE] = ACTIONS(380), + [anon_sym_PLUS] = ACTIONS(382), + [anon_sym_STAR] = ACTIONS(382), + [anon_sym_QMARK] = ACTIONS(380), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), [anon_sym_u16] = ACTIONS(23), @@ -20451,136 +20582,136 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(23), [anon_sym_str] = ACTIONS(23), [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(349), - [anon_sym_SLASH] = ACTIONS(397), - [anon_sym_PERCENT] = ACTIONS(397), - [anon_sym_CARET] = ACTIONS(397), - [anon_sym_BANG] = ACTIONS(349), - [anon_sym_AMP] = ACTIONS(387), - [anon_sym_PIPE] = ACTIONS(389), - [anon_sym_AMP_AMP] = ACTIONS(395), - [anon_sym_PIPE_PIPE] = ACTIONS(395), - [anon_sym_LT_LT] = ACTIONS(397), - [anon_sym_GT_GT] = ACTIONS(397), - [anon_sym_PLUS_EQ] = ACTIONS(395), - [anon_sym_DASH_EQ] = ACTIONS(395), - [anon_sym_STAR_EQ] = ACTIONS(395), - [anon_sym_SLASH_EQ] = ACTIONS(395), - [anon_sym_PERCENT_EQ] = ACTIONS(395), - [anon_sym_CARET_EQ] = ACTIONS(395), - [anon_sym_AMP_EQ] = ACTIONS(395), - [anon_sym_PIPE_EQ] = ACTIONS(395), - [anon_sym_LT_LT_EQ] = ACTIONS(395), - [anon_sym_GT_GT_EQ] = ACTIONS(395), - [anon_sym_EQ] = ACTIONS(397), - [anon_sym_EQ_EQ] = ACTIONS(395), - [anon_sym_BANG_EQ] = ACTIONS(395), - [anon_sym_GT] = ACTIONS(397), - [anon_sym_LT] = ACTIONS(391), - [anon_sym_GT_EQ] = ACTIONS(395), - [anon_sym_LT_EQ] = ACTIONS(395), - [anon_sym_DOT] = ACTIONS(397), - [anon_sym_DOT_DOT] = ACTIONS(393), - [anon_sym_DOT_DOT_DOT] = ACTIONS(395), - [anon_sym_DOT_DOT_EQ] = ACTIONS(395), - [anon_sym_COMMA] = ACTIONS(395), + [anon_sym_DASH] = ACTIONS(382), + [anon_sym_SLASH] = ACTIONS(382), + [anon_sym_PERCENT] = ACTIONS(382), + [anon_sym_CARET] = ACTIONS(382), + [anon_sym_BANG] = ACTIONS(354), + [anon_sym_AMP] = ACTIONS(382), + [anon_sym_PIPE] = ACTIONS(382), + [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(382), + [anon_sym_GT_EQ] = ACTIONS(380), + [anon_sym_LT_EQ] = ACTIONS(380), + [anon_sym_DOT] = ACTIONS(382), + [anon_sym_DOT_DOT] = ACTIONS(382), + [anon_sym_DOT_DOT_DOT] = ACTIONS(380), + [anon_sym_DOT_DOT_EQ] = ACTIONS(380), + [anon_sym_COMMA] = ACTIONS(380), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(397), - [anon_sym_async] = ACTIONS(351), + [anon_sym_as] = ACTIONS(382), + [anon_sym_async] = ACTIONS(356), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(358), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), + [anon_sym_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(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_else] = ACTIONS(397), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(115), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [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_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(42)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1551), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1520), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(233), + [sym_bracketed_type] = STATE(3752), + [sym_generic_function] = STATE(1492), + [sym_generic_type_with_turbofish] = STATE(3039), + [sym__expression_except_range] = STATE(1409), + [sym__expression] = STATE(1557), + [sym_macro_invocation] = STATE(1529), + [sym_scoped_identifier] = STATE(1540), + [sym_scoped_type_identifier_in_expression_position] = STATE(3335), + [sym_range_expression] = STATE(1505), + [sym_unary_expression] = STATE(1492), + [sym_try_expression] = STATE(1492), + [sym_reference_expression] = STATE(1492), + [sym_binary_expression] = STATE(1492), + [sym_assignment_expression] = STATE(1492), + [sym_compound_assignment_expr] = STATE(1492), + [sym_type_cast_expression] = STATE(1492), + [sym_return_expression] = STATE(1492), + [sym_yield_expression] = STATE(1492), + [sym_call_expression] = STATE(1492), + [sym_array_expression] = STATE(1492), + [sym_parenthesized_expression] = STATE(1492), + [sym_tuple_expression] = STATE(1492), + [sym_unit_expression] = STATE(1492), + [sym_struct_expression] = STATE(1492), + [sym_if_expression] = STATE(1492), + [sym_match_expression] = STATE(1492), + [sym_while_expression] = STATE(1492), + [sym_loop_expression] = STATE(1492), + [sym_for_expression] = STATE(1492), + [sym_const_block] = STATE(1492), + [sym_closure_expression] = STATE(1492), + [sym_closure_parameters] = STATE(229), [sym_label] = STATE(35), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), + [sym_break_expression] = STATE(1492), + [sym_continue_expression] = STATE(1492), + [sym_index_expression] = STATE(1492), + [sym_await_expression] = STATE(1492), + [sym_field_expression] = STATE(1412), + [sym_unsafe_block] = STATE(1492), + [sym_async_block] = STATE(1492), + [sym_gen_block] = STATE(1492), + [sym_try_block] = STATE(1492), + [sym_block] = STATE(1492), + [sym__literal] = STATE(1492), + [sym_string_literal] = STATE(1530), + [sym_raw_string_literal] = STATE(1530), + [sym_boolean_literal] = STATE(1530), [sym_line_comment] = STATE(42), [sym_block_comment] = STATE(42), - [sym_identifier] = ACTIONS(339), - [anon_sym_SEMI] = ACTIONS(399), - [anon_sym_LPAREN] = ACTIONS(399), - [anon_sym_RPAREN] = ACTIONS(399), - [anon_sym_LBRACK] = ACTIONS(399), - [anon_sym_RBRACK] = ACTIONS(399), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_RBRACE] = ACTIONS(399), - [anon_sym_PLUS] = ACTIONS(401), - [anon_sym_STAR] = ACTIONS(401), - [anon_sym_QMARK] = ACTIONS(399), + [sym_identifier] = ACTIONS(344), + [anon_sym_SEMI] = ACTIONS(404), + [anon_sym_LPAREN] = ACTIONS(404), + [anon_sym_RPAREN] = ACTIONS(404), + [anon_sym_LBRACK] = ACTIONS(404), + [anon_sym_RBRACK] = ACTIONS(404), + [anon_sym_LBRACE] = ACTIONS(348), + [anon_sym_RBRACE] = ACTIONS(404), + [anon_sym_PLUS] = ACTIONS(406), + [anon_sym_STAR] = ACTIONS(406), + [anon_sym_QMARK] = ACTIONS(404), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), [anon_sym_u16] = ACTIONS(23), @@ -20598,3639 +20729,3638 @@ 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(401), - [anon_sym_SLASH] = ACTIONS(401), - [anon_sym_PERCENT] = ACTIONS(401), - [anon_sym_CARET] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(349), - [anon_sym_AMP] = ACTIONS(401), - [anon_sym_PIPE] = ACTIONS(401), - [anon_sym_AMP_AMP] = ACTIONS(399), - [anon_sym_PIPE_PIPE] = ACTIONS(399), - [anon_sym_LT_LT] = ACTIONS(401), - [anon_sym_GT_GT] = ACTIONS(401), - [anon_sym_PLUS_EQ] = ACTIONS(399), - [anon_sym_DASH_EQ] = ACTIONS(399), - [anon_sym_STAR_EQ] = ACTIONS(399), - [anon_sym_SLASH_EQ] = ACTIONS(399), - [anon_sym_PERCENT_EQ] = ACTIONS(399), - [anon_sym_CARET_EQ] = ACTIONS(399), - [anon_sym_AMP_EQ] = ACTIONS(399), - [anon_sym_PIPE_EQ] = ACTIONS(399), - [anon_sym_LT_LT_EQ] = ACTIONS(399), - [anon_sym_GT_GT_EQ] = ACTIONS(399), - [anon_sym_EQ] = ACTIONS(401), - [anon_sym_EQ_EQ] = ACTIONS(399), - [anon_sym_BANG_EQ] = ACTIONS(399), - [anon_sym_GT] = ACTIONS(401), - [anon_sym_LT] = ACTIONS(401), - [anon_sym_GT_EQ] = ACTIONS(399), - [anon_sym_LT_EQ] = ACTIONS(399), - [anon_sym_DOT] = ACTIONS(401), - [anon_sym_DOT_DOT] = ACTIONS(401), - [anon_sym_DOT_DOT_DOT] = ACTIONS(399), - [anon_sym_DOT_DOT_EQ] = ACTIONS(399), - [anon_sym_COMMA] = ACTIONS(399), + [anon_sym_DASH] = ACTIONS(406), + [anon_sym_SLASH] = ACTIONS(406), + [anon_sym_PERCENT] = ACTIONS(406), + [anon_sym_CARET] = ACTIONS(406), + [anon_sym_BANG] = ACTIONS(354), + [anon_sym_AMP] = ACTIONS(406), + [anon_sym_PIPE] = ACTIONS(406), + [anon_sym_AMP_AMP] = ACTIONS(404), + [anon_sym_PIPE_PIPE] = ACTIONS(404), + [anon_sym_LT_LT] = ACTIONS(406), + [anon_sym_GT_GT] = ACTIONS(406), + [anon_sym_PLUS_EQ] = ACTIONS(404), + [anon_sym_DASH_EQ] = ACTIONS(404), + [anon_sym_STAR_EQ] = ACTIONS(404), + [anon_sym_SLASH_EQ] = ACTIONS(404), + [anon_sym_PERCENT_EQ] = ACTIONS(404), + [anon_sym_CARET_EQ] = ACTIONS(404), + [anon_sym_AMP_EQ] = ACTIONS(404), + [anon_sym_PIPE_EQ] = ACTIONS(404), + [anon_sym_LT_LT_EQ] = ACTIONS(404), + [anon_sym_GT_GT_EQ] = ACTIONS(404), + [anon_sym_EQ] = ACTIONS(406), + [anon_sym_EQ_EQ] = ACTIONS(404), + [anon_sym_BANG_EQ] = ACTIONS(404), + [anon_sym_GT] = ACTIONS(406), + [anon_sym_LT] = ACTIONS(406), + [anon_sym_GT_EQ] = ACTIONS(404), + [anon_sym_LT_EQ] = ACTIONS(404), + [anon_sym_DOT] = ACTIONS(406), + [anon_sym_DOT_DOT] = ACTIONS(406), + [anon_sym_DOT_DOT_DOT] = ACTIONS(404), + [anon_sym_DOT_DOT_EQ] = ACTIONS(404), + [anon_sym_COMMA] = ACTIONS(404), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_SQUOTE] = ACTIONS(403), - [anon_sym_as] = ACTIONS(401), - [anon_sym_async] = ACTIONS(351), + [anon_sym_SQUOTE] = ACTIONS(408), + [anon_sym_as] = ACTIONS(406), + [anon_sym_async] = ACTIONS(356), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(358), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), + [anon_sym_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(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_else] = ACTIONS(401), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(115), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [anon_sym_static] = ACTIONS(372), + [anon_sym_union] = ACTIONS(360), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [anon_sym_else] = ACTIONS(406), + [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(43)] = { - [sym_bracketed_type] = STATE(3621), - [sym_generic_function] = STATE(1691), - [sym_generic_type_with_turbofish] = STATE(3063), - [sym__expression_except_range] = STATE(1659), - [sym__expression] = STATE(1742), - [sym_macro_invocation] = STATE(1708), - [sym_scoped_identifier] = STATE(1599), - [sym_scoped_type_identifier_in_expression_position] = STATE(3307), - [sym_range_expression] = STATE(1695), - [sym_unary_expression] = STATE(1691), - [sym_try_expression] = STATE(1691), - [sym_reference_expression] = STATE(1691), - [sym_binary_expression] = STATE(1691), - [sym_assignment_expression] = STATE(1691), - [sym_compound_assignment_expr] = STATE(1691), - [sym_type_cast_expression] = STATE(1691), - [sym_return_expression] = STATE(1691), - [sym_yield_expression] = STATE(1691), - [sym_call_expression] = STATE(1691), - [sym_array_expression] = STATE(1691), - [sym_parenthesized_expression] = STATE(1691), - [sym_tuple_expression] = STATE(1691), - [sym_unit_expression] = STATE(1691), - [sym_struct_expression] = STATE(1691), - [sym_if_expression] = STATE(1691), - [sym_match_expression] = STATE(1691), - [sym_while_expression] = STATE(1691), - [sym_loop_expression] = STATE(1691), - [sym_for_expression] = STATE(1691), - [sym_const_block] = STATE(1691), - [sym_closure_expression] = STATE(1691), - [sym_closure_parameters] = STATE(229), - [sym_label] = STATE(3712), - [sym_break_expression] = STATE(1691), - [sym_continue_expression] = STATE(1691), - [sym_index_expression] = STATE(1691), - [sym_await_expression] = STATE(1691), - [sym_field_expression] = STATE(1671), - [sym_unsafe_block] = STATE(1691), - [sym_async_block] = STATE(1691), - [sym_gen_block] = STATE(1691), - [sym_try_block] = STATE(1691), - [sym_block] = STATE(1691), - [sym__literal] = STATE(1691), - [sym_string_literal] = STATE(1776), - [sym_raw_string_literal] = STATE(1776), - [sym_boolean_literal] = STATE(1776), + [sym_bracketed_type] = STATE(3650), + [sym_generic_function] = STATE(1711), + [sym_generic_type_with_turbofish] = STATE(3091), + [sym__expression_except_range] = STATE(1658), + [sym__expression] = STATE(1799), + [sym_macro_invocation] = STATE(1717), + [sym_scoped_identifier] = STATE(1623), + [sym_scoped_type_identifier_in_expression_position] = STATE(3337), + [sym_range_expression] = STATE(1715), + [sym_unary_expression] = STATE(1711), + [sym_try_expression] = STATE(1711), + [sym_reference_expression] = STATE(1711), + [sym_binary_expression] = STATE(1711), + [sym_assignment_expression] = STATE(1711), + [sym_compound_assignment_expr] = STATE(1711), + [sym_type_cast_expression] = STATE(1711), + [sym_return_expression] = STATE(1711), + [sym_yield_expression] = STATE(1711), + [sym_call_expression] = STATE(1711), + [sym_array_expression] = STATE(1711), + [sym_parenthesized_expression] = STATE(1711), + [sym_tuple_expression] = STATE(1711), + [sym_unit_expression] = STATE(1711), + [sym_struct_expression] = STATE(1711), + [sym_if_expression] = STATE(1711), + [sym_match_expression] = STATE(1711), + [sym_while_expression] = STATE(1711), + [sym_loop_expression] = STATE(1711), + [sym_for_expression] = STATE(1711), + [sym_const_block] = STATE(1711), + [sym_closure_expression] = STATE(1711), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3742), + [sym_break_expression] = STATE(1711), + [sym_continue_expression] = STATE(1711), + [sym_index_expression] = STATE(1711), + [sym_await_expression] = STATE(1711), + [sym_field_expression] = STATE(1690), + [sym_unsafe_block] = STATE(1711), + [sym_async_block] = STATE(1711), + [sym_gen_block] = STATE(1711), + [sym_try_block] = STATE(1711), + [sym_block] = STATE(1711), + [sym__literal] = STATE(1711), + [sym_string_literal] = STATE(1831), + [sym_raw_string_literal] = STATE(1831), + [sym_boolean_literal] = STATE(1831), [sym_line_comment] = STATE(43), [sym_block_comment] = STATE(43), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(341), - [anon_sym_LBRACK] = ACTIONS(341), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_EQ_GT] = ACTIONS(341), - [anon_sym_COLON] = ACTIONS(409), - [anon_sym_PLUS] = ACTIONS(347), - [anon_sym_STAR] = ACTIONS(347), - [anon_sym_QMARK] = ACTIONS(341), - [anon_sym_u8] = ACTIONS(411), - [anon_sym_i8] = ACTIONS(411), - [anon_sym_u16] = ACTIONS(411), - [anon_sym_i16] = ACTIONS(411), - [anon_sym_u32] = ACTIONS(411), - [anon_sym_i32] = ACTIONS(411), - [anon_sym_u64] = ACTIONS(411), - [anon_sym_i64] = ACTIONS(411), - [anon_sym_u128] = ACTIONS(411), - [anon_sym_i128] = ACTIONS(411), - [anon_sym_isize] = ACTIONS(411), - [anon_sym_usize] = ACTIONS(411), - [anon_sym_f32] = ACTIONS(411), - [anon_sym_f64] = ACTIONS(411), - [anon_sym_bool] = ACTIONS(411), - [anon_sym_str] = ACTIONS(411), - [anon_sym_char] = ACTIONS(411), - [anon_sym_DASH] = ACTIONS(347), - [anon_sym_SLASH] = ACTIONS(347), - [anon_sym_PERCENT] = ACTIONS(347), - [anon_sym_CARET] = ACTIONS(347), - [anon_sym_BANG] = ACTIONS(413), - [anon_sym_AMP] = ACTIONS(347), - [anon_sym_PIPE] = ACTIONS(347), - [anon_sym_AMP_AMP] = ACTIONS(341), - [anon_sym_PIPE_PIPE] = ACTIONS(341), - [anon_sym_LT_LT] = ACTIONS(347), - [anon_sym_GT_GT] = ACTIONS(347), - [anon_sym_PLUS_EQ] = ACTIONS(341), - [anon_sym_DASH_EQ] = ACTIONS(341), - [anon_sym_STAR_EQ] = ACTIONS(341), - [anon_sym_SLASH_EQ] = ACTIONS(341), - [anon_sym_PERCENT_EQ] = ACTIONS(341), - [anon_sym_CARET_EQ] = ACTIONS(341), - [anon_sym_AMP_EQ] = ACTIONS(341), - [anon_sym_PIPE_EQ] = ACTIONS(341), - [anon_sym_LT_LT_EQ] = ACTIONS(341), - [anon_sym_GT_GT_EQ] = ACTIONS(341), - [anon_sym_EQ] = ACTIONS(347), - [anon_sym_EQ_EQ] = ACTIONS(341), - [anon_sym_BANG_EQ] = ACTIONS(341), - [anon_sym_GT] = ACTIONS(347), - [anon_sym_LT] = ACTIONS(347), - [anon_sym_GT_EQ] = ACTIONS(341), - [anon_sym_LT_EQ] = ACTIONS(341), - [anon_sym_DOT] = ACTIONS(347), - [anon_sym_DOT_DOT] = ACTIONS(347), - [anon_sym_DOT_DOT_DOT] = ACTIONS(341), - [anon_sym_DOT_DOT_EQ] = ACTIONS(341), - [anon_sym_COLON_COLON] = ACTIONS(415), + [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), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(347), - [anon_sym_async] = ACTIONS(417), - [anon_sym_break] = ACTIONS(419), - [anon_sym_const] = ACTIONS(421), - [anon_sym_continue] = ACTIONS(423), - [anon_sym_default] = ACTIONS(425), - [anon_sym_for] = ACTIONS(427), - [anon_sym_gen] = ACTIONS(429), - [anon_sym_if] = ACTIONS(431), - [anon_sym_loop] = ACTIONS(433), - [anon_sym_match] = ACTIONS(435), - [anon_sym_return] = ACTIONS(437), - [anon_sym_static] = ACTIONS(439), - [anon_sym_union] = ACTIONS(425), - [anon_sym_unsafe] = ACTIONS(441), - [anon_sym_while] = ACTIONS(443), - [anon_sym_yield] = ACTIONS(445), - [anon_sym_move] = ACTIONS(447), - [anon_sym_try] = ACTIONS(449), - [sym_integer_literal] = ACTIONS(451), - [aux_sym_string_literal_token1] = ACTIONS(453), - [sym_char_literal] = ACTIONS(451), - [anon_sym_true] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(457), - [sym_super] = ACTIONS(459), - [sym_crate] = ACTIONS(459), - [sym_metavariable] = ACTIONS(461), - [sym__raw_string_literal_start] = ACTIONS(463), - [sym_float_literal] = ACTIONS(451), + [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_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(44)] = { - [sym_bracketed_type] = STATE(3621), - [sym_generic_function] = STATE(1691), - [sym_generic_type_with_turbofish] = STATE(3063), - [sym__expression_except_range] = STATE(1659), - [sym__expression] = STATE(1895), - [sym_macro_invocation] = STATE(1708), - [sym_scoped_identifier] = STATE(1599), - [sym_scoped_type_identifier_in_expression_position] = STATE(3307), - [sym_range_expression] = STATE(1695), - [sym_unary_expression] = STATE(1691), - [sym_try_expression] = STATE(1691), - [sym_reference_expression] = STATE(1691), - [sym_binary_expression] = STATE(1691), - [sym_assignment_expression] = STATE(1691), - [sym_compound_assignment_expr] = STATE(1691), - [sym_type_cast_expression] = STATE(1691), - [sym_return_expression] = STATE(1691), - [sym_yield_expression] = STATE(1691), - [sym_call_expression] = STATE(1691), - [sym_array_expression] = STATE(1691), - [sym_parenthesized_expression] = STATE(1691), - [sym_tuple_expression] = STATE(1691), - [sym_unit_expression] = STATE(1691), - [sym_struct_expression] = STATE(1691), - [sym_if_expression] = STATE(1691), - [sym_match_expression] = STATE(1691), - [sym_while_expression] = STATE(1691), - [sym_loop_expression] = STATE(1691), - [sym_for_expression] = STATE(1691), - [sym_const_block] = STATE(1691), - [sym_closure_expression] = STATE(1691), - [sym_closure_parameters] = STATE(229), - [sym_label] = STATE(43), - [sym_break_expression] = STATE(1691), - [sym_continue_expression] = STATE(1691), - [sym_index_expression] = STATE(1691), - [sym_await_expression] = STATE(1691), - [sym_field_expression] = STATE(1671), - [sym_unsafe_block] = STATE(1691), - [sym_async_block] = STATE(1691), - [sym_gen_block] = STATE(1691), - [sym_try_block] = STATE(1691), - [sym_block] = STATE(1691), - [sym__literal] = STATE(1691), - [sym_string_literal] = STATE(1776), - [sym_raw_string_literal] = STATE(1776), - [sym_boolean_literal] = STATE(1776), + [sym_bracketed_type] = STATE(3752), + [sym_generic_function] = STATE(1492), + [sym_generic_type_with_turbofish] = STATE(3085), + [sym__expression_except_range] = STATE(1409), + [sym__expression] = STATE(1739), + [sym_macro_invocation] = STATE(1529), + [sym_scoped_identifier] = STATE(1604), + [sym_scoped_type_identifier_in_expression_position] = STATE(3335), + [sym_range_expression] = STATE(1505), + [sym_unary_expression] = STATE(1492), + [sym_try_expression] = STATE(1492), + [sym_reference_expression] = STATE(1492), + [sym_binary_expression] = STATE(1492), + [sym_assignment_expression] = STATE(1492), + [sym_compound_assignment_expr] = STATE(1492), + [sym_type_cast_expression] = STATE(1492), + [sym_return_expression] = STATE(1492), + [sym_yield_expression] = STATE(1492), + [sym_call_expression] = STATE(1492), + [sym_array_expression] = STATE(1492), + [sym_parenthesized_expression] = STATE(1492), + [sym_tuple_expression] = STATE(1492), + [sym_unit_expression] = STATE(1492), + [sym_struct_expression] = STATE(1492), + [sym_if_expression] = STATE(1492), + [sym_match_expression] = STATE(1492), + [sym_while_expression] = STATE(1492), + [sym_loop_expression] = STATE(1492), + [sym_for_expression] = STATE(1492), + [sym_const_block] = STATE(1492), + [sym_closure_expression] = STATE(1492), + [sym_closure_parameters] = STATE(235), + [sym_label] = STATE(3689), + [sym_break_expression] = STATE(1492), + [sym_continue_expression] = STATE(1492), + [sym_index_expression] = STATE(1492), + [sym_await_expression] = STATE(1492), + [sym_field_expression] = STATE(1412), + [sym_unsafe_block] = STATE(1492), + [sym_async_block] = STATE(1492), + [sym_gen_block] = STATE(1492), + [sym_try_block] = STATE(1492), + [sym_block] = STATE(1492), + [sym__literal] = STATE(1492), + [sym_string_literal] = STATE(1530), + [sym_raw_string_literal] = STATE(1530), + [sym_boolean_literal] = STATE(1530), [sym_line_comment] = STATE(44), [sym_block_comment] = STATE(44), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(399), - [anon_sym_LBRACK] = ACTIONS(399), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_EQ_GT] = ACTIONS(399), - [anon_sym_PLUS] = ACTIONS(401), - [anon_sym_STAR] = ACTIONS(401), - [anon_sym_QMARK] = ACTIONS(399), - [anon_sym_u8] = ACTIONS(411), - [anon_sym_i8] = ACTIONS(411), - [anon_sym_u16] = ACTIONS(411), - [anon_sym_i16] = ACTIONS(411), - [anon_sym_u32] = ACTIONS(411), - [anon_sym_i32] = ACTIONS(411), - [anon_sym_u64] = ACTIONS(411), - [anon_sym_i64] = ACTIONS(411), - [anon_sym_u128] = ACTIONS(411), - [anon_sym_i128] = ACTIONS(411), - [anon_sym_isize] = ACTIONS(411), - [anon_sym_usize] = ACTIONS(411), - [anon_sym_f32] = ACTIONS(411), - [anon_sym_f64] = ACTIONS(411), - [anon_sym_bool] = ACTIONS(411), - [anon_sym_str] = ACTIONS(411), - [anon_sym_char] = ACTIONS(411), - [anon_sym_DASH] = ACTIONS(401), - [anon_sym_SLASH] = ACTIONS(401), - [anon_sym_PERCENT] = ACTIONS(401), - [anon_sym_CARET] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(413), - [anon_sym_AMP] = ACTIONS(401), - [anon_sym_PIPE] = ACTIONS(401), - [anon_sym_AMP_AMP] = ACTIONS(399), - [anon_sym_PIPE_PIPE] = ACTIONS(399), - [anon_sym_LT_LT] = ACTIONS(401), - [anon_sym_GT_GT] = ACTIONS(401), - [anon_sym_PLUS_EQ] = ACTIONS(399), - [anon_sym_DASH_EQ] = ACTIONS(399), - [anon_sym_STAR_EQ] = ACTIONS(399), - [anon_sym_SLASH_EQ] = ACTIONS(399), - [anon_sym_PERCENT_EQ] = ACTIONS(399), - [anon_sym_CARET_EQ] = ACTIONS(399), - [anon_sym_AMP_EQ] = ACTIONS(399), - [anon_sym_PIPE_EQ] = ACTIONS(399), - [anon_sym_LT_LT_EQ] = ACTIONS(399), - [anon_sym_GT_GT_EQ] = ACTIONS(399), - [anon_sym_EQ] = ACTIONS(401), - [anon_sym_EQ_EQ] = ACTIONS(399), - [anon_sym_BANG_EQ] = ACTIONS(399), - [anon_sym_GT] = ACTIONS(401), - [anon_sym_LT] = ACTIONS(401), - [anon_sym_GT_EQ] = ACTIONS(399), - [anon_sym_LT_EQ] = ACTIONS(399), - [anon_sym_DOT] = ACTIONS(401), - [anon_sym_DOT_DOT] = ACTIONS(401), - [anon_sym_DOT_DOT_DOT] = ACTIONS(399), - [anon_sym_DOT_DOT_EQ] = ACTIONS(399), - [anon_sym_COLON_COLON] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(465), - [anon_sym_as] = ACTIONS(401), - [anon_sym_async] = ACTIONS(417), - [anon_sym_break] = ACTIONS(419), - [anon_sym_const] = ACTIONS(421), - [anon_sym_continue] = ACTIONS(423), - [anon_sym_default] = ACTIONS(425), - [anon_sym_for] = ACTIONS(427), - [anon_sym_gen] = ACTIONS(429), - [anon_sym_if] = ACTIONS(431), - [anon_sym_loop] = ACTIONS(433), - [anon_sym_match] = ACTIONS(435), - [anon_sym_return] = ACTIONS(437), - [anon_sym_static] = ACTIONS(439), - [anon_sym_union] = ACTIONS(425), - [anon_sym_unsafe] = ACTIONS(441), - [anon_sym_while] = ACTIONS(443), - [anon_sym_yield] = ACTIONS(445), - [anon_sym_move] = ACTIONS(447), - [anon_sym_try] = ACTIONS(449), - [sym_integer_literal] = ACTIONS(451), - [aux_sym_string_literal_token1] = ACTIONS(453), - [sym_char_literal] = ACTIONS(451), - [anon_sym_true] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(457), - [sym_super] = ACTIONS(459), - [sym_crate] = ACTIONS(459), - [sym_metavariable] = ACTIONS(461), - [sym__raw_string_literal_start] = ACTIONS(463), - [sym_float_literal] = ACTIONS(451), + [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), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_as] = ACTIONS(352), + [anon_sym_async] = ACTIONS(356), + [anon_sym_break] = ACTIONS(478), + [anon_sym_const] = ACTIONS(358), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(480), + [anon_sym_for] = ACTIONS(362), + [anon_sym_gen] = ACTIONS(482), + [anon_sym_if] = ACTIONS(366), + [anon_sym_loop] = ACTIONS(368), + [anon_sym_match] = ACTIONS(370), + [anon_sym_return] = ACTIONS(484), + [anon_sym_static] = ACTIONS(486), + [anon_sym_union] = ACTIONS(480), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [anon_sym_yield] = ACTIONS(488), + [anon_sym_move] = ACTIONS(490), + [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(492), + [sym_super] = ACTIONS(494), + [sym_crate] = ACTIONS(494), + [sym_metavariable] = ACTIONS(496), + [sym__raw_string_literal_start] = ACTIONS(119), + [sym_float_literal] = ACTIONS(99), }, [STATE(45)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3056), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1830), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1591), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(244), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), + [sym_bracketed_type] = STATE(3650), + [sym_generic_function] = STATE(1711), + [sym_generic_type_with_turbofish] = STATE(3091), + [sym__expression_except_range] = STATE(1658), + [sym__expression] = STATE(1763), + [sym_macro_invocation] = STATE(1717), + [sym_scoped_identifier] = STATE(1623), + [sym_scoped_type_identifier_in_expression_position] = STATE(3337), + [sym_range_expression] = STATE(1715), + [sym_unary_expression] = STATE(1711), + [sym_try_expression] = STATE(1711), + [sym_reference_expression] = STATE(1711), + [sym_binary_expression] = STATE(1711), + [sym_assignment_expression] = STATE(1711), + [sym_compound_assignment_expr] = STATE(1711), + [sym_type_cast_expression] = STATE(1711), + [sym_return_expression] = STATE(1711), + [sym_yield_expression] = STATE(1711), + [sym_call_expression] = STATE(1711), + [sym_array_expression] = STATE(1711), + [sym_parenthesized_expression] = STATE(1711), + [sym_tuple_expression] = STATE(1711), + [sym_unit_expression] = STATE(1711), + [sym_struct_expression] = STATE(1711), + [sym_if_expression] = STATE(1711), + [sym_match_expression] = STATE(1711), + [sym_while_expression] = STATE(1711), + [sym_loop_expression] = STATE(1711), + [sym_for_expression] = STATE(1711), + [sym_const_block] = STATE(1711), + [sym_closure_expression] = STATE(1711), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3742), + [sym_break_expression] = STATE(1711), + [sym_continue_expression] = STATE(1711), + [sym_index_expression] = STATE(1711), + [sym_await_expression] = STATE(1711), + [sym_field_expression] = STATE(1690), + [sym_unsafe_block] = STATE(1711), + [sym_async_block] = STATE(1711), + [sym_gen_block] = STATE(1711), + [sym_try_block] = STATE(1711), + [sym_block] = STATE(1711), + [sym__literal] = STATE(1711), + [sym_string_literal] = STATE(1831), + [sym_raw_string_literal] = STATE(1831), + [sym_boolean_literal] = STATE(1831), [sym_line_comment] = STATE(45), [sym_block_comment] = STATE(45), - [sym_identifier] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(341), - [anon_sym_LBRACK] = ACTIONS(341), - [anon_sym_LBRACE] = ACTIONS(341), - [anon_sym_COLON] = ACTIONS(345), - [anon_sym_PLUS] = ACTIONS(347), - [anon_sym_STAR] = ACTIONS(347), - [anon_sym_QMARK] = ACTIONS(341), - [anon_sym_u8] = ACTIONS(469), - [anon_sym_i8] = ACTIONS(469), - [anon_sym_u16] = ACTIONS(469), - [anon_sym_i16] = ACTIONS(469), - [anon_sym_u32] = ACTIONS(469), - [anon_sym_i32] = ACTIONS(469), - [anon_sym_u64] = ACTIONS(469), - [anon_sym_i64] = ACTIONS(469), - [anon_sym_u128] = ACTIONS(469), - [anon_sym_i128] = ACTIONS(469), - [anon_sym_isize] = ACTIONS(469), - [anon_sym_usize] = ACTIONS(469), - [anon_sym_f32] = ACTIONS(469), - [anon_sym_f64] = ACTIONS(469), - [anon_sym_bool] = ACTIONS(469), - [anon_sym_str] = ACTIONS(469), - [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(347), - [anon_sym_SLASH] = ACTIONS(347), - [anon_sym_PERCENT] = ACTIONS(347), - [anon_sym_CARET] = ACTIONS(347), - [anon_sym_BANG] = ACTIONS(471), - [anon_sym_AMP] = ACTIONS(347), - [anon_sym_PIPE] = ACTIONS(347), - [anon_sym_AMP_AMP] = ACTIONS(341), - [anon_sym_PIPE_PIPE] = ACTIONS(341), - [anon_sym_LT_LT] = ACTIONS(347), - [anon_sym_GT_GT] = ACTIONS(347), - [anon_sym_PLUS_EQ] = ACTIONS(341), - [anon_sym_DASH_EQ] = ACTIONS(341), - [anon_sym_STAR_EQ] = ACTIONS(341), - [anon_sym_SLASH_EQ] = ACTIONS(341), - [anon_sym_PERCENT_EQ] = ACTIONS(341), - [anon_sym_CARET_EQ] = ACTIONS(341), - [anon_sym_AMP_EQ] = ACTIONS(341), - [anon_sym_PIPE_EQ] = ACTIONS(341), - [anon_sym_LT_LT_EQ] = ACTIONS(341), - [anon_sym_GT_GT_EQ] = ACTIONS(341), - [anon_sym_EQ] = ACTIONS(347), - [anon_sym_EQ_EQ] = ACTIONS(341), - [anon_sym_BANG_EQ] = ACTIONS(341), - [anon_sym_GT] = ACTIONS(347), - [anon_sym_LT] = ACTIONS(347), - [anon_sym_GT_EQ] = ACTIONS(341), - [anon_sym_LT_EQ] = ACTIONS(341), - [anon_sym_DOT] = ACTIONS(347), - [anon_sym_DOT_DOT] = ACTIONS(347), - [anon_sym_DOT_DOT_DOT] = ACTIONS(341), - [anon_sym_DOT_DOT_EQ] = ACTIONS(341), - [anon_sym_COLON_COLON] = ACTIONS(473), + [sym_identifier] = ACTIONS(410), + [anon_sym_LPAREN] = ACTIONS(498), + [anon_sym_LBRACK] = ACTIONS(500), + [anon_sym_LBRACE] = ACTIONS(412), + [anon_sym_EQ_GT] = ACTIONS(388), + [anon_sym_PLUS] = ACTIONS(390), + [anon_sym_STAR] = ACTIONS(418), + [anon_sym_QMARK] = ACTIONS(388), + [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(390), + [anon_sym_PERCENT] = ACTIONS(390), + [anon_sym_CARET] = ACTIONS(390), + [anon_sym_BANG] = ACTIONS(418), + [anon_sym_AMP] = ACTIONS(502), + [anon_sym_PIPE] = ACTIONS(394), + [anon_sym_AMP_AMP] = ACTIONS(388), + [anon_sym_PIPE_PIPE] = ACTIONS(388), + [anon_sym_LT_LT] = ACTIONS(390), + [anon_sym_GT_GT] = ACTIONS(390), + [anon_sym_PLUS_EQ] = ACTIONS(388), + [anon_sym_DASH_EQ] = ACTIONS(388), + [anon_sym_STAR_EQ] = ACTIONS(388), + [anon_sym_SLASH_EQ] = ACTIONS(388), + [anon_sym_PERCENT_EQ] = ACTIONS(388), + [anon_sym_CARET_EQ] = ACTIONS(388), + [anon_sym_AMP_EQ] = ACTIONS(388), + [anon_sym_PIPE_EQ] = ACTIONS(388), + [anon_sym_LT_LT_EQ] = ACTIONS(388), + [anon_sym_GT_GT_EQ] = ACTIONS(388), + [anon_sym_EQ] = ACTIONS(390), + [anon_sym_EQ_EQ] = ACTIONS(388), + [anon_sym_BANG_EQ] = ACTIONS(388), + [anon_sym_GT] = ACTIONS(390), + [anon_sym_LT] = ACTIONS(396), + [anon_sym_GT_EQ] = ACTIONS(388), + [anon_sym_LT_EQ] = ACTIONS(388), + [anon_sym_DOT] = ACTIONS(390), + [anon_sym_DOT_DOT] = ACTIONS(504), + [anon_sym_DOT_DOT_DOT] = ACTIONS(388), + [anon_sym_DOT_DOT_EQ] = ACTIONS(388), + [anon_sym_COLON_COLON] = ACTIONS(420), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(347), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(475), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(477), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(479), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(481), - [anon_sym_static] = ACTIONS(483), - [anon_sym_union] = ACTIONS(477), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(485), - [anon_sym_move] = ACTIONS(487), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(489), - [sym_super] = ACTIONS(491), - [sym_crate] = ACTIONS(491), - [sym_metavariable] = ACTIONS(493), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [anon_sym_as] = ACTIONS(390), + [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_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(46)] = { - [sym_bracketed_type] = STATE(3621), - [sym_generic_function] = STATE(1691), - [sym_generic_type_with_turbofish] = STATE(3063), - [sym__expression_except_range] = STATE(1659), - [sym__expression] = STATE(1737), - [sym_macro_invocation] = STATE(1708), - [sym_scoped_identifier] = STATE(1599), - [sym_scoped_type_identifier_in_expression_position] = STATE(3307), - [sym_range_expression] = STATE(1695), - [sym_unary_expression] = STATE(1691), - [sym_try_expression] = STATE(1691), - [sym_reference_expression] = STATE(1691), - [sym_binary_expression] = STATE(1691), - [sym_assignment_expression] = STATE(1691), - [sym_compound_assignment_expr] = STATE(1691), - [sym_type_cast_expression] = STATE(1691), - [sym_return_expression] = STATE(1691), - [sym_yield_expression] = STATE(1691), - [sym_call_expression] = STATE(1691), - [sym_array_expression] = STATE(1691), - [sym_parenthesized_expression] = STATE(1691), - [sym_tuple_expression] = STATE(1691), - [sym_unit_expression] = STATE(1691), - [sym_struct_expression] = STATE(1691), - [sym_if_expression] = STATE(1691), - [sym_match_expression] = STATE(1691), - [sym_while_expression] = STATE(1691), - [sym_loop_expression] = STATE(1691), - [sym_for_expression] = STATE(1691), - [sym_const_block] = STATE(1691), - [sym_closure_expression] = STATE(1691), - [sym_closure_parameters] = STATE(229), - [sym_label] = STATE(3712), - [sym_break_expression] = STATE(1691), - [sym_continue_expression] = STATE(1691), - [sym_index_expression] = STATE(1691), - [sym_await_expression] = STATE(1691), - [sym_field_expression] = STATE(1671), - [sym_unsafe_block] = STATE(1691), - [sym_async_block] = STATE(1691), - [sym_gen_block] = STATE(1691), - [sym_try_block] = STATE(1691), - [sym_block] = STATE(1691), - [sym__literal] = STATE(1691), - [sym_string_literal] = STATE(1776), - [sym_raw_string_literal] = STATE(1776), - [sym_boolean_literal] = STATE(1776), + [sym_bracketed_type] = STATE(3650), + [sym_generic_function] = STATE(1711), + [sym_generic_type_with_turbofish] = STATE(3091), + [sym__expression_except_range] = STATE(1658), + [sym__expression] = STATE(1769), + [sym_macro_invocation] = STATE(1717), + [sym_scoped_identifier] = STATE(1623), + [sym_scoped_type_identifier_in_expression_position] = STATE(3337), + [sym_range_expression] = STATE(1715), + [sym_unary_expression] = STATE(1711), + [sym_try_expression] = STATE(1711), + [sym_reference_expression] = STATE(1711), + [sym_binary_expression] = STATE(1711), + [sym_assignment_expression] = STATE(1711), + [sym_compound_assignment_expr] = STATE(1711), + [sym_type_cast_expression] = STATE(1711), + [sym_return_expression] = STATE(1711), + [sym_yield_expression] = STATE(1711), + [sym_call_expression] = STATE(1711), + [sym_array_expression] = STATE(1711), + [sym_parenthesized_expression] = STATE(1711), + [sym_tuple_expression] = STATE(1711), + [sym_unit_expression] = STATE(1711), + [sym_struct_expression] = STATE(1711), + [sym_if_expression] = STATE(1711), + [sym_match_expression] = STATE(1711), + [sym_while_expression] = STATE(1711), + [sym_loop_expression] = STATE(1711), + [sym_for_expression] = STATE(1711), + [sym_const_block] = STATE(1711), + [sym_closure_expression] = STATE(1711), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3742), + [sym_break_expression] = STATE(1711), + [sym_continue_expression] = STATE(1711), + [sym_index_expression] = STATE(1711), + [sym_await_expression] = STATE(1711), + [sym_field_expression] = STATE(1690), + [sym_unsafe_block] = STATE(1711), + [sym_async_block] = STATE(1711), + [sym_gen_block] = STATE(1711), + [sym_try_block] = STATE(1711), + [sym_block] = STATE(1711), + [sym__literal] = STATE(1711), + [sym_string_literal] = STATE(1831), + [sym_raw_string_literal] = STATE(1831), + [sym_boolean_literal] = STATE(1831), [sym_line_comment] = STATE(46), [sym_block_comment] = STATE(46), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(495), - [anon_sym_LBRACK] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_EQ_GT] = ACTIONS(395), - [anon_sym_PLUS] = ACTIONS(397), - [anon_sym_STAR] = ACTIONS(413), - [anon_sym_QMARK] = ACTIONS(395), - [anon_sym_u8] = ACTIONS(411), - [anon_sym_i8] = ACTIONS(411), - [anon_sym_u16] = ACTIONS(411), - [anon_sym_i16] = ACTIONS(411), - [anon_sym_u32] = ACTIONS(411), - [anon_sym_i32] = ACTIONS(411), - [anon_sym_u64] = ACTIONS(411), - [anon_sym_i64] = ACTIONS(411), - [anon_sym_u128] = ACTIONS(411), - [anon_sym_i128] = ACTIONS(411), - [anon_sym_isize] = ACTIONS(411), - [anon_sym_usize] = ACTIONS(411), - [anon_sym_f32] = ACTIONS(411), - [anon_sym_f64] = ACTIONS(411), - [anon_sym_bool] = ACTIONS(411), - [anon_sym_str] = ACTIONS(411), - [anon_sym_char] = ACTIONS(411), - [anon_sym_DASH] = ACTIONS(413), - [anon_sym_SLASH] = ACTIONS(397), - [anon_sym_PERCENT] = ACTIONS(397), - [anon_sym_CARET] = ACTIONS(397), - [anon_sym_BANG] = ACTIONS(413), - [anon_sym_AMP] = ACTIONS(499), - [anon_sym_PIPE] = ACTIONS(389), - [anon_sym_AMP_AMP] = ACTIONS(395), - [anon_sym_PIPE_PIPE] = ACTIONS(395), - [anon_sym_LT_LT] = ACTIONS(397), - [anon_sym_GT_GT] = ACTIONS(397), - [anon_sym_PLUS_EQ] = ACTIONS(395), - [anon_sym_DASH_EQ] = ACTIONS(395), - [anon_sym_STAR_EQ] = ACTIONS(395), - [anon_sym_SLASH_EQ] = ACTIONS(395), - [anon_sym_PERCENT_EQ] = ACTIONS(395), - [anon_sym_CARET_EQ] = ACTIONS(395), - [anon_sym_AMP_EQ] = ACTIONS(395), - [anon_sym_PIPE_EQ] = ACTIONS(395), - [anon_sym_LT_LT_EQ] = ACTIONS(395), - [anon_sym_GT_GT_EQ] = ACTIONS(395), - [anon_sym_EQ] = ACTIONS(397), - [anon_sym_EQ_EQ] = ACTIONS(395), - [anon_sym_BANG_EQ] = ACTIONS(395), - [anon_sym_GT] = ACTIONS(397), - [anon_sym_LT] = ACTIONS(391), - [anon_sym_GT_EQ] = ACTIONS(395), - [anon_sym_LT_EQ] = ACTIONS(395), - [anon_sym_DOT] = ACTIONS(397), - [anon_sym_DOT_DOT] = ACTIONS(501), - [anon_sym_DOT_DOT_DOT] = ACTIONS(395), - [anon_sym_DOT_DOT_EQ] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(415), + [sym_identifier] = ACTIONS(410), + [anon_sym_LPAREN] = ACTIONS(498), + [anon_sym_LBRACK] = ACTIONS(500), + [anon_sym_LBRACE] = ACTIONS(412), + [anon_sym_EQ_GT] = ACTIONS(400), + [anon_sym_PLUS] = ACTIONS(402), + [anon_sym_STAR] = ACTIONS(418), + [anon_sym_QMARK] = ACTIONS(400), + [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(402), + [anon_sym_PERCENT] = ACTIONS(402), + [anon_sym_CARET] = ACTIONS(402), + [anon_sym_BANG] = ACTIONS(418), + [anon_sym_AMP] = ACTIONS(502), + [anon_sym_PIPE] = ACTIONS(394), + [anon_sym_AMP_AMP] = ACTIONS(400), + [anon_sym_PIPE_PIPE] = ACTIONS(400), + [anon_sym_LT_LT] = ACTIONS(402), + [anon_sym_GT_GT] = ACTIONS(402), + [anon_sym_PLUS_EQ] = ACTIONS(400), + [anon_sym_DASH_EQ] = ACTIONS(400), + [anon_sym_STAR_EQ] = ACTIONS(400), + [anon_sym_SLASH_EQ] = ACTIONS(400), + [anon_sym_PERCENT_EQ] = ACTIONS(400), + [anon_sym_CARET_EQ] = ACTIONS(400), + [anon_sym_AMP_EQ] = ACTIONS(400), + [anon_sym_PIPE_EQ] = ACTIONS(400), + [anon_sym_LT_LT_EQ] = ACTIONS(400), + [anon_sym_GT_GT_EQ] = ACTIONS(400), + [anon_sym_EQ] = ACTIONS(402), + [anon_sym_EQ_EQ] = ACTIONS(400), + [anon_sym_BANG_EQ] = ACTIONS(400), + [anon_sym_GT] = ACTIONS(402), + [anon_sym_LT] = ACTIONS(396), + [anon_sym_GT_EQ] = ACTIONS(400), + [anon_sym_LT_EQ] = ACTIONS(400), + [anon_sym_DOT] = ACTIONS(402), + [anon_sym_DOT_DOT] = ACTIONS(504), + [anon_sym_DOT_DOT_DOT] = ACTIONS(400), + [anon_sym_DOT_DOT_EQ] = ACTIONS(400), + [anon_sym_COLON_COLON] = ACTIONS(420), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(397), - [anon_sym_async] = ACTIONS(417), - [anon_sym_break] = ACTIONS(419), - [anon_sym_const] = ACTIONS(421), - [anon_sym_continue] = ACTIONS(423), - [anon_sym_default] = ACTIONS(425), - [anon_sym_for] = ACTIONS(427), - [anon_sym_gen] = ACTIONS(429), - [anon_sym_if] = ACTIONS(431), - [anon_sym_loop] = ACTIONS(433), - [anon_sym_match] = ACTIONS(435), - [anon_sym_return] = ACTIONS(437), - [anon_sym_static] = ACTIONS(439), - [anon_sym_union] = ACTIONS(425), - [anon_sym_unsafe] = ACTIONS(441), - [anon_sym_while] = ACTIONS(443), - [anon_sym_yield] = ACTIONS(445), - [anon_sym_move] = ACTIONS(447), - [anon_sym_try] = ACTIONS(449), - [sym_integer_literal] = ACTIONS(451), - [aux_sym_string_literal_token1] = ACTIONS(453), - [sym_char_literal] = ACTIONS(451), - [anon_sym_true] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(457), - [sym_super] = ACTIONS(459), - [sym_crate] = ACTIONS(459), - [sym_metavariable] = ACTIONS(461), - [sym__raw_string_literal_start] = ACTIONS(463), - [sym_float_literal] = ACTIONS(451), + [anon_sym_as] = ACTIONS(402), + [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_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(47)] = { - [sym_bracketed_type] = STATE(3621), - [sym_generic_function] = STATE(1691), - [sym_generic_type_with_turbofish] = STATE(3063), - [sym__expression_except_range] = STATE(1659), - [sym__expression] = STATE(1843), - [sym_macro_invocation] = STATE(1708), - [sym_scoped_identifier] = STATE(1599), - [sym_scoped_type_identifier_in_expression_position] = STATE(3307), - [sym_range_expression] = STATE(1695), - [sym_unary_expression] = STATE(1691), - [sym_try_expression] = STATE(1691), - [sym_reference_expression] = STATE(1691), - [sym_binary_expression] = STATE(1691), - [sym_assignment_expression] = STATE(1691), - [sym_compound_assignment_expr] = STATE(1691), - [sym_type_cast_expression] = STATE(1691), - [sym_return_expression] = STATE(1691), - [sym_yield_expression] = STATE(1691), - [sym_call_expression] = STATE(1691), - [sym_array_expression] = STATE(1691), - [sym_parenthesized_expression] = STATE(1691), - [sym_tuple_expression] = STATE(1691), - [sym_unit_expression] = STATE(1691), - [sym_struct_expression] = STATE(1691), - [sym_if_expression] = STATE(1691), - [sym_match_expression] = STATE(1691), - [sym_while_expression] = STATE(1691), - [sym_loop_expression] = STATE(1691), - [sym_for_expression] = STATE(1691), - [sym_const_block] = STATE(1691), - [sym_closure_expression] = STATE(1691), - [sym_closure_parameters] = STATE(229), - [sym_label] = STATE(3712), - [sym_break_expression] = STATE(1691), - [sym_continue_expression] = STATE(1691), - [sym_index_expression] = STATE(1691), - [sym_await_expression] = STATE(1691), - [sym_field_expression] = STATE(1671), - [sym_unsafe_block] = STATE(1691), - [sym_async_block] = STATE(1691), - [sym_gen_block] = STATE(1691), - [sym_try_block] = STATE(1691), - [sym_block] = STATE(1691), - [sym__literal] = STATE(1691), - [sym_string_literal] = STATE(1776), - [sym_raw_string_literal] = STATE(1776), - [sym_boolean_literal] = STATE(1776), + [sym_bracketed_type] = STATE(3650), + [sym_generic_function] = STATE(1711), + [sym_generic_type_with_turbofish] = STATE(3091), + [sym__expression_except_range] = STATE(1658), + [sym__expression] = STATE(1741), + [sym_macro_invocation] = STATE(1717), + [sym_scoped_identifier] = STATE(1623), + [sym_scoped_type_identifier_in_expression_position] = STATE(3337), + [sym_range_expression] = STATE(1715), + [sym_unary_expression] = STATE(1711), + [sym_try_expression] = STATE(1711), + [sym_reference_expression] = STATE(1711), + [sym_binary_expression] = STATE(1711), + [sym_assignment_expression] = STATE(1711), + [sym_compound_assignment_expr] = STATE(1711), + [sym_type_cast_expression] = STATE(1711), + [sym_return_expression] = STATE(1711), + [sym_yield_expression] = STATE(1711), + [sym_call_expression] = STATE(1711), + [sym_array_expression] = STATE(1711), + [sym_parenthesized_expression] = STATE(1711), + [sym_tuple_expression] = STATE(1711), + [sym_unit_expression] = STATE(1711), + [sym_struct_expression] = STATE(1711), + [sym_if_expression] = STATE(1711), + [sym_match_expression] = STATE(1711), + [sym_while_expression] = STATE(1711), + [sym_loop_expression] = STATE(1711), + [sym_for_expression] = STATE(1711), + [sym_const_block] = STATE(1711), + [sym_closure_expression] = STATE(1711), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(43), + [sym_break_expression] = STATE(1711), + [sym_continue_expression] = STATE(1711), + [sym_index_expression] = STATE(1711), + [sym_await_expression] = STATE(1711), + [sym_field_expression] = STATE(1690), + [sym_unsafe_block] = STATE(1711), + [sym_async_block] = STATE(1711), + [sym_gen_block] = STATE(1711), + [sym_try_block] = STATE(1711), + [sym_block] = STATE(1711), + [sym__literal] = STATE(1711), + [sym_string_literal] = STATE(1831), + [sym_raw_string_literal] = STATE(1831), + [sym_boolean_literal] = STATE(1831), [sym_line_comment] = STATE(47), [sym_block_comment] = STATE(47), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(495), - [anon_sym_LBRACK] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_EQ_GT] = ACTIONS(383), - [anon_sym_PLUS] = ACTIONS(385), - [anon_sym_STAR] = ACTIONS(413), - [anon_sym_QMARK] = ACTIONS(383), - [anon_sym_u8] = ACTIONS(411), - [anon_sym_i8] = ACTIONS(411), - [anon_sym_u16] = ACTIONS(411), - [anon_sym_i16] = ACTIONS(411), - [anon_sym_u32] = ACTIONS(411), - [anon_sym_i32] = ACTIONS(411), - [anon_sym_u64] = ACTIONS(411), - [anon_sym_i64] = ACTIONS(411), - [anon_sym_u128] = ACTIONS(411), - [anon_sym_i128] = ACTIONS(411), - [anon_sym_isize] = ACTIONS(411), - [anon_sym_usize] = ACTIONS(411), - [anon_sym_f32] = ACTIONS(411), - [anon_sym_f64] = ACTIONS(411), - [anon_sym_bool] = ACTIONS(411), - [anon_sym_str] = ACTIONS(411), - [anon_sym_char] = ACTIONS(411), - [anon_sym_DASH] = ACTIONS(413), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_PERCENT] = ACTIONS(385), - [anon_sym_CARET] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(413), - [anon_sym_AMP] = ACTIONS(499), - [anon_sym_PIPE] = ACTIONS(389), - [anon_sym_AMP_AMP] = ACTIONS(383), - [anon_sym_PIPE_PIPE] = ACTIONS(383), - [anon_sym_LT_LT] = ACTIONS(385), - [anon_sym_GT_GT] = ACTIONS(385), - [anon_sym_PLUS_EQ] = ACTIONS(383), - [anon_sym_DASH_EQ] = ACTIONS(383), - [anon_sym_STAR_EQ] = ACTIONS(383), - [anon_sym_SLASH_EQ] = ACTIONS(383), - [anon_sym_PERCENT_EQ] = ACTIONS(383), - [anon_sym_CARET_EQ] = ACTIONS(383), - [anon_sym_AMP_EQ] = ACTIONS(383), - [anon_sym_PIPE_EQ] = ACTIONS(383), - [anon_sym_LT_LT_EQ] = ACTIONS(383), - [anon_sym_GT_GT_EQ] = ACTIONS(383), - [anon_sym_EQ] = ACTIONS(385), - [anon_sym_EQ_EQ] = ACTIONS(383), - [anon_sym_BANG_EQ] = ACTIONS(383), - [anon_sym_GT] = ACTIONS(385), - [anon_sym_LT] = ACTIONS(391), - [anon_sym_GT_EQ] = ACTIONS(383), - [anon_sym_LT_EQ] = ACTIONS(383), - [anon_sym_DOT] = ACTIONS(385), - [anon_sym_DOT_DOT] = ACTIONS(501), - [anon_sym_DOT_DOT_DOT] = ACTIONS(383), - [anon_sym_DOT_DOT_EQ] = ACTIONS(383), - [anon_sym_COLON_COLON] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(385), - [anon_sym_async] = ACTIONS(417), - [anon_sym_break] = ACTIONS(419), - [anon_sym_const] = ACTIONS(421), - [anon_sym_continue] = ACTIONS(423), - [anon_sym_default] = ACTIONS(425), - [anon_sym_for] = ACTIONS(427), - [anon_sym_gen] = ACTIONS(429), - [anon_sym_if] = ACTIONS(431), - [anon_sym_loop] = ACTIONS(433), - [anon_sym_match] = ACTIONS(435), - [anon_sym_return] = ACTIONS(437), - [anon_sym_static] = ACTIONS(439), - [anon_sym_union] = ACTIONS(425), - [anon_sym_unsafe] = ACTIONS(441), - [anon_sym_while] = ACTIONS(443), - [anon_sym_yield] = ACTIONS(445), - [anon_sym_move] = ACTIONS(447), - [anon_sym_try] = ACTIONS(449), - [sym_integer_literal] = ACTIONS(451), - [aux_sym_string_literal_token1] = ACTIONS(453), - [sym_char_literal] = ACTIONS(451), - [anon_sym_true] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(457), - [sym_super] = ACTIONS(459), - [sym_crate] = ACTIONS(459), - [sym_metavariable] = ACTIONS(461), - [sym__raw_string_literal_start] = ACTIONS(463), - [sym_float_literal] = ACTIONS(451), + [sym_identifier] = ACTIONS(410), + [anon_sym_LPAREN] = ACTIONS(404), + [anon_sym_LBRACK] = ACTIONS(404), + [anon_sym_LBRACE] = ACTIONS(412), + [anon_sym_EQ_GT] = ACTIONS(404), + [anon_sym_PLUS] = ACTIONS(406), + [anon_sym_STAR] = ACTIONS(406), + [anon_sym_QMARK] = ACTIONS(404), + [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(406), + [anon_sym_SLASH] = ACTIONS(406), + [anon_sym_PERCENT] = ACTIONS(406), + [anon_sym_CARET] = ACTIONS(406), + [anon_sym_BANG] = ACTIONS(418), + [anon_sym_AMP] = ACTIONS(406), + [anon_sym_PIPE] = ACTIONS(406), + [anon_sym_AMP_AMP] = ACTIONS(404), + [anon_sym_PIPE_PIPE] = ACTIONS(404), + [anon_sym_LT_LT] = ACTIONS(406), + [anon_sym_GT_GT] = ACTIONS(406), + [anon_sym_PLUS_EQ] = ACTIONS(404), + [anon_sym_DASH_EQ] = ACTIONS(404), + [anon_sym_STAR_EQ] = ACTIONS(404), + [anon_sym_SLASH_EQ] = ACTIONS(404), + [anon_sym_PERCENT_EQ] = ACTIONS(404), + [anon_sym_CARET_EQ] = ACTIONS(404), + [anon_sym_AMP_EQ] = ACTIONS(404), + [anon_sym_PIPE_EQ] = ACTIONS(404), + [anon_sym_LT_LT_EQ] = ACTIONS(404), + [anon_sym_GT_GT_EQ] = ACTIONS(404), + [anon_sym_EQ] = ACTIONS(406), + [anon_sym_EQ_EQ] = ACTIONS(404), + [anon_sym_BANG_EQ] = ACTIONS(404), + [anon_sym_GT] = ACTIONS(406), + [anon_sym_LT] = ACTIONS(406), + [anon_sym_GT_EQ] = ACTIONS(404), + [anon_sym_LT_EQ] = ACTIONS(404), + [anon_sym_DOT] = ACTIONS(406), + [anon_sym_DOT_DOT] = ACTIONS(406), + [anon_sym_DOT_DOT_DOT] = ACTIONS(404), + [anon_sym_DOT_DOT_EQ] = ACTIONS(404), + [anon_sym_COLON_COLON] = ACTIONS(420), + [anon_sym_SQUOTE] = ACTIONS(506), + [anon_sym_as] = ACTIONS(406), + [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_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(48)] = { - [sym_bracketed_type] = STATE(3621), - [sym_generic_function] = STATE(1691), - [sym_generic_type_with_turbofish] = STATE(3063), - [sym__expression_except_range] = STATE(1659), - [sym__expression] = STATE(1800), - [sym_macro_invocation] = STATE(1708), - [sym_scoped_identifier] = STATE(1599), - [sym_scoped_type_identifier_in_expression_position] = STATE(3307), - [sym_range_expression] = STATE(1695), - [sym_unary_expression] = STATE(1691), - [sym_try_expression] = STATE(1691), - [sym_reference_expression] = STATE(1691), - [sym_binary_expression] = STATE(1691), - [sym_assignment_expression] = STATE(1691), - [sym_compound_assignment_expr] = STATE(1691), - [sym_type_cast_expression] = STATE(1691), - [sym_return_expression] = STATE(1691), - [sym_yield_expression] = STATE(1691), - [sym_call_expression] = STATE(1691), - [sym_array_expression] = STATE(1691), - [sym_parenthesized_expression] = STATE(1691), - [sym_tuple_expression] = STATE(1691), - [sym_unit_expression] = STATE(1691), - [sym_struct_expression] = STATE(1691), - [sym_if_expression] = STATE(1691), - [sym_match_expression] = STATE(1691), - [sym_while_expression] = STATE(1691), - [sym_loop_expression] = STATE(1691), - [sym_for_expression] = STATE(1691), - [sym_const_block] = STATE(1691), - [sym_closure_expression] = STATE(1691), - [sym_closure_parameters] = STATE(229), - [sym_label] = STATE(3712), - [sym_break_expression] = STATE(1691), - [sym_continue_expression] = STATE(1691), - [sym_index_expression] = STATE(1691), - [sym_await_expression] = STATE(1691), - [sym_field_expression] = STATE(1671), - [sym_unsafe_block] = STATE(1691), - [sym_async_block] = STATE(1691), - [sym_gen_block] = STATE(1691), - [sym_try_block] = STATE(1691), - [sym_block] = STATE(1691), - [sym__literal] = STATE(1691), - [sym_string_literal] = STATE(1776), - [sym_raw_string_literal] = STATE(1776), - [sym_boolean_literal] = STATE(1776), + [sym_bracketed_type] = STATE(3650), + [sym_generic_function] = STATE(1711), + [sym_generic_type_with_turbofish] = STATE(3091), + [sym__expression_except_range] = STATE(1658), + [sym__expression] = STATE(1738), + [sym_macro_invocation] = STATE(1717), + [sym_scoped_identifier] = STATE(1623), + [sym_scoped_type_identifier_in_expression_position] = STATE(3337), + [sym_range_expression] = STATE(1715), + [sym_unary_expression] = STATE(1711), + [sym_try_expression] = STATE(1711), + [sym_reference_expression] = STATE(1711), + [sym_binary_expression] = STATE(1711), + [sym_assignment_expression] = STATE(1711), + [sym_compound_assignment_expr] = STATE(1711), + [sym_type_cast_expression] = STATE(1711), + [sym_return_expression] = STATE(1711), + [sym_yield_expression] = STATE(1711), + [sym_call_expression] = STATE(1711), + [sym_array_expression] = STATE(1711), + [sym_parenthesized_expression] = STATE(1711), + [sym_tuple_expression] = STATE(1711), + [sym_unit_expression] = STATE(1711), + [sym_struct_expression] = STATE(1711), + [sym_if_expression] = STATE(1711), + [sym_match_expression] = STATE(1711), + [sym_while_expression] = STATE(1711), + [sym_loop_expression] = STATE(1711), + [sym_for_expression] = STATE(1711), + [sym_const_block] = STATE(1711), + [sym_closure_expression] = STATE(1711), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3742), + [sym_break_expression] = STATE(1711), + [sym_continue_expression] = STATE(1711), + [sym_index_expression] = STATE(1711), + [sym_await_expression] = STATE(1711), + [sym_field_expression] = STATE(1690), + [sym_unsafe_block] = STATE(1711), + [sym_async_block] = STATE(1711), + [sym_gen_block] = STATE(1711), + [sym_try_block] = STATE(1711), + [sym_block] = STATE(1711), + [sym__literal] = STATE(1711), + [sym_string_literal] = STATE(1831), + [sym_raw_string_literal] = STATE(1831), + [sym_boolean_literal] = STATE(1831), [sym_line_comment] = STATE(48), [sym_block_comment] = STATE(48), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(495), - [anon_sym_LBRACK] = ACTIONS(375), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_EQ_GT] = ACTIONS(375), - [anon_sym_PLUS] = ACTIONS(377), - [anon_sym_STAR] = ACTIONS(377), - [anon_sym_QMARK] = ACTIONS(375), - [anon_sym_u8] = ACTIONS(411), - [anon_sym_i8] = ACTIONS(411), - [anon_sym_u16] = ACTIONS(411), - [anon_sym_i16] = ACTIONS(411), - [anon_sym_u32] = ACTIONS(411), - [anon_sym_i32] = ACTIONS(411), - [anon_sym_u64] = ACTIONS(411), - [anon_sym_i64] = ACTIONS(411), - [anon_sym_u128] = ACTIONS(411), - [anon_sym_i128] = ACTIONS(411), - [anon_sym_isize] = ACTIONS(411), - [anon_sym_usize] = ACTIONS(411), - [anon_sym_f32] = ACTIONS(411), - [anon_sym_f64] = ACTIONS(411), - [anon_sym_bool] = ACTIONS(411), - [anon_sym_str] = ACTIONS(411), - [anon_sym_char] = ACTIONS(411), - [anon_sym_DASH] = ACTIONS(377), - [anon_sym_SLASH] = ACTIONS(377), - [anon_sym_PERCENT] = ACTIONS(377), - [anon_sym_CARET] = ACTIONS(377), - [anon_sym_BANG] = ACTIONS(413), - [anon_sym_AMP] = ACTIONS(377), - [anon_sym_PIPE] = ACTIONS(377), - [anon_sym_AMP_AMP] = ACTIONS(375), - [anon_sym_PIPE_PIPE] = ACTIONS(375), - [anon_sym_LT_LT] = ACTIONS(377), - [anon_sym_GT_GT] = ACTIONS(377), - [anon_sym_PLUS_EQ] = ACTIONS(375), - [anon_sym_DASH_EQ] = ACTIONS(375), - [anon_sym_STAR_EQ] = ACTIONS(375), - [anon_sym_SLASH_EQ] = ACTIONS(375), - [anon_sym_PERCENT_EQ] = ACTIONS(375), - [anon_sym_CARET_EQ] = ACTIONS(375), - [anon_sym_AMP_EQ] = ACTIONS(375), - [anon_sym_PIPE_EQ] = ACTIONS(375), - [anon_sym_LT_LT_EQ] = ACTIONS(375), - [anon_sym_GT_GT_EQ] = ACTIONS(375), - [anon_sym_EQ] = ACTIONS(377), - [anon_sym_EQ_EQ] = ACTIONS(375), - [anon_sym_BANG_EQ] = ACTIONS(375), - [anon_sym_GT] = ACTIONS(377), - [anon_sym_LT] = ACTIONS(377), - [anon_sym_GT_EQ] = ACTIONS(375), - [anon_sym_LT_EQ] = ACTIONS(375), - [anon_sym_DOT] = ACTIONS(377), - [anon_sym_DOT_DOT] = ACTIONS(377), - [anon_sym_DOT_DOT_DOT] = ACTIONS(375), - [anon_sym_DOT_DOT_EQ] = ACTIONS(375), - [anon_sym_COLON_COLON] = ACTIONS(415), + [sym_identifier] = ACTIONS(410), + [anon_sym_LPAREN] = ACTIONS(498), + [anon_sym_LBRACK] = ACTIONS(380), + [anon_sym_LBRACE] = ACTIONS(412), + [anon_sym_EQ_GT] = ACTIONS(380), + [anon_sym_PLUS] = ACTIONS(382), + [anon_sym_STAR] = ACTIONS(382), + [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(382), + [anon_sym_SLASH] = ACTIONS(382), + [anon_sym_PERCENT] = ACTIONS(382), + [anon_sym_CARET] = ACTIONS(382), + [anon_sym_BANG] = ACTIONS(418), + [anon_sym_AMP] = ACTIONS(382), + [anon_sym_PIPE] = ACTIONS(382), + [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(382), + [anon_sym_GT_EQ] = ACTIONS(380), + [anon_sym_LT_EQ] = ACTIONS(380), + [anon_sym_DOT] = ACTIONS(382), + [anon_sym_DOT_DOT] = ACTIONS(382), + [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(377), - [anon_sym_async] = ACTIONS(417), - [anon_sym_break] = ACTIONS(419), - [anon_sym_const] = ACTIONS(421), - [anon_sym_continue] = ACTIONS(423), - [anon_sym_default] = ACTIONS(425), - [anon_sym_for] = ACTIONS(427), - [anon_sym_gen] = ACTIONS(429), - [anon_sym_if] = ACTIONS(431), - [anon_sym_loop] = ACTIONS(433), - [anon_sym_match] = ACTIONS(435), - [anon_sym_return] = ACTIONS(437), - [anon_sym_static] = ACTIONS(439), - [anon_sym_union] = ACTIONS(425), - [anon_sym_unsafe] = ACTIONS(441), - [anon_sym_while] = ACTIONS(443), - [anon_sym_yield] = ACTIONS(445), - [anon_sym_move] = ACTIONS(447), - [anon_sym_try] = ACTIONS(449), - [sym_integer_literal] = ACTIONS(451), - [aux_sym_string_literal_token1] = ACTIONS(453), - [sym_char_literal] = ACTIONS(451), - [anon_sym_true] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(457), - [sym_super] = ACTIONS(459), - [sym_crate] = ACTIONS(459), - [sym_metavariable] = ACTIONS(461), - [sym__raw_string_literal_start] = ACTIONS(463), - [sym_float_literal] = ACTIONS(451), + [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_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(49)] = { - [sym_bracketed_type] = STATE(3621), - [sym_generic_function] = STATE(1691), - [sym_generic_type_with_turbofish] = STATE(3063), - [sym__expression_except_range] = STATE(1659), - [sym__expression] = STATE(1760), - [sym_macro_invocation] = STATE(1708), - [sym_scoped_identifier] = STATE(1599), - [sym_scoped_type_identifier_in_expression_position] = STATE(3307), - [sym_range_expression] = STATE(1695), - [sym_unary_expression] = STATE(1691), - [sym_try_expression] = STATE(1691), - [sym_reference_expression] = STATE(1691), - [sym_binary_expression] = STATE(1691), - [sym_assignment_expression] = STATE(1691), - [sym_compound_assignment_expr] = STATE(1691), - [sym_type_cast_expression] = STATE(1691), - [sym_return_expression] = STATE(1691), - [sym_yield_expression] = STATE(1691), - [sym_call_expression] = STATE(1691), - [sym_array_expression] = STATE(1691), - [sym_parenthesized_expression] = STATE(1691), - [sym_tuple_expression] = STATE(1691), - [sym_unit_expression] = STATE(1691), - [sym_struct_expression] = STATE(1691), - [sym_if_expression] = STATE(1691), - [sym_match_expression] = STATE(1691), - [sym_while_expression] = STATE(1691), - [sym_loop_expression] = STATE(1691), - [sym_for_expression] = STATE(1691), - [sym_const_block] = STATE(1691), - [sym_closure_expression] = STATE(1691), - [sym_closure_parameters] = STATE(229), - [sym_label] = STATE(3712), - [sym_break_expression] = STATE(1691), - [sym_continue_expression] = STATE(1691), - [sym_index_expression] = STATE(1691), - [sym_await_expression] = STATE(1691), - [sym_field_expression] = STATE(1671), - [sym_unsafe_block] = STATE(1691), - [sym_async_block] = STATE(1691), - [sym_gen_block] = STATE(1691), - [sym_try_block] = STATE(1691), - [sym_block] = STATE(1691), - [sym__literal] = STATE(1691), - [sym_string_literal] = STATE(1776), - [sym_raw_string_literal] = STATE(1776), - [sym_boolean_literal] = STATE(1776), + [sym_bracketed_type] = STATE(3650), + [sym_generic_function] = STATE(1711), + [sym_generic_type_with_turbofish] = STATE(3091), + [sym__expression_except_range] = STATE(1658), + [sym__expression] = STATE(1815), + [sym_macro_invocation] = STATE(1717), + [sym_scoped_identifier] = STATE(1623), + [sym_scoped_type_identifier_in_expression_position] = STATE(3337), + [sym_range_expression] = STATE(1715), + [sym_unary_expression] = STATE(1711), + [sym_try_expression] = STATE(1711), + [sym_reference_expression] = STATE(1711), + [sym_binary_expression] = STATE(1711), + [sym_assignment_expression] = STATE(1711), + [sym_compound_assignment_expr] = STATE(1711), + [sym_type_cast_expression] = STATE(1711), + [sym_return_expression] = STATE(1711), + [sym_yield_expression] = STATE(1711), + [sym_call_expression] = STATE(1711), + [sym_array_expression] = STATE(1711), + [sym_parenthesized_expression] = STATE(1711), + [sym_tuple_expression] = STATE(1711), + [sym_unit_expression] = STATE(1711), + [sym_struct_expression] = STATE(1711), + [sym_if_expression] = STATE(1711), + [sym_match_expression] = STATE(1711), + [sym_while_expression] = STATE(1711), + [sym_loop_expression] = STATE(1711), + [sym_for_expression] = STATE(1711), + [sym_const_block] = STATE(1711), + [sym_closure_expression] = STATE(1711), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3742), + [sym_break_expression] = STATE(1711), + [sym_continue_expression] = STATE(1711), + [sym_index_expression] = STATE(1711), + [sym_await_expression] = STATE(1711), + [sym_field_expression] = STATE(1690), + [sym_unsafe_block] = STATE(1711), + [sym_async_block] = STATE(1711), + [sym_gen_block] = STATE(1711), + [sym_try_block] = STATE(1711), + [sym_block] = STATE(1711), + [sym__literal] = STATE(1711), + [sym_string_literal] = STATE(1831), + [sym_raw_string_literal] = STATE(1831), + [sym_boolean_literal] = STATE(1831), [sym_line_comment] = STATE(49), [sym_block_comment] = STATE(49), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(495), - [anon_sym_LBRACK] = ACTIONS(379), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_EQ_GT] = ACTIONS(379), - [anon_sym_PLUS] = ACTIONS(381), - [anon_sym_STAR] = ACTIONS(381), - [anon_sym_QMARK] = ACTIONS(379), - [anon_sym_u8] = ACTIONS(411), - [anon_sym_i8] = ACTIONS(411), - [anon_sym_u16] = ACTIONS(411), - [anon_sym_i16] = ACTIONS(411), - [anon_sym_u32] = ACTIONS(411), - [anon_sym_i32] = ACTIONS(411), - [anon_sym_u64] = ACTIONS(411), - [anon_sym_i64] = ACTIONS(411), - [anon_sym_u128] = ACTIONS(411), - [anon_sym_i128] = ACTIONS(411), - [anon_sym_isize] = ACTIONS(411), - [anon_sym_usize] = ACTIONS(411), - [anon_sym_f32] = ACTIONS(411), - [anon_sym_f64] = ACTIONS(411), - [anon_sym_bool] = ACTIONS(411), - [anon_sym_str] = ACTIONS(411), - [anon_sym_char] = ACTIONS(411), - [anon_sym_DASH] = ACTIONS(381), - [anon_sym_SLASH] = ACTIONS(381), - [anon_sym_PERCENT] = ACTIONS(381), - [anon_sym_CARET] = ACTIONS(381), - [anon_sym_BANG] = ACTIONS(413), - [anon_sym_AMP] = ACTIONS(381), - [anon_sym_PIPE] = ACTIONS(381), - [anon_sym_AMP_AMP] = ACTIONS(379), - [anon_sym_PIPE_PIPE] = ACTIONS(379), - [anon_sym_LT_LT] = ACTIONS(381), - [anon_sym_GT_GT] = ACTIONS(381), - [anon_sym_PLUS_EQ] = ACTIONS(379), - [anon_sym_DASH_EQ] = ACTIONS(379), - [anon_sym_STAR_EQ] = ACTIONS(379), - [anon_sym_SLASH_EQ] = ACTIONS(379), - [anon_sym_PERCENT_EQ] = ACTIONS(379), - [anon_sym_CARET_EQ] = ACTIONS(379), - [anon_sym_AMP_EQ] = ACTIONS(379), - [anon_sym_PIPE_EQ] = ACTIONS(379), - [anon_sym_LT_LT_EQ] = ACTIONS(379), - [anon_sym_GT_GT_EQ] = ACTIONS(379), - [anon_sym_EQ] = ACTIONS(381), - [anon_sym_EQ_EQ] = ACTIONS(379), - [anon_sym_BANG_EQ] = ACTIONS(379), - [anon_sym_GT] = ACTIONS(381), - [anon_sym_LT] = ACTIONS(381), - [anon_sym_GT_EQ] = ACTIONS(379), - [anon_sym_LT_EQ] = ACTIONS(379), - [anon_sym_DOT] = ACTIONS(381), - [anon_sym_DOT_DOT] = ACTIONS(381), - [anon_sym_DOT_DOT_DOT] = ACTIONS(379), - [anon_sym_DOT_DOT_EQ] = ACTIONS(379), - [anon_sym_COLON_COLON] = ACTIONS(415), + [sym_identifier] = ACTIONS(410), + [anon_sym_LPAREN] = ACTIONS(498), + [anon_sym_LBRACK] = ACTIONS(384), + [anon_sym_LBRACE] = ACTIONS(412), + [anon_sym_EQ_GT] = ACTIONS(384), + [anon_sym_PLUS] = ACTIONS(386), + [anon_sym_STAR] = ACTIONS(386), + [anon_sym_QMARK] = ACTIONS(384), + [anon_sym_u8] = ACTIONS(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(386), + [anon_sym_SLASH] = ACTIONS(386), + [anon_sym_PERCENT] = ACTIONS(386), + [anon_sym_CARET] = ACTIONS(386), + [anon_sym_BANG] = ACTIONS(418), + [anon_sym_AMP] = ACTIONS(386), + [anon_sym_PIPE] = ACTIONS(386), + [anon_sym_AMP_AMP] = ACTIONS(384), + [anon_sym_PIPE_PIPE] = ACTIONS(384), + [anon_sym_LT_LT] = ACTIONS(386), + [anon_sym_GT_GT] = ACTIONS(386), + [anon_sym_PLUS_EQ] = ACTIONS(384), + [anon_sym_DASH_EQ] = ACTIONS(384), + [anon_sym_STAR_EQ] = ACTIONS(384), + [anon_sym_SLASH_EQ] = ACTIONS(384), + [anon_sym_PERCENT_EQ] = ACTIONS(384), + [anon_sym_CARET_EQ] = ACTIONS(384), + [anon_sym_AMP_EQ] = ACTIONS(384), + [anon_sym_PIPE_EQ] = ACTIONS(384), + [anon_sym_LT_LT_EQ] = ACTIONS(384), + [anon_sym_GT_GT_EQ] = ACTIONS(384), + [anon_sym_EQ] = ACTIONS(386), + [anon_sym_EQ_EQ] = ACTIONS(384), + [anon_sym_BANG_EQ] = ACTIONS(384), + [anon_sym_GT] = ACTIONS(386), + [anon_sym_LT] = ACTIONS(386), + [anon_sym_GT_EQ] = ACTIONS(384), + [anon_sym_LT_EQ] = ACTIONS(384), + [anon_sym_DOT] = ACTIONS(386), + [anon_sym_DOT_DOT] = ACTIONS(386), + [anon_sym_DOT_DOT_DOT] = ACTIONS(384), + [anon_sym_DOT_DOT_EQ] = ACTIONS(384), + [anon_sym_COLON_COLON] = ACTIONS(420), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(381), - [anon_sym_async] = ACTIONS(417), - [anon_sym_break] = ACTIONS(419), - [anon_sym_const] = ACTIONS(421), - [anon_sym_continue] = ACTIONS(423), - [anon_sym_default] = ACTIONS(425), - [anon_sym_for] = ACTIONS(427), - [anon_sym_gen] = ACTIONS(429), - [anon_sym_if] = ACTIONS(431), - [anon_sym_loop] = ACTIONS(433), - [anon_sym_match] = ACTIONS(435), - [anon_sym_return] = ACTIONS(437), - [anon_sym_static] = ACTIONS(439), - [anon_sym_union] = ACTIONS(425), - [anon_sym_unsafe] = ACTIONS(441), - [anon_sym_while] = ACTIONS(443), - [anon_sym_yield] = ACTIONS(445), - [anon_sym_move] = ACTIONS(447), - [anon_sym_try] = ACTIONS(449), - [sym_integer_literal] = ACTIONS(451), - [aux_sym_string_literal_token1] = ACTIONS(453), - [sym_char_literal] = ACTIONS(451), - [anon_sym_true] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(457), - [sym_super] = ACTIONS(459), - [sym_crate] = ACTIONS(459), - [sym_metavariable] = ACTIONS(461), - [sym__raw_string_literal_start] = ACTIONS(463), - [sym_float_literal] = ACTIONS(451), + [anon_sym_as] = ACTIONS(386), + [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_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(50)] = { - [sym_bracketed_type] = STATE(3621), - [sym_generic_function] = STATE(1691), - [sym_generic_type_with_turbofish] = STATE(3063), - [sym__expression_except_range] = STATE(1659), - [sym__expression] = STATE(1800), - [sym_macro_invocation] = STATE(1708), - [sym_scoped_identifier] = STATE(1599), - [sym_scoped_type_identifier_in_expression_position] = STATE(3307), - [sym_range_expression] = STATE(1695), - [sym_unary_expression] = STATE(1691), - [sym_try_expression] = STATE(1691), - [sym_reference_expression] = STATE(1691), - [sym_binary_expression] = STATE(1691), - [sym_assignment_expression] = STATE(1691), - [sym_compound_assignment_expr] = STATE(1691), - [sym_type_cast_expression] = STATE(1691), - [sym_return_expression] = STATE(1691), - [sym_yield_expression] = STATE(1691), - [sym_call_expression] = STATE(1691), - [sym_array_expression] = STATE(1691), - [sym_parenthesized_expression] = STATE(1691), - [sym_tuple_expression] = STATE(1691), - [sym_unit_expression] = STATE(1691), - [sym_struct_expression] = STATE(1691), - [sym_if_expression] = STATE(1691), - [sym_match_expression] = STATE(1691), - [sym_while_expression] = STATE(1691), - [sym_loop_expression] = STATE(1691), - [sym_for_expression] = STATE(1691), - [sym_const_block] = STATE(1691), - [sym_closure_expression] = STATE(1691), - [sym_closure_parameters] = STATE(229), - [sym_label] = STATE(3712), - [sym_break_expression] = STATE(1691), - [sym_continue_expression] = STATE(1691), - [sym_index_expression] = STATE(1691), - [sym_await_expression] = STATE(1691), - [sym_field_expression] = STATE(1671), - [sym_unsafe_block] = STATE(1691), - [sym_async_block] = STATE(1691), - [sym_gen_block] = STATE(1691), - [sym_try_block] = STATE(1691), - [sym_block] = STATE(1691), - [sym__literal] = STATE(1691), - [sym_string_literal] = STATE(1776), - [sym_raw_string_literal] = STATE(1776), - [sym_boolean_literal] = STATE(1776), + [sym_bracketed_type] = STATE(3650), + [sym_generic_function] = STATE(1711), + [sym_generic_type_with_turbofish] = STATE(3091), + [sym__expression_except_range] = STATE(1658), + [sym__expression] = STATE(1738), + [sym_macro_invocation] = STATE(1717), + [sym_scoped_identifier] = STATE(1623), + [sym_scoped_type_identifier_in_expression_position] = STATE(3337), + [sym_range_expression] = STATE(1715), + [sym_unary_expression] = STATE(1711), + [sym_try_expression] = STATE(1711), + [sym_reference_expression] = STATE(1711), + [sym_binary_expression] = STATE(1711), + [sym_assignment_expression] = STATE(1711), + [sym_compound_assignment_expr] = STATE(1711), + [sym_type_cast_expression] = STATE(1711), + [sym_return_expression] = STATE(1711), + [sym_yield_expression] = STATE(1711), + [sym_call_expression] = STATE(1711), + [sym_array_expression] = STATE(1711), + [sym_parenthesized_expression] = STATE(1711), + [sym_tuple_expression] = STATE(1711), + [sym_unit_expression] = STATE(1711), + [sym_struct_expression] = STATE(1711), + [sym_if_expression] = STATE(1711), + [sym_match_expression] = STATE(1711), + [sym_while_expression] = STATE(1711), + [sym_loop_expression] = STATE(1711), + [sym_for_expression] = STATE(1711), + [sym_const_block] = STATE(1711), + [sym_closure_expression] = STATE(1711), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3742), + [sym_break_expression] = STATE(1711), + [sym_continue_expression] = STATE(1711), + [sym_index_expression] = STATE(1711), + [sym_await_expression] = STATE(1711), + [sym_field_expression] = STATE(1690), + [sym_unsafe_block] = STATE(1711), + [sym_async_block] = STATE(1711), + [sym_gen_block] = STATE(1711), + [sym_try_block] = STATE(1711), + [sym_block] = STATE(1711), + [sym__literal] = STATE(1711), + [sym_string_literal] = STATE(1831), + [sym_raw_string_literal] = STATE(1831), + [sym_boolean_literal] = STATE(1831), [sym_line_comment] = STATE(50), [sym_block_comment] = STATE(50), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(375), - [anon_sym_LBRACK] = ACTIONS(375), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_EQ_GT] = ACTIONS(375), - [anon_sym_PLUS] = ACTIONS(377), - [anon_sym_STAR] = ACTIONS(377), - [anon_sym_QMARK] = ACTIONS(375), - [anon_sym_u8] = ACTIONS(411), - [anon_sym_i8] = ACTIONS(411), - [anon_sym_u16] = ACTIONS(411), - [anon_sym_i16] = ACTIONS(411), - [anon_sym_u32] = ACTIONS(411), - [anon_sym_i32] = ACTIONS(411), - [anon_sym_u64] = ACTIONS(411), - [anon_sym_i64] = ACTIONS(411), - [anon_sym_u128] = ACTIONS(411), - [anon_sym_i128] = ACTIONS(411), - [anon_sym_isize] = ACTIONS(411), - [anon_sym_usize] = ACTIONS(411), - [anon_sym_f32] = ACTIONS(411), - [anon_sym_f64] = ACTIONS(411), - [anon_sym_bool] = ACTIONS(411), - [anon_sym_str] = ACTIONS(411), - [anon_sym_char] = ACTIONS(411), - [anon_sym_DASH] = ACTIONS(377), - [anon_sym_SLASH] = ACTIONS(377), - [anon_sym_PERCENT] = ACTIONS(377), - [anon_sym_CARET] = ACTIONS(377), - [anon_sym_BANG] = ACTIONS(413), - [anon_sym_AMP] = ACTIONS(377), - [anon_sym_PIPE] = ACTIONS(377), - [anon_sym_AMP_AMP] = ACTIONS(375), - [anon_sym_PIPE_PIPE] = ACTIONS(375), - [anon_sym_LT_LT] = ACTIONS(377), - [anon_sym_GT_GT] = ACTIONS(377), - [anon_sym_PLUS_EQ] = ACTIONS(375), - [anon_sym_DASH_EQ] = ACTIONS(375), - [anon_sym_STAR_EQ] = ACTIONS(375), - [anon_sym_SLASH_EQ] = ACTIONS(375), - [anon_sym_PERCENT_EQ] = ACTIONS(375), - [anon_sym_CARET_EQ] = ACTIONS(375), - [anon_sym_AMP_EQ] = ACTIONS(375), - [anon_sym_PIPE_EQ] = ACTIONS(375), - [anon_sym_LT_LT_EQ] = ACTIONS(375), - [anon_sym_GT_GT_EQ] = ACTIONS(375), - [anon_sym_EQ] = ACTIONS(377), - [anon_sym_EQ_EQ] = ACTIONS(375), - [anon_sym_BANG_EQ] = ACTIONS(375), - [anon_sym_GT] = ACTIONS(377), - [anon_sym_LT] = ACTIONS(377), - [anon_sym_GT_EQ] = ACTIONS(375), - [anon_sym_LT_EQ] = ACTIONS(375), - [anon_sym_DOT] = ACTIONS(377), - [anon_sym_DOT_DOT] = ACTIONS(377), - [anon_sym_DOT_DOT_DOT] = ACTIONS(375), - [anon_sym_DOT_DOT_EQ] = ACTIONS(375), - [anon_sym_COLON_COLON] = ACTIONS(415), + [sym_identifier] = ACTIONS(410), + [anon_sym_LPAREN] = ACTIONS(380), + [anon_sym_LBRACK] = ACTIONS(380), + [anon_sym_LBRACE] = ACTIONS(412), + [anon_sym_EQ_GT] = ACTIONS(380), + [anon_sym_PLUS] = ACTIONS(382), + [anon_sym_STAR] = ACTIONS(382), + [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(382), + [anon_sym_SLASH] = ACTIONS(382), + [anon_sym_PERCENT] = ACTIONS(382), + [anon_sym_CARET] = ACTIONS(382), + [anon_sym_BANG] = ACTIONS(418), + [anon_sym_AMP] = ACTIONS(382), + [anon_sym_PIPE] = ACTIONS(382), + [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(382), + [anon_sym_GT_EQ] = ACTIONS(380), + [anon_sym_LT_EQ] = ACTIONS(380), + [anon_sym_DOT] = ACTIONS(382), + [anon_sym_DOT_DOT] = ACTIONS(382), + [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(377), - [anon_sym_async] = ACTIONS(417), - [anon_sym_break] = ACTIONS(419), - [anon_sym_const] = ACTIONS(421), - [anon_sym_continue] = ACTIONS(423), - [anon_sym_default] = ACTIONS(425), - [anon_sym_for] = ACTIONS(427), - [anon_sym_gen] = ACTIONS(429), - [anon_sym_if] = ACTIONS(431), - [anon_sym_loop] = ACTIONS(433), - [anon_sym_match] = ACTIONS(435), - [anon_sym_return] = ACTIONS(437), - [anon_sym_static] = ACTIONS(439), - [anon_sym_union] = ACTIONS(425), - [anon_sym_unsafe] = ACTIONS(441), - [anon_sym_while] = ACTIONS(443), - [anon_sym_yield] = ACTIONS(445), - [anon_sym_move] = ACTIONS(447), - [anon_sym_try] = ACTIONS(449), - [sym_integer_literal] = ACTIONS(451), - [aux_sym_string_literal_token1] = ACTIONS(453), - [sym_char_literal] = ACTIONS(451), - [anon_sym_true] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(457), - [sym_super] = ACTIONS(459), - [sym_crate] = ACTIONS(459), - [sym_metavariable] = ACTIONS(461), - [sym__raw_string_literal_start] = ACTIONS(463), - [sym_float_literal] = ACTIONS(451), + [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_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(51)] = { - [sym_bracketed_type] = STATE(3621), - [sym_generic_function] = STATE(1691), - [sym_generic_type_with_turbofish] = STATE(3063), - [sym__expression_except_range] = STATE(1659), - [sym__expression] = STATE(1760), - [sym_macro_invocation] = STATE(1708), - [sym_scoped_identifier] = STATE(1599), - [sym_scoped_type_identifier_in_expression_position] = STATE(3307), - [sym_range_expression] = STATE(1695), - [sym_unary_expression] = STATE(1691), - [sym_try_expression] = STATE(1691), - [sym_reference_expression] = STATE(1691), - [sym_binary_expression] = STATE(1691), - [sym_assignment_expression] = STATE(1691), - [sym_compound_assignment_expr] = STATE(1691), - [sym_type_cast_expression] = STATE(1691), - [sym_return_expression] = STATE(1691), - [sym_yield_expression] = STATE(1691), - [sym_call_expression] = STATE(1691), - [sym_array_expression] = STATE(1691), - [sym_parenthesized_expression] = STATE(1691), - [sym_tuple_expression] = STATE(1691), - [sym_unit_expression] = STATE(1691), - [sym_struct_expression] = STATE(1691), - [sym_if_expression] = STATE(1691), - [sym_match_expression] = STATE(1691), - [sym_while_expression] = STATE(1691), - [sym_loop_expression] = STATE(1691), - [sym_for_expression] = STATE(1691), - [sym_const_block] = STATE(1691), - [sym_closure_expression] = STATE(1691), - [sym_closure_parameters] = STATE(229), - [sym_label] = STATE(3712), - [sym_break_expression] = STATE(1691), - [sym_continue_expression] = STATE(1691), - [sym_index_expression] = STATE(1691), - [sym_await_expression] = STATE(1691), - [sym_field_expression] = STATE(1671), - [sym_unsafe_block] = STATE(1691), - [sym_async_block] = STATE(1691), - [sym_gen_block] = STATE(1691), - [sym_try_block] = STATE(1691), - [sym_block] = STATE(1691), - [sym__literal] = STATE(1691), - [sym_string_literal] = STATE(1776), - [sym_raw_string_literal] = STATE(1776), - [sym_boolean_literal] = STATE(1776), + [sym_bracketed_type] = STATE(3752), + [sym_generic_function] = STATE(1492), + [sym_generic_type_with_turbofish] = STATE(3085), + [sym__expression_except_range] = STATE(1409), + [sym__expression] = STATE(1639), + [sym_macro_invocation] = STATE(1529), + [sym_scoped_identifier] = STATE(1604), + [sym_scoped_type_identifier_in_expression_position] = STATE(3335), + [sym_range_expression] = STATE(1505), + [sym_unary_expression] = STATE(1492), + [sym_try_expression] = STATE(1492), + [sym_reference_expression] = STATE(1492), + [sym_binary_expression] = STATE(1492), + [sym_assignment_expression] = STATE(1492), + [sym_compound_assignment_expr] = STATE(1492), + [sym_type_cast_expression] = STATE(1492), + [sym_return_expression] = STATE(1492), + [sym_yield_expression] = STATE(1492), + [sym_call_expression] = STATE(1492), + [sym_array_expression] = STATE(1492), + [sym_parenthesized_expression] = STATE(1492), + [sym_tuple_expression] = STATE(1492), + [sym_unit_expression] = STATE(1492), + [sym_struct_expression] = STATE(1492), + [sym_if_expression] = STATE(1492), + [sym_match_expression] = STATE(1492), + [sym_while_expression] = STATE(1492), + [sym_loop_expression] = STATE(1492), + [sym_for_expression] = STATE(1492), + [sym_const_block] = STATE(1492), + [sym_closure_expression] = STATE(1492), + [sym_closure_parameters] = STATE(221), + [sym_label] = STATE(3689), + [sym_break_expression] = STATE(1492), + [sym_continue_expression] = STATE(1492), + [sym_index_expression] = STATE(1492), + [sym_await_expression] = STATE(1492), + [sym_field_expression] = STATE(1412), + [sym_unsafe_block] = STATE(1492), + [sym_async_block] = STATE(1492), + [sym_gen_block] = STATE(1492), + [sym_try_block] = STATE(1492), + [sym_block] = STATE(1492), + [sym__literal] = STATE(1492), + [sym_string_literal] = STATE(1530), + [sym_raw_string_literal] = STATE(1530), + [sym_boolean_literal] = STATE(1530), [sym_line_comment] = STATE(51), [sym_block_comment] = STATE(51), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_LBRACK] = ACTIONS(379), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_EQ_GT] = ACTIONS(379), - [anon_sym_PLUS] = ACTIONS(381), - [anon_sym_STAR] = ACTIONS(381), - [anon_sym_QMARK] = ACTIONS(379), - [anon_sym_u8] = ACTIONS(411), - [anon_sym_i8] = ACTIONS(411), - [anon_sym_u16] = ACTIONS(411), - [anon_sym_i16] = ACTIONS(411), - [anon_sym_u32] = ACTIONS(411), - [anon_sym_i32] = ACTIONS(411), - [anon_sym_u64] = ACTIONS(411), - [anon_sym_i64] = ACTIONS(411), - [anon_sym_u128] = ACTIONS(411), - [anon_sym_i128] = ACTIONS(411), - [anon_sym_isize] = ACTIONS(411), - [anon_sym_usize] = ACTIONS(411), - [anon_sym_f32] = ACTIONS(411), - [anon_sym_f64] = ACTIONS(411), - [anon_sym_bool] = ACTIONS(411), - [anon_sym_str] = ACTIONS(411), - [anon_sym_char] = ACTIONS(411), - [anon_sym_DASH] = ACTIONS(381), - [anon_sym_SLASH] = ACTIONS(381), - [anon_sym_PERCENT] = ACTIONS(381), - [anon_sym_CARET] = ACTIONS(381), - [anon_sym_BANG] = ACTIONS(413), - [anon_sym_AMP] = ACTIONS(381), - [anon_sym_PIPE] = ACTIONS(381), - [anon_sym_AMP_AMP] = ACTIONS(379), - [anon_sym_PIPE_PIPE] = ACTIONS(379), - [anon_sym_LT_LT] = ACTIONS(381), - [anon_sym_GT_GT] = ACTIONS(381), - [anon_sym_PLUS_EQ] = ACTIONS(379), - [anon_sym_DASH_EQ] = ACTIONS(379), - [anon_sym_STAR_EQ] = ACTIONS(379), - [anon_sym_SLASH_EQ] = ACTIONS(379), - [anon_sym_PERCENT_EQ] = ACTIONS(379), - [anon_sym_CARET_EQ] = ACTIONS(379), - [anon_sym_AMP_EQ] = ACTIONS(379), - [anon_sym_PIPE_EQ] = ACTIONS(379), - [anon_sym_LT_LT_EQ] = ACTIONS(379), - [anon_sym_GT_GT_EQ] = ACTIONS(379), - [anon_sym_EQ] = ACTIONS(381), - [anon_sym_EQ_EQ] = ACTIONS(379), - [anon_sym_BANG_EQ] = ACTIONS(379), - [anon_sym_GT] = ACTIONS(381), - [anon_sym_LT] = ACTIONS(381), - [anon_sym_GT_EQ] = ACTIONS(379), - [anon_sym_LT_EQ] = ACTIONS(379), - [anon_sym_DOT] = ACTIONS(381), - [anon_sym_DOT_DOT] = ACTIONS(381), - [anon_sym_DOT_DOT_DOT] = ACTIONS(379), - [anon_sym_DOT_DOT_EQ] = ACTIONS(379), - [anon_sym_COLON_COLON] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(381), - [anon_sym_async] = ACTIONS(417), - [anon_sym_break] = ACTIONS(419), - [anon_sym_const] = ACTIONS(421), - [anon_sym_continue] = ACTIONS(423), - [anon_sym_default] = ACTIONS(425), - [anon_sym_for] = ACTIONS(427), - [anon_sym_gen] = ACTIONS(429), - [anon_sym_if] = ACTIONS(431), - [anon_sym_loop] = ACTIONS(433), - [anon_sym_match] = ACTIONS(435), - [anon_sym_return] = ACTIONS(437), - [anon_sym_static] = ACTIONS(439), - [anon_sym_union] = ACTIONS(425), - [anon_sym_unsafe] = ACTIONS(441), - [anon_sym_while] = ACTIONS(443), - [anon_sym_yield] = ACTIONS(445), - [anon_sym_move] = ACTIONS(447), - [anon_sym_try] = ACTIONS(449), - [sym_integer_literal] = ACTIONS(451), - [aux_sym_string_literal_token1] = ACTIONS(453), - [sym_char_literal] = ACTIONS(451), - [anon_sym_true] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(457), - [sym_super] = ACTIONS(459), - [sym_crate] = ACTIONS(459), - [sym_metavariable] = ACTIONS(461), - [sym__raw_string_literal_start] = ACTIONS(463), - [sym_float_literal] = ACTIONS(451), + [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(508), + [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(356), + [anon_sym_break] = ACTIONS(510), + [anon_sym_const] = ACTIONS(358), + [anon_sym_continue] = ACTIONS(512), + [anon_sym_default] = ACTIONS(480), + [anon_sym_for] = ACTIONS(362), + [anon_sym_gen] = ACTIONS(514), + [anon_sym_if] = ACTIONS(366), + [anon_sym_loop] = ACTIONS(368), + [anon_sym_match] = ACTIONS(370), + [anon_sym_return] = ACTIONS(516), + [anon_sym_static] = ACTIONS(518), + [anon_sym_union] = ACTIONS(480), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [anon_sym_yield] = ACTIONS(520), + [anon_sym_move] = ACTIONS(522), + [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(492), + [sym_super] = ACTIONS(494), + [sym_crate] = ACTIONS(494), + [sym_metavariable] = ACTIONS(496), + [sym__raw_string_literal_start] = ACTIONS(119), + [sym_float_literal] = ACTIONS(99), }, [STATE(52)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3056), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1684), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1591), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), + [sym_bracketed_type] = STATE(3650), + [sym_generic_function] = STATE(1711), + [sym_generic_type_with_turbofish] = STATE(3091), + [sym__expression_except_range] = STATE(1658), + [sym__expression] = STATE(1815), + [sym_macro_invocation] = STATE(1717), + [sym_scoped_identifier] = STATE(1623), + [sym_scoped_type_identifier_in_expression_position] = STATE(3337), + [sym_range_expression] = STATE(1715), + [sym_unary_expression] = STATE(1711), + [sym_try_expression] = STATE(1711), + [sym_reference_expression] = STATE(1711), + [sym_binary_expression] = STATE(1711), + [sym_assignment_expression] = STATE(1711), + [sym_compound_assignment_expr] = STATE(1711), + [sym_type_cast_expression] = STATE(1711), + [sym_return_expression] = STATE(1711), + [sym_yield_expression] = STATE(1711), + [sym_call_expression] = STATE(1711), + [sym_array_expression] = STATE(1711), + [sym_parenthesized_expression] = STATE(1711), + [sym_tuple_expression] = STATE(1711), + [sym_unit_expression] = STATE(1711), + [sym_struct_expression] = STATE(1711), + [sym_if_expression] = STATE(1711), + [sym_match_expression] = STATE(1711), + [sym_while_expression] = STATE(1711), + [sym_loop_expression] = STATE(1711), + [sym_for_expression] = STATE(1711), + [sym_const_block] = STATE(1711), + [sym_closure_expression] = STATE(1711), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3742), + [sym_break_expression] = STATE(1711), + [sym_continue_expression] = STATE(1711), + [sym_index_expression] = STATE(1711), + [sym_await_expression] = STATE(1711), + [sym_field_expression] = STATE(1690), + [sym_unsafe_block] = STATE(1711), + [sym_async_block] = STATE(1711), + [sym_gen_block] = STATE(1711), + [sym_try_block] = STATE(1711), + [sym_block] = STATE(1711), + [sym__literal] = STATE(1711), + [sym_string_literal] = STATE(1831), + [sym_raw_string_literal] = STATE(1831), + [sym_boolean_literal] = STATE(1831), [sym_line_comment] = STATE(52), [sym_block_comment] = STATE(52), - [sym_identifier] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(341), - [anon_sym_LBRACK] = ACTIONS(341), - [anon_sym_LBRACE] = ACTIONS(341), - [anon_sym_COLON] = ACTIONS(345), - [anon_sym_PLUS] = ACTIONS(347), - [anon_sym_STAR] = ACTIONS(347), - [anon_sym_QMARK] = ACTIONS(341), - [anon_sym_u8] = ACTIONS(469), - [anon_sym_i8] = ACTIONS(469), - [anon_sym_u16] = ACTIONS(469), - [anon_sym_i16] = ACTIONS(469), - [anon_sym_u32] = ACTIONS(469), - [anon_sym_i32] = ACTIONS(469), - [anon_sym_u64] = ACTIONS(469), - [anon_sym_i64] = ACTIONS(469), - [anon_sym_u128] = ACTIONS(469), - [anon_sym_i128] = ACTIONS(469), - [anon_sym_isize] = ACTIONS(469), - [anon_sym_usize] = ACTIONS(469), - [anon_sym_f32] = ACTIONS(469), - [anon_sym_f64] = ACTIONS(469), - [anon_sym_bool] = ACTIONS(469), - [anon_sym_str] = ACTIONS(469), - [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(347), - [anon_sym_SLASH] = ACTIONS(347), - [anon_sym_PERCENT] = ACTIONS(347), - [anon_sym_CARET] = ACTIONS(347), - [anon_sym_BANG] = ACTIONS(503), - [anon_sym_AMP] = ACTIONS(347), - [anon_sym_PIPE] = ACTIONS(347), - [anon_sym_AMP_AMP] = ACTIONS(341), - [anon_sym_PIPE_PIPE] = ACTIONS(341), - [anon_sym_LT_LT] = ACTIONS(347), - [anon_sym_GT_GT] = ACTIONS(347), - [anon_sym_PLUS_EQ] = ACTIONS(341), - [anon_sym_DASH_EQ] = ACTIONS(341), - [anon_sym_STAR_EQ] = ACTIONS(341), - [anon_sym_SLASH_EQ] = ACTIONS(341), - [anon_sym_PERCENT_EQ] = ACTIONS(341), - [anon_sym_CARET_EQ] = ACTIONS(341), - [anon_sym_AMP_EQ] = ACTIONS(341), - [anon_sym_PIPE_EQ] = ACTIONS(341), - [anon_sym_LT_LT_EQ] = ACTIONS(341), - [anon_sym_GT_GT_EQ] = ACTIONS(341), - [anon_sym_EQ] = ACTIONS(347), - [anon_sym_EQ_EQ] = ACTIONS(341), - [anon_sym_BANG_EQ] = ACTIONS(341), - [anon_sym_GT] = ACTIONS(347), - [anon_sym_LT] = ACTIONS(347), - [anon_sym_GT_EQ] = ACTIONS(341), - [anon_sym_LT_EQ] = ACTIONS(341), - [anon_sym_DOT] = ACTIONS(347), - [anon_sym_DOT_DOT] = ACTIONS(347), - [anon_sym_DOT_DOT_DOT] = ACTIONS(341), - [anon_sym_DOT_DOT_EQ] = ACTIONS(341), - [anon_sym_COLON_COLON] = ACTIONS(473), - [anon_sym_SQUOTE] = ACTIONS(347), - [anon_sym_as] = ACTIONS(347), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(477), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(477), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(489), - [sym_super] = ACTIONS(491), - [sym_crate] = ACTIONS(491), - [sym_metavariable] = ACTIONS(493), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [sym_identifier] = ACTIONS(410), + [anon_sym_LPAREN] = ACTIONS(384), + [anon_sym_LBRACK] = ACTIONS(384), + [anon_sym_LBRACE] = ACTIONS(412), + [anon_sym_EQ_GT] = ACTIONS(384), + [anon_sym_PLUS] = ACTIONS(386), + [anon_sym_STAR] = ACTIONS(386), + [anon_sym_QMARK] = ACTIONS(384), + [anon_sym_u8] = ACTIONS(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(386), + [anon_sym_SLASH] = ACTIONS(386), + [anon_sym_PERCENT] = ACTIONS(386), + [anon_sym_CARET] = ACTIONS(386), + [anon_sym_BANG] = ACTIONS(418), + [anon_sym_AMP] = ACTIONS(386), + [anon_sym_PIPE] = ACTIONS(386), + [anon_sym_AMP_AMP] = ACTIONS(384), + [anon_sym_PIPE_PIPE] = ACTIONS(384), + [anon_sym_LT_LT] = ACTIONS(386), + [anon_sym_GT_GT] = ACTIONS(386), + [anon_sym_PLUS_EQ] = ACTIONS(384), + [anon_sym_DASH_EQ] = ACTIONS(384), + [anon_sym_STAR_EQ] = ACTIONS(384), + [anon_sym_SLASH_EQ] = ACTIONS(384), + [anon_sym_PERCENT_EQ] = ACTIONS(384), + [anon_sym_CARET_EQ] = ACTIONS(384), + [anon_sym_AMP_EQ] = ACTIONS(384), + [anon_sym_PIPE_EQ] = ACTIONS(384), + [anon_sym_LT_LT_EQ] = ACTIONS(384), + [anon_sym_GT_GT_EQ] = ACTIONS(384), + [anon_sym_EQ] = ACTIONS(386), + [anon_sym_EQ_EQ] = ACTIONS(384), + [anon_sym_BANG_EQ] = ACTIONS(384), + [anon_sym_GT] = ACTIONS(386), + [anon_sym_LT] = ACTIONS(386), + [anon_sym_GT_EQ] = ACTIONS(384), + [anon_sym_LT_EQ] = ACTIONS(384), + [anon_sym_DOT] = ACTIONS(386), + [anon_sym_DOT_DOT] = ACTIONS(386), + [anon_sym_DOT_DOT_DOT] = ACTIONS(384), + [anon_sym_DOT_DOT_EQ] = ACTIONS(384), + [anon_sym_COLON_COLON] = ACTIONS(420), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_as] = ACTIONS(386), + [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_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(53)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3056), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1650), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1591), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), + [sym_bracketed_type] = STATE(3752), + [sym_generic_function] = STATE(1492), + [sym_generic_type_with_turbofish] = STATE(3085), + [sym__expression_except_range] = STATE(1409), + [sym__expression] = STATE(1752), + [sym_macro_invocation] = STATE(1529), + [sym_scoped_identifier] = STATE(1604), + [sym_scoped_type_identifier_in_expression_position] = STATE(3335), + [sym_range_expression] = STATE(1505), + [sym_unary_expression] = STATE(1492), + [sym_try_expression] = STATE(1492), + [sym_reference_expression] = STATE(1492), + [sym_binary_expression] = STATE(1492), + [sym_assignment_expression] = STATE(1492), + [sym_compound_assignment_expr] = STATE(1492), + [sym_type_cast_expression] = STATE(1492), + [sym_return_expression] = STATE(1492), + [sym_yield_expression] = STATE(1492), + [sym_call_expression] = STATE(1492), + [sym_array_expression] = STATE(1492), + [sym_parenthesized_expression] = STATE(1492), + [sym_tuple_expression] = STATE(1492), + [sym_unit_expression] = STATE(1492), + [sym_struct_expression] = STATE(1492), + [sym_if_expression] = STATE(1492), + [sym_match_expression] = STATE(1492), + [sym_while_expression] = STATE(1492), + [sym_loop_expression] = STATE(1492), + [sym_for_expression] = STATE(1492), + [sym_const_block] = STATE(1492), + [sym_closure_expression] = STATE(1492), + [sym_closure_parameters] = STATE(235), + [sym_label] = STATE(3689), + [sym_break_expression] = STATE(1492), + [sym_continue_expression] = STATE(1492), + [sym_index_expression] = STATE(1492), + [sym_await_expression] = STATE(1492), + [sym_field_expression] = STATE(1412), + [sym_unsafe_block] = STATE(1492), + [sym_async_block] = STATE(1492), + [sym_gen_block] = STATE(1492), + [sym_try_block] = STATE(1492), + [sym_block] = STATE(1492), + [sym__literal] = STATE(1492), + [sym_string_literal] = STATE(1530), + [sym_raw_string_literal] = STATE(1530), + [sym_boolean_literal] = STATE(1530), [sym_line_comment] = STATE(53), [sym_block_comment] = STATE(53), - [sym_identifier] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(375), - [anon_sym_LBRACK] = ACTIONS(375), - [anon_sym_LBRACE] = ACTIONS(375), - [anon_sym_PLUS] = ACTIONS(377), - [anon_sym_STAR] = ACTIONS(377), - [anon_sym_QMARK] = ACTIONS(375), - [anon_sym_u8] = ACTIONS(469), - [anon_sym_i8] = ACTIONS(469), - [anon_sym_u16] = ACTIONS(469), - [anon_sym_i16] = ACTIONS(469), - [anon_sym_u32] = ACTIONS(469), - [anon_sym_i32] = ACTIONS(469), - [anon_sym_u64] = ACTIONS(469), - [anon_sym_i64] = ACTIONS(469), - [anon_sym_u128] = ACTIONS(469), - [anon_sym_i128] = ACTIONS(469), - [anon_sym_isize] = ACTIONS(469), - [anon_sym_usize] = ACTIONS(469), - [anon_sym_f32] = ACTIONS(469), - [anon_sym_f64] = ACTIONS(469), - [anon_sym_bool] = ACTIONS(469), - [anon_sym_str] = ACTIONS(469), - [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(377), - [anon_sym_SLASH] = ACTIONS(377), - [anon_sym_PERCENT] = ACTIONS(377), - [anon_sym_CARET] = ACTIONS(377), - [anon_sym_BANG] = ACTIONS(503), - [anon_sym_AMP] = ACTIONS(377), - [anon_sym_PIPE] = ACTIONS(377), - [anon_sym_AMP_AMP] = ACTIONS(375), - [anon_sym_PIPE_PIPE] = ACTIONS(375), - [anon_sym_LT_LT] = ACTIONS(377), - [anon_sym_GT_GT] = ACTIONS(377), - [anon_sym_PLUS_EQ] = ACTIONS(375), - [anon_sym_DASH_EQ] = ACTIONS(375), - [anon_sym_STAR_EQ] = ACTIONS(375), - [anon_sym_SLASH_EQ] = ACTIONS(375), - [anon_sym_PERCENT_EQ] = ACTIONS(375), - [anon_sym_CARET_EQ] = ACTIONS(375), - [anon_sym_AMP_EQ] = ACTIONS(375), - [anon_sym_PIPE_EQ] = ACTIONS(375), - [anon_sym_LT_LT_EQ] = ACTIONS(375), - [anon_sym_GT_GT_EQ] = ACTIONS(375), - [anon_sym_EQ] = ACTIONS(377), - [anon_sym_EQ_EQ] = ACTIONS(375), - [anon_sym_BANG_EQ] = ACTIONS(375), - [anon_sym_GT] = ACTIONS(377), - [anon_sym_LT] = ACTIONS(377), - [anon_sym_GT_EQ] = ACTIONS(375), - [anon_sym_LT_EQ] = ACTIONS(375), - [anon_sym_DOT] = ACTIONS(377), - [anon_sym_DOT_DOT] = ACTIONS(377), - [anon_sym_DOT_DOT_DOT] = ACTIONS(375), - [anon_sym_DOT_DOT_EQ] = ACTIONS(375), - [anon_sym_COLON_COLON] = ACTIONS(473), - [anon_sym_SQUOTE] = ACTIONS(377), - [anon_sym_as] = ACTIONS(377), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(477), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(477), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(489), - [sym_super] = ACTIONS(491), - [sym_crate] = ACTIONS(491), - [sym_metavariable] = ACTIONS(493), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [sym_identifier] = ACTIONS(470), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(384), + [anon_sym_LBRACE] = ACTIONS(384), + [anon_sym_PLUS] = ACTIONS(386), + [anon_sym_STAR] = ACTIONS(386), + [anon_sym_QMARK] = ACTIONS(384), + [anon_sym_u8] = ACTIONS(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(386), + [anon_sym_SLASH] = ACTIONS(386), + [anon_sym_PERCENT] = ACTIONS(386), + [anon_sym_CARET] = ACTIONS(386), + [anon_sym_BANG] = ACTIONS(474), + [anon_sym_AMP] = ACTIONS(386), + [anon_sym_PIPE] = ACTIONS(386), + [anon_sym_AMP_AMP] = ACTIONS(384), + [anon_sym_PIPE_PIPE] = ACTIONS(384), + [anon_sym_LT_LT] = ACTIONS(386), + [anon_sym_GT_GT] = ACTIONS(386), + [anon_sym_PLUS_EQ] = ACTIONS(384), + [anon_sym_DASH_EQ] = ACTIONS(384), + [anon_sym_STAR_EQ] = ACTIONS(384), + [anon_sym_SLASH_EQ] = ACTIONS(384), + [anon_sym_PERCENT_EQ] = ACTIONS(384), + [anon_sym_CARET_EQ] = ACTIONS(384), + [anon_sym_AMP_EQ] = ACTIONS(384), + [anon_sym_PIPE_EQ] = ACTIONS(384), + [anon_sym_LT_LT_EQ] = ACTIONS(384), + [anon_sym_GT_GT_EQ] = ACTIONS(384), + [anon_sym_EQ] = ACTIONS(386), + [anon_sym_EQ_EQ] = ACTIONS(384), + [anon_sym_BANG_EQ] = ACTIONS(384), + [anon_sym_GT] = ACTIONS(386), + [anon_sym_LT] = ACTIONS(386), + [anon_sym_GT_EQ] = ACTIONS(384), + [anon_sym_LT_EQ] = ACTIONS(384), + [anon_sym_DOT] = ACTIONS(386), + [anon_sym_DOT_DOT] = ACTIONS(386), + [anon_sym_DOT_DOT_DOT] = ACTIONS(384), + [anon_sym_DOT_DOT_EQ] = ACTIONS(384), + [anon_sym_COLON_COLON] = ACTIONS(476), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_as] = ACTIONS(386), + [anon_sym_async] = ACTIONS(356), + [anon_sym_break] = ACTIONS(478), + [anon_sym_const] = ACTIONS(358), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(480), + [anon_sym_for] = ACTIONS(362), + [anon_sym_gen] = ACTIONS(482), + [anon_sym_if] = ACTIONS(366), + [anon_sym_loop] = ACTIONS(368), + [anon_sym_match] = ACTIONS(370), + [anon_sym_return] = ACTIONS(484), + [anon_sym_static] = ACTIONS(486), + [anon_sym_union] = ACTIONS(480), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [anon_sym_yield] = ACTIONS(488), + [anon_sym_move] = ACTIONS(490), + [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(492), + [sym_super] = ACTIONS(494), + [sym_crate] = ACTIONS(494), + [sym_metavariable] = ACTIONS(496), + [sym__raw_string_literal_start] = ACTIONS(119), + [sym_float_literal] = ACTIONS(99), }, [STATE(54)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3056), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1846), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1591), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(244), - [sym_label] = STATE(45), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), + [sym_bracketed_type] = STATE(3752), + [sym_generic_function] = STATE(1492), + [sym_generic_type_with_turbofish] = STATE(3085), + [sym__expression_except_range] = STATE(1409), + [sym__expression] = STATE(1752), + [sym_macro_invocation] = STATE(1529), + [sym_scoped_identifier] = STATE(1604), + [sym_scoped_type_identifier_in_expression_position] = STATE(3335), + [sym_range_expression] = STATE(1505), + [sym_unary_expression] = STATE(1492), + [sym_try_expression] = STATE(1492), + [sym_reference_expression] = STATE(1492), + [sym_binary_expression] = STATE(1492), + [sym_assignment_expression] = STATE(1492), + [sym_compound_assignment_expr] = STATE(1492), + [sym_type_cast_expression] = STATE(1492), + [sym_return_expression] = STATE(1492), + [sym_yield_expression] = STATE(1492), + [sym_call_expression] = STATE(1492), + [sym_array_expression] = STATE(1492), + [sym_parenthesized_expression] = STATE(1492), + [sym_tuple_expression] = STATE(1492), + [sym_unit_expression] = STATE(1492), + [sym_struct_expression] = STATE(1492), + [sym_if_expression] = STATE(1492), + [sym_match_expression] = STATE(1492), + [sym_while_expression] = STATE(1492), + [sym_loop_expression] = STATE(1492), + [sym_for_expression] = STATE(1492), + [sym_const_block] = STATE(1492), + [sym_closure_expression] = STATE(1492), + [sym_closure_parameters] = STATE(235), + [sym_label] = STATE(3689), + [sym_break_expression] = STATE(1492), + [sym_continue_expression] = STATE(1492), + [sym_index_expression] = STATE(1492), + [sym_await_expression] = STATE(1492), + [sym_field_expression] = STATE(1412), + [sym_unsafe_block] = STATE(1492), + [sym_async_block] = STATE(1492), + [sym_gen_block] = STATE(1492), + [sym_try_block] = STATE(1492), + [sym_block] = STATE(1492), + [sym__literal] = STATE(1492), + [sym_string_literal] = STATE(1530), + [sym_raw_string_literal] = STATE(1530), + [sym_boolean_literal] = STATE(1530), [sym_line_comment] = STATE(54), [sym_block_comment] = STATE(54), - [sym_identifier] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(399), - [anon_sym_LBRACK] = ACTIONS(399), - [anon_sym_LBRACE] = ACTIONS(399), - [anon_sym_PLUS] = ACTIONS(401), - [anon_sym_STAR] = ACTIONS(401), - [anon_sym_QMARK] = ACTIONS(399), - [anon_sym_u8] = ACTIONS(469), - [anon_sym_i8] = ACTIONS(469), - [anon_sym_u16] = ACTIONS(469), - [anon_sym_i16] = ACTIONS(469), - [anon_sym_u32] = ACTIONS(469), - [anon_sym_i32] = ACTIONS(469), - [anon_sym_u64] = ACTIONS(469), - [anon_sym_i64] = ACTIONS(469), - [anon_sym_u128] = ACTIONS(469), - [anon_sym_i128] = ACTIONS(469), - [anon_sym_isize] = ACTIONS(469), - [anon_sym_usize] = ACTIONS(469), - [anon_sym_f32] = ACTIONS(469), - [anon_sym_f64] = ACTIONS(469), - [anon_sym_bool] = ACTIONS(469), - [anon_sym_str] = ACTIONS(469), - [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(401), - [anon_sym_SLASH] = ACTIONS(401), - [anon_sym_PERCENT] = ACTIONS(401), - [anon_sym_CARET] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(471), - [anon_sym_AMP] = ACTIONS(401), - [anon_sym_PIPE] = ACTIONS(401), - [anon_sym_AMP_AMP] = ACTIONS(399), - [anon_sym_PIPE_PIPE] = ACTIONS(399), - [anon_sym_LT_LT] = ACTIONS(401), - [anon_sym_GT_GT] = ACTIONS(401), - [anon_sym_PLUS_EQ] = ACTIONS(399), - [anon_sym_DASH_EQ] = ACTIONS(399), - [anon_sym_STAR_EQ] = ACTIONS(399), - [anon_sym_SLASH_EQ] = ACTIONS(399), - [anon_sym_PERCENT_EQ] = ACTIONS(399), - [anon_sym_CARET_EQ] = ACTIONS(399), - [anon_sym_AMP_EQ] = ACTIONS(399), - [anon_sym_PIPE_EQ] = ACTIONS(399), - [anon_sym_LT_LT_EQ] = ACTIONS(399), - [anon_sym_GT_GT_EQ] = ACTIONS(399), - [anon_sym_EQ] = ACTIONS(401), - [anon_sym_EQ_EQ] = ACTIONS(399), - [anon_sym_BANG_EQ] = ACTIONS(399), - [anon_sym_GT] = ACTIONS(401), - [anon_sym_LT] = ACTIONS(401), - [anon_sym_GT_EQ] = ACTIONS(399), - [anon_sym_LT_EQ] = ACTIONS(399), - [anon_sym_DOT] = ACTIONS(401), - [anon_sym_DOT_DOT] = ACTIONS(401), - [anon_sym_DOT_DOT_DOT] = ACTIONS(399), - [anon_sym_DOT_DOT_EQ] = ACTIONS(399), - [anon_sym_COLON_COLON] = ACTIONS(473), - [anon_sym_SQUOTE] = ACTIONS(403), - [anon_sym_as] = ACTIONS(401), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(475), - [anon_sym_const] = ACTIONS(353), + [sym_identifier] = ACTIONS(470), + [anon_sym_LPAREN] = ACTIONS(384), + [anon_sym_LBRACK] = ACTIONS(384), + [anon_sym_LBRACE] = ACTIONS(384), + [anon_sym_PLUS] = ACTIONS(386), + [anon_sym_STAR] = ACTIONS(386), + [anon_sym_QMARK] = ACTIONS(384), + [anon_sym_u8] = ACTIONS(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(386), + [anon_sym_SLASH] = ACTIONS(386), + [anon_sym_PERCENT] = ACTIONS(386), + [anon_sym_CARET] = ACTIONS(386), + [anon_sym_BANG] = ACTIONS(474), + [anon_sym_AMP] = ACTIONS(386), + [anon_sym_PIPE] = ACTIONS(386), + [anon_sym_AMP_AMP] = ACTIONS(384), + [anon_sym_PIPE_PIPE] = ACTIONS(384), + [anon_sym_LT_LT] = ACTIONS(386), + [anon_sym_GT_GT] = ACTIONS(386), + [anon_sym_PLUS_EQ] = ACTIONS(384), + [anon_sym_DASH_EQ] = ACTIONS(384), + [anon_sym_STAR_EQ] = ACTIONS(384), + [anon_sym_SLASH_EQ] = ACTIONS(384), + [anon_sym_PERCENT_EQ] = ACTIONS(384), + [anon_sym_CARET_EQ] = ACTIONS(384), + [anon_sym_AMP_EQ] = ACTIONS(384), + [anon_sym_PIPE_EQ] = ACTIONS(384), + [anon_sym_LT_LT_EQ] = ACTIONS(384), + [anon_sym_GT_GT_EQ] = ACTIONS(384), + [anon_sym_EQ] = ACTIONS(386), + [anon_sym_EQ_EQ] = ACTIONS(384), + [anon_sym_BANG_EQ] = ACTIONS(384), + [anon_sym_GT] = ACTIONS(386), + [anon_sym_LT] = ACTIONS(386), + [anon_sym_GT_EQ] = ACTIONS(384), + [anon_sym_LT_EQ] = ACTIONS(384), + [anon_sym_DOT] = ACTIONS(386), + [anon_sym_DOT_DOT] = ACTIONS(386), + [anon_sym_DOT_DOT_DOT] = ACTIONS(384), + [anon_sym_DOT_DOT_EQ] = ACTIONS(384), + [anon_sym_COLON_COLON] = ACTIONS(476), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_as] = ACTIONS(386), + [anon_sym_async] = ACTIONS(356), + [anon_sym_break] = ACTIONS(478), + [anon_sym_const] = ACTIONS(358), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(477), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(479), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(481), - [anon_sym_static] = ACTIONS(483), - [anon_sym_union] = ACTIONS(477), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(485), - [anon_sym_move] = ACTIONS(487), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(489), - [sym_super] = ACTIONS(491), - [sym_crate] = ACTIONS(491), - [sym_metavariable] = ACTIONS(493), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [anon_sym_default] = ACTIONS(480), + [anon_sym_for] = ACTIONS(362), + [anon_sym_gen] = ACTIONS(482), + [anon_sym_if] = ACTIONS(366), + [anon_sym_loop] = ACTIONS(368), + [anon_sym_match] = ACTIONS(370), + [anon_sym_return] = ACTIONS(484), + [anon_sym_static] = ACTIONS(486), + [anon_sym_union] = ACTIONS(480), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [anon_sym_yield] = ACTIONS(488), + [anon_sym_move] = ACTIONS(490), + [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(492), + [sym_super] = ACTIONS(494), + [sym_crate] = ACTIONS(494), + [sym_metavariable] = ACTIONS(496), + [sym__raw_string_literal_start] = ACTIONS(119), + [sym_float_literal] = ACTIONS(99), }, [STATE(55)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3056), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1653), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1591), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), + [sym_bracketed_type] = STATE(3752), + [sym_generic_function] = STATE(1492), + [sym_generic_type_with_turbofish] = STATE(3085), + [sym__expression_except_range] = STATE(1409), + [sym__expression] = STATE(1884), + [sym_macro_invocation] = STATE(1529), + [sym_scoped_identifier] = STATE(1604), + [sym_scoped_type_identifier_in_expression_position] = STATE(3335), + [sym_range_expression] = STATE(1505), + [sym_unary_expression] = STATE(1492), + [sym_try_expression] = STATE(1492), + [sym_reference_expression] = STATE(1492), + [sym_binary_expression] = STATE(1492), + [sym_assignment_expression] = STATE(1492), + [sym_compound_assignment_expr] = STATE(1492), + [sym_type_cast_expression] = STATE(1492), + [sym_return_expression] = STATE(1492), + [sym_yield_expression] = STATE(1492), + [sym_call_expression] = STATE(1492), + [sym_array_expression] = STATE(1492), + [sym_parenthesized_expression] = STATE(1492), + [sym_tuple_expression] = STATE(1492), + [sym_unit_expression] = STATE(1492), + [sym_struct_expression] = STATE(1492), + [sym_if_expression] = STATE(1492), + [sym_match_expression] = STATE(1492), + [sym_while_expression] = STATE(1492), + [sym_loop_expression] = STATE(1492), + [sym_for_expression] = STATE(1492), + [sym_const_block] = STATE(1492), + [sym_closure_expression] = STATE(1492), + [sym_closure_parameters] = STATE(235), + [sym_label] = STATE(3689), + [sym_break_expression] = STATE(1492), + [sym_continue_expression] = STATE(1492), + [sym_index_expression] = STATE(1492), + [sym_await_expression] = STATE(1492), + [sym_field_expression] = STATE(1412), + [sym_unsafe_block] = STATE(1492), + [sym_async_block] = STATE(1492), + [sym_gen_block] = STATE(1492), + [sym_try_block] = STATE(1492), + [sym_block] = STATE(1492), + [sym__literal] = STATE(1492), + [sym_string_literal] = STATE(1530), + [sym_raw_string_literal] = STATE(1530), + [sym_boolean_literal] = STATE(1530), [sym_line_comment] = STATE(55), [sym_block_comment] = STATE(55), - [sym_identifier] = ACTIONS(467), + [sym_identifier] = ACTIONS(470), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_PLUS] = ACTIONS(385), - [anon_sym_STAR] = ACTIONS(503), - [anon_sym_QMARK] = ACTIONS(383), - [anon_sym_u8] = ACTIONS(469), - [anon_sym_i8] = ACTIONS(469), - [anon_sym_u16] = ACTIONS(469), - [anon_sym_i16] = ACTIONS(469), - [anon_sym_u32] = ACTIONS(469), - [anon_sym_i32] = ACTIONS(469), - [anon_sym_u64] = ACTIONS(469), - [anon_sym_i64] = ACTIONS(469), - [anon_sym_u128] = ACTIONS(469), - [anon_sym_i128] = ACTIONS(469), - [anon_sym_isize] = ACTIONS(469), - [anon_sym_usize] = ACTIONS(469), - [anon_sym_f32] = ACTIONS(469), - [anon_sym_f64] = ACTIONS(469), - [anon_sym_bool] = ACTIONS(469), - [anon_sym_str] = ACTIONS(469), - [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(503), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_PERCENT] = ACTIONS(385), - [anon_sym_CARET] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(503), - [anon_sym_AMP] = ACTIONS(519), - [anon_sym_PIPE] = ACTIONS(389), - [anon_sym_AMP_AMP] = ACTIONS(383), - [anon_sym_PIPE_PIPE] = ACTIONS(383), - [anon_sym_LT_LT] = ACTIONS(385), - [anon_sym_GT_GT] = ACTIONS(385), - [anon_sym_PLUS_EQ] = ACTIONS(383), - [anon_sym_DASH_EQ] = ACTIONS(383), - [anon_sym_STAR_EQ] = ACTIONS(383), - [anon_sym_SLASH_EQ] = ACTIONS(383), - [anon_sym_PERCENT_EQ] = ACTIONS(383), - [anon_sym_CARET_EQ] = ACTIONS(383), - [anon_sym_AMP_EQ] = ACTIONS(383), - [anon_sym_PIPE_EQ] = ACTIONS(383), - [anon_sym_LT_LT_EQ] = ACTIONS(383), - [anon_sym_GT_GT_EQ] = ACTIONS(383), - [anon_sym_EQ] = ACTIONS(385), - [anon_sym_EQ_EQ] = ACTIONS(383), - [anon_sym_BANG_EQ] = ACTIONS(383), - [anon_sym_GT] = ACTIONS(385), - [anon_sym_LT] = ACTIONS(391), - [anon_sym_GT_EQ] = ACTIONS(383), - [anon_sym_LT_EQ] = ACTIONS(383), - [anon_sym_DOT] = ACTIONS(385), - [anon_sym_DOT_DOT] = ACTIONS(521), - [anon_sym_DOT_DOT_DOT] = ACTIONS(383), - [anon_sym_DOT_DOT_EQ] = ACTIONS(383), - [anon_sym_COLON_COLON] = ACTIONS(473), + [anon_sym_LBRACK] = ACTIONS(380), + [anon_sym_LBRACE] = ACTIONS(380), + [anon_sym_PLUS] = ACTIONS(382), + [anon_sym_STAR] = ACTIONS(382), + [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(382), + [anon_sym_SLASH] = ACTIONS(382), + [anon_sym_PERCENT] = ACTIONS(382), + [anon_sym_CARET] = ACTIONS(382), + [anon_sym_BANG] = ACTIONS(474), + [anon_sym_AMP] = ACTIONS(382), + [anon_sym_PIPE] = ACTIONS(382), + [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(382), + [anon_sym_GT_EQ] = ACTIONS(380), + [anon_sym_LT_EQ] = ACTIONS(380), + [anon_sym_DOT] = ACTIONS(382), + [anon_sym_DOT_DOT] = ACTIONS(382), + [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(385), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(477), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(477), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(489), - [sym_super] = ACTIONS(491), - [sym_crate] = ACTIONS(491), - [sym_metavariable] = ACTIONS(493), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [anon_sym_as] = ACTIONS(382), + [anon_sym_async] = ACTIONS(356), + [anon_sym_break] = ACTIONS(478), + [anon_sym_const] = ACTIONS(358), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(480), + [anon_sym_for] = ACTIONS(362), + [anon_sym_gen] = ACTIONS(482), + [anon_sym_if] = ACTIONS(366), + [anon_sym_loop] = ACTIONS(368), + [anon_sym_match] = ACTIONS(370), + [anon_sym_return] = ACTIONS(484), + [anon_sym_static] = ACTIONS(486), + [anon_sym_union] = ACTIONS(480), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [anon_sym_yield] = ACTIONS(488), + [anon_sym_move] = ACTIONS(490), + [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(492), + [sym_super] = ACTIONS(494), + [sym_crate] = ACTIONS(494), + [sym_metavariable] = ACTIONS(496), + [sym__raw_string_literal_start] = ACTIONS(119), + [sym_float_literal] = ACTIONS(99), }, [STATE(56)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3056), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1652), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1591), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), + [sym_bracketed_type] = STATE(3752), + [sym_generic_function] = STATE(1492), + [sym_generic_type_with_turbofish] = STATE(3085), + [sym__expression_except_range] = STATE(1409), + [sym__expression] = STATE(1662), + [sym_macro_invocation] = STATE(1529), + [sym_scoped_identifier] = STATE(1604), + [sym_scoped_type_identifier_in_expression_position] = STATE(3335), + [sym_range_expression] = STATE(1505), + [sym_unary_expression] = STATE(1492), + [sym_try_expression] = STATE(1492), + [sym_reference_expression] = STATE(1492), + [sym_binary_expression] = STATE(1492), + [sym_assignment_expression] = STATE(1492), + [sym_compound_assignment_expr] = STATE(1492), + [sym_type_cast_expression] = STATE(1492), + [sym_return_expression] = STATE(1492), + [sym_yield_expression] = STATE(1492), + [sym_call_expression] = STATE(1492), + [sym_array_expression] = STATE(1492), + [sym_parenthesized_expression] = STATE(1492), + [sym_tuple_expression] = STATE(1492), + [sym_unit_expression] = STATE(1492), + [sym_struct_expression] = STATE(1492), + [sym_if_expression] = STATE(1492), + [sym_match_expression] = STATE(1492), + [sym_while_expression] = STATE(1492), + [sym_loop_expression] = STATE(1492), + [sym_for_expression] = STATE(1492), + [sym_const_block] = STATE(1492), + [sym_closure_expression] = STATE(1492), + [sym_closure_parameters] = STATE(221), + [sym_label] = STATE(51), + [sym_break_expression] = STATE(1492), + [sym_continue_expression] = STATE(1492), + [sym_index_expression] = STATE(1492), + [sym_await_expression] = STATE(1492), + [sym_field_expression] = STATE(1412), + [sym_unsafe_block] = STATE(1492), + [sym_async_block] = STATE(1492), + [sym_gen_block] = STATE(1492), + [sym_try_block] = STATE(1492), + [sym_block] = STATE(1492), + [sym__literal] = STATE(1492), + [sym_string_literal] = STATE(1530), + [sym_raw_string_literal] = STATE(1530), + [sym_boolean_literal] = STATE(1530), [sym_line_comment] = STATE(56), [sym_block_comment] = STATE(56), - [sym_identifier] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_PLUS] = ACTIONS(397), - [anon_sym_STAR] = ACTIONS(503), - [anon_sym_QMARK] = ACTIONS(395), - [anon_sym_u8] = ACTIONS(469), - [anon_sym_i8] = ACTIONS(469), - [anon_sym_u16] = ACTIONS(469), - [anon_sym_i16] = ACTIONS(469), - [anon_sym_u32] = ACTIONS(469), - [anon_sym_i32] = ACTIONS(469), - [anon_sym_u64] = ACTIONS(469), - [anon_sym_i64] = ACTIONS(469), - [anon_sym_u128] = ACTIONS(469), - [anon_sym_i128] = ACTIONS(469), - [anon_sym_isize] = ACTIONS(469), - [anon_sym_usize] = ACTIONS(469), - [anon_sym_f32] = ACTIONS(469), - [anon_sym_f64] = ACTIONS(469), - [anon_sym_bool] = ACTIONS(469), - [anon_sym_str] = ACTIONS(469), - [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(503), - [anon_sym_SLASH] = ACTIONS(397), - [anon_sym_PERCENT] = ACTIONS(397), - [anon_sym_CARET] = ACTIONS(397), - [anon_sym_BANG] = ACTIONS(503), - [anon_sym_AMP] = ACTIONS(519), - [anon_sym_PIPE] = ACTIONS(389), - [anon_sym_AMP_AMP] = ACTIONS(395), - [anon_sym_PIPE_PIPE] = ACTIONS(395), - [anon_sym_LT_LT] = ACTIONS(397), - [anon_sym_GT_GT] = ACTIONS(397), - [anon_sym_PLUS_EQ] = ACTIONS(395), - [anon_sym_DASH_EQ] = ACTIONS(395), - [anon_sym_STAR_EQ] = ACTIONS(395), - [anon_sym_SLASH_EQ] = ACTIONS(395), - [anon_sym_PERCENT_EQ] = ACTIONS(395), - [anon_sym_CARET_EQ] = ACTIONS(395), - [anon_sym_AMP_EQ] = ACTIONS(395), - [anon_sym_PIPE_EQ] = ACTIONS(395), - [anon_sym_LT_LT_EQ] = ACTIONS(395), - [anon_sym_GT_GT_EQ] = ACTIONS(395), - [anon_sym_EQ] = ACTIONS(397), - [anon_sym_EQ_EQ] = ACTIONS(395), - [anon_sym_BANG_EQ] = ACTIONS(395), - [anon_sym_GT] = ACTIONS(397), - [anon_sym_LT] = ACTIONS(391), - [anon_sym_GT_EQ] = ACTIONS(395), - [anon_sym_LT_EQ] = ACTIONS(395), - [anon_sym_DOT] = ACTIONS(397), - [anon_sym_DOT_DOT] = ACTIONS(521), - [anon_sym_DOT_DOT_DOT] = ACTIONS(395), - [anon_sym_DOT_DOT_EQ] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(473), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(397), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(477), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(477), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(489), - [sym_super] = ACTIONS(491), - [sym_crate] = ACTIONS(491), - [sym_metavariable] = ACTIONS(493), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [sym_identifier] = ACTIONS(470), + [anon_sym_LPAREN] = ACTIONS(404), + [anon_sym_LBRACK] = ACTIONS(404), + [anon_sym_LBRACE] = ACTIONS(404), + [anon_sym_PLUS] = ACTIONS(406), + [anon_sym_STAR] = ACTIONS(406), + [anon_sym_QMARK] = ACTIONS(404), + [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(406), + [anon_sym_SLASH] = ACTIONS(406), + [anon_sym_PERCENT] = ACTIONS(406), + [anon_sym_CARET] = ACTIONS(406), + [anon_sym_BANG] = ACTIONS(508), + [anon_sym_AMP] = ACTIONS(406), + [anon_sym_PIPE] = ACTIONS(406), + [anon_sym_AMP_AMP] = ACTIONS(404), + [anon_sym_PIPE_PIPE] = ACTIONS(404), + [anon_sym_LT_LT] = ACTIONS(406), + [anon_sym_GT_GT] = ACTIONS(406), + [anon_sym_PLUS_EQ] = ACTIONS(404), + [anon_sym_DASH_EQ] = ACTIONS(404), + [anon_sym_STAR_EQ] = ACTIONS(404), + [anon_sym_SLASH_EQ] = ACTIONS(404), + [anon_sym_PERCENT_EQ] = ACTIONS(404), + [anon_sym_CARET_EQ] = ACTIONS(404), + [anon_sym_AMP_EQ] = ACTIONS(404), + [anon_sym_PIPE_EQ] = ACTIONS(404), + [anon_sym_LT_LT_EQ] = ACTIONS(404), + [anon_sym_GT_GT_EQ] = ACTIONS(404), + [anon_sym_EQ] = ACTIONS(406), + [anon_sym_EQ_EQ] = ACTIONS(404), + [anon_sym_BANG_EQ] = ACTIONS(404), + [anon_sym_GT] = ACTIONS(406), + [anon_sym_LT] = ACTIONS(406), + [anon_sym_GT_EQ] = ACTIONS(404), + [anon_sym_LT_EQ] = ACTIONS(404), + [anon_sym_DOT] = ACTIONS(406), + [anon_sym_DOT_DOT] = ACTIONS(406), + [anon_sym_DOT_DOT_DOT] = ACTIONS(404), + [anon_sym_DOT_DOT_EQ] = ACTIONS(404), + [anon_sym_COLON_COLON] = ACTIONS(476), + [anon_sym_SQUOTE] = ACTIONS(406), + [anon_sym_as] = ACTIONS(406), + [anon_sym_async] = ACTIONS(356), + [anon_sym_break] = ACTIONS(510), + [anon_sym_const] = ACTIONS(358), + [anon_sym_continue] = ACTIONS(512), + [anon_sym_default] = ACTIONS(480), + [anon_sym_for] = ACTIONS(362), + [anon_sym_gen] = ACTIONS(514), + [anon_sym_if] = ACTIONS(366), + [anon_sym_loop] = ACTIONS(368), + [anon_sym_match] = ACTIONS(370), + [anon_sym_return] = ACTIONS(516), + [anon_sym_static] = ACTIONS(518), + [anon_sym_union] = ACTIONS(480), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [anon_sym_yield] = ACTIONS(520), + [anon_sym_move] = ACTIONS(522), + [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(492), + [sym_super] = ACTIONS(494), + [sym_crate] = ACTIONS(494), + [sym_metavariable] = ACTIONS(496), + [sym__raw_string_literal_start] = ACTIONS(119), + [sym_float_literal] = ACTIONS(99), }, [STATE(57)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3056), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1651), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1591), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(52), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), + [sym_bracketed_type] = STATE(3752), + [sym_generic_function] = STATE(1492), + [sym_generic_type_with_turbofish] = STATE(3085), + [sym__expression_except_range] = STATE(1409), + [sym__expression] = STATE(1663), + [sym_macro_invocation] = STATE(1529), + [sym_scoped_identifier] = STATE(1604), + [sym_scoped_type_identifier_in_expression_position] = STATE(3335), + [sym_range_expression] = STATE(1505), + [sym_unary_expression] = STATE(1492), + [sym_try_expression] = STATE(1492), + [sym_reference_expression] = STATE(1492), + [sym_binary_expression] = STATE(1492), + [sym_assignment_expression] = STATE(1492), + [sym_compound_assignment_expr] = STATE(1492), + [sym_type_cast_expression] = STATE(1492), + [sym_return_expression] = STATE(1492), + [sym_yield_expression] = STATE(1492), + [sym_call_expression] = STATE(1492), + [sym_array_expression] = STATE(1492), + [sym_parenthesized_expression] = STATE(1492), + [sym_tuple_expression] = STATE(1492), + [sym_unit_expression] = STATE(1492), + [sym_struct_expression] = STATE(1492), + [sym_if_expression] = STATE(1492), + [sym_match_expression] = STATE(1492), + [sym_while_expression] = STATE(1492), + [sym_loop_expression] = STATE(1492), + [sym_for_expression] = STATE(1492), + [sym_const_block] = STATE(1492), + [sym_closure_expression] = STATE(1492), + [sym_closure_parameters] = STATE(221), + [sym_label] = STATE(3689), + [sym_break_expression] = STATE(1492), + [sym_continue_expression] = STATE(1492), + [sym_index_expression] = STATE(1492), + [sym_await_expression] = STATE(1492), + [sym_field_expression] = STATE(1412), + [sym_unsafe_block] = STATE(1492), + [sym_async_block] = STATE(1492), + [sym_gen_block] = STATE(1492), + [sym_try_block] = STATE(1492), + [sym_block] = STATE(1492), + [sym__literal] = STATE(1492), + [sym_string_literal] = STATE(1530), + [sym_raw_string_literal] = STATE(1530), + [sym_boolean_literal] = STATE(1530), [sym_line_comment] = STATE(57), [sym_block_comment] = STATE(57), - [sym_identifier] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(399), - [anon_sym_LBRACK] = ACTIONS(399), - [anon_sym_LBRACE] = ACTIONS(399), - [anon_sym_PLUS] = ACTIONS(401), - [anon_sym_STAR] = ACTIONS(401), - [anon_sym_QMARK] = ACTIONS(399), - [anon_sym_u8] = ACTIONS(469), - [anon_sym_i8] = ACTIONS(469), - [anon_sym_u16] = ACTIONS(469), - [anon_sym_i16] = ACTIONS(469), - [anon_sym_u32] = ACTIONS(469), - [anon_sym_i32] = ACTIONS(469), - [anon_sym_u64] = ACTIONS(469), - [anon_sym_i64] = ACTIONS(469), - [anon_sym_u128] = ACTIONS(469), - [anon_sym_i128] = ACTIONS(469), - [anon_sym_isize] = ACTIONS(469), - [anon_sym_usize] = ACTIONS(469), - [anon_sym_f32] = ACTIONS(469), - [anon_sym_f64] = ACTIONS(469), - [anon_sym_bool] = ACTIONS(469), - [anon_sym_str] = ACTIONS(469), - [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(401), - [anon_sym_SLASH] = ACTIONS(401), - [anon_sym_PERCENT] = ACTIONS(401), - [anon_sym_CARET] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(503), - [anon_sym_AMP] = ACTIONS(401), - [anon_sym_PIPE] = ACTIONS(401), - [anon_sym_AMP_AMP] = ACTIONS(399), - [anon_sym_PIPE_PIPE] = ACTIONS(399), - [anon_sym_LT_LT] = ACTIONS(401), - [anon_sym_GT_GT] = ACTIONS(401), - [anon_sym_PLUS_EQ] = ACTIONS(399), - [anon_sym_DASH_EQ] = ACTIONS(399), - [anon_sym_STAR_EQ] = ACTIONS(399), - [anon_sym_SLASH_EQ] = ACTIONS(399), - [anon_sym_PERCENT_EQ] = ACTIONS(399), - [anon_sym_CARET_EQ] = ACTIONS(399), - [anon_sym_AMP_EQ] = ACTIONS(399), - [anon_sym_PIPE_EQ] = ACTIONS(399), - [anon_sym_LT_LT_EQ] = ACTIONS(399), - [anon_sym_GT_GT_EQ] = ACTIONS(399), - [anon_sym_EQ] = ACTIONS(401), - [anon_sym_EQ_EQ] = ACTIONS(399), - [anon_sym_BANG_EQ] = ACTIONS(399), - [anon_sym_GT] = ACTIONS(401), - [anon_sym_LT] = ACTIONS(401), - [anon_sym_GT_EQ] = ACTIONS(399), - [anon_sym_LT_EQ] = ACTIONS(399), - [anon_sym_DOT] = ACTIONS(401), - [anon_sym_DOT_DOT] = ACTIONS(401), - [anon_sym_DOT_DOT_DOT] = ACTIONS(399), - [anon_sym_DOT_DOT_EQ] = ACTIONS(399), - [anon_sym_COLON_COLON] = ACTIONS(473), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_as] = ACTIONS(401), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(477), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(477), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(489), - [sym_super] = ACTIONS(491), - [sym_crate] = ACTIONS(491), - [sym_metavariable] = ACTIONS(493), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [sym_identifier] = ACTIONS(470), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(348), + [anon_sym_PLUS] = ACTIONS(390), + [anon_sym_STAR] = ACTIONS(508), + [anon_sym_QMARK] = ACTIONS(388), + [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(508), + [anon_sym_SLASH] = ACTIONS(390), + [anon_sym_PERCENT] = ACTIONS(390), + [anon_sym_CARET] = ACTIONS(390), + [anon_sym_BANG] = ACTIONS(508), + [anon_sym_AMP] = ACTIONS(524), + [anon_sym_PIPE] = ACTIONS(394), + [anon_sym_AMP_AMP] = ACTIONS(388), + [anon_sym_PIPE_PIPE] = ACTIONS(388), + [anon_sym_LT_LT] = ACTIONS(390), + [anon_sym_GT_GT] = ACTIONS(390), + [anon_sym_PLUS_EQ] = ACTIONS(388), + [anon_sym_DASH_EQ] = ACTIONS(388), + [anon_sym_STAR_EQ] = ACTIONS(388), + [anon_sym_SLASH_EQ] = ACTIONS(388), + [anon_sym_PERCENT_EQ] = ACTIONS(388), + [anon_sym_CARET_EQ] = ACTIONS(388), + [anon_sym_AMP_EQ] = ACTIONS(388), + [anon_sym_PIPE_EQ] = ACTIONS(388), + [anon_sym_LT_LT_EQ] = ACTIONS(388), + [anon_sym_GT_GT_EQ] = ACTIONS(388), + [anon_sym_EQ] = ACTIONS(390), + [anon_sym_EQ_EQ] = ACTIONS(388), + [anon_sym_BANG_EQ] = ACTIONS(388), + [anon_sym_GT] = ACTIONS(390), + [anon_sym_LT] = ACTIONS(396), + [anon_sym_GT_EQ] = ACTIONS(388), + [anon_sym_LT_EQ] = ACTIONS(388), + [anon_sym_DOT] = ACTIONS(390), + [anon_sym_DOT_DOT] = ACTIONS(526), + [anon_sym_DOT_DOT_DOT] = ACTIONS(388), + [anon_sym_DOT_DOT_EQ] = ACTIONS(388), + [anon_sym_COLON_COLON] = ACTIONS(476), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_as] = ACTIONS(390), + [anon_sym_async] = ACTIONS(356), + [anon_sym_break] = ACTIONS(510), + [anon_sym_const] = ACTIONS(358), + [anon_sym_continue] = ACTIONS(512), + [anon_sym_default] = ACTIONS(480), + [anon_sym_for] = ACTIONS(362), + [anon_sym_gen] = ACTIONS(514), + [anon_sym_if] = ACTIONS(366), + [anon_sym_loop] = ACTIONS(368), + [anon_sym_match] = ACTIONS(370), + [anon_sym_return] = ACTIONS(516), + [anon_sym_static] = ACTIONS(518), + [anon_sym_union] = ACTIONS(480), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [anon_sym_yield] = ACTIONS(520), + [anon_sym_move] = ACTIONS(522), + [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(492), + [sym_super] = ACTIONS(494), + [sym_crate] = ACTIONS(494), + [sym_metavariable] = ACTIONS(496), + [sym__raw_string_literal_start] = ACTIONS(119), + [sym_float_literal] = ACTIONS(99), }, [STATE(58)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3056), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1650), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1591), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), + [sym_bracketed_type] = STATE(3752), + [sym_generic_function] = STATE(1492), + [sym_generic_type_with_turbofish] = STATE(3085), + [sym__expression_except_range] = STATE(1409), + [sym__expression] = STATE(1664), + [sym_macro_invocation] = STATE(1529), + [sym_scoped_identifier] = STATE(1604), + [sym_scoped_type_identifier_in_expression_position] = STATE(3335), + [sym_range_expression] = STATE(1505), + [sym_unary_expression] = STATE(1492), + [sym_try_expression] = STATE(1492), + [sym_reference_expression] = STATE(1492), + [sym_binary_expression] = STATE(1492), + [sym_assignment_expression] = STATE(1492), + [sym_compound_assignment_expr] = STATE(1492), + [sym_type_cast_expression] = STATE(1492), + [sym_return_expression] = STATE(1492), + [sym_yield_expression] = STATE(1492), + [sym_call_expression] = STATE(1492), + [sym_array_expression] = STATE(1492), + [sym_parenthesized_expression] = STATE(1492), + [sym_tuple_expression] = STATE(1492), + [sym_unit_expression] = STATE(1492), + [sym_struct_expression] = STATE(1492), + [sym_if_expression] = STATE(1492), + [sym_match_expression] = STATE(1492), + [sym_while_expression] = STATE(1492), + [sym_loop_expression] = STATE(1492), + [sym_for_expression] = STATE(1492), + [sym_const_block] = STATE(1492), + [sym_closure_expression] = STATE(1492), + [sym_closure_parameters] = STATE(221), + [sym_label] = STATE(3689), + [sym_break_expression] = STATE(1492), + [sym_continue_expression] = STATE(1492), + [sym_index_expression] = STATE(1492), + [sym_await_expression] = STATE(1492), + [sym_field_expression] = STATE(1412), + [sym_unsafe_block] = STATE(1492), + [sym_async_block] = STATE(1492), + [sym_gen_block] = STATE(1492), + [sym_try_block] = STATE(1492), + [sym_block] = STATE(1492), + [sym__literal] = STATE(1492), + [sym_string_literal] = STATE(1530), + [sym_raw_string_literal] = STATE(1530), + [sym_boolean_literal] = STATE(1530), [sym_line_comment] = STATE(58), [sym_block_comment] = STATE(58), - [sym_identifier] = ACTIONS(467), + [sym_identifier] = ACTIONS(470), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(375), - [anon_sym_LBRACE] = ACTIONS(375), - [anon_sym_PLUS] = ACTIONS(377), - [anon_sym_STAR] = ACTIONS(377), - [anon_sym_QMARK] = ACTIONS(375), - [anon_sym_u8] = ACTIONS(469), - [anon_sym_i8] = ACTIONS(469), - [anon_sym_u16] = ACTIONS(469), - [anon_sym_i16] = ACTIONS(469), - [anon_sym_u32] = ACTIONS(469), - [anon_sym_i32] = ACTIONS(469), - [anon_sym_u64] = ACTIONS(469), - [anon_sym_i64] = ACTIONS(469), - [anon_sym_u128] = ACTIONS(469), - [anon_sym_i128] = ACTIONS(469), - [anon_sym_isize] = ACTIONS(469), - [anon_sym_usize] = ACTIONS(469), - [anon_sym_f32] = ACTIONS(469), - [anon_sym_f64] = ACTIONS(469), - [anon_sym_bool] = ACTIONS(469), - [anon_sym_str] = ACTIONS(469), - [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(377), - [anon_sym_SLASH] = ACTIONS(377), - [anon_sym_PERCENT] = ACTIONS(377), - [anon_sym_CARET] = ACTIONS(377), - [anon_sym_BANG] = ACTIONS(503), - [anon_sym_AMP] = ACTIONS(377), - [anon_sym_PIPE] = ACTIONS(377), - [anon_sym_AMP_AMP] = ACTIONS(375), - [anon_sym_PIPE_PIPE] = ACTIONS(375), - [anon_sym_LT_LT] = ACTIONS(377), - [anon_sym_GT_GT] = ACTIONS(377), - [anon_sym_PLUS_EQ] = ACTIONS(375), - [anon_sym_DASH_EQ] = ACTIONS(375), - [anon_sym_STAR_EQ] = ACTIONS(375), - [anon_sym_SLASH_EQ] = ACTIONS(375), - [anon_sym_PERCENT_EQ] = ACTIONS(375), - [anon_sym_CARET_EQ] = ACTIONS(375), - [anon_sym_AMP_EQ] = ACTIONS(375), - [anon_sym_PIPE_EQ] = ACTIONS(375), - [anon_sym_LT_LT_EQ] = ACTIONS(375), - [anon_sym_GT_GT_EQ] = ACTIONS(375), - [anon_sym_EQ] = ACTIONS(377), - [anon_sym_EQ_EQ] = ACTIONS(375), - [anon_sym_BANG_EQ] = ACTIONS(375), - [anon_sym_GT] = ACTIONS(377), - [anon_sym_LT] = ACTIONS(377), - [anon_sym_GT_EQ] = ACTIONS(375), - [anon_sym_LT_EQ] = ACTIONS(375), - [anon_sym_DOT] = ACTIONS(377), - [anon_sym_DOT_DOT] = ACTIONS(377), - [anon_sym_DOT_DOT_DOT] = ACTIONS(375), - [anon_sym_DOT_DOT_EQ] = ACTIONS(375), - [anon_sym_COLON_COLON] = ACTIONS(473), - [anon_sym_SQUOTE] = ACTIONS(377), - [anon_sym_as] = ACTIONS(377), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(477), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(477), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(489), - [sym_super] = ACTIONS(491), - [sym_crate] = ACTIONS(491), - [sym_metavariable] = ACTIONS(493), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(348), + [anon_sym_PLUS] = ACTIONS(402), + [anon_sym_STAR] = ACTIONS(508), + [anon_sym_QMARK] = ACTIONS(400), + [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(508), + [anon_sym_SLASH] = ACTIONS(402), + [anon_sym_PERCENT] = ACTIONS(402), + [anon_sym_CARET] = ACTIONS(402), + [anon_sym_BANG] = ACTIONS(508), + [anon_sym_AMP] = ACTIONS(524), + [anon_sym_PIPE] = ACTIONS(394), + [anon_sym_AMP_AMP] = ACTIONS(400), + [anon_sym_PIPE_PIPE] = ACTIONS(400), + [anon_sym_LT_LT] = ACTIONS(402), + [anon_sym_GT_GT] = ACTIONS(402), + [anon_sym_PLUS_EQ] = ACTIONS(400), + [anon_sym_DASH_EQ] = ACTIONS(400), + [anon_sym_STAR_EQ] = ACTIONS(400), + [anon_sym_SLASH_EQ] = ACTIONS(400), + [anon_sym_PERCENT_EQ] = ACTIONS(400), + [anon_sym_CARET_EQ] = ACTIONS(400), + [anon_sym_AMP_EQ] = ACTIONS(400), + [anon_sym_PIPE_EQ] = ACTIONS(400), + [anon_sym_LT_LT_EQ] = ACTIONS(400), + [anon_sym_GT_GT_EQ] = ACTIONS(400), + [anon_sym_EQ] = ACTIONS(402), + [anon_sym_EQ_EQ] = ACTIONS(400), + [anon_sym_BANG_EQ] = ACTIONS(400), + [anon_sym_GT] = ACTIONS(402), + [anon_sym_LT] = ACTIONS(396), + [anon_sym_GT_EQ] = ACTIONS(400), + [anon_sym_LT_EQ] = ACTIONS(400), + [anon_sym_DOT] = ACTIONS(402), + [anon_sym_DOT_DOT] = ACTIONS(526), + [anon_sym_DOT_DOT_DOT] = ACTIONS(400), + [anon_sym_DOT_DOT_EQ] = ACTIONS(400), + [anon_sym_COLON_COLON] = ACTIONS(476), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_as] = ACTIONS(402), + [anon_sym_async] = ACTIONS(356), + [anon_sym_break] = ACTIONS(510), + [anon_sym_const] = ACTIONS(358), + [anon_sym_continue] = ACTIONS(512), + [anon_sym_default] = ACTIONS(480), + [anon_sym_for] = ACTIONS(362), + [anon_sym_gen] = ACTIONS(514), + [anon_sym_if] = ACTIONS(366), + [anon_sym_loop] = ACTIONS(368), + [anon_sym_match] = ACTIONS(370), + [anon_sym_return] = ACTIONS(516), + [anon_sym_static] = ACTIONS(518), + [anon_sym_union] = ACTIONS(480), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [anon_sym_yield] = ACTIONS(520), + [anon_sym_move] = ACTIONS(522), + [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(492), + [sym_super] = ACTIONS(494), + [sym_crate] = ACTIONS(494), + [sym_metavariable] = ACTIONS(496), + [sym__raw_string_literal_start] = ACTIONS(119), + [sym_float_literal] = ACTIONS(99), }, [STATE(59)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3056), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1848), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1591), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(244), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), + [sym_bracketed_type] = STATE(3752), + [sym_generic_function] = STATE(1492), + [sym_generic_type_with_turbofish] = STATE(3085), + [sym__expression_except_range] = STATE(1409), + [sym__expression] = STATE(1661), + [sym_macro_invocation] = STATE(1529), + [sym_scoped_identifier] = STATE(1604), + [sym_scoped_type_identifier_in_expression_position] = STATE(3335), + [sym_range_expression] = STATE(1505), + [sym_unary_expression] = STATE(1492), + [sym_try_expression] = STATE(1492), + [sym_reference_expression] = STATE(1492), + [sym_binary_expression] = STATE(1492), + [sym_assignment_expression] = STATE(1492), + [sym_compound_assignment_expr] = STATE(1492), + [sym_type_cast_expression] = STATE(1492), + [sym_return_expression] = STATE(1492), + [sym_yield_expression] = STATE(1492), + [sym_call_expression] = STATE(1492), + [sym_array_expression] = STATE(1492), + [sym_parenthesized_expression] = STATE(1492), + [sym_tuple_expression] = STATE(1492), + [sym_unit_expression] = STATE(1492), + [sym_struct_expression] = STATE(1492), + [sym_if_expression] = STATE(1492), + [sym_match_expression] = STATE(1492), + [sym_while_expression] = STATE(1492), + [sym_loop_expression] = STATE(1492), + [sym_for_expression] = STATE(1492), + [sym_const_block] = STATE(1492), + [sym_closure_expression] = STATE(1492), + [sym_closure_parameters] = STATE(221), + [sym_label] = STATE(3689), + [sym_break_expression] = STATE(1492), + [sym_continue_expression] = STATE(1492), + [sym_index_expression] = STATE(1492), + [sym_await_expression] = STATE(1492), + [sym_field_expression] = STATE(1412), + [sym_unsafe_block] = STATE(1492), + [sym_async_block] = STATE(1492), + [sym_gen_block] = STATE(1492), + [sym_try_block] = STATE(1492), + [sym_block] = STATE(1492), + [sym__literal] = STATE(1492), + [sym_string_literal] = STATE(1530), + [sym_raw_string_literal] = STATE(1530), + [sym_boolean_literal] = STATE(1530), [sym_line_comment] = STATE(59), [sym_block_comment] = STATE(59), - [sym_identifier] = ACTIONS(467), + [sym_identifier] = ACTIONS(470), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_PLUS] = ACTIONS(397), - [anon_sym_STAR] = ACTIONS(471), - [anon_sym_QMARK] = ACTIONS(395), - [anon_sym_u8] = ACTIONS(469), - [anon_sym_i8] = ACTIONS(469), - [anon_sym_u16] = ACTIONS(469), - [anon_sym_i16] = ACTIONS(469), - [anon_sym_u32] = ACTIONS(469), - [anon_sym_i32] = ACTIONS(469), - [anon_sym_u64] = ACTIONS(469), - [anon_sym_i64] = ACTIONS(469), - [anon_sym_u128] = ACTIONS(469), - [anon_sym_i128] = ACTIONS(469), - [anon_sym_isize] = ACTIONS(469), - [anon_sym_usize] = ACTIONS(469), - [anon_sym_f32] = ACTIONS(469), - [anon_sym_f64] = ACTIONS(469), - [anon_sym_bool] = ACTIONS(469), - [anon_sym_str] = ACTIONS(469), - [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(471), - [anon_sym_SLASH] = ACTIONS(397), - [anon_sym_PERCENT] = ACTIONS(397), - [anon_sym_CARET] = ACTIONS(397), - [anon_sym_BANG] = ACTIONS(471), - [anon_sym_AMP] = ACTIONS(523), - [anon_sym_PIPE] = ACTIONS(389), - [anon_sym_AMP_AMP] = ACTIONS(395), - [anon_sym_PIPE_PIPE] = ACTIONS(395), - [anon_sym_LT_LT] = ACTIONS(397), - [anon_sym_GT_GT] = ACTIONS(397), - [anon_sym_PLUS_EQ] = ACTIONS(395), - [anon_sym_DASH_EQ] = ACTIONS(395), - [anon_sym_STAR_EQ] = ACTIONS(395), - [anon_sym_SLASH_EQ] = ACTIONS(395), - [anon_sym_PERCENT_EQ] = ACTIONS(395), - [anon_sym_CARET_EQ] = ACTIONS(395), - [anon_sym_AMP_EQ] = ACTIONS(395), - [anon_sym_PIPE_EQ] = ACTIONS(395), - [anon_sym_LT_LT_EQ] = ACTIONS(395), - [anon_sym_GT_GT_EQ] = ACTIONS(395), - [anon_sym_EQ] = ACTIONS(397), - [anon_sym_EQ_EQ] = ACTIONS(395), - [anon_sym_BANG_EQ] = ACTIONS(395), - [anon_sym_GT] = ACTIONS(397), - [anon_sym_LT] = ACTIONS(391), - [anon_sym_GT_EQ] = ACTIONS(395), - [anon_sym_LT_EQ] = ACTIONS(395), - [anon_sym_DOT] = ACTIONS(397), - [anon_sym_DOT_DOT] = ACTIONS(525), - [anon_sym_DOT_DOT_DOT] = ACTIONS(395), - [anon_sym_DOT_DOT_EQ] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(473), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(397), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(475), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(477), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(479), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(481), - [anon_sym_static] = ACTIONS(483), - [anon_sym_union] = ACTIONS(477), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(485), - [anon_sym_move] = ACTIONS(487), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(489), - [sym_super] = ACTIONS(491), - [sym_crate] = ACTIONS(491), - [sym_metavariable] = ACTIONS(493), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [anon_sym_LBRACK] = ACTIONS(380), + [anon_sym_LBRACE] = ACTIONS(380), + [anon_sym_PLUS] = ACTIONS(382), + [anon_sym_STAR] = ACTIONS(382), + [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(382), + [anon_sym_SLASH] = ACTIONS(382), + [anon_sym_PERCENT] = ACTIONS(382), + [anon_sym_CARET] = ACTIONS(382), + [anon_sym_BANG] = ACTIONS(508), + [anon_sym_AMP] = ACTIONS(382), + [anon_sym_PIPE] = ACTIONS(382), + [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(382), + [anon_sym_GT_EQ] = ACTIONS(380), + [anon_sym_LT_EQ] = ACTIONS(380), + [anon_sym_DOT] = ACTIONS(382), + [anon_sym_DOT_DOT] = ACTIONS(382), + [anon_sym_DOT_DOT_DOT] = ACTIONS(380), + [anon_sym_DOT_DOT_EQ] = ACTIONS(380), + [anon_sym_COLON_COLON] = ACTIONS(476), + [anon_sym_SQUOTE] = ACTIONS(382), + [anon_sym_as] = ACTIONS(382), + [anon_sym_async] = ACTIONS(356), + [anon_sym_break] = ACTIONS(510), + [anon_sym_const] = ACTIONS(358), + [anon_sym_continue] = ACTIONS(512), + [anon_sym_default] = ACTIONS(480), + [anon_sym_for] = ACTIONS(362), + [anon_sym_gen] = ACTIONS(514), + [anon_sym_if] = ACTIONS(366), + [anon_sym_loop] = ACTIONS(368), + [anon_sym_match] = ACTIONS(370), + [anon_sym_return] = ACTIONS(516), + [anon_sym_static] = ACTIONS(518), + [anon_sym_union] = ACTIONS(480), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [anon_sym_yield] = ACTIONS(520), + [anon_sym_move] = ACTIONS(522), + [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(492), + [sym_super] = ACTIONS(494), + [sym_crate] = ACTIONS(494), + [sym_metavariable] = ACTIONS(496), + [sym__raw_string_literal_start] = ACTIONS(119), + [sym_float_literal] = ACTIONS(99), }, [STATE(60)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3056), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1849), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1591), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(244), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), + [sym_bracketed_type] = STATE(3752), + [sym_generic_function] = STATE(1492), + [sym_generic_type_with_turbofish] = STATE(3085), + [sym__expression_except_range] = STATE(1409), + [sym__expression] = STATE(1885), + [sym_macro_invocation] = STATE(1529), + [sym_scoped_identifier] = STATE(1604), + [sym_scoped_type_identifier_in_expression_position] = STATE(3335), + [sym_range_expression] = STATE(1505), + [sym_unary_expression] = STATE(1492), + [sym_try_expression] = STATE(1492), + [sym_reference_expression] = STATE(1492), + [sym_binary_expression] = STATE(1492), + [sym_assignment_expression] = STATE(1492), + [sym_compound_assignment_expr] = STATE(1492), + [sym_type_cast_expression] = STATE(1492), + [sym_return_expression] = STATE(1492), + [sym_yield_expression] = STATE(1492), + [sym_call_expression] = STATE(1492), + [sym_array_expression] = STATE(1492), + [sym_parenthesized_expression] = STATE(1492), + [sym_tuple_expression] = STATE(1492), + [sym_unit_expression] = STATE(1492), + [sym_struct_expression] = STATE(1492), + [sym_if_expression] = STATE(1492), + [sym_match_expression] = STATE(1492), + [sym_while_expression] = STATE(1492), + [sym_loop_expression] = STATE(1492), + [sym_for_expression] = STATE(1492), + [sym_const_block] = STATE(1492), + [sym_closure_expression] = STATE(1492), + [sym_closure_parameters] = STATE(235), + [sym_label] = STATE(44), + [sym_break_expression] = STATE(1492), + [sym_continue_expression] = STATE(1492), + [sym_index_expression] = STATE(1492), + [sym_await_expression] = STATE(1492), + [sym_field_expression] = STATE(1412), + [sym_unsafe_block] = STATE(1492), + [sym_async_block] = STATE(1492), + [sym_gen_block] = STATE(1492), + [sym_try_block] = STATE(1492), + [sym_block] = STATE(1492), + [sym__literal] = STATE(1492), + [sym_string_literal] = STATE(1530), + [sym_raw_string_literal] = STATE(1530), + [sym_boolean_literal] = STATE(1530), [sym_line_comment] = STATE(60), [sym_block_comment] = STATE(60), - [sym_identifier] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_PLUS] = ACTIONS(385), - [anon_sym_STAR] = ACTIONS(471), - [anon_sym_QMARK] = ACTIONS(383), - [anon_sym_u8] = ACTIONS(469), - [anon_sym_i8] = ACTIONS(469), - [anon_sym_u16] = ACTIONS(469), - [anon_sym_i16] = ACTIONS(469), - [anon_sym_u32] = ACTIONS(469), - [anon_sym_i32] = ACTIONS(469), - [anon_sym_u64] = ACTIONS(469), - [anon_sym_i64] = ACTIONS(469), - [anon_sym_u128] = ACTIONS(469), - [anon_sym_i128] = ACTIONS(469), - [anon_sym_isize] = ACTIONS(469), - [anon_sym_usize] = ACTIONS(469), - [anon_sym_f32] = ACTIONS(469), - [anon_sym_f64] = ACTIONS(469), - [anon_sym_bool] = ACTIONS(469), - [anon_sym_str] = ACTIONS(469), - [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(471), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_PERCENT] = ACTIONS(385), - [anon_sym_CARET] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(471), - [anon_sym_AMP] = ACTIONS(523), - [anon_sym_PIPE] = ACTIONS(389), - [anon_sym_AMP_AMP] = ACTIONS(383), - [anon_sym_PIPE_PIPE] = ACTIONS(383), - [anon_sym_LT_LT] = ACTIONS(385), - [anon_sym_GT_GT] = ACTIONS(385), - [anon_sym_PLUS_EQ] = ACTIONS(383), - [anon_sym_DASH_EQ] = ACTIONS(383), - [anon_sym_STAR_EQ] = ACTIONS(383), - [anon_sym_SLASH_EQ] = ACTIONS(383), - [anon_sym_PERCENT_EQ] = ACTIONS(383), - [anon_sym_CARET_EQ] = ACTIONS(383), - [anon_sym_AMP_EQ] = ACTIONS(383), - [anon_sym_PIPE_EQ] = ACTIONS(383), - [anon_sym_LT_LT_EQ] = ACTIONS(383), - [anon_sym_GT_GT_EQ] = ACTIONS(383), - [anon_sym_EQ] = ACTIONS(385), - [anon_sym_EQ_EQ] = ACTIONS(383), - [anon_sym_BANG_EQ] = ACTIONS(383), - [anon_sym_GT] = ACTIONS(385), - [anon_sym_LT] = ACTIONS(391), - [anon_sym_GT_EQ] = ACTIONS(383), - [anon_sym_LT_EQ] = ACTIONS(383), - [anon_sym_DOT] = ACTIONS(385), - [anon_sym_DOT_DOT] = ACTIONS(525), - [anon_sym_DOT_DOT_DOT] = ACTIONS(383), - [anon_sym_DOT_DOT_EQ] = ACTIONS(383), - [anon_sym_COLON_COLON] = ACTIONS(473), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(385), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(475), - [anon_sym_const] = ACTIONS(353), + [sym_identifier] = ACTIONS(470), + [anon_sym_LPAREN] = ACTIONS(404), + [anon_sym_LBRACK] = ACTIONS(404), + [anon_sym_LBRACE] = ACTIONS(404), + [anon_sym_PLUS] = ACTIONS(406), + [anon_sym_STAR] = ACTIONS(406), + [anon_sym_QMARK] = ACTIONS(404), + [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(406), + [anon_sym_SLASH] = ACTIONS(406), + [anon_sym_PERCENT] = ACTIONS(406), + [anon_sym_CARET] = ACTIONS(406), + [anon_sym_BANG] = ACTIONS(474), + [anon_sym_AMP] = ACTIONS(406), + [anon_sym_PIPE] = ACTIONS(406), + [anon_sym_AMP_AMP] = ACTIONS(404), + [anon_sym_PIPE_PIPE] = ACTIONS(404), + [anon_sym_LT_LT] = ACTIONS(406), + [anon_sym_GT_GT] = ACTIONS(406), + [anon_sym_PLUS_EQ] = ACTIONS(404), + [anon_sym_DASH_EQ] = ACTIONS(404), + [anon_sym_STAR_EQ] = ACTIONS(404), + [anon_sym_SLASH_EQ] = ACTIONS(404), + [anon_sym_PERCENT_EQ] = ACTIONS(404), + [anon_sym_CARET_EQ] = ACTIONS(404), + [anon_sym_AMP_EQ] = ACTIONS(404), + [anon_sym_PIPE_EQ] = ACTIONS(404), + [anon_sym_LT_LT_EQ] = ACTIONS(404), + [anon_sym_GT_GT_EQ] = ACTIONS(404), + [anon_sym_EQ] = ACTIONS(406), + [anon_sym_EQ_EQ] = ACTIONS(404), + [anon_sym_BANG_EQ] = ACTIONS(404), + [anon_sym_GT] = ACTIONS(406), + [anon_sym_LT] = ACTIONS(406), + [anon_sym_GT_EQ] = ACTIONS(404), + [anon_sym_LT_EQ] = ACTIONS(404), + [anon_sym_DOT] = ACTIONS(406), + [anon_sym_DOT_DOT] = ACTIONS(406), + [anon_sym_DOT_DOT_DOT] = ACTIONS(404), + [anon_sym_DOT_DOT_EQ] = ACTIONS(404), + [anon_sym_COLON_COLON] = ACTIONS(476), + [anon_sym_SQUOTE] = ACTIONS(408), + [anon_sym_as] = ACTIONS(406), + [anon_sym_async] = ACTIONS(356), + [anon_sym_break] = ACTIONS(478), + [anon_sym_const] = ACTIONS(358), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(477), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(479), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(481), - [anon_sym_static] = ACTIONS(483), - [anon_sym_union] = ACTIONS(477), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(485), - [anon_sym_move] = ACTIONS(487), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(489), - [sym_super] = ACTIONS(491), - [sym_crate] = ACTIONS(491), - [sym_metavariable] = ACTIONS(493), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [anon_sym_default] = ACTIONS(480), + [anon_sym_for] = ACTIONS(362), + [anon_sym_gen] = ACTIONS(482), + [anon_sym_if] = ACTIONS(366), + [anon_sym_loop] = ACTIONS(368), + [anon_sym_match] = ACTIONS(370), + [anon_sym_return] = ACTIONS(484), + [anon_sym_static] = ACTIONS(486), + [anon_sym_union] = ACTIONS(480), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [anon_sym_yield] = ACTIONS(488), + [anon_sym_move] = ACTIONS(490), + [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(492), + [sym_super] = ACTIONS(494), + [sym_crate] = ACTIONS(494), + [sym_metavariable] = ACTIONS(496), + [sym__raw_string_literal_start] = ACTIONS(119), + [sym_float_literal] = ACTIONS(99), }, [STATE(61)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3056), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1668), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1591), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), + [sym_bracketed_type] = STATE(3752), + [sym_generic_function] = STATE(1492), + [sym_generic_type_with_turbofish] = STATE(3085), + [sym__expression_except_range] = STATE(1409), + [sym__expression] = STATE(1887), + [sym_macro_invocation] = STATE(1529), + [sym_scoped_identifier] = STATE(1604), + [sym_scoped_type_identifier_in_expression_position] = STATE(3335), + [sym_range_expression] = STATE(1505), + [sym_unary_expression] = STATE(1492), + [sym_try_expression] = STATE(1492), + [sym_reference_expression] = STATE(1492), + [sym_binary_expression] = STATE(1492), + [sym_assignment_expression] = STATE(1492), + [sym_compound_assignment_expr] = STATE(1492), + [sym_type_cast_expression] = STATE(1492), + [sym_return_expression] = STATE(1492), + [sym_yield_expression] = STATE(1492), + [sym_call_expression] = STATE(1492), + [sym_array_expression] = STATE(1492), + [sym_parenthesized_expression] = STATE(1492), + [sym_tuple_expression] = STATE(1492), + [sym_unit_expression] = STATE(1492), + [sym_struct_expression] = STATE(1492), + [sym_if_expression] = STATE(1492), + [sym_match_expression] = STATE(1492), + [sym_while_expression] = STATE(1492), + [sym_loop_expression] = STATE(1492), + [sym_for_expression] = STATE(1492), + [sym_const_block] = STATE(1492), + [sym_closure_expression] = STATE(1492), + [sym_closure_parameters] = STATE(235), + [sym_label] = STATE(3689), + [sym_break_expression] = STATE(1492), + [sym_continue_expression] = STATE(1492), + [sym_index_expression] = STATE(1492), + [sym_await_expression] = STATE(1492), + [sym_field_expression] = STATE(1412), + [sym_unsafe_block] = STATE(1492), + [sym_async_block] = STATE(1492), + [sym_gen_block] = STATE(1492), + [sym_try_block] = STATE(1492), + [sym_block] = STATE(1492), + [sym__literal] = STATE(1492), + [sym_string_literal] = STATE(1530), + [sym_raw_string_literal] = STATE(1530), + [sym_boolean_literal] = STATE(1530), [sym_line_comment] = STATE(61), [sym_block_comment] = STATE(61), - [sym_identifier] = ACTIONS(467), + [sym_identifier] = ACTIONS(470), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(379), - [anon_sym_LBRACE] = ACTIONS(379), - [anon_sym_PLUS] = ACTIONS(381), - [anon_sym_STAR] = ACTIONS(381), - [anon_sym_QMARK] = ACTIONS(379), - [anon_sym_u8] = ACTIONS(469), - [anon_sym_i8] = ACTIONS(469), - [anon_sym_u16] = ACTIONS(469), - [anon_sym_i16] = ACTIONS(469), - [anon_sym_u32] = ACTIONS(469), - [anon_sym_i32] = ACTIONS(469), - [anon_sym_u64] = ACTIONS(469), - [anon_sym_i64] = ACTIONS(469), - [anon_sym_u128] = ACTIONS(469), - [anon_sym_i128] = ACTIONS(469), - [anon_sym_isize] = ACTIONS(469), - [anon_sym_usize] = ACTIONS(469), - [anon_sym_f32] = ACTIONS(469), - [anon_sym_f64] = ACTIONS(469), - [anon_sym_bool] = ACTIONS(469), - [anon_sym_str] = ACTIONS(469), - [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(381), - [anon_sym_SLASH] = ACTIONS(381), - [anon_sym_PERCENT] = ACTIONS(381), - [anon_sym_CARET] = ACTIONS(381), - [anon_sym_BANG] = ACTIONS(503), - [anon_sym_AMP] = ACTIONS(381), - [anon_sym_PIPE] = ACTIONS(381), - [anon_sym_AMP_AMP] = ACTIONS(379), - [anon_sym_PIPE_PIPE] = ACTIONS(379), - [anon_sym_LT_LT] = ACTIONS(381), - [anon_sym_GT_GT] = ACTIONS(381), - [anon_sym_PLUS_EQ] = ACTIONS(379), - [anon_sym_DASH_EQ] = ACTIONS(379), - [anon_sym_STAR_EQ] = ACTIONS(379), - [anon_sym_SLASH_EQ] = ACTIONS(379), - [anon_sym_PERCENT_EQ] = ACTIONS(379), - [anon_sym_CARET_EQ] = ACTIONS(379), - [anon_sym_AMP_EQ] = ACTIONS(379), - [anon_sym_PIPE_EQ] = ACTIONS(379), - [anon_sym_LT_LT_EQ] = ACTIONS(379), - [anon_sym_GT_GT_EQ] = ACTIONS(379), - [anon_sym_EQ] = ACTIONS(381), - [anon_sym_EQ_EQ] = ACTIONS(379), - [anon_sym_BANG_EQ] = ACTIONS(379), - [anon_sym_GT] = ACTIONS(381), - [anon_sym_LT] = ACTIONS(381), - [anon_sym_GT_EQ] = ACTIONS(379), - [anon_sym_LT_EQ] = ACTIONS(379), - [anon_sym_DOT] = ACTIONS(381), - [anon_sym_DOT_DOT] = ACTIONS(381), - [anon_sym_DOT_DOT_DOT] = ACTIONS(379), - [anon_sym_DOT_DOT_EQ] = ACTIONS(379), - [anon_sym_COLON_COLON] = ACTIONS(473), - [anon_sym_SQUOTE] = ACTIONS(381), - [anon_sym_as] = ACTIONS(381), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(477), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(477), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(489), - [sym_super] = ACTIONS(491), - [sym_crate] = ACTIONS(491), - [sym_metavariable] = ACTIONS(493), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(348), + [anon_sym_PLUS] = ACTIONS(390), + [anon_sym_STAR] = ACTIONS(474), + [anon_sym_QMARK] = ACTIONS(388), + [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(390), + [anon_sym_PERCENT] = ACTIONS(390), + [anon_sym_CARET] = ACTIONS(390), + [anon_sym_BANG] = ACTIONS(474), + [anon_sym_AMP] = ACTIONS(528), + [anon_sym_PIPE] = ACTIONS(394), + [anon_sym_AMP_AMP] = ACTIONS(388), + [anon_sym_PIPE_PIPE] = ACTIONS(388), + [anon_sym_LT_LT] = ACTIONS(390), + [anon_sym_GT_GT] = ACTIONS(390), + [anon_sym_PLUS_EQ] = ACTIONS(388), + [anon_sym_DASH_EQ] = ACTIONS(388), + [anon_sym_STAR_EQ] = ACTIONS(388), + [anon_sym_SLASH_EQ] = ACTIONS(388), + [anon_sym_PERCENT_EQ] = ACTIONS(388), + [anon_sym_CARET_EQ] = ACTIONS(388), + [anon_sym_AMP_EQ] = ACTIONS(388), + [anon_sym_PIPE_EQ] = ACTIONS(388), + [anon_sym_LT_LT_EQ] = ACTIONS(388), + [anon_sym_GT_GT_EQ] = ACTIONS(388), + [anon_sym_EQ] = ACTIONS(390), + [anon_sym_EQ_EQ] = ACTIONS(388), + [anon_sym_BANG_EQ] = ACTIONS(388), + [anon_sym_GT] = ACTIONS(390), + [anon_sym_LT] = ACTIONS(396), + [anon_sym_GT_EQ] = ACTIONS(388), + [anon_sym_LT_EQ] = ACTIONS(388), + [anon_sym_DOT] = ACTIONS(390), + [anon_sym_DOT_DOT] = ACTIONS(530), + [anon_sym_DOT_DOT_DOT] = ACTIONS(388), + [anon_sym_DOT_DOT_EQ] = ACTIONS(388), + [anon_sym_COLON_COLON] = ACTIONS(476), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_as] = ACTIONS(390), + [anon_sym_async] = ACTIONS(356), + [anon_sym_break] = ACTIONS(478), + [anon_sym_const] = ACTIONS(358), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(480), + [anon_sym_for] = ACTIONS(362), + [anon_sym_gen] = ACTIONS(482), + [anon_sym_if] = ACTIONS(366), + [anon_sym_loop] = ACTIONS(368), + [anon_sym_match] = ACTIONS(370), + [anon_sym_return] = ACTIONS(484), + [anon_sym_static] = ACTIONS(486), + [anon_sym_union] = ACTIONS(480), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [anon_sym_yield] = ACTIONS(488), + [anon_sym_move] = ACTIONS(490), + [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(492), + [sym_super] = ACTIONS(494), + [sym_crate] = ACTIONS(494), + [sym_metavariable] = ACTIONS(496), + [sym__raw_string_literal_start] = ACTIONS(119), + [sym_float_literal] = ACTIONS(99), }, [STATE(62)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3056), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1845), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1591), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(244), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), + [sym_bracketed_type] = STATE(3752), + [sym_generic_function] = STATE(1492), + [sym_generic_type_with_turbofish] = STATE(3085), + [sym__expression_except_range] = STATE(1409), + [sym__expression] = STATE(1888), + [sym_macro_invocation] = STATE(1529), + [sym_scoped_identifier] = STATE(1604), + [sym_scoped_type_identifier_in_expression_position] = STATE(3335), + [sym_range_expression] = STATE(1505), + [sym_unary_expression] = STATE(1492), + [sym_try_expression] = STATE(1492), + [sym_reference_expression] = STATE(1492), + [sym_binary_expression] = STATE(1492), + [sym_assignment_expression] = STATE(1492), + [sym_compound_assignment_expr] = STATE(1492), + [sym_type_cast_expression] = STATE(1492), + [sym_return_expression] = STATE(1492), + [sym_yield_expression] = STATE(1492), + [sym_call_expression] = STATE(1492), + [sym_array_expression] = STATE(1492), + [sym_parenthesized_expression] = STATE(1492), + [sym_tuple_expression] = STATE(1492), + [sym_unit_expression] = STATE(1492), + [sym_struct_expression] = STATE(1492), + [sym_if_expression] = STATE(1492), + [sym_match_expression] = STATE(1492), + [sym_while_expression] = STATE(1492), + [sym_loop_expression] = STATE(1492), + [sym_for_expression] = STATE(1492), + [sym_const_block] = STATE(1492), + [sym_closure_expression] = STATE(1492), + [sym_closure_parameters] = STATE(235), + [sym_label] = STATE(3689), + [sym_break_expression] = STATE(1492), + [sym_continue_expression] = STATE(1492), + [sym_index_expression] = STATE(1492), + [sym_await_expression] = STATE(1492), + [sym_field_expression] = STATE(1412), + [sym_unsafe_block] = STATE(1492), + [sym_async_block] = STATE(1492), + [sym_gen_block] = STATE(1492), + [sym_try_block] = STATE(1492), + [sym_block] = STATE(1492), + [sym__literal] = STATE(1492), + [sym_string_literal] = STATE(1530), + [sym_raw_string_literal] = STATE(1530), + [sym_boolean_literal] = STATE(1530), [sym_line_comment] = STATE(62), [sym_block_comment] = STATE(62), - [sym_identifier] = ACTIONS(467), + [sym_identifier] = ACTIONS(470), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(375), - [anon_sym_LBRACE] = ACTIONS(375), - [anon_sym_PLUS] = ACTIONS(377), - [anon_sym_STAR] = ACTIONS(377), - [anon_sym_QMARK] = ACTIONS(375), - [anon_sym_u8] = ACTIONS(469), - [anon_sym_i8] = ACTIONS(469), - [anon_sym_u16] = ACTIONS(469), - [anon_sym_i16] = ACTIONS(469), - [anon_sym_u32] = ACTIONS(469), - [anon_sym_i32] = ACTIONS(469), - [anon_sym_u64] = ACTIONS(469), - [anon_sym_i64] = ACTIONS(469), - [anon_sym_u128] = ACTIONS(469), - [anon_sym_i128] = ACTIONS(469), - [anon_sym_isize] = ACTIONS(469), - [anon_sym_usize] = ACTIONS(469), - [anon_sym_f32] = ACTIONS(469), - [anon_sym_f64] = ACTIONS(469), - [anon_sym_bool] = ACTIONS(469), - [anon_sym_str] = ACTIONS(469), - [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(377), - [anon_sym_SLASH] = ACTIONS(377), - [anon_sym_PERCENT] = ACTIONS(377), - [anon_sym_CARET] = ACTIONS(377), - [anon_sym_BANG] = ACTIONS(471), - [anon_sym_AMP] = ACTIONS(377), - [anon_sym_PIPE] = ACTIONS(377), - [anon_sym_AMP_AMP] = ACTIONS(375), - [anon_sym_PIPE_PIPE] = ACTIONS(375), - [anon_sym_LT_LT] = ACTIONS(377), - [anon_sym_GT_GT] = ACTIONS(377), - [anon_sym_PLUS_EQ] = ACTIONS(375), - [anon_sym_DASH_EQ] = ACTIONS(375), - [anon_sym_STAR_EQ] = ACTIONS(375), - [anon_sym_SLASH_EQ] = ACTIONS(375), - [anon_sym_PERCENT_EQ] = ACTIONS(375), - [anon_sym_CARET_EQ] = ACTIONS(375), - [anon_sym_AMP_EQ] = ACTIONS(375), - [anon_sym_PIPE_EQ] = ACTIONS(375), - [anon_sym_LT_LT_EQ] = ACTIONS(375), - [anon_sym_GT_GT_EQ] = ACTIONS(375), - [anon_sym_EQ] = ACTIONS(377), - [anon_sym_EQ_EQ] = ACTIONS(375), - [anon_sym_BANG_EQ] = ACTIONS(375), - [anon_sym_GT] = ACTIONS(377), - [anon_sym_LT] = ACTIONS(377), - [anon_sym_GT_EQ] = ACTIONS(375), - [anon_sym_LT_EQ] = ACTIONS(375), - [anon_sym_DOT] = ACTIONS(377), - [anon_sym_DOT_DOT] = ACTIONS(377), - [anon_sym_DOT_DOT_DOT] = ACTIONS(375), - [anon_sym_DOT_DOT_EQ] = ACTIONS(375), - [anon_sym_COLON_COLON] = ACTIONS(473), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(348), + [anon_sym_PLUS] = ACTIONS(402), + [anon_sym_STAR] = ACTIONS(474), + [anon_sym_QMARK] = ACTIONS(400), + [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(402), + [anon_sym_PERCENT] = ACTIONS(402), + [anon_sym_CARET] = ACTIONS(402), + [anon_sym_BANG] = ACTIONS(474), + [anon_sym_AMP] = ACTIONS(528), + [anon_sym_PIPE] = ACTIONS(394), + [anon_sym_AMP_AMP] = ACTIONS(400), + [anon_sym_PIPE_PIPE] = ACTIONS(400), + [anon_sym_LT_LT] = ACTIONS(402), + [anon_sym_GT_GT] = ACTIONS(402), + [anon_sym_PLUS_EQ] = ACTIONS(400), + [anon_sym_DASH_EQ] = ACTIONS(400), + [anon_sym_STAR_EQ] = ACTIONS(400), + [anon_sym_SLASH_EQ] = ACTIONS(400), + [anon_sym_PERCENT_EQ] = ACTIONS(400), + [anon_sym_CARET_EQ] = ACTIONS(400), + [anon_sym_AMP_EQ] = ACTIONS(400), + [anon_sym_PIPE_EQ] = ACTIONS(400), + [anon_sym_LT_LT_EQ] = ACTIONS(400), + [anon_sym_GT_GT_EQ] = ACTIONS(400), + [anon_sym_EQ] = ACTIONS(402), + [anon_sym_EQ_EQ] = ACTIONS(400), + [anon_sym_BANG_EQ] = ACTIONS(400), + [anon_sym_GT] = ACTIONS(402), + [anon_sym_LT] = ACTIONS(396), + [anon_sym_GT_EQ] = ACTIONS(400), + [anon_sym_LT_EQ] = ACTIONS(400), + [anon_sym_DOT] = ACTIONS(402), + [anon_sym_DOT_DOT] = ACTIONS(530), + [anon_sym_DOT_DOT_DOT] = ACTIONS(400), + [anon_sym_DOT_DOT_EQ] = ACTIONS(400), + [anon_sym_COLON_COLON] = ACTIONS(476), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(377), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(475), - [anon_sym_const] = ACTIONS(353), + [anon_sym_as] = ACTIONS(402), + [anon_sym_async] = ACTIONS(356), + [anon_sym_break] = ACTIONS(478), + [anon_sym_const] = ACTIONS(358), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(477), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(479), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(481), - [anon_sym_static] = ACTIONS(483), - [anon_sym_union] = ACTIONS(477), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(485), - [anon_sym_move] = ACTIONS(487), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(489), - [sym_super] = ACTIONS(491), - [sym_crate] = ACTIONS(491), - [sym_metavariable] = ACTIONS(493), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [anon_sym_default] = ACTIONS(480), + [anon_sym_for] = ACTIONS(362), + [anon_sym_gen] = ACTIONS(482), + [anon_sym_if] = ACTIONS(366), + [anon_sym_loop] = ACTIONS(368), + [anon_sym_match] = ACTIONS(370), + [anon_sym_return] = ACTIONS(484), + [anon_sym_static] = ACTIONS(486), + [anon_sym_union] = ACTIONS(480), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [anon_sym_yield] = ACTIONS(488), + [anon_sym_move] = ACTIONS(490), + [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(492), + [sym_super] = ACTIONS(494), + [sym_crate] = ACTIONS(494), + [sym_metavariable] = ACTIONS(496), + [sym__raw_string_literal_start] = ACTIONS(119), + [sym_float_literal] = ACTIONS(99), }, [STATE(63)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3056), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1888), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1591), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(244), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), + [sym_bracketed_type] = STATE(3752), + [sym_generic_function] = STATE(1492), + [sym_generic_type_with_turbofish] = STATE(3085), + [sym__expression_except_range] = STATE(1409), + [sym__expression] = STATE(1666), + [sym_macro_invocation] = STATE(1529), + [sym_scoped_identifier] = STATE(1604), + [sym_scoped_type_identifier_in_expression_position] = STATE(3335), + [sym_range_expression] = STATE(1505), + [sym_unary_expression] = STATE(1492), + [sym_try_expression] = STATE(1492), + [sym_reference_expression] = STATE(1492), + [sym_binary_expression] = STATE(1492), + [sym_assignment_expression] = STATE(1492), + [sym_compound_assignment_expr] = STATE(1492), + [sym_type_cast_expression] = STATE(1492), + [sym_return_expression] = STATE(1492), + [sym_yield_expression] = STATE(1492), + [sym_call_expression] = STATE(1492), + [sym_array_expression] = STATE(1492), + [sym_parenthesized_expression] = STATE(1492), + [sym_tuple_expression] = STATE(1492), + [sym_unit_expression] = STATE(1492), + [sym_struct_expression] = STATE(1492), + [sym_if_expression] = STATE(1492), + [sym_match_expression] = STATE(1492), + [sym_while_expression] = STATE(1492), + [sym_loop_expression] = STATE(1492), + [sym_for_expression] = STATE(1492), + [sym_const_block] = STATE(1492), + [sym_closure_expression] = STATE(1492), + [sym_closure_parameters] = STATE(221), + [sym_label] = STATE(3689), + [sym_break_expression] = STATE(1492), + [sym_continue_expression] = STATE(1492), + [sym_index_expression] = STATE(1492), + [sym_await_expression] = STATE(1492), + [sym_field_expression] = STATE(1412), + [sym_unsafe_block] = STATE(1492), + [sym_async_block] = STATE(1492), + [sym_gen_block] = STATE(1492), + [sym_try_block] = STATE(1492), + [sym_block] = STATE(1492), + [sym__literal] = STATE(1492), + [sym_string_literal] = STATE(1530), + [sym_raw_string_literal] = STATE(1530), + [sym_boolean_literal] = STATE(1530), [sym_line_comment] = STATE(63), [sym_block_comment] = STATE(63), - [sym_identifier] = ACTIONS(467), + [sym_identifier] = ACTIONS(470), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(379), - [anon_sym_LBRACE] = ACTIONS(379), - [anon_sym_PLUS] = ACTIONS(381), - [anon_sym_STAR] = ACTIONS(381), - [anon_sym_QMARK] = ACTIONS(379), - [anon_sym_u8] = ACTIONS(469), - [anon_sym_i8] = ACTIONS(469), - [anon_sym_u16] = ACTIONS(469), - [anon_sym_i16] = ACTIONS(469), - [anon_sym_u32] = ACTIONS(469), - [anon_sym_i32] = ACTIONS(469), - [anon_sym_u64] = ACTIONS(469), - [anon_sym_i64] = ACTIONS(469), - [anon_sym_u128] = ACTIONS(469), - [anon_sym_i128] = ACTIONS(469), - [anon_sym_isize] = ACTIONS(469), - [anon_sym_usize] = ACTIONS(469), - [anon_sym_f32] = ACTIONS(469), - [anon_sym_f64] = ACTIONS(469), - [anon_sym_bool] = ACTIONS(469), - [anon_sym_str] = ACTIONS(469), - [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(381), - [anon_sym_SLASH] = ACTIONS(381), - [anon_sym_PERCENT] = ACTIONS(381), - [anon_sym_CARET] = ACTIONS(381), - [anon_sym_BANG] = ACTIONS(471), - [anon_sym_AMP] = ACTIONS(381), - [anon_sym_PIPE] = ACTIONS(381), - [anon_sym_AMP_AMP] = ACTIONS(379), - [anon_sym_PIPE_PIPE] = ACTIONS(379), - [anon_sym_LT_LT] = ACTIONS(381), - [anon_sym_GT_GT] = ACTIONS(381), - [anon_sym_PLUS_EQ] = ACTIONS(379), - [anon_sym_DASH_EQ] = ACTIONS(379), - [anon_sym_STAR_EQ] = ACTIONS(379), - [anon_sym_SLASH_EQ] = ACTIONS(379), - [anon_sym_PERCENT_EQ] = ACTIONS(379), - [anon_sym_CARET_EQ] = ACTIONS(379), - [anon_sym_AMP_EQ] = ACTIONS(379), - [anon_sym_PIPE_EQ] = ACTIONS(379), - [anon_sym_LT_LT_EQ] = ACTIONS(379), - [anon_sym_GT_GT_EQ] = ACTIONS(379), - [anon_sym_EQ] = ACTIONS(381), - [anon_sym_EQ_EQ] = ACTIONS(379), - [anon_sym_BANG_EQ] = ACTIONS(379), - [anon_sym_GT] = ACTIONS(381), - [anon_sym_LT] = ACTIONS(381), - [anon_sym_GT_EQ] = ACTIONS(379), - [anon_sym_LT_EQ] = ACTIONS(379), - [anon_sym_DOT] = ACTIONS(381), - [anon_sym_DOT_DOT] = ACTIONS(381), - [anon_sym_DOT_DOT_DOT] = ACTIONS(379), - [anon_sym_DOT_DOT_EQ] = ACTIONS(379), - [anon_sym_COLON_COLON] = ACTIONS(473), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(381), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(475), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(477), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(479), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(481), - [anon_sym_static] = ACTIONS(483), - [anon_sym_union] = ACTIONS(477), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(485), - [anon_sym_move] = ACTIONS(487), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(489), - [sym_super] = ACTIONS(491), - [sym_crate] = ACTIONS(491), - [sym_metavariable] = ACTIONS(493), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [anon_sym_LBRACK] = ACTIONS(384), + [anon_sym_LBRACE] = ACTIONS(384), + [anon_sym_PLUS] = ACTIONS(386), + [anon_sym_STAR] = ACTIONS(386), + [anon_sym_QMARK] = ACTIONS(384), + [anon_sym_u8] = ACTIONS(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(386), + [anon_sym_SLASH] = ACTIONS(386), + [anon_sym_PERCENT] = ACTIONS(386), + [anon_sym_CARET] = ACTIONS(386), + [anon_sym_BANG] = ACTIONS(508), + [anon_sym_AMP] = ACTIONS(386), + [anon_sym_PIPE] = ACTIONS(386), + [anon_sym_AMP_AMP] = ACTIONS(384), + [anon_sym_PIPE_PIPE] = ACTIONS(384), + [anon_sym_LT_LT] = ACTIONS(386), + [anon_sym_GT_GT] = ACTIONS(386), + [anon_sym_PLUS_EQ] = ACTIONS(384), + [anon_sym_DASH_EQ] = ACTIONS(384), + [anon_sym_STAR_EQ] = ACTIONS(384), + [anon_sym_SLASH_EQ] = ACTIONS(384), + [anon_sym_PERCENT_EQ] = ACTIONS(384), + [anon_sym_CARET_EQ] = ACTIONS(384), + [anon_sym_AMP_EQ] = ACTIONS(384), + [anon_sym_PIPE_EQ] = ACTIONS(384), + [anon_sym_LT_LT_EQ] = ACTIONS(384), + [anon_sym_GT_GT_EQ] = ACTIONS(384), + [anon_sym_EQ] = ACTIONS(386), + [anon_sym_EQ_EQ] = ACTIONS(384), + [anon_sym_BANG_EQ] = ACTIONS(384), + [anon_sym_GT] = ACTIONS(386), + [anon_sym_LT] = ACTIONS(386), + [anon_sym_GT_EQ] = ACTIONS(384), + [anon_sym_LT_EQ] = ACTIONS(384), + [anon_sym_DOT] = ACTIONS(386), + [anon_sym_DOT_DOT] = ACTIONS(386), + [anon_sym_DOT_DOT_DOT] = ACTIONS(384), + [anon_sym_DOT_DOT_EQ] = ACTIONS(384), + [anon_sym_COLON_COLON] = ACTIONS(476), + [anon_sym_SQUOTE] = ACTIONS(386), + [anon_sym_as] = ACTIONS(386), + [anon_sym_async] = ACTIONS(356), + [anon_sym_break] = ACTIONS(510), + [anon_sym_const] = ACTIONS(358), + [anon_sym_continue] = ACTIONS(512), + [anon_sym_default] = ACTIONS(480), + [anon_sym_for] = ACTIONS(362), + [anon_sym_gen] = ACTIONS(514), + [anon_sym_if] = ACTIONS(366), + [anon_sym_loop] = ACTIONS(368), + [anon_sym_match] = ACTIONS(370), + [anon_sym_return] = ACTIONS(516), + [anon_sym_static] = ACTIONS(518), + [anon_sym_union] = ACTIONS(480), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [anon_sym_yield] = ACTIONS(520), + [anon_sym_move] = ACTIONS(522), + [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(492), + [sym_super] = ACTIONS(494), + [sym_crate] = ACTIONS(494), + [sym_metavariable] = ACTIONS(496), + [sym__raw_string_literal_start] = ACTIONS(119), + [sym_float_literal] = ACTIONS(99), }, [STATE(64)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3056), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1668), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1591), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), + [sym_bracketed_type] = STATE(3752), + [sym_generic_function] = STATE(1492), + [sym_generic_type_with_turbofish] = STATE(3085), + [sym__expression_except_range] = STATE(1409), + [sym__expression] = STATE(1666), + [sym_macro_invocation] = STATE(1529), + [sym_scoped_identifier] = STATE(1604), + [sym_scoped_type_identifier_in_expression_position] = STATE(3335), + [sym_range_expression] = STATE(1505), + [sym_unary_expression] = STATE(1492), + [sym_try_expression] = STATE(1492), + [sym_reference_expression] = STATE(1492), + [sym_binary_expression] = STATE(1492), + [sym_assignment_expression] = STATE(1492), + [sym_compound_assignment_expr] = STATE(1492), + [sym_type_cast_expression] = STATE(1492), + [sym_return_expression] = STATE(1492), + [sym_yield_expression] = STATE(1492), + [sym_call_expression] = STATE(1492), + [sym_array_expression] = STATE(1492), + [sym_parenthesized_expression] = STATE(1492), + [sym_tuple_expression] = STATE(1492), + [sym_unit_expression] = STATE(1492), + [sym_struct_expression] = STATE(1492), + [sym_if_expression] = STATE(1492), + [sym_match_expression] = STATE(1492), + [sym_while_expression] = STATE(1492), + [sym_loop_expression] = STATE(1492), + [sym_for_expression] = STATE(1492), + [sym_const_block] = STATE(1492), + [sym_closure_expression] = STATE(1492), + [sym_closure_parameters] = STATE(221), + [sym_label] = STATE(3689), + [sym_break_expression] = STATE(1492), + [sym_continue_expression] = STATE(1492), + [sym_index_expression] = STATE(1492), + [sym_await_expression] = STATE(1492), + [sym_field_expression] = STATE(1412), + [sym_unsafe_block] = STATE(1492), + [sym_async_block] = STATE(1492), + [sym_gen_block] = STATE(1492), + [sym_try_block] = STATE(1492), + [sym_block] = STATE(1492), + [sym__literal] = STATE(1492), + [sym_string_literal] = STATE(1530), + [sym_raw_string_literal] = STATE(1530), + [sym_boolean_literal] = STATE(1530), [sym_line_comment] = STATE(64), [sym_block_comment] = STATE(64), - [sym_identifier] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_LBRACK] = ACTIONS(379), - [anon_sym_LBRACE] = ACTIONS(379), - [anon_sym_PLUS] = ACTIONS(381), - [anon_sym_STAR] = ACTIONS(381), - [anon_sym_QMARK] = ACTIONS(379), - [anon_sym_u8] = ACTIONS(469), - [anon_sym_i8] = ACTIONS(469), - [anon_sym_u16] = ACTIONS(469), - [anon_sym_i16] = ACTIONS(469), - [anon_sym_u32] = ACTIONS(469), - [anon_sym_i32] = ACTIONS(469), - [anon_sym_u64] = ACTIONS(469), - [anon_sym_i64] = ACTIONS(469), - [anon_sym_u128] = ACTIONS(469), - [anon_sym_i128] = ACTIONS(469), - [anon_sym_isize] = ACTIONS(469), - [anon_sym_usize] = ACTIONS(469), - [anon_sym_f32] = ACTIONS(469), - [anon_sym_f64] = ACTIONS(469), - [anon_sym_bool] = ACTIONS(469), - [anon_sym_str] = ACTIONS(469), - [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(381), - [anon_sym_SLASH] = ACTIONS(381), - [anon_sym_PERCENT] = ACTIONS(381), - [anon_sym_CARET] = ACTIONS(381), - [anon_sym_BANG] = ACTIONS(503), - [anon_sym_AMP] = ACTIONS(381), - [anon_sym_PIPE] = ACTIONS(381), - [anon_sym_AMP_AMP] = ACTIONS(379), - [anon_sym_PIPE_PIPE] = ACTIONS(379), - [anon_sym_LT_LT] = ACTIONS(381), - [anon_sym_GT_GT] = ACTIONS(381), - [anon_sym_PLUS_EQ] = ACTIONS(379), - [anon_sym_DASH_EQ] = ACTIONS(379), - [anon_sym_STAR_EQ] = ACTIONS(379), - [anon_sym_SLASH_EQ] = ACTIONS(379), - [anon_sym_PERCENT_EQ] = ACTIONS(379), - [anon_sym_CARET_EQ] = ACTIONS(379), - [anon_sym_AMP_EQ] = ACTIONS(379), - [anon_sym_PIPE_EQ] = ACTIONS(379), - [anon_sym_LT_LT_EQ] = ACTIONS(379), - [anon_sym_GT_GT_EQ] = ACTIONS(379), - [anon_sym_EQ] = ACTIONS(381), - [anon_sym_EQ_EQ] = ACTIONS(379), - [anon_sym_BANG_EQ] = ACTIONS(379), - [anon_sym_GT] = ACTIONS(381), - [anon_sym_LT] = ACTIONS(381), - [anon_sym_GT_EQ] = ACTIONS(379), - [anon_sym_LT_EQ] = ACTIONS(379), - [anon_sym_DOT] = ACTIONS(381), - [anon_sym_DOT_DOT] = ACTIONS(381), - [anon_sym_DOT_DOT_DOT] = ACTIONS(379), - [anon_sym_DOT_DOT_EQ] = ACTIONS(379), - [anon_sym_COLON_COLON] = ACTIONS(473), - [anon_sym_SQUOTE] = ACTIONS(381), - [anon_sym_as] = ACTIONS(381), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(477), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(477), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(489), - [sym_super] = ACTIONS(491), - [sym_crate] = ACTIONS(491), - [sym_metavariable] = ACTIONS(493), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [sym_identifier] = ACTIONS(470), + [anon_sym_LPAREN] = ACTIONS(384), + [anon_sym_LBRACK] = ACTIONS(384), + [anon_sym_LBRACE] = ACTIONS(384), + [anon_sym_PLUS] = ACTIONS(386), + [anon_sym_STAR] = ACTIONS(386), + [anon_sym_QMARK] = ACTIONS(384), + [anon_sym_u8] = ACTIONS(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(386), + [anon_sym_SLASH] = ACTIONS(386), + [anon_sym_PERCENT] = ACTIONS(386), + [anon_sym_CARET] = ACTIONS(386), + [anon_sym_BANG] = ACTIONS(508), + [anon_sym_AMP] = ACTIONS(386), + [anon_sym_PIPE] = ACTIONS(386), + [anon_sym_AMP_AMP] = ACTIONS(384), + [anon_sym_PIPE_PIPE] = ACTIONS(384), + [anon_sym_LT_LT] = ACTIONS(386), + [anon_sym_GT_GT] = ACTIONS(386), + [anon_sym_PLUS_EQ] = ACTIONS(384), + [anon_sym_DASH_EQ] = ACTIONS(384), + [anon_sym_STAR_EQ] = ACTIONS(384), + [anon_sym_SLASH_EQ] = ACTIONS(384), + [anon_sym_PERCENT_EQ] = ACTIONS(384), + [anon_sym_CARET_EQ] = ACTIONS(384), + [anon_sym_AMP_EQ] = ACTIONS(384), + [anon_sym_PIPE_EQ] = ACTIONS(384), + [anon_sym_LT_LT_EQ] = ACTIONS(384), + [anon_sym_GT_GT_EQ] = ACTIONS(384), + [anon_sym_EQ] = ACTIONS(386), + [anon_sym_EQ_EQ] = ACTIONS(384), + [anon_sym_BANG_EQ] = ACTIONS(384), + [anon_sym_GT] = ACTIONS(386), + [anon_sym_LT] = ACTIONS(386), + [anon_sym_GT_EQ] = ACTIONS(384), + [anon_sym_LT_EQ] = ACTIONS(384), + [anon_sym_DOT] = ACTIONS(386), + [anon_sym_DOT_DOT] = ACTIONS(386), + [anon_sym_DOT_DOT_DOT] = ACTIONS(384), + [anon_sym_DOT_DOT_EQ] = ACTIONS(384), + [anon_sym_COLON_COLON] = ACTIONS(476), + [anon_sym_SQUOTE] = ACTIONS(386), + [anon_sym_as] = ACTIONS(386), + [anon_sym_async] = ACTIONS(356), + [anon_sym_break] = ACTIONS(510), + [anon_sym_const] = ACTIONS(358), + [anon_sym_continue] = ACTIONS(512), + [anon_sym_default] = ACTIONS(480), + [anon_sym_for] = ACTIONS(362), + [anon_sym_gen] = ACTIONS(514), + [anon_sym_if] = ACTIONS(366), + [anon_sym_loop] = ACTIONS(368), + [anon_sym_match] = ACTIONS(370), + [anon_sym_return] = ACTIONS(516), + [anon_sym_static] = ACTIONS(518), + [anon_sym_union] = ACTIONS(480), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [anon_sym_yield] = ACTIONS(520), + [anon_sym_move] = ACTIONS(522), + [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(492), + [sym_super] = ACTIONS(494), + [sym_crate] = ACTIONS(494), + [sym_metavariable] = ACTIONS(496), + [sym__raw_string_literal_start] = ACTIONS(119), + [sym_float_literal] = ACTIONS(99), }, [STATE(65)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3056), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1845), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1591), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(244), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), + [sym_bracketed_type] = STATE(3752), + [sym_generic_function] = STATE(1492), + [sym_generic_type_with_turbofish] = STATE(3085), + [sym__expression_except_range] = STATE(1409), + [sym__expression] = STATE(1661), + [sym_macro_invocation] = STATE(1529), + [sym_scoped_identifier] = STATE(1604), + [sym_scoped_type_identifier_in_expression_position] = STATE(3335), + [sym_range_expression] = STATE(1505), + [sym_unary_expression] = STATE(1492), + [sym_try_expression] = STATE(1492), + [sym_reference_expression] = STATE(1492), + [sym_binary_expression] = STATE(1492), + [sym_assignment_expression] = STATE(1492), + [sym_compound_assignment_expr] = STATE(1492), + [sym_type_cast_expression] = STATE(1492), + [sym_return_expression] = STATE(1492), + [sym_yield_expression] = STATE(1492), + [sym_call_expression] = STATE(1492), + [sym_array_expression] = STATE(1492), + [sym_parenthesized_expression] = STATE(1492), + [sym_tuple_expression] = STATE(1492), + [sym_unit_expression] = STATE(1492), + [sym_struct_expression] = STATE(1492), + [sym_if_expression] = STATE(1492), + [sym_match_expression] = STATE(1492), + [sym_while_expression] = STATE(1492), + [sym_loop_expression] = STATE(1492), + [sym_for_expression] = STATE(1492), + [sym_const_block] = STATE(1492), + [sym_closure_expression] = STATE(1492), + [sym_closure_parameters] = STATE(221), + [sym_label] = STATE(3689), + [sym_break_expression] = STATE(1492), + [sym_continue_expression] = STATE(1492), + [sym_index_expression] = STATE(1492), + [sym_await_expression] = STATE(1492), + [sym_field_expression] = STATE(1412), + [sym_unsafe_block] = STATE(1492), + [sym_async_block] = STATE(1492), + [sym_gen_block] = STATE(1492), + [sym_try_block] = STATE(1492), + [sym_block] = STATE(1492), + [sym__literal] = STATE(1492), + [sym_string_literal] = STATE(1530), + [sym_raw_string_literal] = STATE(1530), + [sym_boolean_literal] = STATE(1530), [sym_line_comment] = STATE(65), [sym_block_comment] = STATE(65), - [sym_identifier] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(375), - [anon_sym_LBRACK] = ACTIONS(375), - [anon_sym_LBRACE] = ACTIONS(375), - [anon_sym_PLUS] = ACTIONS(377), - [anon_sym_STAR] = ACTIONS(377), - [anon_sym_QMARK] = ACTIONS(375), - [anon_sym_u8] = ACTIONS(469), - [anon_sym_i8] = ACTIONS(469), - [anon_sym_u16] = ACTIONS(469), - [anon_sym_i16] = ACTIONS(469), - [anon_sym_u32] = ACTIONS(469), - [anon_sym_i32] = ACTIONS(469), - [anon_sym_u64] = ACTIONS(469), - [anon_sym_i64] = ACTIONS(469), - [anon_sym_u128] = ACTIONS(469), - [anon_sym_i128] = ACTIONS(469), - [anon_sym_isize] = ACTIONS(469), - [anon_sym_usize] = ACTIONS(469), - [anon_sym_f32] = ACTIONS(469), - [anon_sym_f64] = ACTIONS(469), - [anon_sym_bool] = ACTIONS(469), - [anon_sym_str] = ACTIONS(469), - [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(377), - [anon_sym_SLASH] = ACTIONS(377), - [anon_sym_PERCENT] = ACTIONS(377), - [anon_sym_CARET] = ACTIONS(377), - [anon_sym_BANG] = ACTIONS(471), - [anon_sym_AMP] = ACTIONS(377), - [anon_sym_PIPE] = ACTIONS(377), - [anon_sym_AMP_AMP] = ACTIONS(375), - [anon_sym_PIPE_PIPE] = ACTIONS(375), - [anon_sym_LT_LT] = ACTIONS(377), - [anon_sym_GT_GT] = ACTIONS(377), - [anon_sym_PLUS_EQ] = ACTIONS(375), - [anon_sym_DASH_EQ] = ACTIONS(375), - [anon_sym_STAR_EQ] = ACTIONS(375), - [anon_sym_SLASH_EQ] = ACTIONS(375), - [anon_sym_PERCENT_EQ] = ACTIONS(375), - [anon_sym_CARET_EQ] = ACTIONS(375), - [anon_sym_AMP_EQ] = ACTIONS(375), - [anon_sym_PIPE_EQ] = ACTIONS(375), - [anon_sym_LT_LT_EQ] = ACTIONS(375), - [anon_sym_GT_GT_EQ] = ACTIONS(375), - [anon_sym_EQ] = ACTIONS(377), - [anon_sym_EQ_EQ] = ACTIONS(375), - [anon_sym_BANG_EQ] = ACTIONS(375), - [anon_sym_GT] = ACTIONS(377), - [anon_sym_LT] = ACTIONS(377), - [anon_sym_GT_EQ] = ACTIONS(375), - [anon_sym_LT_EQ] = ACTIONS(375), - [anon_sym_DOT] = ACTIONS(377), - [anon_sym_DOT_DOT] = ACTIONS(377), - [anon_sym_DOT_DOT_DOT] = ACTIONS(375), - [anon_sym_DOT_DOT_EQ] = ACTIONS(375), - [anon_sym_COLON_COLON] = ACTIONS(473), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(377), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(475), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(477), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(479), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(481), - [anon_sym_static] = ACTIONS(483), - [anon_sym_union] = ACTIONS(477), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(485), - [anon_sym_move] = ACTIONS(487), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(489), - [sym_super] = ACTIONS(491), - [sym_crate] = ACTIONS(491), - [sym_metavariable] = ACTIONS(493), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [sym_identifier] = ACTIONS(470), + [anon_sym_LPAREN] = ACTIONS(380), + [anon_sym_LBRACK] = ACTIONS(380), + [anon_sym_LBRACE] = ACTIONS(380), + [anon_sym_PLUS] = ACTIONS(382), + [anon_sym_STAR] = ACTIONS(382), + [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(382), + [anon_sym_SLASH] = ACTIONS(382), + [anon_sym_PERCENT] = ACTIONS(382), + [anon_sym_CARET] = ACTIONS(382), + [anon_sym_BANG] = ACTIONS(508), + [anon_sym_AMP] = ACTIONS(382), + [anon_sym_PIPE] = ACTIONS(382), + [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(382), + [anon_sym_GT_EQ] = ACTIONS(380), + [anon_sym_LT_EQ] = ACTIONS(380), + [anon_sym_DOT] = ACTIONS(382), + [anon_sym_DOT_DOT] = ACTIONS(382), + [anon_sym_DOT_DOT_DOT] = ACTIONS(380), + [anon_sym_DOT_DOT_EQ] = ACTIONS(380), + [anon_sym_COLON_COLON] = ACTIONS(476), + [anon_sym_SQUOTE] = ACTIONS(382), + [anon_sym_as] = ACTIONS(382), + [anon_sym_async] = ACTIONS(356), + [anon_sym_break] = ACTIONS(510), + [anon_sym_const] = ACTIONS(358), + [anon_sym_continue] = ACTIONS(512), + [anon_sym_default] = ACTIONS(480), + [anon_sym_for] = ACTIONS(362), + [anon_sym_gen] = ACTIONS(514), + [anon_sym_if] = ACTIONS(366), + [anon_sym_loop] = ACTIONS(368), + [anon_sym_match] = ACTIONS(370), + [anon_sym_return] = ACTIONS(516), + [anon_sym_static] = ACTIONS(518), + [anon_sym_union] = ACTIONS(480), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [anon_sym_yield] = ACTIONS(520), + [anon_sym_move] = ACTIONS(522), + [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(492), + [sym_super] = ACTIONS(494), + [sym_crate] = ACTIONS(494), + [sym_metavariable] = ACTIONS(496), + [sym__raw_string_literal_start] = ACTIONS(119), + [sym_float_literal] = ACTIONS(99), }, [STATE(66)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3056), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1888), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1591), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(244), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), + [sym_bracketed_type] = STATE(3752), + [sym_generic_function] = STATE(1492), + [sym_generic_type_with_turbofish] = STATE(3085), + [sym__expression_except_range] = STATE(1409), + [sym__expression] = STATE(1884), + [sym_macro_invocation] = STATE(1529), + [sym_scoped_identifier] = STATE(1604), + [sym_scoped_type_identifier_in_expression_position] = STATE(3335), + [sym_range_expression] = STATE(1505), + [sym_unary_expression] = STATE(1492), + [sym_try_expression] = STATE(1492), + [sym_reference_expression] = STATE(1492), + [sym_binary_expression] = STATE(1492), + [sym_assignment_expression] = STATE(1492), + [sym_compound_assignment_expr] = STATE(1492), + [sym_type_cast_expression] = STATE(1492), + [sym_return_expression] = STATE(1492), + [sym_yield_expression] = STATE(1492), + [sym_call_expression] = STATE(1492), + [sym_array_expression] = STATE(1492), + [sym_parenthesized_expression] = STATE(1492), + [sym_tuple_expression] = STATE(1492), + [sym_unit_expression] = STATE(1492), + [sym_struct_expression] = STATE(1492), + [sym_if_expression] = STATE(1492), + [sym_match_expression] = STATE(1492), + [sym_while_expression] = STATE(1492), + [sym_loop_expression] = STATE(1492), + [sym_for_expression] = STATE(1492), + [sym_const_block] = STATE(1492), + [sym_closure_expression] = STATE(1492), + [sym_closure_parameters] = STATE(235), + [sym_label] = STATE(3689), + [sym_break_expression] = STATE(1492), + [sym_continue_expression] = STATE(1492), + [sym_index_expression] = STATE(1492), + [sym_await_expression] = STATE(1492), + [sym_field_expression] = STATE(1412), + [sym_unsafe_block] = STATE(1492), + [sym_async_block] = STATE(1492), + [sym_gen_block] = STATE(1492), + [sym_try_block] = STATE(1492), + [sym_block] = STATE(1492), + [sym__literal] = STATE(1492), + [sym_string_literal] = STATE(1530), + [sym_raw_string_literal] = STATE(1530), + [sym_boolean_literal] = STATE(1530), [sym_line_comment] = STATE(66), [sym_block_comment] = STATE(66), - [sym_identifier] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_LBRACK] = ACTIONS(379), - [anon_sym_LBRACE] = ACTIONS(379), - [anon_sym_PLUS] = ACTIONS(381), - [anon_sym_STAR] = ACTIONS(381), - [anon_sym_QMARK] = ACTIONS(379), - [anon_sym_u8] = ACTIONS(469), - [anon_sym_i8] = ACTIONS(469), - [anon_sym_u16] = ACTIONS(469), - [anon_sym_i16] = ACTIONS(469), - [anon_sym_u32] = ACTIONS(469), - [anon_sym_i32] = ACTIONS(469), - [anon_sym_u64] = ACTIONS(469), - [anon_sym_i64] = ACTIONS(469), - [anon_sym_u128] = ACTIONS(469), - [anon_sym_i128] = ACTIONS(469), - [anon_sym_isize] = ACTIONS(469), - [anon_sym_usize] = ACTIONS(469), - [anon_sym_f32] = ACTIONS(469), - [anon_sym_f64] = ACTIONS(469), - [anon_sym_bool] = ACTIONS(469), - [anon_sym_str] = ACTIONS(469), - [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(381), - [anon_sym_SLASH] = ACTIONS(381), - [anon_sym_PERCENT] = ACTIONS(381), - [anon_sym_CARET] = ACTIONS(381), - [anon_sym_BANG] = ACTIONS(471), - [anon_sym_AMP] = ACTIONS(381), - [anon_sym_PIPE] = ACTIONS(381), - [anon_sym_AMP_AMP] = ACTIONS(379), - [anon_sym_PIPE_PIPE] = ACTIONS(379), - [anon_sym_LT_LT] = ACTIONS(381), - [anon_sym_GT_GT] = ACTIONS(381), - [anon_sym_PLUS_EQ] = ACTIONS(379), - [anon_sym_DASH_EQ] = ACTIONS(379), - [anon_sym_STAR_EQ] = ACTIONS(379), - [anon_sym_SLASH_EQ] = ACTIONS(379), - [anon_sym_PERCENT_EQ] = ACTIONS(379), - [anon_sym_CARET_EQ] = ACTIONS(379), - [anon_sym_AMP_EQ] = ACTIONS(379), - [anon_sym_PIPE_EQ] = ACTIONS(379), - [anon_sym_LT_LT_EQ] = ACTIONS(379), - [anon_sym_GT_GT_EQ] = ACTIONS(379), - [anon_sym_EQ] = ACTIONS(381), - [anon_sym_EQ_EQ] = ACTIONS(379), - [anon_sym_BANG_EQ] = ACTIONS(379), - [anon_sym_GT] = ACTIONS(381), - [anon_sym_LT] = ACTIONS(381), - [anon_sym_GT_EQ] = ACTIONS(379), - [anon_sym_LT_EQ] = ACTIONS(379), - [anon_sym_DOT] = ACTIONS(381), - [anon_sym_DOT_DOT] = ACTIONS(381), - [anon_sym_DOT_DOT_DOT] = ACTIONS(379), - [anon_sym_DOT_DOT_EQ] = ACTIONS(379), - [anon_sym_COLON_COLON] = ACTIONS(473), + [sym_identifier] = ACTIONS(470), + [anon_sym_LPAREN] = ACTIONS(380), + [anon_sym_LBRACK] = ACTIONS(380), + [anon_sym_LBRACE] = ACTIONS(380), + [anon_sym_PLUS] = ACTIONS(382), + [anon_sym_STAR] = ACTIONS(382), + [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(382), + [anon_sym_SLASH] = ACTIONS(382), + [anon_sym_PERCENT] = ACTIONS(382), + [anon_sym_CARET] = ACTIONS(382), + [anon_sym_BANG] = ACTIONS(474), + [anon_sym_AMP] = ACTIONS(382), + [anon_sym_PIPE] = ACTIONS(382), + [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(382), + [anon_sym_GT_EQ] = ACTIONS(380), + [anon_sym_LT_EQ] = ACTIONS(380), + [anon_sym_DOT] = ACTIONS(382), + [anon_sym_DOT_DOT] = ACTIONS(382), + [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(381), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(475), - [anon_sym_const] = ACTIONS(353), + [anon_sym_as] = ACTIONS(382), + [anon_sym_async] = ACTIONS(356), + [anon_sym_break] = ACTIONS(478), + [anon_sym_const] = ACTIONS(358), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(477), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(479), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(481), - [anon_sym_static] = ACTIONS(483), - [anon_sym_union] = ACTIONS(477), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(485), - [anon_sym_move] = ACTIONS(487), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(489), - [sym_super] = ACTIONS(491), - [sym_crate] = ACTIONS(491), - [sym_metavariable] = ACTIONS(493), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [anon_sym_default] = ACTIONS(480), + [anon_sym_for] = ACTIONS(362), + [anon_sym_gen] = ACTIONS(482), + [anon_sym_if] = ACTIONS(366), + [anon_sym_loop] = ACTIONS(368), + [anon_sym_match] = ACTIONS(370), + [anon_sym_return] = ACTIONS(484), + [anon_sym_static] = ACTIONS(486), + [anon_sym_union] = ACTIONS(480), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [anon_sym_yield] = ACTIONS(488), + [anon_sym_move] = ACTIONS(490), + [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(492), + [sym_super] = ACTIONS(494), + [sym_crate] = ACTIONS(494), + [sym_metavariable] = ACTIONS(496), + [sym__raw_string_literal_start] = ACTIONS(119), + [sym_float_literal] = ACTIONS(99), }, [STATE(67)] = { - [sym__token_pattern] = STATE(154), - [sym_token_tree_pattern] = STATE(186), - [sym_token_binding_pattern] = STATE(186), - [sym_token_repetition_pattern] = STATE(186), - [sym__literal] = STATE(186), - [sym_string_literal] = STATE(175), - [sym_raw_string_literal] = STATE(175), - [sym_boolean_literal] = STATE(175), + [sym__token_pattern] = STATE(171), + [sym_token_tree_pattern] = STATE(145), + [sym_token_binding_pattern] = STATE(145), + [sym_token_repetition_pattern] = STATE(145), + [sym__literal] = STATE(145), + [sym_string_literal] = STATE(174), + [sym_raw_string_literal] = STATE(174), + [sym_boolean_literal] = STATE(174), [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(141), - [sym_identifier] = ACTIONS(527), - [anon_sym_SEMI] = ACTIONS(530), - [anon_sym_LPAREN] = ACTIONS(533), - [anon_sym_RPAREN] = ACTIONS(536), - [anon_sym_LBRACK] = ACTIONS(538), - [anon_sym_RBRACK] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(541), - [anon_sym_RBRACE] = ACTIONS(536), - [anon_sym_EQ_GT] = ACTIONS(530), - [anon_sym_COLON] = ACTIONS(544), - [anon_sym_DOLLAR] = ACTIONS(547), - [anon_sym_PLUS] = ACTIONS(544), - [anon_sym_STAR] = ACTIONS(544), - [anon_sym_QMARK] = ACTIONS(530), - [anon_sym_u8] = ACTIONS(527), - [anon_sym_i8] = ACTIONS(527), - [anon_sym_u16] = ACTIONS(527), - [anon_sym_i16] = ACTIONS(527), - [anon_sym_u32] = ACTIONS(527), - [anon_sym_i32] = ACTIONS(527), - [anon_sym_u64] = ACTIONS(527), - [anon_sym_i64] = ACTIONS(527), - [anon_sym_u128] = ACTIONS(527), - [anon_sym_i128] = ACTIONS(527), - [anon_sym_isize] = ACTIONS(527), - [anon_sym_usize] = ACTIONS(527), - [anon_sym_f32] = ACTIONS(527), - [anon_sym_f64] = ACTIONS(527), - [anon_sym_bool] = ACTIONS(527), - [anon_sym_str] = ACTIONS(527), - [anon_sym_char] = ACTIONS(527), - [anon_sym_DASH] = ACTIONS(544), - [anon_sym_SLASH] = ACTIONS(544), - [anon_sym_PERCENT] = ACTIONS(544), - [anon_sym_CARET] = ACTIONS(544), - [anon_sym_BANG] = ACTIONS(544), - [anon_sym_AMP] = ACTIONS(544), - [anon_sym_PIPE] = ACTIONS(544), - [anon_sym_AMP_AMP] = ACTIONS(530), - [anon_sym_PIPE_PIPE] = ACTIONS(530), - [anon_sym_LT_LT] = ACTIONS(544), - [anon_sym_GT_GT] = ACTIONS(544), - [anon_sym_PLUS_EQ] = ACTIONS(530), - [anon_sym_DASH_EQ] = ACTIONS(530), - [anon_sym_STAR_EQ] = ACTIONS(530), - [anon_sym_SLASH_EQ] = ACTIONS(530), - [anon_sym_PERCENT_EQ] = ACTIONS(530), - [anon_sym_CARET_EQ] = ACTIONS(530), - [anon_sym_AMP_EQ] = ACTIONS(530), - [anon_sym_PIPE_EQ] = ACTIONS(530), - [anon_sym_LT_LT_EQ] = ACTIONS(530), - [anon_sym_GT_GT_EQ] = ACTIONS(530), - [anon_sym_EQ] = ACTIONS(544), - [anon_sym_EQ_EQ] = ACTIONS(530), - [anon_sym_BANG_EQ] = ACTIONS(530), - [anon_sym_GT] = ACTIONS(544), - [anon_sym_LT] = ACTIONS(544), - [anon_sym_GT_EQ] = ACTIONS(530), - [anon_sym_LT_EQ] = ACTIONS(530), - [anon_sym_AT] = ACTIONS(530), - [anon_sym__] = ACTIONS(544), - [anon_sym_DOT] = ACTIONS(544), - [anon_sym_DOT_DOT] = ACTIONS(544), - [anon_sym_DOT_DOT_DOT] = ACTIONS(530), - [anon_sym_DOT_DOT_EQ] = ACTIONS(530), - [anon_sym_COMMA] = ACTIONS(530), - [anon_sym_COLON_COLON] = ACTIONS(530), - [anon_sym_DASH_GT] = ACTIONS(530), - [anon_sym_POUND] = ACTIONS(530), - [anon_sym_SQUOTE] = ACTIONS(527), - [anon_sym_as] = ACTIONS(527), - [anon_sym_async] = ACTIONS(527), - [anon_sym_await] = ACTIONS(527), - [anon_sym_break] = ACTIONS(527), - [anon_sym_const] = ACTIONS(527), - [anon_sym_continue] = ACTIONS(527), - [anon_sym_default] = ACTIONS(527), - [anon_sym_enum] = ACTIONS(527), - [anon_sym_fn] = ACTIONS(527), - [anon_sym_for] = ACTIONS(527), - [anon_sym_gen] = ACTIONS(527), - [anon_sym_if] = ACTIONS(527), - [anon_sym_impl] = ACTIONS(527), - [anon_sym_let] = ACTIONS(527), - [anon_sym_loop] = ACTIONS(527), - [anon_sym_match] = ACTIONS(527), - [anon_sym_mod] = ACTIONS(527), - [anon_sym_pub] = ACTIONS(527), - [anon_sym_return] = ACTIONS(527), - [anon_sym_static] = ACTIONS(527), - [anon_sym_struct] = ACTIONS(527), - [anon_sym_trait] = ACTIONS(527), - [anon_sym_type] = ACTIONS(527), - [anon_sym_union] = ACTIONS(527), - [anon_sym_unsafe] = ACTIONS(527), - [anon_sym_use] = ACTIONS(527), - [anon_sym_where] = ACTIONS(527), - [anon_sym_while] = ACTIONS(527), - [sym_mutable_specifier] = ACTIONS(527), - [sym_integer_literal] = ACTIONS(550), - [aux_sym_string_literal_token1] = ACTIONS(553), - [sym_char_literal] = ACTIONS(550), - [anon_sym_true] = ACTIONS(556), - [anon_sym_false] = ACTIONS(556), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(527), - [sym_super] = ACTIONS(527), - [sym_crate] = ACTIONS(527), - [sym_metavariable] = ACTIONS(559), - [sym__raw_string_literal_start] = ACTIONS(562), - [sym_float_literal] = ACTIONS(550), + [aux_sym__non_special_token_repeat1] = STATE(135), + [sym_identifier] = ACTIONS(532), + [anon_sym_SEMI] = ACTIONS(535), + [anon_sym_LPAREN] = ACTIONS(538), + [anon_sym_RPAREN] = ACTIONS(541), + [anon_sym_LBRACK] = ACTIONS(543), + [anon_sym_RBRACK] = ACTIONS(541), + [anon_sym_LBRACE] = ACTIONS(546), + [anon_sym_RBRACE] = ACTIONS(541), + [anon_sym_EQ_GT] = ACTIONS(535), + [anon_sym_COLON] = ACTIONS(549), + [anon_sym_DOLLAR] = ACTIONS(552), + [anon_sym_PLUS] = ACTIONS(549), + [anon_sym_STAR] = ACTIONS(549), + [anon_sym_QMARK] = ACTIONS(535), + [anon_sym_u8] = ACTIONS(532), + [anon_sym_i8] = ACTIONS(532), + [anon_sym_u16] = ACTIONS(532), + [anon_sym_i16] = ACTIONS(532), + [anon_sym_u32] = ACTIONS(532), + [anon_sym_i32] = ACTIONS(532), + [anon_sym_u64] = ACTIONS(532), + [anon_sym_i64] = ACTIONS(532), + [anon_sym_u128] = ACTIONS(532), + [anon_sym_i128] = ACTIONS(532), + [anon_sym_isize] = ACTIONS(532), + [anon_sym_usize] = ACTIONS(532), + [anon_sym_f32] = ACTIONS(532), + [anon_sym_f64] = ACTIONS(532), + [anon_sym_bool] = ACTIONS(532), + [anon_sym_str] = ACTIONS(532), + [anon_sym_char] = ACTIONS(532), + [anon_sym_DASH] = ACTIONS(549), + [anon_sym_SLASH] = ACTIONS(549), + [anon_sym_PERCENT] = ACTIONS(549), + [anon_sym_CARET] = ACTIONS(549), + [anon_sym_BANG] = ACTIONS(549), + [anon_sym_AMP] = ACTIONS(549), + [anon_sym_PIPE] = ACTIONS(549), + [anon_sym_AMP_AMP] = ACTIONS(535), + [anon_sym_PIPE_PIPE] = ACTIONS(535), + [anon_sym_LT_LT] = ACTIONS(549), + [anon_sym_GT_GT] = ACTIONS(549), + [anon_sym_PLUS_EQ] = ACTIONS(535), + [anon_sym_DASH_EQ] = ACTIONS(535), + [anon_sym_STAR_EQ] = ACTIONS(535), + [anon_sym_SLASH_EQ] = ACTIONS(535), + [anon_sym_PERCENT_EQ] = ACTIONS(535), + [anon_sym_CARET_EQ] = ACTIONS(535), + [anon_sym_AMP_EQ] = ACTIONS(535), + [anon_sym_PIPE_EQ] = ACTIONS(535), + [anon_sym_LT_LT_EQ] = ACTIONS(535), + [anon_sym_GT_GT_EQ] = ACTIONS(535), + [anon_sym_EQ] = ACTIONS(549), + [anon_sym_EQ_EQ] = ACTIONS(535), + [anon_sym_BANG_EQ] = ACTIONS(535), + [anon_sym_GT] = ACTIONS(549), + [anon_sym_LT] = ACTIONS(549), + [anon_sym_GT_EQ] = ACTIONS(535), + [anon_sym_LT_EQ] = ACTIONS(535), + [anon_sym_AT] = ACTIONS(535), + [anon_sym__] = ACTIONS(549), + [anon_sym_DOT] = ACTIONS(549), + [anon_sym_DOT_DOT] = ACTIONS(549), + [anon_sym_DOT_DOT_DOT] = ACTIONS(535), + [anon_sym_DOT_DOT_EQ] = ACTIONS(535), + [anon_sym_COMMA] = ACTIONS(535), + [anon_sym_COLON_COLON] = ACTIONS(535), + [anon_sym_DASH_GT] = ACTIONS(535), + [anon_sym_POUND] = ACTIONS(535), + [anon_sym_SQUOTE] = ACTIONS(532), + [anon_sym_as] = ACTIONS(532), + [anon_sym_async] = ACTIONS(532), + [anon_sym_await] = ACTIONS(532), + [anon_sym_break] = ACTIONS(532), + [anon_sym_const] = ACTIONS(532), + [anon_sym_continue] = ACTIONS(532), + [anon_sym_default] = ACTIONS(532), + [anon_sym_enum] = ACTIONS(532), + [anon_sym_fn] = ACTIONS(532), + [anon_sym_for] = ACTIONS(532), + [anon_sym_gen] = ACTIONS(532), + [anon_sym_if] = ACTIONS(532), + [anon_sym_impl] = ACTIONS(532), + [anon_sym_let] = ACTIONS(532), + [anon_sym_loop] = ACTIONS(532), + [anon_sym_match] = ACTIONS(532), + [anon_sym_mod] = ACTIONS(532), + [anon_sym_pub] = ACTIONS(532), + [anon_sym_return] = ACTIONS(532), + [anon_sym_static] = ACTIONS(532), + [anon_sym_struct] = ACTIONS(532), + [anon_sym_trait] = ACTIONS(532), + [anon_sym_type] = ACTIONS(532), + [anon_sym_union] = ACTIONS(532), + [anon_sym_unsafe] = ACTIONS(532), + [anon_sym_use] = ACTIONS(532), + [anon_sym_where] = ACTIONS(532), + [anon_sym_while] = ACTIONS(532), + [sym_mutable_specifier] = ACTIONS(532), + [sym_integer_literal] = ACTIONS(555), + [aux_sym_string_literal_token1] = ACTIONS(558), + [sym_char_literal] = ACTIONS(555), + [anon_sym_true] = ACTIONS(561), + [anon_sym_false] = ACTIONS(561), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(532), + [sym_super] = ACTIONS(532), + [sym_crate] = ACTIONS(532), + [sym_metavariable] = ACTIONS(564), + [sym__raw_string_literal_start] = ACTIONS(567), + [sym_float_literal] = ACTIONS(555), }, [STATE(68)] = { - [sym_delim_token_tree] = STATE(207), - [sym__delim_tokens] = STATE(208), - [sym__non_delim_token] = STATE(207), - [sym__literal] = STATE(206), - [sym_string_literal] = STATE(212), - [sym_raw_string_literal] = STATE(212), - [sym_boolean_literal] = STATE(212), + [sym__token_pattern] = STATE(171), + [sym_token_tree_pattern] = STATE(145), + [sym_token_binding_pattern] = STATE(145), + [sym_token_repetition_pattern] = STATE(145), + [sym__literal] = STATE(145), + [sym_string_literal] = STATE(174), + [sym_raw_string_literal] = STATE(174), + [sym_boolean_literal] = STATE(174), [sym_line_comment] = STATE(68), [sym_block_comment] = STATE(68), - [aux_sym__non_special_token_repeat1] = STATE(181), - [aux_sym_delim_token_tree_repeat1] = STATE(68), - [sym_identifier] = ACTIONS(565), - [anon_sym_SEMI] = ACTIONS(568), - [anon_sym_LPAREN] = ACTIONS(571), - [anon_sym_RPAREN] = ACTIONS(574), + [aux_sym_token_tree_pattern_repeat1] = STATE(67), + [aux_sym__non_special_token_repeat1] = STATE(135), + [sym_identifier] = ACTIONS(570), + [anon_sym_SEMI] = ACTIONS(572), + [anon_sym_LPAREN] = ACTIONS(574), [anon_sym_LBRACK] = ACTIONS(576), - [anon_sym_RBRACK] = ACTIONS(574), - [anon_sym_LBRACE] = ACTIONS(579), - [anon_sym_RBRACE] = ACTIONS(574), - [anon_sym_EQ_GT] = ACTIONS(568), + [anon_sym_LBRACE] = ACTIONS(578), + [anon_sym_RBRACE] = ACTIONS(580), + [anon_sym_EQ_GT] = ACTIONS(572), [anon_sym_COLON] = ACTIONS(582), - [anon_sym_DOLLAR] = ACTIONS(585), + [anon_sym_DOLLAR] = ACTIONS(584), [anon_sym_PLUS] = ACTIONS(582), [anon_sym_STAR] = ACTIONS(582), - [anon_sym_QMARK] = ACTIONS(568), - [anon_sym_u8] = ACTIONS(565), - [anon_sym_i8] = ACTIONS(565), - [anon_sym_u16] = ACTIONS(565), - [anon_sym_i16] = ACTIONS(565), - [anon_sym_u32] = ACTIONS(565), - [anon_sym_i32] = ACTIONS(565), - [anon_sym_u64] = ACTIONS(565), - [anon_sym_i64] = ACTIONS(565), - [anon_sym_u128] = ACTIONS(565), - [anon_sym_i128] = ACTIONS(565), - [anon_sym_isize] = ACTIONS(565), - [anon_sym_usize] = ACTIONS(565), - [anon_sym_f32] = ACTIONS(565), - [anon_sym_f64] = ACTIONS(565), - [anon_sym_bool] = ACTIONS(565), - [anon_sym_str] = ACTIONS(565), - [anon_sym_char] = ACTIONS(565), + [anon_sym_QMARK] = ACTIONS(572), + [anon_sym_u8] = ACTIONS(570), + [anon_sym_i8] = ACTIONS(570), + [anon_sym_u16] = ACTIONS(570), + [anon_sym_i16] = ACTIONS(570), + [anon_sym_u32] = ACTIONS(570), + [anon_sym_i32] = ACTIONS(570), + [anon_sym_u64] = ACTIONS(570), + [anon_sym_i64] = ACTIONS(570), + [anon_sym_u128] = ACTIONS(570), + [anon_sym_i128] = ACTIONS(570), + [anon_sym_isize] = ACTIONS(570), + [anon_sym_usize] = ACTIONS(570), + [anon_sym_f32] = ACTIONS(570), + [anon_sym_f64] = ACTIONS(570), + [anon_sym_bool] = ACTIONS(570), + [anon_sym_str] = ACTIONS(570), + [anon_sym_char] = ACTIONS(570), [anon_sym_DASH] = ACTIONS(582), [anon_sym_SLASH] = ACTIONS(582), [anon_sym_PERCENT] = ACTIONS(582), @@ -24238,8097 +24368,8449 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(582), [anon_sym_AMP] = ACTIONS(582), [anon_sym_PIPE] = ACTIONS(582), - [anon_sym_AMP_AMP] = ACTIONS(568), - [anon_sym_PIPE_PIPE] = ACTIONS(568), + [anon_sym_AMP_AMP] = ACTIONS(572), + [anon_sym_PIPE_PIPE] = ACTIONS(572), [anon_sym_LT_LT] = ACTIONS(582), [anon_sym_GT_GT] = ACTIONS(582), - [anon_sym_PLUS_EQ] = ACTIONS(568), - [anon_sym_DASH_EQ] = ACTIONS(568), - [anon_sym_STAR_EQ] = ACTIONS(568), - [anon_sym_SLASH_EQ] = ACTIONS(568), - [anon_sym_PERCENT_EQ] = ACTIONS(568), - [anon_sym_CARET_EQ] = ACTIONS(568), - [anon_sym_AMP_EQ] = ACTIONS(568), - [anon_sym_PIPE_EQ] = ACTIONS(568), - [anon_sym_LT_LT_EQ] = ACTIONS(568), - [anon_sym_GT_GT_EQ] = ACTIONS(568), + [anon_sym_PLUS_EQ] = ACTIONS(572), + [anon_sym_DASH_EQ] = ACTIONS(572), + [anon_sym_STAR_EQ] = ACTIONS(572), + [anon_sym_SLASH_EQ] = ACTIONS(572), + [anon_sym_PERCENT_EQ] = ACTIONS(572), + [anon_sym_CARET_EQ] = ACTIONS(572), + [anon_sym_AMP_EQ] = ACTIONS(572), + [anon_sym_PIPE_EQ] = ACTIONS(572), + [anon_sym_LT_LT_EQ] = ACTIONS(572), + [anon_sym_GT_GT_EQ] = ACTIONS(572), [anon_sym_EQ] = ACTIONS(582), - [anon_sym_EQ_EQ] = ACTIONS(568), - [anon_sym_BANG_EQ] = ACTIONS(568), + [anon_sym_EQ_EQ] = ACTIONS(572), + [anon_sym_BANG_EQ] = ACTIONS(572), [anon_sym_GT] = ACTIONS(582), [anon_sym_LT] = ACTIONS(582), - [anon_sym_GT_EQ] = ACTIONS(568), - [anon_sym_LT_EQ] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(568), + [anon_sym_GT_EQ] = ACTIONS(572), + [anon_sym_LT_EQ] = ACTIONS(572), + [anon_sym_AT] = ACTIONS(572), [anon_sym__] = ACTIONS(582), [anon_sym_DOT] = ACTIONS(582), [anon_sym_DOT_DOT] = ACTIONS(582), - [anon_sym_DOT_DOT_DOT] = ACTIONS(568), - [anon_sym_DOT_DOT_EQ] = ACTIONS(568), - [anon_sym_COMMA] = ACTIONS(568), - [anon_sym_COLON_COLON] = ACTIONS(568), - [anon_sym_DASH_GT] = ACTIONS(568), - [anon_sym_POUND] = ACTIONS(568), - [anon_sym_SQUOTE] = ACTIONS(565), - [anon_sym_as] = ACTIONS(565), - [anon_sym_async] = ACTIONS(565), - [anon_sym_await] = ACTIONS(565), - [anon_sym_break] = ACTIONS(565), - [anon_sym_const] = ACTIONS(565), - [anon_sym_continue] = ACTIONS(565), - [anon_sym_default] = ACTIONS(565), - [anon_sym_enum] = ACTIONS(565), - [anon_sym_fn] = ACTIONS(565), - [anon_sym_for] = ACTIONS(565), - [anon_sym_gen] = ACTIONS(565), - [anon_sym_if] = ACTIONS(565), - [anon_sym_impl] = ACTIONS(565), - [anon_sym_let] = ACTIONS(565), - [anon_sym_loop] = ACTIONS(565), - [anon_sym_match] = ACTIONS(565), - [anon_sym_mod] = ACTIONS(565), - [anon_sym_pub] = ACTIONS(565), - [anon_sym_return] = ACTIONS(565), - [anon_sym_static] = ACTIONS(565), - [anon_sym_struct] = ACTIONS(565), - [anon_sym_trait] = ACTIONS(565), - [anon_sym_type] = ACTIONS(565), - [anon_sym_union] = ACTIONS(565), - [anon_sym_unsafe] = ACTIONS(565), - [anon_sym_use] = ACTIONS(565), - [anon_sym_where] = ACTIONS(565), - [anon_sym_while] = ACTIONS(565), - [sym_mutable_specifier] = ACTIONS(565), - [sym_integer_literal] = ACTIONS(588), - [aux_sym_string_literal_token1] = ACTIONS(591), - [sym_char_literal] = ACTIONS(588), - [anon_sym_true] = ACTIONS(594), - [anon_sym_false] = ACTIONS(594), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(565), - [sym_super] = ACTIONS(565), - [sym_crate] = ACTIONS(565), - [sym__raw_string_literal_start] = ACTIONS(597), - [sym_float_literal] = ACTIONS(588), + [anon_sym_DOT_DOT_DOT] = ACTIONS(572), + [anon_sym_DOT_DOT_EQ] = ACTIONS(572), + [anon_sym_COMMA] = ACTIONS(572), + [anon_sym_COLON_COLON] = ACTIONS(572), + [anon_sym_DASH_GT] = ACTIONS(572), + [anon_sym_POUND] = ACTIONS(572), + [anon_sym_SQUOTE] = ACTIONS(570), + [anon_sym_as] = ACTIONS(570), + [anon_sym_async] = ACTIONS(570), + [anon_sym_await] = ACTIONS(570), + [anon_sym_break] = ACTIONS(570), + [anon_sym_const] = ACTIONS(570), + [anon_sym_continue] = ACTIONS(570), + [anon_sym_default] = ACTIONS(570), + [anon_sym_enum] = ACTIONS(570), + [anon_sym_fn] = ACTIONS(570), + [anon_sym_for] = ACTIONS(570), + [anon_sym_gen] = ACTIONS(570), + [anon_sym_if] = ACTIONS(570), + [anon_sym_impl] = ACTIONS(570), + [anon_sym_let] = ACTIONS(570), + [anon_sym_loop] = ACTIONS(570), + [anon_sym_match] = ACTIONS(570), + [anon_sym_mod] = ACTIONS(570), + [anon_sym_pub] = ACTIONS(570), + [anon_sym_return] = ACTIONS(570), + [anon_sym_static] = ACTIONS(570), + [anon_sym_struct] = ACTIONS(570), + [anon_sym_trait] = ACTIONS(570), + [anon_sym_type] = ACTIONS(570), + [anon_sym_union] = ACTIONS(570), + [anon_sym_unsafe] = ACTIONS(570), + [anon_sym_use] = ACTIONS(570), + [anon_sym_where] = ACTIONS(570), + [anon_sym_while] = ACTIONS(570), + [sym_mutable_specifier] = ACTIONS(570), + [sym_integer_literal] = ACTIONS(586), + [aux_sym_string_literal_token1] = ACTIONS(588), + [sym_char_literal] = ACTIONS(586), + [anon_sym_true] = ACTIONS(590), + [anon_sym_false] = ACTIONS(590), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(570), + [sym_super] = ACTIONS(570), + [sym_crate] = ACTIONS(570), + [sym_metavariable] = ACTIONS(592), + [sym__raw_string_literal_start] = ACTIONS(594), + [sym_float_literal] = ACTIONS(586), }, [STATE(69)] = { - [sym_token_tree] = STATE(170), - [sym_token_repetition] = STATE(170), - [sym__literal] = STATE(170), - [sym_string_literal] = STATE(175), - [sym_raw_string_literal] = STATE(175), - [sym_boolean_literal] = STATE(175), + [sym__token_pattern] = STATE(171), + [sym_token_tree_pattern] = STATE(145), + [sym_token_binding_pattern] = STATE(145), + [sym_token_repetition_pattern] = STATE(145), + [sym__literal] = STATE(145), + [sym_string_literal] = STATE(174), + [sym_raw_string_literal] = STATE(174), + [sym_boolean_literal] = STATE(174), [sym_line_comment] = STATE(69), [sym_block_comment] = STATE(69), - [aux_sym_token_tree_repeat1] = STATE(69), - [aux_sym__non_special_token_repeat1] = STATE(140), - [sym_identifier] = ACTIONS(600), - [anon_sym_SEMI] = ACTIONS(603), - [anon_sym_LPAREN] = ACTIONS(606), - [anon_sym_RPAREN] = ACTIONS(609), - [anon_sym_LBRACK] = ACTIONS(611), - [anon_sym_RBRACK] = ACTIONS(609), - [anon_sym_LBRACE] = ACTIONS(614), - [anon_sym_RBRACE] = ACTIONS(609), - [anon_sym_EQ_GT] = ACTIONS(603), - [anon_sym_COLON] = ACTIONS(617), - [anon_sym_DOLLAR] = ACTIONS(620), - [anon_sym_PLUS] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(617), - [anon_sym_QMARK] = ACTIONS(603), - [anon_sym_u8] = ACTIONS(600), - [anon_sym_i8] = ACTIONS(600), - [anon_sym_u16] = ACTIONS(600), - [anon_sym_i16] = ACTIONS(600), - [anon_sym_u32] = ACTIONS(600), - [anon_sym_i32] = ACTIONS(600), - [anon_sym_u64] = ACTIONS(600), - [anon_sym_i64] = ACTIONS(600), - [anon_sym_u128] = ACTIONS(600), - [anon_sym_i128] = ACTIONS(600), - [anon_sym_isize] = ACTIONS(600), - [anon_sym_usize] = ACTIONS(600), - [anon_sym_f32] = ACTIONS(600), - [anon_sym_f64] = ACTIONS(600), - [anon_sym_bool] = ACTIONS(600), - [anon_sym_str] = ACTIONS(600), - [anon_sym_char] = ACTIONS(600), - [anon_sym_DASH] = ACTIONS(617), - [anon_sym_SLASH] = ACTIONS(617), - [anon_sym_PERCENT] = ACTIONS(617), - [anon_sym_CARET] = ACTIONS(617), - [anon_sym_BANG] = ACTIONS(617), - [anon_sym_AMP] = ACTIONS(617), - [anon_sym_PIPE] = ACTIONS(617), - [anon_sym_AMP_AMP] = ACTIONS(603), - [anon_sym_PIPE_PIPE] = ACTIONS(603), - [anon_sym_LT_LT] = ACTIONS(617), - [anon_sym_GT_GT] = ACTIONS(617), - [anon_sym_PLUS_EQ] = ACTIONS(603), - [anon_sym_DASH_EQ] = ACTIONS(603), - [anon_sym_STAR_EQ] = ACTIONS(603), - [anon_sym_SLASH_EQ] = ACTIONS(603), - [anon_sym_PERCENT_EQ] = ACTIONS(603), - [anon_sym_CARET_EQ] = ACTIONS(603), - [anon_sym_AMP_EQ] = ACTIONS(603), - [anon_sym_PIPE_EQ] = ACTIONS(603), - [anon_sym_LT_LT_EQ] = ACTIONS(603), - [anon_sym_GT_GT_EQ] = ACTIONS(603), - [anon_sym_EQ] = ACTIONS(617), - [anon_sym_EQ_EQ] = ACTIONS(603), - [anon_sym_BANG_EQ] = ACTIONS(603), - [anon_sym_GT] = ACTIONS(617), - [anon_sym_LT] = ACTIONS(617), - [anon_sym_GT_EQ] = ACTIONS(603), - [anon_sym_LT_EQ] = ACTIONS(603), - [anon_sym_AT] = ACTIONS(603), - [anon_sym__] = ACTIONS(617), - [anon_sym_DOT] = ACTIONS(617), - [anon_sym_DOT_DOT] = ACTIONS(617), - [anon_sym_DOT_DOT_DOT] = ACTIONS(603), - [anon_sym_DOT_DOT_EQ] = ACTIONS(603), - [anon_sym_COMMA] = ACTIONS(603), - [anon_sym_COLON_COLON] = ACTIONS(603), - [anon_sym_DASH_GT] = ACTIONS(603), - [anon_sym_POUND] = ACTIONS(603), - [anon_sym_SQUOTE] = ACTIONS(600), - [anon_sym_as] = ACTIONS(600), - [anon_sym_async] = ACTIONS(600), - [anon_sym_await] = ACTIONS(600), - [anon_sym_break] = ACTIONS(600), - [anon_sym_const] = ACTIONS(600), - [anon_sym_continue] = ACTIONS(600), - [anon_sym_default] = ACTIONS(600), - [anon_sym_enum] = ACTIONS(600), - [anon_sym_fn] = ACTIONS(600), - [anon_sym_for] = ACTIONS(600), - [anon_sym_gen] = ACTIONS(600), - [anon_sym_if] = ACTIONS(600), - [anon_sym_impl] = ACTIONS(600), - [anon_sym_let] = ACTIONS(600), - [anon_sym_loop] = ACTIONS(600), - [anon_sym_match] = ACTIONS(600), - [anon_sym_mod] = ACTIONS(600), - [anon_sym_pub] = ACTIONS(600), - [anon_sym_return] = ACTIONS(600), - [anon_sym_static] = ACTIONS(600), - [anon_sym_struct] = ACTIONS(600), - [anon_sym_trait] = ACTIONS(600), - [anon_sym_type] = ACTIONS(600), - [anon_sym_union] = ACTIONS(600), - [anon_sym_unsafe] = ACTIONS(600), - [anon_sym_use] = ACTIONS(600), - [anon_sym_where] = ACTIONS(600), - [anon_sym_while] = ACTIONS(600), - [sym_mutable_specifier] = ACTIONS(600), - [sym_integer_literal] = ACTIONS(623), - [aux_sym_string_literal_token1] = ACTIONS(626), - [sym_char_literal] = ACTIONS(623), - [anon_sym_true] = ACTIONS(629), - [anon_sym_false] = ACTIONS(629), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(600), - [sym_super] = ACTIONS(600), - [sym_crate] = ACTIONS(600), - [sym_metavariable] = ACTIONS(632), - [sym__raw_string_literal_start] = ACTIONS(635), - [sym_float_literal] = ACTIONS(623), + [aux_sym_token_tree_pattern_repeat1] = STATE(67), + [aux_sym__non_special_token_repeat1] = STATE(135), + [sym_identifier] = ACTIONS(570), + [anon_sym_SEMI] = ACTIONS(572), + [anon_sym_LPAREN] = ACTIONS(574), + [anon_sym_RPAREN] = ACTIONS(580), + [anon_sym_LBRACK] = ACTIONS(576), + [anon_sym_LBRACE] = ACTIONS(578), + [anon_sym_EQ_GT] = ACTIONS(572), + [anon_sym_COLON] = ACTIONS(582), + [anon_sym_DOLLAR] = ACTIONS(584), + [anon_sym_PLUS] = ACTIONS(582), + [anon_sym_STAR] = ACTIONS(582), + [anon_sym_QMARK] = ACTIONS(572), + [anon_sym_u8] = ACTIONS(570), + [anon_sym_i8] = ACTIONS(570), + [anon_sym_u16] = ACTIONS(570), + [anon_sym_i16] = ACTIONS(570), + [anon_sym_u32] = ACTIONS(570), + [anon_sym_i32] = ACTIONS(570), + [anon_sym_u64] = ACTIONS(570), + [anon_sym_i64] = ACTIONS(570), + [anon_sym_u128] = ACTIONS(570), + [anon_sym_i128] = ACTIONS(570), + [anon_sym_isize] = ACTIONS(570), + [anon_sym_usize] = ACTIONS(570), + [anon_sym_f32] = ACTIONS(570), + [anon_sym_f64] = ACTIONS(570), + [anon_sym_bool] = ACTIONS(570), + [anon_sym_str] = ACTIONS(570), + [anon_sym_char] = ACTIONS(570), + [anon_sym_DASH] = ACTIONS(582), + [anon_sym_SLASH] = ACTIONS(582), + [anon_sym_PERCENT] = ACTIONS(582), + [anon_sym_CARET] = ACTIONS(582), + [anon_sym_BANG] = ACTIONS(582), + [anon_sym_AMP] = ACTIONS(582), + [anon_sym_PIPE] = ACTIONS(582), + [anon_sym_AMP_AMP] = ACTIONS(572), + [anon_sym_PIPE_PIPE] = ACTIONS(572), + [anon_sym_LT_LT] = ACTIONS(582), + [anon_sym_GT_GT] = ACTIONS(582), + [anon_sym_PLUS_EQ] = ACTIONS(572), + [anon_sym_DASH_EQ] = ACTIONS(572), + [anon_sym_STAR_EQ] = ACTIONS(572), + [anon_sym_SLASH_EQ] = ACTIONS(572), + [anon_sym_PERCENT_EQ] = ACTIONS(572), + [anon_sym_CARET_EQ] = ACTIONS(572), + [anon_sym_AMP_EQ] = ACTIONS(572), + [anon_sym_PIPE_EQ] = ACTIONS(572), + [anon_sym_LT_LT_EQ] = ACTIONS(572), + [anon_sym_GT_GT_EQ] = ACTIONS(572), + [anon_sym_EQ] = ACTIONS(582), + [anon_sym_EQ_EQ] = ACTIONS(572), + [anon_sym_BANG_EQ] = ACTIONS(572), + [anon_sym_GT] = ACTIONS(582), + [anon_sym_LT] = ACTIONS(582), + [anon_sym_GT_EQ] = ACTIONS(572), + [anon_sym_LT_EQ] = ACTIONS(572), + [anon_sym_AT] = ACTIONS(572), + [anon_sym__] = ACTIONS(582), + [anon_sym_DOT] = ACTIONS(582), + [anon_sym_DOT_DOT] = ACTIONS(582), + [anon_sym_DOT_DOT_DOT] = ACTIONS(572), + [anon_sym_DOT_DOT_EQ] = ACTIONS(572), + [anon_sym_COMMA] = ACTIONS(572), + [anon_sym_COLON_COLON] = ACTIONS(572), + [anon_sym_DASH_GT] = ACTIONS(572), + [anon_sym_POUND] = ACTIONS(572), + [anon_sym_SQUOTE] = ACTIONS(570), + [anon_sym_as] = ACTIONS(570), + [anon_sym_async] = ACTIONS(570), + [anon_sym_await] = ACTIONS(570), + [anon_sym_break] = ACTIONS(570), + [anon_sym_const] = ACTIONS(570), + [anon_sym_continue] = ACTIONS(570), + [anon_sym_default] = ACTIONS(570), + [anon_sym_enum] = ACTIONS(570), + [anon_sym_fn] = ACTIONS(570), + [anon_sym_for] = ACTIONS(570), + [anon_sym_gen] = ACTIONS(570), + [anon_sym_if] = ACTIONS(570), + [anon_sym_impl] = ACTIONS(570), + [anon_sym_let] = ACTIONS(570), + [anon_sym_loop] = ACTIONS(570), + [anon_sym_match] = ACTIONS(570), + [anon_sym_mod] = ACTIONS(570), + [anon_sym_pub] = ACTIONS(570), + [anon_sym_return] = ACTIONS(570), + [anon_sym_static] = ACTIONS(570), + [anon_sym_struct] = ACTIONS(570), + [anon_sym_trait] = ACTIONS(570), + [anon_sym_type] = ACTIONS(570), + [anon_sym_union] = ACTIONS(570), + [anon_sym_unsafe] = ACTIONS(570), + [anon_sym_use] = ACTIONS(570), + [anon_sym_where] = ACTIONS(570), + [anon_sym_while] = ACTIONS(570), + [sym_mutable_specifier] = ACTIONS(570), + [sym_integer_literal] = ACTIONS(586), + [aux_sym_string_literal_token1] = ACTIONS(588), + [sym_char_literal] = ACTIONS(586), + [anon_sym_true] = ACTIONS(590), + [anon_sym_false] = ACTIONS(590), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(570), + [sym_super] = ACTIONS(570), + [sym_crate] = ACTIONS(570), + [sym_metavariable] = ACTIONS(592), + [sym__raw_string_literal_start] = ACTIONS(594), + [sym_float_literal] = ACTIONS(586), }, [STATE(70)] = { - [sym__token_pattern] = STATE(154), - [sym_token_tree_pattern] = STATE(186), - [sym_token_binding_pattern] = STATE(186), - [sym_token_repetition_pattern] = STATE(186), - [sym__literal] = STATE(186), - [sym_string_literal] = STATE(175), - [sym_raw_string_literal] = STATE(175), - [sym_boolean_literal] = STATE(175), + [sym_token_tree] = STATE(170), + [sym_token_repetition] = STATE(170), + [sym__literal] = STATE(170), + [sym_string_literal] = STATE(174), + [sym_raw_string_literal] = STATE(174), + [sym_boolean_literal] = STATE(174), [sym_line_comment] = STATE(70), [sym_block_comment] = STATE(70), - [aux_sym_token_tree_pattern_repeat1] = STATE(67), - [aux_sym__non_special_token_repeat1] = STATE(141), - [sym_identifier] = ACTIONS(638), - [anon_sym_SEMI] = ACTIONS(640), - [anon_sym_LPAREN] = ACTIONS(642), - [anon_sym_RPAREN] = ACTIONS(644), - [anon_sym_LBRACK] = ACTIONS(646), - [anon_sym_LBRACE] = ACTIONS(648), - [anon_sym_EQ_GT] = ACTIONS(640), - [anon_sym_COLON] = ACTIONS(650), - [anon_sym_DOLLAR] = ACTIONS(652), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_STAR] = ACTIONS(650), - [anon_sym_QMARK] = ACTIONS(640), - [anon_sym_u8] = ACTIONS(638), - [anon_sym_i8] = ACTIONS(638), - [anon_sym_u16] = ACTIONS(638), - [anon_sym_i16] = ACTIONS(638), - [anon_sym_u32] = ACTIONS(638), - [anon_sym_i32] = ACTIONS(638), - [anon_sym_u64] = ACTIONS(638), - [anon_sym_i64] = ACTIONS(638), - [anon_sym_u128] = ACTIONS(638), - [anon_sym_i128] = ACTIONS(638), - [anon_sym_isize] = ACTIONS(638), - [anon_sym_usize] = ACTIONS(638), - [anon_sym_f32] = ACTIONS(638), - [anon_sym_f64] = ACTIONS(638), - [anon_sym_bool] = ACTIONS(638), - [anon_sym_str] = ACTIONS(638), - [anon_sym_char] = ACTIONS(638), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(650), - [anon_sym_PERCENT] = ACTIONS(650), - [anon_sym_CARET] = ACTIONS(650), - [anon_sym_BANG] = ACTIONS(650), - [anon_sym_AMP] = ACTIONS(650), - [anon_sym_PIPE] = ACTIONS(650), - [anon_sym_AMP_AMP] = ACTIONS(640), - [anon_sym_PIPE_PIPE] = ACTIONS(640), - [anon_sym_LT_LT] = ACTIONS(650), - [anon_sym_GT_GT] = ACTIONS(650), - [anon_sym_PLUS_EQ] = ACTIONS(640), - [anon_sym_DASH_EQ] = ACTIONS(640), - [anon_sym_STAR_EQ] = ACTIONS(640), - [anon_sym_SLASH_EQ] = ACTIONS(640), - [anon_sym_PERCENT_EQ] = ACTIONS(640), - [anon_sym_CARET_EQ] = ACTIONS(640), - [anon_sym_AMP_EQ] = ACTIONS(640), - [anon_sym_PIPE_EQ] = ACTIONS(640), - [anon_sym_LT_LT_EQ] = ACTIONS(640), - [anon_sym_GT_GT_EQ] = ACTIONS(640), - [anon_sym_EQ] = ACTIONS(650), - [anon_sym_EQ_EQ] = ACTIONS(640), - [anon_sym_BANG_EQ] = ACTIONS(640), - [anon_sym_GT] = ACTIONS(650), - [anon_sym_LT] = ACTIONS(650), - [anon_sym_GT_EQ] = ACTIONS(640), - [anon_sym_LT_EQ] = ACTIONS(640), - [anon_sym_AT] = ACTIONS(640), - [anon_sym__] = ACTIONS(650), - [anon_sym_DOT] = ACTIONS(650), - [anon_sym_DOT_DOT] = ACTIONS(650), - [anon_sym_DOT_DOT_DOT] = ACTIONS(640), - [anon_sym_DOT_DOT_EQ] = ACTIONS(640), - [anon_sym_COMMA] = ACTIONS(640), - [anon_sym_COLON_COLON] = ACTIONS(640), - [anon_sym_DASH_GT] = ACTIONS(640), - [anon_sym_POUND] = ACTIONS(640), - [anon_sym_SQUOTE] = ACTIONS(638), - [anon_sym_as] = ACTIONS(638), - [anon_sym_async] = ACTIONS(638), - [anon_sym_await] = ACTIONS(638), - [anon_sym_break] = ACTIONS(638), - [anon_sym_const] = ACTIONS(638), - [anon_sym_continue] = ACTIONS(638), - [anon_sym_default] = ACTIONS(638), - [anon_sym_enum] = ACTIONS(638), - [anon_sym_fn] = ACTIONS(638), - [anon_sym_for] = ACTIONS(638), - [anon_sym_gen] = ACTIONS(638), - [anon_sym_if] = ACTIONS(638), - [anon_sym_impl] = ACTIONS(638), - [anon_sym_let] = ACTIONS(638), - [anon_sym_loop] = ACTIONS(638), - [anon_sym_match] = ACTIONS(638), - [anon_sym_mod] = ACTIONS(638), - [anon_sym_pub] = ACTIONS(638), - [anon_sym_return] = ACTIONS(638), - [anon_sym_static] = ACTIONS(638), - [anon_sym_struct] = ACTIONS(638), - [anon_sym_trait] = ACTIONS(638), - [anon_sym_type] = ACTIONS(638), - [anon_sym_union] = ACTIONS(638), - [anon_sym_unsafe] = ACTIONS(638), - [anon_sym_use] = ACTIONS(638), - [anon_sym_where] = ACTIONS(638), - [anon_sym_while] = ACTIONS(638), - [sym_mutable_specifier] = ACTIONS(638), - [sym_integer_literal] = ACTIONS(654), - [aux_sym_string_literal_token1] = ACTIONS(656), - [sym_char_literal] = ACTIONS(654), - [anon_sym_true] = ACTIONS(658), - [anon_sym_false] = ACTIONS(658), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(638), - [sym_super] = ACTIONS(638), - [sym_crate] = ACTIONS(638), - [sym_metavariable] = ACTIONS(660), - [sym__raw_string_literal_start] = ACTIONS(662), - [sym_float_literal] = ACTIONS(654), + [aux_sym_token_tree_repeat1] = STATE(70), + [aux_sym__non_special_token_repeat1] = STATE(136), + [sym_identifier] = ACTIONS(596), + [anon_sym_SEMI] = ACTIONS(599), + [anon_sym_LPAREN] = ACTIONS(602), + [anon_sym_RPAREN] = ACTIONS(605), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_RBRACK] = ACTIONS(605), + [anon_sym_LBRACE] = ACTIONS(610), + [anon_sym_RBRACE] = ACTIONS(605), + [anon_sym_EQ_GT] = ACTIONS(599), + [anon_sym_COLON] = ACTIONS(613), + [anon_sym_DOLLAR] = ACTIONS(616), + [anon_sym_PLUS] = ACTIONS(613), + [anon_sym_STAR] = ACTIONS(613), + [anon_sym_QMARK] = ACTIONS(599), + [anon_sym_u8] = ACTIONS(596), + [anon_sym_i8] = ACTIONS(596), + [anon_sym_u16] = ACTIONS(596), + [anon_sym_i16] = ACTIONS(596), + [anon_sym_u32] = ACTIONS(596), + [anon_sym_i32] = ACTIONS(596), + [anon_sym_u64] = ACTIONS(596), + [anon_sym_i64] = ACTIONS(596), + [anon_sym_u128] = ACTIONS(596), + [anon_sym_i128] = ACTIONS(596), + [anon_sym_isize] = ACTIONS(596), + [anon_sym_usize] = ACTIONS(596), + [anon_sym_f32] = ACTIONS(596), + [anon_sym_f64] = ACTIONS(596), + [anon_sym_bool] = ACTIONS(596), + [anon_sym_str] = ACTIONS(596), + [anon_sym_char] = ACTIONS(596), + [anon_sym_DASH] = ACTIONS(613), + [anon_sym_SLASH] = ACTIONS(613), + [anon_sym_PERCENT] = ACTIONS(613), + [anon_sym_CARET] = ACTIONS(613), + [anon_sym_BANG] = ACTIONS(613), + [anon_sym_AMP] = ACTIONS(613), + [anon_sym_PIPE] = ACTIONS(613), + [anon_sym_AMP_AMP] = ACTIONS(599), + [anon_sym_PIPE_PIPE] = ACTIONS(599), + [anon_sym_LT_LT] = ACTIONS(613), + [anon_sym_GT_GT] = ACTIONS(613), + [anon_sym_PLUS_EQ] = ACTIONS(599), + [anon_sym_DASH_EQ] = ACTIONS(599), + [anon_sym_STAR_EQ] = ACTIONS(599), + [anon_sym_SLASH_EQ] = ACTIONS(599), + [anon_sym_PERCENT_EQ] = ACTIONS(599), + [anon_sym_CARET_EQ] = ACTIONS(599), + [anon_sym_AMP_EQ] = ACTIONS(599), + [anon_sym_PIPE_EQ] = ACTIONS(599), + [anon_sym_LT_LT_EQ] = ACTIONS(599), + [anon_sym_GT_GT_EQ] = ACTIONS(599), + [anon_sym_EQ] = ACTIONS(613), + [anon_sym_EQ_EQ] = ACTIONS(599), + [anon_sym_BANG_EQ] = ACTIONS(599), + [anon_sym_GT] = ACTIONS(613), + [anon_sym_LT] = ACTIONS(613), + [anon_sym_GT_EQ] = ACTIONS(599), + [anon_sym_LT_EQ] = ACTIONS(599), + [anon_sym_AT] = ACTIONS(599), + [anon_sym__] = ACTIONS(613), + [anon_sym_DOT] = ACTIONS(613), + [anon_sym_DOT_DOT] = ACTIONS(613), + [anon_sym_DOT_DOT_DOT] = ACTIONS(599), + [anon_sym_DOT_DOT_EQ] = ACTIONS(599), + [anon_sym_COMMA] = ACTIONS(599), + [anon_sym_COLON_COLON] = ACTIONS(599), + [anon_sym_DASH_GT] = ACTIONS(599), + [anon_sym_POUND] = ACTIONS(599), + [anon_sym_SQUOTE] = ACTIONS(596), + [anon_sym_as] = ACTIONS(596), + [anon_sym_async] = ACTIONS(596), + [anon_sym_await] = ACTIONS(596), + [anon_sym_break] = ACTIONS(596), + [anon_sym_const] = ACTIONS(596), + [anon_sym_continue] = ACTIONS(596), + [anon_sym_default] = ACTIONS(596), + [anon_sym_enum] = ACTIONS(596), + [anon_sym_fn] = ACTIONS(596), + [anon_sym_for] = ACTIONS(596), + [anon_sym_gen] = ACTIONS(596), + [anon_sym_if] = ACTIONS(596), + [anon_sym_impl] = ACTIONS(596), + [anon_sym_let] = ACTIONS(596), + [anon_sym_loop] = ACTIONS(596), + [anon_sym_match] = ACTIONS(596), + [anon_sym_mod] = ACTIONS(596), + [anon_sym_pub] = ACTIONS(596), + [anon_sym_return] = ACTIONS(596), + [anon_sym_static] = ACTIONS(596), + [anon_sym_struct] = ACTIONS(596), + [anon_sym_trait] = ACTIONS(596), + [anon_sym_type] = ACTIONS(596), + [anon_sym_union] = ACTIONS(596), + [anon_sym_unsafe] = ACTIONS(596), + [anon_sym_use] = ACTIONS(596), + [anon_sym_where] = ACTIONS(596), + [anon_sym_while] = ACTIONS(596), + [sym_mutable_specifier] = ACTIONS(596), + [sym_integer_literal] = ACTIONS(619), + [aux_sym_string_literal_token1] = ACTIONS(622), + [sym_char_literal] = ACTIONS(619), + [anon_sym_true] = ACTIONS(625), + [anon_sym_false] = ACTIONS(625), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(596), + [sym_super] = ACTIONS(596), + [sym_crate] = ACTIONS(596), + [sym_metavariable] = ACTIONS(628), + [sym__raw_string_literal_start] = ACTIONS(631), + [sym_float_literal] = ACTIONS(619), }, [STATE(71)] = { - [sym__token_pattern] = STATE(154), - [sym_token_tree_pattern] = STATE(186), - [sym_token_binding_pattern] = STATE(186), - [sym_token_repetition_pattern] = STATE(186), - [sym__literal] = STATE(186), - [sym_string_literal] = STATE(175), - [sym_raw_string_literal] = STATE(175), - [sym_boolean_literal] = STATE(175), + [sym__token_pattern] = STATE(171), + [sym_token_tree_pattern] = STATE(145), + [sym_token_binding_pattern] = STATE(145), + [sym_token_repetition_pattern] = STATE(145), + [sym__literal] = STATE(145), + [sym_string_literal] = STATE(174), + [sym_raw_string_literal] = STATE(174), + [sym_boolean_literal] = STATE(174), [sym_line_comment] = STATE(71), [sym_block_comment] = STATE(71), [aux_sym_token_tree_pattern_repeat1] = STATE(67), - [aux_sym__non_special_token_repeat1] = STATE(141), - [sym_identifier] = ACTIONS(638), - [anon_sym_SEMI] = ACTIONS(640), - [anon_sym_LPAREN] = ACTIONS(642), - [anon_sym_LBRACK] = ACTIONS(646), - [anon_sym_LBRACE] = ACTIONS(648), - [anon_sym_RBRACE] = ACTIONS(664), - [anon_sym_EQ_GT] = ACTIONS(640), - [anon_sym_COLON] = ACTIONS(650), - [anon_sym_DOLLAR] = ACTIONS(652), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_STAR] = ACTIONS(650), - [anon_sym_QMARK] = ACTIONS(640), - [anon_sym_u8] = ACTIONS(638), - [anon_sym_i8] = ACTIONS(638), - [anon_sym_u16] = ACTIONS(638), - [anon_sym_i16] = ACTIONS(638), - [anon_sym_u32] = ACTIONS(638), - [anon_sym_i32] = ACTIONS(638), - [anon_sym_u64] = ACTIONS(638), - [anon_sym_i64] = ACTIONS(638), - [anon_sym_u128] = ACTIONS(638), - [anon_sym_i128] = ACTIONS(638), - [anon_sym_isize] = ACTIONS(638), - [anon_sym_usize] = ACTIONS(638), - [anon_sym_f32] = ACTIONS(638), - [anon_sym_f64] = ACTIONS(638), - [anon_sym_bool] = ACTIONS(638), - [anon_sym_str] = ACTIONS(638), - [anon_sym_char] = ACTIONS(638), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(650), - [anon_sym_PERCENT] = ACTIONS(650), - [anon_sym_CARET] = ACTIONS(650), - [anon_sym_BANG] = ACTIONS(650), - [anon_sym_AMP] = ACTIONS(650), - [anon_sym_PIPE] = ACTIONS(650), - [anon_sym_AMP_AMP] = ACTIONS(640), - [anon_sym_PIPE_PIPE] = ACTIONS(640), - [anon_sym_LT_LT] = ACTIONS(650), - [anon_sym_GT_GT] = ACTIONS(650), - [anon_sym_PLUS_EQ] = ACTIONS(640), - [anon_sym_DASH_EQ] = ACTIONS(640), - [anon_sym_STAR_EQ] = ACTIONS(640), - [anon_sym_SLASH_EQ] = ACTIONS(640), - [anon_sym_PERCENT_EQ] = ACTIONS(640), - [anon_sym_CARET_EQ] = ACTIONS(640), - [anon_sym_AMP_EQ] = ACTIONS(640), - [anon_sym_PIPE_EQ] = ACTIONS(640), - [anon_sym_LT_LT_EQ] = ACTIONS(640), - [anon_sym_GT_GT_EQ] = ACTIONS(640), - [anon_sym_EQ] = ACTIONS(650), - [anon_sym_EQ_EQ] = ACTIONS(640), - [anon_sym_BANG_EQ] = ACTIONS(640), - [anon_sym_GT] = ACTIONS(650), - [anon_sym_LT] = ACTIONS(650), - [anon_sym_GT_EQ] = ACTIONS(640), - [anon_sym_LT_EQ] = ACTIONS(640), - [anon_sym_AT] = ACTIONS(640), - [anon_sym__] = ACTIONS(650), - [anon_sym_DOT] = ACTIONS(650), - [anon_sym_DOT_DOT] = ACTIONS(650), - [anon_sym_DOT_DOT_DOT] = ACTIONS(640), - [anon_sym_DOT_DOT_EQ] = ACTIONS(640), - [anon_sym_COMMA] = ACTIONS(640), - [anon_sym_COLON_COLON] = ACTIONS(640), - [anon_sym_DASH_GT] = ACTIONS(640), - [anon_sym_POUND] = ACTIONS(640), - [anon_sym_SQUOTE] = ACTIONS(638), - [anon_sym_as] = ACTIONS(638), - [anon_sym_async] = ACTIONS(638), - [anon_sym_await] = ACTIONS(638), - [anon_sym_break] = ACTIONS(638), - [anon_sym_const] = ACTIONS(638), - [anon_sym_continue] = ACTIONS(638), - [anon_sym_default] = ACTIONS(638), - [anon_sym_enum] = ACTIONS(638), - [anon_sym_fn] = ACTIONS(638), - [anon_sym_for] = ACTIONS(638), - [anon_sym_gen] = ACTIONS(638), - [anon_sym_if] = ACTIONS(638), - [anon_sym_impl] = ACTIONS(638), - [anon_sym_let] = ACTIONS(638), - [anon_sym_loop] = ACTIONS(638), - [anon_sym_match] = ACTIONS(638), - [anon_sym_mod] = ACTIONS(638), - [anon_sym_pub] = ACTIONS(638), - [anon_sym_return] = ACTIONS(638), - [anon_sym_static] = ACTIONS(638), - [anon_sym_struct] = ACTIONS(638), - [anon_sym_trait] = ACTIONS(638), - [anon_sym_type] = ACTIONS(638), - [anon_sym_union] = ACTIONS(638), - [anon_sym_unsafe] = ACTIONS(638), - [anon_sym_use] = ACTIONS(638), - [anon_sym_where] = ACTIONS(638), - [anon_sym_while] = ACTIONS(638), - [sym_mutable_specifier] = ACTIONS(638), - [sym_integer_literal] = ACTIONS(654), - [aux_sym_string_literal_token1] = ACTIONS(656), - [sym_char_literal] = ACTIONS(654), - [anon_sym_true] = ACTIONS(658), - [anon_sym_false] = ACTIONS(658), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(638), - [sym_super] = ACTIONS(638), - [sym_crate] = ACTIONS(638), - [sym_metavariable] = ACTIONS(660), - [sym__raw_string_literal_start] = ACTIONS(662), - [sym_float_literal] = ACTIONS(654), + [aux_sym__non_special_token_repeat1] = STATE(135), + [sym_identifier] = ACTIONS(570), + [anon_sym_SEMI] = ACTIONS(572), + [anon_sym_LPAREN] = ACTIONS(574), + [anon_sym_LBRACK] = ACTIONS(576), + [anon_sym_RBRACK] = ACTIONS(580), + [anon_sym_LBRACE] = ACTIONS(578), + [anon_sym_EQ_GT] = ACTIONS(572), + [anon_sym_COLON] = ACTIONS(582), + [anon_sym_DOLLAR] = ACTIONS(584), + [anon_sym_PLUS] = ACTIONS(582), + [anon_sym_STAR] = ACTIONS(582), + [anon_sym_QMARK] = ACTIONS(572), + [anon_sym_u8] = ACTIONS(570), + [anon_sym_i8] = ACTIONS(570), + [anon_sym_u16] = ACTIONS(570), + [anon_sym_i16] = ACTIONS(570), + [anon_sym_u32] = ACTIONS(570), + [anon_sym_i32] = ACTIONS(570), + [anon_sym_u64] = ACTIONS(570), + [anon_sym_i64] = ACTIONS(570), + [anon_sym_u128] = ACTIONS(570), + [anon_sym_i128] = ACTIONS(570), + [anon_sym_isize] = ACTIONS(570), + [anon_sym_usize] = ACTIONS(570), + [anon_sym_f32] = ACTIONS(570), + [anon_sym_f64] = ACTIONS(570), + [anon_sym_bool] = ACTIONS(570), + [anon_sym_str] = ACTIONS(570), + [anon_sym_char] = ACTIONS(570), + [anon_sym_DASH] = ACTIONS(582), + [anon_sym_SLASH] = ACTIONS(582), + [anon_sym_PERCENT] = ACTIONS(582), + [anon_sym_CARET] = ACTIONS(582), + [anon_sym_BANG] = ACTIONS(582), + [anon_sym_AMP] = ACTIONS(582), + [anon_sym_PIPE] = ACTIONS(582), + [anon_sym_AMP_AMP] = ACTIONS(572), + [anon_sym_PIPE_PIPE] = ACTIONS(572), + [anon_sym_LT_LT] = ACTIONS(582), + [anon_sym_GT_GT] = ACTIONS(582), + [anon_sym_PLUS_EQ] = ACTIONS(572), + [anon_sym_DASH_EQ] = ACTIONS(572), + [anon_sym_STAR_EQ] = ACTIONS(572), + [anon_sym_SLASH_EQ] = ACTIONS(572), + [anon_sym_PERCENT_EQ] = ACTIONS(572), + [anon_sym_CARET_EQ] = ACTIONS(572), + [anon_sym_AMP_EQ] = ACTIONS(572), + [anon_sym_PIPE_EQ] = ACTIONS(572), + [anon_sym_LT_LT_EQ] = ACTIONS(572), + [anon_sym_GT_GT_EQ] = ACTIONS(572), + [anon_sym_EQ] = ACTIONS(582), + [anon_sym_EQ_EQ] = ACTIONS(572), + [anon_sym_BANG_EQ] = ACTIONS(572), + [anon_sym_GT] = ACTIONS(582), + [anon_sym_LT] = ACTIONS(582), + [anon_sym_GT_EQ] = ACTIONS(572), + [anon_sym_LT_EQ] = ACTIONS(572), + [anon_sym_AT] = ACTIONS(572), + [anon_sym__] = ACTIONS(582), + [anon_sym_DOT] = ACTIONS(582), + [anon_sym_DOT_DOT] = ACTIONS(582), + [anon_sym_DOT_DOT_DOT] = ACTIONS(572), + [anon_sym_DOT_DOT_EQ] = ACTIONS(572), + [anon_sym_COMMA] = ACTIONS(572), + [anon_sym_COLON_COLON] = ACTIONS(572), + [anon_sym_DASH_GT] = ACTIONS(572), + [anon_sym_POUND] = ACTIONS(572), + [anon_sym_SQUOTE] = ACTIONS(570), + [anon_sym_as] = ACTIONS(570), + [anon_sym_async] = ACTIONS(570), + [anon_sym_await] = ACTIONS(570), + [anon_sym_break] = ACTIONS(570), + [anon_sym_const] = ACTIONS(570), + [anon_sym_continue] = ACTIONS(570), + [anon_sym_default] = ACTIONS(570), + [anon_sym_enum] = ACTIONS(570), + [anon_sym_fn] = ACTIONS(570), + [anon_sym_for] = ACTIONS(570), + [anon_sym_gen] = ACTIONS(570), + [anon_sym_if] = ACTIONS(570), + [anon_sym_impl] = ACTIONS(570), + [anon_sym_let] = ACTIONS(570), + [anon_sym_loop] = ACTIONS(570), + [anon_sym_match] = ACTIONS(570), + [anon_sym_mod] = ACTIONS(570), + [anon_sym_pub] = ACTIONS(570), + [anon_sym_return] = ACTIONS(570), + [anon_sym_static] = ACTIONS(570), + [anon_sym_struct] = ACTIONS(570), + [anon_sym_trait] = ACTIONS(570), + [anon_sym_type] = ACTIONS(570), + [anon_sym_union] = ACTIONS(570), + [anon_sym_unsafe] = ACTIONS(570), + [anon_sym_use] = ACTIONS(570), + [anon_sym_where] = ACTIONS(570), + [anon_sym_while] = ACTIONS(570), + [sym_mutable_specifier] = ACTIONS(570), + [sym_integer_literal] = ACTIONS(586), + [aux_sym_string_literal_token1] = ACTIONS(588), + [sym_char_literal] = ACTIONS(586), + [anon_sym_true] = ACTIONS(590), + [anon_sym_false] = ACTIONS(590), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(570), + [sym_super] = ACTIONS(570), + [sym_crate] = ACTIONS(570), + [sym_metavariable] = ACTIONS(592), + [sym__raw_string_literal_start] = ACTIONS(594), + [sym_float_literal] = ACTIONS(586), }, [STATE(72)] = { - [sym__token_pattern] = STATE(154), - [sym_token_tree_pattern] = STATE(186), - [sym_token_binding_pattern] = STATE(186), - [sym_token_repetition_pattern] = STATE(186), - [sym__literal] = STATE(186), - [sym_string_literal] = STATE(175), - [sym_raw_string_literal] = STATE(175), - [sym_boolean_literal] = STATE(175), + [sym_delim_token_tree] = STATE(208), + [sym__delim_tokens] = STATE(209), + [sym__non_delim_token] = STATE(208), + [sym__literal] = STATE(204), + [sym_string_literal] = STATE(201), + [sym_raw_string_literal] = STATE(201), + [sym_boolean_literal] = STATE(201), [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(141), - [sym_identifier] = ACTIONS(638), - [anon_sym_SEMI] = ACTIONS(640), - [anon_sym_LPAREN] = ACTIONS(642), - [anon_sym_LBRACK] = ACTIONS(646), - [anon_sym_RBRACK] = ACTIONS(664), + [aux_sym__non_special_token_repeat1] = STATE(180), + [aux_sym_delim_token_tree_repeat1] = STATE(72), + [sym_identifier] = ACTIONS(634), + [anon_sym_SEMI] = ACTIONS(637), + [anon_sym_LPAREN] = ACTIONS(640), + [anon_sym_RPAREN] = ACTIONS(643), + [anon_sym_LBRACK] = ACTIONS(645), + [anon_sym_RBRACK] = ACTIONS(643), [anon_sym_LBRACE] = ACTIONS(648), - [anon_sym_EQ_GT] = ACTIONS(640), - [anon_sym_COLON] = ACTIONS(650), - [anon_sym_DOLLAR] = ACTIONS(652), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_STAR] = ACTIONS(650), - [anon_sym_QMARK] = ACTIONS(640), - [anon_sym_u8] = ACTIONS(638), - [anon_sym_i8] = ACTIONS(638), - [anon_sym_u16] = ACTIONS(638), - [anon_sym_i16] = ACTIONS(638), - [anon_sym_u32] = ACTIONS(638), - [anon_sym_i32] = ACTIONS(638), - [anon_sym_u64] = ACTIONS(638), - [anon_sym_i64] = ACTIONS(638), - [anon_sym_u128] = ACTIONS(638), - [anon_sym_i128] = ACTIONS(638), - [anon_sym_isize] = ACTIONS(638), - [anon_sym_usize] = ACTIONS(638), - [anon_sym_f32] = ACTIONS(638), - [anon_sym_f64] = ACTIONS(638), - [anon_sym_bool] = ACTIONS(638), - [anon_sym_str] = ACTIONS(638), - [anon_sym_char] = ACTIONS(638), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(650), - [anon_sym_PERCENT] = ACTIONS(650), - [anon_sym_CARET] = ACTIONS(650), - [anon_sym_BANG] = ACTIONS(650), - [anon_sym_AMP] = ACTIONS(650), - [anon_sym_PIPE] = ACTIONS(650), - [anon_sym_AMP_AMP] = ACTIONS(640), - [anon_sym_PIPE_PIPE] = ACTIONS(640), - [anon_sym_LT_LT] = ACTIONS(650), - [anon_sym_GT_GT] = ACTIONS(650), - [anon_sym_PLUS_EQ] = ACTIONS(640), - [anon_sym_DASH_EQ] = ACTIONS(640), - [anon_sym_STAR_EQ] = ACTIONS(640), - [anon_sym_SLASH_EQ] = ACTIONS(640), - [anon_sym_PERCENT_EQ] = ACTIONS(640), - [anon_sym_CARET_EQ] = ACTIONS(640), - [anon_sym_AMP_EQ] = ACTIONS(640), - [anon_sym_PIPE_EQ] = ACTIONS(640), - [anon_sym_LT_LT_EQ] = ACTIONS(640), - [anon_sym_GT_GT_EQ] = ACTIONS(640), - [anon_sym_EQ] = ACTIONS(650), - [anon_sym_EQ_EQ] = ACTIONS(640), - [anon_sym_BANG_EQ] = ACTIONS(640), - [anon_sym_GT] = ACTIONS(650), - [anon_sym_LT] = ACTIONS(650), - [anon_sym_GT_EQ] = ACTIONS(640), - [anon_sym_LT_EQ] = ACTIONS(640), - [anon_sym_AT] = ACTIONS(640), - [anon_sym__] = ACTIONS(650), - [anon_sym_DOT] = ACTIONS(650), - [anon_sym_DOT_DOT] = ACTIONS(650), - [anon_sym_DOT_DOT_DOT] = ACTIONS(640), - [anon_sym_DOT_DOT_EQ] = ACTIONS(640), - [anon_sym_COMMA] = ACTIONS(640), - [anon_sym_COLON_COLON] = ACTIONS(640), - [anon_sym_DASH_GT] = ACTIONS(640), - [anon_sym_POUND] = ACTIONS(640), - [anon_sym_SQUOTE] = ACTIONS(638), - [anon_sym_as] = ACTIONS(638), - [anon_sym_async] = ACTIONS(638), - [anon_sym_await] = ACTIONS(638), - [anon_sym_break] = ACTIONS(638), - [anon_sym_const] = ACTIONS(638), - [anon_sym_continue] = ACTIONS(638), - [anon_sym_default] = ACTIONS(638), - [anon_sym_enum] = ACTIONS(638), - [anon_sym_fn] = ACTIONS(638), - [anon_sym_for] = ACTIONS(638), - [anon_sym_gen] = ACTIONS(638), - [anon_sym_if] = ACTIONS(638), - [anon_sym_impl] = ACTIONS(638), - [anon_sym_let] = ACTIONS(638), - [anon_sym_loop] = ACTIONS(638), - [anon_sym_match] = ACTIONS(638), - [anon_sym_mod] = ACTIONS(638), - [anon_sym_pub] = ACTIONS(638), - [anon_sym_return] = ACTIONS(638), - [anon_sym_static] = ACTIONS(638), - [anon_sym_struct] = ACTIONS(638), - [anon_sym_trait] = ACTIONS(638), - [anon_sym_type] = ACTIONS(638), - [anon_sym_union] = ACTIONS(638), - [anon_sym_unsafe] = ACTIONS(638), - [anon_sym_use] = ACTIONS(638), - [anon_sym_where] = ACTIONS(638), - [anon_sym_while] = ACTIONS(638), - [sym_mutable_specifier] = ACTIONS(638), - [sym_integer_literal] = ACTIONS(654), - [aux_sym_string_literal_token1] = ACTIONS(656), - [sym_char_literal] = ACTIONS(654), - [anon_sym_true] = ACTIONS(658), - [anon_sym_false] = ACTIONS(658), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(638), - [sym_super] = ACTIONS(638), - [sym_crate] = ACTIONS(638), - [sym_metavariable] = ACTIONS(660), - [sym__raw_string_literal_start] = ACTIONS(662), - [sym_float_literal] = ACTIONS(654), + [anon_sym_RBRACE] = ACTIONS(643), + [anon_sym_EQ_GT] = ACTIONS(637), + [anon_sym_COLON] = ACTIONS(651), + [anon_sym_DOLLAR] = ACTIONS(654), + [anon_sym_PLUS] = ACTIONS(651), + [anon_sym_STAR] = ACTIONS(651), + [anon_sym_QMARK] = ACTIONS(637), + [anon_sym_u8] = ACTIONS(634), + [anon_sym_i8] = ACTIONS(634), + [anon_sym_u16] = ACTIONS(634), + [anon_sym_i16] = ACTIONS(634), + [anon_sym_u32] = ACTIONS(634), + [anon_sym_i32] = ACTIONS(634), + [anon_sym_u64] = ACTIONS(634), + [anon_sym_i64] = ACTIONS(634), + [anon_sym_u128] = ACTIONS(634), + [anon_sym_i128] = ACTIONS(634), + [anon_sym_isize] = ACTIONS(634), + [anon_sym_usize] = ACTIONS(634), + [anon_sym_f32] = ACTIONS(634), + [anon_sym_f64] = ACTIONS(634), + [anon_sym_bool] = ACTIONS(634), + [anon_sym_str] = ACTIONS(634), + [anon_sym_char] = ACTIONS(634), + [anon_sym_DASH] = ACTIONS(651), + [anon_sym_SLASH] = ACTIONS(651), + [anon_sym_PERCENT] = ACTIONS(651), + [anon_sym_CARET] = ACTIONS(651), + [anon_sym_BANG] = ACTIONS(651), + [anon_sym_AMP] = ACTIONS(651), + [anon_sym_PIPE] = ACTIONS(651), + [anon_sym_AMP_AMP] = ACTIONS(637), + [anon_sym_PIPE_PIPE] = ACTIONS(637), + [anon_sym_LT_LT] = ACTIONS(651), + [anon_sym_GT_GT] = ACTIONS(651), + [anon_sym_PLUS_EQ] = ACTIONS(637), + [anon_sym_DASH_EQ] = ACTIONS(637), + [anon_sym_STAR_EQ] = ACTIONS(637), + [anon_sym_SLASH_EQ] = ACTIONS(637), + [anon_sym_PERCENT_EQ] = ACTIONS(637), + [anon_sym_CARET_EQ] = ACTIONS(637), + [anon_sym_AMP_EQ] = ACTIONS(637), + [anon_sym_PIPE_EQ] = ACTIONS(637), + [anon_sym_LT_LT_EQ] = ACTIONS(637), + [anon_sym_GT_GT_EQ] = ACTIONS(637), + [anon_sym_EQ] = ACTIONS(651), + [anon_sym_EQ_EQ] = ACTIONS(637), + [anon_sym_BANG_EQ] = ACTIONS(637), + [anon_sym_GT] = ACTIONS(651), + [anon_sym_LT] = ACTIONS(651), + [anon_sym_GT_EQ] = ACTIONS(637), + [anon_sym_LT_EQ] = ACTIONS(637), + [anon_sym_AT] = ACTIONS(637), + [anon_sym__] = ACTIONS(651), + [anon_sym_DOT] = ACTIONS(651), + [anon_sym_DOT_DOT] = ACTIONS(651), + [anon_sym_DOT_DOT_DOT] = ACTIONS(637), + [anon_sym_DOT_DOT_EQ] = ACTIONS(637), + [anon_sym_COMMA] = ACTIONS(637), + [anon_sym_COLON_COLON] = ACTIONS(637), + [anon_sym_DASH_GT] = ACTIONS(637), + [anon_sym_POUND] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(634), + [anon_sym_as] = ACTIONS(634), + [anon_sym_async] = ACTIONS(634), + [anon_sym_await] = ACTIONS(634), + [anon_sym_break] = ACTIONS(634), + [anon_sym_const] = ACTIONS(634), + [anon_sym_continue] = ACTIONS(634), + [anon_sym_default] = ACTIONS(634), + [anon_sym_enum] = ACTIONS(634), + [anon_sym_fn] = ACTIONS(634), + [anon_sym_for] = ACTIONS(634), + [anon_sym_gen] = ACTIONS(634), + [anon_sym_if] = ACTIONS(634), + [anon_sym_impl] = ACTIONS(634), + [anon_sym_let] = ACTIONS(634), + [anon_sym_loop] = ACTIONS(634), + [anon_sym_match] = ACTIONS(634), + [anon_sym_mod] = ACTIONS(634), + [anon_sym_pub] = ACTIONS(634), + [anon_sym_return] = ACTIONS(634), + [anon_sym_static] = ACTIONS(634), + [anon_sym_struct] = ACTIONS(634), + [anon_sym_trait] = ACTIONS(634), + [anon_sym_type] = ACTIONS(634), + [anon_sym_union] = ACTIONS(634), + [anon_sym_unsafe] = ACTIONS(634), + [anon_sym_use] = ACTIONS(634), + [anon_sym_where] = ACTIONS(634), + [anon_sym_while] = ACTIONS(634), + [sym_mutable_specifier] = ACTIONS(634), + [sym_integer_literal] = ACTIONS(657), + [aux_sym_string_literal_token1] = ACTIONS(660), + [sym_char_literal] = ACTIONS(657), + [anon_sym_true] = ACTIONS(663), + [anon_sym_false] = ACTIONS(663), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(634), + [sym_super] = ACTIONS(634), + [sym_crate] = ACTIONS(634), + [sym__raw_string_literal_start] = ACTIONS(666), + [sym_float_literal] = ACTIONS(657), }, [STATE(73)] = { - [sym__token_pattern] = STATE(154), - [sym_token_tree_pattern] = STATE(186), - [sym_token_binding_pattern] = STATE(186), - [sym_token_repetition_pattern] = STATE(186), - [sym__literal] = STATE(186), - [sym_string_literal] = STATE(175), - [sym_raw_string_literal] = STATE(175), - [sym_boolean_literal] = STATE(175), + [sym__token_pattern] = STATE(171), + [sym_token_tree_pattern] = STATE(145), + [sym_token_binding_pattern] = STATE(145), + [sym_token_repetition_pattern] = STATE(145), + [sym__literal] = STATE(145), + [sym_string_literal] = STATE(174), + [sym_raw_string_literal] = STATE(174), + [sym_boolean_literal] = STATE(174), [sym_line_comment] = STATE(73), [sym_block_comment] = STATE(73), - [aux_sym_token_tree_pattern_repeat1] = STATE(70), - [aux_sym__non_special_token_repeat1] = STATE(141), - [sym_identifier] = ACTIONS(638), - [anon_sym_SEMI] = ACTIONS(640), - [anon_sym_LPAREN] = ACTIONS(642), - [anon_sym_RPAREN] = ACTIONS(666), - [anon_sym_LBRACK] = ACTIONS(646), - [anon_sym_LBRACE] = ACTIONS(648), - [anon_sym_EQ_GT] = ACTIONS(640), - [anon_sym_COLON] = ACTIONS(650), - [anon_sym_DOLLAR] = ACTIONS(652), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_STAR] = ACTIONS(650), - [anon_sym_QMARK] = ACTIONS(640), - [anon_sym_u8] = ACTIONS(638), - [anon_sym_i8] = ACTIONS(638), - [anon_sym_u16] = ACTIONS(638), - [anon_sym_i16] = ACTIONS(638), - [anon_sym_u32] = ACTIONS(638), - [anon_sym_i32] = ACTIONS(638), - [anon_sym_u64] = ACTIONS(638), - [anon_sym_i64] = ACTIONS(638), - [anon_sym_u128] = ACTIONS(638), - [anon_sym_i128] = ACTIONS(638), - [anon_sym_isize] = ACTIONS(638), - [anon_sym_usize] = ACTIONS(638), - [anon_sym_f32] = ACTIONS(638), - [anon_sym_f64] = ACTIONS(638), - [anon_sym_bool] = ACTIONS(638), - [anon_sym_str] = ACTIONS(638), - [anon_sym_char] = ACTIONS(638), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(650), - [anon_sym_PERCENT] = ACTIONS(650), - [anon_sym_CARET] = ACTIONS(650), - [anon_sym_BANG] = ACTIONS(650), - [anon_sym_AMP] = ACTIONS(650), - [anon_sym_PIPE] = ACTIONS(650), - [anon_sym_AMP_AMP] = ACTIONS(640), - [anon_sym_PIPE_PIPE] = ACTIONS(640), - [anon_sym_LT_LT] = ACTIONS(650), - [anon_sym_GT_GT] = ACTIONS(650), - [anon_sym_PLUS_EQ] = ACTIONS(640), - [anon_sym_DASH_EQ] = ACTIONS(640), - [anon_sym_STAR_EQ] = ACTIONS(640), - [anon_sym_SLASH_EQ] = ACTIONS(640), - [anon_sym_PERCENT_EQ] = ACTIONS(640), - [anon_sym_CARET_EQ] = ACTIONS(640), - [anon_sym_AMP_EQ] = ACTIONS(640), - [anon_sym_PIPE_EQ] = ACTIONS(640), - [anon_sym_LT_LT_EQ] = ACTIONS(640), - [anon_sym_GT_GT_EQ] = ACTIONS(640), - [anon_sym_EQ] = ACTIONS(650), - [anon_sym_EQ_EQ] = ACTIONS(640), - [anon_sym_BANG_EQ] = ACTIONS(640), - [anon_sym_GT] = ACTIONS(650), - [anon_sym_LT] = ACTIONS(650), - [anon_sym_GT_EQ] = ACTIONS(640), - [anon_sym_LT_EQ] = ACTIONS(640), - [anon_sym_AT] = ACTIONS(640), - [anon_sym__] = ACTIONS(650), - [anon_sym_DOT] = ACTIONS(650), - [anon_sym_DOT_DOT] = ACTIONS(650), - [anon_sym_DOT_DOT_DOT] = ACTIONS(640), - [anon_sym_DOT_DOT_EQ] = ACTIONS(640), - [anon_sym_COMMA] = ACTIONS(640), - [anon_sym_COLON_COLON] = ACTIONS(640), - [anon_sym_DASH_GT] = ACTIONS(640), - [anon_sym_POUND] = ACTIONS(640), - [anon_sym_SQUOTE] = ACTIONS(638), - [anon_sym_as] = ACTIONS(638), - [anon_sym_async] = ACTIONS(638), - [anon_sym_await] = ACTIONS(638), - [anon_sym_break] = ACTIONS(638), - [anon_sym_const] = ACTIONS(638), - [anon_sym_continue] = ACTIONS(638), - [anon_sym_default] = ACTIONS(638), - [anon_sym_enum] = ACTIONS(638), - [anon_sym_fn] = ACTIONS(638), - [anon_sym_for] = ACTIONS(638), - [anon_sym_gen] = ACTIONS(638), - [anon_sym_if] = ACTIONS(638), - [anon_sym_impl] = ACTIONS(638), - [anon_sym_let] = ACTIONS(638), - [anon_sym_loop] = ACTIONS(638), - [anon_sym_match] = ACTIONS(638), - [anon_sym_mod] = ACTIONS(638), - [anon_sym_pub] = ACTIONS(638), - [anon_sym_return] = ACTIONS(638), - [anon_sym_static] = ACTIONS(638), - [anon_sym_struct] = ACTIONS(638), - [anon_sym_trait] = ACTIONS(638), - [anon_sym_type] = ACTIONS(638), - [anon_sym_union] = ACTIONS(638), - [anon_sym_unsafe] = ACTIONS(638), - [anon_sym_use] = ACTIONS(638), - [anon_sym_where] = ACTIONS(638), - [anon_sym_while] = ACTIONS(638), - [sym_mutable_specifier] = ACTIONS(638), - [sym_integer_literal] = ACTIONS(654), - [aux_sym_string_literal_token1] = ACTIONS(656), - [sym_char_literal] = ACTIONS(654), - [anon_sym_true] = ACTIONS(658), - [anon_sym_false] = ACTIONS(658), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(638), - [sym_super] = ACTIONS(638), - [sym_crate] = ACTIONS(638), - [sym_metavariable] = ACTIONS(660), - [sym__raw_string_literal_start] = ACTIONS(662), - [sym_float_literal] = ACTIONS(654), + [aux_sym_token_tree_pattern_repeat1] = STATE(74), + [aux_sym__non_special_token_repeat1] = STATE(135), + [sym_identifier] = ACTIONS(570), + [anon_sym_SEMI] = ACTIONS(572), + [anon_sym_LPAREN] = ACTIONS(574), + [anon_sym_RPAREN] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(576), + [anon_sym_LBRACE] = ACTIONS(578), + [anon_sym_EQ_GT] = ACTIONS(572), + [anon_sym_COLON] = ACTIONS(582), + [anon_sym_DOLLAR] = ACTIONS(584), + [anon_sym_PLUS] = ACTIONS(582), + [anon_sym_STAR] = ACTIONS(582), + [anon_sym_QMARK] = ACTIONS(572), + [anon_sym_u8] = ACTIONS(570), + [anon_sym_i8] = ACTIONS(570), + [anon_sym_u16] = ACTIONS(570), + [anon_sym_i16] = ACTIONS(570), + [anon_sym_u32] = ACTIONS(570), + [anon_sym_i32] = ACTIONS(570), + [anon_sym_u64] = ACTIONS(570), + [anon_sym_i64] = ACTIONS(570), + [anon_sym_u128] = ACTIONS(570), + [anon_sym_i128] = ACTIONS(570), + [anon_sym_isize] = ACTIONS(570), + [anon_sym_usize] = ACTIONS(570), + [anon_sym_f32] = ACTIONS(570), + [anon_sym_f64] = ACTIONS(570), + [anon_sym_bool] = ACTIONS(570), + [anon_sym_str] = ACTIONS(570), + [anon_sym_char] = ACTIONS(570), + [anon_sym_DASH] = ACTIONS(582), + [anon_sym_SLASH] = ACTIONS(582), + [anon_sym_PERCENT] = ACTIONS(582), + [anon_sym_CARET] = ACTIONS(582), + [anon_sym_BANG] = ACTIONS(582), + [anon_sym_AMP] = ACTIONS(582), + [anon_sym_PIPE] = ACTIONS(582), + [anon_sym_AMP_AMP] = ACTIONS(572), + [anon_sym_PIPE_PIPE] = ACTIONS(572), + [anon_sym_LT_LT] = ACTIONS(582), + [anon_sym_GT_GT] = ACTIONS(582), + [anon_sym_PLUS_EQ] = ACTIONS(572), + [anon_sym_DASH_EQ] = ACTIONS(572), + [anon_sym_STAR_EQ] = ACTIONS(572), + [anon_sym_SLASH_EQ] = ACTIONS(572), + [anon_sym_PERCENT_EQ] = ACTIONS(572), + [anon_sym_CARET_EQ] = ACTIONS(572), + [anon_sym_AMP_EQ] = ACTIONS(572), + [anon_sym_PIPE_EQ] = ACTIONS(572), + [anon_sym_LT_LT_EQ] = ACTIONS(572), + [anon_sym_GT_GT_EQ] = ACTIONS(572), + [anon_sym_EQ] = ACTIONS(582), + [anon_sym_EQ_EQ] = ACTIONS(572), + [anon_sym_BANG_EQ] = ACTIONS(572), + [anon_sym_GT] = ACTIONS(582), + [anon_sym_LT] = ACTIONS(582), + [anon_sym_GT_EQ] = ACTIONS(572), + [anon_sym_LT_EQ] = ACTIONS(572), + [anon_sym_AT] = ACTIONS(572), + [anon_sym__] = ACTIONS(582), + [anon_sym_DOT] = ACTIONS(582), + [anon_sym_DOT_DOT] = ACTIONS(582), + [anon_sym_DOT_DOT_DOT] = ACTIONS(572), + [anon_sym_DOT_DOT_EQ] = ACTIONS(572), + [anon_sym_COMMA] = ACTIONS(572), + [anon_sym_COLON_COLON] = ACTIONS(572), + [anon_sym_DASH_GT] = ACTIONS(572), + [anon_sym_POUND] = ACTIONS(572), + [anon_sym_SQUOTE] = ACTIONS(570), + [anon_sym_as] = ACTIONS(570), + [anon_sym_async] = ACTIONS(570), + [anon_sym_await] = ACTIONS(570), + [anon_sym_break] = ACTIONS(570), + [anon_sym_const] = ACTIONS(570), + [anon_sym_continue] = ACTIONS(570), + [anon_sym_default] = ACTIONS(570), + [anon_sym_enum] = ACTIONS(570), + [anon_sym_fn] = ACTIONS(570), + [anon_sym_for] = ACTIONS(570), + [anon_sym_gen] = ACTIONS(570), + [anon_sym_if] = ACTIONS(570), + [anon_sym_impl] = ACTIONS(570), + [anon_sym_let] = ACTIONS(570), + [anon_sym_loop] = ACTIONS(570), + [anon_sym_match] = ACTIONS(570), + [anon_sym_mod] = ACTIONS(570), + [anon_sym_pub] = ACTIONS(570), + [anon_sym_return] = ACTIONS(570), + [anon_sym_static] = ACTIONS(570), + [anon_sym_struct] = ACTIONS(570), + [anon_sym_trait] = ACTIONS(570), + [anon_sym_type] = ACTIONS(570), + [anon_sym_union] = ACTIONS(570), + [anon_sym_unsafe] = ACTIONS(570), + [anon_sym_use] = ACTIONS(570), + [anon_sym_where] = ACTIONS(570), + [anon_sym_while] = ACTIONS(570), + [sym_mutable_specifier] = ACTIONS(570), + [sym_integer_literal] = ACTIONS(586), + [aux_sym_string_literal_token1] = ACTIONS(588), + [sym_char_literal] = ACTIONS(586), + [anon_sym_true] = ACTIONS(590), + [anon_sym_false] = ACTIONS(590), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(570), + [sym_super] = ACTIONS(570), + [sym_crate] = ACTIONS(570), + [sym_metavariable] = ACTIONS(592), + [sym__raw_string_literal_start] = ACTIONS(594), + [sym_float_literal] = ACTIONS(586), }, [STATE(74)] = { - [sym__token_pattern] = STATE(154), - [sym_token_tree_pattern] = STATE(186), - [sym_token_binding_pattern] = STATE(186), - [sym_token_repetition_pattern] = STATE(186), - [sym__literal] = STATE(186), - [sym_string_literal] = STATE(175), - [sym_raw_string_literal] = STATE(175), - [sym_boolean_literal] = STATE(175), + [sym__token_pattern] = STATE(171), + [sym_token_tree_pattern] = STATE(145), + [sym_token_binding_pattern] = STATE(145), + [sym_token_repetition_pattern] = STATE(145), + [sym__literal] = STATE(145), + [sym_string_literal] = STATE(174), + [sym_raw_string_literal] = STATE(174), + [sym_boolean_literal] = STATE(174), [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(141), - [sym_identifier] = ACTIONS(638), - [anon_sym_SEMI] = ACTIONS(640), - [anon_sym_LPAREN] = ACTIONS(642), - [anon_sym_RPAREN] = ACTIONS(664), - [anon_sym_LBRACK] = ACTIONS(646), - [anon_sym_LBRACE] = ACTIONS(648), - [anon_sym_EQ_GT] = ACTIONS(640), - [anon_sym_COLON] = ACTIONS(650), - [anon_sym_DOLLAR] = ACTIONS(652), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_STAR] = ACTIONS(650), - [anon_sym_QMARK] = ACTIONS(640), - [anon_sym_u8] = ACTIONS(638), - [anon_sym_i8] = ACTIONS(638), - [anon_sym_u16] = ACTIONS(638), - [anon_sym_i16] = ACTIONS(638), - [anon_sym_u32] = ACTIONS(638), - [anon_sym_i32] = ACTIONS(638), - [anon_sym_u64] = ACTIONS(638), - [anon_sym_i64] = ACTIONS(638), - [anon_sym_u128] = ACTIONS(638), - [anon_sym_i128] = ACTIONS(638), - [anon_sym_isize] = ACTIONS(638), - [anon_sym_usize] = ACTIONS(638), - [anon_sym_f32] = ACTIONS(638), - [anon_sym_f64] = ACTIONS(638), - [anon_sym_bool] = ACTIONS(638), - [anon_sym_str] = ACTIONS(638), - [anon_sym_char] = ACTIONS(638), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(650), - [anon_sym_PERCENT] = ACTIONS(650), - [anon_sym_CARET] = ACTIONS(650), - [anon_sym_BANG] = ACTIONS(650), - [anon_sym_AMP] = ACTIONS(650), - [anon_sym_PIPE] = ACTIONS(650), - [anon_sym_AMP_AMP] = ACTIONS(640), - [anon_sym_PIPE_PIPE] = ACTIONS(640), - [anon_sym_LT_LT] = ACTIONS(650), - [anon_sym_GT_GT] = ACTIONS(650), - [anon_sym_PLUS_EQ] = ACTIONS(640), - [anon_sym_DASH_EQ] = ACTIONS(640), - [anon_sym_STAR_EQ] = ACTIONS(640), - [anon_sym_SLASH_EQ] = ACTIONS(640), - [anon_sym_PERCENT_EQ] = ACTIONS(640), - [anon_sym_CARET_EQ] = ACTIONS(640), - [anon_sym_AMP_EQ] = ACTIONS(640), - [anon_sym_PIPE_EQ] = ACTIONS(640), - [anon_sym_LT_LT_EQ] = ACTIONS(640), - [anon_sym_GT_GT_EQ] = ACTIONS(640), - [anon_sym_EQ] = ACTIONS(650), - [anon_sym_EQ_EQ] = ACTIONS(640), - [anon_sym_BANG_EQ] = ACTIONS(640), - [anon_sym_GT] = ACTIONS(650), - [anon_sym_LT] = ACTIONS(650), - [anon_sym_GT_EQ] = ACTIONS(640), - [anon_sym_LT_EQ] = ACTIONS(640), - [anon_sym_AT] = ACTIONS(640), - [anon_sym__] = ACTIONS(650), - [anon_sym_DOT] = ACTIONS(650), - [anon_sym_DOT_DOT] = ACTIONS(650), - [anon_sym_DOT_DOT_DOT] = ACTIONS(640), - [anon_sym_DOT_DOT_EQ] = ACTIONS(640), - [anon_sym_COMMA] = ACTIONS(640), - [anon_sym_COLON_COLON] = ACTIONS(640), - [anon_sym_DASH_GT] = ACTIONS(640), - [anon_sym_POUND] = ACTIONS(640), - [anon_sym_SQUOTE] = ACTIONS(638), - [anon_sym_as] = ACTIONS(638), - [anon_sym_async] = ACTIONS(638), - [anon_sym_await] = ACTIONS(638), - [anon_sym_break] = ACTIONS(638), - [anon_sym_const] = ACTIONS(638), - [anon_sym_continue] = ACTIONS(638), - [anon_sym_default] = ACTIONS(638), - [anon_sym_enum] = ACTIONS(638), - [anon_sym_fn] = ACTIONS(638), - [anon_sym_for] = ACTIONS(638), - [anon_sym_gen] = ACTIONS(638), - [anon_sym_if] = ACTIONS(638), - [anon_sym_impl] = ACTIONS(638), - [anon_sym_let] = ACTIONS(638), - [anon_sym_loop] = ACTIONS(638), - [anon_sym_match] = ACTIONS(638), - [anon_sym_mod] = ACTIONS(638), - [anon_sym_pub] = ACTIONS(638), - [anon_sym_return] = ACTIONS(638), - [anon_sym_static] = ACTIONS(638), - [anon_sym_struct] = ACTIONS(638), - [anon_sym_trait] = ACTIONS(638), - [anon_sym_type] = ACTIONS(638), - [anon_sym_union] = ACTIONS(638), - [anon_sym_unsafe] = ACTIONS(638), - [anon_sym_use] = ACTIONS(638), - [anon_sym_where] = ACTIONS(638), - [anon_sym_while] = ACTIONS(638), - [sym_mutable_specifier] = ACTIONS(638), - [sym_integer_literal] = ACTIONS(654), - [aux_sym_string_literal_token1] = ACTIONS(656), - [sym_char_literal] = ACTIONS(654), - [anon_sym_true] = ACTIONS(658), - [anon_sym_false] = ACTIONS(658), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(638), - [sym_super] = ACTIONS(638), - [sym_crate] = ACTIONS(638), - [sym_metavariable] = ACTIONS(660), - [sym__raw_string_literal_start] = ACTIONS(662), - [sym_float_literal] = ACTIONS(654), + [aux_sym__non_special_token_repeat1] = STATE(135), + [sym_identifier] = ACTIONS(570), + [anon_sym_SEMI] = ACTIONS(572), + [anon_sym_LPAREN] = ACTIONS(574), + [anon_sym_RPAREN] = ACTIONS(671), + [anon_sym_LBRACK] = ACTIONS(576), + [anon_sym_LBRACE] = ACTIONS(578), + [anon_sym_EQ_GT] = ACTIONS(572), + [anon_sym_COLON] = ACTIONS(582), + [anon_sym_DOLLAR] = ACTIONS(584), + [anon_sym_PLUS] = ACTIONS(582), + [anon_sym_STAR] = ACTIONS(582), + [anon_sym_QMARK] = ACTIONS(572), + [anon_sym_u8] = ACTIONS(570), + [anon_sym_i8] = ACTIONS(570), + [anon_sym_u16] = ACTIONS(570), + [anon_sym_i16] = ACTIONS(570), + [anon_sym_u32] = ACTIONS(570), + [anon_sym_i32] = ACTIONS(570), + [anon_sym_u64] = ACTIONS(570), + [anon_sym_i64] = ACTIONS(570), + [anon_sym_u128] = ACTIONS(570), + [anon_sym_i128] = ACTIONS(570), + [anon_sym_isize] = ACTIONS(570), + [anon_sym_usize] = ACTIONS(570), + [anon_sym_f32] = ACTIONS(570), + [anon_sym_f64] = ACTIONS(570), + [anon_sym_bool] = ACTIONS(570), + [anon_sym_str] = ACTIONS(570), + [anon_sym_char] = ACTIONS(570), + [anon_sym_DASH] = ACTIONS(582), + [anon_sym_SLASH] = ACTIONS(582), + [anon_sym_PERCENT] = ACTIONS(582), + [anon_sym_CARET] = ACTIONS(582), + [anon_sym_BANG] = ACTIONS(582), + [anon_sym_AMP] = ACTIONS(582), + [anon_sym_PIPE] = ACTIONS(582), + [anon_sym_AMP_AMP] = ACTIONS(572), + [anon_sym_PIPE_PIPE] = ACTIONS(572), + [anon_sym_LT_LT] = ACTIONS(582), + [anon_sym_GT_GT] = ACTIONS(582), + [anon_sym_PLUS_EQ] = ACTIONS(572), + [anon_sym_DASH_EQ] = ACTIONS(572), + [anon_sym_STAR_EQ] = ACTIONS(572), + [anon_sym_SLASH_EQ] = ACTIONS(572), + [anon_sym_PERCENT_EQ] = ACTIONS(572), + [anon_sym_CARET_EQ] = ACTIONS(572), + [anon_sym_AMP_EQ] = ACTIONS(572), + [anon_sym_PIPE_EQ] = ACTIONS(572), + [anon_sym_LT_LT_EQ] = ACTIONS(572), + [anon_sym_GT_GT_EQ] = ACTIONS(572), + [anon_sym_EQ] = ACTIONS(582), + [anon_sym_EQ_EQ] = ACTIONS(572), + [anon_sym_BANG_EQ] = ACTIONS(572), + [anon_sym_GT] = ACTIONS(582), + [anon_sym_LT] = ACTIONS(582), + [anon_sym_GT_EQ] = ACTIONS(572), + [anon_sym_LT_EQ] = ACTIONS(572), + [anon_sym_AT] = ACTIONS(572), + [anon_sym__] = ACTIONS(582), + [anon_sym_DOT] = ACTIONS(582), + [anon_sym_DOT_DOT] = ACTIONS(582), + [anon_sym_DOT_DOT_DOT] = ACTIONS(572), + [anon_sym_DOT_DOT_EQ] = ACTIONS(572), + [anon_sym_COMMA] = ACTIONS(572), + [anon_sym_COLON_COLON] = ACTIONS(572), + [anon_sym_DASH_GT] = ACTIONS(572), + [anon_sym_POUND] = ACTIONS(572), + [anon_sym_SQUOTE] = ACTIONS(570), + [anon_sym_as] = ACTIONS(570), + [anon_sym_async] = ACTIONS(570), + [anon_sym_await] = ACTIONS(570), + [anon_sym_break] = ACTIONS(570), + [anon_sym_const] = ACTIONS(570), + [anon_sym_continue] = ACTIONS(570), + [anon_sym_default] = ACTIONS(570), + [anon_sym_enum] = ACTIONS(570), + [anon_sym_fn] = ACTIONS(570), + [anon_sym_for] = ACTIONS(570), + [anon_sym_gen] = ACTIONS(570), + [anon_sym_if] = ACTIONS(570), + [anon_sym_impl] = ACTIONS(570), + [anon_sym_let] = ACTIONS(570), + [anon_sym_loop] = ACTIONS(570), + [anon_sym_match] = ACTIONS(570), + [anon_sym_mod] = ACTIONS(570), + [anon_sym_pub] = ACTIONS(570), + [anon_sym_return] = ACTIONS(570), + [anon_sym_static] = ACTIONS(570), + [anon_sym_struct] = ACTIONS(570), + [anon_sym_trait] = ACTIONS(570), + [anon_sym_type] = ACTIONS(570), + [anon_sym_union] = ACTIONS(570), + [anon_sym_unsafe] = ACTIONS(570), + [anon_sym_use] = ACTIONS(570), + [anon_sym_where] = ACTIONS(570), + [anon_sym_while] = ACTIONS(570), + [sym_mutable_specifier] = ACTIONS(570), + [sym_integer_literal] = ACTIONS(586), + [aux_sym_string_literal_token1] = ACTIONS(588), + [sym_char_literal] = ACTIONS(586), + [anon_sym_true] = ACTIONS(590), + [anon_sym_false] = ACTIONS(590), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(570), + [sym_super] = ACTIONS(570), + [sym_crate] = ACTIONS(570), + [sym_metavariable] = ACTIONS(592), + [sym__raw_string_literal_start] = ACTIONS(594), + [sym_float_literal] = ACTIONS(586), }, [STATE(75)] = { - [sym__token_pattern] = STATE(154), - [sym_token_tree_pattern] = STATE(186), - [sym_token_binding_pattern] = STATE(186), - [sym_token_repetition_pattern] = STATE(186), - [sym__literal] = STATE(186), - [sym_string_literal] = STATE(175), - [sym_raw_string_literal] = STATE(175), - [sym_boolean_literal] = STATE(175), + [sym__token_pattern] = STATE(171), + [sym_token_tree_pattern] = STATE(145), + [sym_token_binding_pattern] = STATE(145), + [sym_token_repetition_pattern] = STATE(145), + [sym__literal] = STATE(145), + [sym_string_literal] = STATE(174), + [sym_raw_string_literal] = STATE(174), + [sym_boolean_literal] = STATE(174), [sym_line_comment] = STATE(75), [sym_block_comment] = STATE(75), [aux_sym_token_tree_pattern_repeat1] = STATE(78), - [aux_sym__non_special_token_repeat1] = STATE(141), - [sym_identifier] = ACTIONS(638), - [anon_sym_SEMI] = ACTIONS(640), - [anon_sym_LPAREN] = ACTIONS(642), - [anon_sym_RPAREN] = ACTIONS(668), - [anon_sym_LBRACK] = ACTIONS(646), - [anon_sym_LBRACE] = ACTIONS(648), - [anon_sym_EQ_GT] = ACTIONS(640), - [anon_sym_COLON] = ACTIONS(650), - [anon_sym_DOLLAR] = ACTIONS(652), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_STAR] = ACTIONS(650), - [anon_sym_QMARK] = ACTIONS(640), - [anon_sym_u8] = ACTIONS(638), - [anon_sym_i8] = ACTIONS(638), - [anon_sym_u16] = ACTIONS(638), - [anon_sym_i16] = ACTIONS(638), - [anon_sym_u32] = ACTIONS(638), - [anon_sym_i32] = ACTIONS(638), - [anon_sym_u64] = ACTIONS(638), - [anon_sym_i64] = ACTIONS(638), - [anon_sym_u128] = ACTIONS(638), - [anon_sym_i128] = ACTIONS(638), - [anon_sym_isize] = ACTIONS(638), - [anon_sym_usize] = ACTIONS(638), - [anon_sym_f32] = ACTIONS(638), - [anon_sym_f64] = ACTIONS(638), - [anon_sym_bool] = ACTIONS(638), - [anon_sym_str] = ACTIONS(638), - [anon_sym_char] = ACTIONS(638), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(650), - [anon_sym_PERCENT] = ACTIONS(650), - [anon_sym_CARET] = ACTIONS(650), - [anon_sym_BANG] = ACTIONS(650), - [anon_sym_AMP] = ACTIONS(650), - [anon_sym_PIPE] = ACTIONS(650), - [anon_sym_AMP_AMP] = ACTIONS(640), - [anon_sym_PIPE_PIPE] = ACTIONS(640), - [anon_sym_LT_LT] = ACTIONS(650), - [anon_sym_GT_GT] = ACTIONS(650), - [anon_sym_PLUS_EQ] = ACTIONS(640), - [anon_sym_DASH_EQ] = ACTIONS(640), - [anon_sym_STAR_EQ] = ACTIONS(640), - [anon_sym_SLASH_EQ] = ACTIONS(640), - [anon_sym_PERCENT_EQ] = ACTIONS(640), - [anon_sym_CARET_EQ] = ACTIONS(640), - [anon_sym_AMP_EQ] = ACTIONS(640), - [anon_sym_PIPE_EQ] = ACTIONS(640), - [anon_sym_LT_LT_EQ] = ACTIONS(640), - [anon_sym_GT_GT_EQ] = ACTIONS(640), - [anon_sym_EQ] = ACTIONS(650), - [anon_sym_EQ_EQ] = ACTIONS(640), - [anon_sym_BANG_EQ] = ACTIONS(640), - [anon_sym_GT] = ACTIONS(650), - [anon_sym_LT] = ACTIONS(650), - [anon_sym_GT_EQ] = ACTIONS(640), - [anon_sym_LT_EQ] = ACTIONS(640), - [anon_sym_AT] = ACTIONS(640), - [anon_sym__] = ACTIONS(650), - [anon_sym_DOT] = ACTIONS(650), - [anon_sym_DOT_DOT] = ACTIONS(650), - [anon_sym_DOT_DOT_DOT] = ACTIONS(640), - [anon_sym_DOT_DOT_EQ] = ACTIONS(640), - [anon_sym_COMMA] = ACTIONS(640), - [anon_sym_COLON_COLON] = ACTIONS(640), - [anon_sym_DASH_GT] = ACTIONS(640), - [anon_sym_POUND] = ACTIONS(640), - [anon_sym_SQUOTE] = ACTIONS(638), - [anon_sym_as] = ACTIONS(638), - [anon_sym_async] = ACTIONS(638), - [anon_sym_await] = ACTIONS(638), - [anon_sym_break] = ACTIONS(638), - [anon_sym_const] = ACTIONS(638), - [anon_sym_continue] = ACTIONS(638), - [anon_sym_default] = ACTIONS(638), - [anon_sym_enum] = ACTIONS(638), - [anon_sym_fn] = ACTIONS(638), - [anon_sym_for] = ACTIONS(638), - [anon_sym_gen] = ACTIONS(638), - [anon_sym_if] = ACTIONS(638), - [anon_sym_impl] = ACTIONS(638), - [anon_sym_let] = ACTIONS(638), - [anon_sym_loop] = ACTIONS(638), - [anon_sym_match] = ACTIONS(638), - [anon_sym_mod] = ACTIONS(638), - [anon_sym_pub] = ACTIONS(638), - [anon_sym_return] = ACTIONS(638), - [anon_sym_static] = ACTIONS(638), - [anon_sym_struct] = ACTIONS(638), - [anon_sym_trait] = ACTIONS(638), - [anon_sym_type] = ACTIONS(638), - [anon_sym_union] = ACTIONS(638), - [anon_sym_unsafe] = ACTIONS(638), - [anon_sym_use] = ACTIONS(638), - [anon_sym_where] = ACTIONS(638), - [anon_sym_while] = ACTIONS(638), - [sym_mutable_specifier] = ACTIONS(638), - [sym_integer_literal] = ACTIONS(654), - [aux_sym_string_literal_token1] = ACTIONS(656), - [sym_char_literal] = ACTIONS(654), - [anon_sym_true] = ACTIONS(658), - [anon_sym_false] = ACTIONS(658), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(638), - [sym_super] = ACTIONS(638), - [sym_crate] = ACTIONS(638), - [sym_metavariable] = ACTIONS(660), - [sym__raw_string_literal_start] = ACTIONS(662), - [sym_float_literal] = ACTIONS(654), + [aux_sym__non_special_token_repeat1] = STATE(135), + [sym_identifier] = ACTIONS(570), + [anon_sym_SEMI] = ACTIONS(572), + [anon_sym_LPAREN] = ACTIONS(574), + [anon_sym_RPAREN] = ACTIONS(673), + [anon_sym_LBRACK] = ACTIONS(576), + [anon_sym_LBRACE] = ACTIONS(578), + [anon_sym_EQ_GT] = ACTIONS(572), + [anon_sym_COLON] = ACTIONS(582), + [anon_sym_DOLLAR] = ACTIONS(584), + [anon_sym_PLUS] = ACTIONS(582), + [anon_sym_STAR] = ACTIONS(582), + [anon_sym_QMARK] = ACTIONS(572), + [anon_sym_u8] = ACTIONS(570), + [anon_sym_i8] = ACTIONS(570), + [anon_sym_u16] = ACTIONS(570), + [anon_sym_i16] = ACTIONS(570), + [anon_sym_u32] = ACTIONS(570), + [anon_sym_i32] = ACTIONS(570), + [anon_sym_u64] = ACTIONS(570), + [anon_sym_i64] = ACTIONS(570), + [anon_sym_u128] = ACTIONS(570), + [anon_sym_i128] = ACTIONS(570), + [anon_sym_isize] = ACTIONS(570), + [anon_sym_usize] = ACTIONS(570), + [anon_sym_f32] = ACTIONS(570), + [anon_sym_f64] = ACTIONS(570), + [anon_sym_bool] = ACTIONS(570), + [anon_sym_str] = ACTIONS(570), + [anon_sym_char] = ACTIONS(570), + [anon_sym_DASH] = ACTIONS(582), + [anon_sym_SLASH] = ACTIONS(582), + [anon_sym_PERCENT] = ACTIONS(582), + [anon_sym_CARET] = ACTIONS(582), + [anon_sym_BANG] = ACTIONS(582), + [anon_sym_AMP] = ACTIONS(582), + [anon_sym_PIPE] = ACTIONS(582), + [anon_sym_AMP_AMP] = ACTIONS(572), + [anon_sym_PIPE_PIPE] = ACTIONS(572), + [anon_sym_LT_LT] = ACTIONS(582), + [anon_sym_GT_GT] = ACTIONS(582), + [anon_sym_PLUS_EQ] = ACTIONS(572), + [anon_sym_DASH_EQ] = ACTIONS(572), + [anon_sym_STAR_EQ] = ACTIONS(572), + [anon_sym_SLASH_EQ] = ACTIONS(572), + [anon_sym_PERCENT_EQ] = ACTIONS(572), + [anon_sym_CARET_EQ] = ACTIONS(572), + [anon_sym_AMP_EQ] = ACTIONS(572), + [anon_sym_PIPE_EQ] = ACTIONS(572), + [anon_sym_LT_LT_EQ] = ACTIONS(572), + [anon_sym_GT_GT_EQ] = ACTIONS(572), + [anon_sym_EQ] = ACTIONS(582), + [anon_sym_EQ_EQ] = ACTIONS(572), + [anon_sym_BANG_EQ] = ACTIONS(572), + [anon_sym_GT] = ACTIONS(582), + [anon_sym_LT] = ACTIONS(582), + [anon_sym_GT_EQ] = ACTIONS(572), + [anon_sym_LT_EQ] = ACTIONS(572), + [anon_sym_AT] = ACTIONS(572), + [anon_sym__] = ACTIONS(582), + [anon_sym_DOT] = ACTIONS(582), + [anon_sym_DOT_DOT] = ACTIONS(582), + [anon_sym_DOT_DOT_DOT] = ACTIONS(572), + [anon_sym_DOT_DOT_EQ] = ACTIONS(572), + [anon_sym_COMMA] = ACTIONS(572), + [anon_sym_COLON_COLON] = ACTIONS(572), + [anon_sym_DASH_GT] = ACTIONS(572), + [anon_sym_POUND] = ACTIONS(572), + [anon_sym_SQUOTE] = ACTIONS(570), + [anon_sym_as] = ACTIONS(570), + [anon_sym_async] = ACTIONS(570), + [anon_sym_await] = ACTIONS(570), + [anon_sym_break] = ACTIONS(570), + [anon_sym_const] = ACTIONS(570), + [anon_sym_continue] = ACTIONS(570), + [anon_sym_default] = ACTIONS(570), + [anon_sym_enum] = ACTIONS(570), + [anon_sym_fn] = ACTIONS(570), + [anon_sym_for] = ACTIONS(570), + [anon_sym_gen] = ACTIONS(570), + [anon_sym_if] = ACTIONS(570), + [anon_sym_impl] = ACTIONS(570), + [anon_sym_let] = ACTIONS(570), + [anon_sym_loop] = ACTIONS(570), + [anon_sym_match] = ACTIONS(570), + [anon_sym_mod] = ACTIONS(570), + [anon_sym_pub] = ACTIONS(570), + [anon_sym_return] = ACTIONS(570), + [anon_sym_static] = ACTIONS(570), + [anon_sym_struct] = ACTIONS(570), + [anon_sym_trait] = ACTIONS(570), + [anon_sym_type] = ACTIONS(570), + [anon_sym_union] = ACTIONS(570), + [anon_sym_unsafe] = ACTIONS(570), + [anon_sym_use] = ACTIONS(570), + [anon_sym_where] = ACTIONS(570), + [anon_sym_while] = ACTIONS(570), + [sym_mutable_specifier] = ACTIONS(570), + [sym_integer_literal] = ACTIONS(586), + [aux_sym_string_literal_token1] = ACTIONS(588), + [sym_char_literal] = ACTIONS(586), + [anon_sym_true] = ACTIONS(590), + [anon_sym_false] = ACTIONS(590), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(570), + [sym_super] = ACTIONS(570), + [sym_crate] = ACTIONS(570), + [sym_metavariable] = ACTIONS(592), + [sym__raw_string_literal_start] = ACTIONS(594), + [sym_float_literal] = ACTIONS(586), }, [STATE(76)] = { - [sym__token_pattern] = STATE(154), - [sym_token_tree_pattern] = STATE(186), - [sym_token_binding_pattern] = STATE(186), - [sym_token_repetition_pattern] = STATE(186), - [sym__literal] = STATE(186), - [sym_string_literal] = STATE(175), - [sym_raw_string_literal] = STATE(175), - [sym_boolean_literal] = STATE(175), + [sym__token_pattern] = STATE(171), + [sym_token_tree_pattern] = STATE(145), + [sym_token_binding_pattern] = STATE(145), + [sym_token_repetition_pattern] = STATE(145), + [sym__literal] = STATE(145), + [sym_string_literal] = STATE(174), + [sym_raw_string_literal] = STATE(174), + [sym_boolean_literal] = STATE(174), [sym_line_comment] = STATE(76), [sym_block_comment] = STATE(76), [aux_sym_token_tree_pattern_repeat1] = STATE(79), - [aux_sym__non_special_token_repeat1] = STATE(141), - [sym_identifier] = ACTIONS(638), - [anon_sym_SEMI] = ACTIONS(640), - [anon_sym_LPAREN] = ACTIONS(642), - [anon_sym_LBRACK] = ACTIONS(646), - [anon_sym_RBRACK] = ACTIONS(668), - [anon_sym_LBRACE] = ACTIONS(648), - [anon_sym_EQ_GT] = ACTIONS(640), - [anon_sym_COLON] = ACTIONS(650), - [anon_sym_DOLLAR] = ACTIONS(652), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_STAR] = ACTIONS(650), - [anon_sym_QMARK] = ACTIONS(640), - [anon_sym_u8] = ACTIONS(638), - [anon_sym_i8] = ACTIONS(638), - [anon_sym_u16] = ACTIONS(638), - [anon_sym_i16] = ACTIONS(638), - [anon_sym_u32] = ACTIONS(638), - [anon_sym_i32] = ACTIONS(638), - [anon_sym_u64] = ACTIONS(638), - [anon_sym_i64] = ACTIONS(638), - [anon_sym_u128] = ACTIONS(638), - [anon_sym_i128] = ACTIONS(638), - [anon_sym_isize] = ACTIONS(638), - [anon_sym_usize] = ACTIONS(638), - [anon_sym_f32] = ACTIONS(638), - [anon_sym_f64] = ACTIONS(638), - [anon_sym_bool] = ACTIONS(638), - [anon_sym_str] = ACTIONS(638), - [anon_sym_char] = ACTIONS(638), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(650), - [anon_sym_PERCENT] = ACTIONS(650), - [anon_sym_CARET] = ACTIONS(650), - [anon_sym_BANG] = ACTIONS(650), - [anon_sym_AMP] = ACTIONS(650), - [anon_sym_PIPE] = ACTIONS(650), - [anon_sym_AMP_AMP] = ACTIONS(640), - [anon_sym_PIPE_PIPE] = ACTIONS(640), - [anon_sym_LT_LT] = ACTIONS(650), - [anon_sym_GT_GT] = ACTIONS(650), - [anon_sym_PLUS_EQ] = ACTIONS(640), - [anon_sym_DASH_EQ] = ACTIONS(640), - [anon_sym_STAR_EQ] = ACTIONS(640), - [anon_sym_SLASH_EQ] = ACTIONS(640), - [anon_sym_PERCENT_EQ] = ACTIONS(640), - [anon_sym_CARET_EQ] = ACTIONS(640), - [anon_sym_AMP_EQ] = ACTIONS(640), - [anon_sym_PIPE_EQ] = ACTIONS(640), - [anon_sym_LT_LT_EQ] = ACTIONS(640), - [anon_sym_GT_GT_EQ] = ACTIONS(640), - [anon_sym_EQ] = ACTIONS(650), - [anon_sym_EQ_EQ] = ACTIONS(640), - [anon_sym_BANG_EQ] = ACTIONS(640), - [anon_sym_GT] = ACTIONS(650), - [anon_sym_LT] = ACTIONS(650), - [anon_sym_GT_EQ] = ACTIONS(640), - [anon_sym_LT_EQ] = ACTIONS(640), - [anon_sym_AT] = ACTIONS(640), - [anon_sym__] = ACTIONS(650), - [anon_sym_DOT] = ACTIONS(650), - [anon_sym_DOT_DOT] = ACTIONS(650), - [anon_sym_DOT_DOT_DOT] = ACTIONS(640), - [anon_sym_DOT_DOT_EQ] = ACTIONS(640), - [anon_sym_COMMA] = ACTIONS(640), - [anon_sym_COLON_COLON] = ACTIONS(640), - [anon_sym_DASH_GT] = ACTIONS(640), - [anon_sym_POUND] = ACTIONS(640), - [anon_sym_SQUOTE] = ACTIONS(638), - [anon_sym_as] = ACTIONS(638), - [anon_sym_async] = ACTIONS(638), - [anon_sym_await] = ACTIONS(638), - [anon_sym_break] = ACTIONS(638), - [anon_sym_const] = ACTIONS(638), - [anon_sym_continue] = ACTIONS(638), - [anon_sym_default] = ACTIONS(638), - [anon_sym_enum] = ACTIONS(638), - [anon_sym_fn] = ACTIONS(638), - [anon_sym_for] = ACTIONS(638), - [anon_sym_gen] = ACTIONS(638), - [anon_sym_if] = ACTIONS(638), - [anon_sym_impl] = ACTIONS(638), - [anon_sym_let] = ACTIONS(638), - [anon_sym_loop] = ACTIONS(638), - [anon_sym_match] = ACTIONS(638), - [anon_sym_mod] = ACTIONS(638), - [anon_sym_pub] = ACTIONS(638), - [anon_sym_return] = ACTIONS(638), - [anon_sym_static] = ACTIONS(638), - [anon_sym_struct] = ACTIONS(638), - [anon_sym_trait] = ACTIONS(638), - [anon_sym_type] = ACTIONS(638), - [anon_sym_union] = ACTIONS(638), - [anon_sym_unsafe] = ACTIONS(638), - [anon_sym_use] = ACTIONS(638), - [anon_sym_where] = ACTIONS(638), - [anon_sym_while] = ACTIONS(638), - [sym_mutable_specifier] = ACTIONS(638), - [sym_integer_literal] = ACTIONS(654), - [aux_sym_string_literal_token1] = ACTIONS(656), - [sym_char_literal] = ACTIONS(654), - [anon_sym_true] = ACTIONS(658), - [anon_sym_false] = ACTIONS(658), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(638), - [sym_super] = ACTIONS(638), - [sym_crate] = ACTIONS(638), - [sym_metavariable] = ACTIONS(660), - [sym__raw_string_literal_start] = ACTIONS(662), - [sym_float_literal] = ACTIONS(654), + [aux_sym__non_special_token_repeat1] = STATE(135), + [sym_identifier] = ACTIONS(570), + [anon_sym_SEMI] = ACTIONS(572), + [anon_sym_LPAREN] = ACTIONS(574), + [anon_sym_LBRACK] = ACTIONS(576), + [anon_sym_RBRACK] = ACTIONS(673), + [anon_sym_LBRACE] = ACTIONS(578), + [anon_sym_EQ_GT] = ACTIONS(572), + [anon_sym_COLON] = ACTIONS(582), + [anon_sym_DOLLAR] = ACTIONS(584), + [anon_sym_PLUS] = ACTIONS(582), + [anon_sym_STAR] = ACTIONS(582), + [anon_sym_QMARK] = ACTIONS(572), + [anon_sym_u8] = ACTIONS(570), + [anon_sym_i8] = ACTIONS(570), + [anon_sym_u16] = ACTIONS(570), + [anon_sym_i16] = ACTIONS(570), + [anon_sym_u32] = ACTIONS(570), + [anon_sym_i32] = ACTIONS(570), + [anon_sym_u64] = ACTIONS(570), + [anon_sym_i64] = ACTIONS(570), + [anon_sym_u128] = ACTIONS(570), + [anon_sym_i128] = ACTIONS(570), + [anon_sym_isize] = ACTIONS(570), + [anon_sym_usize] = ACTIONS(570), + [anon_sym_f32] = ACTIONS(570), + [anon_sym_f64] = ACTIONS(570), + [anon_sym_bool] = ACTIONS(570), + [anon_sym_str] = ACTIONS(570), + [anon_sym_char] = ACTIONS(570), + [anon_sym_DASH] = ACTIONS(582), + [anon_sym_SLASH] = ACTIONS(582), + [anon_sym_PERCENT] = ACTIONS(582), + [anon_sym_CARET] = ACTIONS(582), + [anon_sym_BANG] = ACTIONS(582), + [anon_sym_AMP] = ACTIONS(582), + [anon_sym_PIPE] = ACTIONS(582), + [anon_sym_AMP_AMP] = ACTIONS(572), + [anon_sym_PIPE_PIPE] = ACTIONS(572), + [anon_sym_LT_LT] = ACTIONS(582), + [anon_sym_GT_GT] = ACTIONS(582), + [anon_sym_PLUS_EQ] = ACTIONS(572), + [anon_sym_DASH_EQ] = ACTIONS(572), + [anon_sym_STAR_EQ] = ACTIONS(572), + [anon_sym_SLASH_EQ] = ACTIONS(572), + [anon_sym_PERCENT_EQ] = ACTIONS(572), + [anon_sym_CARET_EQ] = ACTIONS(572), + [anon_sym_AMP_EQ] = ACTIONS(572), + [anon_sym_PIPE_EQ] = ACTIONS(572), + [anon_sym_LT_LT_EQ] = ACTIONS(572), + [anon_sym_GT_GT_EQ] = ACTIONS(572), + [anon_sym_EQ] = ACTIONS(582), + [anon_sym_EQ_EQ] = ACTIONS(572), + [anon_sym_BANG_EQ] = ACTIONS(572), + [anon_sym_GT] = ACTIONS(582), + [anon_sym_LT] = ACTIONS(582), + [anon_sym_GT_EQ] = ACTIONS(572), + [anon_sym_LT_EQ] = ACTIONS(572), + [anon_sym_AT] = ACTIONS(572), + [anon_sym__] = ACTIONS(582), + [anon_sym_DOT] = ACTIONS(582), + [anon_sym_DOT_DOT] = ACTIONS(582), + [anon_sym_DOT_DOT_DOT] = ACTIONS(572), + [anon_sym_DOT_DOT_EQ] = ACTIONS(572), + [anon_sym_COMMA] = ACTIONS(572), + [anon_sym_COLON_COLON] = ACTIONS(572), + [anon_sym_DASH_GT] = ACTIONS(572), + [anon_sym_POUND] = ACTIONS(572), + [anon_sym_SQUOTE] = ACTIONS(570), + [anon_sym_as] = ACTIONS(570), + [anon_sym_async] = ACTIONS(570), + [anon_sym_await] = ACTIONS(570), + [anon_sym_break] = ACTIONS(570), + [anon_sym_const] = ACTIONS(570), + [anon_sym_continue] = ACTIONS(570), + [anon_sym_default] = ACTIONS(570), + [anon_sym_enum] = ACTIONS(570), + [anon_sym_fn] = ACTIONS(570), + [anon_sym_for] = ACTIONS(570), + [anon_sym_gen] = ACTIONS(570), + [anon_sym_if] = ACTIONS(570), + [anon_sym_impl] = ACTIONS(570), + [anon_sym_let] = ACTIONS(570), + [anon_sym_loop] = ACTIONS(570), + [anon_sym_match] = ACTIONS(570), + [anon_sym_mod] = ACTIONS(570), + [anon_sym_pub] = ACTIONS(570), + [anon_sym_return] = ACTIONS(570), + [anon_sym_static] = ACTIONS(570), + [anon_sym_struct] = ACTIONS(570), + [anon_sym_trait] = ACTIONS(570), + [anon_sym_type] = ACTIONS(570), + [anon_sym_union] = ACTIONS(570), + [anon_sym_unsafe] = ACTIONS(570), + [anon_sym_use] = ACTIONS(570), + [anon_sym_where] = ACTIONS(570), + [anon_sym_while] = ACTIONS(570), + [sym_mutable_specifier] = ACTIONS(570), + [sym_integer_literal] = ACTIONS(586), + [aux_sym_string_literal_token1] = ACTIONS(588), + [sym_char_literal] = ACTIONS(586), + [anon_sym_true] = ACTIONS(590), + [anon_sym_false] = ACTIONS(590), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(570), + [sym_super] = ACTIONS(570), + [sym_crate] = ACTIONS(570), + [sym_metavariable] = ACTIONS(592), + [sym__raw_string_literal_start] = ACTIONS(594), + [sym_float_literal] = ACTIONS(586), }, [STATE(77)] = { - [sym__token_pattern] = STATE(154), - [sym_token_tree_pattern] = STATE(186), - [sym_token_binding_pattern] = STATE(186), - [sym_token_repetition_pattern] = STATE(186), - [sym__literal] = STATE(186), - [sym_string_literal] = STATE(175), - [sym_raw_string_literal] = STATE(175), - [sym_boolean_literal] = STATE(175), + [sym__token_pattern] = STATE(171), + [sym_token_tree_pattern] = STATE(145), + [sym_token_binding_pattern] = STATE(145), + [sym_token_repetition_pattern] = STATE(145), + [sym__literal] = STATE(145), + [sym_string_literal] = STATE(174), + [sym_raw_string_literal] = STATE(174), + [sym_boolean_literal] = STATE(174), [sym_line_comment] = STATE(77), [sym_block_comment] = STATE(77), [aux_sym_token_tree_pattern_repeat1] = STATE(80), - [aux_sym__non_special_token_repeat1] = STATE(141), - [sym_identifier] = ACTIONS(638), - [anon_sym_SEMI] = ACTIONS(640), - [anon_sym_LPAREN] = ACTIONS(642), - [anon_sym_LBRACK] = ACTIONS(646), - [anon_sym_LBRACE] = ACTIONS(648), - [anon_sym_RBRACE] = ACTIONS(668), - [anon_sym_EQ_GT] = ACTIONS(640), - [anon_sym_COLON] = ACTIONS(650), - [anon_sym_DOLLAR] = ACTIONS(652), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_STAR] = ACTIONS(650), - [anon_sym_QMARK] = ACTIONS(640), - [anon_sym_u8] = ACTIONS(638), - [anon_sym_i8] = ACTIONS(638), - [anon_sym_u16] = ACTIONS(638), - [anon_sym_i16] = ACTIONS(638), - [anon_sym_u32] = ACTIONS(638), - [anon_sym_i32] = ACTIONS(638), - [anon_sym_u64] = ACTIONS(638), - [anon_sym_i64] = ACTIONS(638), - [anon_sym_u128] = ACTIONS(638), - [anon_sym_i128] = ACTIONS(638), - [anon_sym_isize] = ACTIONS(638), - [anon_sym_usize] = ACTIONS(638), - [anon_sym_f32] = ACTIONS(638), - [anon_sym_f64] = ACTIONS(638), - [anon_sym_bool] = ACTIONS(638), - [anon_sym_str] = ACTIONS(638), - [anon_sym_char] = ACTIONS(638), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(650), - [anon_sym_PERCENT] = ACTIONS(650), - [anon_sym_CARET] = ACTIONS(650), - [anon_sym_BANG] = ACTIONS(650), - [anon_sym_AMP] = ACTIONS(650), - [anon_sym_PIPE] = ACTIONS(650), - [anon_sym_AMP_AMP] = ACTIONS(640), - [anon_sym_PIPE_PIPE] = ACTIONS(640), - [anon_sym_LT_LT] = ACTIONS(650), - [anon_sym_GT_GT] = ACTIONS(650), - [anon_sym_PLUS_EQ] = ACTIONS(640), - [anon_sym_DASH_EQ] = ACTIONS(640), - [anon_sym_STAR_EQ] = ACTIONS(640), - [anon_sym_SLASH_EQ] = ACTIONS(640), - [anon_sym_PERCENT_EQ] = ACTIONS(640), - [anon_sym_CARET_EQ] = ACTIONS(640), - [anon_sym_AMP_EQ] = ACTIONS(640), - [anon_sym_PIPE_EQ] = ACTIONS(640), - [anon_sym_LT_LT_EQ] = ACTIONS(640), - [anon_sym_GT_GT_EQ] = ACTIONS(640), - [anon_sym_EQ] = ACTIONS(650), - [anon_sym_EQ_EQ] = ACTIONS(640), - [anon_sym_BANG_EQ] = ACTIONS(640), - [anon_sym_GT] = ACTIONS(650), - [anon_sym_LT] = ACTIONS(650), - [anon_sym_GT_EQ] = ACTIONS(640), - [anon_sym_LT_EQ] = ACTIONS(640), - [anon_sym_AT] = ACTIONS(640), - [anon_sym__] = ACTIONS(650), - [anon_sym_DOT] = ACTIONS(650), - [anon_sym_DOT_DOT] = ACTIONS(650), - [anon_sym_DOT_DOT_DOT] = ACTIONS(640), - [anon_sym_DOT_DOT_EQ] = ACTIONS(640), - [anon_sym_COMMA] = ACTIONS(640), - [anon_sym_COLON_COLON] = ACTIONS(640), - [anon_sym_DASH_GT] = ACTIONS(640), - [anon_sym_POUND] = ACTIONS(640), - [anon_sym_SQUOTE] = ACTIONS(638), - [anon_sym_as] = ACTIONS(638), - [anon_sym_async] = ACTIONS(638), - [anon_sym_await] = ACTIONS(638), - [anon_sym_break] = ACTIONS(638), - [anon_sym_const] = ACTIONS(638), - [anon_sym_continue] = ACTIONS(638), - [anon_sym_default] = ACTIONS(638), - [anon_sym_enum] = ACTIONS(638), - [anon_sym_fn] = ACTIONS(638), - [anon_sym_for] = ACTIONS(638), - [anon_sym_gen] = ACTIONS(638), - [anon_sym_if] = ACTIONS(638), - [anon_sym_impl] = ACTIONS(638), - [anon_sym_let] = ACTIONS(638), - [anon_sym_loop] = ACTIONS(638), - [anon_sym_match] = ACTIONS(638), - [anon_sym_mod] = ACTIONS(638), - [anon_sym_pub] = ACTIONS(638), - [anon_sym_return] = ACTIONS(638), - [anon_sym_static] = ACTIONS(638), - [anon_sym_struct] = ACTIONS(638), - [anon_sym_trait] = ACTIONS(638), - [anon_sym_type] = ACTIONS(638), - [anon_sym_union] = ACTIONS(638), - [anon_sym_unsafe] = ACTIONS(638), - [anon_sym_use] = ACTIONS(638), - [anon_sym_where] = ACTIONS(638), - [anon_sym_while] = ACTIONS(638), - [sym_mutable_specifier] = ACTIONS(638), - [sym_integer_literal] = ACTIONS(654), - [aux_sym_string_literal_token1] = ACTIONS(656), - [sym_char_literal] = ACTIONS(654), - [anon_sym_true] = ACTIONS(658), - [anon_sym_false] = ACTIONS(658), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(638), - [sym_super] = ACTIONS(638), - [sym_crate] = ACTIONS(638), - [sym_metavariable] = ACTIONS(660), - [sym__raw_string_literal_start] = ACTIONS(662), - [sym_float_literal] = ACTIONS(654), + [aux_sym__non_special_token_repeat1] = STATE(135), + [sym_identifier] = ACTIONS(570), + [anon_sym_SEMI] = ACTIONS(572), + [anon_sym_LPAREN] = ACTIONS(574), + [anon_sym_LBRACK] = ACTIONS(576), + [anon_sym_LBRACE] = ACTIONS(578), + [anon_sym_RBRACE] = ACTIONS(673), + [anon_sym_EQ_GT] = ACTIONS(572), + [anon_sym_COLON] = ACTIONS(582), + [anon_sym_DOLLAR] = ACTIONS(584), + [anon_sym_PLUS] = ACTIONS(582), + [anon_sym_STAR] = ACTIONS(582), + [anon_sym_QMARK] = ACTIONS(572), + [anon_sym_u8] = ACTIONS(570), + [anon_sym_i8] = ACTIONS(570), + [anon_sym_u16] = ACTIONS(570), + [anon_sym_i16] = ACTIONS(570), + [anon_sym_u32] = ACTIONS(570), + [anon_sym_i32] = ACTIONS(570), + [anon_sym_u64] = ACTIONS(570), + [anon_sym_i64] = ACTIONS(570), + [anon_sym_u128] = ACTIONS(570), + [anon_sym_i128] = ACTIONS(570), + [anon_sym_isize] = ACTIONS(570), + [anon_sym_usize] = ACTIONS(570), + [anon_sym_f32] = ACTIONS(570), + [anon_sym_f64] = ACTIONS(570), + [anon_sym_bool] = ACTIONS(570), + [anon_sym_str] = ACTIONS(570), + [anon_sym_char] = ACTIONS(570), + [anon_sym_DASH] = ACTIONS(582), + [anon_sym_SLASH] = ACTIONS(582), + [anon_sym_PERCENT] = ACTIONS(582), + [anon_sym_CARET] = ACTIONS(582), + [anon_sym_BANG] = ACTIONS(582), + [anon_sym_AMP] = ACTIONS(582), + [anon_sym_PIPE] = ACTIONS(582), + [anon_sym_AMP_AMP] = ACTIONS(572), + [anon_sym_PIPE_PIPE] = ACTIONS(572), + [anon_sym_LT_LT] = ACTIONS(582), + [anon_sym_GT_GT] = ACTIONS(582), + [anon_sym_PLUS_EQ] = ACTIONS(572), + [anon_sym_DASH_EQ] = ACTIONS(572), + [anon_sym_STAR_EQ] = ACTIONS(572), + [anon_sym_SLASH_EQ] = ACTIONS(572), + [anon_sym_PERCENT_EQ] = ACTIONS(572), + [anon_sym_CARET_EQ] = ACTIONS(572), + [anon_sym_AMP_EQ] = ACTIONS(572), + [anon_sym_PIPE_EQ] = ACTIONS(572), + [anon_sym_LT_LT_EQ] = ACTIONS(572), + [anon_sym_GT_GT_EQ] = ACTIONS(572), + [anon_sym_EQ] = ACTIONS(582), + [anon_sym_EQ_EQ] = ACTIONS(572), + [anon_sym_BANG_EQ] = ACTIONS(572), + [anon_sym_GT] = ACTIONS(582), + [anon_sym_LT] = ACTIONS(582), + [anon_sym_GT_EQ] = ACTIONS(572), + [anon_sym_LT_EQ] = ACTIONS(572), + [anon_sym_AT] = ACTIONS(572), + [anon_sym__] = ACTIONS(582), + [anon_sym_DOT] = ACTIONS(582), + [anon_sym_DOT_DOT] = ACTIONS(582), + [anon_sym_DOT_DOT_DOT] = ACTIONS(572), + [anon_sym_DOT_DOT_EQ] = ACTIONS(572), + [anon_sym_COMMA] = ACTIONS(572), + [anon_sym_COLON_COLON] = ACTIONS(572), + [anon_sym_DASH_GT] = ACTIONS(572), + [anon_sym_POUND] = ACTIONS(572), + [anon_sym_SQUOTE] = ACTIONS(570), + [anon_sym_as] = ACTIONS(570), + [anon_sym_async] = ACTIONS(570), + [anon_sym_await] = ACTIONS(570), + [anon_sym_break] = ACTIONS(570), + [anon_sym_const] = ACTIONS(570), + [anon_sym_continue] = ACTIONS(570), + [anon_sym_default] = ACTIONS(570), + [anon_sym_enum] = ACTIONS(570), + [anon_sym_fn] = ACTIONS(570), + [anon_sym_for] = ACTIONS(570), + [anon_sym_gen] = ACTIONS(570), + [anon_sym_if] = ACTIONS(570), + [anon_sym_impl] = ACTIONS(570), + [anon_sym_let] = ACTIONS(570), + [anon_sym_loop] = ACTIONS(570), + [anon_sym_match] = ACTIONS(570), + [anon_sym_mod] = ACTIONS(570), + [anon_sym_pub] = ACTIONS(570), + [anon_sym_return] = ACTIONS(570), + [anon_sym_static] = ACTIONS(570), + [anon_sym_struct] = ACTIONS(570), + [anon_sym_trait] = ACTIONS(570), + [anon_sym_type] = ACTIONS(570), + [anon_sym_union] = ACTIONS(570), + [anon_sym_unsafe] = ACTIONS(570), + [anon_sym_use] = ACTIONS(570), + [anon_sym_where] = ACTIONS(570), + [anon_sym_while] = ACTIONS(570), + [sym_mutable_specifier] = ACTIONS(570), + [sym_integer_literal] = ACTIONS(586), + [aux_sym_string_literal_token1] = ACTIONS(588), + [sym_char_literal] = ACTIONS(586), + [anon_sym_true] = ACTIONS(590), + [anon_sym_false] = ACTIONS(590), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(570), + [sym_super] = ACTIONS(570), + [sym_crate] = ACTIONS(570), + [sym_metavariable] = ACTIONS(592), + [sym__raw_string_literal_start] = ACTIONS(594), + [sym_float_literal] = ACTIONS(586), }, [STATE(78)] = { - [sym__token_pattern] = STATE(154), - [sym_token_tree_pattern] = STATE(186), - [sym_token_binding_pattern] = STATE(186), - [sym_token_repetition_pattern] = STATE(186), - [sym__literal] = STATE(186), - [sym_string_literal] = STATE(175), - [sym_raw_string_literal] = STATE(175), - [sym_boolean_literal] = STATE(175), + [sym__token_pattern] = STATE(171), + [sym_token_tree_pattern] = STATE(145), + [sym_token_binding_pattern] = STATE(145), + [sym_token_repetition_pattern] = STATE(145), + [sym__literal] = STATE(145), + [sym_string_literal] = STATE(174), + [sym_raw_string_literal] = STATE(174), + [sym_boolean_literal] = STATE(174), [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(141), - [sym_identifier] = ACTIONS(638), - [anon_sym_SEMI] = ACTIONS(640), - [anon_sym_LPAREN] = ACTIONS(642), - [anon_sym_RPAREN] = ACTIONS(670), - [anon_sym_LBRACK] = ACTIONS(646), - [anon_sym_LBRACE] = ACTIONS(648), - [anon_sym_EQ_GT] = ACTIONS(640), - [anon_sym_COLON] = ACTIONS(650), - [anon_sym_DOLLAR] = ACTIONS(652), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_STAR] = ACTIONS(650), - [anon_sym_QMARK] = ACTIONS(640), - [anon_sym_u8] = ACTIONS(638), - [anon_sym_i8] = ACTIONS(638), - [anon_sym_u16] = ACTIONS(638), - [anon_sym_i16] = ACTIONS(638), - [anon_sym_u32] = ACTIONS(638), - [anon_sym_i32] = ACTIONS(638), - [anon_sym_u64] = ACTIONS(638), - [anon_sym_i64] = ACTIONS(638), - [anon_sym_u128] = ACTIONS(638), - [anon_sym_i128] = ACTIONS(638), - [anon_sym_isize] = ACTIONS(638), - [anon_sym_usize] = ACTIONS(638), - [anon_sym_f32] = ACTIONS(638), - [anon_sym_f64] = ACTIONS(638), - [anon_sym_bool] = ACTIONS(638), - [anon_sym_str] = ACTIONS(638), - [anon_sym_char] = ACTIONS(638), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(650), - [anon_sym_PERCENT] = ACTIONS(650), - [anon_sym_CARET] = ACTIONS(650), - [anon_sym_BANG] = ACTIONS(650), - [anon_sym_AMP] = ACTIONS(650), - [anon_sym_PIPE] = ACTIONS(650), - [anon_sym_AMP_AMP] = ACTIONS(640), - [anon_sym_PIPE_PIPE] = ACTIONS(640), - [anon_sym_LT_LT] = ACTIONS(650), - [anon_sym_GT_GT] = ACTIONS(650), - [anon_sym_PLUS_EQ] = ACTIONS(640), - [anon_sym_DASH_EQ] = ACTIONS(640), - [anon_sym_STAR_EQ] = ACTIONS(640), - [anon_sym_SLASH_EQ] = ACTIONS(640), - [anon_sym_PERCENT_EQ] = ACTIONS(640), - [anon_sym_CARET_EQ] = ACTIONS(640), - [anon_sym_AMP_EQ] = ACTIONS(640), - [anon_sym_PIPE_EQ] = ACTIONS(640), - [anon_sym_LT_LT_EQ] = ACTIONS(640), - [anon_sym_GT_GT_EQ] = ACTIONS(640), - [anon_sym_EQ] = ACTIONS(650), - [anon_sym_EQ_EQ] = ACTIONS(640), - [anon_sym_BANG_EQ] = ACTIONS(640), - [anon_sym_GT] = ACTIONS(650), - [anon_sym_LT] = ACTIONS(650), - [anon_sym_GT_EQ] = ACTIONS(640), - [anon_sym_LT_EQ] = ACTIONS(640), - [anon_sym_AT] = ACTIONS(640), - [anon_sym__] = ACTIONS(650), - [anon_sym_DOT] = ACTIONS(650), - [anon_sym_DOT_DOT] = ACTIONS(650), - [anon_sym_DOT_DOT_DOT] = ACTIONS(640), - [anon_sym_DOT_DOT_EQ] = ACTIONS(640), - [anon_sym_COMMA] = ACTIONS(640), - [anon_sym_COLON_COLON] = ACTIONS(640), - [anon_sym_DASH_GT] = ACTIONS(640), - [anon_sym_POUND] = ACTIONS(640), - [anon_sym_SQUOTE] = ACTIONS(638), - [anon_sym_as] = ACTIONS(638), - [anon_sym_async] = ACTIONS(638), - [anon_sym_await] = ACTIONS(638), - [anon_sym_break] = ACTIONS(638), - [anon_sym_const] = ACTIONS(638), - [anon_sym_continue] = ACTIONS(638), - [anon_sym_default] = ACTIONS(638), - [anon_sym_enum] = ACTIONS(638), - [anon_sym_fn] = ACTIONS(638), - [anon_sym_for] = ACTIONS(638), - [anon_sym_gen] = ACTIONS(638), - [anon_sym_if] = ACTIONS(638), - [anon_sym_impl] = ACTIONS(638), - [anon_sym_let] = ACTIONS(638), - [anon_sym_loop] = ACTIONS(638), - [anon_sym_match] = ACTIONS(638), - [anon_sym_mod] = ACTIONS(638), - [anon_sym_pub] = ACTIONS(638), - [anon_sym_return] = ACTIONS(638), - [anon_sym_static] = ACTIONS(638), - [anon_sym_struct] = ACTIONS(638), - [anon_sym_trait] = ACTIONS(638), - [anon_sym_type] = ACTIONS(638), - [anon_sym_union] = ACTIONS(638), - [anon_sym_unsafe] = ACTIONS(638), - [anon_sym_use] = ACTIONS(638), - [anon_sym_where] = ACTIONS(638), - [anon_sym_while] = ACTIONS(638), - [sym_mutable_specifier] = ACTIONS(638), - [sym_integer_literal] = ACTIONS(654), - [aux_sym_string_literal_token1] = ACTIONS(656), - [sym_char_literal] = ACTIONS(654), - [anon_sym_true] = ACTIONS(658), - [anon_sym_false] = ACTIONS(658), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(638), - [sym_super] = ACTIONS(638), - [sym_crate] = ACTIONS(638), - [sym_metavariable] = ACTIONS(660), - [sym__raw_string_literal_start] = ACTIONS(662), - [sym_float_literal] = ACTIONS(654), + [aux_sym__non_special_token_repeat1] = STATE(135), + [sym_identifier] = ACTIONS(570), + [anon_sym_SEMI] = ACTIONS(572), + [anon_sym_LPAREN] = ACTIONS(574), + [anon_sym_RPAREN] = ACTIONS(675), + [anon_sym_LBRACK] = ACTIONS(576), + [anon_sym_LBRACE] = ACTIONS(578), + [anon_sym_EQ_GT] = ACTIONS(572), + [anon_sym_COLON] = ACTIONS(582), + [anon_sym_DOLLAR] = ACTIONS(584), + [anon_sym_PLUS] = ACTIONS(582), + [anon_sym_STAR] = ACTIONS(582), + [anon_sym_QMARK] = ACTIONS(572), + [anon_sym_u8] = ACTIONS(570), + [anon_sym_i8] = ACTIONS(570), + [anon_sym_u16] = ACTIONS(570), + [anon_sym_i16] = ACTIONS(570), + [anon_sym_u32] = ACTIONS(570), + [anon_sym_i32] = ACTIONS(570), + [anon_sym_u64] = ACTIONS(570), + [anon_sym_i64] = ACTIONS(570), + [anon_sym_u128] = ACTIONS(570), + [anon_sym_i128] = ACTIONS(570), + [anon_sym_isize] = ACTIONS(570), + [anon_sym_usize] = ACTIONS(570), + [anon_sym_f32] = ACTIONS(570), + [anon_sym_f64] = ACTIONS(570), + [anon_sym_bool] = ACTIONS(570), + [anon_sym_str] = ACTIONS(570), + [anon_sym_char] = ACTIONS(570), + [anon_sym_DASH] = ACTIONS(582), + [anon_sym_SLASH] = ACTIONS(582), + [anon_sym_PERCENT] = ACTIONS(582), + [anon_sym_CARET] = ACTIONS(582), + [anon_sym_BANG] = ACTIONS(582), + [anon_sym_AMP] = ACTIONS(582), + [anon_sym_PIPE] = ACTIONS(582), + [anon_sym_AMP_AMP] = ACTIONS(572), + [anon_sym_PIPE_PIPE] = ACTIONS(572), + [anon_sym_LT_LT] = ACTIONS(582), + [anon_sym_GT_GT] = ACTIONS(582), + [anon_sym_PLUS_EQ] = ACTIONS(572), + [anon_sym_DASH_EQ] = ACTIONS(572), + [anon_sym_STAR_EQ] = ACTIONS(572), + [anon_sym_SLASH_EQ] = ACTIONS(572), + [anon_sym_PERCENT_EQ] = ACTIONS(572), + [anon_sym_CARET_EQ] = ACTIONS(572), + [anon_sym_AMP_EQ] = ACTIONS(572), + [anon_sym_PIPE_EQ] = ACTIONS(572), + [anon_sym_LT_LT_EQ] = ACTIONS(572), + [anon_sym_GT_GT_EQ] = ACTIONS(572), + [anon_sym_EQ] = ACTIONS(582), + [anon_sym_EQ_EQ] = ACTIONS(572), + [anon_sym_BANG_EQ] = ACTIONS(572), + [anon_sym_GT] = ACTIONS(582), + [anon_sym_LT] = ACTIONS(582), + [anon_sym_GT_EQ] = ACTIONS(572), + [anon_sym_LT_EQ] = ACTIONS(572), + [anon_sym_AT] = ACTIONS(572), + [anon_sym__] = ACTIONS(582), + [anon_sym_DOT] = ACTIONS(582), + [anon_sym_DOT_DOT] = ACTIONS(582), + [anon_sym_DOT_DOT_DOT] = ACTIONS(572), + [anon_sym_DOT_DOT_EQ] = ACTIONS(572), + [anon_sym_COMMA] = ACTIONS(572), + [anon_sym_COLON_COLON] = ACTIONS(572), + [anon_sym_DASH_GT] = ACTIONS(572), + [anon_sym_POUND] = ACTIONS(572), + [anon_sym_SQUOTE] = ACTIONS(570), + [anon_sym_as] = ACTIONS(570), + [anon_sym_async] = ACTIONS(570), + [anon_sym_await] = ACTIONS(570), + [anon_sym_break] = ACTIONS(570), + [anon_sym_const] = ACTIONS(570), + [anon_sym_continue] = ACTIONS(570), + [anon_sym_default] = ACTIONS(570), + [anon_sym_enum] = ACTIONS(570), + [anon_sym_fn] = ACTIONS(570), + [anon_sym_for] = ACTIONS(570), + [anon_sym_gen] = ACTIONS(570), + [anon_sym_if] = ACTIONS(570), + [anon_sym_impl] = ACTIONS(570), + [anon_sym_let] = ACTIONS(570), + [anon_sym_loop] = ACTIONS(570), + [anon_sym_match] = ACTIONS(570), + [anon_sym_mod] = ACTIONS(570), + [anon_sym_pub] = ACTIONS(570), + [anon_sym_return] = ACTIONS(570), + [anon_sym_static] = ACTIONS(570), + [anon_sym_struct] = ACTIONS(570), + [anon_sym_trait] = ACTIONS(570), + [anon_sym_type] = ACTIONS(570), + [anon_sym_union] = ACTIONS(570), + [anon_sym_unsafe] = ACTIONS(570), + [anon_sym_use] = ACTIONS(570), + [anon_sym_where] = ACTIONS(570), + [anon_sym_while] = ACTIONS(570), + [sym_mutable_specifier] = ACTIONS(570), + [sym_integer_literal] = ACTIONS(586), + [aux_sym_string_literal_token1] = ACTIONS(588), + [sym_char_literal] = ACTIONS(586), + [anon_sym_true] = ACTIONS(590), + [anon_sym_false] = ACTIONS(590), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(570), + [sym_super] = ACTIONS(570), + [sym_crate] = ACTIONS(570), + [sym_metavariable] = ACTIONS(592), + [sym__raw_string_literal_start] = ACTIONS(594), + [sym_float_literal] = ACTIONS(586), }, [STATE(79)] = { - [sym__token_pattern] = STATE(154), - [sym_token_tree_pattern] = STATE(186), - [sym_token_binding_pattern] = STATE(186), - [sym_token_repetition_pattern] = STATE(186), - [sym__literal] = STATE(186), - [sym_string_literal] = STATE(175), - [sym_raw_string_literal] = STATE(175), - [sym_boolean_literal] = STATE(175), + [sym__token_pattern] = STATE(171), + [sym_token_tree_pattern] = STATE(145), + [sym_token_binding_pattern] = STATE(145), + [sym_token_repetition_pattern] = STATE(145), + [sym__literal] = STATE(145), + [sym_string_literal] = STATE(174), + [sym_raw_string_literal] = STATE(174), + [sym_boolean_literal] = STATE(174), [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(141), - [sym_identifier] = ACTIONS(638), - [anon_sym_SEMI] = ACTIONS(640), - [anon_sym_LPAREN] = ACTIONS(642), - [anon_sym_LBRACK] = ACTIONS(646), - [anon_sym_RBRACK] = ACTIONS(670), - [anon_sym_LBRACE] = ACTIONS(648), - [anon_sym_EQ_GT] = ACTIONS(640), - [anon_sym_COLON] = ACTIONS(650), - [anon_sym_DOLLAR] = ACTIONS(652), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_STAR] = ACTIONS(650), - [anon_sym_QMARK] = ACTIONS(640), - [anon_sym_u8] = ACTIONS(638), - [anon_sym_i8] = ACTIONS(638), - [anon_sym_u16] = ACTIONS(638), - [anon_sym_i16] = ACTIONS(638), - [anon_sym_u32] = ACTIONS(638), - [anon_sym_i32] = ACTIONS(638), - [anon_sym_u64] = ACTIONS(638), - [anon_sym_i64] = ACTIONS(638), - [anon_sym_u128] = ACTIONS(638), - [anon_sym_i128] = ACTIONS(638), - [anon_sym_isize] = ACTIONS(638), - [anon_sym_usize] = ACTIONS(638), - [anon_sym_f32] = ACTIONS(638), - [anon_sym_f64] = ACTIONS(638), - [anon_sym_bool] = ACTIONS(638), - [anon_sym_str] = ACTIONS(638), - [anon_sym_char] = ACTIONS(638), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(650), - [anon_sym_PERCENT] = ACTIONS(650), - [anon_sym_CARET] = ACTIONS(650), - [anon_sym_BANG] = ACTIONS(650), - [anon_sym_AMP] = ACTIONS(650), - [anon_sym_PIPE] = ACTIONS(650), - [anon_sym_AMP_AMP] = ACTIONS(640), - [anon_sym_PIPE_PIPE] = ACTIONS(640), - [anon_sym_LT_LT] = ACTIONS(650), - [anon_sym_GT_GT] = ACTIONS(650), - [anon_sym_PLUS_EQ] = ACTIONS(640), - [anon_sym_DASH_EQ] = ACTIONS(640), - [anon_sym_STAR_EQ] = ACTIONS(640), - [anon_sym_SLASH_EQ] = ACTIONS(640), - [anon_sym_PERCENT_EQ] = ACTIONS(640), - [anon_sym_CARET_EQ] = ACTIONS(640), - [anon_sym_AMP_EQ] = ACTIONS(640), - [anon_sym_PIPE_EQ] = ACTIONS(640), - [anon_sym_LT_LT_EQ] = ACTIONS(640), - [anon_sym_GT_GT_EQ] = ACTIONS(640), - [anon_sym_EQ] = ACTIONS(650), - [anon_sym_EQ_EQ] = ACTIONS(640), - [anon_sym_BANG_EQ] = ACTIONS(640), - [anon_sym_GT] = ACTIONS(650), - [anon_sym_LT] = ACTIONS(650), - [anon_sym_GT_EQ] = ACTIONS(640), - [anon_sym_LT_EQ] = ACTIONS(640), - [anon_sym_AT] = ACTIONS(640), - [anon_sym__] = ACTIONS(650), - [anon_sym_DOT] = ACTIONS(650), - [anon_sym_DOT_DOT] = ACTIONS(650), - [anon_sym_DOT_DOT_DOT] = ACTIONS(640), - [anon_sym_DOT_DOT_EQ] = ACTIONS(640), - [anon_sym_COMMA] = ACTIONS(640), - [anon_sym_COLON_COLON] = ACTIONS(640), - [anon_sym_DASH_GT] = ACTIONS(640), - [anon_sym_POUND] = ACTIONS(640), - [anon_sym_SQUOTE] = ACTIONS(638), - [anon_sym_as] = ACTIONS(638), - [anon_sym_async] = ACTIONS(638), - [anon_sym_await] = ACTIONS(638), - [anon_sym_break] = ACTIONS(638), - [anon_sym_const] = ACTIONS(638), - [anon_sym_continue] = ACTIONS(638), - [anon_sym_default] = ACTIONS(638), - [anon_sym_enum] = ACTIONS(638), - [anon_sym_fn] = ACTIONS(638), - [anon_sym_for] = ACTIONS(638), - [anon_sym_gen] = ACTIONS(638), - [anon_sym_if] = ACTIONS(638), - [anon_sym_impl] = ACTIONS(638), - [anon_sym_let] = ACTIONS(638), - [anon_sym_loop] = ACTIONS(638), - [anon_sym_match] = ACTIONS(638), - [anon_sym_mod] = ACTIONS(638), - [anon_sym_pub] = ACTIONS(638), - [anon_sym_return] = ACTIONS(638), - [anon_sym_static] = ACTIONS(638), - [anon_sym_struct] = ACTIONS(638), - [anon_sym_trait] = ACTIONS(638), - [anon_sym_type] = ACTIONS(638), - [anon_sym_union] = ACTIONS(638), - [anon_sym_unsafe] = ACTIONS(638), - [anon_sym_use] = ACTIONS(638), - [anon_sym_where] = ACTIONS(638), - [anon_sym_while] = ACTIONS(638), - [sym_mutable_specifier] = ACTIONS(638), - [sym_integer_literal] = ACTIONS(654), - [aux_sym_string_literal_token1] = ACTIONS(656), - [sym_char_literal] = ACTIONS(654), - [anon_sym_true] = ACTIONS(658), - [anon_sym_false] = ACTIONS(658), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(638), - [sym_super] = ACTIONS(638), - [sym_crate] = ACTIONS(638), - [sym_metavariable] = ACTIONS(660), - [sym__raw_string_literal_start] = ACTIONS(662), - [sym_float_literal] = ACTIONS(654), + [aux_sym__non_special_token_repeat1] = STATE(135), + [sym_identifier] = ACTIONS(570), + [anon_sym_SEMI] = ACTIONS(572), + [anon_sym_LPAREN] = ACTIONS(574), + [anon_sym_LBRACK] = ACTIONS(576), + [anon_sym_RBRACK] = ACTIONS(675), + [anon_sym_LBRACE] = ACTIONS(578), + [anon_sym_EQ_GT] = ACTIONS(572), + [anon_sym_COLON] = ACTIONS(582), + [anon_sym_DOLLAR] = ACTIONS(584), + [anon_sym_PLUS] = ACTIONS(582), + [anon_sym_STAR] = ACTIONS(582), + [anon_sym_QMARK] = ACTIONS(572), + [anon_sym_u8] = ACTIONS(570), + [anon_sym_i8] = ACTIONS(570), + [anon_sym_u16] = ACTIONS(570), + [anon_sym_i16] = ACTIONS(570), + [anon_sym_u32] = ACTIONS(570), + [anon_sym_i32] = ACTIONS(570), + [anon_sym_u64] = ACTIONS(570), + [anon_sym_i64] = ACTIONS(570), + [anon_sym_u128] = ACTIONS(570), + [anon_sym_i128] = ACTIONS(570), + [anon_sym_isize] = ACTIONS(570), + [anon_sym_usize] = ACTIONS(570), + [anon_sym_f32] = ACTIONS(570), + [anon_sym_f64] = ACTIONS(570), + [anon_sym_bool] = ACTIONS(570), + [anon_sym_str] = ACTIONS(570), + [anon_sym_char] = ACTIONS(570), + [anon_sym_DASH] = ACTIONS(582), + [anon_sym_SLASH] = ACTIONS(582), + [anon_sym_PERCENT] = ACTIONS(582), + [anon_sym_CARET] = ACTIONS(582), + [anon_sym_BANG] = ACTIONS(582), + [anon_sym_AMP] = ACTIONS(582), + [anon_sym_PIPE] = ACTIONS(582), + [anon_sym_AMP_AMP] = ACTIONS(572), + [anon_sym_PIPE_PIPE] = ACTIONS(572), + [anon_sym_LT_LT] = ACTIONS(582), + [anon_sym_GT_GT] = ACTIONS(582), + [anon_sym_PLUS_EQ] = ACTIONS(572), + [anon_sym_DASH_EQ] = ACTIONS(572), + [anon_sym_STAR_EQ] = ACTIONS(572), + [anon_sym_SLASH_EQ] = ACTIONS(572), + [anon_sym_PERCENT_EQ] = ACTIONS(572), + [anon_sym_CARET_EQ] = ACTIONS(572), + [anon_sym_AMP_EQ] = ACTIONS(572), + [anon_sym_PIPE_EQ] = ACTIONS(572), + [anon_sym_LT_LT_EQ] = ACTIONS(572), + [anon_sym_GT_GT_EQ] = ACTIONS(572), + [anon_sym_EQ] = ACTIONS(582), + [anon_sym_EQ_EQ] = ACTIONS(572), + [anon_sym_BANG_EQ] = ACTIONS(572), + [anon_sym_GT] = ACTIONS(582), + [anon_sym_LT] = ACTIONS(582), + [anon_sym_GT_EQ] = ACTIONS(572), + [anon_sym_LT_EQ] = ACTIONS(572), + [anon_sym_AT] = ACTIONS(572), + [anon_sym__] = ACTIONS(582), + [anon_sym_DOT] = ACTIONS(582), + [anon_sym_DOT_DOT] = ACTIONS(582), + [anon_sym_DOT_DOT_DOT] = ACTIONS(572), + [anon_sym_DOT_DOT_EQ] = ACTIONS(572), + [anon_sym_COMMA] = ACTIONS(572), + [anon_sym_COLON_COLON] = ACTIONS(572), + [anon_sym_DASH_GT] = ACTIONS(572), + [anon_sym_POUND] = ACTIONS(572), + [anon_sym_SQUOTE] = ACTIONS(570), + [anon_sym_as] = ACTIONS(570), + [anon_sym_async] = ACTIONS(570), + [anon_sym_await] = ACTIONS(570), + [anon_sym_break] = ACTIONS(570), + [anon_sym_const] = ACTIONS(570), + [anon_sym_continue] = ACTIONS(570), + [anon_sym_default] = ACTIONS(570), + [anon_sym_enum] = ACTIONS(570), + [anon_sym_fn] = ACTIONS(570), + [anon_sym_for] = ACTIONS(570), + [anon_sym_gen] = ACTIONS(570), + [anon_sym_if] = ACTIONS(570), + [anon_sym_impl] = ACTIONS(570), + [anon_sym_let] = ACTIONS(570), + [anon_sym_loop] = ACTIONS(570), + [anon_sym_match] = ACTIONS(570), + [anon_sym_mod] = ACTIONS(570), + [anon_sym_pub] = ACTIONS(570), + [anon_sym_return] = ACTIONS(570), + [anon_sym_static] = ACTIONS(570), + [anon_sym_struct] = ACTIONS(570), + [anon_sym_trait] = ACTIONS(570), + [anon_sym_type] = ACTIONS(570), + [anon_sym_union] = ACTIONS(570), + [anon_sym_unsafe] = ACTIONS(570), + [anon_sym_use] = ACTIONS(570), + [anon_sym_where] = ACTIONS(570), + [anon_sym_while] = ACTIONS(570), + [sym_mutable_specifier] = ACTIONS(570), + [sym_integer_literal] = ACTIONS(586), + [aux_sym_string_literal_token1] = ACTIONS(588), + [sym_char_literal] = ACTIONS(586), + [anon_sym_true] = ACTIONS(590), + [anon_sym_false] = ACTIONS(590), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(570), + [sym_super] = ACTIONS(570), + [sym_crate] = ACTIONS(570), + [sym_metavariable] = ACTIONS(592), + [sym__raw_string_literal_start] = ACTIONS(594), + [sym_float_literal] = ACTIONS(586), }, [STATE(80)] = { - [sym__token_pattern] = STATE(154), - [sym_token_tree_pattern] = STATE(186), - [sym_token_binding_pattern] = STATE(186), - [sym_token_repetition_pattern] = STATE(186), - [sym__literal] = STATE(186), - [sym_string_literal] = STATE(175), - [sym_raw_string_literal] = STATE(175), - [sym_boolean_literal] = STATE(175), + [sym__token_pattern] = STATE(171), + [sym_token_tree_pattern] = STATE(145), + [sym_token_binding_pattern] = STATE(145), + [sym_token_repetition_pattern] = STATE(145), + [sym__literal] = STATE(145), + [sym_string_literal] = STATE(174), + [sym_raw_string_literal] = STATE(174), + [sym_boolean_literal] = STATE(174), [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(141), - [sym_identifier] = ACTIONS(638), - [anon_sym_SEMI] = ACTIONS(640), - [anon_sym_LPAREN] = ACTIONS(642), - [anon_sym_LBRACK] = ACTIONS(646), - [anon_sym_LBRACE] = ACTIONS(648), - [anon_sym_RBRACE] = ACTIONS(670), - [anon_sym_EQ_GT] = ACTIONS(640), - [anon_sym_COLON] = ACTIONS(650), - [anon_sym_DOLLAR] = ACTIONS(652), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_STAR] = ACTIONS(650), - [anon_sym_QMARK] = ACTIONS(640), - [anon_sym_u8] = ACTIONS(638), - [anon_sym_i8] = ACTIONS(638), - [anon_sym_u16] = ACTIONS(638), - [anon_sym_i16] = ACTIONS(638), - [anon_sym_u32] = ACTIONS(638), - [anon_sym_i32] = ACTIONS(638), - [anon_sym_u64] = ACTIONS(638), - [anon_sym_i64] = ACTIONS(638), - [anon_sym_u128] = ACTIONS(638), - [anon_sym_i128] = ACTIONS(638), - [anon_sym_isize] = ACTIONS(638), - [anon_sym_usize] = ACTIONS(638), - [anon_sym_f32] = ACTIONS(638), - [anon_sym_f64] = ACTIONS(638), - [anon_sym_bool] = ACTIONS(638), - [anon_sym_str] = ACTIONS(638), - [anon_sym_char] = ACTIONS(638), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(650), - [anon_sym_PERCENT] = ACTIONS(650), - [anon_sym_CARET] = ACTIONS(650), - [anon_sym_BANG] = ACTIONS(650), - [anon_sym_AMP] = ACTIONS(650), - [anon_sym_PIPE] = ACTIONS(650), - [anon_sym_AMP_AMP] = ACTIONS(640), - [anon_sym_PIPE_PIPE] = ACTIONS(640), - [anon_sym_LT_LT] = ACTIONS(650), - [anon_sym_GT_GT] = ACTIONS(650), - [anon_sym_PLUS_EQ] = ACTIONS(640), - [anon_sym_DASH_EQ] = ACTIONS(640), - [anon_sym_STAR_EQ] = ACTIONS(640), - [anon_sym_SLASH_EQ] = ACTIONS(640), - [anon_sym_PERCENT_EQ] = ACTIONS(640), - [anon_sym_CARET_EQ] = ACTIONS(640), - [anon_sym_AMP_EQ] = ACTIONS(640), - [anon_sym_PIPE_EQ] = ACTIONS(640), - [anon_sym_LT_LT_EQ] = ACTIONS(640), - [anon_sym_GT_GT_EQ] = ACTIONS(640), - [anon_sym_EQ] = ACTIONS(650), - [anon_sym_EQ_EQ] = ACTIONS(640), - [anon_sym_BANG_EQ] = ACTIONS(640), - [anon_sym_GT] = ACTIONS(650), - [anon_sym_LT] = ACTIONS(650), - [anon_sym_GT_EQ] = ACTIONS(640), - [anon_sym_LT_EQ] = ACTIONS(640), - [anon_sym_AT] = ACTIONS(640), - [anon_sym__] = ACTIONS(650), - [anon_sym_DOT] = ACTIONS(650), - [anon_sym_DOT_DOT] = ACTIONS(650), - [anon_sym_DOT_DOT_DOT] = ACTIONS(640), - [anon_sym_DOT_DOT_EQ] = ACTIONS(640), - [anon_sym_COMMA] = ACTIONS(640), - [anon_sym_COLON_COLON] = ACTIONS(640), - [anon_sym_DASH_GT] = ACTIONS(640), - [anon_sym_POUND] = ACTIONS(640), - [anon_sym_SQUOTE] = ACTIONS(638), - [anon_sym_as] = ACTIONS(638), - [anon_sym_async] = ACTIONS(638), - [anon_sym_await] = ACTIONS(638), - [anon_sym_break] = ACTIONS(638), - [anon_sym_const] = ACTIONS(638), - [anon_sym_continue] = ACTIONS(638), - [anon_sym_default] = ACTIONS(638), - [anon_sym_enum] = ACTIONS(638), - [anon_sym_fn] = ACTIONS(638), - [anon_sym_for] = ACTIONS(638), - [anon_sym_gen] = ACTIONS(638), - [anon_sym_if] = ACTIONS(638), - [anon_sym_impl] = ACTIONS(638), - [anon_sym_let] = ACTIONS(638), - [anon_sym_loop] = ACTIONS(638), - [anon_sym_match] = ACTIONS(638), - [anon_sym_mod] = ACTIONS(638), - [anon_sym_pub] = ACTIONS(638), - [anon_sym_return] = ACTIONS(638), - [anon_sym_static] = ACTIONS(638), - [anon_sym_struct] = ACTIONS(638), - [anon_sym_trait] = ACTIONS(638), - [anon_sym_type] = ACTIONS(638), - [anon_sym_union] = ACTIONS(638), - [anon_sym_unsafe] = ACTIONS(638), - [anon_sym_use] = ACTIONS(638), - [anon_sym_where] = ACTIONS(638), - [anon_sym_while] = ACTIONS(638), - [sym_mutable_specifier] = ACTIONS(638), - [sym_integer_literal] = ACTIONS(654), - [aux_sym_string_literal_token1] = ACTIONS(656), - [sym_char_literal] = ACTIONS(654), - [anon_sym_true] = ACTIONS(658), - [anon_sym_false] = ACTIONS(658), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(638), - [sym_super] = ACTIONS(638), - [sym_crate] = ACTIONS(638), - [sym_metavariable] = ACTIONS(660), - [sym__raw_string_literal_start] = ACTIONS(662), - [sym_float_literal] = ACTIONS(654), + [aux_sym__non_special_token_repeat1] = STATE(135), + [sym_identifier] = ACTIONS(570), + [anon_sym_SEMI] = ACTIONS(572), + [anon_sym_LPAREN] = ACTIONS(574), + [anon_sym_LBRACK] = ACTIONS(576), + [anon_sym_LBRACE] = ACTIONS(578), + [anon_sym_RBRACE] = ACTIONS(675), + [anon_sym_EQ_GT] = ACTIONS(572), + [anon_sym_COLON] = ACTIONS(582), + [anon_sym_DOLLAR] = ACTIONS(584), + [anon_sym_PLUS] = ACTIONS(582), + [anon_sym_STAR] = ACTIONS(582), + [anon_sym_QMARK] = ACTIONS(572), + [anon_sym_u8] = ACTIONS(570), + [anon_sym_i8] = ACTIONS(570), + [anon_sym_u16] = ACTIONS(570), + [anon_sym_i16] = ACTIONS(570), + [anon_sym_u32] = ACTIONS(570), + [anon_sym_i32] = ACTIONS(570), + [anon_sym_u64] = ACTIONS(570), + [anon_sym_i64] = ACTIONS(570), + [anon_sym_u128] = ACTIONS(570), + [anon_sym_i128] = ACTIONS(570), + [anon_sym_isize] = ACTIONS(570), + [anon_sym_usize] = ACTIONS(570), + [anon_sym_f32] = ACTIONS(570), + [anon_sym_f64] = ACTIONS(570), + [anon_sym_bool] = ACTIONS(570), + [anon_sym_str] = ACTIONS(570), + [anon_sym_char] = ACTIONS(570), + [anon_sym_DASH] = ACTIONS(582), + [anon_sym_SLASH] = ACTIONS(582), + [anon_sym_PERCENT] = ACTIONS(582), + [anon_sym_CARET] = ACTIONS(582), + [anon_sym_BANG] = ACTIONS(582), + [anon_sym_AMP] = ACTIONS(582), + [anon_sym_PIPE] = ACTIONS(582), + [anon_sym_AMP_AMP] = ACTIONS(572), + [anon_sym_PIPE_PIPE] = ACTIONS(572), + [anon_sym_LT_LT] = ACTIONS(582), + [anon_sym_GT_GT] = ACTIONS(582), + [anon_sym_PLUS_EQ] = ACTIONS(572), + [anon_sym_DASH_EQ] = ACTIONS(572), + [anon_sym_STAR_EQ] = ACTIONS(572), + [anon_sym_SLASH_EQ] = ACTIONS(572), + [anon_sym_PERCENT_EQ] = ACTIONS(572), + [anon_sym_CARET_EQ] = ACTIONS(572), + [anon_sym_AMP_EQ] = ACTIONS(572), + [anon_sym_PIPE_EQ] = ACTIONS(572), + [anon_sym_LT_LT_EQ] = ACTIONS(572), + [anon_sym_GT_GT_EQ] = ACTIONS(572), + [anon_sym_EQ] = ACTIONS(582), + [anon_sym_EQ_EQ] = ACTIONS(572), + [anon_sym_BANG_EQ] = ACTIONS(572), + [anon_sym_GT] = ACTIONS(582), + [anon_sym_LT] = ACTIONS(582), + [anon_sym_GT_EQ] = ACTIONS(572), + [anon_sym_LT_EQ] = ACTIONS(572), + [anon_sym_AT] = ACTIONS(572), + [anon_sym__] = ACTIONS(582), + [anon_sym_DOT] = ACTIONS(582), + [anon_sym_DOT_DOT] = ACTIONS(582), + [anon_sym_DOT_DOT_DOT] = ACTIONS(572), + [anon_sym_DOT_DOT_EQ] = ACTIONS(572), + [anon_sym_COMMA] = ACTIONS(572), + [anon_sym_COLON_COLON] = ACTIONS(572), + [anon_sym_DASH_GT] = ACTIONS(572), + [anon_sym_POUND] = ACTIONS(572), + [anon_sym_SQUOTE] = ACTIONS(570), + [anon_sym_as] = ACTIONS(570), + [anon_sym_async] = ACTIONS(570), + [anon_sym_await] = ACTIONS(570), + [anon_sym_break] = ACTIONS(570), + [anon_sym_const] = ACTIONS(570), + [anon_sym_continue] = ACTIONS(570), + [anon_sym_default] = ACTIONS(570), + [anon_sym_enum] = ACTIONS(570), + [anon_sym_fn] = ACTIONS(570), + [anon_sym_for] = ACTIONS(570), + [anon_sym_gen] = ACTIONS(570), + [anon_sym_if] = ACTIONS(570), + [anon_sym_impl] = ACTIONS(570), + [anon_sym_let] = ACTIONS(570), + [anon_sym_loop] = ACTIONS(570), + [anon_sym_match] = ACTIONS(570), + [anon_sym_mod] = ACTIONS(570), + [anon_sym_pub] = ACTIONS(570), + [anon_sym_return] = ACTIONS(570), + [anon_sym_static] = ACTIONS(570), + [anon_sym_struct] = ACTIONS(570), + [anon_sym_trait] = ACTIONS(570), + [anon_sym_type] = ACTIONS(570), + [anon_sym_union] = ACTIONS(570), + [anon_sym_unsafe] = ACTIONS(570), + [anon_sym_use] = ACTIONS(570), + [anon_sym_where] = ACTIONS(570), + [anon_sym_while] = ACTIONS(570), + [sym_mutable_specifier] = ACTIONS(570), + [sym_integer_literal] = ACTIONS(586), + [aux_sym_string_literal_token1] = ACTIONS(588), + [sym_char_literal] = ACTIONS(586), + [anon_sym_true] = ACTIONS(590), + [anon_sym_false] = ACTIONS(590), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(570), + [sym_super] = ACTIONS(570), + [sym_crate] = ACTIONS(570), + [sym_metavariable] = ACTIONS(592), + [sym__raw_string_literal_start] = ACTIONS(594), + [sym_float_literal] = ACTIONS(586), }, [STATE(81)] = { - [sym__token_pattern] = STATE(154), - [sym_token_tree_pattern] = STATE(186), - [sym_token_binding_pattern] = STATE(186), - [sym_token_repetition_pattern] = STATE(186), - [sym__literal] = STATE(186), - [sym_string_literal] = STATE(175), - [sym_raw_string_literal] = STATE(175), - [sym_boolean_literal] = STATE(175), + [sym__token_pattern] = STATE(171), + [sym_token_tree_pattern] = STATE(145), + [sym_token_binding_pattern] = STATE(145), + [sym_token_repetition_pattern] = STATE(145), + [sym__literal] = STATE(145), + [sym_string_literal] = STATE(174), + [sym_raw_string_literal] = STATE(174), + [sym_boolean_literal] = STATE(174), [sym_line_comment] = STATE(81), [sym_block_comment] = STATE(81), - [aux_sym_token_tree_pattern_repeat1] = STATE(74), - [aux_sym__non_special_token_repeat1] = STATE(141), - [sym_identifier] = ACTIONS(638), - [anon_sym_SEMI] = ACTIONS(640), - [anon_sym_LPAREN] = ACTIONS(642), - [anon_sym_RPAREN] = ACTIONS(672), - [anon_sym_LBRACK] = ACTIONS(646), - [anon_sym_LBRACE] = ACTIONS(648), - [anon_sym_EQ_GT] = ACTIONS(640), - [anon_sym_COLON] = ACTIONS(650), - [anon_sym_DOLLAR] = ACTIONS(652), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_STAR] = ACTIONS(650), - [anon_sym_QMARK] = ACTIONS(640), - [anon_sym_u8] = ACTIONS(638), - [anon_sym_i8] = ACTIONS(638), - [anon_sym_u16] = ACTIONS(638), - [anon_sym_i16] = ACTIONS(638), - [anon_sym_u32] = ACTIONS(638), - [anon_sym_i32] = ACTIONS(638), - [anon_sym_u64] = ACTIONS(638), - [anon_sym_i64] = ACTIONS(638), - [anon_sym_u128] = ACTIONS(638), - [anon_sym_i128] = ACTIONS(638), - [anon_sym_isize] = ACTIONS(638), - [anon_sym_usize] = ACTIONS(638), - [anon_sym_f32] = ACTIONS(638), - [anon_sym_f64] = ACTIONS(638), - [anon_sym_bool] = ACTIONS(638), - [anon_sym_str] = ACTIONS(638), - [anon_sym_char] = ACTIONS(638), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(650), - [anon_sym_PERCENT] = ACTIONS(650), - [anon_sym_CARET] = ACTIONS(650), - [anon_sym_BANG] = ACTIONS(650), - [anon_sym_AMP] = ACTIONS(650), - [anon_sym_PIPE] = ACTIONS(650), - [anon_sym_AMP_AMP] = ACTIONS(640), - [anon_sym_PIPE_PIPE] = ACTIONS(640), - [anon_sym_LT_LT] = ACTIONS(650), - [anon_sym_GT_GT] = ACTIONS(650), - [anon_sym_PLUS_EQ] = ACTIONS(640), - [anon_sym_DASH_EQ] = ACTIONS(640), - [anon_sym_STAR_EQ] = ACTIONS(640), - [anon_sym_SLASH_EQ] = ACTIONS(640), - [anon_sym_PERCENT_EQ] = ACTIONS(640), - [anon_sym_CARET_EQ] = ACTIONS(640), - [anon_sym_AMP_EQ] = ACTIONS(640), - [anon_sym_PIPE_EQ] = ACTIONS(640), - [anon_sym_LT_LT_EQ] = ACTIONS(640), - [anon_sym_GT_GT_EQ] = ACTIONS(640), - [anon_sym_EQ] = ACTIONS(650), - [anon_sym_EQ_EQ] = ACTIONS(640), - [anon_sym_BANG_EQ] = ACTIONS(640), - [anon_sym_GT] = ACTIONS(650), - [anon_sym_LT] = ACTIONS(650), - [anon_sym_GT_EQ] = ACTIONS(640), - [anon_sym_LT_EQ] = ACTIONS(640), - [anon_sym_AT] = ACTIONS(640), - [anon_sym__] = ACTIONS(650), - [anon_sym_DOT] = ACTIONS(650), - [anon_sym_DOT_DOT] = ACTIONS(650), - [anon_sym_DOT_DOT_DOT] = ACTIONS(640), - [anon_sym_DOT_DOT_EQ] = ACTIONS(640), - [anon_sym_COMMA] = ACTIONS(640), - [anon_sym_COLON_COLON] = ACTIONS(640), - [anon_sym_DASH_GT] = ACTIONS(640), - [anon_sym_POUND] = ACTIONS(640), - [anon_sym_SQUOTE] = ACTIONS(638), - [anon_sym_as] = ACTIONS(638), - [anon_sym_async] = ACTIONS(638), - [anon_sym_await] = ACTIONS(638), - [anon_sym_break] = ACTIONS(638), - [anon_sym_const] = ACTIONS(638), - [anon_sym_continue] = ACTIONS(638), - [anon_sym_default] = ACTIONS(638), - [anon_sym_enum] = ACTIONS(638), - [anon_sym_fn] = ACTIONS(638), - [anon_sym_for] = ACTIONS(638), - [anon_sym_gen] = ACTIONS(638), - [anon_sym_if] = ACTIONS(638), - [anon_sym_impl] = ACTIONS(638), - [anon_sym_let] = ACTIONS(638), - [anon_sym_loop] = ACTIONS(638), - [anon_sym_match] = ACTIONS(638), - [anon_sym_mod] = ACTIONS(638), - [anon_sym_pub] = ACTIONS(638), - [anon_sym_return] = ACTIONS(638), - [anon_sym_static] = ACTIONS(638), - [anon_sym_struct] = ACTIONS(638), - [anon_sym_trait] = ACTIONS(638), - [anon_sym_type] = ACTIONS(638), - [anon_sym_union] = ACTIONS(638), - [anon_sym_unsafe] = ACTIONS(638), - [anon_sym_use] = ACTIONS(638), - [anon_sym_where] = ACTIONS(638), - [anon_sym_while] = ACTIONS(638), - [sym_mutable_specifier] = ACTIONS(638), - [sym_integer_literal] = ACTIONS(654), - [aux_sym_string_literal_token1] = ACTIONS(656), - [sym_char_literal] = ACTIONS(654), - [anon_sym_true] = ACTIONS(658), - [anon_sym_false] = ACTIONS(658), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(638), - [sym_super] = ACTIONS(638), - [sym_crate] = ACTIONS(638), - [sym_metavariable] = ACTIONS(660), - [sym__raw_string_literal_start] = ACTIONS(662), - [sym_float_literal] = ACTIONS(654), + [aux_sym_token_tree_pattern_repeat1] = STATE(69), + [aux_sym__non_special_token_repeat1] = STATE(135), + [sym_identifier] = ACTIONS(570), + [anon_sym_SEMI] = ACTIONS(572), + [anon_sym_LPAREN] = ACTIONS(574), + [anon_sym_RPAREN] = ACTIONS(677), + [anon_sym_LBRACK] = ACTIONS(576), + [anon_sym_LBRACE] = ACTIONS(578), + [anon_sym_EQ_GT] = ACTIONS(572), + [anon_sym_COLON] = ACTIONS(582), + [anon_sym_DOLLAR] = ACTIONS(584), + [anon_sym_PLUS] = ACTIONS(582), + [anon_sym_STAR] = ACTIONS(582), + [anon_sym_QMARK] = ACTIONS(572), + [anon_sym_u8] = ACTIONS(570), + [anon_sym_i8] = ACTIONS(570), + [anon_sym_u16] = ACTIONS(570), + [anon_sym_i16] = ACTIONS(570), + [anon_sym_u32] = ACTIONS(570), + [anon_sym_i32] = ACTIONS(570), + [anon_sym_u64] = ACTIONS(570), + [anon_sym_i64] = ACTIONS(570), + [anon_sym_u128] = ACTIONS(570), + [anon_sym_i128] = ACTIONS(570), + [anon_sym_isize] = ACTIONS(570), + [anon_sym_usize] = ACTIONS(570), + [anon_sym_f32] = ACTIONS(570), + [anon_sym_f64] = ACTIONS(570), + [anon_sym_bool] = ACTIONS(570), + [anon_sym_str] = ACTIONS(570), + [anon_sym_char] = ACTIONS(570), + [anon_sym_DASH] = ACTIONS(582), + [anon_sym_SLASH] = ACTIONS(582), + [anon_sym_PERCENT] = ACTIONS(582), + [anon_sym_CARET] = ACTIONS(582), + [anon_sym_BANG] = ACTIONS(582), + [anon_sym_AMP] = ACTIONS(582), + [anon_sym_PIPE] = ACTIONS(582), + [anon_sym_AMP_AMP] = ACTIONS(572), + [anon_sym_PIPE_PIPE] = ACTIONS(572), + [anon_sym_LT_LT] = ACTIONS(582), + [anon_sym_GT_GT] = ACTIONS(582), + [anon_sym_PLUS_EQ] = ACTIONS(572), + [anon_sym_DASH_EQ] = ACTIONS(572), + [anon_sym_STAR_EQ] = ACTIONS(572), + [anon_sym_SLASH_EQ] = ACTIONS(572), + [anon_sym_PERCENT_EQ] = ACTIONS(572), + [anon_sym_CARET_EQ] = ACTIONS(572), + [anon_sym_AMP_EQ] = ACTIONS(572), + [anon_sym_PIPE_EQ] = ACTIONS(572), + [anon_sym_LT_LT_EQ] = ACTIONS(572), + [anon_sym_GT_GT_EQ] = ACTIONS(572), + [anon_sym_EQ] = ACTIONS(582), + [anon_sym_EQ_EQ] = ACTIONS(572), + [anon_sym_BANG_EQ] = ACTIONS(572), + [anon_sym_GT] = ACTIONS(582), + [anon_sym_LT] = ACTIONS(582), + [anon_sym_GT_EQ] = ACTIONS(572), + [anon_sym_LT_EQ] = ACTIONS(572), + [anon_sym_AT] = ACTIONS(572), + [anon_sym__] = ACTIONS(582), + [anon_sym_DOT] = ACTIONS(582), + [anon_sym_DOT_DOT] = ACTIONS(582), + [anon_sym_DOT_DOT_DOT] = ACTIONS(572), + [anon_sym_DOT_DOT_EQ] = ACTIONS(572), + [anon_sym_COMMA] = ACTIONS(572), + [anon_sym_COLON_COLON] = ACTIONS(572), + [anon_sym_DASH_GT] = ACTIONS(572), + [anon_sym_POUND] = ACTIONS(572), + [anon_sym_SQUOTE] = ACTIONS(570), + [anon_sym_as] = ACTIONS(570), + [anon_sym_async] = ACTIONS(570), + [anon_sym_await] = ACTIONS(570), + [anon_sym_break] = ACTIONS(570), + [anon_sym_const] = ACTIONS(570), + [anon_sym_continue] = ACTIONS(570), + [anon_sym_default] = ACTIONS(570), + [anon_sym_enum] = ACTIONS(570), + [anon_sym_fn] = ACTIONS(570), + [anon_sym_for] = ACTIONS(570), + [anon_sym_gen] = ACTIONS(570), + [anon_sym_if] = ACTIONS(570), + [anon_sym_impl] = ACTIONS(570), + [anon_sym_let] = ACTIONS(570), + [anon_sym_loop] = ACTIONS(570), + [anon_sym_match] = ACTIONS(570), + [anon_sym_mod] = ACTIONS(570), + [anon_sym_pub] = ACTIONS(570), + [anon_sym_return] = ACTIONS(570), + [anon_sym_static] = ACTIONS(570), + [anon_sym_struct] = ACTIONS(570), + [anon_sym_trait] = ACTIONS(570), + [anon_sym_type] = ACTIONS(570), + [anon_sym_union] = ACTIONS(570), + [anon_sym_unsafe] = ACTIONS(570), + [anon_sym_use] = ACTIONS(570), + [anon_sym_where] = ACTIONS(570), + [anon_sym_while] = ACTIONS(570), + [sym_mutable_specifier] = ACTIONS(570), + [sym_integer_literal] = ACTIONS(586), + [aux_sym_string_literal_token1] = ACTIONS(588), + [sym_char_literal] = ACTIONS(586), + [anon_sym_true] = ACTIONS(590), + [anon_sym_false] = ACTIONS(590), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(570), + [sym_super] = ACTIONS(570), + [sym_crate] = ACTIONS(570), + [sym_metavariable] = ACTIONS(592), + [sym__raw_string_literal_start] = ACTIONS(594), + [sym_float_literal] = ACTIONS(586), }, [STATE(82)] = { - [sym__token_pattern] = STATE(154), - [sym_token_tree_pattern] = STATE(186), - [sym_token_binding_pattern] = STATE(186), - [sym_token_repetition_pattern] = STATE(186), - [sym__literal] = STATE(186), - [sym_string_literal] = STATE(175), - [sym_raw_string_literal] = STATE(175), - [sym_boolean_literal] = STATE(175), + [sym__token_pattern] = STATE(171), + [sym_token_tree_pattern] = STATE(145), + [sym_token_binding_pattern] = STATE(145), + [sym_token_repetition_pattern] = STATE(145), + [sym__literal] = STATE(145), + [sym_string_literal] = STATE(174), + [sym_raw_string_literal] = STATE(174), + [sym_boolean_literal] = STATE(174), [sym_line_comment] = STATE(82), [sym_block_comment] = STATE(82), - [aux_sym_token_tree_pattern_repeat1] = STATE(72), - [aux_sym__non_special_token_repeat1] = STATE(141), - [sym_identifier] = ACTIONS(638), - [anon_sym_SEMI] = ACTIONS(640), - [anon_sym_LPAREN] = ACTIONS(642), - [anon_sym_LBRACK] = ACTIONS(646), - [anon_sym_RBRACK] = ACTIONS(672), - [anon_sym_LBRACE] = ACTIONS(648), - [anon_sym_EQ_GT] = ACTIONS(640), - [anon_sym_COLON] = ACTIONS(650), - [anon_sym_DOLLAR] = ACTIONS(652), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_STAR] = ACTIONS(650), - [anon_sym_QMARK] = ACTIONS(640), - [anon_sym_u8] = ACTIONS(638), - [anon_sym_i8] = ACTIONS(638), - [anon_sym_u16] = ACTIONS(638), - [anon_sym_i16] = ACTIONS(638), - [anon_sym_u32] = ACTIONS(638), - [anon_sym_i32] = ACTIONS(638), - [anon_sym_u64] = ACTIONS(638), - [anon_sym_i64] = ACTIONS(638), - [anon_sym_u128] = ACTIONS(638), - [anon_sym_i128] = ACTIONS(638), - [anon_sym_isize] = ACTIONS(638), - [anon_sym_usize] = ACTIONS(638), - [anon_sym_f32] = ACTIONS(638), - [anon_sym_f64] = ACTIONS(638), - [anon_sym_bool] = ACTIONS(638), - [anon_sym_str] = ACTIONS(638), - [anon_sym_char] = ACTIONS(638), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(650), - [anon_sym_PERCENT] = ACTIONS(650), - [anon_sym_CARET] = ACTIONS(650), - [anon_sym_BANG] = ACTIONS(650), - [anon_sym_AMP] = ACTIONS(650), - [anon_sym_PIPE] = ACTIONS(650), - [anon_sym_AMP_AMP] = ACTIONS(640), - [anon_sym_PIPE_PIPE] = ACTIONS(640), - [anon_sym_LT_LT] = ACTIONS(650), - [anon_sym_GT_GT] = ACTIONS(650), - [anon_sym_PLUS_EQ] = ACTIONS(640), - [anon_sym_DASH_EQ] = ACTIONS(640), - [anon_sym_STAR_EQ] = ACTIONS(640), - [anon_sym_SLASH_EQ] = ACTIONS(640), - [anon_sym_PERCENT_EQ] = ACTIONS(640), - [anon_sym_CARET_EQ] = ACTIONS(640), - [anon_sym_AMP_EQ] = ACTIONS(640), - [anon_sym_PIPE_EQ] = ACTIONS(640), - [anon_sym_LT_LT_EQ] = ACTIONS(640), - [anon_sym_GT_GT_EQ] = ACTIONS(640), - [anon_sym_EQ] = ACTIONS(650), - [anon_sym_EQ_EQ] = ACTIONS(640), - [anon_sym_BANG_EQ] = ACTIONS(640), - [anon_sym_GT] = ACTIONS(650), - [anon_sym_LT] = ACTIONS(650), - [anon_sym_GT_EQ] = ACTIONS(640), - [anon_sym_LT_EQ] = ACTIONS(640), - [anon_sym_AT] = ACTIONS(640), - [anon_sym__] = ACTIONS(650), - [anon_sym_DOT] = ACTIONS(650), - [anon_sym_DOT_DOT] = ACTIONS(650), - [anon_sym_DOT_DOT_DOT] = ACTIONS(640), - [anon_sym_DOT_DOT_EQ] = ACTIONS(640), - [anon_sym_COMMA] = ACTIONS(640), - [anon_sym_COLON_COLON] = ACTIONS(640), - [anon_sym_DASH_GT] = ACTIONS(640), - [anon_sym_POUND] = ACTIONS(640), - [anon_sym_SQUOTE] = ACTIONS(638), - [anon_sym_as] = ACTIONS(638), - [anon_sym_async] = ACTIONS(638), - [anon_sym_await] = ACTIONS(638), - [anon_sym_break] = ACTIONS(638), - [anon_sym_const] = ACTIONS(638), - [anon_sym_continue] = ACTIONS(638), - [anon_sym_default] = ACTIONS(638), - [anon_sym_enum] = ACTIONS(638), - [anon_sym_fn] = ACTIONS(638), - [anon_sym_for] = ACTIONS(638), - [anon_sym_gen] = ACTIONS(638), - [anon_sym_if] = ACTIONS(638), - [anon_sym_impl] = ACTIONS(638), - [anon_sym_let] = ACTIONS(638), - [anon_sym_loop] = ACTIONS(638), - [anon_sym_match] = ACTIONS(638), - [anon_sym_mod] = ACTIONS(638), - [anon_sym_pub] = ACTIONS(638), - [anon_sym_return] = ACTIONS(638), - [anon_sym_static] = ACTIONS(638), - [anon_sym_struct] = ACTIONS(638), - [anon_sym_trait] = ACTIONS(638), - [anon_sym_type] = ACTIONS(638), - [anon_sym_union] = ACTIONS(638), - [anon_sym_unsafe] = ACTIONS(638), - [anon_sym_use] = ACTIONS(638), - [anon_sym_where] = ACTIONS(638), - [anon_sym_while] = ACTIONS(638), - [sym_mutable_specifier] = ACTIONS(638), - [sym_integer_literal] = ACTIONS(654), - [aux_sym_string_literal_token1] = ACTIONS(656), - [sym_char_literal] = ACTIONS(654), - [anon_sym_true] = ACTIONS(658), - [anon_sym_false] = ACTIONS(658), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(638), - [sym_super] = ACTIONS(638), - [sym_crate] = ACTIONS(638), - [sym_metavariable] = ACTIONS(660), - [sym__raw_string_literal_start] = ACTIONS(662), - [sym_float_literal] = ACTIONS(654), + [aux_sym_token_tree_pattern_repeat1] = STATE(71), + [aux_sym__non_special_token_repeat1] = STATE(135), + [sym_identifier] = ACTIONS(570), + [anon_sym_SEMI] = ACTIONS(572), + [anon_sym_LPAREN] = ACTIONS(574), + [anon_sym_LBRACK] = ACTIONS(576), + [anon_sym_RBRACK] = ACTIONS(677), + [anon_sym_LBRACE] = ACTIONS(578), + [anon_sym_EQ_GT] = ACTIONS(572), + [anon_sym_COLON] = ACTIONS(582), + [anon_sym_DOLLAR] = ACTIONS(584), + [anon_sym_PLUS] = ACTIONS(582), + [anon_sym_STAR] = ACTIONS(582), + [anon_sym_QMARK] = ACTIONS(572), + [anon_sym_u8] = ACTIONS(570), + [anon_sym_i8] = ACTIONS(570), + [anon_sym_u16] = ACTIONS(570), + [anon_sym_i16] = ACTIONS(570), + [anon_sym_u32] = ACTIONS(570), + [anon_sym_i32] = ACTIONS(570), + [anon_sym_u64] = ACTIONS(570), + [anon_sym_i64] = ACTIONS(570), + [anon_sym_u128] = ACTIONS(570), + [anon_sym_i128] = ACTIONS(570), + [anon_sym_isize] = ACTIONS(570), + [anon_sym_usize] = ACTIONS(570), + [anon_sym_f32] = ACTIONS(570), + [anon_sym_f64] = ACTIONS(570), + [anon_sym_bool] = ACTIONS(570), + [anon_sym_str] = ACTIONS(570), + [anon_sym_char] = ACTIONS(570), + [anon_sym_DASH] = ACTIONS(582), + [anon_sym_SLASH] = ACTIONS(582), + [anon_sym_PERCENT] = ACTIONS(582), + [anon_sym_CARET] = ACTIONS(582), + [anon_sym_BANG] = ACTIONS(582), + [anon_sym_AMP] = ACTIONS(582), + [anon_sym_PIPE] = ACTIONS(582), + [anon_sym_AMP_AMP] = ACTIONS(572), + [anon_sym_PIPE_PIPE] = ACTIONS(572), + [anon_sym_LT_LT] = ACTIONS(582), + [anon_sym_GT_GT] = ACTIONS(582), + [anon_sym_PLUS_EQ] = ACTIONS(572), + [anon_sym_DASH_EQ] = ACTIONS(572), + [anon_sym_STAR_EQ] = ACTIONS(572), + [anon_sym_SLASH_EQ] = ACTIONS(572), + [anon_sym_PERCENT_EQ] = ACTIONS(572), + [anon_sym_CARET_EQ] = ACTIONS(572), + [anon_sym_AMP_EQ] = ACTIONS(572), + [anon_sym_PIPE_EQ] = ACTIONS(572), + [anon_sym_LT_LT_EQ] = ACTIONS(572), + [anon_sym_GT_GT_EQ] = ACTIONS(572), + [anon_sym_EQ] = ACTIONS(582), + [anon_sym_EQ_EQ] = ACTIONS(572), + [anon_sym_BANG_EQ] = ACTIONS(572), + [anon_sym_GT] = ACTIONS(582), + [anon_sym_LT] = ACTIONS(582), + [anon_sym_GT_EQ] = ACTIONS(572), + [anon_sym_LT_EQ] = ACTIONS(572), + [anon_sym_AT] = ACTIONS(572), + [anon_sym__] = ACTIONS(582), + [anon_sym_DOT] = ACTIONS(582), + [anon_sym_DOT_DOT] = ACTIONS(582), + [anon_sym_DOT_DOT_DOT] = ACTIONS(572), + [anon_sym_DOT_DOT_EQ] = ACTIONS(572), + [anon_sym_COMMA] = ACTIONS(572), + [anon_sym_COLON_COLON] = ACTIONS(572), + [anon_sym_DASH_GT] = ACTIONS(572), + [anon_sym_POUND] = ACTIONS(572), + [anon_sym_SQUOTE] = ACTIONS(570), + [anon_sym_as] = ACTIONS(570), + [anon_sym_async] = ACTIONS(570), + [anon_sym_await] = ACTIONS(570), + [anon_sym_break] = ACTIONS(570), + [anon_sym_const] = ACTIONS(570), + [anon_sym_continue] = ACTIONS(570), + [anon_sym_default] = ACTIONS(570), + [anon_sym_enum] = ACTIONS(570), + [anon_sym_fn] = ACTIONS(570), + [anon_sym_for] = ACTIONS(570), + [anon_sym_gen] = ACTIONS(570), + [anon_sym_if] = ACTIONS(570), + [anon_sym_impl] = ACTIONS(570), + [anon_sym_let] = ACTIONS(570), + [anon_sym_loop] = ACTIONS(570), + [anon_sym_match] = ACTIONS(570), + [anon_sym_mod] = ACTIONS(570), + [anon_sym_pub] = ACTIONS(570), + [anon_sym_return] = ACTIONS(570), + [anon_sym_static] = ACTIONS(570), + [anon_sym_struct] = ACTIONS(570), + [anon_sym_trait] = ACTIONS(570), + [anon_sym_type] = ACTIONS(570), + [anon_sym_union] = ACTIONS(570), + [anon_sym_unsafe] = ACTIONS(570), + [anon_sym_use] = ACTIONS(570), + [anon_sym_where] = ACTIONS(570), + [anon_sym_while] = ACTIONS(570), + [sym_mutable_specifier] = ACTIONS(570), + [sym_integer_literal] = ACTIONS(586), + [aux_sym_string_literal_token1] = ACTIONS(588), + [sym_char_literal] = ACTIONS(586), + [anon_sym_true] = ACTIONS(590), + [anon_sym_false] = ACTIONS(590), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(570), + [sym_super] = ACTIONS(570), + [sym_crate] = ACTIONS(570), + [sym_metavariable] = ACTIONS(592), + [sym__raw_string_literal_start] = ACTIONS(594), + [sym_float_literal] = ACTIONS(586), }, [STATE(83)] = { - [sym__token_pattern] = STATE(154), - [sym_token_tree_pattern] = STATE(186), - [sym_token_binding_pattern] = STATE(186), - [sym_token_repetition_pattern] = STATE(186), - [sym__literal] = STATE(186), - [sym_string_literal] = STATE(175), - [sym_raw_string_literal] = STATE(175), - [sym_boolean_literal] = STATE(175), + [sym__token_pattern] = STATE(171), + [sym_token_tree_pattern] = STATE(145), + [sym_token_binding_pattern] = STATE(145), + [sym_token_repetition_pattern] = STATE(145), + [sym__literal] = STATE(145), + [sym_string_literal] = STATE(174), + [sym_raw_string_literal] = STATE(174), + [sym_boolean_literal] = STATE(174), [sym_line_comment] = STATE(83), [sym_block_comment] = STATE(83), - [aux_sym_token_tree_pattern_repeat1] = STATE(71), - [aux_sym__non_special_token_repeat1] = STATE(141), - [sym_identifier] = ACTIONS(638), - [anon_sym_SEMI] = ACTIONS(640), - [anon_sym_LPAREN] = ACTIONS(642), - [anon_sym_LBRACK] = ACTIONS(646), - [anon_sym_LBRACE] = ACTIONS(648), - [anon_sym_RBRACE] = ACTIONS(672), - [anon_sym_EQ_GT] = ACTIONS(640), - [anon_sym_COLON] = ACTIONS(650), - [anon_sym_DOLLAR] = ACTIONS(652), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_STAR] = ACTIONS(650), - [anon_sym_QMARK] = ACTIONS(640), - [anon_sym_u8] = ACTIONS(638), - [anon_sym_i8] = ACTIONS(638), - [anon_sym_u16] = ACTIONS(638), - [anon_sym_i16] = ACTIONS(638), - [anon_sym_u32] = ACTIONS(638), - [anon_sym_i32] = ACTIONS(638), - [anon_sym_u64] = ACTIONS(638), - [anon_sym_i64] = ACTIONS(638), - [anon_sym_u128] = ACTIONS(638), - [anon_sym_i128] = ACTIONS(638), - [anon_sym_isize] = ACTIONS(638), - [anon_sym_usize] = ACTIONS(638), - [anon_sym_f32] = ACTIONS(638), - [anon_sym_f64] = ACTIONS(638), - [anon_sym_bool] = ACTIONS(638), - [anon_sym_str] = ACTIONS(638), - [anon_sym_char] = ACTIONS(638), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(650), - [anon_sym_PERCENT] = ACTIONS(650), - [anon_sym_CARET] = ACTIONS(650), - [anon_sym_BANG] = ACTIONS(650), - [anon_sym_AMP] = ACTIONS(650), - [anon_sym_PIPE] = ACTIONS(650), - [anon_sym_AMP_AMP] = ACTIONS(640), - [anon_sym_PIPE_PIPE] = ACTIONS(640), - [anon_sym_LT_LT] = ACTIONS(650), - [anon_sym_GT_GT] = ACTIONS(650), - [anon_sym_PLUS_EQ] = ACTIONS(640), - [anon_sym_DASH_EQ] = ACTIONS(640), - [anon_sym_STAR_EQ] = ACTIONS(640), - [anon_sym_SLASH_EQ] = ACTIONS(640), - [anon_sym_PERCENT_EQ] = ACTIONS(640), - [anon_sym_CARET_EQ] = ACTIONS(640), - [anon_sym_AMP_EQ] = ACTIONS(640), - [anon_sym_PIPE_EQ] = ACTIONS(640), - [anon_sym_LT_LT_EQ] = ACTIONS(640), - [anon_sym_GT_GT_EQ] = ACTIONS(640), - [anon_sym_EQ] = ACTIONS(650), - [anon_sym_EQ_EQ] = ACTIONS(640), - [anon_sym_BANG_EQ] = ACTIONS(640), - [anon_sym_GT] = ACTIONS(650), - [anon_sym_LT] = ACTIONS(650), - [anon_sym_GT_EQ] = ACTIONS(640), - [anon_sym_LT_EQ] = ACTIONS(640), - [anon_sym_AT] = ACTIONS(640), - [anon_sym__] = ACTIONS(650), - [anon_sym_DOT] = ACTIONS(650), - [anon_sym_DOT_DOT] = ACTIONS(650), - [anon_sym_DOT_DOT_DOT] = ACTIONS(640), - [anon_sym_DOT_DOT_EQ] = ACTIONS(640), - [anon_sym_COMMA] = ACTIONS(640), - [anon_sym_COLON_COLON] = ACTIONS(640), - [anon_sym_DASH_GT] = ACTIONS(640), - [anon_sym_POUND] = ACTIONS(640), - [anon_sym_SQUOTE] = ACTIONS(638), - [anon_sym_as] = ACTIONS(638), - [anon_sym_async] = ACTIONS(638), - [anon_sym_await] = ACTIONS(638), - [anon_sym_break] = ACTIONS(638), - [anon_sym_const] = ACTIONS(638), - [anon_sym_continue] = ACTIONS(638), - [anon_sym_default] = ACTIONS(638), - [anon_sym_enum] = ACTIONS(638), - [anon_sym_fn] = ACTIONS(638), - [anon_sym_for] = ACTIONS(638), - [anon_sym_gen] = ACTIONS(638), - [anon_sym_if] = ACTIONS(638), - [anon_sym_impl] = ACTIONS(638), - [anon_sym_let] = ACTIONS(638), - [anon_sym_loop] = ACTIONS(638), - [anon_sym_match] = ACTIONS(638), - [anon_sym_mod] = ACTIONS(638), - [anon_sym_pub] = ACTIONS(638), - [anon_sym_return] = ACTIONS(638), - [anon_sym_static] = ACTIONS(638), - [anon_sym_struct] = ACTIONS(638), - [anon_sym_trait] = ACTIONS(638), - [anon_sym_type] = ACTIONS(638), - [anon_sym_union] = ACTIONS(638), - [anon_sym_unsafe] = ACTIONS(638), - [anon_sym_use] = ACTIONS(638), - [anon_sym_where] = ACTIONS(638), - [anon_sym_while] = ACTIONS(638), - [sym_mutable_specifier] = ACTIONS(638), - [sym_integer_literal] = ACTIONS(654), - [aux_sym_string_literal_token1] = ACTIONS(656), - [sym_char_literal] = ACTIONS(654), - [anon_sym_true] = ACTIONS(658), - [anon_sym_false] = ACTIONS(658), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(638), - [sym_super] = ACTIONS(638), - [sym_crate] = ACTIONS(638), - [sym_metavariable] = ACTIONS(660), - [sym__raw_string_literal_start] = ACTIONS(662), - [sym_float_literal] = ACTIONS(654), + [aux_sym_token_tree_pattern_repeat1] = STATE(68), + [aux_sym__non_special_token_repeat1] = STATE(135), + [sym_identifier] = ACTIONS(570), + [anon_sym_SEMI] = ACTIONS(572), + [anon_sym_LPAREN] = ACTIONS(574), + [anon_sym_LBRACK] = ACTIONS(576), + [anon_sym_LBRACE] = ACTIONS(578), + [anon_sym_RBRACE] = ACTIONS(677), + [anon_sym_EQ_GT] = ACTIONS(572), + [anon_sym_COLON] = ACTIONS(582), + [anon_sym_DOLLAR] = ACTIONS(584), + [anon_sym_PLUS] = ACTIONS(582), + [anon_sym_STAR] = ACTIONS(582), + [anon_sym_QMARK] = ACTIONS(572), + [anon_sym_u8] = ACTIONS(570), + [anon_sym_i8] = ACTIONS(570), + [anon_sym_u16] = ACTIONS(570), + [anon_sym_i16] = ACTIONS(570), + [anon_sym_u32] = ACTIONS(570), + [anon_sym_i32] = ACTIONS(570), + [anon_sym_u64] = ACTIONS(570), + [anon_sym_i64] = ACTIONS(570), + [anon_sym_u128] = ACTIONS(570), + [anon_sym_i128] = ACTIONS(570), + [anon_sym_isize] = ACTIONS(570), + [anon_sym_usize] = ACTIONS(570), + [anon_sym_f32] = ACTIONS(570), + [anon_sym_f64] = ACTIONS(570), + [anon_sym_bool] = ACTIONS(570), + [anon_sym_str] = ACTIONS(570), + [anon_sym_char] = ACTIONS(570), + [anon_sym_DASH] = ACTIONS(582), + [anon_sym_SLASH] = ACTIONS(582), + [anon_sym_PERCENT] = ACTIONS(582), + [anon_sym_CARET] = ACTIONS(582), + [anon_sym_BANG] = ACTIONS(582), + [anon_sym_AMP] = ACTIONS(582), + [anon_sym_PIPE] = ACTIONS(582), + [anon_sym_AMP_AMP] = ACTIONS(572), + [anon_sym_PIPE_PIPE] = ACTIONS(572), + [anon_sym_LT_LT] = ACTIONS(582), + [anon_sym_GT_GT] = ACTIONS(582), + [anon_sym_PLUS_EQ] = ACTIONS(572), + [anon_sym_DASH_EQ] = ACTIONS(572), + [anon_sym_STAR_EQ] = ACTIONS(572), + [anon_sym_SLASH_EQ] = ACTIONS(572), + [anon_sym_PERCENT_EQ] = ACTIONS(572), + [anon_sym_CARET_EQ] = ACTIONS(572), + [anon_sym_AMP_EQ] = ACTIONS(572), + [anon_sym_PIPE_EQ] = ACTIONS(572), + [anon_sym_LT_LT_EQ] = ACTIONS(572), + [anon_sym_GT_GT_EQ] = ACTIONS(572), + [anon_sym_EQ] = ACTIONS(582), + [anon_sym_EQ_EQ] = ACTIONS(572), + [anon_sym_BANG_EQ] = ACTIONS(572), + [anon_sym_GT] = ACTIONS(582), + [anon_sym_LT] = ACTIONS(582), + [anon_sym_GT_EQ] = ACTIONS(572), + [anon_sym_LT_EQ] = ACTIONS(572), + [anon_sym_AT] = ACTIONS(572), + [anon_sym__] = ACTIONS(582), + [anon_sym_DOT] = ACTIONS(582), + [anon_sym_DOT_DOT] = ACTIONS(582), + [anon_sym_DOT_DOT_DOT] = ACTIONS(572), + [anon_sym_DOT_DOT_EQ] = ACTIONS(572), + [anon_sym_COMMA] = ACTIONS(572), + [anon_sym_COLON_COLON] = ACTIONS(572), + [anon_sym_DASH_GT] = ACTIONS(572), + [anon_sym_POUND] = ACTIONS(572), + [anon_sym_SQUOTE] = ACTIONS(570), + [anon_sym_as] = ACTIONS(570), + [anon_sym_async] = ACTIONS(570), + [anon_sym_await] = ACTIONS(570), + [anon_sym_break] = ACTIONS(570), + [anon_sym_const] = ACTIONS(570), + [anon_sym_continue] = ACTIONS(570), + [anon_sym_default] = ACTIONS(570), + [anon_sym_enum] = ACTIONS(570), + [anon_sym_fn] = ACTIONS(570), + [anon_sym_for] = ACTIONS(570), + [anon_sym_gen] = ACTIONS(570), + [anon_sym_if] = ACTIONS(570), + [anon_sym_impl] = ACTIONS(570), + [anon_sym_let] = ACTIONS(570), + [anon_sym_loop] = ACTIONS(570), + [anon_sym_match] = ACTIONS(570), + [anon_sym_mod] = ACTIONS(570), + [anon_sym_pub] = ACTIONS(570), + [anon_sym_return] = ACTIONS(570), + [anon_sym_static] = ACTIONS(570), + [anon_sym_struct] = ACTIONS(570), + [anon_sym_trait] = ACTIONS(570), + [anon_sym_type] = ACTIONS(570), + [anon_sym_union] = ACTIONS(570), + [anon_sym_unsafe] = ACTIONS(570), + [anon_sym_use] = ACTIONS(570), + [anon_sym_where] = ACTIONS(570), + [anon_sym_while] = ACTIONS(570), + [sym_mutable_specifier] = ACTIONS(570), + [sym_integer_literal] = ACTIONS(586), + [aux_sym_string_literal_token1] = ACTIONS(588), + [sym_char_literal] = ACTIONS(586), + [anon_sym_true] = ACTIONS(590), + [anon_sym_false] = ACTIONS(590), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(570), + [sym_super] = ACTIONS(570), + [sym_crate] = ACTIONS(570), + [sym_metavariable] = ACTIONS(592), + [sym__raw_string_literal_start] = ACTIONS(594), + [sym_float_literal] = ACTIONS(586), }, [STATE(84)] = { - [sym_delim_token_tree] = STATE(207), - [sym__delim_tokens] = STATE(208), - [sym__non_delim_token] = STATE(207), - [sym__literal] = STATE(206), - [sym_string_literal] = STATE(212), - [sym_raw_string_literal] = STATE(212), - [sym_boolean_literal] = STATE(212), + [sym_delim_token_tree] = STATE(208), + [sym__delim_tokens] = STATE(209), + [sym__non_delim_token] = STATE(208), + [sym__literal] = STATE(204), + [sym_string_literal] = STATE(201), + [sym_raw_string_literal] = STATE(201), + [sym_boolean_literal] = STATE(201), [sym_line_comment] = STATE(84), [sym_block_comment] = STATE(84), - [aux_sym__non_special_token_repeat1] = STATE(181), - [aux_sym_delim_token_tree_repeat1] = STATE(68), - [sym_identifier] = ACTIONS(674), - [anon_sym_SEMI] = ACTIONS(676), - [anon_sym_LPAREN] = ACTIONS(678), - [anon_sym_LBRACK] = ACTIONS(680), - [anon_sym_LBRACE] = ACTIONS(682), - [anon_sym_RBRACE] = ACTIONS(684), - [anon_sym_EQ_GT] = ACTIONS(676), - [anon_sym_COLON] = ACTIONS(686), - [anon_sym_DOLLAR] = ACTIONS(688), - [anon_sym_PLUS] = ACTIONS(686), - [anon_sym_STAR] = ACTIONS(686), - [anon_sym_QMARK] = ACTIONS(676), - [anon_sym_u8] = ACTIONS(674), - [anon_sym_i8] = ACTIONS(674), - [anon_sym_u16] = ACTIONS(674), - [anon_sym_i16] = ACTIONS(674), - [anon_sym_u32] = ACTIONS(674), - [anon_sym_i32] = ACTIONS(674), - [anon_sym_u64] = ACTIONS(674), - [anon_sym_i64] = ACTIONS(674), - [anon_sym_u128] = ACTIONS(674), - [anon_sym_i128] = ACTIONS(674), - [anon_sym_isize] = ACTIONS(674), - [anon_sym_usize] = ACTIONS(674), - [anon_sym_f32] = ACTIONS(674), - [anon_sym_f64] = ACTIONS(674), - [anon_sym_bool] = ACTIONS(674), - [anon_sym_str] = ACTIONS(674), - [anon_sym_char] = ACTIONS(674), - [anon_sym_DASH] = ACTIONS(686), - [anon_sym_SLASH] = ACTIONS(686), - [anon_sym_PERCENT] = ACTIONS(686), - [anon_sym_CARET] = ACTIONS(686), - [anon_sym_BANG] = ACTIONS(686), - [anon_sym_AMP] = ACTIONS(686), - [anon_sym_PIPE] = ACTIONS(686), - [anon_sym_AMP_AMP] = ACTIONS(676), - [anon_sym_PIPE_PIPE] = ACTIONS(676), - [anon_sym_LT_LT] = ACTIONS(686), - [anon_sym_GT_GT] = ACTIONS(686), - [anon_sym_PLUS_EQ] = ACTIONS(676), - [anon_sym_DASH_EQ] = ACTIONS(676), - [anon_sym_STAR_EQ] = ACTIONS(676), - [anon_sym_SLASH_EQ] = ACTIONS(676), - [anon_sym_PERCENT_EQ] = ACTIONS(676), - [anon_sym_CARET_EQ] = ACTIONS(676), - [anon_sym_AMP_EQ] = ACTIONS(676), - [anon_sym_PIPE_EQ] = ACTIONS(676), - [anon_sym_LT_LT_EQ] = ACTIONS(676), - [anon_sym_GT_GT_EQ] = ACTIONS(676), - [anon_sym_EQ] = ACTIONS(686), - [anon_sym_EQ_EQ] = ACTIONS(676), - [anon_sym_BANG_EQ] = ACTIONS(676), - [anon_sym_GT] = ACTIONS(686), - [anon_sym_LT] = ACTIONS(686), - [anon_sym_GT_EQ] = ACTIONS(676), - [anon_sym_LT_EQ] = ACTIONS(676), - [anon_sym_AT] = ACTIONS(676), - [anon_sym__] = ACTIONS(686), - [anon_sym_DOT] = ACTIONS(686), - [anon_sym_DOT_DOT] = ACTIONS(686), - [anon_sym_DOT_DOT_DOT] = ACTIONS(676), - [anon_sym_DOT_DOT_EQ] = ACTIONS(676), - [anon_sym_COMMA] = ACTIONS(676), - [anon_sym_COLON_COLON] = ACTIONS(676), - [anon_sym_DASH_GT] = ACTIONS(676), - [anon_sym_POUND] = ACTIONS(676), - [anon_sym_SQUOTE] = ACTIONS(674), - [anon_sym_as] = ACTIONS(674), - [anon_sym_async] = ACTIONS(674), - [anon_sym_await] = ACTIONS(674), - [anon_sym_break] = ACTIONS(674), - [anon_sym_const] = ACTIONS(674), - [anon_sym_continue] = ACTIONS(674), - [anon_sym_default] = ACTIONS(674), - [anon_sym_enum] = ACTIONS(674), - [anon_sym_fn] = ACTIONS(674), - [anon_sym_for] = ACTIONS(674), - [anon_sym_gen] = ACTIONS(674), - [anon_sym_if] = ACTIONS(674), - [anon_sym_impl] = ACTIONS(674), - [anon_sym_let] = ACTIONS(674), - [anon_sym_loop] = ACTIONS(674), - [anon_sym_match] = ACTIONS(674), - [anon_sym_mod] = ACTIONS(674), - [anon_sym_pub] = ACTIONS(674), - [anon_sym_return] = ACTIONS(674), - [anon_sym_static] = ACTIONS(674), - [anon_sym_struct] = ACTIONS(674), - [anon_sym_trait] = ACTIONS(674), - [anon_sym_type] = ACTIONS(674), - [anon_sym_union] = ACTIONS(674), - [anon_sym_unsafe] = ACTIONS(674), - [anon_sym_use] = ACTIONS(674), - [anon_sym_where] = ACTIONS(674), - [anon_sym_while] = ACTIONS(674), - [sym_mutable_specifier] = ACTIONS(674), - [sym_integer_literal] = ACTIONS(690), - [aux_sym_string_literal_token1] = ACTIONS(692), - [sym_char_literal] = ACTIONS(690), - [anon_sym_true] = ACTIONS(694), - [anon_sym_false] = ACTIONS(694), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(674), - [sym_super] = ACTIONS(674), - [sym_crate] = ACTIONS(674), - [sym__raw_string_literal_start] = ACTIONS(696), - [sym_float_literal] = ACTIONS(690), + [aux_sym__non_special_token_repeat1] = STATE(180), + [aux_sym_delim_token_tree_repeat1] = STATE(129), + [sym_identifier] = ACTIONS(679), + [anon_sym_SEMI] = ACTIONS(681), + [anon_sym_LPAREN] = ACTIONS(683), + [anon_sym_LBRACK] = ACTIONS(685), + [anon_sym_RBRACK] = ACTIONS(687), + [anon_sym_LBRACE] = ACTIONS(689), + [anon_sym_EQ_GT] = ACTIONS(681), + [anon_sym_COLON] = ACTIONS(691), + [anon_sym_DOLLAR] = ACTIONS(693), + [anon_sym_PLUS] = ACTIONS(691), + [anon_sym_STAR] = ACTIONS(691), + [anon_sym_QMARK] = ACTIONS(681), + [anon_sym_u8] = ACTIONS(679), + [anon_sym_i8] = ACTIONS(679), + [anon_sym_u16] = ACTIONS(679), + [anon_sym_i16] = ACTIONS(679), + [anon_sym_u32] = ACTIONS(679), + [anon_sym_i32] = ACTIONS(679), + [anon_sym_u64] = ACTIONS(679), + [anon_sym_i64] = ACTIONS(679), + [anon_sym_u128] = ACTIONS(679), + [anon_sym_i128] = ACTIONS(679), + [anon_sym_isize] = ACTIONS(679), + [anon_sym_usize] = ACTIONS(679), + [anon_sym_f32] = ACTIONS(679), + [anon_sym_f64] = ACTIONS(679), + [anon_sym_bool] = ACTIONS(679), + [anon_sym_str] = ACTIONS(679), + [anon_sym_char] = ACTIONS(679), + [anon_sym_DASH] = ACTIONS(691), + [anon_sym_SLASH] = ACTIONS(691), + [anon_sym_PERCENT] = ACTIONS(691), + [anon_sym_CARET] = ACTIONS(691), + [anon_sym_BANG] = ACTIONS(691), + [anon_sym_AMP] = ACTIONS(691), + [anon_sym_PIPE] = ACTIONS(691), + [anon_sym_AMP_AMP] = ACTIONS(681), + [anon_sym_PIPE_PIPE] = ACTIONS(681), + [anon_sym_LT_LT] = ACTIONS(691), + [anon_sym_GT_GT] = ACTIONS(691), + [anon_sym_PLUS_EQ] = ACTIONS(681), + [anon_sym_DASH_EQ] = ACTIONS(681), + [anon_sym_STAR_EQ] = ACTIONS(681), + [anon_sym_SLASH_EQ] = ACTIONS(681), + [anon_sym_PERCENT_EQ] = ACTIONS(681), + [anon_sym_CARET_EQ] = ACTIONS(681), + [anon_sym_AMP_EQ] = ACTIONS(681), + [anon_sym_PIPE_EQ] = ACTIONS(681), + [anon_sym_LT_LT_EQ] = ACTIONS(681), + [anon_sym_GT_GT_EQ] = ACTIONS(681), + [anon_sym_EQ] = ACTIONS(691), + [anon_sym_EQ_EQ] = ACTIONS(681), + [anon_sym_BANG_EQ] = ACTIONS(681), + [anon_sym_GT] = ACTIONS(691), + [anon_sym_LT] = ACTIONS(691), + [anon_sym_GT_EQ] = ACTIONS(681), + [anon_sym_LT_EQ] = ACTIONS(681), + [anon_sym_AT] = ACTIONS(681), + [anon_sym__] = ACTIONS(691), + [anon_sym_DOT] = ACTIONS(691), + [anon_sym_DOT_DOT] = ACTIONS(691), + [anon_sym_DOT_DOT_DOT] = ACTIONS(681), + [anon_sym_DOT_DOT_EQ] = ACTIONS(681), + [anon_sym_COMMA] = ACTIONS(681), + [anon_sym_COLON_COLON] = ACTIONS(681), + [anon_sym_DASH_GT] = ACTIONS(681), + [anon_sym_POUND] = ACTIONS(681), + [anon_sym_SQUOTE] = ACTIONS(679), + [anon_sym_as] = ACTIONS(679), + [anon_sym_async] = ACTIONS(679), + [anon_sym_await] = ACTIONS(679), + [anon_sym_break] = ACTIONS(679), + [anon_sym_const] = ACTIONS(679), + [anon_sym_continue] = ACTIONS(679), + [anon_sym_default] = ACTIONS(679), + [anon_sym_enum] = ACTIONS(679), + [anon_sym_fn] = ACTIONS(679), + [anon_sym_for] = ACTIONS(679), + [anon_sym_gen] = ACTIONS(679), + [anon_sym_if] = ACTIONS(679), + [anon_sym_impl] = ACTIONS(679), + [anon_sym_let] = ACTIONS(679), + [anon_sym_loop] = ACTIONS(679), + [anon_sym_match] = ACTIONS(679), + [anon_sym_mod] = ACTIONS(679), + [anon_sym_pub] = ACTIONS(679), + [anon_sym_return] = ACTIONS(679), + [anon_sym_static] = ACTIONS(679), + [anon_sym_struct] = ACTIONS(679), + [anon_sym_trait] = ACTIONS(679), + [anon_sym_type] = ACTIONS(679), + [anon_sym_union] = ACTIONS(679), + [anon_sym_unsafe] = ACTIONS(679), + [anon_sym_use] = ACTIONS(679), + [anon_sym_where] = ACTIONS(679), + [anon_sym_while] = ACTIONS(679), + [sym_mutable_specifier] = ACTIONS(679), + [sym_integer_literal] = ACTIONS(695), + [aux_sym_string_literal_token1] = ACTIONS(697), + [sym_char_literal] = ACTIONS(695), + [anon_sym_true] = ACTIONS(699), + [anon_sym_false] = ACTIONS(699), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(679), + [sym_super] = ACTIONS(679), + [sym_crate] = ACTIONS(679), + [sym__raw_string_literal_start] = ACTIONS(701), + [sym_float_literal] = ACTIONS(695), }, [STATE(85)] = { - [sym_delim_token_tree] = STATE(207), - [sym__delim_tokens] = STATE(208), - [sym__non_delim_token] = STATE(207), - [sym__literal] = STATE(206), - [sym_string_literal] = STATE(212), - [sym_raw_string_literal] = STATE(212), - [sym_boolean_literal] = STATE(212), + [sym_token_tree] = STATE(170), + [sym_token_repetition] = STATE(170), + [sym__literal] = STATE(170), + [sym_string_literal] = STATE(174), + [sym_raw_string_literal] = STATE(174), + [sym_boolean_literal] = STATE(174), [sym_line_comment] = STATE(85), [sym_block_comment] = STATE(85), - [aux_sym__non_special_token_repeat1] = STATE(181), - [aux_sym_delim_token_tree_repeat1] = STATE(68), - [sym_identifier] = ACTIONS(674), - [anon_sym_SEMI] = ACTIONS(676), - [anon_sym_LPAREN] = ACTIONS(678), - [anon_sym_LBRACK] = ACTIONS(680), - [anon_sym_LBRACE] = ACTIONS(682), - [anon_sym_RBRACE] = ACTIONS(698), - [anon_sym_EQ_GT] = ACTIONS(676), - [anon_sym_COLON] = ACTIONS(686), - [anon_sym_DOLLAR] = ACTIONS(688), - [anon_sym_PLUS] = ACTIONS(686), - [anon_sym_STAR] = ACTIONS(686), - [anon_sym_QMARK] = ACTIONS(676), - [anon_sym_u8] = ACTIONS(674), - [anon_sym_i8] = ACTIONS(674), - [anon_sym_u16] = ACTIONS(674), - [anon_sym_i16] = ACTIONS(674), - [anon_sym_u32] = ACTIONS(674), - [anon_sym_i32] = ACTIONS(674), - [anon_sym_u64] = ACTIONS(674), - [anon_sym_i64] = ACTIONS(674), - [anon_sym_u128] = ACTIONS(674), - [anon_sym_i128] = ACTIONS(674), - [anon_sym_isize] = ACTIONS(674), - [anon_sym_usize] = ACTIONS(674), - [anon_sym_f32] = ACTIONS(674), - [anon_sym_f64] = ACTIONS(674), - [anon_sym_bool] = ACTIONS(674), - [anon_sym_str] = ACTIONS(674), - [anon_sym_char] = ACTIONS(674), - [anon_sym_DASH] = ACTIONS(686), - [anon_sym_SLASH] = ACTIONS(686), - [anon_sym_PERCENT] = ACTIONS(686), - [anon_sym_CARET] = ACTIONS(686), - [anon_sym_BANG] = ACTIONS(686), - [anon_sym_AMP] = ACTIONS(686), - [anon_sym_PIPE] = ACTIONS(686), - [anon_sym_AMP_AMP] = ACTIONS(676), - [anon_sym_PIPE_PIPE] = ACTIONS(676), - [anon_sym_LT_LT] = ACTIONS(686), - [anon_sym_GT_GT] = ACTIONS(686), - [anon_sym_PLUS_EQ] = ACTIONS(676), - [anon_sym_DASH_EQ] = ACTIONS(676), - [anon_sym_STAR_EQ] = ACTIONS(676), - [anon_sym_SLASH_EQ] = ACTIONS(676), - [anon_sym_PERCENT_EQ] = ACTIONS(676), - [anon_sym_CARET_EQ] = ACTIONS(676), - [anon_sym_AMP_EQ] = ACTIONS(676), - [anon_sym_PIPE_EQ] = ACTIONS(676), - [anon_sym_LT_LT_EQ] = ACTIONS(676), - [anon_sym_GT_GT_EQ] = ACTIONS(676), - [anon_sym_EQ] = ACTIONS(686), - [anon_sym_EQ_EQ] = ACTIONS(676), - [anon_sym_BANG_EQ] = ACTIONS(676), - [anon_sym_GT] = ACTIONS(686), - [anon_sym_LT] = ACTIONS(686), - [anon_sym_GT_EQ] = ACTIONS(676), - [anon_sym_LT_EQ] = ACTIONS(676), - [anon_sym_AT] = ACTIONS(676), - [anon_sym__] = ACTIONS(686), - [anon_sym_DOT] = ACTIONS(686), - [anon_sym_DOT_DOT] = ACTIONS(686), - [anon_sym_DOT_DOT_DOT] = ACTIONS(676), - [anon_sym_DOT_DOT_EQ] = ACTIONS(676), - [anon_sym_COMMA] = ACTIONS(676), - [anon_sym_COLON_COLON] = ACTIONS(676), - [anon_sym_DASH_GT] = ACTIONS(676), - [anon_sym_POUND] = ACTIONS(676), - [anon_sym_SQUOTE] = ACTIONS(674), - [anon_sym_as] = ACTIONS(674), - [anon_sym_async] = ACTIONS(674), - [anon_sym_await] = ACTIONS(674), - [anon_sym_break] = ACTIONS(674), - [anon_sym_const] = ACTIONS(674), - [anon_sym_continue] = ACTIONS(674), - [anon_sym_default] = ACTIONS(674), - [anon_sym_enum] = ACTIONS(674), - [anon_sym_fn] = ACTIONS(674), - [anon_sym_for] = ACTIONS(674), - [anon_sym_gen] = ACTIONS(674), - [anon_sym_if] = ACTIONS(674), - [anon_sym_impl] = ACTIONS(674), - [anon_sym_let] = ACTIONS(674), - [anon_sym_loop] = ACTIONS(674), - [anon_sym_match] = ACTIONS(674), - [anon_sym_mod] = ACTIONS(674), - [anon_sym_pub] = ACTIONS(674), - [anon_sym_return] = ACTIONS(674), - [anon_sym_static] = ACTIONS(674), - [anon_sym_struct] = ACTIONS(674), - [anon_sym_trait] = ACTIONS(674), - [anon_sym_type] = ACTIONS(674), - [anon_sym_union] = ACTIONS(674), - [anon_sym_unsafe] = ACTIONS(674), - [anon_sym_use] = ACTIONS(674), - [anon_sym_where] = ACTIONS(674), - [anon_sym_while] = ACTIONS(674), - [sym_mutable_specifier] = ACTIONS(674), - [sym_integer_literal] = ACTIONS(690), - [aux_sym_string_literal_token1] = ACTIONS(692), - [sym_char_literal] = ACTIONS(690), - [anon_sym_true] = ACTIONS(694), - [anon_sym_false] = ACTIONS(694), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(674), - [sym_super] = ACTIONS(674), - [sym_crate] = ACTIONS(674), - [sym__raw_string_literal_start] = ACTIONS(696), - [sym_float_literal] = ACTIONS(690), + [aux_sym_token_tree_repeat1] = STATE(70), + [aux_sym__non_special_token_repeat1] = STATE(136), + [sym_identifier] = ACTIONS(703), + [anon_sym_SEMI] = ACTIONS(572), + [anon_sym_LPAREN] = ACTIONS(705), + [anon_sym_LBRACK] = ACTIONS(707), + [anon_sym_RBRACK] = ACTIONS(709), + [anon_sym_LBRACE] = ACTIONS(711), + [anon_sym_EQ_GT] = ACTIONS(572), + [anon_sym_COLON] = ACTIONS(582), + [anon_sym_DOLLAR] = ACTIONS(713), + [anon_sym_PLUS] = ACTIONS(582), + [anon_sym_STAR] = ACTIONS(582), + [anon_sym_QMARK] = ACTIONS(572), + [anon_sym_u8] = ACTIONS(703), + [anon_sym_i8] = ACTIONS(703), + [anon_sym_u16] = ACTIONS(703), + [anon_sym_i16] = ACTIONS(703), + [anon_sym_u32] = ACTIONS(703), + [anon_sym_i32] = ACTIONS(703), + [anon_sym_u64] = ACTIONS(703), + [anon_sym_i64] = ACTIONS(703), + [anon_sym_u128] = ACTIONS(703), + [anon_sym_i128] = ACTIONS(703), + [anon_sym_isize] = ACTIONS(703), + [anon_sym_usize] = ACTIONS(703), + [anon_sym_f32] = ACTIONS(703), + [anon_sym_f64] = ACTIONS(703), + [anon_sym_bool] = ACTIONS(703), + [anon_sym_str] = ACTIONS(703), + [anon_sym_char] = ACTIONS(703), + [anon_sym_DASH] = ACTIONS(582), + [anon_sym_SLASH] = ACTIONS(582), + [anon_sym_PERCENT] = ACTIONS(582), + [anon_sym_CARET] = ACTIONS(582), + [anon_sym_BANG] = ACTIONS(582), + [anon_sym_AMP] = ACTIONS(582), + [anon_sym_PIPE] = ACTIONS(582), + [anon_sym_AMP_AMP] = ACTIONS(572), + [anon_sym_PIPE_PIPE] = ACTIONS(572), + [anon_sym_LT_LT] = ACTIONS(582), + [anon_sym_GT_GT] = ACTIONS(582), + [anon_sym_PLUS_EQ] = ACTIONS(572), + [anon_sym_DASH_EQ] = ACTIONS(572), + [anon_sym_STAR_EQ] = ACTIONS(572), + [anon_sym_SLASH_EQ] = ACTIONS(572), + [anon_sym_PERCENT_EQ] = ACTIONS(572), + [anon_sym_CARET_EQ] = ACTIONS(572), + [anon_sym_AMP_EQ] = ACTIONS(572), + [anon_sym_PIPE_EQ] = ACTIONS(572), + [anon_sym_LT_LT_EQ] = ACTIONS(572), + [anon_sym_GT_GT_EQ] = ACTIONS(572), + [anon_sym_EQ] = ACTIONS(582), + [anon_sym_EQ_EQ] = ACTIONS(572), + [anon_sym_BANG_EQ] = ACTIONS(572), + [anon_sym_GT] = ACTIONS(582), + [anon_sym_LT] = ACTIONS(582), + [anon_sym_GT_EQ] = ACTIONS(572), + [anon_sym_LT_EQ] = ACTIONS(572), + [anon_sym_AT] = ACTIONS(572), + [anon_sym__] = ACTIONS(582), + [anon_sym_DOT] = ACTIONS(582), + [anon_sym_DOT_DOT] = ACTIONS(582), + [anon_sym_DOT_DOT_DOT] = ACTIONS(572), + [anon_sym_DOT_DOT_EQ] = ACTIONS(572), + [anon_sym_COMMA] = ACTIONS(572), + [anon_sym_COLON_COLON] = ACTIONS(572), + [anon_sym_DASH_GT] = ACTIONS(572), + [anon_sym_POUND] = ACTIONS(572), + [anon_sym_SQUOTE] = ACTIONS(703), + [anon_sym_as] = ACTIONS(703), + [anon_sym_async] = ACTIONS(703), + [anon_sym_await] = ACTIONS(703), + [anon_sym_break] = ACTIONS(703), + [anon_sym_const] = ACTIONS(703), + [anon_sym_continue] = ACTIONS(703), + [anon_sym_default] = ACTIONS(703), + [anon_sym_enum] = ACTIONS(703), + [anon_sym_fn] = ACTIONS(703), + [anon_sym_for] = ACTIONS(703), + [anon_sym_gen] = ACTIONS(703), + [anon_sym_if] = ACTIONS(703), + [anon_sym_impl] = ACTIONS(703), + [anon_sym_let] = ACTIONS(703), + [anon_sym_loop] = ACTIONS(703), + [anon_sym_match] = ACTIONS(703), + [anon_sym_mod] = ACTIONS(703), + [anon_sym_pub] = ACTIONS(703), + [anon_sym_return] = ACTIONS(703), + [anon_sym_static] = ACTIONS(703), + [anon_sym_struct] = ACTIONS(703), + [anon_sym_trait] = ACTIONS(703), + [anon_sym_type] = ACTIONS(703), + [anon_sym_union] = ACTIONS(703), + [anon_sym_unsafe] = ACTIONS(703), + [anon_sym_use] = ACTIONS(703), + [anon_sym_where] = ACTIONS(703), + [anon_sym_while] = ACTIONS(703), + [sym_mutable_specifier] = ACTIONS(703), + [sym_integer_literal] = ACTIONS(586), + [aux_sym_string_literal_token1] = ACTIONS(588), + [sym_char_literal] = ACTIONS(586), + [anon_sym_true] = ACTIONS(590), + [anon_sym_false] = ACTIONS(590), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(703), + [sym_super] = ACTIONS(703), + [sym_crate] = ACTIONS(703), + [sym_metavariable] = ACTIONS(715), + [sym__raw_string_literal_start] = ACTIONS(594), + [sym_float_literal] = ACTIONS(586), }, [STATE(86)] = { [sym_token_tree] = STATE(170), [sym_token_repetition] = STATE(170), [sym__literal] = STATE(170), - [sym_string_literal] = STATE(175), - [sym_raw_string_literal] = STATE(175), - [sym_boolean_literal] = STATE(175), + [sym_string_literal] = STATE(174), + [sym_raw_string_literal] = STATE(174), + [sym_boolean_literal] = STATE(174), [sym_line_comment] = STATE(86), [sym_block_comment] = STATE(86), - [aux_sym_token_tree_repeat1] = STATE(98), - [aux_sym__non_special_token_repeat1] = STATE(140), - [sym_identifier] = ACTIONS(700), - [anon_sym_SEMI] = ACTIONS(640), - [anon_sym_LPAREN] = ACTIONS(702), - [anon_sym_LBRACK] = ACTIONS(704), - [anon_sym_RBRACK] = ACTIONS(706), - [anon_sym_LBRACE] = ACTIONS(708), - [anon_sym_EQ_GT] = ACTIONS(640), - [anon_sym_COLON] = ACTIONS(650), - [anon_sym_DOLLAR] = ACTIONS(710), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_STAR] = ACTIONS(650), - [anon_sym_QMARK] = ACTIONS(640), - [anon_sym_u8] = ACTIONS(700), - [anon_sym_i8] = ACTIONS(700), - [anon_sym_u16] = ACTIONS(700), - [anon_sym_i16] = ACTIONS(700), - [anon_sym_u32] = ACTIONS(700), - [anon_sym_i32] = ACTIONS(700), - [anon_sym_u64] = ACTIONS(700), - [anon_sym_i64] = ACTIONS(700), - [anon_sym_u128] = ACTIONS(700), - [anon_sym_i128] = ACTIONS(700), - [anon_sym_isize] = ACTIONS(700), - [anon_sym_usize] = ACTIONS(700), - [anon_sym_f32] = ACTIONS(700), - [anon_sym_f64] = ACTIONS(700), - [anon_sym_bool] = ACTIONS(700), - [anon_sym_str] = ACTIONS(700), - [anon_sym_char] = ACTIONS(700), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(650), - [anon_sym_PERCENT] = ACTIONS(650), - [anon_sym_CARET] = ACTIONS(650), - [anon_sym_BANG] = ACTIONS(650), - [anon_sym_AMP] = ACTIONS(650), - [anon_sym_PIPE] = ACTIONS(650), - [anon_sym_AMP_AMP] = ACTIONS(640), - [anon_sym_PIPE_PIPE] = ACTIONS(640), - [anon_sym_LT_LT] = ACTIONS(650), - [anon_sym_GT_GT] = ACTIONS(650), - [anon_sym_PLUS_EQ] = ACTIONS(640), - [anon_sym_DASH_EQ] = ACTIONS(640), - [anon_sym_STAR_EQ] = ACTIONS(640), - [anon_sym_SLASH_EQ] = ACTIONS(640), - [anon_sym_PERCENT_EQ] = ACTIONS(640), - [anon_sym_CARET_EQ] = ACTIONS(640), - [anon_sym_AMP_EQ] = ACTIONS(640), - [anon_sym_PIPE_EQ] = ACTIONS(640), - [anon_sym_LT_LT_EQ] = ACTIONS(640), - [anon_sym_GT_GT_EQ] = ACTIONS(640), - [anon_sym_EQ] = ACTIONS(650), - [anon_sym_EQ_EQ] = ACTIONS(640), - [anon_sym_BANG_EQ] = ACTIONS(640), - [anon_sym_GT] = ACTIONS(650), - [anon_sym_LT] = ACTIONS(650), - [anon_sym_GT_EQ] = ACTIONS(640), - [anon_sym_LT_EQ] = ACTIONS(640), - [anon_sym_AT] = ACTIONS(640), - [anon_sym__] = ACTIONS(650), - [anon_sym_DOT] = ACTIONS(650), - [anon_sym_DOT_DOT] = ACTIONS(650), - [anon_sym_DOT_DOT_DOT] = ACTIONS(640), - [anon_sym_DOT_DOT_EQ] = ACTIONS(640), - [anon_sym_COMMA] = ACTIONS(640), - [anon_sym_COLON_COLON] = ACTIONS(640), - [anon_sym_DASH_GT] = ACTIONS(640), - [anon_sym_POUND] = ACTIONS(640), - [anon_sym_SQUOTE] = ACTIONS(700), - [anon_sym_as] = ACTIONS(700), - [anon_sym_async] = ACTIONS(700), - [anon_sym_await] = ACTIONS(700), - [anon_sym_break] = ACTIONS(700), - [anon_sym_const] = ACTIONS(700), - [anon_sym_continue] = ACTIONS(700), - [anon_sym_default] = ACTIONS(700), - [anon_sym_enum] = ACTIONS(700), - [anon_sym_fn] = ACTIONS(700), - [anon_sym_for] = ACTIONS(700), - [anon_sym_gen] = ACTIONS(700), - [anon_sym_if] = ACTIONS(700), - [anon_sym_impl] = ACTIONS(700), - [anon_sym_let] = ACTIONS(700), - [anon_sym_loop] = ACTIONS(700), - [anon_sym_match] = ACTIONS(700), - [anon_sym_mod] = ACTIONS(700), - [anon_sym_pub] = ACTIONS(700), - [anon_sym_return] = ACTIONS(700), - [anon_sym_static] = ACTIONS(700), - [anon_sym_struct] = ACTIONS(700), - [anon_sym_trait] = ACTIONS(700), - [anon_sym_type] = ACTIONS(700), - [anon_sym_union] = ACTIONS(700), - [anon_sym_unsafe] = ACTIONS(700), - [anon_sym_use] = ACTIONS(700), - [anon_sym_where] = ACTIONS(700), - [anon_sym_while] = ACTIONS(700), - [sym_mutable_specifier] = ACTIONS(700), - [sym_integer_literal] = ACTIONS(654), - [aux_sym_string_literal_token1] = ACTIONS(656), - [sym_char_literal] = ACTIONS(654), - [anon_sym_true] = ACTIONS(658), - [anon_sym_false] = ACTIONS(658), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(700), - [sym_super] = ACTIONS(700), - [sym_crate] = ACTIONS(700), - [sym_metavariable] = ACTIONS(712), - [sym__raw_string_literal_start] = ACTIONS(662), - [sym_float_literal] = ACTIONS(654), + [aux_sym_token_tree_repeat1] = STATE(70), + [aux_sym__non_special_token_repeat1] = STATE(136), + [sym_identifier] = ACTIONS(703), + [anon_sym_SEMI] = ACTIONS(572), + [anon_sym_LPAREN] = ACTIONS(705), + [anon_sym_LBRACK] = ACTIONS(707), + [anon_sym_LBRACE] = ACTIONS(711), + [anon_sym_RBRACE] = ACTIONS(709), + [anon_sym_EQ_GT] = ACTIONS(572), + [anon_sym_COLON] = ACTIONS(582), + [anon_sym_DOLLAR] = ACTIONS(713), + [anon_sym_PLUS] = ACTIONS(582), + [anon_sym_STAR] = ACTIONS(582), + [anon_sym_QMARK] = ACTIONS(572), + [anon_sym_u8] = ACTIONS(703), + [anon_sym_i8] = ACTIONS(703), + [anon_sym_u16] = ACTIONS(703), + [anon_sym_i16] = ACTIONS(703), + [anon_sym_u32] = ACTIONS(703), + [anon_sym_i32] = ACTIONS(703), + [anon_sym_u64] = ACTIONS(703), + [anon_sym_i64] = ACTIONS(703), + [anon_sym_u128] = ACTIONS(703), + [anon_sym_i128] = ACTIONS(703), + [anon_sym_isize] = ACTIONS(703), + [anon_sym_usize] = ACTIONS(703), + [anon_sym_f32] = ACTIONS(703), + [anon_sym_f64] = ACTIONS(703), + [anon_sym_bool] = ACTIONS(703), + [anon_sym_str] = ACTIONS(703), + [anon_sym_char] = ACTIONS(703), + [anon_sym_DASH] = ACTIONS(582), + [anon_sym_SLASH] = ACTIONS(582), + [anon_sym_PERCENT] = ACTIONS(582), + [anon_sym_CARET] = ACTIONS(582), + [anon_sym_BANG] = ACTIONS(582), + [anon_sym_AMP] = ACTIONS(582), + [anon_sym_PIPE] = ACTIONS(582), + [anon_sym_AMP_AMP] = ACTIONS(572), + [anon_sym_PIPE_PIPE] = ACTIONS(572), + [anon_sym_LT_LT] = ACTIONS(582), + [anon_sym_GT_GT] = ACTIONS(582), + [anon_sym_PLUS_EQ] = ACTIONS(572), + [anon_sym_DASH_EQ] = ACTIONS(572), + [anon_sym_STAR_EQ] = ACTIONS(572), + [anon_sym_SLASH_EQ] = ACTIONS(572), + [anon_sym_PERCENT_EQ] = ACTIONS(572), + [anon_sym_CARET_EQ] = ACTIONS(572), + [anon_sym_AMP_EQ] = ACTIONS(572), + [anon_sym_PIPE_EQ] = ACTIONS(572), + [anon_sym_LT_LT_EQ] = ACTIONS(572), + [anon_sym_GT_GT_EQ] = ACTIONS(572), + [anon_sym_EQ] = ACTIONS(582), + [anon_sym_EQ_EQ] = ACTIONS(572), + [anon_sym_BANG_EQ] = ACTIONS(572), + [anon_sym_GT] = ACTIONS(582), + [anon_sym_LT] = ACTIONS(582), + [anon_sym_GT_EQ] = ACTIONS(572), + [anon_sym_LT_EQ] = ACTIONS(572), + [anon_sym_AT] = ACTIONS(572), + [anon_sym__] = ACTIONS(582), + [anon_sym_DOT] = ACTIONS(582), + [anon_sym_DOT_DOT] = ACTIONS(582), + [anon_sym_DOT_DOT_DOT] = ACTIONS(572), + [anon_sym_DOT_DOT_EQ] = ACTIONS(572), + [anon_sym_COMMA] = ACTIONS(572), + [anon_sym_COLON_COLON] = ACTIONS(572), + [anon_sym_DASH_GT] = ACTIONS(572), + [anon_sym_POUND] = ACTIONS(572), + [anon_sym_SQUOTE] = ACTIONS(703), + [anon_sym_as] = ACTIONS(703), + [anon_sym_async] = ACTIONS(703), + [anon_sym_await] = ACTIONS(703), + [anon_sym_break] = ACTIONS(703), + [anon_sym_const] = ACTIONS(703), + [anon_sym_continue] = ACTIONS(703), + [anon_sym_default] = ACTIONS(703), + [anon_sym_enum] = ACTIONS(703), + [anon_sym_fn] = ACTIONS(703), + [anon_sym_for] = ACTIONS(703), + [anon_sym_gen] = ACTIONS(703), + [anon_sym_if] = ACTIONS(703), + [anon_sym_impl] = ACTIONS(703), + [anon_sym_let] = ACTIONS(703), + [anon_sym_loop] = ACTIONS(703), + [anon_sym_match] = ACTIONS(703), + [anon_sym_mod] = ACTIONS(703), + [anon_sym_pub] = ACTIONS(703), + [anon_sym_return] = ACTIONS(703), + [anon_sym_static] = ACTIONS(703), + [anon_sym_struct] = ACTIONS(703), + [anon_sym_trait] = ACTIONS(703), + [anon_sym_type] = ACTIONS(703), + [anon_sym_union] = ACTIONS(703), + [anon_sym_unsafe] = ACTIONS(703), + [anon_sym_use] = ACTIONS(703), + [anon_sym_where] = ACTIONS(703), + [anon_sym_while] = ACTIONS(703), + [sym_mutable_specifier] = ACTIONS(703), + [sym_integer_literal] = ACTIONS(586), + [aux_sym_string_literal_token1] = ACTIONS(588), + [sym_char_literal] = ACTIONS(586), + [anon_sym_true] = ACTIONS(590), + [anon_sym_false] = ACTIONS(590), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(703), + [sym_super] = ACTIONS(703), + [sym_crate] = ACTIONS(703), + [sym_metavariable] = ACTIONS(715), + [sym__raw_string_literal_start] = ACTIONS(594), + [sym_float_literal] = ACTIONS(586), }, [STATE(87)] = { - [sym_token_tree] = STATE(170), - [sym_token_repetition] = STATE(170), - [sym__literal] = STATE(170), - [sym_string_literal] = STATE(175), - [sym_raw_string_literal] = STATE(175), - [sym_boolean_literal] = STATE(175), + [sym_delim_token_tree] = STATE(208), + [sym__delim_tokens] = STATE(209), + [sym__non_delim_token] = STATE(208), + [sym__literal] = STATE(204), + [sym_string_literal] = STATE(201), + [sym_raw_string_literal] = STATE(201), + [sym_boolean_literal] = STATE(201), [sym_line_comment] = STATE(87), [sym_block_comment] = STATE(87), - [aux_sym_token_tree_repeat1] = STATE(99), - [aux_sym__non_special_token_repeat1] = STATE(140), - [sym_identifier] = ACTIONS(700), - [anon_sym_SEMI] = ACTIONS(640), - [anon_sym_LPAREN] = ACTIONS(702), - [anon_sym_LBRACK] = ACTIONS(704), - [anon_sym_LBRACE] = ACTIONS(708), - [anon_sym_RBRACE] = ACTIONS(706), - [anon_sym_EQ_GT] = ACTIONS(640), - [anon_sym_COLON] = ACTIONS(650), - [anon_sym_DOLLAR] = ACTIONS(710), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_STAR] = ACTIONS(650), - [anon_sym_QMARK] = ACTIONS(640), - [anon_sym_u8] = ACTIONS(700), - [anon_sym_i8] = ACTIONS(700), - [anon_sym_u16] = ACTIONS(700), - [anon_sym_i16] = ACTIONS(700), - [anon_sym_u32] = ACTIONS(700), - [anon_sym_i32] = ACTIONS(700), - [anon_sym_u64] = ACTIONS(700), - [anon_sym_i64] = ACTIONS(700), - [anon_sym_u128] = ACTIONS(700), - [anon_sym_i128] = ACTIONS(700), - [anon_sym_isize] = ACTIONS(700), - [anon_sym_usize] = ACTIONS(700), - [anon_sym_f32] = ACTIONS(700), - [anon_sym_f64] = ACTIONS(700), - [anon_sym_bool] = ACTIONS(700), - [anon_sym_str] = ACTIONS(700), - [anon_sym_char] = ACTIONS(700), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(650), - [anon_sym_PERCENT] = ACTIONS(650), - [anon_sym_CARET] = ACTIONS(650), - [anon_sym_BANG] = ACTIONS(650), - [anon_sym_AMP] = ACTIONS(650), - [anon_sym_PIPE] = ACTIONS(650), - [anon_sym_AMP_AMP] = ACTIONS(640), - [anon_sym_PIPE_PIPE] = ACTIONS(640), - [anon_sym_LT_LT] = ACTIONS(650), - [anon_sym_GT_GT] = ACTIONS(650), - [anon_sym_PLUS_EQ] = ACTIONS(640), - [anon_sym_DASH_EQ] = ACTIONS(640), - [anon_sym_STAR_EQ] = ACTIONS(640), - [anon_sym_SLASH_EQ] = ACTIONS(640), - [anon_sym_PERCENT_EQ] = ACTIONS(640), - [anon_sym_CARET_EQ] = ACTIONS(640), - [anon_sym_AMP_EQ] = ACTIONS(640), - [anon_sym_PIPE_EQ] = ACTIONS(640), - [anon_sym_LT_LT_EQ] = ACTIONS(640), - [anon_sym_GT_GT_EQ] = ACTIONS(640), - [anon_sym_EQ] = ACTIONS(650), - [anon_sym_EQ_EQ] = ACTIONS(640), - [anon_sym_BANG_EQ] = ACTIONS(640), - [anon_sym_GT] = ACTIONS(650), - [anon_sym_LT] = ACTIONS(650), - [anon_sym_GT_EQ] = ACTIONS(640), - [anon_sym_LT_EQ] = ACTIONS(640), - [anon_sym_AT] = ACTIONS(640), - [anon_sym__] = ACTIONS(650), - [anon_sym_DOT] = ACTIONS(650), - [anon_sym_DOT_DOT] = ACTIONS(650), - [anon_sym_DOT_DOT_DOT] = ACTIONS(640), - [anon_sym_DOT_DOT_EQ] = ACTIONS(640), - [anon_sym_COMMA] = ACTIONS(640), - [anon_sym_COLON_COLON] = ACTIONS(640), - [anon_sym_DASH_GT] = ACTIONS(640), - [anon_sym_POUND] = ACTIONS(640), - [anon_sym_SQUOTE] = ACTIONS(700), - [anon_sym_as] = ACTIONS(700), - [anon_sym_async] = ACTIONS(700), - [anon_sym_await] = ACTIONS(700), - [anon_sym_break] = ACTIONS(700), - [anon_sym_const] = ACTIONS(700), - [anon_sym_continue] = ACTIONS(700), - [anon_sym_default] = ACTIONS(700), - [anon_sym_enum] = ACTIONS(700), - [anon_sym_fn] = ACTIONS(700), - [anon_sym_for] = ACTIONS(700), - [anon_sym_gen] = ACTIONS(700), - [anon_sym_if] = ACTIONS(700), - [anon_sym_impl] = ACTIONS(700), - [anon_sym_let] = ACTIONS(700), - [anon_sym_loop] = ACTIONS(700), - [anon_sym_match] = ACTIONS(700), - [anon_sym_mod] = ACTIONS(700), - [anon_sym_pub] = ACTIONS(700), - [anon_sym_return] = ACTIONS(700), - [anon_sym_static] = ACTIONS(700), - [anon_sym_struct] = ACTIONS(700), - [anon_sym_trait] = ACTIONS(700), - [anon_sym_type] = ACTIONS(700), - [anon_sym_union] = ACTIONS(700), - [anon_sym_unsafe] = ACTIONS(700), - [anon_sym_use] = ACTIONS(700), - [anon_sym_where] = ACTIONS(700), - [anon_sym_while] = ACTIONS(700), - [sym_mutable_specifier] = ACTIONS(700), - [sym_integer_literal] = ACTIONS(654), - [aux_sym_string_literal_token1] = ACTIONS(656), - [sym_char_literal] = ACTIONS(654), - [anon_sym_true] = ACTIONS(658), - [anon_sym_false] = ACTIONS(658), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(700), - [sym_super] = ACTIONS(700), - [sym_crate] = ACTIONS(700), - [sym_metavariable] = ACTIONS(712), - [sym__raw_string_literal_start] = ACTIONS(662), - [sym_float_literal] = ACTIONS(654), + [aux_sym__non_special_token_repeat1] = STATE(180), + [aux_sym_delim_token_tree_repeat1] = STATE(127), + [sym_identifier] = ACTIONS(679), + [anon_sym_SEMI] = ACTIONS(681), + [anon_sym_LPAREN] = ACTIONS(683), + [anon_sym_RPAREN] = ACTIONS(717), + [anon_sym_LBRACK] = ACTIONS(685), + [anon_sym_LBRACE] = ACTIONS(689), + [anon_sym_EQ_GT] = ACTIONS(681), + [anon_sym_COLON] = ACTIONS(691), + [anon_sym_DOLLAR] = ACTIONS(693), + [anon_sym_PLUS] = ACTIONS(691), + [anon_sym_STAR] = ACTIONS(691), + [anon_sym_QMARK] = ACTIONS(681), + [anon_sym_u8] = ACTIONS(679), + [anon_sym_i8] = ACTIONS(679), + [anon_sym_u16] = ACTIONS(679), + [anon_sym_i16] = ACTIONS(679), + [anon_sym_u32] = ACTIONS(679), + [anon_sym_i32] = ACTIONS(679), + [anon_sym_u64] = ACTIONS(679), + [anon_sym_i64] = ACTIONS(679), + [anon_sym_u128] = ACTIONS(679), + [anon_sym_i128] = ACTIONS(679), + [anon_sym_isize] = ACTIONS(679), + [anon_sym_usize] = ACTIONS(679), + [anon_sym_f32] = ACTIONS(679), + [anon_sym_f64] = ACTIONS(679), + [anon_sym_bool] = ACTIONS(679), + [anon_sym_str] = ACTIONS(679), + [anon_sym_char] = ACTIONS(679), + [anon_sym_DASH] = ACTIONS(691), + [anon_sym_SLASH] = ACTIONS(691), + [anon_sym_PERCENT] = ACTIONS(691), + [anon_sym_CARET] = ACTIONS(691), + [anon_sym_BANG] = ACTIONS(691), + [anon_sym_AMP] = ACTIONS(691), + [anon_sym_PIPE] = ACTIONS(691), + [anon_sym_AMP_AMP] = ACTIONS(681), + [anon_sym_PIPE_PIPE] = ACTIONS(681), + [anon_sym_LT_LT] = ACTIONS(691), + [anon_sym_GT_GT] = ACTIONS(691), + [anon_sym_PLUS_EQ] = ACTIONS(681), + [anon_sym_DASH_EQ] = ACTIONS(681), + [anon_sym_STAR_EQ] = ACTIONS(681), + [anon_sym_SLASH_EQ] = ACTIONS(681), + [anon_sym_PERCENT_EQ] = ACTIONS(681), + [anon_sym_CARET_EQ] = ACTIONS(681), + [anon_sym_AMP_EQ] = ACTIONS(681), + [anon_sym_PIPE_EQ] = ACTIONS(681), + [anon_sym_LT_LT_EQ] = ACTIONS(681), + [anon_sym_GT_GT_EQ] = ACTIONS(681), + [anon_sym_EQ] = ACTIONS(691), + [anon_sym_EQ_EQ] = ACTIONS(681), + [anon_sym_BANG_EQ] = ACTIONS(681), + [anon_sym_GT] = ACTIONS(691), + [anon_sym_LT] = ACTIONS(691), + [anon_sym_GT_EQ] = ACTIONS(681), + [anon_sym_LT_EQ] = ACTIONS(681), + [anon_sym_AT] = ACTIONS(681), + [anon_sym__] = ACTIONS(691), + [anon_sym_DOT] = ACTIONS(691), + [anon_sym_DOT_DOT] = ACTIONS(691), + [anon_sym_DOT_DOT_DOT] = ACTIONS(681), + [anon_sym_DOT_DOT_EQ] = ACTIONS(681), + [anon_sym_COMMA] = ACTIONS(681), + [anon_sym_COLON_COLON] = ACTIONS(681), + [anon_sym_DASH_GT] = ACTIONS(681), + [anon_sym_POUND] = ACTIONS(681), + [anon_sym_SQUOTE] = ACTIONS(679), + [anon_sym_as] = ACTIONS(679), + [anon_sym_async] = ACTIONS(679), + [anon_sym_await] = ACTIONS(679), + [anon_sym_break] = ACTIONS(679), + [anon_sym_const] = ACTIONS(679), + [anon_sym_continue] = ACTIONS(679), + [anon_sym_default] = ACTIONS(679), + [anon_sym_enum] = ACTIONS(679), + [anon_sym_fn] = ACTIONS(679), + [anon_sym_for] = ACTIONS(679), + [anon_sym_gen] = ACTIONS(679), + [anon_sym_if] = ACTIONS(679), + [anon_sym_impl] = ACTIONS(679), + [anon_sym_let] = ACTIONS(679), + [anon_sym_loop] = ACTIONS(679), + [anon_sym_match] = ACTIONS(679), + [anon_sym_mod] = ACTIONS(679), + [anon_sym_pub] = ACTIONS(679), + [anon_sym_return] = ACTIONS(679), + [anon_sym_static] = ACTIONS(679), + [anon_sym_struct] = ACTIONS(679), + [anon_sym_trait] = ACTIONS(679), + [anon_sym_type] = ACTIONS(679), + [anon_sym_union] = ACTIONS(679), + [anon_sym_unsafe] = ACTIONS(679), + [anon_sym_use] = ACTIONS(679), + [anon_sym_where] = ACTIONS(679), + [anon_sym_while] = ACTIONS(679), + [sym_mutable_specifier] = ACTIONS(679), + [sym_integer_literal] = ACTIONS(695), + [aux_sym_string_literal_token1] = ACTIONS(697), + [sym_char_literal] = ACTIONS(695), + [anon_sym_true] = ACTIONS(699), + [anon_sym_false] = ACTIONS(699), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(679), + [sym_super] = ACTIONS(679), + [sym_crate] = ACTIONS(679), + [sym__raw_string_literal_start] = ACTIONS(701), + [sym_float_literal] = ACTIONS(695), }, [STATE(88)] = { - [sym_delim_token_tree] = STATE(207), - [sym__delim_tokens] = STATE(208), - [sym__non_delim_token] = STATE(207), - [sym__literal] = STATE(206), - [sym_string_literal] = STATE(212), - [sym_raw_string_literal] = STATE(212), - [sym_boolean_literal] = STATE(212), + [sym_delim_token_tree] = STATE(208), + [sym__delim_tokens] = STATE(209), + [sym__non_delim_token] = STATE(208), + [sym__literal] = STATE(204), + [sym_string_literal] = STATE(201), + [sym_raw_string_literal] = STATE(201), + [sym_boolean_literal] = STATE(201), [sym_line_comment] = STATE(88), [sym_block_comment] = STATE(88), - [aux_sym__non_special_token_repeat1] = STATE(181), - [aux_sym_delim_token_tree_repeat1] = STATE(128), - [sym_identifier] = ACTIONS(674), - [anon_sym_SEMI] = ACTIONS(676), - [anon_sym_LPAREN] = ACTIONS(678), - [anon_sym_RPAREN] = ACTIONS(714), - [anon_sym_LBRACK] = ACTIONS(680), - [anon_sym_LBRACE] = ACTIONS(682), - [anon_sym_EQ_GT] = ACTIONS(676), - [anon_sym_COLON] = ACTIONS(686), - [anon_sym_DOLLAR] = ACTIONS(688), - [anon_sym_PLUS] = ACTIONS(686), - [anon_sym_STAR] = ACTIONS(686), - [anon_sym_QMARK] = ACTIONS(676), - [anon_sym_u8] = ACTIONS(674), - [anon_sym_i8] = ACTIONS(674), - [anon_sym_u16] = ACTIONS(674), - [anon_sym_i16] = ACTIONS(674), - [anon_sym_u32] = ACTIONS(674), - [anon_sym_i32] = ACTIONS(674), - [anon_sym_u64] = ACTIONS(674), - [anon_sym_i64] = ACTIONS(674), - [anon_sym_u128] = ACTIONS(674), - [anon_sym_i128] = ACTIONS(674), - [anon_sym_isize] = ACTIONS(674), - [anon_sym_usize] = ACTIONS(674), - [anon_sym_f32] = ACTIONS(674), - [anon_sym_f64] = ACTIONS(674), - [anon_sym_bool] = ACTIONS(674), - [anon_sym_str] = ACTIONS(674), - [anon_sym_char] = ACTIONS(674), - [anon_sym_DASH] = ACTIONS(686), - [anon_sym_SLASH] = ACTIONS(686), - [anon_sym_PERCENT] = ACTIONS(686), - [anon_sym_CARET] = ACTIONS(686), - [anon_sym_BANG] = ACTIONS(686), - [anon_sym_AMP] = ACTIONS(686), - [anon_sym_PIPE] = ACTIONS(686), - [anon_sym_AMP_AMP] = ACTIONS(676), - [anon_sym_PIPE_PIPE] = ACTIONS(676), - [anon_sym_LT_LT] = ACTIONS(686), - [anon_sym_GT_GT] = ACTIONS(686), - [anon_sym_PLUS_EQ] = ACTIONS(676), - [anon_sym_DASH_EQ] = ACTIONS(676), - [anon_sym_STAR_EQ] = ACTIONS(676), - [anon_sym_SLASH_EQ] = ACTIONS(676), - [anon_sym_PERCENT_EQ] = ACTIONS(676), - [anon_sym_CARET_EQ] = ACTIONS(676), - [anon_sym_AMP_EQ] = ACTIONS(676), - [anon_sym_PIPE_EQ] = ACTIONS(676), - [anon_sym_LT_LT_EQ] = ACTIONS(676), - [anon_sym_GT_GT_EQ] = ACTIONS(676), - [anon_sym_EQ] = ACTIONS(686), - [anon_sym_EQ_EQ] = ACTIONS(676), - [anon_sym_BANG_EQ] = ACTIONS(676), - [anon_sym_GT] = ACTIONS(686), - [anon_sym_LT] = ACTIONS(686), - [anon_sym_GT_EQ] = ACTIONS(676), - [anon_sym_LT_EQ] = ACTIONS(676), - [anon_sym_AT] = ACTIONS(676), - [anon_sym__] = ACTIONS(686), - [anon_sym_DOT] = ACTIONS(686), - [anon_sym_DOT_DOT] = ACTIONS(686), - [anon_sym_DOT_DOT_DOT] = ACTIONS(676), - [anon_sym_DOT_DOT_EQ] = ACTIONS(676), - [anon_sym_COMMA] = ACTIONS(676), - [anon_sym_COLON_COLON] = ACTIONS(676), - [anon_sym_DASH_GT] = ACTIONS(676), - [anon_sym_POUND] = ACTIONS(676), - [anon_sym_SQUOTE] = ACTIONS(674), - [anon_sym_as] = ACTIONS(674), - [anon_sym_async] = ACTIONS(674), - [anon_sym_await] = ACTIONS(674), - [anon_sym_break] = ACTIONS(674), - [anon_sym_const] = ACTIONS(674), - [anon_sym_continue] = ACTIONS(674), - [anon_sym_default] = ACTIONS(674), - [anon_sym_enum] = ACTIONS(674), - [anon_sym_fn] = ACTIONS(674), - [anon_sym_for] = ACTIONS(674), - [anon_sym_gen] = ACTIONS(674), - [anon_sym_if] = ACTIONS(674), - [anon_sym_impl] = ACTIONS(674), - [anon_sym_let] = ACTIONS(674), - [anon_sym_loop] = ACTIONS(674), - [anon_sym_match] = ACTIONS(674), - [anon_sym_mod] = ACTIONS(674), - [anon_sym_pub] = ACTIONS(674), - [anon_sym_return] = ACTIONS(674), - [anon_sym_static] = ACTIONS(674), - [anon_sym_struct] = ACTIONS(674), - [anon_sym_trait] = ACTIONS(674), - [anon_sym_type] = ACTIONS(674), - [anon_sym_union] = ACTIONS(674), - [anon_sym_unsafe] = ACTIONS(674), - [anon_sym_use] = ACTIONS(674), - [anon_sym_where] = ACTIONS(674), - [anon_sym_while] = ACTIONS(674), - [sym_mutable_specifier] = ACTIONS(674), - [sym_integer_literal] = ACTIONS(690), - [aux_sym_string_literal_token1] = ACTIONS(692), - [sym_char_literal] = ACTIONS(690), - [anon_sym_true] = ACTIONS(694), - [anon_sym_false] = ACTIONS(694), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(674), - [sym_super] = ACTIONS(674), - [sym_crate] = ACTIONS(674), - [sym__raw_string_literal_start] = ACTIONS(696), - [sym_float_literal] = ACTIONS(690), + [aux_sym__non_special_token_repeat1] = STATE(180), + [aux_sym_delim_token_tree_repeat1] = STATE(131), + [sym_identifier] = ACTIONS(679), + [anon_sym_SEMI] = ACTIONS(681), + [anon_sym_LPAREN] = ACTIONS(683), + [anon_sym_LBRACK] = ACTIONS(685), + [anon_sym_RBRACK] = ACTIONS(717), + [anon_sym_LBRACE] = ACTIONS(689), + [anon_sym_EQ_GT] = ACTIONS(681), + [anon_sym_COLON] = ACTIONS(691), + [anon_sym_DOLLAR] = ACTIONS(693), + [anon_sym_PLUS] = ACTIONS(691), + [anon_sym_STAR] = ACTIONS(691), + [anon_sym_QMARK] = ACTIONS(681), + [anon_sym_u8] = ACTIONS(679), + [anon_sym_i8] = ACTIONS(679), + [anon_sym_u16] = ACTIONS(679), + [anon_sym_i16] = ACTIONS(679), + [anon_sym_u32] = ACTIONS(679), + [anon_sym_i32] = ACTIONS(679), + [anon_sym_u64] = ACTIONS(679), + [anon_sym_i64] = ACTIONS(679), + [anon_sym_u128] = ACTIONS(679), + [anon_sym_i128] = ACTIONS(679), + [anon_sym_isize] = ACTIONS(679), + [anon_sym_usize] = ACTIONS(679), + [anon_sym_f32] = ACTIONS(679), + [anon_sym_f64] = ACTIONS(679), + [anon_sym_bool] = ACTIONS(679), + [anon_sym_str] = ACTIONS(679), + [anon_sym_char] = ACTIONS(679), + [anon_sym_DASH] = ACTIONS(691), + [anon_sym_SLASH] = ACTIONS(691), + [anon_sym_PERCENT] = ACTIONS(691), + [anon_sym_CARET] = ACTIONS(691), + [anon_sym_BANG] = ACTIONS(691), + [anon_sym_AMP] = ACTIONS(691), + [anon_sym_PIPE] = ACTIONS(691), + [anon_sym_AMP_AMP] = ACTIONS(681), + [anon_sym_PIPE_PIPE] = ACTIONS(681), + [anon_sym_LT_LT] = ACTIONS(691), + [anon_sym_GT_GT] = ACTIONS(691), + [anon_sym_PLUS_EQ] = ACTIONS(681), + [anon_sym_DASH_EQ] = ACTIONS(681), + [anon_sym_STAR_EQ] = ACTIONS(681), + [anon_sym_SLASH_EQ] = ACTIONS(681), + [anon_sym_PERCENT_EQ] = ACTIONS(681), + [anon_sym_CARET_EQ] = ACTIONS(681), + [anon_sym_AMP_EQ] = ACTIONS(681), + [anon_sym_PIPE_EQ] = ACTIONS(681), + [anon_sym_LT_LT_EQ] = ACTIONS(681), + [anon_sym_GT_GT_EQ] = ACTIONS(681), + [anon_sym_EQ] = ACTIONS(691), + [anon_sym_EQ_EQ] = ACTIONS(681), + [anon_sym_BANG_EQ] = ACTIONS(681), + [anon_sym_GT] = ACTIONS(691), + [anon_sym_LT] = ACTIONS(691), + [anon_sym_GT_EQ] = ACTIONS(681), + [anon_sym_LT_EQ] = ACTIONS(681), + [anon_sym_AT] = ACTIONS(681), + [anon_sym__] = ACTIONS(691), + [anon_sym_DOT] = ACTIONS(691), + [anon_sym_DOT_DOT] = ACTIONS(691), + [anon_sym_DOT_DOT_DOT] = ACTIONS(681), + [anon_sym_DOT_DOT_EQ] = ACTIONS(681), + [anon_sym_COMMA] = ACTIONS(681), + [anon_sym_COLON_COLON] = ACTIONS(681), + [anon_sym_DASH_GT] = ACTIONS(681), + [anon_sym_POUND] = ACTIONS(681), + [anon_sym_SQUOTE] = ACTIONS(679), + [anon_sym_as] = ACTIONS(679), + [anon_sym_async] = ACTIONS(679), + [anon_sym_await] = ACTIONS(679), + [anon_sym_break] = ACTIONS(679), + [anon_sym_const] = ACTIONS(679), + [anon_sym_continue] = ACTIONS(679), + [anon_sym_default] = ACTIONS(679), + [anon_sym_enum] = ACTIONS(679), + [anon_sym_fn] = ACTIONS(679), + [anon_sym_for] = ACTIONS(679), + [anon_sym_gen] = ACTIONS(679), + [anon_sym_if] = ACTIONS(679), + [anon_sym_impl] = ACTIONS(679), + [anon_sym_let] = ACTIONS(679), + [anon_sym_loop] = ACTIONS(679), + [anon_sym_match] = ACTIONS(679), + [anon_sym_mod] = ACTIONS(679), + [anon_sym_pub] = ACTIONS(679), + [anon_sym_return] = ACTIONS(679), + [anon_sym_static] = ACTIONS(679), + [anon_sym_struct] = ACTIONS(679), + [anon_sym_trait] = ACTIONS(679), + [anon_sym_type] = ACTIONS(679), + [anon_sym_union] = ACTIONS(679), + [anon_sym_unsafe] = ACTIONS(679), + [anon_sym_use] = ACTIONS(679), + [anon_sym_where] = ACTIONS(679), + [anon_sym_while] = ACTIONS(679), + [sym_mutable_specifier] = ACTIONS(679), + [sym_integer_literal] = ACTIONS(695), + [aux_sym_string_literal_token1] = ACTIONS(697), + [sym_char_literal] = ACTIONS(695), + [anon_sym_true] = ACTIONS(699), + [anon_sym_false] = ACTIONS(699), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(679), + [sym_super] = ACTIONS(679), + [sym_crate] = ACTIONS(679), + [sym__raw_string_literal_start] = ACTIONS(701), + [sym_float_literal] = ACTIONS(695), }, [STATE(89)] = { - [sym_delim_token_tree] = STATE(207), - [sym__delim_tokens] = STATE(208), - [sym__non_delim_token] = STATE(207), - [sym__literal] = STATE(206), - [sym_string_literal] = STATE(212), - [sym_raw_string_literal] = STATE(212), - [sym_boolean_literal] = STATE(212), + [sym_delim_token_tree] = STATE(208), + [sym__delim_tokens] = STATE(209), + [sym__non_delim_token] = STATE(208), + [sym__literal] = STATE(204), + [sym_string_literal] = STATE(201), + [sym_raw_string_literal] = STATE(201), + [sym_boolean_literal] = STATE(201), [sym_line_comment] = STATE(89), [sym_block_comment] = STATE(89), - [aux_sym__non_special_token_repeat1] = STATE(181), + [aux_sym__non_special_token_repeat1] = STATE(180), [aux_sym_delim_token_tree_repeat1] = STATE(132), - [sym_identifier] = ACTIONS(674), - [anon_sym_SEMI] = ACTIONS(676), - [anon_sym_LPAREN] = ACTIONS(678), - [anon_sym_LBRACK] = ACTIONS(680), - [anon_sym_RBRACK] = ACTIONS(714), - [anon_sym_LBRACE] = ACTIONS(682), - [anon_sym_EQ_GT] = ACTIONS(676), - [anon_sym_COLON] = ACTIONS(686), - [anon_sym_DOLLAR] = ACTIONS(688), - [anon_sym_PLUS] = ACTIONS(686), - [anon_sym_STAR] = ACTIONS(686), - [anon_sym_QMARK] = ACTIONS(676), - [anon_sym_u8] = ACTIONS(674), - [anon_sym_i8] = ACTIONS(674), - [anon_sym_u16] = ACTIONS(674), - [anon_sym_i16] = ACTIONS(674), - [anon_sym_u32] = ACTIONS(674), - [anon_sym_i32] = ACTIONS(674), - [anon_sym_u64] = ACTIONS(674), - [anon_sym_i64] = ACTIONS(674), - [anon_sym_u128] = ACTIONS(674), - [anon_sym_i128] = ACTIONS(674), - [anon_sym_isize] = ACTIONS(674), - [anon_sym_usize] = ACTIONS(674), - [anon_sym_f32] = ACTIONS(674), - [anon_sym_f64] = ACTIONS(674), - [anon_sym_bool] = ACTIONS(674), - [anon_sym_str] = ACTIONS(674), - [anon_sym_char] = ACTIONS(674), - [anon_sym_DASH] = ACTIONS(686), - [anon_sym_SLASH] = ACTIONS(686), - [anon_sym_PERCENT] = ACTIONS(686), - [anon_sym_CARET] = ACTIONS(686), - [anon_sym_BANG] = ACTIONS(686), - [anon_sym_AMP] = ACTIONS(686), - [anon_sym_PIPE] = ACTIONS(686), - [anon_sym_AMP_AMP] = ACTIONS(676), - [anon_sym_PIPE_PIPE] = ACTIONS(676), - [anon_sym_LT_LT] = ACTIONS(686), - [anon_sym_GT_GT] = ACTIONS(686), - [anon_sym_PLUS_EQ] = ACTIONS(676), - [anon_sym_DASH_EQ] = ACTIONS(676), - [anon_sym_STAR_EQ] = ACTIONS(676), - [anon_sym_SLASH_EQ] = ACTIONS(676), - [anon_sym_PERCENT_EQ] = ACTIONS(676), - [anon_sym_CARET_EQ] = ACTIONS(676), - [anon_sym_AMP_EQ] = ACTIONS(676), - [anon_sym_PIPE_EQ] = ACTIONS(676), - [anon_sym_LT_LT_EQ] = ACTIONS(676), - [anon_sym_GT_GT_EQ] = ACTIONS(676), - [anon_sym_EQ] = ACTIONS(686), - [anon_sym_EQ_EQ] = ACTIONS(676), - [anon_sym_BANG_EQ] = ACTIONS(676), - [anon_sym_GT] = ACTIONS(686), - [anon_sym_LT] = ACTIONS(686), - [anon_sym_GT_EQ] = ACTIONS(676), - [anon_sym_LT_EQ] = ACTIONS(676), - [anon_sym_AT] = ACTIONS(676), - [anon_sym__] = ACTIONS(686), - [anon_sym_DOT] = ACTIONS(686), - [anon_sym_DOT_DOT] = ACTIONS(686), - [anon_sym_DOT_DOT_DOT] = ACTIONS(676), - [anon_sym_DOT_DOT_EQ] = ACTIONS(676), - [anon_sym_COMMA] = ACTIONS(676), - [anon_sym_COLON_COLON] = ACTIONS(676), - [anon_sym_DASH_GT] = ACTIONS(676), - [anon_sym_POUND] = ACTIONS(676), - [anon_sym_SQUOTE] = ACTIONS(674), - [anon_sym_as] = ACTIONS(674), - [anon_sym_async] = ACTIONS(674), - [anon_sym_await] = ACTIONS(674), - [anon_sym_break] = ACTIONS(674), - [anon_sym_const] = ACTIONS(674), - [anon_sym_continue] = ACTIONS(674), - [anon_sym_default] = ACTIONS(674), - [anon_sym_enum] = ACTIONS(674), - [anon_sym_fn] = ACTIONS(674), - [anon_sym_for] = ACTIONS(674), - [anon_sym_gen] = ACTIONS(674), - [anon_sym_if] = ACTIONS(674), - [anon_sym_impl] = ACTIONS(674), - [anon_sym_let] = ACTIONS(674), - [anon_sym_loop] = ACTIONS(674), - [anon_sym_match] = ACTIONS(674), - [anon_sym_mod] = ACTIONS(674), - [anon_sym_pub] = ACTIONS(674), - [anon_sym_return] = ACTIONS(674), - [anon_sym_static] = ACTIONS(674), - [anon_sym_struct] = ACTIONS(674), - [anon_sym_trait] = ACTIONS(674), - [anon_sym_type] = ACTIONS(674), - [anon_sym_union] = ACTIONS(674), - [anon_sym_unsafe] = ACTIONS(674), - [anon_sym_use] = ACTIONS(674), - [anon_sym_where] = ACTIONS(674), - [anon_sym_while] = ACTIONS(674), - [sym_mutable_specifier] = ACTIONS(674), - [sym_integer_literal] = ACTIONS(690), - [aux_sym_string_literal_token1] = ACTIONS(692), - [sym_char_literal] = ACTIONS(690), - [anon_sym_true] = ACTIONS(694), - [anon_sym_false] = ACTIONS(694), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(674), - [sym_super] = ACTIONS(674), - [sym_crate] = ACTIONS(674), - [sym__raw_string_literal_start] = ACTIONS(696), - [sym_float_literal] = ACTIONS(690), + [sym_identifier] = ACTIONS(679), + [anon_sym_SEMI] = ACTIONS(681), + [anon_sym_LPAREN] = ACTIONS(683), + [anon_sym_LBRACK] = ACTIONS(685), + [anon_sym_LBRACE] = ACTIONS(689), + [anon_sym_RBRACE] = ACTIONS(717), + [anon_sym_EQ_GT] = ACTIONS(681), + [anon_sym_COLON] = ACTIONS(691), + [anon_sym_DOLLAR] = ACTIONS(693), + [anon_sym_PLUS] = ACTIONS(691), + [anon_sym_STAR] = ACTIONS(691), + [anon_sym_QMARK] = ACTIONS(681), + [anon_sym_u8] = ACTIONS(679), + [anon_sym_i8] = ACTIONS(679), + [anon_sym_u16] = ACTIONS(679), + [anon_sym_i16] = ACTIONS(679), + [anon_sym_u32] = ACTIONS(679), + [anon_sym_i32] = ACTIONS(679), + [anon_sym_u64] = ACTIONS(679), + [anon_sym_i64] = ACTIONS(679), + [anon_sym_u128] = ACTIONS(679), + [anon_sym_i128] = ACTIONS(679), + [anon_sym_isize] = ACTIONS(679), + [anon_sym_usize] = ACTIONS(679), + [anon_sym_f32] = ACTIONS(679), + [anon_sym_f64] = ACTIONS(679), + [anon_sym_bool] = ACTIONS(679), + [anon_sym_str] = ACTIONS(679), + [anon_sym_char] = ACTIONS(679), + [anon_sym_DASH] = ACTIONS(691), + [anon_sym_SLASH] = ACTIONS(691), + [anon_sym_PERCENT] = ACTIONS(691), + [anon_sym_CARET] = ACTIONS(691), + [anon_sym_BANG] = ACTIONS(691), + [anon_sym_AMP] = ACTIONS(691), + [anon_sym_PIPE] = ACTIONS(691), + [anon_sym_AMP_AMP] = ACTIONS(681), + [anon_sym_PIPE_PIPE] = ACTIONS(681), + [anon_sym_LT_LT] = ACTIONS(691), + [anon_sym_GT_GT] = ACTIONS(691), + [anon_sym_PLUS_EQ] = ACTIONS(681), + [anon_sym_DASH_EQ] = ACTIONS(681), + [anon_sym_STAR_EQ] = ACTIONS(681), + [anon_sym_SLASH_EQ] = ACTIONS(681), + [anon_sym_PERCENT_EQ] = ACTIONS(681), + [anon_sym_CARET_EQ] = ACTIONS(681), + [anon_sym_AMP_EQ] = ACTIONS(681), + [anon_sym_PIPE_EQ] = ACTIONS(681), + [anon_sym_LT_LT_EQ] = ACTIONS(681), + [anon_sym_GT_GT_EQ] = ACTIONS(681), + [anon_sym_EQ] = ACTIONS(691), + [anon_sym_EQ_EQ] = ACTIONS(681), + [anon_sym_BANG_EQ] = ACTIONS(681), + [anon_sym_GT] = ACTIONS(691), + [anon_sym_LT] = ACTIONS(691), + [anon_sym_GT_EQ] = ACTIONS(681), + [anon_sym_LT_EQ] = ACTIONS(681), + [anon_sym_AT] = ACTIONS(681), + [anon_sym__] = ACTIONS(691), + [anon_sym_DOT] = ACTIONS(691), + [anon_sym_DOT_DOT] = ACTIONS(691), + [anon_sym_DOT_DOT_DOT] = ACTIONS(681), + [anon_sym_DOT_DOT_EQ] = ACTIONS(681), + [anon_sym_COMMA] = ACTIONS(681), + [anon_sym_COLON_COLON] = ACTIONS(681), + [anon_sym_DASH_GT] = ACTIONS(681), + [anon_sym_POUND] = ACTIONS(681), + [anon_sym_SQUOTE] = ACTIONS(679), + [anon_sym_as] = ACTIONS(679), + [anon_sym_async] = ACTIONS(679), + [anon_sym_await] = ACTIONS(679), + [anon_sym_break] = ACTIONS(679), + [anon_sym_const] = ACTIONS(679), + [anon_sym_continue] = ACTIONS(679), + [anon_sym_default] = ACTIONS(679), + [anon_sym_enum] = ACTIONS(679), + [anon_sym_fn] = ACTIONS(679), + [anon_sym_for] = ACTIONS(679), + [anon_sym_gen] = ACTIONS(679), + [anon_sym_if] = ACTIONS(679), + [anon_sym_impl] = ACTIONS(679), + [anon_sym_let] = ACTIONS(679), + [anon_sym_loop] = ACTIONS(679), + [anon_sym_match] = ACTIONS(679), + [anon_sym_mod] = ACTIONS(679), + [anon_sym_pub] = ACTIONS(679), + [anon_sym_return] = ACTIONS(679), + [anon_sym_static] = ACTIONS(679), + [anon_sym_struct] = ACTIONS(679), + [anon_sym_trait] = ACTIONS(679), + [anon_sym_type] = ACTIONS(679), + [anon_sym_union] = ACTIONS(679), + [anon_sym_unsafe] = ACTIONS(679), + [anon_sym_use] = ACTIONS(679), + [anon_sym_where] = ACTIONS(679), + [anon_sym_while] = ACTIONS(679), + [sym_mutable_specifier] = ACTIONS(679), + [sym_integer_literal] = ACTIONS(695), + [aux_sym_string_literal_token1] = ACTIONS(697), + [sym_char_literal] = ACTIONS(695), + [anon_sym_true] = ACTIONS(699), + [anon_sym_false] = ACTIONS(699), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(679), + [sym_super] = ACTIONS(679), + [sym_crate] = ACTIONS(679), + [sym__raw_string_literal_start] = ACTIONS(701), + [sym_float_literal] = ACTIONS(695), }, [STATE(90)] = { - [sym_delim_token_tree] = STATE(207), - [sym__delim_tokens] = STATE(208), - [sym__non_delim_token] = STATE(207), - [sym__literal] = STATE(206), - [sym_string_literal] = STATE(212), - [sym_raw_string_literal] = STATE(212), - [sym_boolean_literal] = STATE(212), + [sym_delim_token_tree] = STATE(208), + [sym__delim_tokens] = STATE(209), + [sym__non_delim_token] = STATE(208), + [sym__literal] = STATE(204), + [sym_string_literal] = STATE(201), + [sym_raw_string_literal] = STATE(201), + [sym_boolean_literal] = STATE(201), [sym_line_comment] = STATE(90), [sym_block_comment] = STATE(90), - [aux_sym__non_special_token_repeat1] = STATE(181), - [aux_sym_delim_token_tree_repeat1] = STATE(85), - [sym_identifier] = ACTIONS(674), - [anon_sym_SEMI] = ACTIONS(676), - [anon_sym_LPAREN] = ACTIONS(678), - [anon_sym_LBRACK] = ACTIONS(680), - [anon_sym_LBRACE] = ACTIONS(682), - [anon_sym_RBRACE] = ACTIONS(714), - [anon_sym_EQ_GT] = ACTIONS(676), - [anon_sym_COLON] = ACTIONS(686), - [anon_sym_DOLLAR] = ACTIONS(688), - [anon_sym_PLUS] = ACTIONS(686), - [anon_sym_STAR] = ACTIONS(686), - [anon_sym_QMARK] = ACTIONS(676), - [anon_sym_u8] = ACTIONS(674), - [anon_sym_i8] = ACTIONS(674), - [anon_sym_u16] = ACTIONS(674), - [anon_sym_i16] = ACTIONS(674), - [anon_sym_u32] = ACTIONS(674), - [anon_sym_i32] = ACTIONS(674), - [anon_sym_u64] = ACTIONS(674), - [anon_sym_i64] = ACTIONS(674), - [anon_sym_u128] = ACTIONS(674), - [anon_sym_i128] = ACTIONS(674), - [anon_sym_isize] = ACTIONS(674), - [anon_sym_usize] = ACTIONS(674), - [anon_sym_f32] = ACTIONS(674), - [anon_sym_f64] = ACTIONS(674), - [anon_sym_bool] = ACTIONS(674), - [anon_sym_str] = ACTIONS(674), - [anon_sym_char] = ACTIONS(674), - [anon_sym_DASH] = ACTIONS(686), - [anon_sym_SLASH] = ACTIONS(686), - [anon_sym_PERCENT] = ACTIONS(686), - [anon_sym_CARET] = ACTIONS(686), - [anon_sym_BANG] = ACTIONS(686), - [anon_sym_AMP] = ACTIONS(686), - [anon_sym_PIPE] = ACTIONS(686), - [anon_sym_AMP_AMP] = ACTIONS(676), - [anon_sym_PIPE_PIPE] = ACTIONS(676), - [anon_sym_LT_LT] = ACTIONS(686), - [anon_sym_GT_GT] = ACTIONS(686), - [anon_sym_PLUS_EQ] = ACTIONS(676), - [anon_sym_DASH_EQ] = ACTIONS(676), - [anon_sym_STAR_EQ] = ACTIONS(676), - [anon_sym_SLASH_EQ] = ACTIONS(676), - [anon_sym_PERCENT_EQ] = ACTIONS(676), - [anon_sym_CARET_EQ] = ACTIONS(676), - [anon_sym_AMP_EQ] = ACTIONS(676), - [anon_sym_PIPE_EQ] = ACTIONS(676), - [anon_sym_LT_LT_EQ] = ACTIONS(676), - [anon_sym_GT_GT_EQ] = ACTIONS(676), - [anon_sym_EQ] = ACTIONS(686), - [anon_sym_EQ_EQ] = ACTIONS(676), - [anon_sym_BANG_EQ] = ACTIONS(676), - [anon_sym_GT] = ACTIONS(686), - [anon_sym_LT] = ACTIONS(686), - [anon_sym_GT_EQ] = ACTIONS(676), - [anon_sym_LT_EQ] = ACTIONS(676), - [anon_sym_AT] = ACTIONS(676), - [anon_sym__] = ACTIONS(686), - [anon_sym_DOT] = ACTIONS(686), - [anon_sym_DOT_DOT] = ACTIONS(686), - [anon_sym_DOT_DOT_DOT] = ACTIONS(676), - [anon_sym_DOT_DOT_EQ] = ACTIONS(676), - [anon_sym_COMMA] = ACTIONS(676), - [anon_sym_COLON_COLON] = ACTIONS(676), - [anon_sym_DASH_GT] = ACTIONS(676), - [anon_sym_POUND] = ACTIONS(676), - [anon_sym_SQUOTE] = ACTIONS(674), - [anon_sym_as] = ACTIONS(674), - [anon_sym_async] = ACTIONS(674), - [anon_sym_await] = ACTIONS(674), - [anon_sym_break] = ACTIONS(674), - [anon_sym_const] = ACTIONS(674), - [anon_sym_continue] = ACTIONS(674), - [anon_sym_default] = ACTIONS(674), - [anon_sym_enum] = ACTIONS(674), - [anon_sym_fn] = ACTIONS(674), - [anon_sym_for] = ACTIONS(674), - [anon_sym_gen] = ACTIONS(674), - [anon_sym_if] = ACTIONS(674), - [anon_sym_impl] = ACTIONS(674), - [anon_sym_let] = ACTIONS(674), - [anon_sym_loop] = ACTIONS(674), - [anon_sym_match] = ACTIONS(674), - [anon_sym_mod] = ACTIONS(674), - [anon_sym_pub] = ACTIONS(674), - [anon_sym_return] = ACTIONS(674), - [anon_sym_static] = ACTIONS(674), - [anon_sym_struct] = ACTIONS(674), - [anon_sym_trait] = ACTIONS(674), - [anon_sym_type] = ACTIONS(674), - [anon_sym_union] = ACTIONS(674), - [anon_sym_unsafe] = ACTIONS(674), - [anon_sym_use] = ACTIONS(674), - [anon_sym_where] = ACTIONS(674), - [anon_sym_while] = ACTIONS(674), - [sym_mutable_specifier] = ACTIONS(674), - [sym_integer_literal] = ACTIONS(690), - [aux_sym_string_literal_token1] = ACTIONS(692), - [sym_char_literal] = ACTIONS(690), - [anon_sym_true] = ACTIONS(694), - [anon_sym_false] = ACTIONS(694), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(674), - [sym_super] = ACTIONS(674), - [sym_crate] = ACTIONS(674), - [sym__raw_string_literal_start] = ACTIONS(696), - [sym_float_literal] = ACTIONS(690), + [aux_sym__non_special_token_repeat1] = STATE(180), + [aux_sym_delim_token_tree_repeat1] = STATE(93), + [sym_identifier] = ACTIONS(679), + [anon_sym_SEMI] = ACTIONS(681), + [anon_sym_LPAREN] = ACTIONS(683), + [anon_sym_RPAREN] = ACTIONS(719), + [anon_sym_LBRACK] = ACTIONS(685), + [anon_sym_LBRACE] = ACTIONS(689), + [anon_sym_EQ_GT] = ACTIONS(681), + [anon_sym_COLON] = ACTIONS(691), + [anon_sym_DOLLAR] = ACTIONS(693), + [anon_sym_PLUS] = ACTIONS(691), + [anon_sym_STAR] = ACTIONS(691), + [anon_sym_QMARK] = ACTIONS(681), + [anon_sym_u8] = ACTIONS(679), + [anon_sym_i8] = ACTIONS(679), + [anon_sym_u16] = ACTIONS(679), + [anon_sym_i16] = ACTIONS(679), + [anon_sym_u32] = ACTIONS(679), + [anon_sym_i32] = ACTIONS(679), + [anon_sym_u64] = ACTIONS(679), + [anon_sym_i64] = ACTIONS(679), + [anon_sym_u128] = ACTIONS(679), + [anon_sym_i128] = ACTIONS(679), + [anon_sym_isize] = ACTIONS(679), + [anon_sym_usize] = ACTIONS(679), + [anon_sym_f32] = ACTIONS(679), + [anon_sym_f64] = ACTIONS(679), + [anon_sym_bool] = ACTIONS(679), + [anon_sym_str] = ACTIONS(679), + [anon_sym_char] = ACTIONS(679), + [anon_sym_DASH] = ACTIONS(691), + [anon_sym_SLASH] = ACTIONS(691), + [anon_sym_PERCENT] = ACTIONS(691), + [anon_sym_CARET] = ACTIONS(691), + [anon_sym_BANG] = ACTIONS(691), + [anon_sym_AMP] = ACTIONS(691), + [anon_sym_PIPE] = ACTIONS(691), + [anon_sym_AMP_AMP] = ACTIONS(681), + [anon_sym_PIPE_PIPE] = ACTIONS(681), + [anon_sym_LT_LT] = ACTIONS(691), + [anon_sym_GT_GT] = ACTIONS(691), + [anon_sym_PLUS_EQ] = ACTIONS(681), + [anon_sym_DASH_EQ] = ACTIONS(681), + [anon_sym_STAR_EQ] = ACTIONS(681), + [anon_sym_SLASH_EQ] = ACTIONS(681), + [anon_sym_PERCENT_EQ] = ACTIONS(681), + [anon_sym_CARET_EQ] = ACTIONS(681), + [anon_sym_AMP_EQ] = ACTIONS(681), + [anon_sym_PIPE_EQ] = ACTIONS(681), + [anon_sym_LT_LT_EQ] = ACTIONS(681), + [anon_sym_GT_GT_EQ] = ACTIONS(681), + [anon_sym_EQ] = ACTIONS(691), + [anon_sym_EQ_EQ] = ACTIONS(681), + [anon_sym_BANG_EQ] = ACTIONS(681), + [anon_sym_GT] = ACTIONS(691), + [anon_sym_LT] = ACTIONS(691), + [anon_sym_GT_EQ] = ACTIONS(681), + [anon_sym_LT_EQ] = ACTIONS(681), + [anon_sym_AT] = ACTIONS(681), + [anon_sym__] = ACTIONS(691), + [anon_sym_DOT] = ACTIONS(691), + [anon_sym_DOT_DOT] = ACTIONS(691), + [anon_sym_DOT_DOT_DOT] = ACTIONS(681), + [anon_sym_DOT_DOT_EQ] = ACTIONS(681), + [anon_sym_COMMA] = ACTIONS(681), + [anon_sym_COLON_COLON] = ACTIONS(681), + [anon_sym_DASH_GT] = ACTIONS(681), + [anon_sym_POUND] = ACTIONS(681), + [anon_sym_SQUOTE] = ACTIONS(679), + [anon_sym_as] = ACTIONS(679), + [anon_sym_async] = ACTIONS(679), + [anon_sym_await] = ACTIONS(679), + [anon_sym_break] = ACTIONS(679), + [anon_sym_const] = ACTIONS(679), + [anon_sym_continue] = ACTIONS(679), + [anon_sym_default] = ACTIONS(679), + [anon_sym_enum] = ACTIONS(679), + [anon_sym_fn] = ACTIONS(679), + [anon_sym_for] = ACTIONS(679), + [anon_sym_gen] = ACTIONS(679), + [anon_sym_if] = ACTIONS(679), + [anon_sym_impl] = ACTIONS(679), + [anon_sym_let] = ACTIONS(679), + [anon_sym_loop] = ACTIONS(679), + [anon_sym_match] = ACTIONS(679), + [anon_sym_mod] = ACTIONS(679), + [anon_sym_pub] = ACTIONS(679), + [anon_sym_return] = ACTIONS(679), + [anon_sym_static] = ACTIONS(679), + [anon_sym_struct] = ACTIONS(679), + [anon_sym_trait] = ACTIONS(679), + [anon_sym_type] = ACTIONS(679), + [anon_sym_union] = ACTIONS(679), + [anon_sym_unsafe] = ACTIONS(679), + [anon_sym_use] = ACTIONS(679), + [anon_sym_where] = ACTIONS(679), + [anon_sym_while] = ACTIONS(679), + [sym_mutable_specifier] = ACTIONS(679), + [sym_integer_literal] = ACTIONS(695), + [aux_sym_string_literal_token1] = ACTIONS(697), + [sym_char_literal] = ACTIONS(695), + [anon_sym_true] = ACTIONS(699), + [anon_sym_false] = ACTIONS(699), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(679), + [sym_super] = ACTIONS(679), + [sym_crate] = ACTIONS(679), + [sym__raw_string_literal_start] = ACTIONS(701), + [sym_float_literal] = ACTIONS(695), }, [STATE(91)] = { - [sym_delim_token_tree] = STATE(207), - [sym__delim_tokens] = STATE(208), - [sym__non_delim_token] = STATE(207), - [sym__literal] = STATE(206), - [sym_string_literal] = STATE(212), - [sym_raw_string_literal] = STATE(212), - [sym_boolean_literal] = STATE(212), + [sym_delim_token_tree] = STATE(208), + [sym__delim_tokens] = STATE(209), + [sym__non_delim_token] = STATE(208), + [sym__literal] = STATE(204), + [sym_string_literal] = STATE(201), + [sym_raw_string_literal] = STATE(201), + [sym_boolean_literal] = STATE(201), [sym_line_comment] = STATE(91), [sym_block_comment] = STATE(91), - [aux_sym__non_special_token_repeat1] = STATE(181), - [aux_sym_delim_token_tree_repeat1] = STATE(95), - [sym_identifier] = ACTIONS(674), - [anon_sym_SEMI] = ACTIONS(676), - [anon_sym_LPAREN] = ACTIONS(678), - [anon_sym_RPAREN] = ACTIONS(716), - [anon_sym_LBRACK] = ACTIONS(680), - [anon_sym_LBRACE] = ACTIONS(682), - [anon_sym_EQ_GT] = ACTIONS(676), - [anon_sym_COLON] = ACTIONS(686), - [anon_sym_DOLLAR] = ACTIONS(688), - [anon_sym_PLUS] = ACTIONS(686), - [anon_sym_STAR] = ACTIONS(686), - [anon_sym_QMARK] = ACTIONS(676), - [anon_sym_u8] = ACTIONS(674), - [anon_sym_i8] = ACTIONS(674), - [anon_sym_u16] = ACTIONS(674), - [anon_sym_i16] = ACTIONS(674), - [anon_sym_u32] = ACTIONS(674), - [anon_sym_i32] = ACTIONS(674), - [anon_sym_u64] = ACTIONS(674), - [anon_sym_i64] = ACTIONS(674), - [anon_sym_u128] = ACTIONS(674), - [anon_sym_i128] = ACTIONS(674), - [anon_sym_isize] = ACTIONS(674), - [anon_sym_usize] = ACTIONS(674), - [anon_sym_f32] = ACTIONS(674), - [anon_sym_f64] = ACTIONS(674), - [anon_sym_bool] = ACTIONS(674), - [anon_sym_str] = ACTIONS(674), - [anon_sym_char] = ACTIONS(674), - [anon_sym_DASH] = ACTIONS(686), - [anon_sym_SLASH] = ACTIONS(686), - [anon_sym_PERCENT] = ACTIONS(686), - [anon_sym_CARET] = ACTIONS(686), - [anon_sym_BANG] = ACTIONS(686), - [anon_sym_AMP] = ACTIONS(686), - [anon_sym_PIPE] = ACTIONS(686), - [anon_sym_AMP_AMP] = ACTIONS(676), - [anon_sym_PIPE_PIPE] = ACTIONS(676), - [anon_sym_LT_LT] = ACTIONS(686), - [anon_sym_GT_GT] = ACTIONS(686), - [anon_sym_PLUS_EQ] = ACTIONS(676), - [anon_sym_DASH_EQ] = ACTIONS(676), - [anon_sym_STAR_EQ] = ACTIONS(676), - [anon_sym_SLASH_EQ] = ACTIONS(676), - [anon_sym_PERCENT_EQ] = ACTIONS(676), - [anon_sym_CARET_EQ] = ACTIONS(676), - [anon_sym_AMP_EQ] = ACTIONS(676), - [anon_sym_PIPE_EQ] = ACTIONS(676), - [anon_sym_LT_LT_EQ] = ACTIONS(676), - [anon_sym_GT_GT_EQ] = ACTIONS(676), - [anon_sym_EQ] = ACTIONS(686), - [anon_sym_EQ_EQ] = ACTIONS(676), - [anon_sym_BANG_EQ] = ACTIONS(676), - [anon_sym_GT] = ACTIONS(686), - [anon_sym_LT] = ACTIONS(686), - [anon_sym_GT_EQ] = ACTIONS(676), - [anon_sym_LT_EQ] = ACTIONS(676), - [anon_sym_AT] = ACTIONS(676), - [anon_sym__] = ACTIONS(686), - [anon_sym_DOT] = ACTIONS(686), - [anon_sym_DOT_DOT] = ACTIONS(686), - [anon_sym_DOT_DOT_DOT] = ACTIONS(676), - [anon_sym_DOT_DOT_EQ] = ACTIONS(676), - [anon_sym_COMMA] = ACTIONS(676), - [anon_sym_COLON_COLON] = ACTIONS(676), - [anon_sym_DASH_GT] = ACTIONS(676), - [anon_sym_POUND] = ACTIONS(676), - [anon_sym_SQUOTE] = ACTIONS(674), - [anon_sym_as] = ACTIONS(674), - [anon_sym_async] = ACTIONS(674), - [anon_sym_await] = ACTIONS(674), - [anon_sym_break] = ACTIONS(674), - [anon_sym_const] = ACTIONS(674), - [anon_sym_continue] = ACTIONS(674), - [anon_sym_default] = ACTIONS(674), - [anon_sym_enum] = ACTIONS(674), - [anon_sym_fn] = ACTIONS(674), - [anon_sym_for] = ACTIONS(674), - [anon_sym_gen] = ACTIONS(674), - [anon_sym_if] = ACTIONS(674), - [anon_sym_impl] = ACTIONS(674), - [anon_sym_let] = ACTIONS(674), - [anon_sym_loop] = ACTIONS(674), - [anon_sym_match] = ACTIONS(674), - [anon_sym_mod] = ACTIONS(674), - [anon_sym_pub] = ACTIONS(674), - [anon_sym_return] = ACTIONS(674), - [anon_sym_static] = ACTIONS(674), - [anon_sym_struct] = ACTIONS(674), - [anon_sym_trait] = ACTIONS(674), - [anon_sym_type] = ACTIONS(674), - [anon_sym_union] = ACTIONS(674), - [anon_sym_unsafe] = ACTIONS(674), - [anon_sym_use] = ACTIONS(674), - [anon_sym_where] = ACTIONS(674), - [anon_sym_while] = ACTIONS(674), - [sym_mutable_specifier] = ACTIONS(674), - [sym_integer_literal] = ACTIONS(690), - [aux_sym_string_literal_token1] = ACTIONS(692), - [sym_char_literal] = ACTIONS(690), - [anon_sym_true] = ACTIONS(694), - [anon_sym_false] = ACTIONS(694), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(674), - [sym_super] = ACTIONS(674), - [sym_crate] = ACTIONS(674), - [sym__raw_string_literal_start] = ACTIONS(696), - [sym_float_literal] = ACTIONS(690), + [aux_sym__non_special_token_repeat1] = STATE(180), + [aux_sym_delim_token_tree_repeat1] = STATE(94), + [sym_identifier] = ACTIONS(679), + [anon_sym_SEMI] = ACTIONS(681), + [anon_sym_LPAREN] = ACTIONS(683), + [anon_sym_LBRACK] = ACTIONS(685), + [anon_sym_RBRACK] = ACTIONS(719), + [anon_sym_LBRACE] = ACTIONS(689), + [anon_sym_EQ_GT] = ACTIONS(681), + [anon_sym_COLON] = ACTIONS(691), + [anon_sym_DOLLAR] = ACTIONS(693), + [anon_sym_PLUS] = ACTIONS(691), + [anon_sym_STAR] = ACTIONS(691), + [anon_sym_QMARK] = ACTIONS(681), + [anon_sym_u8] = ACTIONS(679), + [anon_sym_i8] = ACTIONS(679), + [anon_sym_u16] = ACTIONS(679), + [anon_sym_i16] = ACTIONS(679), + [anon_sym_u32] = ACTIONS(679), + [anon_sym_i32] = ACTIONS(679), + [anon_sym_u64] = ACTIONS(679), + [anon_sym_i64] = ACTIONS(679), + [anon_sym_u128] = ACTIONS(679), + [anon_sym_i128] = ACTIONS(679), + [anon_sym_isize] = ACTIONS(679), + [anon_sym_usize] = ACTIONS(679), + [anon_sym_f32] = ACTIONS(679), + [anon_sym_f64] = ACTIONS(679), + [anon_sym_bool] = ACTIONS(679), + [anon_sym_str] = ACTIONS(679), + [anon_sym_char] = ACTIONS(679), + [anon_sym_DASH] = ACTIONS(691), + [anon_sym_SLASH] = ACTIONS(691), + [anon_sym_PERCENT] = ACTIONS(691), + [anon_sym_CARET] = ACTIONS(691), + [anon_sym_BANG] = ACTIONS(691), + [anon_sym_AMP] = ACTIONS(691), + [anon_sym_PIPE] = ACTIONS(691), + [anon_sym_AMP_AMP] = ACTIONS(681), + [anon_sym_PIPE_PIPE] = ACTIONS(681), + [anon_sym_LT_LT] = ACTIONS(691), + [anon_sym_GT_GT] = ACTIONS(691), + [anon_sym_PLUS_EQ] = ACTIONS(681), + [anon_sym_DASH_EQ] = ACTIONS(681), + [anon_sym_STAR_EQ] = ACTIONS(681), + [anon_sym_SLASH_EQ] = ACTIONS(681), + [anon_sym_PERCENT_EQ] = ACTIONS(681), + [anon_sym_CARET_EQ] = ACTIONS(681), + [anon_sym_AMP_EQ] = ACTIONS(681), + [anon_sym_PIPE_EQ] = ACTIONS(681), + [anon_sym_LT_LT_EQ] = ACTIONS(681), + [anon_sym_GT_GT_EQ] = ACTIONS(681), + [anon_sym_EQ] = ACTIONS(691), + [anon_sym_EQ_EQ] = ACTIONS(681), + [anon_sym_BANG_EQ] = ACTIONS(681), + [anon_sym_GT] = ACTIONS(691), + [anon_sym_LT] = ACTIONS(691), + [anon_sym_GT_EQ] = ACTIONS(681), + [anon_sym_LT_EQ] = ACTIONS(681), + [anon_sym_AT] = ACTIONS(681), + [anon_sym__] = ACTIONS(691), + [anon_sym_DOT] = ACTIONS(691), + [anon_sym_DOT_DOT] = ACTIONS(691), + [anon_sym_DOT_DOT_DOT] = ACTIONS(681), + [anon_sym_DOT_DOT_EQ] = ACTIONS(681), + [anon_sym_COMMA] = ACTIONS(681), + [anon_sym_COLON_COLON] = ACTIONS(681), + [anon_sym_DASH_GT] = ACTIONS(681), + [anon_sym_POUND] = ACTIONS(681), + [anon_sym_SQUOTE] = ACTIONS(679), + [anon_sym_as] = ACTIONS(679), + [anon_sym_async] = ACTIONS(679), + [anon_sym_await] = ACTIONS(679), + [anon_sym_break] = ACTIONS(679), + [anon_sym_const] = ACTIONS(679), + [anon_sym_continue] = ACTIONS(679), + [anon_sym_default] = ACTIONS(679), + [anon_sym_enum] = ACTIONS(679), + [anon_sym_fn] = ACTIONS(679), + [anon_sym_for] = ACTIONS(679), + [anon_sym_gen] = ACTIONS(679), + [anon_sym_if] = ACTIONS(679), + [anon_sym_impl] = ACTIONS(679), + [anon_sym_let] = ACTIONS(679), + [anon_sym_loop] = ACTIONS(679), + [anon_sym_match] = ACTIONS(679), + [anon_sym_mod] = ACTIONS(679), + [anon_sym_pub] = ACTIONS(679), + [anon_sym_return] = ACTIONS(679), + [anon_sym_static] = ACTIONS(679), + [anon_sym_struct] = ACTIONS(679), + [anon_sym_trait] = ACTIONS(679), + [anon_sym_type] = ACTIONS(679), + [anon_sym_union] = ACTIONS(679), + [anon_sym_unsafe] = ACTIONS(679), + [anon_sym_use] = ACTIONS(679), + [anon_sym_where] = ACTIONS(679), + [anon_sym_while] = ACTIONS(679), + [sym_mutable_specifier] = ACTIONS(679), + [sym_integer_literal] = ACTIONS(695), + [aux_sym_string_literal_token1] = ACTIONS(697), + [sym_char_literal] = ACTIONS(695), + [anon_sym_true] = ACTIONS(699), + [anon_sym_false] = ACTIONS(699), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(679), + [sym_super] = ACTIONS(679), + [sym_crate] = ACTIONS(679), + [sym__raw_string_literal_start] = ACTIONS(701), + [sym_float_literal] = ACTIONS(695), }, [STATE(92)] = { - [sym_delim_token_tree] = STATE(207), - [sym__delim_tokens] = STATE(208), - [sym__non_delim_token] = STATE(207), - [sym__literal] = STATE(206), - [sym_string_literal] = STATE(212), - [sym_raw_string_literal] = STATE(212), - [sym_boolean_literal] = STATE(212), + [sym_delim_token_tree] = STATE(208), + [sym__delim_tokens] = STATE(209), + [sym__non_delim_token] = STATE(208), + [sym__literal] = STATE(204), + [sym_string_literal] = STATE(201), + [sym_raw_string_literal] = STATE(201), + [sym_boolean_literal] = STATE(201), [sym_line_comment] = STATE(92), [sym_block_comment] = STATE(92), - [aux_sym__non_special_token_repeat1] = STATE(181), - [aux_sym_delim_token_tree_repeat1] = STATE(96), - [sym_identifier] = ACTIONS(674), - [anon_sym_SEMI] = ACTIONS(676), - [anon_sym_LPAREN] = ACTIONS(678), - [anon_sym_LBRACK] = ACTIONS(680), - [anon_sym_RBRACK] = ACTIONS(716), - [anon_sym_LBRACE] = ACTIONS(682), - [anon_sym_EQ_GT] = ACTIONS(676), - [anon_sym_COLON] = ACTIONS(686), - [anon_sym_DOLLAR] = ACTIONS(688), - [anon_sym_PLUS] = ACTIONS(686), - [anon_sym_STAR] = ACTIONS(686), - [anon_sym_QMARK] = ACTIONS(676), - [anon_sym_u8] = ACTIONS(674), - [anon_sym_i8] = ACTIONS(674), - [anon_sym_u16] = ACTIONS(674), - [anon_sym_i16] = ACTIONS(674), - [anon_sym_u32] = ACTIONS(674), - [anon_sym_i32] = ACTIONS(674), - [anon_sym_u64] = ACTIONS(674), - [anon_sym_i64] = ACTIONS(674), - [anon_sym_u128] = ACTIONS(674), - [anon_sym_i128] = ACTIONS(674), - [anon_sym_isize] = ACTIONS(674), - [anon_sym_usize] = ACTIONS(674), - [anon_sym_f32] = ACTIONS(674), - [anon_sym_f64] = ACTIONS(674), - [anon_sym_bool] = ACTIONS(674), - [anon_sym_str] = ACTIONS(674), - [anon_sym_char] = ACTIONS(674), - [anon_sym_DASH] = ACTIONS(686), - [anon_sym_SLASH] = ACTIONS(686), - [anon_sym_PERCENT] = ACTIONS(686), - [anon_sym_CARET] = ACTIONS(686), - [anon_sym_BANG] = ACTIONS(686), - [anon_sym_AMP] = ACTIONS(686), - [anon_sym_PIPE] = ACTIONS(686), - [anon_sym_AMP_AMP] = ACTIONS(676), - [anon_sym_PIPE_PIPE] = ACTIONS(676), - [anon_sym_LT_LT] = ACTIONS(686), - [anon_sym_GT_GT] = ACTIONS(686), - [anon_sym_PLUS_EQ] = ACTIONS(676), - [anon_sym_DASH_EQ] = ACTIONS(676), - [anon_sym_STAR_EQ] = ACTIONS(676), - [anon_sym_SLASH_EQ] = ACTIONS(676), - [anon_sym_PERCENT_EQ] = ACTIONS(676), - [anon_sym_CARET_EQ] = ACTIONS(676), - [anon_sym_AMP_EQ] = ACTIONS(676), - [anon_sym_PIPE_EQ] = ACTIONS(676), - [anon_sym_LT_LT_EQ] = ACTIONS(676), - [anon_sym_GT_GT_EQ] = ACTIONS(676), - [anon_sym_EQ] = ACTIONS(686), - [anon_sym_EQ_EQ] = ACTIONS(676), - [anon_sym_BANG_EQ] = ACTIONS(676), - [anon_sym_GT] = ACTIONS(686), - [anon_sym_LT] = ACTIONS(686), - [anon_sym_GT_EQ] = ACTIONS(676), - [anon_sym_LT_EQ] = ACTIONS(676), - [anon_sym_AT] = ACTIONS(676), - [anon_sym__] = ACTIONS(686), - [anon_sym_DOT] = ACTIONS(686), - [anon_sym_DOT_DOT] = ACTIONS(686), - [anon_sym_DOT_DOT_DOT] = ACTIONS(676), - [anon_sym_DOT_DOT_EQ] = ACTIONS(676), - [anon_sym_COMMA] = ACTIONS(676), - [anon_sym_COLON_COLON] = ACTIONS(676), - [anon_sym_DASH_GT] = ACTIONS(676), - [anon_sym_POUND] = ACTIONS(676), - [anon_sym_SQUOTE] = ACTIONS(674), - [anon_sym_as] = ACTIONS(674), - [anon_sym_async] = ACTIONS(674), - [anon_sym_await] = ACTIONS(674), - [anon_sym_break] = ACTIONS(674), - [anon_sym_const] = ACTIONS(674), - [anon_sym_continue] = ACTIONS(674), - [anon_sym_default] = ACTIONS(674), - [anon_sym_enum] = ACTIONS(674), - [anon_sym_fn] = ACTIONS(674), - [anon_sym_for] = ACTIONS(674), - [anon_sym_gen] = ACTIONS(674), - [anon_sym_if] = ACTIONS(674), - [anon_sym_impl] = ACTIONS(674), - [anon_sym_let] = ACTIONS(674), - [anon_sym_loop] = ACTIONS(674), - [anon_sym_match] = ACTIONS(674), - [anon_sym_mod] = ACTIONS(674), - [anon_sym_pub] = ACTIONS(674), - [anon_sym_return] = ACTIONS(674), - [anon_sym_static] = ACTIONS(674), - [anon_sym_struct] = ACTIONS(674), - [anon_sym_trait] = ACTIONS(674), - [anon_sym_type] = ACTIONS(674), - [anon_sym_union] = ACTIONS(674), - [anon_sym_unsafe] = ACTIONS(674), - [anon_sym_use] = ACTIONS(674), - [anon_sym_where] = ACTIONS(674), - [anon_sym_while] = ACTIONS(674), - [sym_mutable_specifier] = ACTIONS(674), - [sym_integer_literal] = ACTIONS(690), - [aux_sym_string_literal_token1] = ACTIONS(692), - [sym_char_literal] = ACTIONS(690), - [anon_sym_true] = ACTIONS(694), - [anon_sym_false] = ACTIONS(694), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(674), - [sym_super] = ACTIONS(674), - [sym_crate] = ACTIONS(674), - [sym__raw_string_literal_start] = ACTIONS(696), - [sym_float_literal] = ACTIONS(690), + [aux_sym__non_special_token_repeat1] = STATE(180), + [aux_sym_delim_token_tree_repeat1] = STATE(95), + [sym_identifier] = ACTIONS(679), + [anon_sym_SEMI] = ACTIONS(681), + [anon_sym_LPAREN] = ACTIONS(683), + [anon_sym_LBRACK] = ACTIONS(685), + [anon_sym_LBRACE] = ACTIONS(689), + [anon_sym_RBRACE] = ACTIONS(719), + [anon_sym_EQ_GT] = ACTIONS(681), + [anon_sym_COLON] = ACTIONS(691), + [anon_sym_DOLLAR] = ACTIONS(693), + [anon_sym_PLUS] = ACTIONS(691), + [anon_sym_STAR] = ACTIONS(691), + [anon_sym_QMARK] = ACTIONS(681), + [anon_sym_u8] = ACTIONS(679), + [anon_sym_i8] = ACTIONS(679), + [anon_sym_u16] = ACTIONS(679), + [anon_sym_i16] = ACTIONS(679), + [anon_sym_u32] = ACTIONS(679), + [anon_sym_i32] = ACTIONS(679), + [anon_sym_u64] = ACTIONS(679), + [anon_sym_i64] = ACTIONS(679), + [anon_sym_u128] = ACTIONS(679), + [anon_sym_i128] = ACTIONS(679), + [anon_sym_isize] = ACTIONS(679), + [anon_sym_usize] = ACTIONS(679), + [anon_sym_f32] = ACTIONS(679), + [anon_sym_f64] = ACTIONS(679), + [anon_sym_bool] = ACTIONS(679), + [anon_sym_str] = ACTIONS(679), + [anon_sym_char] = ACTIONS(679), + [anon_sym_DASH] = ACTIONS(691), + [anon_sym_SLASH] = ACTIONS(691), + [anon_sym_PERCENT] = ACTIONS(691), + [anon_sym_CARET] = ACTIONS(691), + [anon_sym_BANG] = ACTIONS(691), + [anon_sym_AMP] = ACTIONS(691), + [anon_sym_PIPE] = ACTIONS(691), + [anon_sym_AMP_AMP] = ACTIONS(681), + [anon_sym_PIPE_PIPE] = ACTIONS(681), + [anon_sym_LT_LT] = ACTIONS(691), + [anon_sym_GT_GT] = ACTIONS(691), + [anon_sym_PLUS_EQ] = ACTIONS(681), + [anon_sym_DASH_EQ] = ACTIONS(681), + [anon_sym_STAR_EQ] = ACTIONS(681), + [anon_sym_SLASH_EQ] = ACTIONS(681), + [anon_sym_PERCENT_EQ] = ACTIONS(681), + [anon_sym_CARET_EQ] = ACTIONS(681), + [anon_sym_AMP_EQ] = ACTIONS(681), + [anon_sym_PIPE_EQ] = ACTIONS(681), + [anon_sym_LT_LT_EQ] = ACTIONS(681), + [anon_sym_GT_GT_EQ] = ACTIONS(681), + [anon_sym_EQ] = ACTIONS(691), + [anon_sym_EQ_EQ] = ACTIONS(681), + [anon_sym_BANG_EQ] = ACTIONS(681), + [anon_sym_GT] = ACTIONS(691), + [anon_sym_LT] = ACTIONS(691), + [anon_sym_GT_EQ] = ACTIONS(681), + [anon_sym_LT_EQ] = ACTIONS(681), + [anon_sym_AT] = ACTIONS(681), + [anon_sym__] = ACTIONS(691), + [anon_sym_DOT] = ACTIONS(691), + [anon_sym_DOT_DOT] = ACTIONS(691), + [anon_sym_DOT_DOT_DOT] = ACTIONS(681), + [anon_sym_DOT_DOT_EQ] = ACTIONS(681), + [anon_sym_COMMA] = ACTIONS(681), + [anon_sym_COLON_COLON] = ACTIONS(681), + [anon_sym_DASH_GT] = ACTIONS(681), + [anon_sym_POUND] = ACTIONS(681), + [anon_sym_SQUOTE] = ACTIONS(679), + [anon_sym_as] = ACTIONS(679), + [anon_sym_async] = ACTIONS(679), + [anon_sym_await] = ACTIONS(679), + [anon_sym_break] = ACTIONS(679), + [anon_sym_const] = ACTIONS(679), + [anon_sym_continue] = ACTIONS(679), + [anon_sym_default] = ACTIONS(679), + [anon_sym_enum] = ACTIONS(679), + [anon_sym_fn] = ACTIONS(679), + [anon_sym_for] = ACTIONS(679), + [anon_sym_gen] = ACTIONS(679), + [anon_sym_if] = ACTIONS(679), + [anon_sym_impl] = ACTIONS(679), + [anon_sym_let] = ACTIONS(679), + [anon_sym_loop] = ACTIONS(679), + [anon_sym_match] = ACTIONS(679), + [anon_sym_mod] = ACTIONS(679), + [anon_sym_pub] = ACTIONS(679), + [anon_sym_return] = ACTIONS(679), + [anon_sym_static] = ACTIONS(679), + [anon_sym_struct] = ACTIONS(679), + [anon_sym_trait] = ACTIONS(679), + [anon_sym_type] = ACTIONS(679), + [anon_sym_union] = ACTIONS(679), + [anon_sym_unsafe] = ACTIONS(679), + [anon_sym_use] = ACTIONS(679), + [anon_sym_where] = ACTIONS(679), + [anon_sym_while] = ACTIONS(679), + [sym_mutable_specifier] = ACTIONS(679), + [sym_integer_literal] = ACTIONS(695), + [aux_sym_string_literal_token1] = ACTIONS(697), + [sym_char_literal] = ACTIONS(695), + [anon_sym_true] = ACTIONS(699), + [anon_sym_false] = ACTIONS(699), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(679), + [sym_super] = ACTIONS(679), + [sym_crate] = ACTIONS(679), + [sym__raw_string_literal_start] = ACTIONS(701), + [sym_float_literal] = ACTIONS(695), }, [STATE(93)] = { - [sym_delim_token_tree] = STATE(207), - [sym__delim_tokens] = STATE(208), - [sym__non_delim_token] = STATE(207), - [sym__literal] = STATE(206), - [sym_string_literal] = STATE(212), - [sym_raw_string_literal] = STATE(212), - [sym_boolean_literal] = STATE(212), + [sym_delim_token_tree] = STATE(208), + [sym__delim_tokens] = STATE(209), + [sym__non_delim_token] = STATE(208), + [sym__literal] = STATE(204), + [sym_string_literal] = STATE(201), + [sym_raw_string_literal] = STATE(201), + [sym_boolean_literal] = STATE(201), [sym_line_comment] = STATE(93), [sym_block_comment] = STATE(93), - [aux_sym__non_special_token_repeat1] = STATE(181), - [aux_sym_delim_token_tree_repeat1] = STATE(97), - [sym_identifier] = ACTIONS(674), - [anon_sym_SEMI] = ACTIONS(676), - [anon_sym_LPAREN] = ACTIONS(678), - [anon_sym_LBRACK] = ACTIONS(680), - [anon_sym_LBRACE] = ACTIONS(682), - [anon_sym_RBRACE] = ACTIONS(716), - [anon_sym_EQ_GT] = ACTIONS(676), - [anon_sym_COLON] = ACTIONS(686), - [anon_sym_DOLLAR] = ACTIONS(688), - [anon_sym_PLUS] = ACTIONS(686), - [anon_sym_STAR] = ACTIONS(686), - [anon_sym_QMARK] = ACTIONS(676), - [anon_sym_u8] = ACTIONS(674), - [anon_sym_i8] = ACTIONS(674), - [anon_sym_u16] = ACTIONS(674), - [anon_sym_i16] = ACTIONS(674), - [anon_sym_u32] = ACTIONS(674), - [anon_sym_i32] = ACTIONS(674), - [anon_sym_u64] = ACTIONS(674), - [anon_sym_i64] = ACTIONS(674), - [anon_sym_u128] = ACTIONS(674), - [anon_sym_i128] = ACTIONS(674), - [anon_sym_isize] = ACTIONS(674), - [anon_sym_usize] = ACTIONS(674), - [anon_sym_f32] = ACTIONS(674), - [anon_sym_f64] = ACTIONS(674), - [anon_sym_bool] = ACTIONS(674), - [anon_sym_str] = ACTIONS(674), - [anon_sym_char] = ACTIONS(674), - [anon_sym_DASH] = ACTIONS(686), - [anon_sym_SLASH] = ACTIONS(686), - [anon_sym_PERCENT] = ACTIONS(686), - [anon_sym_CARET] = ACTIONS(686), - [anon_sym_BANG] = ACTIONS(686), - [anon_sym_AMP] = ACTIONS(686), - [anon_sym_PIPE] = ACTIONS(686), - [anon_sym_AMP_AMP] = ACTIONS(676), - [anon_sym_PIPE_PIPE] = ACTIONS(676), - [anon_sym_LT_LT] = ACTIONS(686), - [anon_sym_GT_GT] = ACTIONS(686), - [anon_sym_PLUS_EQ] = ACTIONS(676), - [anon_sym_DASH_EQ] = ACTIONS(676), - [anon_sym_STAR_EQ] = ACTIONS(676), - [anon_sym_SLASH_EQ] = ACTIONS(676), - [anon_sym_PERCENT_EQ] = ACTIONS(676), - [anon_sym_CARET_EQ] = ACTIONS(676), - [anon_sym_AMP_EQ] = ACTIONS(676), - [anon_sym_PIPE_EQ] = ACTIONS(676), - [anon_sym_LT_LT_EQ] = ACTIONS(676), - [anon_sym_GT_GT_EQ] = ACTIONS(676), - [anon_sym_EQ] = ACTIONS(686), - [anon_sym_EQ_EQ] = ACTIONS(676), - [anon_sym_BANG_EQ] = ACTIONS(676), - [anon_sym_GT] = ACTIONS(686), - [anon_sym_LT] = ACTIONS(686), - [anon_sym_GT_EQ] = ACTIONS(676), - [anon_sym_LT_EQ] = ACTIONS(676), - [anon_sym_AT] = ACTIONS(676), - [anon_sym__] = ACTIONS(686), - [anon_sym_DOT] = ACTIONS(686), - [anon_sym_DOT_DOT] = ACTIONS(686), - [anon_sym_DOT_DOT_DOT] = ACTIONS(676), - [anon_sym_DOT_DOT_EQ] = ACTIONS(676), - [anon_sym_COMMA] = ACTIONS(676), - [anon_sym_COLON_COLON] = ACTIONS(676), - [anon_sym_DASH_GT] = ACTIONS(676), - [anon_sym_POUND] = ACTIONS(676), - [anon_sym_SQUOTE] = ACTIONS(674), - [anon_sym_as] = ACTIONS(674), - [anon_sym_async] = ACTIONS(674), - [anon_sym_await] = ACTIONS(674), - [anon_sym_break] = ACTIONS(674), - [anon_sym_const] = ACTIONS(674), - [anon_sym_continue] = ACTIONS(674), - [anon_sym_default] = ACTIONS(674), - [anon_sym_enum] = ACTIONS(674), - [anon_sym_fn] = ACTIONS(674), - [anon_sym_for] = ACTIONS(674), - [anon_sym_gen] = ACTIONS(674), - [anon_sym_if] = ACTIONS(674), - [anon_sym_impl] = ACTIONS(674), - [anon_sym_let] = ACTIONS(674), - [anon_sym_loop] = ACTIONS(674), - [anon_sym_match] = ACTIONS(674), - [anon_sym_mod] = ACTIONS(674), - [anon_sym_pub] = ACTIONS(674), - [anon_sym_return] = ACTIONS(674), - [anon_sym_static] = ACTIONS(674), - [anon_sym_struct] = ACTIONS(674), - [anon_sym_trait] = ACTIONS(674), - [anon_sym_type] = ACTIONS(674), - [anon_sym_union] = ACTIONS(674), - [anon_sym_unsafe] = ACTIONS(674), - [anon_sym_use] = ACTIONS(674), - [anon_sym_where] = ACTIONS(674), - [anon_sym_while] = ACTIONS(674), - [sym_mutable_specifier] = ACTIONS(674), - [sym_integer_literal] = ACTIONS(690), - [aux_sym_string_literal_token1] = ACTIONS(692), - [sym_char_literal] = ACTIONS(690), - [anon_sym_true] = ACTIONS(694), - [anon_sym_false] = ACTIONS(694), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(674), - [sym_super] = ACTIONS(674), - [sym_crate] = ACTIONS(674), - [sym__raw_string_literal_start] = ACTIONS(696), - [sym_float_literal] = ACTIONS(690), + [aux_sym__non_special_token_repeat1] = STATE(180), + [aux_sym_delim_token_tree_repeat1] = STATE(72), + [sym_identifier] = ACTIONS(679), + [anon_sym_SEMI] = ACTIONS(681), + [anon_sym_LPAREN] = ACTIONS(683), + [anon_sym_RPAREN] = ACTIONS(721), + [anon_sym_LBRACK] = ACTIONS(685), + [anon_sym_LBRACE] = ACTIONS(689), + [anon_sym_EQ_GT] = ACTIONS(681), + [anon_sym_COLON] = ACTIONS(691), + [anon_sym_DOLLAR] = ACTIONS(693), + [anon_sym_PLUS] = ACTIONS(691), + [anon_sym_STAR] = ACTIONS(691), + [anon_sym_QMARK] = ACTIONS(681), + [anon_sym_u8] = ACTIONS(679), + [anon_sym_i8] = ACTIONS(679), + [anon_sym_u16] = ACTIONS(679), + [anon_sym_i16] = ACTIONS(679), + [anon_sym_u32] = ACTIONS(679), + [anon_sym_i32] = ACTIONS(679), + [anon_sym_u64] = ACTIONS(679), + [anon_sym_i64] = ACTIONS(679), + [anon_sym_u128] = ACTIONS(679), + [anon_sym_i128] = ACTIONS(679), + [anon_sym_isize] = ACTIONS(679), + [anon_sym_usize] = ACTIONS(679), + [anon_sym_f32] = ACTIONS(679), + [anon_sym_f64] = ACTIONS(679), + [anon_sym_bool] = ACTIONS(679), + [anon_sym_str] = ACTIONS(679), + [anon_sym_char] = ACTIONS(679), + [anon_sym_DASH] = ACTIONS(691), + [anon_sym_SLASH] = ACTIONS(691), + [anon_sym_PERCENT] = ACTIONS(691), + [anon_sym_CARET] = ACTIONS(691), + [anon_sym_BANG] = ACTIONS(691), + [anon_sym_AMP] = ACTIONS(691), + [anon_sym_PIPE] = ACTIONS(691), + [anon_sym_AMP_AMP] = ACTIONS(681), + [anon_sym_PIPE_PIPE] = ACTIONS(681), + [anon_sym_LT_LT] = ACTIONS(691), + [anon_sym_GT_GT] = ACTIONS(691), + [anon_sym_PLUS_EQ] = ACTIONS(681), + [anon_sym_DASH_EQ] = ACTIONS(681), + [anon_sym_STAR_EQ] = ACTIONS(681), + [anon_sym_SLASH_EQ] = ACTIONS(681), + [anon_sym_PERCENT_EQ] = ACTIONS(681), + [anon_sym_CARET_EQ] = ACTIONS(681), + [anon_sym_AMP_EQ] = ACTIONS(681), + [anon_sym_PIPE_EQ] = ACTIONS(681), + [anon_sym_LT_LT_EQ] = ACTIONS(681), + [anon_sym_GT_GT_EQ] = ACTIONS(681), + [anon_sym_EQ] = ACTIONS(691), + [anon_sym_EQ_EQ] = ACTIONS(681), + [anon_sym_BANG_EQ] = ACTIONS(681), + [anon_sym_GT] = ACTIONS(691), + [anon_sym_LT] = ACTIONS(691), + [anon_sym_GT_EQ] = ACTIONS(681), + [anon_sym_LT_EQ] = ACTIONS(681), + [anon_sym_AT] = ACTIONS(681), + [anon_sym__] = ACTIONS(691), + [anon_sym_DOT] = ACTIONS(691), + [anon_sym_DOT_DOT] = ACTIONS(691), + [anon_sym_DOT_DOT_DOT] = ACTIONS(681), + [anon_sym_DOT_DOT_EQ] = ACTIONS(681), + [anon_sym_COMMA] = ACTIONS(681), + [anon_sym_COLON_COLON] = ACTIONS(681), + [anon_sym_DASH_GT] = ACTIONS(681), + [anon_sym_POUND] = ACTIONS(681), + [anon_sym_SQUOTE] = ACTIONS(679), + [anon_sym_as] = ACTIONS(679), + [anon_sym_async] = ACTIONS(679), + [anon_sym_await] = ACTIONS(679), + [anon_sym_break] = ACTIONS(679), + [anon_sym_const] = ACTIONS(679), + [anon_sym_continue] = ACTIONS(679), + [anon_sym_default] = ACTIONS(679), + [anon_sym_enum] = ACTIONS(679), + [anon_sym_fn] = ACTIONS(679), + [anon_sym_for] = ACTIONS(679), + [anon_sym_gen] = ACTIONS(679), + [anon_sym_if] = ACTIONS(679), + [anon_sym_impl] = ACTIONS(679), + [anon_sym_let] = ACTIONS(679), + [anon_sym_loop] = ACTIONS(679), + [anon_sym_match] = ACTIONS(679), + [anon_sym_mod] = ACTIONS(679), + [anon_sym_pub] = ACTIONS(679), + [anon_sym_return] = ACTIONS(679), + [anon_sym_static] = ACTIONS(679), + [anon_sym_struct] = ACTIONS(679), + [anon_sym_trait] = ACTIONS(679), + [anon_sym_type] = ACTIONS(679), + [anon_sym_union] = ACTIONS(679), + [anon_sym_unsafe] = ACTIONS(679), + [anon_sym_use] = ACTIONS(679), + [anon_sym_where] = ACTIONS(679), + [anon_sym_while] = ACTIONS(679), + [sym_mutable_specifier] = ACTIONS(679), + [sym_integer_literal] = ACTIONS(695), + [aux_sym_string_literal_token1] = ACTIONS(697), + [sym_char_literal] = ACTIONS(695), + [anon_sym_true] = ACTIONS(699), + [anon_sym_false] = ACTIONS(699), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(679), + [sym_super] = ACTIONS(679), + [sym_crate] = ACTIONS(679), + [sym__raw_string_literal_start] = ACTIONS(701), + [sym_float_literal] = ACTIONS(695), }, [STATE(94)] = { - [sym_token_tree] = STATE(170), - [sym_token_repetition] = STATE(170), - [sym__literal] = STATE(170), - [sym_string_literal] = STATE(175), - [sym_raw_string_literal] = STATE(175), - [sym_boolean_literal] = STATE(175), + [sym_delim_token_tree] = STATE(208), + [sym__delim_tokens] = STATE(209), + [sym__non_delim_token] = STATE(208), + [sym__literal] = STATE(204), + [sym_string_literal] = STATE(201), + [sym_raw_string_literal] = STATE(201), + [sym_boolean_literal] = STATE(201), [sym_line_comment] = STATE(94), [sym_block_comment] = STATE(94), - [aux_sym_token_tree_repeat1] = STATE(69), - [aux_sym__non_special_token_repeat1] = STATE(140), - [sym_identifier] = ACTIONS(700), - [anon_sym_SEMI] = ACTIONS(640), - [anon_sym_LPAREN] = ACTIONS(702), - [anon_sym_RPAREN] = ACTIONS(718), - [anon_sym_LBRACK] = ACTIONS(704), - [anon_sym_LBRACE] = ACTIONS(708), - [anon_sym_EQ_GT] = ACTIONS(640), - [anon_sym_COLON] = ACTIONS(650), - [anon_sym_DOLLAR] = ACTIONS(710), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_STAR] = ACTIONS(650), - [anon_sym_QMARK] = ACTIONS(640), - [anon_sym_u8] = ACTIONS(700), - [anon_sym_i8] = ACTIONS(700), - [anon_sym_u16] = ACTIONS(700), - [anon_sym_i16] = ACTIONS(700), - [anon_sym_u32] = ACTIONS(700), - [anon_sym_i32] = ACTIONS(700), - [anon_sym_u64] = ACTIONS(700), - [anon_sym_i64] = ACTIONS(700), - [anon_sym_u128] = ACTIONS(700), - [anon_sym_i128] = ACTIONS(700), - [anon_sym_isize] = ACTIONS(700), - [anon_sym_usize] = ACTIONS(700), - [anon_sym_f32] = ACTIONS(700), - [anon_sym_f64] = ACTIONS(700), - [anon_sym_bool] = ACTIONS(700), - [anon_sym_str] = ACTIONS(700), - [anon_sym_char] = ACTIONS(700), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(650), - [anon_sym_PERCENT] = ACTIONS(650), - [anon_sym_CARET] = ACTIONS(650), - [anon_sym_BANG] = ACTIONS(650), - [anon_sym_AMP] = ACTIONS(650), - [anon_sym_PIPE] = ACTIONS(650), - [anon_sym_AMP_AMP] = ACTIONS(640), - [anon_sym_PIPE_PIPE] = ACTIONS(640), - [anon_sym_LT_LT] = ACTIONS(650), - [anon_sym_GT_GT] = ACTIONS(650), - [anon_sym_PLUS_EQ] = ACTIONS(640), - [anon_sym_DASH_EQ] = ACTIONS(640), - [anon_sym_STAR_EQ] = ACTIONS(640), - [anon_sym_SLASH_EQ] = ACTIONS(640), - [anon_sym_PERCENT_EQ] = ACTIONS(640), - [anon_sym_CARET_EQ] = ACTIONS(640), - [anon_sym_AMP_EQ] = ACTIONS(640), - [anon_sym_PIPE_EQ] = ACTIONS(640), - [anon_sym_LT_LT_EQ] = ACTIONS(640), - [anon_sym_GT_GT_EQ] = ACTIONS(640), - [anon_sym_EQ] = ACTIONS(650), - [anon_sym_EQ_EQ] = ACTIONS(640), - [anon_sym_BANG_EQ] = ACTIONS(640), - [anon_sym_GT] = ACTIONS(650), - [anon_sym_LT] = ACTIONS(650), - [anon_sym_GT_EQ] = ACTIONS(640), - [anon_sym_LT_EQ] = ACTIONS(640), - [anon_sym_AT] = ACTIONS(640), - [anon_sym__] = ACTIONS(650), - [anon_sym_DOT] = ACTIONS(650), - [anon_sym_DOT_DOT] = ACTIONS(650), - [anon_sym_DOT_DOT_DOT] = ACTIONS(640), - [anon_sym_DOT_DOT_EQ] = ACTIONS(640), - [anon_sym_COMMA] = ACTIONS(640), - [anon_sym_COLON_COLON] = ACTIONS(640), - [anon_sym_DASH_GT] = ACTIONS(640), - [anon_sym_POUND] = ACTIONS(640), - [anon_sym_SQUOTE] = ACTIONS(700), - [anon_sym_as] = ACTIONS(700), - [anon_sym_async] = ACTIONS(700), - [anon_sym_await] = ACTIONS(700), - [anon_sym_break] = ACTIONS(700), - [anon_sym_const] = ACTIONS(700), - [anon_sym_continue] = ACTIONS(700), - [anon_sym_default] = ACTIONS(700), - [anon_sym_enum] = ACTIONS(700), - [anon_sym_fn] = ACTIONS(700), - [anon_sym_for] = ACTIONS(700), - [anon_sym_gen] = ACTIONS(700), - [anon_sym_if] = ACTIONS(700), - [anon_sym_impl] = ACTIONS(700), - [anon_sym_let] = ACTIONS(700), - [anon_sym_loop] = ACTIONS(700), - [anon_sym_match] = ACTIONS(700), - [anon_sym_mod] = ACTIONS(700), - [anon_sym_pub] = ACTIONS(700), - [anon_sym_return] = ACTIONS(700), - [anon_sym_static] = ACTIONS(700), - [anon_sym_struct] = ACTIONS(700), - [anon_sym_trait] = ACTIONS(700), - [anon_sym_type] = ACTIONS(700), - [anon_sym_union] = ACTIONS(700), - [anon_sym_unsafe] = ACTIONS(700), - [anon_sym_use] = ACTIONS(700), - [anon_sym_where] = ACTIONS(700), - [anon_sym_while] = ACTIONS(700), - [sym_mutable_specifier] = ACTIONS(700), - [sym_integer_literal] = ACTIONS(654), - [aux_sym_string_literal_token1] = ACTIONS(656), - [sym_char_literal] = ACTIONS(654), - [anon_sym_true] = ACTIONS(658), - [anon_sym_false] = ACTIONS(658), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(700), - [sym_super] = ACTIONS(700), - [sym_crate] = ACTIONS(700), - [sym_metavariable] = ACTIONS(712), - [sym__raw_string_literal_start] = ACTIONS(662), - [sym_float_literal] = ACTIONS(654), + [aux_sym__non_special_token_repeat1] = STATE(180), + [aux_sym_delim_token_tree_repeat1] = STATE(72), + [sym_identifier] = ACTIONS(679), + [anon_sym_SEMI] = ACTIONS(681), + [anon_sym_LPAREN] = ACTIONS(683), + [anon_sym_LBRACK] = ACTIONS(685), + [anon_sym_RBRACK] = ACTIONS(721), + [anon_sym_LBRACE] = ACTIONS(689), + [anon_sym_EQ_GT] = ACTIONS(681), + [anon_sym_COLON] = ACTIONS(691), + [anon_sym_DOLLAR] = ACTIONS(693), + [anon_sym_PLUS] = ACTIONS(691), + [anon_sym_STAR] = ACTIONS(691), + [anon_sym_QMARK] = ACTIONS(681), + [anon_sym_u8] = ACTIONS(679), + [anon_sym_i8] = ACTIONS(679), + [anon_sym_u16] = ACTIONS(679), + [anon_sym_i16] = ACTIONS(679), + [anon_sym_u32] = ACTIONS(679), + [anon_sym_i32] = ACTIONS(679), + [anon_sym_u64] = ACTIONS(679), + [anon_sym_i64] = ACTIONS(679), + [anon_sym_u128] = ACTIONS(679), + [anon_sym_i128] = ACTIONS(679), + [anon_sym_isize] = ACTIONS(679), + [anon_sym_usize] = ACTIONS(679), + [anon_sym_f32] = ACTIONS(679), + [anon_sym_f64] = ACTIONS(679), + [anon_sym_bool] = ACTIONS(679), + [anon_sym_str] = ACTIONS(679), + [anon_sym_char] = ACTIONS(679), + [anon_sym_DASH] = ACTIONS(691), + [anon_sym_SLASH] = ACTIONS(691), + [anon_sym_PERCENT] = ACTIONS(691), + [anon_sym_CARET] = ACTIONS(691), + [anon_sym_BANG] = ACTIONS(691), + [anon_sym_AMP] = ACTIONS(691), + [anon_sym_PIPE] = ACTIONS(691), + [anon_sym_AMP_AMP] = ACTIONS(681), + [anon_sym_PIPE_PIPE] = ACTIONS(681), + [anon_sym_LT_LT] = ACTIONS(691), + [anon_sym_GT_GT] = ACTIONS(691), + [anon_sym_PLUS_EQ] = ACTIONS(681), + [anon_sym_DASH_EQ] = ACTIONS(681), + [anon_sym_STAR_EQ] = ACTIONS(681), + [anon_sym_SLASH_EQ] = ACTIONS(681), + [anon_sym_PERCENT_EQ] = ACTIONS(681), + [anon_sym_CARET_EQ] = ACTIONS(681), + [anon_sym_AMP_EQ] = ACTIONS(681), + [anon_sym_PIPE_EQ] = ACTIONS(681), + [anon_sym_LT_LT_EQ] = ACTIONS(681), + [anon_sym_GT_GT_EQ] = ACTIONS(681), + [anon_sym_EQ] = ACTIONS(691), + [anon_sym_EQ_EQ] = ACTIONS(681), + [anon_sym_BANG_EQ] = ACTIONS(681), + [anon_sym_GT] = ACTIONS(691), + [anon_sym_LT] = ACTIONS(691), + [anon_sym_GT_EQ] = ACTIONS(681), + [anon_sym_LT_EQ] = ACTIONS(681), + [anon_sym_AT] = ACTIONS(681), + [anon_sym__] = ACTIONS(691), + [anon_sym_DOT] = ACTIONS(691), + [anon_sym_DOT_DOT] = ACTIONS(691), + [anon_sym_DOT_DOT_DOT] = ACTIONS(681), + [anon_sym_DOT_DOT_EQ] = ACTIONS(681), + [anon_sym_COMMA] = ACTIONS(681), + [anon_sym_COLON_COLON] = ACTIONS(681), + [anon_sym_DASH_GT] = ACTIONS(681), + [anon_sym_POUND] = ACTIONS(681), + [anon_sym_SQUOTE] = ACTIONS(679), + [anon_sym_as] = ACTIONS(679), + [anon_sym_async] = ACTIONS(679), + [anon_sym_await] = ACTIONS(679), + [anon_sym_break] = ACTIONS(679), + [anon_sym_const] = ACTIONS(679), + [anon_sym_continue] = ACTIONS(679), + [anon_sym_default] = ACTIONS(679), + [anon_sym_enum] = ACTIONS(679), + [anon_sym_fn] = ACTIONS(679), + [anon_sym_for] = ACTIONS(679), + [anon_sym_gen] = ACTIONS(679), + [anon_sym_if] = ACTIONS(679), + [anon_sym_impl] = ACTIONS(679), + [anon_sym_let] = ACTIONS(679), + [anon_sym_loop] = ACTIONS(679), + [anon_sym_match] = ACTIONS(679), + [anon_sym_mod] = ACTIONS(679), + [anon_sym_pub] = ACTIONS(679), + [anon_sym_return] = ACTIONS(679), + [anon_sym_static] = ACTIONS(679), + [anon_sym_struct] = ACTIONS(679), + [anon_sym_trait] = ACTIONS(679), + [anon_sym_type] = ACTIONS(679), + [anon_sym_union] = ACTIONS(679), + [anon_sym_unsafe] = ACTIONS(679), + [anon_sym_use] = ACTIONS(679), + [anon_sym_where] = ACTIONS(679), + [anon_sym_while] = ACTIONS(679), + [sym_mutable_specifier] = ACTIONS(679), + [sym_integer_literal] = ACTIONS(695), + [aux_sym_string_literal_token1] = ACTIONS(697), + [sym_char_literal] = ACTIONS(695), + [anon_sym_true] = ACTIONS(699), + [anon_sym_false] = ACTIONS(699), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(679), + [sym_super] = ACTIONS(679), + [sym_crate] = ACTIONS(679), + [sym__raw_string_literal_start] = ACTIONS(701), + [sym_float_literal] = ACTIONS(695), }, [STATE(95)] = { - [sym_delim_token_tree] = STATE(207), - [sym__delim_tokens] = STATE(208), - [sym__non_delim_token] = STATE(207), - [sym__literal] = STATE(206), - [sym_string_literal] = STATE(212), - [sym_raw_string_literal] = STATE(212), - [sym_boolean_literal] = STATE(212), + [sym_delim_token_tree] = STATE(208), + [sym__delim_tokens] = STATE(209), + [sym__non_delim_token] = STATE(208), + [sym__literal] = STATE(204), + [sym_string_literal] = STATE(201), + [sym_raw_string_literal] = STATE(201), + [sym_boolean_literal] = STATE(201), [sym_line_comment] = STATE(95), [sym_block_comment] = STATE(95), - [aux_sym__non_special_token_repeat1] = STATE(181), - [aux_sym_delim_token_tree_repeat1] = STATE(68), - [sym_identifier] = ACTIONS(674), - [anon_sym_SEMI] = ACTIONS(676), - [anon_sym_LPAREN] = ACTIONS(678), - [anon_sym_RPAREN] = ACTIONS(720), - [anon_sym_LBRACK] = ACTIONS(680), - [anon_sym_LBRACE] = ACTIONS(682), - [anon_sym_EQ_GT] = ACTIONS(676), - [anon_sym_COLON] = ACTIONS(686), - [anon_sym_DOLLAR] = ACTIONS(688), - [anon_sym_PLUS] = ACTIONS(686), - [anon_sym_STAR] = ACTIONS(686), - [anon_sym_QMARK] = ACTIONS(676), - [anon_sym_u8] = ACTIONS(674), - [anon_sym_i8] = ACTIONS(674), - [anon_sym_u16] = ACTIONS(674), - [anon_sym_i16] = ACTIONS(674), - [anon_sym_u32] = ACTIONS(674), - [anon_sym_i32] = ACTIONS(674), - [anon_sym_u64] = ACTIONS(674), - [anon_sym_i64] = ACTIONS(674), - [anon_sym_u128] = ACTIONS(674), - [anon_sym_i128] = ACTIONS(674), - [anon_sym_isize] = ACTIONS(674), - [anon_sym_usize] = ACTIONS(674), - [anon_sym_f32] = ACTIONS(674), - [anon_sym_f64] = ACTIONS(674), - [anon_sym_bool] = ACTIONS(674), - [anon_sym_str] = ACTIONS(674), - [anon_sym_char] = ACTIONS(674), - [anon_sym_DASH] = ACTIONS(686), - [anon_sym_SLASH] = ACTIONS(686), - [anon_sym_PERCENT] = ACTIONS(686), - [anon_sym_CARET] = ACTIONS(686), - [anon_sym_BANG] = ACTIONS(686), - [anon_sym_AMP] = ACTIONS(686), - [anon_sym_PIPE] = ACTIONS(686), - [anon_sym_AMP_AMP] = ACTIONS(676), - [anon_sym_PIPE_PIPE] = ACTIONS(676), - [anon_sym_LT_LT] = ACTIONS(686), - [anon_sym_GT_GT] = ACTIONS(686), - [anon_sym_PLUS_EQ] = ACTIONS(676), - [anon_sym_DASH_EQ] = ACTIONS(676), - [anon_sym_STAR_EQ] = ACTIONS(676), - [anon_sym_SLASH_EQ] = ACTIONS(676), - [anon_sym_PERCENT_EQ] = ACTIONS(676), - [anon_sym_CARET_EQ] = ACTIONS(676), - [anon_sym_AMP_EQ] = ACTIONS(676), - [anon_sym_PIPE_EQ] = ACTIONS(676), - [anon_sym_LT_LT_EQ] = ACTIONS(676), - [anon_sym_GT_GT_EQ] = ACTIONS(676), - [anon_sym_EQ] = ACTIONS(686), - [anon_sym_EQ_EQ] = ACTIONS(676), - [anon_sym_BANG_EQ] = ACTIONS(676), - [anon_sym_GT] = ACTIONS(686), - [anon_sym_LT] = ACTIONS(686), - [anon_sym_GT_EQ] = ACTIONS(676), - [anon_sym_LT_EQ] = ACTIONS(676), - [anon_sym_AT] = ACTIONS(676), - [anon_sym__] = ACTIONS(686), - [anon_sym_DOT] = ACTIONS(686), - [anon_sym_DOT_DOT] = ACTIONS(686), - [anon_sym_DOT_DOT_DOT] = ACTIONS(676), - [anon_sym_DOT_DOT_EQ] = ACTIONS(676), - [anon_sym_COMMA] = ACTIONS(676), - [anon_sym_COLON_COLON] = ACTIONS(676), - [anon_sym_DASH_GT] = ACTIONS(676), - [anon_sym_POUND] = ACTIONS(676), - [anon_sym_SQUOTE] = ACTIONS(674), - [anon_sym_as] = ACTIONS(674), - [anon_sym_async] = ACTIONS(674), - [anon_sym_await] = ACTIONS(674), - [anon_sym_break] = ACTIONS(674), - [anon_sym_const] = ACTIONS(674), - [anon_sym_continue] = ACTIONS(674), - [anon_sym_default] = ACTIONS(674), - [anon_sym_enum] = ACTIONS(674), - [anon_sym_fn] = ACTIONS(674), - [anon_sym_for] = ACTIONS(674), - [anon_sym_gen] = ACTIONS(674), - [anon_sym_if] = ACTIONS(674), - [anon_sym_impl] = ACTIONS(674), - [anon_sym_let] = ACTIONS(674), - [anon_sym_loop] = ACTIONS(674), - [anon_sym_match] = ACTIONS(674), - [anon_sym_mod] = ACTIONS(674), - [anon_sym_pub] = ACTIONS(674), - [anon_sym_return] = ACTIONS(674), - [anon_sym_static] = ACTIONS(674), - [anon_sym_struct] = ACTIONS(674), - [anon_sym_trait] = ACTIONS(674), - [anon_sym_type] = ACTIONS(674), - [anon_sym_union] = ACTIONS(674), - [anon_sym_unsafe] = ACTIONS(674), - [anon_sym_use] = ACTIONS(674), - [anon_sym_where] = ACTIONS(674), - [anon_sym_while] = ACTIONS(674), - [sym_mutable_specifier] = ACTIONS(674), - [sym_integer_literal] = ACTIONS(690), - [aux_sym_string_literal_token1] = ACTIONS(692), - [sym_char_literal] = ACTIONS(690), - [anon_sym_true] = ACTIONS(694), - [anon_sym_false] = ACTIONS(694), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(674), - [sym_super] = ACTIONS(674), - [sym_crate] = ACTIONS(674), - [sym__raw_string_literal_start] = ACTIONS(696), - [sym_float_literal] = ACTIONS(690), + [aux_sym__non_special_token_repeat1] = STATE(180), + [aux_sym_delim_token_tree_repeat1] = STATE(72), + [sym_identifier] = ACTIONS(679), + [anon_sym_SEMI] = ACTIONS(681), + [anon_sym_LPAREN] = ACTIONS(683), + [anon_sym_LBRACK] = ACTIONS(685), + [anon_sym_LBRACE] = ACTIONS(689), + [anon_sym_RBRACE] = ACTIONS(721), + [anon_sym_EQ_GT] = ACTIONS(681), + [anon_sym_COLON] = ACTIONS(691), + [anon_sym_DOLLAR] = ACTIONS(693), + [anon_sym_PLUS] = ACTIONS(691), + [anon_sym_STAR] = ACTIONS(691), + [anon_sym_QMARK] = ACTIONS(681), + [anon_sym_u8] = ACTIONS(679), + [anon_sym_i8] = ACTIONS(679), + [anon_sym_u16] = ACTIONS(679), + [anon_sym_i16] = ACTIONS(679), + [anon_sym_u32] = ACTIONS(679), + [anon_sym_i32] = ACTIONS(679), + [anon_sym_u64] = ACTIONS(679), + [anon_sym_i64] = ACTIONS(679), + [anon_sym_u128] = ACTIONS(679), + [anon_sym_i128] = ACTIONS(679), + [anon_sym_isize] = ACTIONS(679), + [anon_sym_usize] = ACTIONS(679), + [anon_sym_f32] = ACTIONS(679), + [anon_sym_f64] = ACTIONS(679), + [anon_sym_bool] = ACTIONS(679), + [anon_sym_str] = ACTIONS(679), + [anon_sym_char] = ACTIONS(679), + [anon_sym_DASH] = ACTIONS(691), + [anon_sym_SLASH] = ACTIONS(691), + [anon_sym_PERCENT] = ACTIONS(691), + [anon_sym_CARET] = ACTIONS(691), + [anon_sym_BANG] = ACTIONS(691), + [anon_sym_AMP] = ACTIONS(691), + [anon_sym_PIPE] = ACTIONS(691), + [anon_sym_AMP_AMP] = ACTIONS(681), + [anon_sym_PIPE_PIPE] = ACTIONS(681), + [anon_sym_LT_LT] = ACTIONS(691), + [anon_sym_GT_GT] = ACTIONS(691), + [anon_sym_PLUS_EQ] = ACTIONS(681), + [anon_sym_DASH_EQ] = ACTIONS(681), + [anon_sym_STAR_EQ] = ACTIONS(681), + [anon_sym_SLASH_EQ] = ACTIONS(681), + [anon_sym_PERCENT_EQ] = ACTIONS(681), + [anon_sym_CARET_EQ] = ACTIONS(681), + [anon_sym_AMP_EQ] = ACTIONS(681), + [anon_sym_PIPE_EQ] = ACTIONS(681), + [anon_sym_LT_LT_EQ] = ACTIONS(681), + [anon_sym_GT_GT_EQ] = ACTIONS(681), + [anon_sym_EQ] = ACTIONS(691), + [anon_sym_EQ_EQ] = ACTIONS(681), + [anon_sym_BANG_EQ] = ACTIONS(681), + [anon_sym_GT] = ACTIONS(691), + [anon_sym_LT] = ACTIONS(691), + [anon_sym_GT_EQ] = ACTIONS(681), + [anon_sym_LT_EQ] = ACTIONS(681), + [anon_sym_AT] = ACTIONS(681), + [anon_sym__] = ACTIONS(691), + [anon_sym_DOT] = ACTIONS(691), + [anon_sym_DOT_DOT] = ACTIONS(691), + [anon_sym_DOT_DOT_DOT] = ACTIONS(681), + [anon_sym_DOT_DOT_EQ] = ACTIONS(681), + [anon_sym_COMMA] = ACTIONS(681), + [anon_sym_COLON_COLON] = ACTIONS(681), + [anon_sym_DASH_GT] = ACTIONS(681), + [anon_sym_POUND] = ACTIONS(681), + [anon_sym_SQUOTE] = ACTIONS(679), + [anon_sym_as] = ACTIONS(679), + [anon_sym_async] = ACTIONS(679), + [anon_sym_await] = ACTIONS(679), + [anon_sym_break] = ACTIONS(679), + [anon_sym_const] = ACTIONS(679), + [anon_sym_continue] = ACTIONS(679), + [anon_sym_default] = ACTIONS(679), + [anon_sym_enum] = ACTIONS(679), + [anon_sym_fn] = ACTIONS(679), + [anon_sym_for] = ACTIONS(679), + [anon_sym_gen] = ACTIONS(679), + [anon_sym_if] = ACTIONS(679), + [anon_sym_impl] = ACTIONS(679), + [anon_sym_let] = ACTIONS(679), + [anon_sym_loop] = ACTIONS(679), + [anon_sym_match] = ACTIONS(679), + [anon_sym_mod] = ACTIONS(679), + [anon_sym_pub] = ACTIONS(679), + [anon_sym_return] = ACTIONS(679), + [anon_sym_static] = ACTIONS(679), + [anon_sym_struct] = ACTIONS(679), + [anon_sym_trait] = ACTIONS(679), + [anon_sym_type] = ACTIONS(679), + [anon_sym_union] = ACTIONS(679), + [anon_sym_unsafe] = ACTIONS(679), + [anon_sym_use] = ACTIONS(679), + [anon_sym_where] = ACTIONS(679), + [anon_sym_while] = ACTIONS(679), + [sym_mutable_specifier] = ACTIONS(679), + [sym_integer_literal] = ACTIONS(695), + [aux_sym_string_literal_token1] = ACTIONS(697), + [sym_char_literal] = ACTIONS(695), + [anon_sym_true] = ACTIONS(699), + [anon_sym_false] = ACTIONS(699), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(679), + [sym_super] = ACTIONS(679), + [sym_crate] = ACTIONS(679), + [sym__raw_string_literal_start] = ACTIONS(701), + [sym_float_literal] = ACTIONS(695), }, [STATE(96)] = { - [sym_delim_token_tree] = STATE(207), - [sym__delim_tokens] = STATE(208), - [sym__non_delim_token] = STATE(207), - [sym__literal] = STATE(206), - [sym_string_literal] = STATE(212), - [sym_raw_string_literal] = STATE(212), - [sym_boolean_literal] = STATE(212), - [sym_line_comment] = STATE(96), + [sym_token_tree] = STATE(170), + [sym_token_repetition] = STATE(170), + [sym__literal] = STATE(170), + [sym_string_literal] = STATE(174), + [sym_raw_string_literal] = STATE(174), + [sym_boolean_literal] = STATE(174), + [sym_line_comment] = STATE(96), [sym_block_comment] = STATE(96), - [aux_sym__non_special_token_repeat1] = STATE(181), - [aux_sym_delim_token_tree_repeat1] = STATE(68), - [sym_identifier] = ACTIONS(674), - [anon_sym_SEMI] = ACTIONS(676), - [anon_sym_LPAREN] = ACTIONS(678), - [anon_sym_LBRACK] = ACTIONS(680), - [anon_sym_RBRACK] = ACTIONS(720), - [anon_sym_LBRACE] = ACTIONS(682), - [anon_sym_EQ_GT] = ACTIONS(676), - [anon_sym_COLON] = ACTIONS(686), - [anon_sym_DOLLAR] = ACTIONS(688), - [anon_sym_PLUS] = ACTIONS(686), - [anon_sym_STAR] = ACTIONS(686), - [anon_sym_QMARK] = ACTIONS(676), - [anon_sym_u8] = ACTIONS(674), - [anon_sym_i8] = ACTIONS(674), - [anon_sym_u16] = ACTIONS(674), - [anon_sym_i16] = ACTIONS(674), - [anon_sym_u32] = ACTIONS(674), - [anon_sym_i32] = ACTIONS(674), - [anon_sym_u64] = ACTIONS(674), - [anon_sym_i64] = ACTIONS(674), - [anon_sym_u128] = ACTIONS(674), - [anon_sym_i128] = ACTIONS(674), - [anon_sym_isize] = ACTIONS(674), - [anon_sym_usize] = ACTIONS(674), - [anon_sym_f32] = ACTIONS(674), - [anon_sym_f64] = ACTIONS(674), - [anon_sym_bool] = ACTIONS(674), - [anon_sym_str] = ACTIONS(674), - [anon_sym_char] = ACTIONS(674), - [anon_sym_DASH] = ACTIONS(686), - [anon_sym_SLASH] = ACTIONS(686), - [anon_sym_PERCENT] = ACTIONS(686), - [anon_sym_CARET] = ACTIONS(686), - [anon_sym_BANG] = ACTIONS(686), - [anon_sym_AMP] = ACTIONS(686), - [anon_sym_PIPE] = ACTIONS(686), - [anon_sym_AMP_AMP] = ACTIONS(676), - [anon_sym_PIPE_PIPE] = ACTIONS(676), - [anon_sym_LT_LT] = ACTIONS(686), - [anon_sym_GT_GT] = ACTIONS(686), - [anon_sym_PLUS_EQ] = ACTIONS(676), - [anon_sym_DASH_EQ] = ACTIONS(676), - [anon_sym_STAR_EQ] = ACTIONS(676), - [anon_sym_SLASH_EQ] = ACTIONS(676), - [anon_sym_PERCENT_EQ] = ACTIONS(676), - [anon_sym_CARET_EQ] = ACTIONS(676), - [anon_sym_AMP_EQ] = ACTIONS(676), - [anon_sym_PIPE_EQ] = ACTIONS(676), - [anon_sym_LT_LT_EQ] = ACTIONS(676), - [anon_sym_GT_GT_EQ] = ACTIONS(676), - [anon_sym_EQ] = ACTIONS(686), - [anon_sym_EQ_EQ] = ACTIONS(676), - [anon_sym_BANG_EQ] = ACTIONS(676), - [anon_sym_GT] = ACTIONS(686), - [anon_sym_LT] = ACTIONS(686), - [anon_sym_GT_EQ] = ACTIONS(676), - [anon_sym_LT_EQ] = ACTIONS(676), - [anon_sym_AT] = ACTIONS(676), - [anon_sym__] = ACTIONS(686), - [anon_sym_DOT] = ACTIONS(686), - [anon_sym_DOT_DOT] = ACTIONS(686), - [anon_sym_DOT_DOT_DOT] = ACTIONS(676), - [anon_sym_DOT_DOT_EQ] = ACTIONS(676), - [anon_sym_COMMA] = ACTIONS(676), - [anon_sym_COLON_COLON] = ACTIONS(676), - [anon_sym_DASH_GT] = ACTIONS(676), - [anon_sym_POUND] = ACTIONS(676), - [anon_sym_SQUOTE] = ACTIONS(674), - [anon_sym_as] = ACTIONS(674), - [anon_sym_async] = ACTIONS(674), - [anon_sym_await] = ACTIONS(674), - [anon_sym_break] = ACTIONS(674), - [anon_sym_const] = ACTIONS(674), - [anon_sym_continue] = ACTIONS(674), - [anon_sym_default] = ACTIONS(674), - [anon_sym_enum] = ACTIONS(674), - [anon_sym_fn] = ACTIONS(674), - [anon_sym_for] = ACTIONS(674), - [anon_sym_gen] = ACTIONS(674), - [anon_sym_if] = ACTIONS(674), - [anon_sym_impl] = ACTIONS(674), - [anon_sym_let] = ACTIONS(674), - [anon_sym_loop] = ACTIONS(674), - [anon_sym_match] = ACTIONS(674), - [anon_sym_mod] = ACTIONS(674), - [anon_sym_pub] = ACTIONS(674), - [anon_sym_return] = ACTIONS(674), - [anon_sym_static] = ACTIONS(674), - [anon_sym_struct] = ACTIONS(674), - [anon_sym_trait] = ACTIONS(674), - [anon_sym_type] = ACTIONS(674), - [anon_sym_union] = ACTIONS(674), - [anon_sym_unsafe] = ACTIONS(674), - [anon_sym_use] = ACTIONS(674), - [anon_sym_where] = ACTIONS(674), - [anon_sym_while] = ACTIONS(674), - [sym_mutable_specifier] = ACTIONS(674), - [sym_integer_literal] = ACTIONS(690), - [aux_sym_string_literal_token1] = ACTIONS(692), - [sym_char_literal] = ACTIONS(690), - [anon_sym_true] = ACTIONS(694), - [anon_sym_false] = ACTIONS(694), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(674), - [sym_super] = ACTIONS(674), - [sym_crate] = ACTIONS(674), - [sym__raw_string_literal_start] = ACTIONS(696), - [sym_float_literal] = ACTIONS(690), + [aux_sym_token_tree_repeat1] = STATE(112), + [aux_sym__non_special_token_repeat1] = STATE(136), + [sym_identifier] = ACTIONS(703), + [anon_sym_SEMI] = ACTIONS(572), + [anon_sym_LPAREN] = ACTIONS(705), + [anon_sym_RPAREN] = ACTIONS(723), + [anon_sym_LBRACK] = ACTIONS(707), + [anon_sym_LBRACE] = ACTIONS(711), + [anon_sym_EQ_GT] = ACTIONS(572), + [anon_sym_COLON] = ACTIONS(582), + [anon_sym_DOLLAR] = ACTIONS(713), + [anon_sym_PLUS] = ACTIONS(582), + [anon_sym_STAR] = ACTIONS(582), + [anon_sym_QMARK] = ACTIONS(572), + [anon_sym_u8] = ACTIONS(703), + [anon_sym_i8] = ACTIONS(703), + [anon_sym_u16] = ACTIONS(703), + [anon_sym_i16] = ACTIONS(703), + [anon_sym_u32] = ACTIONS(703), + [anon_sym_i32] = ACTIONS(703), + [anon_sym_u64] = ACTIONS(703), + [anon_sym_i64] = ACTIONS(703), + [anon_sym_u128] = ACTIONS(703), + [anon_sym_i128] = ACTIONS(703), + [anon_sym_isize] = ACTIONS(703), + [anon_sym_usize] = ACTIONS(703), + [anon_sym_f32] = ACTIONS(703), + [anon_sym_f64] = ACTIONS(703), + [anon_sym_bool] = ACTIONS(703), + [anon_sym_str] = ACTIONS(703), + [anon_sym_char] = ACTIONS(703), + [anon_sym_DASH] = ACTIONS(582), + [anon_sym_SLASH] = ACTIONS(582), + [anon_sym_PERCENT] = ACTIONS(582), + [anon_sym_CARET] = ACTIONS(582), + [anon_sym_BANG] = ACTIONS(582), + [anon_sym_AMP] = ACTIONS(582), + [anon_sym_PIPE] = ACTIONS(582), + [anon_sym_AMP_AMP] = ACTIONS(572), + [anon_sym_PIPE_PIPE] = ACTIONS(572), + [anon_sym_LT_LT] = ACTIONS(582), + [anon_sym_GT_GT] = ACTIONS(582), + [anon_sym_PLUS_EQ] = ACTIONS(572), + [anon_sym_DASH_EQ] = ACTIONS(572), + [anon_sym_STAR_EQ] = ACTIONS(572), + [anon_sym_SLASH_EQ] = ACTIONS(572), + [anon_sym_PERCENT_EQ] = ACTIONS(572), + [anon_sym_CARET_EQ] = ACTIONS(572), + [anon_sym_AMP_EQ] = ACTIONS(572), + [anon_sym_PIPE_EQ] = ACTIONS(572), + [anon_sym_LT_LT_EQ] = ACTIONS(572), + [anon_sym_GT_GT_EQ] = ACTIONS(572), + [anon_sym_EQ] = ACTIONS(582), + [anon_sym_EQ_EQ] = ACTIONS(572), + [anon_sym_BANG_EQ] = ACTIONS(572), + [anon_sym_GT] = ACTIONS(582), + [anon_sym_LT] = ACTIONS(582), + [anon_sym_GT_EQ] = ACTIONS(572), + [anon_sym_LT_EQ] = ACTIONS(572), + [anon_sym_AT] = ACTIONS(572), + [anon_sym__] = ACTIONS(582), + [anon_sym_DOT] = ACTIONS(582), + [anon_sym_DOT_DOT] = ACTIONS(582), + [anon_sym_DOT_DOT_DOT] = ACTIONS(572), + [anon_sym_DOT_DOT_EQ] = ACTIONS(572), + [anon_sym_COMMA] = ACTIONS(572), + [anon_sym_COLON_COLON] = ACTIONS(572), + [anon_sym_DASH_GT] = ACTIONS(572), + [anon_sym_POUND] = ACTIONS(572), + [anon_sym_SQUOTE] = ACTIONS(703), + [anon_sym_as] = ACTIONS(703), + [anon_sym_async] = ACTIONS(703), + [anon_sym_await] = ACTIONS(703), + [anon_sym_break] = ACTIONS(703), + [anon_sym_const] = ACTIONS(703), + [anon_sym_continue] = ACTIONS(703), + [anon_sym_default] = ACTIONS(703), + [anon_sym_enum] = ACTIONS(703), + [anon_sym_fn] = ACTIONS(703), + [anon_sym_for] = ACTIONS(703), + [anon_sym_gen] = ACTIONS(703), + [anon_sym_if] = ACTIONS(703), + [anon_sym_impl] = ACTIONS(703), + [anon_sym_let] = ACTIONS(703), + [anon_sym_loop] = ACTIONS(703), + [anon_sym_match] = ACTIONS(703), + [anon_sym_mod] = ACTIONS(703), + [anon_sym_pub] = ACTIONS(703), + [anon_sym_return] = ACTIONS(703), + [anon_sym_static] = ACTIONS(703), + [anon_sym_struct] = ACTIONS(703), + [anon_sym_trait] = ACTIONS(703), + [anon_sym_type] = ACTIONS(703), + [anon_sym_union] = ACTIONS(703), + [anon_sym_unsafe] = ACTIONS(703), + [anon_sym_use] = ACTIONS(703), + [anon_sym_where] = ACTIONS(703), + [anon_sym_while] = ACTIONS(703), + [sym_mutable_specifier] = ACTIONS(703), + [sym_integer_literal] = ACTIONS(586), + [aux_sym_string_literal_token1] = ACTIONS(588), + [sym_char_literal] = ACTIONS(586), + [anon_sym_true] = ACTIONS(590), + [anon_sym_false] = ACTIONS(590), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(703), + [sym_super] = ACTIONS(703), + [sym_crate] = ACTIONS(703), + [sym_metavariable] = ACTIONS(715), + [sym__raw_string_literal_start] = ACTIONS(594), + [sym_float_literal] = ACTIONS(586), }, [STATE(97)] = { - [sym_delim_token_tree] = STATE(207), - [sym__delim_tokens] = STATE(208), - [sym__non_delim_token] = STATE(207), - [sym__literal] = STATE(206), - [sym_string_literal] = STATE(212), - [sym_raw_string_literal] = STATE(212), - [sym_boolean_literal] = STATE(212), + [sym_token_tree] = STATE(170), + [sym_token_repetition] = STATE(170), + [sym__literal] = STATE(170), + [sym_string_literal] = STATE(174), + [sym_raw_string_literal] = STATE(174), + [sym_boolean_literal] = STATE(174), [sym_line_comment] = STATE(97), [sym_block_comment] = STATE(97), - [aux_sym__non_special_token_repeat1] = STATE(181), - [aux_sym_delim_token_tree_repeat1] = STATE(68), - [sym_identifier] = ACTIONS(674), - [anon_sym_SEMI] = ACTIONS(676), - [anon_sym_LPAREN] = ACTIONS(678), - [anon_sym_LBRACK] = ACTIONS(680), - [anon_sym_LBRACE] = ACTIONS(682), - [anon_sym_RBRACE] = ACTIONS(720), - [anon_sym_EQ_GT] = ACTIONS(676), - [anon_sym_COLON] = ACTIONS(686), - [anon_sym_DOLLAR] = ACTIONS(688), - [anon_sym_PLUS] = ACTIONS(686), - [anon_sym_STAR] = ACTIONS(686), - [anon_sym_QMARK] = ACTIONS(676), - [anon_sym_u8] = ACTIONS(674), - [anon_sym_i8] = ACTIONS(674), - [anon_sym_u16] = ACTIONS(674), - [anon_sym_i16] = ACTIONS(674), - [anon_sym_u32] = ACTIONS(674), - [anon_sym_i32] = ACTIONS(674), - [anon_sym_u64] = ACTIONS(674), - [anon_sym_i64] = ACTIONS(674), - [anon_sym_u128] = ACTIONS(674), - [anon_sym_i128] = ACTIONS(674), - [anon_sym_isize] = ACTIONS(674), - [anon_sym_usize] = ACTIONS(674), - [anon_sym_f32] = ACTIONS(674), - [anon_sym_f64] = ACTIONS(674), - [anon_sym_bool] = ACTIONS(674), - [anon_sym_str] = ACTIONS(674), - [anon_sym_char] = ACTIONS(674), - [anon_sym_DASH] = ACTIONS(686), - [anon_sym_SLASH] = ACTIONS(686), - [anon_sym_PERCENT] = ACTIONS(686), - [anon_sym_CARET] = ACTIONS(686), - [anon_sym_BANG] = ACTIONS(686), - [anon_sym_AMP] = ACTIONS(686), - [anon_sym_PIPE] = ACTIONS(686), - [anon_sym_AMP_AMP] = ACTIONS(676), - [anon_sym_PIPE_PIPE] = ACTIONS(676), - [anon_sym_LT_LT] = ACTIONS(686), - [anon_sym_GT_GT] = ACTIONS(686), - [anon_sym_PLUS_EQ] = ACTIONS(676), - [anon_sym_DASH_EQ] = ACTIONS(676), - [anon_sym_STAR_EQ] = ACTIONS(676), - [anon_sym_SLASH_EQ] = ACTIONS(676), - [anon_sym_PERCENT_EQ] = ACTIONS(676), - [anon_sym_CARET_EQ] = ACTIONS(676), - [anon_sym_AMP_EQ] = ACTIONS(676), - [anon_sym_PIPE_EQ] = ACTIONS(676), - [anon_sym_LT_LT_EQ] = ACTIONS(676), - [anon_sym_GT_GT_EQ] = ACTIONS(676), - [anon_sym_EQ] = ACTIONS(686), - [anon_sym_EQ_EQ] = ACTIONS(676), - [anon_sym_BANG_EQ] = ACTIONS(676), - [anon_sym_GT] = ACTIONS(686), - [anon_sym_LT] = ACTIONS(686), - [anon_sym_GT_EQ] = ACTIONS(676), - [anon_sym_LT_EQ] = ACTIONS(676), - [anon_sym_AT] = ACTIONS(676), - [anon_sym__] = ACTIONS(686), - [anon_sym_DOT] = ACTIONS(686), - [anon_sym_DOT_DOT] = ACTIONS(686), - [anon_sym_DOT_DOT_DOT] = ACTIONS(676), - [anon_sym_DOT_DOT_EQ] = ACTIONS(676), - [anon_sym_COMMA] = ACTIONS(676), - [anon_sym_COLON_COLON] = ACTIONS(676), - [anon_sym_DASH_GT] = ACTIONS(676), - [anon_sym_POUND] = ACTIONS(676), - [anon_sym_SQUOTE] = ACTIONS(674), - [anon_sym_as] = ACTIONS(674), - [anon_sym_async] = ACTIONS(674), - [anon_sym_await] = ACTIONS(674), - [anon_sym_break] = ACTIONS(674), - [anon_sym_const] = ACTIONS(674), - [anon_sym_continue] = ACTIONS(674), - [anon_sym_default] = ACTIONS(674), - [anon_sym_enum] = ACTIONS(674), - [anon_sym_fn] = ACTIONS(674), - [anon_sym_for] = ACTIONS(674), - [anon_sym_gen] = ACTIONS(674), - [anon_sym_if] = ACTIONS(674), - [anon_sym_impl] = ACTIONS(674), - [anon_sym_let] = ACTIONS(674), - [anon_sym_loop] = ACTIONS(674), - [anon_sym_match] = ACTIONS(674), - [anon_sym_mod] = ACTIONS(674), - [anon_sym_pub] = ACTIONS(674), - [anon_sym_return] = ACTIONS(674), - [anon_sym_static] = ACTIONS(674), - [anon_sym_struct] = ACTIONS(674), - [anon_sym_trait] = ACTIONS(674), - [anon_sym_type] = ACTIONS(674), - [anon_sym_union] = ACTIONS(674), - [anon_sym_unsafe] = ACTIONS(674), - [anon_sym_use] = ACTIONS(674), - [anon_sym_where] = ACTIONS(674), - [anon_sym_while] = ACTIONS(674), - [sym_mutable_specifier] = ACTIONS(674), - [sym_integer_literal] = ACTIONS(690), - [aux_sym_string_literal_token1] = ACTIONS(692), - [sym_char_literal] = ACTIONS(690), - [anon_sym_true] = ACTIONS(694), - [anon_sym_false] = ACTIONS(694), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(674), - [sym_super] = ACTIONS(674), - [sym_crate] = ACTIONS(674), - [sym__raw_string_literal_start] = ACTIONS(696), - [sym_float_literal] = ACTIONS(690), + [aux_sym_token_tree_repeat1] = STATE(85), + [aux_sym__non_special_token_repeat1] = STATE(136), + [sym_identifier] = ACTIONS(703), + [anon_sym_SEMI] = ACTIONS(572), + [anon_sym_LPAREN] = ACTIONS(705), + [anon_sym_LBRACK] = ACTIONS(707), + [anon_sym_RBRACK] = ACTIONS(723), + [anon_sym_LBRACE] = ACTIONS(711), + [anon_sym_EQ_GT] = ACTIONS(572), + [anon_sym_COLON] = ACTIONS(582), + [anon_sym_DOLLAR] = ACTIONS(713), + [anon_sym_PLUS] = ACTIONS(582), + [anon_sym_STAR] = ACTIONS(582), + [anon_sym_QMARK] = ACTIONS(572), + [anon_sym_u8] = ACTIONS(703), + [anon_sym_i8] = ACTIONS(703), + [anon_sym_u16] = ACTIONS(703), + [anon_sym_i16] = ACTIONS(703), + [anon_sym_u32] = ACTIONS(703), + [anon_sym_i32] = ACTIONS(703), + [anon_sym_u64] = ACTIONS(703), + [anon_sym_i64] = ACTIONS(703), + [anon_sym_u128] = ACTIONS(703), + [anon_sym_i128] = ACTIONS(703), + [anon_sym_isize] = ACTIONS(703), + [anon_sym_usize] = ACTIONS(703), + [anon_sym_f32] = ACTIONS(703), + [anon_sym_f64] = ACTIONS(703), + [anon_sym_bool] = ACTIONS(703), + [anon_sym_str] = ACTIONS(703), + [anon_sym_char] = ACTIONS(703), + [anon_sym_DASH] = ACTIONS(582), + [anon_sym_SLASH] = ACTIONS(582), + [anon_sym_PERCENT] = ACTIONS(582), + [anon_sym_CARET] = ACTIONS(582), + [anon_sym_BANG] = ACTIONS(582), + [anon_sym_AMP] = ACTIONS(582), + [anon_sym_PIPE] = ACTIONS(582), + [anon_sym_AMP_AMP] = ACTIONS(572), + [anon_sym_PIPE_PIPE] = ACTIONS(572), + [anon_sym_LT_LT] = ACTIONS(582), + [anon_sym_GT_GT] = ACTIONS(582), + [anon_sym_PLUS_EQ] = ACTIONS(572), + [anon_sym_DASH_EQ] = ACTIONS(572), + [anon_sym_STAR_EQ] = ACTIONS(572), + [anon_sym_SLASH_EQ] = ACTIONS(572), + [anon_sym_PERCENT_EQ] = ACTIONS(572), + [anon_sym_CARET_EQ] = ACTIONS(572), + [anon_sym_AMP_EQ] = ACTIONS(572), + [anon_sym_PIPE_EQ] = ACTIONS(572), + [anon_sym_LT_LT_EQ] = ACTIONS(572), + [anon_sym_GT_GT_EQ] = ACTIONS(572), + [anon_sym_EQ] = ACTIONS(582), + [anon_sym_EQ_EQ] = ACTIONS(572), + [anon_sym_BANG_EQ] = ACTIONS(572), + [anon_sym_GT] = ACTIONS(582), + [anon_sym_LT] = ACTIONS(582), + [anon_sym_GT_EQ] = ACTIONS(572), + [anon_sym_LT_EQ] = ACTIONS(572), + [anon_sym_AT] = ACTIONS(572), + [anon_sym__] = ACTIONS(582), + [anon_sym_DOT] = ACTIONS(582), + [anon_sym_DOT_DOT] = ACTIONS(582), + [anon_sym_DOT_DOT_DOT] = ACTIONS(572), + [anon_sym_DOT_DOT_EQ] = ACTIONS(572), + [anon_sym_COMMA] = ACTIONS(572), + [anon_sym_COLON_COLON] = ACTIONS(572), + [anon_sym_DASH_GT] = ACTIONS(572), + [anon_sym_POUND] = ACTIONS(572), + [anon_sym_SQUOTE] = ACTIONS(703), + [anon_sym_as] = ACTIONS(703), + [anon_sym_async] = ACTIONS(703), + [anon_sym_await] = ACTIONS(703), + [anon_sym_break] = ACTIONS(703), + [anon_sym_const] = ACTIONS(703), + [anon_sym_continue] = ACTIONS(703), + [anon_sym_default] = ACTIONS(703), + [anon_sym_enum] = ACTIONS(703), + [anon_sym_fn] = ACTIONS(703), + [anon_sym_for] = ACTIONS(703), + [anon_sym_gen] = ACTIONS(703), + [anon_sym_if] = ACTIONS(703), + [anon_sym_impl] = ACTIONS(703), + [anon_sym_let] = ACTIONS(703), + [anon_sym_loop] = ACTIONS(703), + [anon_sym_match] = ACTIONS(703), + [anon_sym_mod] = ACTIONS(703), + [anon_sym_pub] = ACTIONS(703), + [anon_sym_return] = ACTIONS(703), + [anon_sym_static] = ACTIONS(703), + [anon_sym_struct] = ACTIONS(703), + [anon_sym_trait] = ACTIONS(703), + [anon_sym_type] = ACTIONS(703), + [anon_sym_union] = ACTIONS(703), + [anon_sym_unsafe] = ACTIONS(703), + [anon_sym_use] = ACTIONS(703), + [anon_sym_where] = ACTIONS(703), + [anon_sym_while] = ACTIONS(703), + [sym_mutable_specifier] = ACTIONS(703), + [sym_integer_literal] = ACTIONS(586), + [aux_sym_string_literal_token1] = ACTIONS(588), + [sym_char_literal] = ACTIONS(586), + [anon_sym_true] = ACTIONS(590), + [anon_sym_false] = ACTIONS(590), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(703), + [sym_super] = ACTIONS(703), + [sym_crate] = ACTIONS(703), + [sym_metavariable] = ACTIONS(715), + [sym__raw_string_literal_start] = ACTIONS(594), + [sym_float_literal] = ACTIONS(586), }, [STATE(98)] = { [sym_token_tree] = STATE(170), [sym_token_repetition] = STATE(170), [sym__literal] = STATE(170), - [sym_string_literal] = STATE(175), - [sym_raw_string_literal] = STATE(175), - [sym_boolean_literal] = STATE(175), + [sym_string_literal] = STATE(174), + [sym_raw_string_literal] = STATE(174), + [sym_boolean_literal] = STATE(174), [sym_line_comment] = STATE(98), [sym_block_comment] = STATE(98), - [aux_sym_token_tree_repeat1] = STATE(69), - [aux_sym__non_special_token_repeat1] = STATE(140), - [sym_identifier] = ACTIONS(700), - [anon_sym_SEMI] = ACTIONS(640), - [anon_sym_LPAREN] = ACTIONS(702), - [anon_sym_LBRACK] = ACTIONS(704), - [anon_sym_RBRACK] = ACTIONS(718), - [anon_sym_LBRACE] = ACTIONS(708), - [anon_sym_EQ_GT] = ACTIONS(640), - [anon_sym_COLON] = ACTIONS(650), - [anon_sym_DOLLAR] = ACTIONS(710), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_STAR] = ACTIONS(650), - [anon_sym_QMARK] = ACTIONS(640), - [anon_sym_u8] = ACTIONS(700), - [anon_sym_i8] = ACTIONS(700), - [anon_sym_u16] = ACTIONS(700), - [anon_sym_i16] = ACTIONS(700), - [anon_sym_u32] = ACTIONS(700), - [anon_sym_i32] = ACTIONS(700), - [anon_sym_u64] = ACTIONS(700), - [anon_sym_i64] = ACTIONS(700), - [anon_sym_u128] = ACTIONS(700), - [anon_sym_i128] = ACTIONS(700), - [anon_sym_isize] = ACTIONS(700), - [anon_sym_usize] = ACTIONS(700), - [anon_sym_f32] = ACTIONS(700), - [anon_sym_f64] = ACTIONS(700), - [anon_sym_bool] = ACTIONS(700), - [anon_sym_str] = ACTIONS(700), - [anon_sym_char] = ACTIONS(700), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(650), - [anon_sym_PERCENT] = ACTIONS(650), - [anon_sym_CARET] = ACTIONS(650), - [anon_sym_BANG] = ACTIONS(650), - [anon_sym_AMP] = ACTIONS(650), - [anon_sym_PIPE] = ACTIONS(650), - [anon_sym_AMP_AMP] = ACTIONS(640), - [anon_sym_PIPE_PIPE] = ACTIONS(640), - [anon_sym_LT_LT] = ACTIONS(650), - [anon_sym_GT_GT] = ACTIONS(650), - [anon_sym_PLUS_EQ] = ACTIONS(640), - [anon_sym_DASH_EQ] = ACTIONS(640), - [anon_sym_STAR_EQ] = ACTIONS(640), - [anon_sym_SLASH_EQ] = ACTIONS(640), - [anon_sym_PERCENT_EQ] = ACTIONS(640), - [anon_sym_CARET_EQ] = ACTIONS(640), - [anon_sym_AMP_EQ] = ACTIONS(640), - [anon_sym_PIPE_EQ] = ACTIONS(640), - [anon_sym_LT_LT_EQ] = ACTIONS(640), - [anon_sym_GT_GT_EQ] = ACTIONS(640), - [anon_sym_EQ] = ACTIONS(650), - [anon_sym_EQ_EQ] = ACTIONS(640), - [anon_sym_BANG_EQ] = ACTIONS(640), - [anon_sym_GT] = ACTIONS(650), - [anon_sym_LT] = ACTIONS(650), - [anon_sym_GT_EQ] = ACTIONS(640), - [anon_sym_LT_EQ] = ACTIONS(640), - [anon_sym_AT] = ACTIONS(640), - [anon_sym__] = ACTIONS(650), - [anon_sym_DOT] = ACTIONS(650), - [anon_sym_DOT_DOT] = ACTIONS(650), - [anon_sym_DOT_DOT_DOT] = ACTIONS(640), - [anon_sym_DOT_DOT_EQ] = ACTIONS(640), - [anon_sym_COMMA] = ACTIONS(640), - [anon_sym_COLON_COLON] = ACTIONS(640), - [anon_sym_DASH_GT] = ACTIONS(640), - [anon_sym_POUND] = ACTIONS(640), - [anon_sym_SQUOTE] = ACTIONS(700), - [anon_sym_as] = ACTIONS(700), - [anon_sym_async] = ACTIONS(700), - [anon_sym_await] = ACTIONS(700), - [anon_sym_break] = ACTIONS(700), - [anon_sym_const] = ACTIONS(700), - [anon_sym_continue] = ACTIONS(700), - [anon_sym_default] = ACTIONS(700), - [anon_sym_enum] = ACTIONS(700), - [anon_sym_fn] = ACTIONS(700), - [anon_sym_for] = ACTIONS(700), - [anon_sym_gen] = ACTIONS(700), - [anon_sym_if] = ACTIONS(700), - [anon_sym_impl] = ACTIONS(700), - [anon_sym_let] = ACTIONS(700), - [anon_sym_loop] = ACTIONS(700), - [anon_sym_match] = ACTIONS(700), - [anon_sym_mod] = ACTIONS(700), - [anon_sym_pub] = ACTIONS(700), - [anon_sym_return] = ACTIONS(700), - [anon_sym_static] = ACTIONS(700), - [anon_sym_struct] = ACTIONS(700), - [anon_sym_trait] = ACTIONS(700), - [anon_sym_type] = ACTIONS(700), - [anon_sym_union] = ACTIONS(700), - [anon_sym_unsafe] = ACTIONS(700), - [anon_sym_use] = ACTIONS(700), - [anon_sym_where] = ACTIONS(700), - [anon_sym_while] = ACTIONS(700), - [sym_mutable_specifier] = ACTIONS(700), - [sym_integer_literal] = ACTIONS(654), - [aux_sym_string_literal_token1] = ACTIONS(656), - [sym_char_literal] = ACTIONS(654), - [anon_sym_true] = ACTIONS(658), - [anon_sym_false] = ACTIONS(658), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(700), - [sym_super] = ACTIONS(700), - [sym_crate] = ACTIONS(700), - [sym_metavariable] = ACTIONS(712), - [sym__raw_string_literal_start] = ACTIONS(662), - [sym_float_literal] = ACTIONS(654), + [aux_sym_token_tree_repeat1] = STATE(101), + [aux_sym__non_special_token_repeat1] = STATE(136), + [sym_identifier] = ACTIONS(703), + [anon_sym_SEMI] = ACTIONS(572), + [anon_sym_LPAREN] = ACTIONS(705), + [anon_sym_RPAREN] = ACTIONS(725), + [anon_sym_LBRACK] = ACTIONS(707), + [anon_sym_LBRACE] = ACTIONS(711), + [anon_sym_EQ_GT] = ACTIONS(572), + [anon_sym_COLON] = ACTIONS(582), + [anon_sym_DOLLAR] = ACTIONS(713), + [anon_sym_PLUS] = ACTIONS(582), + [anon_sym_STAR] = ACTIONS(582), + [anon_sym_QMARK] = ACTIONS(572), + [anon_sym_u8] = ACTIONS(703), + [anon_sym_i8] = ACTIONS(703), + [anon_sym_u16] = ACTIONS(703), + [anon_sym_i16] = ACTIONS(703), + [anon_sym_u32] = ACTIONS(703), + [anon_sym_i32] = ACTIONS(703), + [anon_sym_u64] = ACTIONS(703), + [anon_sym_i64] = ACTIONS(703), + [anon_sym_u128] = ACTIONS(703), + [anon_sym_i128] = ACTIONS(703), + [anon_sym_isize] = ACTIONS(703), + [anon_sym_usize] = ACTIONS(703), + [anon_sym_f32] = ACTIONS(703), + [anon_sym_f64] = ACTIONS(703), + [anon_sym_bool] = ACTIONS(703), + [anon_sym_str] = ACTIONS(703), + [anon_sym_char] = ACTIONS(703), + [anon_sym_DASH] = ACTIONS(582), + [anon_sym_SLASH] = ACTIONS(582), + [anon_sym_PERCENT] = ACTIONS(582), + [anon_sym_CARET] = ACTIONS(582), + [anon_sym_BANG] = ACTIONS(582), + [anon_sym_AMP] = ACTIONS(582), + [anon_sym_PIPE] = ACTIONS(582), + [anon_sym_AMP_AMP] = ACTIONS(572), + [anon_sym_PIPE_PIPE] = ACTIONS(572), + [anon_sym_LT_LT] = ACTIONS(582), + [anon_sym_GT_GT] = ACTIONS(582), + [anon_sym_PLUS_EQ] = ACTIONS(572), + [anon_sym_DASH_EQ] = ACTIONS(572), + [anon_sym_STAR_EQ] = ACTIONS(572), + [anon_sym_SLASH_EQ] = ACTIONS(572), + [anon_sym_PERCENT_EQ] = ACTIONS(572), + [anon_sym_CARET_EQ] = ACTIONS(572), + [anon_sym_AMP_EQ] = ACTIONS(572), + [anon_sym_PIPE_EQ] = ACTIONS(572), + [anon_sym_LT_LT_EQ] = ACTIONS(572), + [anon_sym_GT_GT_EQ] = ACTIONS(572), + [anon_sym_EQ] = ACTIONS(582), + [anon_sym_EQ_EQ] = ACTIONS(572), + [anon_sym_BANG_EQ] = ACTIONS(572), + [anon_sym_GT] = ACTIONS(582), + [anon_sym_LT] = ACTIONS(582), + [anon_sym_GT_EQ] = ACTIONS(572), + [anon_sym_LT_EQ] = ACTIONS(572), + [anon_sym_AT] = ACTIONS(572), + [anon_sym__] = ACTIONS(582), + [anon_sym_DOT] = ACTIONS(582), + [anon_sym_DOT_DOT] = ACTIONS(582), + [anon_sym_DOT_DOT_DOT] = ACTIONS(572), + [anon_sym_DOT_DOT_EQ] = ACTIONS(572), + [anon_sym_COMMA] = ACTIONS(572), + [anon_sym_COLON_COLON] = ACTIONS(572), + [anon_sym_DASH_GT] = ACTIONS(572), + [anon_sym_POUND] = ACTIONS(572), + [anon_sym_SQUOTE] = ACTIONS(703), + [anon_sym_as] = ACTIONS(703), + [anon_sym_async] = ACTIONS(703), + [anon_sym_await] = ACTIONS(703), + [anon_sym_break] = ACTIONS(703), + [anon_sym_const] = ACTIONS(703), + [anon_sym_continue] = ACTIONS(703), + [anon_sym_default] = ACTIONS(703), + [anon_sym_enum] = ACTIONS(703), + [anon_sym_fn] = ACTIONS(703), + [anon_sym_for] = ACTIONS(703), + [anon_sym_gen] = ACTIONS(703), + [anon_sym_if] = ACTIONS(703), + [anon_sym_impl] = ACTIONS(703), + [anon_sym_let] = ACTIONS(703), + [anon_sym_loop] = ACTIONS(703), + [anon_sym_match] = ACTIONS(703), + [anon_sym_mod] = ACTIONS(703), + [anon_sym_pub] = ACTIONS(703), + [anon_sym_return] = ACTIONS(703), + [anon_sym_static] = ACTIONS(703), + [anon_sym_struct] = ACTIONS(703), + [anon_sym_trait] = ACTIONS(703), + [anon_sym_type] = ACTIONS(703), + [anon_sym_union] = ACTIONS(703), + [anon_sym_unsafe] = ACTIONS(703), + [anon_sym_use] = ACTIONS(703), + [anon_sym_where] = ACTIONS(703), + [anon_sym_while] = ACTIONS(703), + [sym_mutable_specifier] = ACTIONS(703), + [sym_integer_literal] = ACTIONS(586), + [aux_sym_string_literal_token1] = ACTIONS(588), + [sym_char_literal] = ACTIONS(586), + [anon_sym_true] = ACTIONS(590), + [anon_sym_false] = ACTIONS(590), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(703), + [sym_super] = ACTIONS(703), + [sym_crate] = ACTIONS(703), + [sym_metavariable] = ACTIONS(715), + [sym__raw_string_literal_start] = ACTIONS(594), + [sym_float_literal] = ACTIONS(586), }, [STATE(99)] = { [sym_token_tree] = STATE(170), [sym_token_repetition] = STATE(170), [sym__literal] = STATE(170), - [sym_string_literal] = STATE(175), - [sym_raw_string_literal] = STATE(175), - [sym_boolean_literal] = STATE(175), + [sym_string_literal] = STATE(174), + [sym_raw_string_literal] = STATE(174), + [sym_boolean_literal] = STATE(174), [sym_line_comment] = STATE(99), [sym_block_comment] = STATE(99), - [aux_sym_token_tree_repeat1] = STATE(69), - [aux_sym__non_special_token_repeat1] = STATE(140), - [sym_identifier] = ACTIONS(700), - [anon_sym_SEMI] = ACTIONS(640), - [anon_sym_LPAREN] = ACTIONS(702), - [anon_sym_LBRACK] = ACTIONS(704), - [anon_sym_LBRACE] = ACTIONS(708), - [anon_sym_RBRACE] = ACTIONS(718), - [anon_sym_EQ_GT] = ACTIONS(640), - [anon_sym_COLON] = ACTIONS(650), - [anon_sym_DOLLAR] = ACTIONS(710), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_STAR] = ACTIONS(650), - [anon_sym_QMARK] = ACTIONS(640), - [anon_sym_u8] = ACTIONS(700), - [anon_sym_i8] = ACTIONS(700), - [anon_sym_u16] = ACTIONS(700), - [anon_sym_i16] = ACTIONS(700), - [anon_sym_u32] = ACTIONS(700), - [anon_sym_i32] = ACTIONS(700), - [anon_sym_u64] = ACTIONS(700), - [anon_sym_i64] = ACTIONS(700), - [anon_sym_u128] = ACTIONS(700), - [anon_sym_i128] = ACTIONS(700), - [anon_sym_isize] = ACTIONS(700), - [anon_sym_usize] = ACTIONS(700), - [anon_sym_f32] = ACTIONS(700), - [anon_sym_f64] = ACTIONS(700), - [anon_sym_bool] = ACTIONS(700), - [anon_sym_str] = ACTIONS(700), - [anon_sym_char] = ACTIONS(700), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(650), - [anon_sym_PERCENT] = ACTIONS(650), - [anon_sym_CARET] = ACTIONS(650), - [anon_sym_BANG] = ACTIONS(650), - [anon_sym_AMP] = ACTIONS(650), - [anon_sym_PIPE] = ACTIONS(650), - [anon_sym_AMP_AMP] = ACTIONS(640), - [anon_sym_PIPE_PIPE] = ACTIONS(640), - [anon_sym_LT_LT] = ACTIONS(650), - [anon_sym_GT_GT] = ACTIONS(650), - [anon_sym_PLUS_EQ] = ACTIONS(640), - [anon_sym_DASH_EQ] = ACTIONS(640), - [anon_sym_STAR_EQ] = ACTIONS(640), - [anon_sym_SLASH_EQ] = ACTIONS(640), - [anon_sym_PERCENT_EQ] = ACTIONS(640), - [anon_sym_CARET_EQ] = ACTIONS(640), - [anon_sym_AMP_EQ] = ACTIONS(640), - [anon_sym_PIPE_EQ] = ACTIONS(640), - [anon_sym_LT_LT_EQ] = ACTIONS(640), - [anon_sym_GT_GT_EQ] = ACTIONS(640), - [anon_sym_EQ] = ACTIONS(650), - [anon_sym_EQ_EQ] = ACTIONS(640), - [anon_sym_BANG_EQ] = ACTIONS(640), - [anon_sym_GT] = ACTIONS(650), - [anon_sym_LT] = ACTIONS(650), - [anon_sym_GT_EQ] = ACTIONS(640), - [anon_sym_LT_EQ] = ACTIONS(640), - [anon_sym_AT] = ACTIONS(640), - [anon_sym__] = ACTIONS(650), - [anon_sym_DOT] = ACTIONS(650), - [anon_sym_DOT_DOT] = ACTIONS(650), - [anon_sym_DOT_DOT_DOT] = ACTIONS(640), - [anon_sym_DOT_DOT_EQ] = ACTIONS(640), - [anon_sym_COMMA] = ACTIONS(640), - [anon_sym_COLON_COLON] = ACTIONS(640), - [anon_sym_DASH_GT] = ACTIONS(640), - [anon_sym_POUND] = ACTIONS(640), - [anon_sym_SQUOTE] = ACTIONS(700), - [anon_sym_as] = ACTIONS(700), - [anon_sym_async] = ACTIONS(700), - [anon_sym_await] = ACTIONS(700), - [anon_sym_break] = ACTIONS(700), - [anon_sym_const] = ACTIONS(700), - [anon_sym_continue] = ACTIONS(700), - [anon_sym_default] = ACTIONS(700), - [anon_sym_enum] = ACTIONS(700), - [anon_sym_fn] = ACTIONS(700), - [anon_sym_for] = ACTIONS(700), - [anon_sym_gen] = ACTIONS(700), - [anon_sym_if] = ACTIONS(700), - [anon_sym_impl] = ACTIONS(700), - [anon_sym_let] = ACTIONS(700), - [anon_sym_loop] = ACTIONS(700), - [anon_sym_match] = ACTIONS(700), - [anon_sym_mod] = ACTIONS(700), - [anon_sym_pub] = ACTIONS(700), - [anon_sym_return] = ACTIONS(700), - [anon_sym_static] = ACTIONS(700), - [anon_sym_struct] = ACTIONS(700), - [anon_sym_trait] = ACTIONS(700), - [anon_sym_type] = ACTIONS(700), - [anon_sym_union] = ACTIONS(700), - [anon_sym_unsafe] = ACTIONS(700), - [anon_sym_use] = ACTIONS(700), - [anon_sym_where] = ACTIONS(700), - [anon_sym_while] = ACTIONS(700), - [sym_mutable_specifier] = ACTIONS(700), - [sym_integer_literal] = ACTIONS(654), - [aux_sym_string_literal_token1] = ACTIONS(656), - [sym_char_literal] = ACTIONS(654), - [anon_sym_true] = ACTIONS(658), - [anon_sym_false] = ACTIONS(658), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(700), - [sym_super] = ACTIONS(700), - [sym_crate] = ACTIONS(700), - [sym_metavariable] = ACTIONS(712), - [sym__raw_string_literal_start] = ACTIONS(662), - [sym_float_literal] = ACTIONS(654), + [aux_sym_token_tree_repeat1] = STATE(102), + [aux_sym__non_special_token_repeat1] = STATE(136), + [sym_identifier] = ACTIONS(703), + [anon_sym_SEMI] = ACTIONS(572), + [anon_sym_LPAREN] = ACTIONS(705), + [anon_sym_LBRACK] = ACTIONS(707), + [anon_sym_RBRACK] = ACTIONS(725), + [anon_sym_LBRACE] = ACTIONS(711), + [anon_sym_EQ_GT] = ACTIONS(572), + [anon_sym_COLON] = ACTIONS(582), + [anon_sym_DOLLAR] = ACTIONS(713), + [anon_sym_PLUS] = ACTIONS(582), + [anon_sym_STAR] = ACTIONS(582), + [anon_sym_QMARK] = ACTIONS(572), + [anon_sym_u8] = ACTIONS(703), + [anon_sym_i8] = ACTIONS(703), + [anon_sym_u16] = ACTIONS(703), + [anon_sym_i16] = ACTIONS(703), + [anon_sym_u32] = ACTIONS(703), + [anon_sym_i32] = ACTIONS(703), + [anon_sym_u64] = ACTIONS(703), + [anon_sym_i64] = ACTIONS(703), + [anon_sym_u128] = ACTIONS(703), + [anon_sym_i128] = ACTIONS(703), + [anon_sym_isize] = ACTIONS(703), + [anon_sym_usize] = ACTIONS(703), + [anon_sym_f32] = ACTIONS(703), + [anon_sym_f64] = ACTIONS(703), + [anon_sym_bool] = ACTIONS(703), + [anon_sym_str] = ACTIONS(703), + [anon_sym_char] = ACTIONS(703), + [anon_sym_DASH] = ACTIONS(582), + [anon_sym_SLASH] = ACTIONS(582), + [anon_sym_PERCENT] = ACTIONS(582), + [anon_sym_CARET] = ACTIONS(582), + [anon_sym_BANG] = ACTIONS(582), + [anon_sym_AMP] = ACTIONS(582), + [anon_sym_PIPE] = ACTIONS(582), + [anon_sym_AMP_AMP] = ACTIONS(572), + [anon_sym_PIPE_PIPE] = ACTIONS(572), + [anon_sym_LT_LT] = ACTIONS(582), + [anon_sym_GT_GT] = ACTIONS(582), + [anon_sym_PLUS_EQ] = ACTIONS(572), + [anon_sym_DASH_EQ] = ACTIONS(572), + [anon_sym_STAR_EQ] = ACTIONS(572), + [anon_sym_SLASH_EQ] = ACTIONS(572), + [anon_sym_PERCENT_EQ] = ACTIONS(572), + [anon_sym_CARET_EQ] = ACTIONS(572), + [anon_sym_AMP_EQ] = ACTIONS(572), + [anon_sym_PIPE_EQ] = ACTIONS(572), + [anon_sym_LT_LT_EQ] = ACTIONS(572), + [anon_sym_GT_GT_EQ] = ACTIONS(572), + [anon_sym_EQ] = ACTIONS(582), + [anon_sym_EQ_EQ] = ACTIONS(572), + [anon_sym_BANG_EQ] = ACTIONS(572), + [anon_sym_GT] = ACTIONS(582), + [anon_sym_LT] = ACTIONS(582), + [anon_sym_GT_EQ] = ACTIONS(572), + [anon_sym_LT_EQ] = ACTIONS(572), + [anon_sym_AT] = ACTIONS(572), + [anon_sym__] = ACTIONS(582), + [anon_sym_DOT] = ACTIONS(582), + [anon_sym_DOT_DOT] = ACTIONS(582), + [anon_sym_DOT_DOT_DOT] = ACTIONS(572), + [anon_sym_DOT_DOT_EQ] = ACTIONS(572), + [anon_sym_COMMA] = ACTIONS(572), + [anon_sym_COLON_COLON] = ACTIONS(572), + [anon_sym_DASH_GT] = ACTIONS(572), + [anon_sym_POUND] = ACTIONS(572), + [anon_sym_SQUOTE] = ACTIONS(703), + [anon_sym_as] = ACTIONS(703), + [anon_sym_async] = ACTIONS(703), + [anon_sym_await] = ACTIONS(703), + [anon_sym_break] = ACTIONS(703), + [anon_sym_const] = ACTIONS(703), + [anon_sym_continue] = ACTIONS(703), + [anon_sym_default] = ACTIONS(703), + [anon_sym_enum] = ACTIONS(703), + [anon_sym_fn] = ACTIONS(703), + [anon_sym_for] = ACTIONS(703), + [anon_sym_gen] = ACTIONS(703), + [anon_sym_if] = ACTIONS(703), + [anon_sym_impl] = ACTIONS(703), + [anon_sym_let] = ACTIONS(703), + [anon_sym_loop] = ACTIONS(703), + [anon_sym_match] = ACTIONS(703), + [anon_sym_mod] = ACTIONS(703), + [anon_sym_pub] = ACTIONS(703), + [anon_sym_return] = ACTIONS(703), + [anon_sym_static] = ACTIONS(703), + [anon_sym_struct] = ACTIONS(703), + [anon_sym_trait] = ACTIONS(703), + [anon_sym_type] = ACTIONS(703), + [anon_sym_union] = ACTIONS(703), + [anon_sym_unsafe] = ACTIONS(703), + [anon_sym_use] = ACTIONS(703), + [anon_sym_where] = ACTIONS(703), + [anon_sym_while] = ACTIONS(703), + [sym_mutable_specifier] = ACTIONS(703), + [sym_integer_literal] = ACTIONS(586), + [aux_sym_string_literal_token1] = ACTIONS(588), + [sym_char_literal] = ACTIONS(586), + [anon_sym_true] = ACTIONS(590), + [anon_sym_false] = ACTIONS(590), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(703), + [sym_super] = ACTIONS(703), + [sym_crate] = ACTIONS(703), + [sym_metavariable] = ACTIONS(715), + [sym__raw_string_literal_start] = ACTIONS(594), + [sym_float_literal] = ACTIONS(586), }, [STATE(100)] = { [sym_token_tree] = STATE(170), [sym_token_repetition] = STATE(170), [sym__literal] = STATE(170), - [sym_string_literal] = STATE(175), - [sym_raw_string_literal] = STATE(175), - [sym_boolean_literal] = STATE(175), + [sym_string_literal] = STATE(174), + [sym_raw_string_literal] = STATE(174), + [sym_boolean_literal] = STATE(174), [sym_line_comment] = STATE(100), [sym_block_comment] = STATE(100), [aux_sym_token_tree_repeat1] = STATE(103), - [aux_sym__non_special_token_repeat1] = STATE(140), - [sym_identifier] = ACTIONS(700), - [anon_sym_SEMI] = ACTIONS(640), - [anon_sym_LPAREN] = ACTIONS(702), - [anon_sym_RPAREN] = ACTIONS(722), - [anon_sym_LBRACK] = ACTIONS(704), - [anon_sym_LBRACE] = ACTIONS(708), - [anon_sym_EQ_GT] = ACTIONS(640), - [anon_sym_COLON] = ACTIONS(650), - [anon_sym_DOLLAR] = ACTIONS(710), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_STAR] = ACTIONS(650), - [anon_sym_QMARK] = ACTIONS(640), - [anon_sym_u8] = ACTIONS(700), - [anon_sym_i8] = ACTIONS(700), - [anon_sym_u16] = ACTIONS(700), - [anon_sym_i16] = ACTIONS(700), - [anon_sym_u32] = ACTIONS(700), - [anon_sym_i32] = ACTIONS(700), - [anon_sym_u64] = ACTIONS(700), - [anon_sym_i64] = ACTIONS(700), - [anon_sym_u128] = ACTIONS(700), - [anon_sym_i128] = ACTIONS(700), - [anon_sym_isize] = ACTIONS(700), - [anon_sym_usize] = ACTIONS(700), - [anon_sym_f32] = ACTIONS(700), - [anon_sym_f64] = ACTIONS(700), - [anon_sym_bool] = ACTIONS(700), - [anon_sym_str] = ACTIONS(700), - [anon_sym_char] = ACTIONS(700), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(650), - [anon_sym_PERCENT] = ACTIONS(650), - [anon_sym_CARET] = ACTIONS(650), - [anon_sym_BANG] = ACTIONS(650), - [anon_sym_AMP] = ACTIONS(650), - [anon_sym_PIPE] = ACTIONS(650), - [anon_sym_AMP_AMP] = ACTIONS(640), - [anon_sym_PIPE_PIPE] = ACTIONS(640), - [anon_sym_LT_LT] = ACTIONS(650), - [anon_sym_GT_GT] = ACTIONS(650), - [anon_sym_PLUS_EQ] = ACTIONS(640), - [anon_sym_DASH_EQ] = ACTIONS(640), - [anon_sym_STAR_EQ] = ACTIONS(640), - [anon_sym_SLASH_EQ] = ACTIONS(640), - [anon_sym_PERCENT_EQ] = ACTIONS(640), - [anon_sym_CARET_EQ] = ACTIONS(640), - [anon_sym_AMP_EQ] = ACTIONS(640), - [anon_sym_PIPE_EQ] = ACTIONS(640), - [anon_sym_LT_LT_EQ] = ACTIONS(640), - [anon_sym_GT_GT_EQ] = ACTIONS(640), - [anon_sym_EQ] = ACTIONS(650), - [anon_sym_EQ_EQ] = ACTIONS(640), - [anon_sym_BANG_EQ] = ACTIONS(640), - [anon_sym_GT] = ACTIONS(650), - [anon_sym_LT] = ACTIONS(650), - [anon_sym_GT_EQ] = ACTIONS(640), - [anon_sym_LT_EQ] = ACTIONS(640), - [anon_sym_AT] = ACTIONS(640), - [anon_sym__] = ACTIONS(650), - [anon_sym_DOT] = ACTIONS(650), - [anon_sym_DOT_DOT] = ACTIONS(650), - [anon_sym_DOT_DOT_DOT] = ACTIONS(640), - [anon_sym_DOT_DOT_EQ] = ACTIONS(640), - [anon_sym_COMMA] = ACTIONS(640), - [anon_sym_COLON_COLON] = ACTIONS(640), - [anon_sym_DASH_GT] = ACTIONS(640), - [anon_sym_POUND] = ACTIONS(640), - [anon_sym_SQUOTE] = ACTIONS(700), - [anon_sym_as] = ACTIONS(700), - [anon_sym_async] = ACTIONS(700), - [anon_sym_await] = ACTIONS(700), - [anon_sym_break] = ACTIONS(700), - [anon_sym_const] = ACTIONS(700), - [anon_sym_continue] = ACTIONS(700), - [anon_sym_default] = ACTIONS(700), - [anon_sym_enum] = ACTIONS(700), - [anon_sym_fn] = ACTIONS(700), - [anon_sym_for] = ACTIONS(700), - [anon_sym_gen] = ACTIONS(700), - [anon_sym_if] = ACTIONS(700), - [anon_sym_impl] = ACTIONS(700), - [anon_sym_let] = ACTIONS(700), - [anon_sym_loop] = ACTIONS(700), - [anon_sym_match] = ACTIONS(700), - [anon_sym_mod] = ACTIONS(700), - [anon_sym_pub] = ACTIONS(700), - [anon_sym_return] = ACTIONS(700), - [anon_sym_static] = ACTIONS(700), - [anon_sym_struct] = ACTIONS(700), - [anon_sym_trait] = ACTIONS(700), - [anon_sym_type] = ACTIONS(700), - [anon_sym_union] = ACTIONS(700), - [anon_sym_unsafe] = ACTIONS(700), - [anon_sym_use] = ACTIONS(700), - [anon_sym_where] = ACTIONS(700), - [anon_sym_while] = ACTIONS(700), - [sym_mutable_specifier] = ACTIONS(700), - [sym_integer_literal] = ACTIONS(654), - [aux_sym_string_literal_token1] = ACTIONS(656), - [sym_char_literal] = ACTIONS(654), - [anon_sym_true] = ACTIONS(658), - [anon_sym_false] = ACTIONS(658), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(700), - [sym_super] = ACTIONS(700), - [sym_crate] = ACTIONS(700), - [sym_metavariable] = ACTIONS(712), - [sym__raw_string_literal_start] = ACTIONS(662), - [sym_float_literal] = ACTIONS(654), + [aux_sym__non_special_token_repeat1] = STATE(136), + [sym_identifier] = ACTIONS(703), + [anon_sym_SEMI] = ACTIONS(572), + [anon_sym_LPAREN] = ACTIONS(705), + [anon_sym_LBRACK] = ACTIONS(707), + [anon_sym_LBRACE] = ACTIONS(711), + [anon_sym_RBRACE] = ACTIONS(725), + [anon_sym_EQ_GT] = ACTIONS(572), + [anon_sym_COLON] = ACTIONS(582), + [anon_sym_DOLLAR] = ACTIONS(713), + [anon_sym_PLUS] = ACTIONS(582), + [anon_sym_STAR] = ACTIONS(582), + [anon_sym_QMARK] = ACTIONS(572), + [anon_sym_u8] = ACTIONS(703), + [anon_sym_i8] = ACTIONS(703), + [anon_sym_u16] = ACTIONS(703), + [anon_sym_i16] = ACTIONS(703), + [anon_sym_u32] = ACTIONS(703), + [anon_sym_i32] = ACTIONS(703), + [anon_sym_u64] = ACTIONS(703), + [anon_sym_i64] = ACTIONS(703), + [anon_sym_u128] = ACTIONS(703), + [anon_sym_i128] = ACTIONS(703), + [anon_sym_isize] = ACTIONS(703), + [anon_sym_usize] = ACTIONS(703), + [anon_sym_f32] = ACTIONS(703), + [anon_sym_f64] = ACTIONS(703), + [anon_sym_bool] = ACTIONS(703), + [anon_sym_str] = ACTIONS(703), + [anon_sym_char] = ACTIONS(703), + [anon_sym_DASH] = ACTIONS(582), + [anon_sym_SLASH] = ACTIONS(582), + [anon_sym_PERCENT] = ACTIONS(582), + [anon_sym_CARET] = ACTIONS(582), + [anon_sym_BANG] = ACTIONS(582), + [anon_sym_AMP] = ACTIONS(582), + [anon_sym_PIPE] = ACTIONS(582), + [anon_sym_AMP_AMP] = ACTIONS(572), + [anon_sym_PIPE_PIPE] = ACTIONS(572), + [anon_sym_LT_LT] = ACTIONS(582), + [anon_sym_GT_GT] = ACTIONS(582), + [anon_sym_PLUS_EQ] = ACTIONS(572), + [anon_sym_DASH_EQ] = ACTIONS(572), + [anon_sym_STAR_EQ] = ACTIONS(572), + [anon_sym_SLASH_EQ] = ACTIONS(572), + [anon_sym_PERCENT_EQ] = ACTIONS(572), + [anon_sym_CARET_EQ] = ACTIONS(572), + [anon_sym_AMP_EQ] = ACTIONS(572), + [anon_sym_PIPE_EQ] = ACTIONS(572), + [anon_sym_LT_LT_EQ] = ACTIONS(572), + [anon_sym_GT_GT_EQ] = ACTIONS(572), + [anon_sym_EQ] = ACTIONS(582), + [anon_sym_EQ_EQ] = ACTIONS(572), + [anon_sym_BANG_EQ] = ACTIONS(572), + [anon_sym_GT] = ACTIONS(582), + [anon_sym_LT] = ACTIONS(582), + [anon_sym_GT_EQ] = ACTIONS(572), + [anon_sym_LT_EQ] = ACTIONS(572), + [anon_sym_AT] = ACTIONS(572), + [anon_sym__] = ACTIONS(582), + [anon_sym_DOT] = ACTIONS(582), + [anon_sym_DOT_DOT] = ACTIONS(582), + [anon_sym_DOT_DOT_DOT] = ACTIONS(572), + [anon_sym_DOT_DOT_EQ] = ACTIONS(572), + [anon_sym_COMMA] = ACTIONS(572), + [anon_sym_COLON_COLON] = ACTIONS(572), + [anon_sym_DASH_GT] = ACTIONS(572), + [anon_sym_POUND] = ACTIONS(572), + [anon_sym_SQUOTE] = ACTIONS(703), + [anon_sym_as] = ACTIONS(703), + [anon_sym_async] = ACTIONS(703), + [anon_sym_await] = ACTIONS(703), + [anon_sym_break] = ACTIONS(703), + [anon_sym_const] = ACTIONS(703), + [anon_sym_continue] = ACTIONS(703), + [anon_sym_default] = ACTIONS(703), + [anon_sym_enum] = ACTIONS(703), + [anon_sym_fn] = ACTIONS(703), + [anon_sym_for] = ACTIONS(703), + [anon_sym_gen] = ACTIONS(703), + [anon_sym_if] = ACTIONS(703), + [anon_sym_impl] = ACTIONS(703), + [anon_sym_let] = ACTIONS(703), + [anon_sym_loop] = ACTIONS(703), + [anon_sym_match] = ACTIONS(703), + [anon_sym_mod] = ACTIONS(703), + [anon_sym_pub] = ACTIONS(703), + [anon_sym_return] = ACTIONS(703), + [anon_sym_static] = ACTIONS(703), + [anon_sym_struct] = ACTIONS(703), + [anon_sym_trait] = ACTIONS(703), + [anon_sym_type] = ACTIONS(703), + [anon_sym_union] = ACTIONS(703), + [anon_sym_unsafe] = ACTIONS(703), + [anon_sym_use] = ACTIONS(703), + [anon_sym_where] = ACTIONS(703), + [anon_sym_while] = ACTIONS(703), + [sym_mutable_specifier] = ACTIONS(703), + [sym_integer_literal] = ACTIONS(586), + [aux_sym_string_literal_token1] = ACTIONS(588), + [sym_char_literal] = ACTIONS(586), + [anon_sym_true] = ACTIONS(590), + [anon_sym_false] = ACTIONS(590), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(703), + [sym_super] = ACTIONS(703), + [sym_crate] = ACTIONS(703), + [sym_metavariable] = ACTIONS(715), + [sym__raw_string_literal_start] = ACTIONS(594), + [sym_float_literal] = ACTIONS(586), }, [STATE(101)] = { [sym_token_tree] = STATE(170), [sym_token_repetition] = STATE(170), [sym__literal] = STATE(170), - [sym_string_literal] = STATE(175), - [sym_raw_string_literal] = STATE(175), - [sym_boolean_literal] = STATE(175), + [sym_string_literal] = STATE(174), + [sym_raw_string_literal] = STATE(174), + [sym_boolean_literal] = STATE(174), [sym_line_comment] = STATE(101), [sym_block_comment] = STATE(101), - [aux_sym_token_tree_repeat1] = STATE(104), - [aux_sym__non_special_token_repeat1] = STATE(140), - [sym_identifier] = ACTIONS(700), - [anon_sym_SEMI] = ACTIONS(640), - [anon_sym_LPAREN] = ACTIONS(702), - [anon_sym_LBRACK] = ACTIONS(704), - [anon_sym_RBRACK] = ACTIONS(722), - [anon_sym_LBRACE] = ACTIONS(708), - [anon_sym_EQ_GT] = ACTIONS(640), - [anon_sym_COLON] = ACTIONS(650), - [anon_sym_DOLLAR] = ACTIONS(710), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_STAR] = ACTIONS(650), - [anon_sym_QMARK] = ACTIONS(640), - [anon_sym_u8] = ACTIONS(700), - [anon_sym_i8] = ACTIONS(700), - [anon_sym_u16] = ACTIONS(700), - [anon_sym_i16] = ACTIONS(700), - [anon_sym_u32] = ACTIONS(700), - [anon_sym_i32] = ACTIONS(700), - [anon_sym_u64] = ACTIONS(700), - [anon_sym_i64] = ACTIONS(700), - [anon_sym_u128] = ACTIONS(700), - [anon_sym_i128] = ACTIONS(700), - [anon_sym_isize] = ACTIONS(700), - [anon_sym_usize] = ACTIONS(700), - [anon_sym_f32] = ACTIONS(700), - [anon_sym_f64] = ACTIONS(700), - [anon_sym_bool] = ACTIONS(700), - [anon_sym_str] = ACTIONS(700), - [anon_sym_char] = ACTIONS(700), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(650), - [anon_sym_PERCENT] = ACTIONS(650), - [anon_sym_CARET] = ACTIONS(650), - [anon_sym_BANG] = ACTIONS(650), - [anon_sym_AMP] = ACTIONS(650), - [anon_sym_PIPE] = ACTIONS(650), - [anon_sym_AMP_AMP] = ACTIONS(640), - [anon_sym_PIPE_PIPE] = ACTIONS(640), - [anon_sym_LT_LT] = ACTIONS(650), - [anon_sym_GT_GT] = ACTIONS(650), - [anon_sym_PLUS_EQ] = ACTIONS(640), - [anon_sym_DASH_EQ] = ACTIONS(640), - [anon_sym_STAR_EQ] = ACTIONS(640), - [anon_sym_SLASH_EQ] = ACTIONS(640), - [anon_sym_PERCENT_EQ] = ACTIONS(640), - [anon_sym_CARET_EQ] = ACTIONS(640), - [anon_sym_AMP_EQ] = ACTIONS(640), - [anon_sym_PIPE_EQ] = ACTIONS(640), - [anon_sym_LT_LT_EQ] = ACTIONS(640), - [anon_sym_GT_GT_EQ] = ACTIONS(640), - [anon_sym_EQ] = ACTIONS(650), - [anon_sym_EQ_EQ] = ACTIONS(640), - [anon_sym_BANG_EQ] = ACTIONS(640), - [anon_sym_GT] = ACTIONS(650), - [anon_sym_LT] = ACTIONS(650), - [anon_sym_GT_EQ] = ACTIONS(640), - [anon_sym_LT_EQ] = ACTIONS(640), - [anon_sym_AT] = ACTIONS(640), - [anon_sym__] = ACTIONS(650), - [anon_sym_DOT] = ACTIONS(650), - [anon_sym_DOT_DOT] = ACTIONS(650), - [anon_sym_DOT_DOT_DOT] = ACTIONS(640), - [anon_sym_DOT_DOT_EQ] = ACTIONS(640), - [anon_sym_COMMA] = ACTIONS(640), - [anon_sym_COLON_COLON] = ACTIONS(640), - [anon_sym_DASH_GT] = ACTIONS(640), - [anon_sym_POUND] = ACTIONS(640), - [anon_sym_SQUOTE] = ACTIONS(700), - [anon_sym_as] = ACTIONS(700), - [anon_sym_async] = ACTIONS(700), - [anon_sym_await] = ACTIONS(700), - [anon_sym_break] = ACTIONS(700), - [anon_sym_const] = ACTIONS(700), - [anon_sym_continue] = ACTIONS(700), - [anon_sym_default] = ACTIONS(700), - [anon_sym_enum] = ACTIONS(700), - [anon_sym_fn] = ACTIONS(700), - [anon_sym_for] = ACTIONS(700), - [anon_sym_gen] = ACTIONS(700), - [anon_sym_if] = ACTIONS(700), - [anon_sym_impl] = ACTIONS(700), - [anon_sym_let] = ACTIONS(700), - [anon_sym_loop] = ACTIONS(700), - [anon_sym_match] = ACTIONS(700), - [anon_sym_mod] = ACTIONS(700), - [anon_sym_pub] = ACTIONS(700), - [anon_sym_return] = ACTIONS(700), - [anon_sym_static] = ACTIONS(700), - [anon_sym_struct] = ACTIONS(700), - [anon_sym_trait] = ACTIONS(700), - [anon_sym_type] = ACTIONS(700), - [anon_sym_union] = ACTIONS(700), - [anon_sym_unsafe] = ACTIONS(700), - [anon_sym_use] = ACTIONS(700), - [anon_sym_where] = ACTIONS(700), - [anon_sym_while] = ACTIONS(700), - [sym_mutable_specifier] = ACTIONS(700), - [sym_integer_literal] = ACTIONS(654), - [aux_sym_string_literal_token1] = ACTIONS(656), - [sym_char_literal] = ACTIONS(654), - [anon_sym_true] = ACTIONS(658), - [anon_sym_false] = ACTIONS(658), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(700), - [sym_super] = ACTIONS(700), - [sym_crate] = ACTIONS(700), - [sym_metavariable] = ACTIONS(712), - [sym__raw_string_literal_start] = ACTIONS(662), - [sym_float_literal] = ACTIONS(654), + [aux_sym_token_tree_repeat1] = STATE(70), + [aux_sym__non_special_token_repeat1] = STATE(136), + [sym_identifier] = ACTIONS(703), + [anon_sym_SEMI] = ACTIONS(572), + [anon_sym_LPAREN] = ACTIONS(705), + [anon_sym_RPAREN] = ACTIONS(727), + [anon_sym_LBRACK] = ACTIONS(707), + [anon_sym_LBRACE] = ACTIONS(711), + [anon_sym_EQ_GT] = ACTIONS(572), + [anon_sym_COLON] = ACTIONS(582), + [anon_sym_DOLLAR] = ACTIONS(713), + [anon_sym_PLUS] = ACTIONS(582), + [anon_sym_STAR] = ACTIONS(582), + [anon_sym_QMARK] = ACTIONS(572), + [anon_sym_u8] = ACTIONS(703), + [anon_sym_i8] = ACTIONS(703), + [anon_sym_u16] = ACTIONS(703), + [anon_sym_i16] = ACTIONS(703), + [anon_sym_u32] = ACTIONS(703), + [anon_sym_i32] = ACTIONS(703), + [anon_sym_u64] = ACTIONS(703), + [anon_sym_i64] = ACTIONS(703), + [anon_sym_u128] = ACTIONS(703), + [anon_sym_i128] = ACTIONS(703), + [anon_sym_isize] = ACTIONS(703), + [anon_sym_usize] = ACTIONS(703), + [anon_sym_f32] = ACTIONS(703), + [anon_sym_f64] = ACTIONS(703), + [anon_sym_bool] = ACTIONS(703), + [anon_sym_str] = ACTIONS(703), + [anon_sym_char] = ACTIONS(703), + [anon_sym_DASH] = ACTIONS(582), + [anon_sym_SLASH] = ACTIONS(582), + [anon_sym_PERCENT] = ACTIONS(582), + [anon_sym_CARET] = ACTIONS(582), + [anon_sym_BANG] = ACTIONS(582), + [anon_sym_AMP] = ACTIONS(582), + [anon_sym_PIPE] = ACTIONS(582), + [anon_sym_AMP_AMP] = ACTIONS(572), + [anon_sym_PIPE_PIPE] = ACTIONS(572), + [anon_sym_LT_LT] = ACTIONS(582), + [anon_sym_GT_GT] = ACTIONS(582), + [anon_sym_PLUS_EQ] = ACTIONS(572), + [anon_sym_DASH_EQ] = ACTIONS(572), + [anon_sym_STAR_EQ] = ACTIONS(572), + [anon_sym_SLASH_EQ] = ACTIONS(572), + [anon_sym_PERCENT_EQ] = ACTIONS(572), + [anon_sym_CARET_EQ] = ACTIONS(572), + [anon_sym_AMP_EQ] = ACTIONS(572), + [anon_sym_PIPE_EQ] = ACTIONS(572), + [anon_sym_LT_LT_EQ] = ACTIONS(572), + [anon_sym_GT_GT_EQ] = ACTIONS(572), + [anon_sym_EQ] = ACTIONS(582), + [anon_sym_EQ_EQ] = ACTIONS(572), + [anon_sym_BANG_EQ] = ACTIONS(572), + [anon_sym_GT] = ACTIONS(582), + [anon_sym_LT] = ACTIONS(582), + [anon_sym_GT_EQ] = ACTIONS(572), + [anon_sym_LT_EQ] = ACTIONS(572), + [anon_sym_AT] = ACTIONS(572), + [anon_sym__] = ACTIONS(582), + [anon_sym_DOT] = ACTIONS(582), + [anon_sym_DOT_DOT] = ACTIONS(582), + [anon_sym_DOT_DOT_DOT] = ACTIONS(572), + [anon_sym_DOT_DOT_EQ] = ACTIONS(572), + [anon_sym_COMMA] = ACTIONS(572), + [anon_sym_COLON_COLON] = ACTIONS(572), + [anon_sym_DASH_GT] = ACTIONS(572), + [anon_sym_POUND] = ACTIONS(572), + [anon_sym_SQUOTE] = ACTIONS(703), + [anon_sym_as] = ACTIONS(703), + [anon_sym_async] = ACTIONS(703), + [anon_sym_await] = ACTIONS(703), + [anon_sym_break] = ACTIONS(703), + [anon_sym_const] = ACTIONS(703), + [anon_sym_continue] = ACTIONS(703), + [anon_sym_default] = ACTIONS(703), + [anon_sym_enum] = ACTIONS(703), + [anon_sym_fn] = ACTIONS(703), + [anon_sym_for] = ACTIONS(703), + [anon_sym_gen] = ACTIONS(703), + [anon_sym_if] = ACTIONS(703), + [anon_sym_impl] = ACTIONS(703), + [anon_sym_let] = ACTIONS(703), + [anon_sym_loop] = ACTIONS(703), + [anon_sym_match] = ACTIONS(703), + [anon_sym_mod] = ACTIONS(703), + [anon_sym_pub] = ACTIONS(703), + [anon_sym_return] = ACTIONS(703), + [anon_sym_static] = ACTIONS(703), + [anon_sym_struct] = ACTIONS(703), + [anon_sym_trait] = ACTIONS(703), + [anon_sym_type] = ACTIONS(703), + [anon_sym_union] = ACTIONS(703), + [anon_sym_unsafe] = ACTIONS(703), + [anon_sym_use] = ACTIONS(703), + [anon_sym_where] = ACTIONS(703), + [anon_sym_while] = ACTIONS(703), + [sym_mutable_specifier] = ACTIONS(703), + [sym_integer_literal] = ACTIONS(586), + [aux_sym_string_literal_token1] = ACTIONS(588), + [sym_char_literal] = ACTIONS(586), + [anon_sym_true] = ACTIONS(590), + [anon_sym_false] = ACTIONS(590), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(703), + [sym_super] = ACTIONS(703), + [sym_crate] = ACTIONS(703), + [sym_metavariable] = ACTIONS(715), + [sym__raw_string_literal_start] = ACTIONS(594), + [sym_float_literal] = ACTIONS(586), }, [STATE(102)] = { [sym_token_tree] = STATE(170), [sym_token_repetition] = STATE(170), [sym__literal] = STATE(170), - [sym_string_literal] = STATE(175), - [sym_raw_string_literal] = STATE(175), - [sym_boolean_literal] = STATE(175), + [sym_string_literal] = STATE(174), + [sym_raw_string_literal] = STATE(174), + [sym_boolean_literal] = STATE(174), [sym_line_comment] = STATE(102), [sym_block_comment] = STATE(102), - [aux_sym_token_tree_repeat1] = STATE(133), - [aux_sym__non_special_token_repeat1] = STATE(140), - [sym_identifier] = ACTIONS(700), - [anon_sym_SEMI] = ACTIONS(640), - [anon_sym_LPAREN] = ACTIONS(702), - [anon_sym_LBRACK] = ACTIONS(704), - [anon_sym_LBRACE] = ACTIONS(708), - [anon_sym_RBRACE] = ACTIONS(722), - [anon_sym_EQ_GT] = ACTIONS(640), - [anon_sym_COLON] = ACTIONS(650), - [anon_sym_DOLLAR] = ACTIONS(710), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_STAR] = ACTIONS(650), - [anon_sym_QMARK] = ACTIONS(640), - [anon_sym_u8] = ACTIONS(700), - [anon_sym_i8] = ACTIONS(700), - [anon_sym_u16] = ACTIONS(700), - [anon_sym_i16] = ACTIONS(700), - [anon_sym_u32] = ACTIONS(700), - [anon_sym_i32] = ACTIONS(700), - [anon_sym_u64] = ACTIONS(700), - [anon_sym_i64] = ACTIONS(700), - [anon_sym_u128] = ACTIONS(700), - [anon_sym_i128] = ACTIONS(700), - [anon_sym_isize] = ACTIONS(700), - [anon_sym_usize] = ACTIONS(700), - [anon_sym_f32] = ACTIONS(700), - [anon_sym_f64] = ACTIONS(700), - [anon_sym_bool] = ACTIONS(700), - [anon_sym_str] = ACTIONS(700), - [anon_sym_char] = ACTIONS(700), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(650), - [anon_sym_PERCENT] = ACTIONS(650), - [anon_sym_CARET] = ACTIONS(650), - [anon_sym_BANG] = ACTIONS(650), - [anon_sym_AMP] = ACTIONS(650), - [anon_sym_PIPE] = ACTIONS(650), - [anon_sym_AMP_AMP] = ACTIONS(640), - [anon_sym_PIPE_PIPE] = ACTIONS(640), - [anon_sym_LT_LT] = ACTIONS(650), - [anon_sym_GT_GT] = ACTIONS(650), - [anon_sym_PLUS_EQ] = ACTIONS(640), - [anon_sym_DASH_EQ] = ACTIONS(640), - [anon_sym_STAR_EQ] = ACTIONS(640), - [anon_sym_SLASH_EQ] = ACTIONS(640), - [anon_sym_PERCENT_EQ] = ACTIONS(640), - [anon_sym_CARET_EQ] = ACTIONS(640), - [anon_sym_AMP_EQ] = ACTIONS(640), - [anon_sym_PIPE_EQ] = ACTIONS(640), - [anon_sym_LT_LT_EQ] = ACTIONS(640), - [anon_sym_GT_GT_EQ] = ACTIONS(640), - [anon_sym_EQ] = ACTIONS(650), - [anon_sym_EQ_EQ] = ACTIONS(640), - [anon_sym_BANG_EQ] = ACTIONS(640), - [anon_sym_GT] = ACTIONS(650), - [anon_sym_LT] = ACTIONS(650), - [anon_sym_GT_EQ] = ACTIONS(640), - [anon_sym_LT_EQ] = ACTIONS(640), - [anon_sym_AT] = ACTIONS(640), - [anon_sym__] = ACTIONS(650), - [anon_sym_DOT] = ACTIONS(650), - [anon_sym_DOT_DOT] = ACTIONS(650), - [anon_sym_DOT_DOT_DOT] = ACTIONS(640), - [anon_sym_DOT_DOT_EQ] = ACTIONS(640), - [anon_sym_COMMA] = ACTIONS(640), - [anon_sym_COLON_COLON] = ACTIONS(640), - [anon_sym_DASH_GT] = ACTIONS(640), - [anon_sym_POUND] = ACTIONS(640), - [anon_sym_SQUOTE] = ACTIONS(700), - [anon_sym_as] = ACTIONS(700), - [anon_sym_async] = ACTIONS(700), - [anon_sym_await] = ACTIONS(700), - [anon_sym_break] = ACTIONS(700), - [anon_sym_const] = ACTIONS(700), - [anon_sym_continue] = ACTIONS(700), - [anon_sym_default] = ACTIONS(700), - [anon_sym_enum] = ACTIONS(700), - [anon_sym_fn] = ACTIONS(700), - [anon_sym_for] = ACTIONS(700), - [anon_sym_gen] = ACTIONS(700), - [anon_sym_if] = ACTIONS(700), - [anon_sym_impl] = ACTIONS(700), - [anon_sym_let] = ACTIONS(700), - [anon_sym_loop] = ACTIONS(700), - [anon_sym_match] = ACTIONS(700), - [anon_sym_mod] = ACTIONS(700), - [anon_sym_pub] = ACTIONS(700), - [anon_sym_return] = ACTIONS(700), - [anon_sym_static] = ACTIONS(700), - [anon_sym_struct] = ACTIONS(700), - [anon_sym_trait] = ACTIONS(700), - [anon_sym_type] = ACTIONS(700), - [anon_sym_union] = ACTIONS(700), - [anon_sym_unsafe] = ACTIONS(700), - [anon_sym_use] = ACTIONS(700), - [anon_sym_where] = ACTIONS(700), - [anon_sym_while] = ACTIONS(700), - [sym_mutable_specifier] = ACTIONS(700), - [sym_integer_literal] = ACTIONS(654), - [aux_sym_string_literal_token1] = ACTIONS(656), - [sym_char_literal] = ACTIONS(654), - [anon_sym_true] = ACTIONS(658), - [anon_sym_false] = ACTIONS(658), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(700), - [sym_super] = ACTIONS(700), - [sym_crate] = ACTIONS(700), - [sym_metavariable] = ACTIONS(712), - [sym__raw_string_literal_start] = ACTIONS(662), - [sym_float_literal] = ACTIONS(654), + [aux_sym_token_tree_repeat1] = STATE(70), + [aux_sym__non_special_token_repeat1] = STATE(136), + [sym_identifier] = ACTIONS(703), + [anon_sym_SEMI] = ACTIONS(572), + [anon_sym_LPAREN] = ACTIONS(705), + [anon_sym_LBRACK] = ACTIONS(707), + [anon_sym_RBRACK] = ACTIONS(727), + [anon_sym_LBRACE] = ACTIONS(711), + [anon_sym_EQ_GT] = ACTIONS(572), + [anon_sym_COLON] = ACTIONS(582), + [anon_sym_DOLLAR] = ACTIONS(713), + [anon_sym_PLUS] = ACTIONS(582), + [anon_sym_STAR] = ACTIONS(582), + [anon_sym_QMARK] = ACTIONS(572), + [anon_sym_u8] = ACTIONS(703), + [anon_sym_i8] = ACTIONS(703), + [anon_sym_u16] = ACTIONS(703), + [anon_sym_i16] = ACTIONS(703), + [anon_sym_u32] = ACTIONS(703), + [anon_sym_i32] = ACTIONS(703), + [anon_sym_u64] = ACTIONS(703), + [anon_sym_i64] = ACTIONS(703), + [anon_sym_u128] = ACTIONS(703), + [anon_sym_i128] = ACTIONS(703), + [anon_sym_isize] = ACTIONS(703), + [anon_sym_usize] = ACTIONS(703), + [anon_sym_f32] = ACTIONS(703), + [anon_sym_f64] = ACTIONS(703), + [anon_sym_bool] = ACTIONS(703), + [anon_sym_str] = ACTIONS(703), + [anon_sym_char] = ACTIONS(703), + [anon_sym_DASH] = ACTIONS(582), + [anon_sym_SLASH] = ACTIONS(582), + [anon_sym_PERCENT] = ACTIONS(582), + [anon_sym_CARET] = ACTIONS(582), + [anon_sym_BANG] = ACTIONS(582), + [anon_sym_AMP] = ACTIONS(582), + [anon_sym_PIPE] = ACTIONS(582), + [anon_sym_AMP_AMP] = ACTIONS(572), + [anon_sym_PIPE_PIPE] = ACTIONS(572), + [anon_sym_LT_LT] = ACTIONS(582), + [anon_sym_GT_GT] = ACTIONS(582), + [anon_sym_PLUS_EQ] = ACTIONS(572), + [anon_sym_DASH_EQ] = ACTIONS(572), + [anon_sym_STAR_EQ] = ACTIONS(572), + [anon_sym_SLASH_EQ] = ACTIONS(572), + [anon_sym_PERCENT_EQ] = ACTIONS(572), + [anon_sym_CARET_EQ] = ACTIONS(572), + [anon_sym_AMP_EQ] = ACTIONS(572), + [anon_sym_PIPE_EQ] = ACTIONS(572), + [anon_sym_LT_LT_EQ] = ACTIONS(572), + [anon_sym_GT_GT_EQ] = ACTIONS(572), + [anon_sym_EQ] = ACTIONS(582), + [anon_sym_EQ_EQ] = ACTIONS(572), + [anon_sym_BANG_EQ] = ACTIONS(572), + [anon_sym_GT] = ACTIONS(582), + [anon_sym_LT] = ACTIONS(582), + [anon_sym_GT_EQ] = ACTIONS(572), + [anon_sym_LT_EQ] = ACTIONS(572), + [anon_sym_AT] = ACTIONS(572), + [anon_sym__] = ACTIONS(582), + [anon_sym_DOT] = ACTIONS(582), + [anon_sym_DOT_DOT] = ACTIONS(582), + [anon_sym_DOT_DOT_DOT] = ACTIONS(572), + [anon_sym_DOT_DOT_EQ] = ACTIONS(572), + [anon_sym_COMMA] = ACTIONS(572), + [anon_sym_COLON_COLON] = ACTIONS(572), + [anon_sym_DASH_GT] = ACTIONS(572), + [anon_sym_POUND] = ACTIONS(572), + [anon_sym_SQUOTE] = ACTIONS(703), + [anon_sym_as] = ACTIONS(703), + [anon_sym_async] = ACTIONS(703), + [anon_sym_await] = ACTIONS(703), + [anon_sym_break] = ACTIONS(703), + [anon_sym_const] = ACTIONS(703), + [anon_sym_continue] = ACTIONS(703), + [anon_sym_default] = ACTIONS(703), + [anon_sym_enum] = ACTIONS(703), + [anon_sym_fn] = ACTIONS(703), + [anon_sym_for] = ACTIONS(703), + [anon_sym_gen] = ACTIONS(703), + [anon_sym_if] = ACTIONS(703), + [anon_sym_impl] = ACTIONS(703), + [anon_sym_let] = ACTIONS(703), + [anon_sym_loop] = ACTIONS(703), + [anon_sym_match] = ACTIONS(703), + [anon_sym_mod] = ACTIONS(703), + [anon_sym_pub] = ACTIONS(703), + [anon_sym_return] = ACTIONS(703), + [anon_sym_static] = ACTIONS(703), + [anon_sym_struct] = ACTIONS(703), + [anon_sym_trait] = ACTIONS(703), + [anon_sym_type] = ACTIONS(703), + [anon_sym_union] = ACTIONS(703), + [anon_sym_unsafe] = ACTIONS(703), + [anon_sym_use] = ACTIONS(703), + [anon_sym_where] = ACTIONS(703), + [anon_sym_while] = ACTIONS(703), + [sym_mutable_specifier] = ACTIONS(703), + [sym_integer_literal] = ACTIONS(586), + [aux_sym_string_literal_token1] = ACTIONS(588), + [sym_char_literal] = ACTIONS(586), + [anon_sym_true] = ACTIONS(590), + [anon_sym_false] = ACTIONS(590), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(703), + [sym_super] = ACTIONS(703), + [sym_crate] = ACTIONS(703), + [sym_metavariable] = ACTIONS(715), + [sym__raw_string_literal_start] = ACTIONS(594), + [sym_float_literal] = ACTIONS(586), }, [STATE(103)] = { [sym_token_tree] = STATE(170), [sym_token_repetition] = STATE(170), [sym__literal] = STATE(170), - [sym_string_literal] = STATE(175), - [sym_raw_string_literal] = STATE(175), - [sym_boolean_literal] = STATE(175), + [sym_string_literal] = STATE(174), + [sym_raw_string_literal] = STATE(174), + [sym_boolean_literal] = STATE(174), [sym_line_comment] = STATE(103), [sym_block_comment] = STATE(103), - [aux_sym_token_tree_repeat1] = STATE(69), - [aux_sym__non_special_token_repeat1] = STATE(140), - [sym_identifier] = ACTIONS(700), - [anon_sym_SEMI] = ACTIONS(640), - [anon_sym_LPAREN] = ACTIONS(702), - [anon_sym_RPAREN] = ACTIONS(724), - [anon_sym_LBRACK] = ACTIONS(704), - [anon_sym_LBRACE] = ACTIONS(708), - [anon_sym_EQ_GT] = ACTIONS(640), - [anon_sym_COLON] = ACTIONS(650), - [anon_sym_DOLLAR] = ACTIONS(710), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_STAR] = ACTIONS(650), - [anon_sym_QMARK] = ACTIONS(640), - [anon_sym_u8] = ACTIONS(700), - [anon_sym_i8] = ACTIONS(700), - [anon_sym_u16] = ACTIONS(700), - [anon_sym_i16] = ACTIONS(700), - [anon_sym_u32] = ACTIONS(700), - [anon_sym_i32] = ACTIONS(700), - [anon_sym_u64] = ACTIONS(700), - [anon_sym_i64] = ACTIONS(700), - [anon_sym_u128] = ACTIONS(700), - [anon_sym_i128] = ACTIONS(700), - [anon_sym_isize] = ACTIONS(700), - [anon_sym_usize] = ACTIONS(700), - [anon_sym_f32] = ACTIONS(700), - [anon_sym_f64] = ACTIONS(700), - [anon_sym_bool] = ACTIONS(700), - [anon_sym_str] = ACTIONS(700), - [anon_sym_char] = ACTIONS(700), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(650), - [anon_sym_PERCENT] = ACTIONS(650), - [anon_sym_CARET] = ACTIONS(650), - [anon_sym_BANG] = ACTIONS(650), - [anon_sym_AMP] = ACTIONS(650), - [anon_sym_PIPE] = ACTIONS(650), - [anon_sym_AMP_AMP] = ACTIONS(640), - [anon_sym_PIPE_PIPE] = ACTIONS(640), - [anon_sym_LT_LT] = ACTIONS(650), - [anon_sym_GT_GT] = ACTIONS(650), - [anon_sym_PLUS_EQ] = ACTIONS(640), - [anon_sym_DASH_EQ] = ACTIONS(640), - [anon_sym_STAR_EQ] = ACTIONS(640), - [anon_sym_SLASH_EQ] = ACTIONS(640), - [anon_sym_PERCENT_EQ] = ACTIONS(640), - [anon_sym_CARET_EQ] = ACTIONS(640), - [anon_sym_AMP_EQ] = ACTIONS(640), - [anon_sym_PIPE_EQ] = ACTIONS(640), - [anon_sym_LT_LT_EQ] = ACTIONS(640), - [anon_sym_GT_GT_EQ] = ACTIONS(640), - [anon_sym_EQ] = ACTIONS(650), - [anon_sym_EQ_EQ] = ACTIONS(640), - [anon_sym_BANG_EQ] = ACTIONS(640), - [anon_sym_GT] = ACTIONS(650), - [anon_sym_LT] = ACTIONS(650), - [anon_sym_GT_EQ] = ACTIONS(640), - [anon_sym_LT_EQ] = ACTIONS(640), - [anon_sym_AT] = ACTIONS(640), - [anon_sym__] = ACTIONS(650), - [anon_sym_DOT] = ACTIONS(650), - [anon_sym_DOT_DOT] = ACTIONS(650), - [anon_sym_DOT_DOT_DOT] = ACTIONS(640), - [anon_sym_DOT_DOT_EQ] = ACTIONS(640), - [anon_sym_COMMA] = ACTIONS(640), - [anon_sym_COLON_COLON] = ACTIONS(640), - [anon_sym_DASH_GT] = ACTIONS(640), - [anon_sym_POUND] = ACTIONS(640), - [anon_sym_SQUOTE] = ACTIONS(700), - [anon_sym_as] = ACTIONS(700), - [anon_sym_async] = ACTIONS(700), - [anon_sym_await] = ACTIONS(700), - [anon_sym_break] = ACTIONS(700), - [anon_sym_const] = ACTIONS(700), - [anon_sym_continue] = ACTIONS(700), - [anon_sym_default] = ACTIONS(700), - [anon_sym_enum] = ACTIONS(700), - [anon_sym_fn] = ACTIONS(700), - [anon_sym_for] = ACTIONS(700), - [anon_sym_gen] = ACTIONS(700), - [anon_sym_if] = ACTIONS(700), - [anon_sym_impl] = ACTIONS(700), - [anon_sym_let] = ACTIONS(700), - [anon_sym_loop] = ACTIONS(700), - [anon_sym_match] = ACTIONS(700), - [anon_sym_mod] = ACTIONS(700), - [anon_sym_pub] = ACTIONS(700), - [anon_sym_return] = ACTIONS(700), - [anon_sym_static] = ACTIONS(700), - [anon_sym_struct] = ACTIONS(700), - [anon_sym_trait] = ACTIONS(700), - [anon_sym_type] = ACTIONS(700), - [anon_sym_union] = ACTIONS(700), - [anon_sym_unsafe] = ACTIONS(700), - [anon_sym_use] = ACTIONS(700), - [anon_sym_where] = ACTIONS(700), - [anon_sym_while] = ACTIONS(700), - [sym_mutable_specifier] = ACTIONS(700), - [sym_integer_literal] = ACTIONS(654), - [aux_sym_string_literal_token1] = ACTIONS(656), - [sym_char_literal] = ACTIONS(654), - [anon_sym_true] = ACTIONS(658), - [anon_sym_false] = ACTIONS(658), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(700), - [sym_super] = ACTIONS(700), - [sym_crate] = ACTIONS(700), - [sym_metavariable] = ACTIONS(712), - [sym__raw_string_literal_start] = ACTIONS(662), - [sym_float_literal] = ACTIONS(654), + [aux_sym_token_tree_repeat1] = STATE(70), + [aux_sym__non_special_token_repeat1] = STATE(136), + [sym_identifier] = ACTIONS(703), + [anon_sym_SEMI] = ACTIONS(572), + [anon_sym_LPAREN] = ACTIONS(705), + [anon_sym_LBRACK] = ACTIONS(707), + [anon_sym_LBRACE] = ACTIONS(711), + [anon_sym_RBRACE] = ACTIONS(727), + [anon_sym_EQ_GT] = ACTIONS(572), + [anon_sym_COLON] = ACTIONS(582), + [anon_sym_DOLLAR] = ACTIONS(713), + [anon_sym_PLUS] = ACTIONS(582), + [anon_sym_STAR] = ACTIONS(582), + [anon_sym_QMARK] = ACTIONS(572), + [anon_sym_u8] = ACTIONS(703), + [anon_sym_i8] = ACTIONS(703), + [anon_sym_u16] = ACTIONS(703), + [anon_sym_i16] = ACTIONS(703), + [anon_sym_u32] = ACTIONS(703), + [anon_sym_i32] = ACTIONS(703), + [anon_sym_u64] = ACTIONS(703), + [anon_sym_i64] = ACTIONS(703), + [anon_sym_u128] = ACTIONS(703), + [anon_sym_i128] = ACTIONS(703), + [anon_sym_isize] = ACTIONS(703), + [anon_sym_usize] = ACTIONS(703), + [anon_sym_f32] = ACTIONS(703), + [anon_sym_f64] = ACTIONS(703), + [anon_sym_bool] = ACTIONS(703), + [anon_sym_str] = ACTIONS(703), + [anon_sym_char] = ACTIONS(703), + [anon_sym_DASH] = ACTIONS(582), + [anon_sym_SLASH] = ACTIONS(582), + [anon_sym_PERCENT] = ACTIONS(582), + [anon_sym_CARET] = ACTIONS(582), + [anon_sym_BANG] = ACTIONS(582), + [anon_sym_AMP] = ACTIONS(582), + [anon_sym_PIPE] = ACTIONS(582), + [anon_sym_AMP_AMP] = ACTIONS(572), + [anon_sym_PIPE_PIPE] = ACTIONS(572), + [anon_sym_LT_LT] = ACTIONS(582), + [anon_sym_GT_GT] = ACTIONS(582), + [anon_sym_PLUS_EQ] = ACTIONS(572), + [anon_sym_DASH_EQ] = ACTIONS(572), + [anon_sym_STAR_EQ] = ACTIONS(572), + [anon_sym_SLASH_EQ] = ACTIONS(572), + [anon_sym_PERCENT_EQ] = ACTIONS(572), + [anon_sym_CARET_EQ] = ACTIONS(572), + [anon_sym_AMP_EQ] = ACTIONS(572), + [anon_sym_PIPE_EQ] = ACTIONS(572), + [anon_sym_LT_LT_EQ] = ACTIONS(572), + [anon_sym_GT_GT_EQ] = ACTIONS(572), + [anon_sym_EQ] = ACTIONS(582), + [anon_sym_EQ_EQ] = ACTIONS(572), + [anon_sym_BANG_EQ] = ACTIONS(572), + [anon_sym_GT] = ACTIONS(582), + [anon_sym_LT] = ACTIONS(582), + [anon_sym_GT_EQ] = ACTIONS(572), + [anon_sym_LT_EQ] = ACTIONS(572), + [anon_sym_AT] = ACTIONS(572), + [anon_sym__] = ACTIONS(582), + [anon_sym_DOT] = ACTIONS(582), + [anon_sym_DOT_DOT] = ACTIONS(582), + [anon_sym_DOT_DOT_DOT] = ACTIONS(572), + [anon_sym_DOT_DOT_EQ] = ACTIONS(572), + [anon_sym_COMMA] = ACTIONS(572), + [anon_sym_COLON_COLON] = ACTIONS(572), + [anon_sym_DASH_GT] = ACTIONS(572), + [anon_sym_POUND] = ACTIONS(572), + [anon_sym_SQUOTE] = ACTIONS(703), + [anon_sym_as] = ACTIONS(703), + [anon_sym_async] = ACTIONS(703), + [anon_sym_await] = ACTIONS(703), + [anon_sym_break] = ACTIONS(703), + [anon_sym_const] = ACTIONS(703), + [anon_sym_continue] = ACTIONS(703), + [anon_sym_default] = ACTIONS(703), + [anon_sym_enum] = ACTIONS(703), + [anon_sym_fn] = ACTIONS(703), + [anon_sym_for] = ACTIONS(703), + [anon_sym_gen] = ACTIONS(703), + [anon_sym_if] = ACTIONS(703), + [anon_sym_impl] = ACTIONS(703), + [anon_sym_let] = ACTIONS(703), + [anon_sym_loop] = ACTIONS(703), + [anon_sym_match] = ACTIONS(703), + [anon_sym_mod] = ACTIONS(703), + [anon_sym_pub] = ACTIONS(703), + [anon_sym_return] = ACTIONS(703), + [anon_sym_static] = ACTIONS(703), + [anon_sym_struct] = ACTIONS(703), + [anon_sym_trait] = ACTIONS(703), + [anon_sym_type] = ACTIONS(703), + [anon_sym_union] = ACTIONS(703), + [anon_sym_unsafe] = ACTIONS(703), + [anon_sym_use] = ACTIONS(703), + [anon_sym_where] = ACTIONS(703), + [anon_sym_while] = ACTIONS(703), + [sym_mutable_specifier] = ACTIONS(703), + [sym_integer_literal] = ACTIONS(586), + [aux_sym_string_literal_token1] = ACTIONS(588), + [sym_char_literal] = ACTIONS(586), + [anon_sym_true] = ACTIONS(590), + [anon_sym_false] = ACTIONS(590), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(703), + [sym_super] = ACTIONS(703), + [sym_crate] = ACTIONS(703), + [sym_metavariable] = ACTIONS(715), + [sym__raw_string_literal_start] = ACTIONS(594), + [sym_float_literal] = ACTIONS(586), }, [STATE(104)] = { - [sym_token_tree] = STATE(170), - [sym_token_repetition] = STATE(170), - [sym__literal] = STATE(170), - [sym_string_literal] = STATE(175), - [sym_raw_string_literal] = STATE(175), - [sym_boolean_literal] = STATE(175), + [sym_delim_token_tree] = STATE(208), + [sym__delim_tokens] = STATE(209), + [sym__non_delim_token] = STATE(208), + [sym__literal] = STATE(204), + [sym_string_literal] = STATE(201), + [sym_raw_string_literal] = STATE(201), + [sym_boolean_literal] = STATE(201), [sym_line_comment] = STATE(104), [sym_block_comment] = STATE(104), - [aux_sym_token_tree_repeat1] = STATE(69), - [aux_sym__non_special_token_repeat1] = STATE(140), - [sym_identifier] = ACTIONS(700), - [anon_sym_SEMI] = ACTIONS(640), - [anon_sym_LPAREN] = ACTIONS(702), - [anon_sym_LBRACK] = ACTIONS(704), - [anon_sym_RBRACK] = ACTIONS(724), - [anon_sym_LBRACE] = ACTIONS(708), - [anon_sym_EQ_GT] = ACTIONS(640), - [anon_sym_COLON] = ACTIONS(650), - [anon_sym_DOLLAR] = ACTIONS(710), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_STAR] = ACTIONS(650), - [anon_sym_QMARK] = ACTIONS(640), - [anon_sym_u8] = ACTIONS(700), - [anon_sym_i8] = ACTIONS(700), - [anon_sym_u16] = ACTIONS(700), - [anon_sym_i16] = ACTIONS(700), - [anon_sym_u32] = ACTIONS(700), - [anon_sym_i32] = ACTIONS(700), - [anon_sym_u64] = ACTIONS(700), - [anon_sym_i64] = ACTIONS(700), - [anon_sym_u128] = ACTIONS(700), - [anon_sym_i128] = ACTIONS(700), - [anon_sym_isize] = ACTIONS(700), - [anon_sym_usize] = ACTIONS(700), - [anon_sym_f32] = ACTIONS(700), - [anon_sym_f64] = ACTIONS(700), - [anon_sym_bool] = ACTIONS(700), - [anon_sym_str] = ACTIONS(700), - [anon_sym_char] = ACTIONS(700), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(650), - [anon_sym_PERCENT] = ACTIONS(650), - [anon_sym_CARET] = ACTIONS(650), - [anon_sym_BANG] = ACTIONS(650), - [anon_sym_AMP] = ACTIONS(650), - [anon_sym_PIPE] = ACTIONS(650), - [anon_sym_AMP_AMP] = ACTIONS(640), - [anon_sym_PIPE_PIPE] = ACTIONS(640), - [anon_sym_LT_LT] = ACTIONS(650), - [anon_sym_GT_GT] = ACTIONS(650), - [anon_sym_PLUS_EQ] = ACTIONS(640), - [anon_sym_DASH_EQ] = ACTIONS(640), - [anon_sym_STAR_EQ] = ACTIONS(640), - [anon_sym_SLASH_EQ] = ACTIONS(640), - [anon_sym_PERCENT_EQ] = ACTIONS(640), - [anon_sym_CARET_EQ] = ACTIONS(640), - [anon_sym_AMP_EQ] = ACTIONS(640), - [anon_sym_PIPE_EQ] = ACTIONS(640), - [anon_sym_LT_LT_EQ] = ACTIONS(640), - [anon_sym_GT_GT_EQ] = ACTIONS(640), - [anon_sym_EQ] = ACTIONS(650), - [anon_sym_EQ_EQ] = ACTIONS(640), - [anon_sym_BANG_EQ] = ACTIONS(640), - [anon_sym_GT] = ACTIONS(650), - [anon_sym_LT] = ACTIONS(650), - [anon_sym_GT_EQ] = ACTIONS(640), - [anon_sym_LT_EQ] = ACTIONS(640), - [anon_sym_AT] = ACTIONS(640), - [anon_sym__] = ACTIONS(650), - [anon_sym_DOT] = ACTIONS(650), - [anon_sym_DOT_DOT] = ACTIONS(650), - [anon_sym_DOT_DOT_DOT] = ACTIONS(640), - [anon_sym_DOT_DOT_EQ] = ACTIONS(640), - [anon_sym_COMMA] = ACTIONS(640), - [anon_sym_COLON_COLON] = ACTIONS(640), - [anon_sym_DASH_GT] = ACTIONS(640), - [anon_sym_POUND] = ACTIONS(640), - [anon_sym_SQUOTE] = ACTIONS(700), - [anon_sym_as] = ACTIONS(700), - [anon_sym_async] = ACTIONS(700), - [anon_sym_await] = ACTIONS(700), - [anon_sym_break] = ACTIONS(700), - [anon_sym_const] = ACTIONS(700), - [anon_sym_continue] = ACTIONS(700), - [anon_sym_default] = ACTIONS(700), - [anon_sym_enum] = ACTIONS(700), - [anon_sym_fn] = ACTIONS(700), - [anon_sym_for] = ACTIONS(700), - [anon_sym_gen] = ACTIONS(700), - [anon_sym_if] = ACTIONS(700), - [anon_sym_impl] = ACTIONS(700), - [anon_sym_let] = ACTIONS(700), - [anon_sym_loop] = ACTIONS(700), - [anon_sym_match] = ACTIONS(700), - [anon_sym_mod] = ACTIONS(700), - [anon_sym_pub] = ACTIONS(700), - [anon_sym_return] = ACTIONS(700), - [anon_sym_static] = ACTIONS(700), - [anon_sym_struct] = ACTIONS(700), - [anon_sym_trait] = ACTIONS(700), - [anon_sym_type] = ACTIONS(700), - [anon_sym_union] = ACTIONS(700), - [anon_sym_unsafe] = ACTIONS(700), - [anon_sym_use] = ACTIONS(700), - [anon_sym_where] = ACTIONS(700), - [anon_sym_while] = ACTIONS(700), - [sym_mutable_specifier] = ACTIONS(700), - [sym_integer_literal] = ACTIONS(654), - [aux_sym_string_literal_token1] = ACTIONS(656), - [sym_char_literal] = ACTIONS(654), - [anon_sym_true] = ACTIONS(658), - [anon_sym_false] = ACTIONS(658), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(700), - [sym_super] = ACTIONS(700), - [sym_crate] = ACTIONS(700), - [sym_metavariable] = ACTIONS(712), - [sym__raw_string_literal_start] = ACTIONS(662), - [sym_float_literal] = ACTIONS(654), + [aux_sym__non_special_token_repeat1] = STATE(180), + [aux_sym_delim_token_tree_repeat1] = STATE(108), + [sym_identifier] = ACTIONS(679), + [anon_sym_SEMI] = ACTIONS(681), + [anon_sym_LPAREN] = ACTIONS(683), + [anon_sym_RPAREN] = ACTIONS(729), + [anon_sym_LBRACK] = ACTIONS(685), + [anon_sym_LBRACE] = ACTIONS(689), + [anon_sym_EQ_GT] = ACTIONS(681), + [anon_sym_COLON] = ACTIONS(691), + [anon_sym_DOLLAR] = ACTIONS(693), + [anon_sym_PLUS] = ACTIONS(691), + [anon_sym_STAR] = ACTIONS(691), + [anon_sym_QMARK] = ACTIONS(681), + [anon_sym_u8] = ACTIONS(679), + [anon_sym_i8] = ACTIONS(679), + [anon_sym_u16] = ACTIONS(679), + [anon_sym_i16] = ACTIONS(679), + [anon_sym_u32] = ACTIONS(679), + [anon_sym_i32] = ACTIONS(679), + [anon_sym_u64] = ACTIONS(679), + [anon_sym_i64] = ACTIONS(679), + [anon_sym_u128] = ACTIONS(679), + [anon_sym_i128] = ACTIONS(679), + [anon_sym_isize] = ACTIONS(679), + [anon_sym_usize] = ACTIONS(679), + [anon_sym_f32] = ACTIONS(679), + [anon_sym_f64] = ACTIONS(679), + [anon_sym_bool] = ACTIONS(679), + [anon_sym_str] = ACTIONS(679), + [anon_sym_char] = ACTIONS(679), + [anon_sym_DASH] = ACTIONS(691), + [anon_sym_SLASH] = ACTIONS(691), + [anon_sym_PERCENT] = ACTIONS(691), + [anon_sym_CARET] = ACTIONS(691), + [anon_sym_BANG] = ACTIONS(691), + [anon_sym_AMP] = ACTIONS(691), + [anon_sym_PIPE] = ACTIONS(691), + [anon_sym_AMP_AMP] = ACTIONS(681), + [anon_sym_PIPE_PIPE] = ACTIONS(681), + [anon_sym_LT_LT] = ACTIONS(691), + [anon_sym_GT_GT] = ACTIONS(691), + [anon_sym_PLUS_EQ] = ACTIONS(681), + [anon_sym_DASH_EQ] = ACTIONS(681), + [anon_sym_STAR_EQ] = ACTIONS(681), + [anon_sym_SLASH_EQ] = ACTIONS(681), + [anon_sym_PERCENT_EQ] = ACTIONS(681), + [anon_sym_CARET_EQ] = ACTIONS(681), + [anon_sym_AMP_EQ] = ACTIONS(681), + [anon_sym_PIPE_EQ] = ACTIONS(681), + [anon_sym_LT_LT_EQ] = ACTIONS(681), + [anon_sym_GT_GT_EQ] = ACTIONS(681), + [anon_sym_EQ] = ACTIONS(691), + [anon_sym_EQ_EQ] = ACTIONS(681), + [anon_sym_BANG_EQ] = ACTIONS(681), + [anon_sym_GT] = ACTIONS(691), + [anon_sym_LT] = ACTIONS(691), + [anon_sym_GT_EQ] = ACTIONS(681), + [anon_sym_LT_EQ] = ACTIONS(681), + [anon_sym_AT] = ACTIONS(681), + [anon_sym__] = ACTIONS(691), + [anon_sym_DOT] = ACTIONS(691), + [anon_sym_DOT_DOT] = ACTIONS(691), + [anon_sym_DOT_DOT_DOT] = ACTIONS(681), + [anon_sym_DOT_DOT_EQ] = ACTIONS(681), + [anon_sym_COMMA] = ACTIONS(681), + [anon_sym_COLON_COLON] = ACTIONS(681), + [anon_sym_DASH_GT] = ACTIONS(681), + [anon_sym_POUND] = ACTIONS(681), + [anon_sym_SQUOTE] = ACTIONS(679), + [anon_sym_as] = ACTIONS(679), + [anon_sym_async] = ACTIONS(679), + [anon_sym_await] = ACTIONS(679), + [anon_sym_break] = ACTIONS(679), + [anon_sym_const] = ACTIONS(679), + [anon_sym_continue] = ACTIONS(679), + [anon_sym_default] = ACTIONS(679), + [anon_sym_enum] = ACTIONS(679), + [anon_sym_fn] = ACTIONS(679), + [anon_sym_for] = ACTIONS(679), + [anon_sym_gen] = ACTIONS(679), + [anon_sym_if] = ACTIONS(679), + [anon_sym_impl] = ACTIONS(679), + [anon_sym_let] = ACTIONS(679), + [anon_sym_loop] = ACTIONS(679), + [anon_sym_match] = ACTIONS(679), + [anon_sym_mod] = ACTIONS(679), + [anon_sym_pub] = ACTIONS(679), + [anon_sym_return] = ACTIONS(679), + [anon_sym_static] = ACTIONS(679), + [anon_sym_struct] = ACTIONS(679), + [anon_sym_trait] = ACTIONS(679), + [anon_sym_type] = ACTIONS(679), + [anon_sym_union] = ACTIONS(679), + [anon_sym_unsafe] = ACTIONS(679), + [anon_sym_use] = ACTIONS(679), + [anon_sym_where] = ACTIONS(679), + [anon_sym_while] = ACTIONS(679), + [sym_mutable_specifier] = ACTIONS(679), + [sym_integer_literal] = ACTIONS(695), + [aux_sym_string_literal_token1] = ACTIONS(697), + [sym_char_literal] = ACTIONS(695), + [anon_sym_true] = ACTIONS(699), + [anon_sym_false] = ACTIONS(699), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(679), + [sym_super] = ACTIONS(679), + [sym_crate] = ACTIONS(679), + [sym__raw_string_literal_start] = ACTIONS(701), + [sym_float_literal] = ACTIONS(695), }, [STATE(105)] = { - [sym_token_tree] = STATE(170), - [sym_token_repetition] = STATE(170), - [sym__literal] = STATE(170), - [sym_string_literal] = STATE(175), - [sym_raw_string_literal] = STATE(175), - [sym_boolean_literal] = STATE(175), + [sym_delim_token_tree] = STATE(208), + [sym__delim_tokens] = STATE(209), + [sym__non_delim_token] = STATE(208), + [sym__literal] = STATE(204), + [sym_string_literal] = STATE(201), + [sym_raw_string_literal] = STATE(201), + [sym_boolean_literal] = STATE(201), [sym_line_comment] = STATE(105), [sym_block_comment] = STATE(105), - [aux_sym_token_tree_repeat1] = STATE(69), - [aux_sym__non_special_token_repeat1] = STATE(140), - [sym_identifier] = ACTIONS(700), - [anon_sym_SEMI] = ACTIONS(640), - [anon_sym_LPAREN] = ACTIONS(702), - [anon_sym_RPAREN] = ACTIONS(726), - [anon_sym_LBRACK] = ACTIONS(704), - [anon_sym_LBRACE] = ACTIONS(708), - [anon_sym_EQ_GT] = ACTIONS(640), - [anon_sym_COLON] = ACTIONS(650), - [anon_sym_DOLLAR] = ACTIONS(710), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_STAR] = ACTIONS(650), - [anon_sym_QMARK] = ACTIONS(640), - [anon_sym_u8] = ACTIONS(700), - [anon_sym_i8] = ACTIONS(700), - [anon_sym_u16] = ACTIONS(700), - [anon_sym_i16] = ACTIONS(700), - [anon_sym_u32] = ACTIONS(700), - [anon_sym_i32] = ACTIONS(700), - [anon_sym_u64] = ACTIONS(700), - [anon_sym_i64] = ACTIONS(700), - [anon_sym_u128] = ACTIONS(700), - [anon_sym_i128] = ACTIONS(700), - [anon_sym_isize] = ACTIONS(700), - [anon_sym_usize] = ACTIONS(700), - [anon_sym_f32] = ACTIONS(700), - [anon_sym_f64] = ACTIONS(700), - [anon_sym_bool] = ACTIONS(700), - [anon_sym_str] = ACTIONS(700), - [anon_sym_char] = ACTIONS(700), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(650), - [anon_sym_PERCENT] = ACTIONS(650), - [anon_sym_CARET] = ACTIONS(650), - [anon_sym_BANG] = ACTIONS(650), - [anon_sym_AMP] = ACTIONS(650), - [anon_sym_PIPE] = ACTIONS(650), - [anon_sym_AMP_AMP] = ACTIONS(640), - [anon_sym_PIPE_PIPE] = ACTIONS(640), - [anon_sym_LT_LT] = ACTIONS(650), - [anon_sym_GT_GT] = ACTIONS(650), - [anon_sym_PLUS_EQ] = ACTIONS(640), - [anon_sym_DASH_EQ] = ACTIONS(640), - [anon_sym_STAR_EQ] = ACTIONS(640), - [anon_sym_SLASH_EQ] = ACTIONS(640), - [anon_sym_PERCENT_EQ] = ACTIONS(640), - [anon_sym_CARET_EQ] = ACTIONS(640), - [anon_sym_AMP_EQ] = ACTIONS(640), - [anon_sym_PIPE_EQ] = ACTIONS(640), - [anon_sym_LT_LT_EQ] = ACTIONS(640), - [anon_sym_GT_GT_EQ] = ACTIONS(640), - [anon_sym_EQ] = ACTIONS(650), - [anon_sym_EQ_EQ] = ACTIONS(640), - [anon_sym_BANG_EQ] = ACTIONS(640), - [anon_sym_GT] = ACTIONS(650), - [anon_sym_LT] = ACTIONS(650), - [anon_sym_GT_EQ] = ACTIONS(640), - [anon_sym_LT_EQ] = ACTIONS(640), - [anon_sym_AT] = ACTIONS(640), - [anon_sym__] = ACTIONS(650), - [anon_sym_DOT] = ACTIONS(650), - [anon_sym_DOT_DOT] = ACTIONS(650), - [anon_sym_DOT_DOT_DOT] = ACTIONS(640), - [anon_sym_DOT_DOT_EQ] = ACTIONS(640), - [anon_sym_COMMA] = ACTIONS(640), - [anon_sym_COLON_COLON] = ACTIONS(640), - [anon_sym_DASH_GT] = ACTIONS(640), - [anon_sym_POUND] = ACTIONS(640), - [anon_sym_SQUOTE] = ACTIONS(700), - [anon_sym_as] = ACTIONS(700), - [anon_sym_async] = ACTIONS(700), - [anon_sym_await] = ACTIONS(700), - [anon_sym_break] = ACTIONS(700), - [anon_sym_const] = ACTIONS(700), - [anon_sym_continue] = ACTIONS(700), - [anon_sym_default] = ACTIONS(700), - [anon_sym_enum] = ACTIONS(700), - [anon_sym_fn] = ACTIONS(700), - [anon_sym_for] = ACTIONS(700), - [anon_sym_gen] = ACTIONS(700), - [anon_sym_if] = ACTIONS(700), - [anon_sym_impl] = ACTIONS(700), - [anon_sym_let] = ACTIONS(700), - [anon_sym_loop] = ACTIONS(700), - [anon_sym_match] = ACTIONS(700), - [anon_sym_mod] = ACTIONS(700), - [anon_sym_pub] = ACTIONS(700), - [anon_sym_return] = ACTIONS(700), - [anon_sym_static] = ACTIONS(700), - [anon_sym_struct] = ACTIONS(700), - [anon_sym_trait] = ACTIONS(700), - [anon_sym_type] = ACTIONS(700), - [anon_sym_union] = ACTIONS(700), - [anon_sym_unsafe] = ACTIONS(700), - [anon_sym_use] = ACTIONS(700), - [anon_sym_where] = ACTIONS(700), - [anon_sym_while] = ACTIONS(700), - [sym_mutable_specifier] = ACTIONS(700), - [sym_integer_literal] = ACTIONS(654), - [aux_sym_string_literal_token1] = ACTIONS(656), - [sym_char_literal] = ACTIONS(654), - [anon_sym_true] = ACTIONS(658), - [anon_sym_false] = ACTIONS(658), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(700), - [sym_super] = ACTIONS(700), - [sym_crate] = ACTIONS(700), - [sym_metavariable] = ACTIONS(712), - [sym__raw_string_literal_start] = ACTIONS(662), - [sym_float_literal] = ACTIONS(654), + [aux_sym__non_special_token_repeat1] = STATE(180), + [aux_sym_delim_token_tree_repeat1] = STATE(109), + [sym_identifier] = ACTIONS(679), + [anon_sym_SEMI] = ACTIONS(681), + [anon_sym_LPAREN] = ACTIONS(683), + [anon_sym_LBRACK] = ACTIONS(685), + [anon_sym_RBRACK] = ACTIONS(729), + [anon_sym_LBRACE] = ACTIONS(689), + [anon_sym_EQ_GT] = ACTIONS(681), + [anon_sym_COLON] = ACTIONS(691), + [anon_sym_DOLLAR] = ACTIONS(693), + [anon_sym_PLUS] = ACTIONS(691), + [anon_sym_STAR] = ACTIONS(691), + [anon_sym_QMARK] = ACTIONS(681), + [anon_sym_u8] = ACTIONS(679), + [anon_sym_i8] = ACTIONS(679), + [anon_sym_u16] = ACTIONS(679), + [anon_sym_i16] = ACTIONS(679), + [anon_sym_u32] = ACTIONS(679), + [anon_sym_i32] = ACTIONS(679), + [anon_sym_u64] = ACTIONS(679), + [anon_sym_i64] = ACTIONS(679), + [anon_sym_u128] = ACTIONS(679), + [anon_sym_i128] = ACTIONS(679), + [anon_sym_isize] = ACTIONS(679), + [anon_sym_usize] = ACTIONS(679), + [anon_sym_f32] = ACTIONS(679), + [anon_sym_f64] = ACTIONS(679), + [anon_sym_bool] = ACTIONS(679), + [anon_sym_str] = ACTIONS(679), + [anon_sym_char] = ACTIONS(679), + [anon_sym_DASH] = ACTIONS(691), + [anon_sym_SLASH] = ACTIONS(691), + [anon_sym_PERCENT] = ACTIONS(691), + [anon_sym_CARET] = ACTIONS(691), + [anon_sym_BANG] = ACTIONS(691), + [anon_sym_AMP] = ACTIONS(691), + [anon_sym_PIPE] = ACTIONS(691), + [anon_sym_AMP_AMP] = ACTIONS(681), + [anon_sym_PIPE_PIPE] = ACTIONS(681), + [anon_sym_LT_LT] = ACTIONS(691), + [anon_sym_GT_GT] = ACTIONS(691), + [anon_sym_PLUS_EQ] = ACTIONS(681), + [anon_sym_DASH_EQ] = ACTIONS(681), + [anon_sym_STAR_EQ] = ACTIONS(681), + [anon_sym_SLASH_EQ] = ACTIONS(681), + [anon_sym_PERCENT_EQ] = ACTIONS(681), + [anon_sym_CARET_EQ] = ACTIONS(681), + [anon_sym_AMP_EQ] = ACTIONS(681), + [anon_sym_PIPE_EQ] = ACTIONS(681), + [anon_sym_LT_LT_EQ] = ACTIONS(681), + [anon_sym_GT_GT_EQ] = ACTIONS(681), + [anon_sym_EQ] = ACTIONS(691), + [anon_sym_EQ_EQ] = ACTIONS(681), + [anon_sym_BANG_EQ] = ACTIONS(681), + [anon_sym_GT] = ACTIONS(691), + [anon_sym_LT] = ACTIONS(691), + [anon_sym_GT_EQ] = ACTIONS(681), + [anon_sym_LT_EQ] = ACTIONS(681), + [anon_sym_AT] = ACTIONS(681), + [anon_sym__] = ACTIONS(691), + [anon_sym_DOT] = ACTIONS(691), + [anon_sym_DOT_DOT] = ACTIONS(691), + [anon_sym_DOT_DOT_DOT] = ACTIONS(681), + [anon_sym_DOT_DOT_EQ] = ACTIONS(681), + [anon_sym_COMMA] = ACTIONS(681), + [anon_sym_COLON_COLON] = ACTIONS(681), + [anon_sym_DASH_GT] = ACTIONS(681), + [anon_sym_POUND] = ACTIONS(681), + [anon_sym_SQUOTE] = ACTIONS(679), + [anon_sym_as] = ACTIONS(679), + [anon_sym_async] = ACTIONS(679), + [anon_sym_await] = ACTIONS(679), + [anon_sym_break] = ACTIONS(679), + [anon_sym_const] = ACTIONS(679), + [anon_sym_continue] = ACTIONS(679), + [anon_sym_default] = ACTIONS(679), + [anon_sym_enum] = ACTIONS(679), + [anon_sym_fn] = ACTIONS(679), + [anon_sym_for] = ACTIONS(679), + [anon_sym_gen] = ACTIONS(679), + [anon_sym_if] = ACTIONS(679), + [anon_sym_impl] = ACTIONS(679), + [anon_sym_let] = ACTIONS(679), + [anon_sym_loop] = ACTIONS(679), + [anon_sym_match] = ACTIONS(679), + [anon_sym_mod] = ACTIONS(679), + [anon_sym_pub] = ACTIONS(679), + [anon_sym_return] = ACTIONS(679), + [anon_sym_static] = ACTIONS(679), + [anon_sym_struct] = ACTIONS(679), + [anon_sym_trait] = ACTIONS(679), + [anon_sym_type] = ACTIONS(679), + [anon_sym_union] = ACTIONS(679), + [anon_sym_unsafe] = ACTIONS(679), + [anon_sym_use] = ACTIONS(679), + [anon_sym_where] = ACTIONS(679), + [anon_sym_while] = ACTIONS(679), + [sym_mutable_specifier] = ACTIONS(679), + [sym_integer_literal] = ACTIONS(695), + [aux_sym_string_literal_token1] = ACTIONS(697), + [sym_char_literal] = ACTIONS(695), + [anon_sym_true] = ACTIONS(699), + [anon_sym_false] = ACTIONS(699), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(679), + [sym_super] = ACTIONS(679), + [sym_crate] = ACTIONS(679), + [sym__raw_string_literal_start] = ACTIONS(701), + [sym_float_literal] = ACTIONS(695), }, [STATE(106)] = { - [sym_delim_token_tree] = STATE(207), - [sym__delim_tokens] = STATE(208), - [sym__non_delim_token] = STATE(207), - [sym__literal] = STATE(206), - [sym_string_literal] = STATE(212), - [sym_raw_string_literal] = STATE(212), - [sym_boolean_literal] = STATE(212), + [sym_delim_token_tree] = STATE(208), + [sym__delim_tokens] = STATE(209), + [sym__non_delim_token] = STATE(208), + [sym__literal] = STATE(204), + [sym_string_literal] = STATE(201), + [sym_raw_string_literal] = STATE(201), + [sym_boolean_literal] = STATE(201), [sym_line_comment] = STATE(106), [sym_block_comment] = STATE(106), - [aux_sym__non_special_token_repeat1] = STATE(181), - [aux_sym_delim_token_tree_repeat1] = STATE(109), - [sym_identifier] = ACTIONS(674), - [anon_sym_SEMI] = ACTIONS(676), - [anon_sym_LPAREN] = ACTIONS(678), - [anon_sym_RPAREN] = ACTIONS(728), - [anon_sym_LBRACK] = ACTIONS(680), - [anon_sym_LBRACE] = ACTIONS(682), - [anon_sym_EQ_GT] = ACTIONS(676), - [anon_sym_COLON] = ACTIONS(686), - [anon_sym_DOLLAR] = ACTIONS(688), - [anon_sym_PLUS] = ACTIONS(686), - [anon_sym_STAR] = ACTIONS(686), - [anon_sym_QMARK] = ACTIONS(676), - [anon_sym_u8] = ACTIONS(674), - [anon_sym_i8] = ACTIONS(674), - [anon_sym_u16] = ACTIONS(674), - [anon_sym_i16] = ACTIONS(674), - [anon_sym_u32] = ACTIONS(674), - [anon_sym_i32] = ACTIONS(674), - [anon_sym_u64] = ACTIONS(674), - [anon_sym_i64] = ACTIONS(674), - [anon_sym_u128] = ACTIONS(674), - [anon_sym_i128] = ACTIONS(674), - [anon_sym_isize] = ACTIONS(674), - [anon_sym_usize] = ACTIONS(674), - [anon_sym_f32] = ACTIONS(674), - [anon_sym_f64] = ACTIONS(674), - [anon_sym_bool] = ACTIONS(674), - [anon_sym_str] = ACTIONS(674), - [anon_sym_char] = ACTIONS(674), - [anon_sym_DASH] = ACTIONS(686), - [anon_sym_SLASH] = ACTIONS(686), - [anon_sym_PERCENT] = ACTIONS(686), - [anon_sym_CARET] = ACTIONS(686), - [anon_sym_BANG] = ACTIONS(686), - [anon_sym_AMP] = ACTIONS(686), - [anon_sym_PIPE] = ACTIONS(686), - [anon_sym_AMP_AMP] = ACTIONS(676), - [anon_sym_PIPE_PIPE] = ACTIONS(676), - [anon_sym_LT_LT] = ACTIONS(686), - [anon_sym_GT_GT] = ACTIONS(686), - [anon_sym_PLUS_EQ] = ACTIONS(676), - [anon_sym_DASH_EQ] = ACTIONS(676), - [anon_sym_STAR_EQ] = ACTIONS(676), - [anon_sym_SLASH_EQ] = ACTIONS(676), - [anon_sym_PERCENT_EQ] = ACTIONS(676), - [anon_sym_CARET_EQ] = ACTIONS(676), - [anon_sym_AMP_EQ] = ACTIONS(676), - [anon_sym_PIPE_EQ] = ACTIONS(676), - [anon_sym_LT_LT_EQ] = ACTIONS(676), - [anon_sym_GT_GT_EQ] = ACTIONS(676), - [anon_sym_EQ] = ACTIONS(686), - [anon_sym_EQ_EQ] = ACTIONS(676), - [anon_sym_BANG_EQ] = ACTIONS(676), - [anon_sym_GT] = ACTIONS(686), - [anon_sym_LT] = ACTIONS(686), - [anon_sym_GT_EQ] = ACTIONS(676), - [anon_sym_LT_EQ] = ACTIONS(676), - [anon_sym_AT] = ACTIONS(676), - [anon_sym__] = ACTIONS(686), - [anon_sym_DOT] = ACTIONS(686), - [anon_sym_DOT_DOT] = ACTIONS(686), - [anon_sym_DOT_DOT_DOT] = ACTIONS(676), - [anon_sym_DOT_DOT_EQ] = ACTIONS(676), - [anon_sym_COMMA] = ACTIONS(676), - [anon_sym_COLON_COLON] = ACTIONS(676), - [anon_sym_DASH_GT] = ACTIONS(676), - [anon_sym_POUND] = ACTIONS(676), - [anon_sym_SQUOTE] = ACTIONS(674), - [anon_sym_as] = ACTIONS(674), - [anon_sym_async] = ACTIONS(674), - [anon_sym_await] = ACTIONS(674), - [anon_sym_break] = ACTIONS(674), - [anon_sym_const] = ACTIONS(674), - [anon_sym_continue] = ACTIONS(674), - [anon_sym_default] = ACTIONS(674), - [anon_sym_enum] = ACTIONS(674), - [anon_sym_fn] = ACTIONS(674), - [anon_sym_for] = ACTIONS(674), - [anon_sym_gen] = ACTIONS(674), - [anon_sym_if] = ACTIONS(674), - [anon_sym_impl] = ACTIONS(674), - [anon_sym_let] = ACTIONS(674), - [anon_sym_loop] = ACTIONS(674), - [anon_sym_match] = ACTIONS(674), - [anon_sym_mod] = ACTIONS(674), - [anon_sym_pub] = ACTIONS(674), - [anon_sym_return] = ACTIONS(674), - [anon_sym_static] = ACTIONS(674), - [anon_sym_struct] = ACTIONS(674), - [anon_sym_trait] = ACTIONS(674), - [anon_sym_type] = ACTIONS(674), - [anon_sym_union] = ACTIONS(674), - [anon_sym_unsafe] = ACTIONS(674), - [anon_sym_use] = ACTIONS(674), - [anon_sym_where] = ACTIONS(674), - [anon_sym_while] = ACTIONS(674), - [sym_mutable_specifier] = ACTIONS(674), - [sym_integer_literal] = ACTIONS(690), - [aux_sym_string_literal_token1] = ACTIONS(692), - [sym_char_literal] = ACTIONS(690), - [anon_sym_true] = ACTIONS(694), - [anon_sym_false] = ACTIONS(694), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(674), - [sym_super] = ACTIONS(674), - [sym_crate] = ACTIONS(674), - [sym__raw_string_literal_start] = ACTIONS(696), - [sym_float_literal] = ACTIONS(690), + [aux_sym__non_special_token_repeat1] = STATE(180), + [aux_sym_delim_token_tree_repeat1] = STATE(110), + [sym_identifier] = ACTIONS(679), + [anon_sym_SEMI] = ACTIONS(681), + [anon_sym_LPAREN] = ACTIONS(683), + [anon_sym_LBRACK] = ACTIONS(685), + [anon_sym_LBRACE] = ACTIONS(689), + [anon_sym_RBRACE] = ACTIONS(729), + [anon_sym_EQ_GT] = ACTIONS(681), + [anon_sym_COLON] = ACTIONS(691), + [anon_sym_DOLLAR] = ACTIONS(693), + [anon_sym_PLUS] = ACTIONS(691), + [anon_sym_STAR] = ACTIONS(691), + [anon_sym_QMARK] = ACTIONS(681), + [anon_sym_u8] = ACTIONS(679), + [anon_sym_i8] = ACTIONS(679), + [anon_sym_u16] = ACTIONS(679), + [anon_sym_i16] = ACTIONS(679), + [anon_sym_u32] = ACTIONS(679), + [anon_sym_i32] = ACTIONS(679), + [anon_sym_u64] = ACTIONS(679), + [anon_sym_i64] = ACTIONS(679), + [anon_sym_u128] = ACTIONS(679), + [anon_sym_i128] = ACTIONS(679), + [anon_sym_isize] = ACTIONS(679), + [anon_sym_usize] = ACTIONS(679), + [anon_sym_f32] = ACTIONS(679), + [anon_sym_f64] = ACTIONS(679), + [anon_sym_bool] = ACTIONS(679), + [anon_sym_str] = ACTIONS(679), + [anon_sym_char] = ACTIONS(679), + [anon_sym_DASH] = ACTIONS(691), + [anon_sym_SLASH] = ACTIONS(691), + [anon_sym_PERCENT] = ACTIONS(691), + [anon_sym_CARET] = ACTIONS(691), + [anon_sym_BANG] = ACTIONS(691), + [anon_sym_AMP] = ACTIONS(691), + [anon_sym_PIPE] = ACTIONS(691), + [anon_sym_AMP_AMP] = ACTIONS(681), + [anon_sym_PIPE_PIPE] = ACTIONS(681), + [anon_sym_LT_LT] = ACTIONS(691), + [anon_sym_GT_GT] = ACTIONS(691), + [anon_sym_PLUS_EQ] = ACTIONS(681), + [anon_sym_DASH_EQ] = ACTIONS(681), + [anon_sym_STAR_EQ] = ACTIONS(681), + [anon_sym_SLASH_EQ] = ACTIONS(681), + [anon_sym_PERCENT_EQ] = ACTIONS(681), + [anon_sym_CARET_EQ] = ACTIONS(681), + [anon_sym_AMP_EQ] = ACTIONS(681), + [anon_sym_PIPE_EQ] = ACTIONS(681), + [anon_sym_LT_LT_EQ] = ACTIONS(681), + [anon_sym_GT_GT_EQ] = ACTIONS(681), + [anon_sym_EQ] = ACTIONS(691), + [anon_sym_EQ_EQ] = ACTIONS(681), + [anon_sym_BANG_EQ] = ACTIONS(681), + [anon_sym_GT] = ACTIONS(691), + [anon_sym_LT] = ACTIONS(691), + [anon_sym_GT_EQ] = ACTIONS(681), + [anon_sym_LT_EQ] = ACTIONS(681), + [anon_sym_AT] = ACTIONS(681), + [anon_sym__] = ACTIONS(691), + [anon_sym_DOT] = ACTIONS(691), + [anon_sym_DOT_DOT] = ACTIONS(691), + [anon_sym_DOT_DOT_DOT] = ACTIONS(681), + [anon_sym_DOT_DOT_EQ] = ACTIONS(681), + [anon_sym_COMMA] = ACTIONS(681), + [anon_sym_COLON_COLON] = ACTIONS(681), + [anon_sym_DASH_GT] = ACTIONS(681), + [anon_sym_POUND] = ACTIONS(681), + [anon_sym_SQUOTE] = ACTIONS(679), + [anon_sym_as] = ACTIONS(679), + [anon_sym_async] = ACTIONS(679), + [anon_sym_await] = ACTIONS(679), + [anon_sym_break] = ACTIONS(679), + [anon_sym_const] = ACTIONS(679), + [anon_sym_continue] = ACTIONS(679), + [anon_sym_default] = ACTIONS(679), + [anon_sym_enum] = ACTIONS(679), + [anon_sym_fn] = ACTIONS(679), + [anon_sym_for] = ACTIONS(679), + [anon_sym_gen] = ACTIONS(679), + [anon_sym_if] = ACTIONS(679), + [anon_sym_impl] = ACTIONS(679), + [anon_sym_let] = ACTIONS(679), + [anon_sym_loop] = ACTIONS(679), + [anon_sym_match] = ACTIONS(679), + [anon_sym_mod] = ACTIONS(679), + [anon_sym_pub] = ACTIONS(679), + [anon_sym_return] = ACTIONS(679), + [anon_sym_static] = ACTIONS(679), + [anon_sym_struct] = ACTIONS(679), + [anon_sym_trait] = ACTIONS(679), + [anon_sym_type] = ACTIONS(679), + [anon_sym_union] = ACTIONS(679), + [anon_sym_unsafe] = ACTIONS(679), + [anon_sym_use] = ACTIONS(679), + [anon_sym_where] = ACTIONS(679), + [anon_sym_while] = ACTIONS(679), + [sym_mutable_specifier] = ACTIONS(679), + [sym_integer_literal] = ACTIONS(695), + [aux_sym_string_literal_token1] = ACTIONS(697), + [sym_char_literal] = ACTIONS(695), + [anon_sym_true] = ACTIONS(699), + [anon_sym_false] = ACTIONS(699), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(679), + [sym_super] = ACTIONS(679), + [sym_crate] = ACTIONS(679), + [sym__raw_string_literal_start] = ACTIONS(701), + [sym_float_literal] = ACTIONS(695), }, [STATE(107)] = { - [sym_delim_token_tree] = STATE(207), - [sym__delim_tokens] = STATE(208), - [sym__non_delim_token] = STATE(207), - [sym__literal] = STATE(206), - [sym_string_literal] = STATE(212), - [sym_raw_string_literal] = STATE(212), - [sym_boolean_literal] = STATE(212), + [sym_token_tree] = STATE(170), + [sym_token_repetition] = STATE(170), + [sym__literal] = STATE(170), + [sym_string_literal] = STATE(174), + [sym_raw_string_literal] = STATE(174), + [sym_boolean_literal] = STATE(174), [sym_line_comment] = STATE(107), [sym_block_comment] = STATE(107), - [aux_sym__non_special_token_repeat1] = STATE(181), - [aux_sym_delim_token_tree_repeat1] = STATE(110), - [sym_identifier] = ACTIONS(674), - [anon_sym_SEMI] = ACTIONS(676), - [anon_sym_LPAREN] = ACTIONS(678), - [anon_sym_LBRACK] = ACTIONS(680), - [anon_sym_RBRACK] = ACTIONS(728), - [anon_sym_LBRACE] = ACTIONS(682), - [anon_sym_EQ_GT] = ACTIONS(676), - [anon_sym_COLON] = ACTIONS(686), - [anon_sym_DOLLAR] = ACTIONS(688), - [anon_sym_PLUS] = ACTIONS(686), - [anon_sym_STAR] = ACTIONS(686), - [anon_sym_QMARK] = ACTIONS(676), - [anon_sym_u8] = ACTIONS(674), - [anon_sym_i8] = ACTIONS(674), - [anon_sym_u16] = ACTIONS(674), - [anon_sym_i16] = ACTIONS(674), - [anon_sym_u32] = ACTIONS(674), - [anon_sym_i32] = ACTIONS(674), - [anon_sym_u64] = ACTIONS(674), - [anon_sym_i64] = ACTIONS(674), - [anon_sym_u128] = ACTIONS(674), - [anon_sym_i128] = ACTIONS(674), - [anon_sym_isize] = ACTIONS(674), - [anon_sym_usize] = ACTIONS(674), - [anon_sym_f32] = ACTIONS(674), - [anon_sym_f64] = ACTIONS(674), - [anon_sym_bool] = ACTIONS(674), - [anon_sym_str] = ACTIONS(674), - [anon_sym_char] = ACTIONS(674), - [anon_sym_DASH] = ACTIONS(686), - [anon_sym_SLASH] = ACTIONS(686), - [anon_sym_PERCENT] = ACTIONS(686), - [anon_sym_CARET] = ACTIONS(686), - [anon_sym_BANG] = ACTIONS(686), - [anon_sym_AMP] = ACTIONS(686), - [anon_sym_PIPE] = ACTIONS(686), - [anon_sym_AMP_AMP] = ACTIONS(676), - [anon_sym_PIPE_PIPE] = ACTIONS(676), - [anon_sym_LT_LT] = ACTIONS(686), - [anon_sym_GT_GT] = ACTIONS(686), - [anon_sym_PLUS_EQ] = ACTIONS(676), - [anon_sym_DASH_EQ] = ACTIONS(676), - [anon_sym_STAR_EQ] = ACTIONS(676), - [anon_sym_SLASH_EQ] = ACTIONS(676), - [anon_sym_PERCENT_EQ] = ACTIONS(676), - [anon_sym_CARET_EQ] = ACTIONS(676), - [anon_sym_AMP_EQ] = ACTIONS(676), - [anon_sym_PIPE_EQ] = ACTIONS(676), - [anon_sym_LT_LT_EQ] = ACTIONS(676), - [anon_sym_GT_GT_EQ] = ACTIONS(676), - [anon_sym_EQ] = ACTIONS(686), - [anon_sym_EQ_EQ] = ACTIONS(676), - [anon_sym_BANG_EQ] = ACTIONS(676), - [anon_sym_GT] = ACTIONS(686), - [anon_sym_LT] = ACTIONS(686), - [anon_sym_GT_EQ] = ACTIONS(676), - [anon_sym_LT_EQ] = ACTIONS(676), - [anon_sym_AT] = ACTIONS(676), - [anon_sym__] = ACTIONS(686), - [anon_sym_DOT] = ACTIONS(686), - [anon_sym_DOT_DOT] = ACTIONS(686), - [anon_sym_DOT_DOT_DOT] = ACTIONS(676), - [anon_sym_DOT_DOT_EQ] = ACTIONS(676), - [anon_sym_COMMA] = ACTIONS(676), - [anon_sym_COLON_COLON] = ACTIONS(676), - [anon_sym_DASH_GT] = ACTIONS(676), - [anon_sym_POUND] = ACTIONS(676), - [anon_sym_SQUOTE] = ACTIONS(674), - [anon_sym_as] = ACTIONS(674), - [anon_sym_async] = ACTIONS(674), - [anon_sym_await] = ACTIONS(674), - [anon_sym_break] = ACTIONS(674), - [anon_sym_const] = ACTIONS(674), - [anon_sym_continue] = ACTIONS(674), - [anon_sym_default] = ACTIONS(674), - [anon_sym_enum] = ACTIONS(674), - [anon_sym_fn] = ACTIONS(674), - [anon_sym_for] = ACTIONS(674), - [anon_sym_gen] = ACTIONS(674), - [anon_sym_if] = ACTIONS(674), - [anon_sym_impl] = ACTIONS(674), - [anon_sym_let] = ACTIONS(674), - [anon_sym_loop] = ACTIONS(674), - [anon_sym_match] = ACTIONS(674), - [anon_sym_mod] = ACTIONS(674), - [anon_sym_pub] = ACTIONS(674), - [anon_sym_return] = ACTIONS(674), - [anon_sym_static] = ACTIONS(674), - [anon_sym_struct] = ACTIONS(674), - [anon_sym_trait] = ACTIONS(674), - [anon_sym_type] = ACTIONS(674), - [anon_sym_union] = ACTIONS(674), - [anon_sym_unsafe] = ACTIONS(674), - [anon_sym_use] = ACTIONS(674), - [anon_sym_where] = ACTIONS(674), - [anon_sym_while] = ACTIONS(674), - [sym_mutable_specifier] = ACTIONS(674), - [sym_integer_literal] = ACTIONS(690), - [aux_sym_string_literal_token1] = ACTIONS(692), - [sym_char_literal] = ACTIONS(690), - [anon_sym_true] = ACTIONS(694), - [anon_sym_false] = ACTIONS(694), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(674), - [sym_super] = ACTIONS(674), - [sym_crate] = ACTIONS(674), - [sym__raw_string_literal_start] = ACTIONS(696), - [sym_float_literal] = ACTIONS(690), + [aux_sym_token_tree_repeat1] = STATE(86), + [aux_sym__non_special_token_repeat1] = STATE(136), + [sym_identifier] = ACTIONS(703), + [anon_sym_SEMI] = ACTIONS(572), + [anon_sym_LPAREN] = ACTIONS(705), + [anon_sym_LBRACK] = ACTIONS(707), + [anon_sym_LBRACE] = ACTIONS(711), + [anon_sym_RBRACE] = ACTIONS(723), + [anon_sym_EQ_GT] = ACTIONS(572), + [anon_sym_COLON] = ACTIONS(582), + [anon_sym_DOLLAR] = ACTIONS(713), + [anon_sym_PLUS] = ACTIONS(582), + [anon_sym_STAR] = ACTIONS(582), + [anon_sym_QMARK] = ACTIONS(572), + [anon_sym_u8] = ACTIONS(703), + [anon_sym_i8] = ACTIONS(703), + [anon_sym_u16] = ACTIONS(703), + [anon_sym_i16] = ACTIONS(703), + [anon_sym_u32] = ACTIONS(703), + [anon_sym_i32] = ACTIONS(703), + [anon_sym_u64] = ACTIONS(703), + [anon_sym_i64] = ACTIONS(703), + [anon_sym_u128] = ACTIONS(703), + [anon_sym_i128] = ACTIONS(703), + [anon_sym_isize] = ACTIONS(703), + [anon_sym_usize] = ACTIONS(703), + [anon_sym_f32] = ACTIONS(703), + [anon_sym_f64] = ACTIONS(703), + [anon_sym_bool] = ACTIONS(703), + [anon_sym_str] = ACTIONS(703), + [anon_sym_char] = ACTIONS(703), + [anon_sym_DASH] = ACTIONS(582), + [anon_sym_SLASH] = ACTIONS(582), + [anon_sym_PERCENT] = ACTIONS(582), + [anon_sym_CARET] = ACTIONS(582), + [anon_sym_BANG] = ACTIONS(582), + [anon_sym_AMP] = ACTIONS(582), + [anon_sym_PIPE] = ACTIONS(582), + [anon_sym_AMP_AMP] = ACTIONS(572), + [anon_sym_PIPE_PIPE] = ACTIONS(572), + [anon_sym_LT_LT] = ACTIONS(582), + [anon_sym_GT_GT] = ACTIONS(582), + [anon_sym_PLUS_EQ] = ACTIONS(572), + [anon_sym_DASH_EQ] = ACTIONS(572), + [anon_sym_STAR_EQ] = ACTIONS(572), + [anon_sym_SLASH_EQ] = ACTIONS(572), + [anon_sym_PERCENT_EQ] = ACTIONS(572), + [anon_sym_CARET_EQ] = ACTIONS(572), + [anon_sym_AMP_EQ] = ACTIONS(572), + [anon_sym_PIPE_EQ] = ACTIONS(572), + [anon_sym_LT_LT_EQ] = ACTIONS(572), + [anon_sym_GT_GT_EQ] = ACTIONS(572), + [anon_sym_EQ] = ACTIONS(582), + [anon_sym_EQ_EQ] = ACTIONS(572), + [anon_sym_BANG_EQ] = ACTIONS(572), + [anon_sym_GT] = ACTIONS(582), + [anon_sym_LT] = ACTIONS(582), + [anon_sym_GT_EQ] = ACTIONS(572), + [anon_sym_LT_EQ] = ACTIONS(572), + [anon_sym_AT] = ACTIONS(572), + [anon_sym__] = ACTIONS(582), + [anon_sym_DOT] = ACTIONS(582), + [anon_sym_DOT_DOT] = ACTIONS(582), + [anon_sym_DOT_DOT_DOT] = ACTIONS(572), + [anon_sym_DOT_DOT_EQ] = ACTIONS(572), + [anon_sym_COMMA] = ACTIONS(572), + [anon_sym_COLON_COLON] = ACTIONS(572), + [anon_sym_DASH_GT] = ACTIONS(572), + [anon_sym_POUND] = ACTIONS(572), + [anon_sym_SQUOTE] = ACTIONS(703), + [anon_sym_as] = ACTIONS(703), + [anon_sym_async] = ACTIONS(703), + [anon_sym_await] = ACTIONS(703), + [anon_sym_break] = ACTIONS(703), + [anon_sym_const] = ACTIONS(703), + [anon_sym_continue] = ACTIONS(703), + [anon_sym_default] = ACTIONS(703), + [anon_sym_enum] = ACTIONS(703), + [anon_sym_fn] = ACTIONS(703), + [anon_sym_for] = ACTIONS(703), + [anon_sym_gen] = ACTIONS(703), + [anon_sym_if] = ACTIONS(703), + [anon_sym_impl] = ACTIONS(703), + [anon_sym_let] = ACTIONS(703), + [anon_sym_loop] = ACTIONS(703), + [anon_sym_match] = ACTIONS(703), + [anon_sym_mod] = ACTIONS(703), + [anon_sym_pub] = ACTIONS(703), + [anon_sym_return] = ACTIONS(703), + [anon_sym_static] = ACTIONS(703), + [anon_sym_struct] = ACTIONS(703), + [anon_sym_trait] = ACTIONS(703), + [anon_sym_type] = ACTIONS(703), + [anon_sym_union] = ACTIONS(703), + [anon_sym_unsafe] = ACTIONS(703), + [anon_sym_use] = ACTIONS(703), + [anon_sym_where] = ACTIONS(703), + [anon_sym_while] = ACTIONS(703), + [sym_mutable_specifier] = ACTIONS(703), + [sym_integer_literal] = ACTIONS(586), + [aux_sym_string_literal_token1] = ACTIONS(588), + [sym_char_literal] = ACTIONS(586), + [anon_sym_true] = ACTIONS(590), + [anon_sym_false] = ACTIONS(590), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(703), + [sym_super] = ACTIONS(703), + [sym_crate] = ACTIONS(703), + [sym_metavariable] = ACTIONS(715), + [sym__raw_string_literal_start] = ACTIONS(594), + [sym_float_literal] = ACTIONS(586), }, [STATE(108)] = { - [sym_delim_token_tree] = STATE(207), - [sym__delim_tokens] = STATE(208), - [sym__non_delim_token] = STATE(207), - [sym__literal] = STATE(206), - [sym_string_literal] = STATE(212), - [sym_raw_string_literal] = STATE(212), - [sym_boolean_literal] = STATE(212), + [sym_delim_token_tree] = STATE(208), + [sym__delim_tokens] = STATE(209), + [sym__non_delim_token] = STATE(208), + [sym__literal] = STATE(204), + [sym_string_literal] = STATE(201), + [sym_raw_string_literal] = STATE(201), + [sym_boolean_literal] = STATE(201), [sym_line_comment] = STATE(108), [sym_block_comment] = STATE(108), - [aux_sym__non_special_token_repeat1] = STATE(181), - [aux_sym_delim_token_tree_repeat1] = STATE(111), - [sym_identifier] = ACTIONS(674), - [anon_sym_SEMI] = ACTIONS(676), - [anon_sym_LPAREN] = ACTIONS(678), - [anon_sym_LBRACK] = ACTIONS(680), - [anon_sym_LBRACE] = ACTIONS(682), - [anon_sym_RBRACE] = ACTIONS(728), - [anon_sym_EQ_GT] = ACTIONS(676), - [anon_sym_COLON] = ACTIONS(686), - [anon_sym_DOLLAR] = ACTIONS(688), - [anon_sym_PLUS] = ACTIONS(686), - [anon_sym_STAR] = ACTIONS(686), - [anon_sym_QMARK] = ACTIONS(676), - [anon_sym_u8] = ACTIONS(674), - [anon_sym_i8] = ACTIONS(674), - [anon_sym_u16] = ACTIONS(674), - [anon_sym_i16] = ACTIONS(674), - [anon_sym_u32] = ACTIONS(674), - [anon_sym_i32] = ACTIONS(674), - [anon_sym_u64] = ACTIONS(674), - [anon_sym_i64] = ACTIONS(674), - [anon_sym_u128] = ACTIONS(674), - [anon_sym_i128] = ACTIONS(674), - [anon_sym_isize] = ACTIONS(674), - [anon_sym_usize] = ACTIONS(674), - [anon_sym_f32] = ACTIONS(674), - [anon_sym_f64] = ACTIONS(674), - [anon_sym_bool] = ACTIONS(674), - [anon_sym_str] = ACTIONS(674), - [anon_sym_char] = ACTIONS(674), - [anon_sym_DASH] = ACTIONS(686), - [anon_sym_SLASH] = ACTIONS(686), - [anon_sym_PERCENT] = ACTIONS(686), - [anon_sym_CARET] = ACTIONS(686), - [anon_sym_BANG] = ACTIONS(686), - [anon_sym_AMP] = ACTIONS(686), - [anon_sym_PIPE] = ACTIONS(686), - [anon_sym_AMP_AMP] = ACTIONS(676), - [anon_sym_PIPE_PIPE] = ACTIONS(676), - [anon_sym_LT_LT] = ACTIONS(686), - [anon_sym_GT_GT] = ACTIONS(686), - [anon_sym_PLUS_EQ] = ACTIONS(676), - [anon_sym_DASH_EQ] = ACTIONS(676), - [anon_sym_STAR_EQ] = ACTIONS(676), - [anon_sym_SLASH_EQ] = ACTIONS(676), - [anon_sym_PERCENT_EQ] = ACTIONS(676), - [anon_sym_CARET_EQ] = ACTIONS(676), - [anon_sym_AMP_EQ] = ACTIONS(676), - [anon_sym_PIPE_EQ] = ACTIONS(676), - [anon_sym_LT_LT_EQ] = ACTIONS(676), - [anon_sym_GT_GT_EQ] = ACTIONS(676), - [anon_sym_EQ] = ACTIONS(686), - [anon_sym_EQ_EQ] = ACTIONS(676), - [anon_sym_BANG_EQ] = ACTIONS(676), - [anon_sym_GT] = ACTIONS(686), - [anon_sym_LT] = ACTIONS(686), - [anon_sym_GT_EQ] = ACTIONS(676), - [anon_sym_LT_EQ] = ACTIONS(676), - [anon_sym_AT] = ACTIONS(676), - [anon_sym__] = ACTIONS(686), - [anon_sym_DOT] = ACTIONS(686), - [anon_sym_DOT_DOT] = ACTIONS(686), - [anon_sym_DOT_DOT_DOT] = ACTIONS(676), - [anon_sym_DOT_DOT_EQ] = ACTIONS(676), - [anon_sym_COMMA] = ACTIONS(676), - [anon_sym_COLON_COLON] = ACTIONS(676), - [anon_sym_DASH_GT] = ACTIONS(676), - [anon_sym_POUND] = ACTIONS(676), - [anon_sym_SQUOTE] = ACTIONS(674), - [anon_sym_as] = ACTIONS(674), - [anon_sym_async] = ACTIONS(674), - [anon_sym_await] = ACTIONS(674), - [anon_sym_break] = ACTIONS(674), - [anon_sym_const] = ACTIONS(674), - [anon_sym_continue] = ACTIONS(674), - [anon_sym_default] = ACTIONS(674), - [anon_sym_enum] = ACTIONS(674), - [anon_sym_fn] = ACTIONS(674), - [anon_sym_for] = ACTIONS(674), - [anon_sym_gen] = ACTIONS(674), - [anon_sym_if] = ACTIONS(674), - [anon_sym_impl] = ACTIONS(674), - [anon_sym_let] = ACTIONS(674), - [anon_sym_loop] = ACTIONS(674), - [anon_sym_match] = ACTIONS(674), - [anon_sym_mod] = ACTIONS(674), - [anon_sym_pub] = ACTIONS(674), - [anon_sym_return] = ACTIONS(674), - [anon_sym_static] = ACTIONS(674), - [anon_sym_struct] = ACTIONS(674), - [anon_sym_trait] = ACTIONS(674), - [anon_sym_type] = ACTIONS(674), - [anon_sym_union] = ACTIONS(674), - [anon_sym_unsafe] = ACTIONS(674), - [anon_sym_use] = ACTIONS(674), - [anon_sym_where] = ACTIONS(674), - [anon_sym_while] = ACTIONS(674), - [sym_mutable_specifier] = ACTIONS(674), - [sym_integer_literal] = ACTIONS(690), - [aux_sym_string_literal_token1] = ACTIONS(692), - [sym_char_literal] = ACTIONS(690), - [anon_sym_true] = ACTIONS(694), - [anon_sym_false] = ACTIONS(694), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(674), - [sym_super] = ACTIONS(674), - [sym_crate] = ACTIONS(674), - [sym__raw_string_literal_start] = ACTIONS(696), - [sym_float_literal] = ACTIONS(690), + [aux_sym__non_special_token_repeat1] = STATE(180), + [aux_sym_delim_token_tree_repeat1] = STATE(72), + [sym_identifier] = ACTIONS(679), + [anon_sym_SEMI] = ACTIONS(681), + [anon_sym_LPAREN] = ACTIONS(683), + [anon_sym_RPAREN] = ACTIONS(731), + [anon_sym_LBRACK] = ACTIONS(685), + [anon_sym_LBRACE] = ACTIONS(689), + [anon_sym_EQ_GT] = ACTIONS(681), + [anon_sym_COLON] = ACTIONS(691), + [anon_sym_DOLLAR] = ACTIONS(693), + [anon_sym_PLUS] = ACTIONS(691), + [anon_sym_STAR] = ACTIONS(691), + [anon_sym_QMARK] = ACTIONS(681), + [anon_sym_u8] = ACTIONS(679), + [anon_sym_i8] = ACTIONS(679), + [anon_sym_u16] = ACTIONS(679), + [anon_sym_i16] = ACTIONS(679), + [anon_sym_u32] = ACTIONS(679), + [anon_sym_i32] = ACTIONS(679), + [anon_sym_u64] = ACTIONS(679), + [anon_sym_i64] = ACTIONS(679), + [anon_sym_u128] = ACTIONS(679), + [anon_sym_i128] = ACTIONS(679), + [anon_sym_isize] = ACTIONS(679), + [anon_sym_usize] = ACTIONS(679), + [anon_sym_f32] = ACTIONS(679), + [anon_sym_f64] = ACTIONS(679), + [anon_sym_bool] = ACTIONS(679), + [anon_sym_str] = ACTIONS(679), + [anon_sym_char] = ACTIONS(679), + [anon_sym_DASH] = ACTIONS(691), + [anon_sym_SLASH] = ACTIONS(691), + [anon_sym_PERCENT] = ACTIONS(691), + [anon_sym_CARET] = ACTIONS(691), + [anon_sym_BANG] = ACTIONS(691), + [anon_sym_AMP] = ACTIONS(691), + [anon_sym_PIPE] = ACTIONS(691), + [anon_sym_AMP_AMP] = ACTIONS(681), + [anon_sym_PIPE_PIPE] = ACTIONS(681), + [anon_sym_LT_LT] = ACTIONS(691), + [anon_sym_GT_GT] = ACTIONS(691), + [anon_sym_PLUS_EQ] = ACTIONS(681), + [anon_sym_DASH_EQ] = ACTIONS(681), + [anon_sym_STAR_EQ] = ACTIONS(681), + [anon_sym_SLASH_EQ] = ACTIONS(681), + [anon_sym_PERCENT_EQ] = ACTIONS(681), + [anon_sym_CARET_EQ] = ACTIONS(681), + [anon_sym_AMP_EQ] = ACTIONS(681), + [anon_sym_PIPE_EQ] = ACTIONS(681), + [anon_sym_LT_LT_EQ] = ACTIONS(681), + [anon_sym_GT_GT_EQ] = ACTIONS(681), + [anon_sym_EQ] = ACTIONS(691), + [anon_sym_EQ_EQ] = ACTIONS(681), + [anon_sym_BANG_EQ] = ACTIONS(681), + [anon_sym_GT] = ACTIONS(691), + [anon_sym_LT] = ACTIONS(691), + [anon_sym_GT_EQ] = ACTIONS(681), + [anon_sym_LT_EQ] = ACTIONS(681), + [anon_sym_AT] = ACTIONS(681), + [anon_sym__] = ACTIONS(691), + [anon_sym_DOT] = ACTIONS(691), + [anon_sym_DOT_DOT] = ACTIONS(691), + [anon_sym_DOT_DOT_DOT] = ACTIONS(681), + [anon_sym_DOT_DOT_EQ] = ACTIONS(681), + [anon_sym_COMMA] = ACTIONS(681), + [anon_sym_COLON_COLON] = ACTIONS(681), + [anon_sym_DASH_GT] = ACTIONS(681), + [anon_sym_POUND] = ACTIONS(681), + [anon_sym_SQUOTE] = ACTIONS(679), + [anon_sym_as] = ACTIONS(679), + [anon_sym_async] = ACTIONS(679), + [anon_sym_await] = ACTIONS(679), + [anon_sym_break] = ACTIONS(679), + [anon_sym_const] = ACTIONS(679), + [anon_sym_continue] = ACTIONS(679), + [anon_sym_default] = ACTIONS(679), + [anon_sym_enum] = ACTIONS(679), + [anon_sym_fn] = ACTIONS(679), + [anon_sym_for] = ACTIONS(679), + [anon_sym_gen] = ACTIONS(679), + [anon_sym_if] = ACTIONS(679), + [anon_sym_impl] = ACTIONS(679), + [anon_sym_let] = ACTIONS(679), + [anon_sym_loop] = ACTIONS(679), + [anon_sym_match] = ACTIONS(679), + [anon_sym_mod] = ACTIONS(679), + [anon_sym_pub] = ACTIONS(679), + [anon_sym_return] = ACTIONS(679), + [anon_sym_static] = ACTIONS(679), + [anon_sym_struct] = ACTIONS(679), + [anon_sym_trait] = ACTIONS(679), + [anon_sym_type] = ACTIONS(679), + [anon_sym_union] = ACTIONS(679), + [anon_sym_unsafe] = ACTIONS(679), + [anon_sym_use] = ACTIONS(679), + [anon_sym_where] = ACTIONS(679), + [anon_sym_while] = ACTIONS(679), + [sym_mutable_specifier] = ACTIONS(679), + [sym_integer_literal] = ACTIONS(695), + [aux_sym_string_literal_token1] = ACTIONS(697), + [sym_char_literal] = ACTIONS(695), + [anon_sym_true] = ACTIONS(699), + [anon_sym_false] = ACTIONS(699), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(679), + [sym_super] = ACTIONS(679), + [sym_crate] = ACTIONS(679), + [sym__raw_string_literal_start] = ACTIONS(701), + [sym_float_literal] = ACTIONS(695), }, [STATE(109)] = { - [sym_delim_token_tree] = STATE(207), - [sym__delim_tokens] = STATE(208), - [sym__non_delim_token] = STATE(207), - [sym__literal] = STATE(206), - [sym_string_literal] = STATE(212), - [sym_raw_string_literal] = STATE(212), - [sym_boolean_literal] = STATE(212), + [sym_delim_token_tree] = STATE(208), + [sym__delim_tokens] = STATE(209), + [sym__non_delim_token] = STATE(208), + [sym__literal] = STATE(204), + [sym_string_literal] = STATE(201), + [sym_raw_string_literal] = STATE(201), + [sym_boolean_literal] = STATE(201), [sym_line_comment] = STATE(109), [sym_block_comment] = STATE(109), - [aux_sym__non_special_token_repeat1] = STATE(181), - [aux_sym_delim_token_tree_repeat1] = STATE(68), - [sym_identifier] = ACTIONS(674), - [anon_sym_SEMI] = ACTIONS(676), - [anon_sym_LPAREN] = ACTIONS(678), - [anon_sym_RPAREN] = ACTIONS(730), - [anon_sym_LBRACK] = ACTIONS(680), - [anon_sym_LBRACE] = ACTIONS(682), - [anon_sym_EQ_GT] = ACTIONS(676), - [anon_sym_COLON] = ACTIONS(686), - [anon_sym_DOLLAR] = ACTIONS(688), - [anon_sym_PLUS] = ACTIONS(686), - [anon_sym_STAR] = ACTIONS(686), - [anon_sym_QMARK] = ACTIONS(676), - [anon_sym_u8] = ACTIONS(674), - [anon_sym_i8] = ACTIONS(674), - [anon_sym_u16] = ACTIONS(674), - [anon_sym_i16] = ACTIONS(674), - [anon_sym_u32] = ACTIONS(674), - [anon_sym_i32] = ACTIONS(674), - [anon_sym_u64] = ACTIONS(674), - [anon_sym_i64] = ACTIONS(674), - [anon_sym_u128] = ACTIONS(674), - [anon_sym_i128] = ACTIONS(674), - [anon_sym_isize] = ACTIONS(674), - [anon_sym_usize] = ACTIONS(674), - [anon_sym_f32] = ACTIONS(674), - [anon_sym_f64] = ACTIONS(674), - [anon_sym_bool] = ACTIONS(674), - [anon_sym_str] = ACTIONS(674), - [anon_sym_char] = ACTIONS(674), - [anon_sym_DASH] = ACTIONS(686), - [anon_sym_SLASH] = ACTIONS(686), - [anon_sym_PERCENT] = ACTIONS(686), - [anon_sym_CARET] = ACTIONS(686), - [anon_sym_BANG] = ACTIONS(686), - [anon_sym_AMP] = ACTIONS(686), - [anon_sym_PIPE] = ACTIONS(686), - [anon_sym_AMP_AMP] = ACTIONS(676), - [anon_sym_PIPE_PIPE] = ACTIONS(676), - [anon_sym_LT_LT] = ACTIONS(686), - [anon_sym_GT_GT] = ACTIONS(686), - [anon_sym_PLUS_EQ] = ACTIONS(676), - [anon_sym_DASH_EQ] = ACTIONS(676), - [anon_sym_STAR_EQ] = ACTIONS(676), - [anon_sym_SLASH_EQ] = ACTIONS(676), - [anon_sym_PERCENT_EQ] = ACTIONS(676), - [anon_sym_CARET_EQ] = ACTIONS(676), - [anon_sym_AMP_EQ] = ACTIONS(676), - [anon_sym_PIPE_EQ] = ACTIONS(676), - [anon_sym_LT_LT_EQ] = ACTIONS(676), - [anon_sym_GT_GT_EQ] = ACTIONS(676), - [anon_sym_EQ] = ACTIONS(686), - [anon_sym_EQ_EQ] = ACTIONS(676), - [anon_sym_BANG_EQ] = ACTIONS(676), - [anon_sym_GT] = ACTIONS(686), - [anon_sym_LT] = ACTIONS(686), - [anon_sym_GT_EQ] = ACTIONS(676), - [anon_sym_LT_EQ] = ACTIONS(676), - [anon_sym_AT] = ACTIONS(676), - [anon_sym__] = ACTIONS(686), - [anon_sym_DOT] = ACTIONS(686), - [anon_sym_DOT_DOT] = ACTIONS(686), - [anon_sym_DOT_DOT_DOT] = ACTIONS(676), - [anon_sym_DOT_DOT_EQ] = ACTIONS(676), - [anon_sym_COMMA] = ACTIONS(676), - [anon_sym_COLON_COLON] = ACTIONS(676), - [anon_sym_DASH_GT] = ACTIONS(676), - [anon_sym_POUND] = ACTIONS(676), - [anon_sym_SQUOTE] = ACTIONS(674), - [anon_sym_as] = ACTIONS(674), - [anon_sym_async] = ACTIONS(674), - [anon_sym_await] = ACTIONS(674), - [anon_sym_break] = ACTIONS(674), - [anon_sym_const] = ACTIONS(674), - [anon_sym_continue] = ACTIONS(674), - [anon_sym_default] = ACTIONS(674), - [anon_sym_enum] = ACTIONS(674), - [anon_sym_fn] = ACTIONS(674), - [anon_sym_for] = ACTIONS(674), - [anon_sym_gen] = ACTIONS(674), - [anon_sym_if] = ACTIONS(674), - [anon_sym_impl] = ACTIONS(674), - [anon_sym_let] = ACTIONS(674), - [anon_sym_loop] = ACTIONS(674), - [anon_sym_match] = ACTIONS(674), - [anon_sym_mod] = ACTIONS(674), - [anon_sym_pub] = ACTIONS(674), - [anon_sym_return] = ACTIONS(674), - [anon_sym_static] = ACTIONS(674), - [anon_sym_struct] = ACTIONS(674), - [anon_sym_trait] = ACTIONS(674), - [anon_sym_type] = ACTIONS(674), - [anon_sym_union] = ACTIONS(674), - [anon_sym_unsafe] = ACTIONS(674), - [anon_sym_use] = ACTIONS(674), - [anon_sym_where] = ACTIONS(674), - [anon_sym_while] = ACTIONS(674), - [sym_mutable_specifier] = ACTIONS(674), - [sym_integer_literal] = ACTIONS(690), - [aux_sym_string_literal_token1] = ACTIONS(692), - [sym_char_literal] = ACTIONS(690), - [anon_sym_true] = ACTIONS(694), - [anon_sym_false] = ACTIONS(694), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(674), - [sym_super] = ACTIONS(674), - [sym_crate] = ACTIONS(674), - [sym__raw_string_literal_start] = ACTIONS(696), - [sym_float_literal] = ACTIONS(690), + [aux_sym__non_special_token_repeat1] = STATE(180), + [aux_sym_delim_token_tree_repeat1] = STATE(72), + [sym_identifier] = ACTIONS(679), + [anon_sym_SEMI] = ACTIONS(681), + [anon_sym_LPAREN] = ACTIONS(683), + [anon_sym_LBRACK] = ACTIONS(685), + [anon_sym_RBRACK] = ACTIONS(731), + [anon_sym_LBRACE] = ACTIONS(689), + [anon_sym_EQ_GT] = ACTIONS(681), + [anon_sym_COLON] = ACTIONS(691), + [anon_sym_DOLLAR] = ACTIONS(693), + [anon_sym_PLUS] = ACTIONS(691), + [anon_sym_STAR] = ACTIONS(691), + [anon_sym_QMARK] = ACTIONS(681), + [anon_sym_u8] = ACTIONS(679), + [anon_sym_i8] = ACTIONS(679), + [anon_sym_u16] = ACTIONS(679), + [anon_sym_i16] = ACTIONS(679), + [anon_sym_u32] = ACTIONS(679), + [anon_sym_i32] = ACTIONS(679), + [anon_sym_u64] = ACTIONS(679), + [anon_sym_i64] = ACTIONS(679), + [anon_sym_u128] = ACTIONS(679), + [anon_sym_i128] = ACTIONS(679), + [anon_sym_isize] = ACTIONS(679), + [anon_sym_usize] = ACTIONS(679), + [anon_sym_f32] = ACTIONS(679), + [anon_sym_f64] = ACTIONS(679), + [anon_sym_bool] = ACTIONS(679), + [anon_sym_str] = ACTIONS(679), + [anon_sym_char] = ACTIONS(679), + [anon_sym_DASH] = ACTIONS(691), + [anon_sym_SLASH] = ACTIONS(691), + [anon_sym_PERCENT] = ACTIONS(691), + [anon_sym_CARET] = ACTIONS(691), + [anon_sym_BANG] = ACTIONS(691), + [anon_sym_AMP] = ACTIONS(691), + [anon_sym_PIPE] = ACTIONS(691), + [anon_sym_AMP_AMP] = ACTIONS(681), + [anon_sym_PIPE_PIPE] = ACTIONS(681), + [anon_sym_LT_LT] = ACTIONS(691), + [anon_sym_GT_GT] = ACTIONS(691), + [anon_sym_PLUS_EQ] = ACTIONS(681), + [anon_sym_DASH_EQ] = ACTIONS(681), + [anon_sym_STAR_EQ] = ACTIONS(681), + [anon_sym_SLASH_EQ] = ACTIONS(681), + [anon_sym_PERCENT_EQ] = ACTIONS(681), + [anon_sym_CARET_EQ] = ACTIONS(681), + [anon_sym_AMP_EQ] = ACTIONS(681), + [anon_sym_PIPE_EQ] = ACTIONS(681), + [anon_sym_LT_LT_EQ] = ACTIONS(681), + [anon_sym_GT_GT_EQ] = ACTIONS(681), + [anon_sym_EQ] = ACTIONS(691), + [anon_sym_EQ_EQ] = ACTIONS(681), + [anon_sym_BANG_EQ] = ACTIONS(681), + [anon_sym_GT] = ACTIONS(691), + [anon_sym_LT] = ACTIONS(691), + [anon_sym_GT_EQ] = ACTIONS(681), + [anon_sym_LT_EQ] = ACTIONS(681), + [anon_sym_AT] = ACTIONS(681), + [anon_sym__] = ACTIONS(691), + [anon_sym_DOT] = ACTIONS(691), + [anon_sym_DOT_DOT] = ACTIONS(691), + [anon_sym_DOT_DOT_DOT] = ACTIONS(681), + [anon_sym_DOT_DOT_EQ] = ACTIONS(681), + [anon_sym_COMMA] = ACTIONS(681), + [anon_sym_COLON_COLON] = ACTIONS(681), + [anon_sym_DASH_GT] = ACTIONS(681), + [anon_sym_POUND] = ACTIONS(681), + [anon_sym_SQUOTE] = ACTIONS(679), + [anon_sym_as] = ACTIONS(679), + [anon_sym_async] = ACTIONS(679), + [anon_sym_await] = ACTIONS(679), + [anon_sym_break] = ACTIONS(679), + [anon_sym_const] = ACTIONS(679), + [anon_sym_continue] = ACTIONS(679), + [anon_sym_default] = ACTIONS(679), + [anon_sym_enum] = ACTIONS(679), + [anon_sym_fn] = ACTIONS(679), + [anon_sym_for] = ACTIONS(679), + [anon_sym_gen] = ACTIONS(679), + [anon_sym_if] = ACTIONS(679), + [anon_sym_impl] = ACTIONS(679), + [anon_sym_let] = ACTIONS(679), + [anon_sym_loop] = ACTIONS(679), + [anon_sym_match] = ACTIONS(679), + [anon_sym_mod] = ACTIONS(679), + [anon_sym_pub] = ACTIONS(679), + [anon_sym_return] = ACTIONS(679), + [anon_sym_static] = ACTIONS(679), + [anon_sym_struct] = ACTIONS(679), + [anon_sym_trait] = ACTIONS(679), + [anon_sym_type] = ACTIONS(679), + [anon_sym_union] = ACTIONS(679), + [anon_sym_unsafe] = ACTIONS(679), + [anon_sym_use] = ACTIONS(679), + [anon_sym_where] = ACTIONS(679), + [anon_sym_while] = ACTIONS(679), + [sym_mutable_specifier] = ACTIONS(679), + [sym_integer_literal] = ACTIONS(695), + [aux_sym_string_literal_token1] = ACTIONS(697), + [sym_char_literal] = ACTIONS(695), + [anon_sym_true] = ACTIONS(699), + [anon_sym_false] = ACTIONS(699), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(679), + [sym_super] = ACTIONS(679), + [sym_crate] = ACTIONS(679), + [sym__raw_string_literal_start] = ACTIONS(701), + [sym_float_literal] = ACTIONS(695), }, [STATE(110)] = { - [sym_delim_token_tree] = STATE(207), - [sym__delim_tokens] = STATE(208), - [sym__non_delim_token] = STATE(207), - [sym__literal] = STATE(206), - [sym_string_literal] = STATE(212), - [sym_raw_string_literal] = STATE(212), - [sym_boolean_literal] = STATE(212), + [sym_delim_token_tree] = STATE(208), + [sym__delim_tokens] = STATE(209), + [sym__non_delim_token] = STATE(208), + [sym__literal] = STATE(204), + [sym_string_literal] = STATE(201), + [sym_raw_string_literal] = STATE(201), + [sym_boolean_literal] = STATE(201), [sym_line_comment] = STATE(110), [sym_block_comment] = STATE(110), - [aux_sym__non_special_token_repeat1] = STATE(181), - [aux_sym_delim_token_tree_repeat1] = STATE(68), - [sym_identifier] = ACTIONS(674), - [anon_sym_SEMI] = ACTIONS(676), - [anon_sym_LPAREN] = ACTIONS(678), - [anon_sym_LBRACK] = ACTIONS(680), - [anon_sym_RBRACK] = ACTIONS(730), - [anon_sym_LBRACE] = ACTIONS(682), - [anon_sym_EQ_GT] = ACTIONS(676), - [anon_sym_COLON] = ACTIONS(686), - [anon_sym_DOLLAR] = ACTIONS(688), - [anon_sym_PLUS] = ACTIONS(686), - [anon_sym_STAR] = ACTIONS(686), - [anon_sym_QMARK] = ACTIONS(676), - [anon_sym_u8] = ACTIONS(674), - [anon_sym_i8] = ACTIONS(674), - [anon_sym_u16] = ACTIONS(674), - [anon_sym_i16] = ACTIONS(674), - [anon_sym_u32] = ACTIONS(674), - [anon_sym_i32] = ACTIONS(674), - [anon_sym_u64] = ACTIONS(674), - [anon_sym_i64] = ACTIONS(674), - [anon_sym_u128] = ACTIONS(674), - [anon_sym_i128] = ACTIONS(674), - [anon_sym_isize] = ACTIONS(674), - [anon_sym_usize] = ACTIONS(674), - [anon_sym_f32] = ACTIONS(674), - [anon_sym_f64] = ACTIONS(674), - [anon_sym_bool] = ACTIONS(674), - [anon_sym_str] = ACTIONS(674), - [anon_sym_char] = ACTIONS(674), - [anon_sym_DASH] = ACTIONS(686), - [anon_sym_SLASH] = ACTIONS(686), - [anon_sym_PERCENT] = ACTIONS(686), - [anon_sym_CARET] = ACTIONS(686), - [anon_sym_BANG] = ACTIONS(686), - [anon_sym_AMP] = ACTIONS(686), - [anon_sym_PIPE] = ACTIONS(686), - [anon_sym_AMP_AMP] = ACTIONS(676), - [anon_sym_PIPE_PIPE] = ACTIONS(676), - [anon_sym_LT_LT] = ACTIONS(686), - [anon_sym_GT_GT] = ACTIONS(686), - [anon_sym_PLUS_EQ] = ACTIONS(676), - [anon_sym_DASH_EQ] = ACTIONS(676), - [anon_sym_STAR_EQ] = ACTIONS(676), - [anon_sym_SLASH_EQ] = ACTIONS(676), - [anon_sym_PERCENT_EQ] = ACTIONS(676), - [anon_sym_CARET_EQ] = ACTIONS(676), - [anon_sym_AMP_EQ] = ACTIONS(676), - [anon_sym_PIPE_EQ] = ACTIONS(676), - [anon_sym_LT_LT_EQ] = ACTIONS(676), - [anon_sym_GT_GT_EQ] = ACTIONS(676), - [anon_sym_EQ] = ACTIONS(686), - [anon_sym_EQ_EQ] = ACTIONS(676), - [anon_sym_BANG_EQ] = ACTIONS(676), - [anon_sym_GT] = ACTIONS(686), - [anon_sym_LT] = ACTIONS(686), - [anon_sym_GT_EQ] = ACTIONS(676), - [anon_sym_LT_EQ] = ACTIONS(676), - [anon_sym_AT] = ACTIONS(676), - [anon_sym__] = ACTIONS(686), - [anon_sym_DOT] = ACTIONS(686), - [anon_sym_DOT_DOT] = ACTIONS(686), - [anon_sym_DOT_DOT_DOT] = ACTIONS(676), - [anon_sym_DOT_DOT_EQ] = ACTIONS(676), - [anon_sym_COMMA] = ACTIONS(676), - [anon_sym_COLON_COLON] = ACTIONS(676), - [anon_sym_DASH_GT] = ACTIONS(676), - [anon_sym_POUND] = ACTIONS(676), - [anon_sym_SQUOTE] = ACTIONS(674), - [anon_sym_as] = ACTIONS(674), - [anon_sym_async] = ACTIONS(674), - [anon_sym_await] = ACTIONS(674), - [anon_sym_break] = ACTIONS(674), - [anon_sym_const] = ACTIONS(674), - [anon_sym_continue] = ACTIONS(674), - [anon_sym_default] = ACTIONS(674), - [anon_sym_enum] = ACTIONS(674), - [anon_sym_fn] = ACTIONS(674), - [anon_sym_for] = ACTIONS(674), - [anon_sym_gen] = ACTIONS(674), - [anon_sym_if] = ACTIONS(674), - [anon_sym_impl] = ACTIONS(674), - [anon_sym_let] = ACTIONS(674), - [anon_sym_loop] = ACTIONS(674), - [anon_sym_match] = ACTIONS(674), - [anon_sym_mod] = ACTIONS(674), - [anon_sym_pub] = ACTIONS(674), - [anon_sym_return] = ACTIONS(674), - [anon_sym_static] = ACTIONS(674), - [anon_sym_struct] = ACTIONS(674), - [anon_sym_trait] = ACTIONS(674), - [anon_sym_type] = ACTIONS(674), - [anon_sym_union] = ACTIONS(674), - [anon_sym_unsafe] = ACTIONS(674), - [anon_sym_use] = ACTIONS(674), - [anon_sym_where] = ACTIONS(674), - [anon_sym_while] = ACTIONS(674), - [sym_mutable_specifier] = ACTIONS(674), - [sym_integer_literal] = ACTIONS(690), - [aux_sym_string_literal_token1] = ACTIONS(692), - [sym_char_literal] = ACTIONS(690), - [anon_sym_true] = ACTIONS(694), - [anon_sym_false] = ACTIONS(694), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(674), - [sym_super] = ACTIONS(674), - [sym_crate] = ACTIONS(674), - [sym__raw_string_literal_start] = ACTIONS(696), - [sym_float_literal] = ACTIONS(690), + [aux_sym__non_special_token_repeat1] = STATE(180), + [aux_sym_delim_token_tree_repeat1] = STATE(72), + [sym_identifier] = ACTIONS(679), + [anon_sym_SEMI] = ACTIONS(681), + [anon_sym_LPAREN] = ACTIONS(683), + [anon_sym_LBRACK] = ACTIONS(685), + [anon_sym_LBRACE] = ACTIONS(689), + [anon_sym_RBRACE] = ACTIONS(731), + [anon_sym_EQ_GT] = ACTIONS(681), + [anon_sym_COLON] = ACTIONS(691), + [anon_sym_DOLLAR] = ACTIONS(693), + [anon_sym_PLUS] = ACTIONS(691), + [anon_sym_STAR] = ACTIONS(691), + [anon_sym_QMARK] = ACTIONS(681), + [anon_sym_u8] = ACTIONS(679), + [anon_sym_i8] = ACTIONS(679), + [anon_sym_u16] = ACTIONS(679), + [anon_sym_i16] = ACTIONS(679), + [anon_sym_u32] = ACTIONS(679), + [anon_sym_i32] = ACTIONS(679), + [anon_sym_u64] = ACTIONS(679), + [anon_sym_i64] = ACTIONS(679), + [anon_sym_u128] = ACTIONS(679), + [anon_sym_i128] = ACTIONS(679), + [anon_sym_isize] = ACTIONS(679), + [anon_sym_usize] = ACTIONS(679), + [anon_sym_f32] = ACTIONS(679), + [anon_sym_f64] = ACTIONS(679), + [anon_sym_bool] = ACTIONS(679), + [anon_sym_str] = ACTIONS(679), + [anon_sym_char] = ACTIONS(679), + [anon_sym_DASH] = ACTIONS(691), + [anon_sym_SLASH] = ACTIONS(691), + [anon_sym_PERCENT] = ACTIONS(691), + [anon_sym_CARET] = ACTIONS(691), + [anon_sym_BANG] = ACTIONS(691), + [anon_sym_AMP] = ACTIONS(691), + [anon_sym_PIPE] = ACTIONS(691), + [anon_sym_AMP_AMP] = ACTIONS(681), + [anon_sym_PIPE_PIPE] = ACTIONS(681), + [anon_sym_LT_LT] = ACTIONS(691), + [anon_sym_GT_GT] = ACTIONS(691), + [anon_sym_PLUS_EQ] = ACTIONS(681), + [anon_sym_DASH_EQ] = ACTIONS(681), + [anon_sym_STAR_EQ] = ACTIONS(681), + [anon_sym_SLASH_EQ] = ACTIONS(681), + [anon_sym_PERCENT_EQ] = ACTIONS(681), + [anon_sym_CARET_EQ] = ACTIONS(681), + [anon_sym_AMP_EQ] = ACTIONS(681), + [anon_sym_PIPE_EQ] = ACTIONS(681), + [anon_sym_LT_LT_EQ] = ACTIONS(681), + [anon_sym_GT_GT_EQ] = ACTIONS(681), + [anon_sym_EQ] = ACTIONS(691), + [anon_sym_EQ_EQ] = ACTIONS(681), + [anon_sym_BANG_EQ] = ACTIONS(681), + [anon_sym_GT] = ACTIONS(691), + [anon_sym_LT] = ACTIONS(691), + [anon_sym_GT_EQ] = ACTIONS(681), + [anon_sym_LT_EQ] = ACTIONS(681), + [anon_sym_AT] = ACTIONS(681), + [anon_sym__] = ACTIONS(691), + [anon_sym_DOT] = ACTIONS(691), + [anon_sym_DOT_DOT] = ACTIONS(691), + [anon_sym_DOT_DOT_DOT] = ACTIONS(681), + [anon_sym_DOT_DOT_EQ] = ACTIONS(681), + [anon_sym_COMMA] = ACTIONS(681), + [anon_sym_COLON_COLON] = ACTIONS(681), + [anon_sym_DASH_GT] = ACTIONS(681), + [anon_sym_POUND] = ACTIONS(681), + [anon_sym_SQUOTE] = ACTIONS(679), + [anon_sym_as] = ACTIONS(679), + [anon_sym_async] = ACTIONS(679), + [anon_sym_await] = ACTIONS(679), + [anon_sym_break] = ACTIONS(679), + [anon_sym_const] = ACTIONS(679), + [anon_sym_continue] = ACTIONS(679), + [anon_sym_default] = ACTIONS(679), + [anon_sym_enum] = ACTIONS(679), + [anon_sym_fn] = ACTIONS(679), + [anon_sym_for] = ACTIONS(679), + [anon_sym_gen] = ACTIONS(679), + [anon_sym_if] = ACTIONS(679), + [anon_sym_impl] = ACTIONS(679), + [anon_sym_let] = ACTIONS(679), + [anon_sym_loop] = ACTIONS(679), + [anon_sym_match] = ACTIONS(679), + [anon_sym_mod] = ACTIONS(679), + [anon_sym_pub] = ACTIONS(679), + [anon_sym_return] = ACTIONS(679), + [anon_sym_static] = ACTIONS(679), + [anon_sym_struct] = ACTIONS(679), + [anon_sym_trait] = ACTIONS(679), + [anon_sym_type] = ACTIONS(679), + [anon_sym_union] = ACTIONS(679), + [anon_sym_unsafe] = ACTIONS(679), + [anon_sym_use] = ACTIONS(679), + [anon_sym_where] = ACTIONS(679), + [anon_sym_while] = ACTIONS(679), + [sym_mutable_specifier] = ACTIONS(679), + [sym_integer_literal] = ACTIONS(695), + [aux_sym_string_literal_token1] = ACTIONS(697), + [sym_char_literal] = ACTIONS(695), + [anon_sym_true] = ACTIONS(699), + [anon_sym_false] = ACTIONS(699), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(679), + [sym_super] = ACTIONS(679), + [sym_crate] = ACTIONS(679), + [sym__raw_string_literal_start] = ACTIONS(701), + [sym_float_literal] = ACTIONS(695), }, [STATE(111)] = { - [sym_delim_token_tree] = STATE(207), - [sym__delim_tokens] = STATE(208), - [sym__non_delim_token] = STATE(207), - [sym__literal] = STATE(206), - [sym_string_literal] = STATE(212), - [sym_raw_string_literal] = STATE(212), - [sym_boolean_literal] = STATE(212), + [sym_token_tree] = STATE(170), + [sym_token_repetition] = STATE(170), + [sym__literal] = STATE(170), + [sym_string_literal] = STATE(174), + [sym_raw_string_literal] = STATE(174), + [sym_boolean_literal] = STATE(174), [sym_line_comment] = STATE(111), [sym_block_comment] = STATE(111), - [aux_sym__non_special_token_repeat1] = STATE(181), - [aux_sym_delim_token_tree_repeat1] = STATE(68), - [sym_identifier] = ACTIONS(674), - [anon_sym_SEMI] = ACTIONS(676), - [anon_sym_LPAREN] = ACTIONS(678), - [anon_sym_LBRACK] = ACTIONS(680), - [anon_sym_LBRACE] = ACTIONS(682), - [anon_sym_RBRACE] = ACTIONS(730), - [anon_sym_EQ_GT] = ACTIONS(676), - [anon_sym_COLON] = ACTIONS(686), - [anon_sym_DOLLAR] = ACTIONS(688), - [anon_sym_PLUS] = ACTIONS(686), - [anon_sym_STAR] = ACTIONS(686), - [anon_sym_QMARK] = ACTIONS(676), - [anon_sym_u8] = ACTIONS(674), - [anon_sym_i8] = ACTIONS(674), - [anon_sym_u16] = ACTIONS(674), - [anon_sym_i16] = ACTIONS(674), - [anon_sym_u32] = ACTIONS(674), - [anon_sym_i32] = ACTIONS(674), - [anon_sym_u64] = ACTIONS(674), - [anon_sym_i64] = ACTIONS(674), - [anon_sym_u128] = ACTIONS(674), - [anon_sym_i128] = ACTIONS(674), - [anon_sym_isize] = ACTIONS(674), - [anon_sym_usize] = ACTIONS(674), - [anon_sym_f32] = ACTIONS(674), - [anon_sym_f64] = ACTIONS(674), - [anon_sym_bool] = ACTIONS(674), - [anon_sym_str] = ACTIONS(674), - [anon_sym_char] = ACTIONS(674), - [anon_sym_DASH] = ACTIONS(686), - [anon_sym_SLASH] = ACTIONS(686), - [anon_sym_PERCENT] = ACTIONS(686), - [anon_sym_CARET] = ACTIONS(686), - [anon_sym_BANG] = ACTIONS(686), - [anon_sym_AMP] = ACTIONS(686), - [anon_sym_PIPE] = ACTIONS(686), - [anon_sym_AMP_AMP] = ACTIONS(676), - [anon_sym_PIPE_PIPE] = ACTIONS(676), - [anon_sym_LT_LT] = ACTIONS(686), - [anon_sym_GT_GT] = ACTIONS(686), - [anon_sym_PLUS_EQ] = ACTIONS(676), - [anon_sym_DASH_EQ] = ACTIONS(676), - [anon_sym_STAR_EQ] = ACTIONS(676), - [anon_sym_SLASH_EQ] = ACTIONS(676), - [anon_sym_PERCENT_EQ] = ACTIONS(676), - [anon_sym_CARET_EQ] = ACTIONS(676), - [anon_sym_AMP_EQ] = ACTIONS(676), - [anon_sym_PIPE_EQ] = ACTIONS(676), - [anon_sym_LT_LT_EQ] = ACTIONS(676), - [anon_sym_GT_GT_EQ] = ACTIONS(676), - [anon_sym_EQ] = ACTIONS(686), - [anon_sym_EQ_EQ] = ACTIONS(676), - [anon_sym_BANG_EQ] = ACTIONS(676), - [anon_sym_GT] = ACTIONS(686), - [anon_sym_LT] = ACTIONS(686), - [anon_sym_GT_EQ] = ACTIONS(676), - [anon_sym_LT_EQ] = ACTIONS(676), - [anon_sym_AT] = ACTIONS(676), - [anon_sym__] = ACTIONS(686), - [anon_sym_DOT] = ACTIONS(686), - [anon_sym_DOT_DOT] = ACTIONS(686), - [anon_sym_DOT_DOT_DOT] = ACTIONS(676), - [anon_sym_DOT_DOT_EQ] = ACTIONS(676), - [anon_sym_COMMA] = ACTIONS(676), - [anon_sym_COLON_COLON] = ACTIONS(676), - [anon_sym_DASH_GT] = ACTIONS(676), - [anon_sym_POUND] = ACTIONS(676), - [anon_sym_SQUOTE] = ACTIONS(674), - [anon_sym_as] = ACTIONS(674), - [anon_sym_async] = ACTIONS(674), - [anon_sym_await] = ACTIONS(674), - [anon_sym_break] = ACTIONS(674), - [anon_sym_const] = ACTIONS(674), - [anon_sym_continue] = ACTIONS(674), - [anon_sym_default] = ACTIONS(674), - [anon_sym_enum] = ACTIONS(674), - [anon_sym_fn] = ACTIONS(674), - [anon_sym_for] = ACTIONS(674), - [anon_sym_gen] = ACTIONS(674), - [anon_sym_if] = ACTIONS(674), - [anon_sym_impl] = ACTIONS(674), - [anon_sym_let] = ACTIONS(674), - [anon_sym_loop] = ACTIONS(674), - [anon_sym_match] = ACTIONS(674), - [anon_sym_mod] = ACTIONS(674), - [anon_sym_pub] = ACTIONS(674), - [anon_sym_return] = ACTIONS(674), - [anon_sym_static] = ACTIONS(674), - [anon_sym_struct] = ACTIONS(674), - [anon_sym_trait] = ACTIONS(674), - [anon_sym_type] = ACTIONS(674), - [anon_sym_union] = ACTIONS(674), - [anon_sym_unsafe] = ACTIONS(674), - [anon_sym_use] = ACTIONS(674), - [anon_sym_where] = ACTIONS(674), - [anon_sym_while] = ACTIONS(674), - [sym_mutable_specifier] = ACTIONS(674), - [sym_integer_literal] = ACTIONS(690), - [aux_sym_string_literal_token1] = ACTIONS(692), - [sym_char_literal] = ACTIONS(690), - [anon_sym_true] = ACTIONS(694), - [anon_sym_false] = ACTIONS(694), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(674), - [sym_super] = ACTIONS(674), - [sym_crate] = ACTIONS(674), - [sym__raw_string_literal_start] = ACTIONS(696), - [sym_float_literal] = ACTIONS(690), + [aux_sym_token_tree_repeat1] = STATE(70), + [aux_sym__non_special_token_repeat1] = STATE(136), + [sym_identifier] = ACTIONS(703), + [anon_sym_SEMI] = ACTIONS(572), + [anon_sym_LPAREN] = ACTIONS(705), + [anon_sym_RPAREN] = ACTIONS(733), + [anon_sym_LBRACK] = ACTIONS(707), + [anon_sym_LBRACE] = ACTIONS(711), + [anon_sym_EQ_GT] = ACTIONS(572), + [anon_sym_COLON] = ACTIONS(582), + [anon_sym_DOLLAR] = ACTIONS(713), + [anon_sym_PLUS] = ACTIONS(582), + [anon_sym_STAR] = ACTIONS(582), + [anon_sym_QMARK] = ACTIONS(572), + [anon_sym_u8] = ACTIONS(703), + [anon_sym_i8] = ACTIONS(703), + [anon_sym_u16] = ACTIONS(703), + [anon_sym_i16] = ACTIONS(703), + [anon_sym_u32] = ACTIONS(703), + [anon_sym_i32] = ACTIONS(703), + [anon_sym_u64] = ACTIONS(703), + [anon_sym_i64] = ACTIONS(703), + [anon_sym_u128] = ACTIONS(703), + [anon_sym_i128] = ACTIONS(703), + [anon_sym_isize] = ACTIONS(703), + [anon_sym_usize] = ACTIONS(703), + [anon_sym_f32] = ACTIONS(703), + [anon_sym_f64] = ACTIONS(703), + [anon_sym_bool] = ACTIONS(703), + [anon_sym_str] = ACTIONS(703), + [anon_sym_char] = ACTIONS(703), + [anon_sym_DASH] = ACTIONS(582), + [anon_sym_SLASH] = ACTIONS(582), + [anon_sym_PERCENT] = ACTIONS(582), + [anon_sym_CARET] = ACTIONS(582), + [anon_sym_BANG] = ACTIONS(582), + [anon_sym_AMP] = ACTIONS(582), + [anon_sym_PIPE] = ACTIONS(582), + [anon_sym_AMP_AMP] = ACTIONS(572), + [anon_sym_PIPE_PIPE] = ACTIONS(572), + [anon_sym_LT_LT] = ACTIONS(582), + [anon_sym_GT_GT] = ACTIONS(582), + [anon_sym_PLUS_EQ] = ACTIONS(572), + [anon_sym_DASH_EQ] = ACTIONS(572), + [anon_sym_STAR_EQ] = ACTIONS(572), + [anon_sym_SLASH_EQ] = ACTIONS(572), + [anon_sym_PERCENT_EQ] = ACTIONS(572), + [anon_sym_CARET_EQ] = ACTIONS(572), + [anon_sym_AMP_EQ] = ACTIONS(572), + [anon_sym_PIPE_EQ] = ACTIONS(572), + [anon_sym_LT_LT_EQ] = ACTIONS(572), + [anon_sym_GT_GT_EQ] = ACTIONS(572), + [anon_sym_EQ] = ACTIONS(582), + [anon_sym_EQ_EQ] = ACTIONS(572), + [anon_sym_BANG_EQ] = ACTIONS(572), + [anon_sym_GT] = ACTIONS(582), + [anon_sym_LT] = ACTIONS(582), + [anon_sym_GT_EQ] = ACTIONS(572), + [anon_sym_LT_EQ] = ACTIONS(572), + [anon_sym_AT] = ACTIONS(572), + [anon_sym__] = ACTIONS(582), + [anon_sym_DOT] = ACTIONS(582), + [anon_sym_DOT_DOT] = ACTIONS(582), + [anon_sym_DOT_DOT_DOT] = ACTIONS(572), + [anon_sym_DOT_DOT_EQ] = ACTIONS(572), + [anon_sym_COMMA] = ACTIONS(572), + [anon_sym_COLON_COLON] = ACTIONS(572), + [anon_sym_DASH_GT] = ACTIONS(572), + [anon_sym_POUND] = ACTIONS(572), + [anon_sym_SQUOTE] = ACTIONS(703), + [anon_sym_as] = ACTIONS(703), + [anon_sym_async] = ACTIONS(703), + [anon_sym_await] = ACTIONS(703), + [anon_sym_break] = ACTIONS(703), + [anon_sym_const] = ACTIONS(703), + [anon_sym_continue] = ACTIONS(703), + [anon_sym_default] = ACTIONS(703), + [anon_sym_enum] = ACTIONS(703), + [anon_sym_fn] = ACTIONS(703), + [anon_sym_for] = ACTIONS(703), + [anon_sym_gen] = ACTIONS(703), + [anon_sym_if] = ACTIONS(703), + [anon_sym_impl] = ACTIONS(703), + [anon_sym_let] = ACTIONS(703), + [anon_sym_loop] = ACTIONS(703), + [anon_sym_match] = ACTIONS(703), + [anon_sym_mod] = ACTIONS(703), + [anon_sym_pub] = ACTIONS(703), + [anon_sym_return] = ACTIONS(703), + [anon_sym_static] = ACTIONS(703), + [anon_sym_struct] = ACTIONS(703), + [anon_sym_trait] = ACTIONS(703), + [anon_sym_type] = ACTIONS(703), + [anon_sym_union] = ACTIONS(703), + [anon_sym_unsafe] = ACTIONS(703), + [anon_sym_use] = ACTIONS(703), + [anon_sym_where] = ACTIONS(703), + [anon_sym_while] = ACTIONS(703), + [sym_mutable_specifier] = ACTIONS(703), + [sym_integer_literal] = ACTIONS(586), + [aux_sym_string_literal_token1] = ACTIONS(588), + [sym_char_literal] = ACTIONS(586), + [anon_sym_true] = ACTIONS(590), + [anon_sym_false] = ACTIONS(590), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(703), + [sym_super] = ACTIONS(703), + [sym_crate] = ACTIONS(703), + [sym_metavariable] = ACTIONS(715), + [sym__raw_string_literal_start] = ACTIONS(594), + [sym_float_literal] = ACTIONS(586), }, [STATE(112)] = { [sym_token_tree] = STATE(170), [sym_token_repetition] = STATE(170), [sym__literal] = STATE(170), - [sym_string_literal] = STATE(175), - [sym_raw_string_literal] = STATE(175), - [sym_boolean_literal] = STATE(175), + [sym_string_literal] = STATE(174), + [sym_raw_string_literal] = STATE(174), + [sym_boolean_literal] = STATE(174), [sym_line_comment] = STATE(112), [sym_block_comment] = STATE(112), - [aux_sym_token_tree_repeat1] = STATE(105), - [aux_sym__non_special_token_repeat1] = STATE(140), - [sym_identifier] = ACTIONS(700), - [anon_sym_SEMI] = ACTIONS(640), - [anon_sym_LPAREN] = ACTIONS(702), - [anon_sym_RPAREN] = ACTIONS(732), - [anon_sym_LBRACK] = ACTIONS(704), - [anon_sym_LBRACE] = ACTIONS(708), - [anon_sym_EQ_GT] = ACTIONS(640), - [anon_sym_COLON] = ACTIONS(650), - [anon_sym_DOLLAR] = ACTIONS(710), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_STAR] = ACTIONS(650), - [anon_sym_QMARK] = ACTIONS(640), - [anon_sym_u8] = ACTIONS(700), - [anon_sym_i8] = ACTIONS(700), - [anon_sym_u16] = ACTIONS(700), - [anon_sym_i16] = ACTIONS(700), - [anon_sym_u32] = ACTIONS(700), - [anon_sym_i32] = ACTIONS(700), - [anon_sym_u64] = ACTIONS(700), - [anon_sym_i64] = ACTIONS(700), - [anon_sym_u128] = ACTIONS(700), - [anon_sym_i128] = ACTIONS(700), - [anon_sym_isize] = ACTIONS(700), - [anon_sym_usize] = ACTIONS(700), - [anon_sym_f32] = ACTIONS(700), - [anon_sym_f64] = ACTIONS(700), - [anon_sym_bool] = ACTIONS(700), - [anon_sym_str] = ACTIONS(700), - [anon_sym_char] = ACTIONS(700), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(650), - [anon_sym_PERCENT] = ACTIONS(650), - [anon_sym_CARET] = ACTIONS(650), - [anon_sym_BANG] = ACTIONS(650), - [anon_sym_AMP] = ACTIONS(650), - [anon_sym_PIPE] = ACTIONS(650), - [anon_sym_AMP_AMP] = ACTIONS(640), - [anon_sym_PIPE_PIPE] = ACTIONS(640), - [anon_sym_LT_LT] = ACTIONS(650), - [anon_sym_GT_GT] = ACTIONS(650), - [anon_sym_PLUS_EQ] = ACTIONS(640), - [anon_sym_DASH_EQ] = ACTIONS(640), - [anon_sym_STAR_EQ] = ACTIONS(640), - [anon_sym_SLASH_EQ] = ACTIONS(640), - [anon_sym_PERCENT_EQ] = ACTIONS(640), - [anon_sym_CARET_EQ] = ACTIONS(640), - [anon_sym_AMP_EQ] = ACTIONS(640), - [anon_sym_PIPE_EQ] = ACTIONS(640), - [anon_sym_LT_LT_EQ] = ACTIONS(640), - [anon_sym_GT_GT_EQ] = ACTIONS(640), - [anon_sym_EQ] = ACTIONS(650), - [anon_sym_EQ_EQ] = ACTIONS(640), - [anon_sym_BANG_EQ] = ACTIONS(640), - [anon_sym_GT] = ACTIONS(650), - [anon_sym_LT] = ACTIONS(650), - [anon_sym_GT_EQ] = ACTIONS(640), - [anon_sym_LT_EQ] = ACTIONS(640), - [anon_sym_AT] = ACTIONS(640), - [anon_sym__] = ACTIONS(650), - [anon_sym_DOT] = ACTIONS(650), - [anon_sym_DOT_DOT] = ACTIONS(650), - [anon_sym_DOT_DOT_DOT] = ACTIONS(640), - [anon_sym_DOT_DOT_EQ] = ACTIONS(640), - [anon_sym_COMMA] = ACTIONS(640), - [anon_sym_COLON_COLON] = ACTIONS(640), - [anon_sym_DASH_GT] = ACTIONS(640), - [anon_sym_POUND] = ACTIONS(640), - [anon_sym_SQUOTE] = ACTIONS(700), - [anon_sym_as] = ACTIONS(700), - [anon_sym_async] = ACTIONS(700), - [anon_sym_await] = ACTIONS(700), - [anon_sym_break] = ACTIONS(700), - [anon_sym_const] = ACTIONS(700), - [anon_sym_continue] = ACTIONS(700), - [anon_sym_default] = ACTIONS(700), - [anon_sym_enum] = ACTIONS(700), - [anon_sym_fn] = ACTIONS(700), - [anon_sym_for] = ACTIONS(700), - [anon_sym_gen] = ACTIONS(700), - [anon_sym_if] = ACTIONS(700), - [anon_sym_impl] = ACTIONS(700), - [anon_sym_let] = ACTIONS(700), - [anon_sym_loop] = ACTIONS(700), - [anon_sym_match] = ACTIONS(700), - [anon_sym_mod] = ACTIONS(700), - [anon_sym_pub] = ACTIONS(700), - [anon_sym_return] = ACTIONS(700), - [anon_sym_static] = ACTIONS(700), - [anon_sym_struct] = ACTIONS(700), - [anon_sym_trait] = ACTIONS(700), - [anon_sym_type] = ACTIONS(700), - [anon_sym_union] = ACTIONS(700), - [anon_sym_unsafe] = ACTIONS(700), - [anon_sym_use] = ACTIONS(700), - [anon_sym_where] = ACTIONS(700), - [anon_sym_while] = ACTIONS(700), - [sym_mutable_specifier] = ACTIONS(700), - [sym_integer_literal] = ACTIONS(654), - [aux_sym_string_literal_token1] = ACTIONS(656), - [sym_char_literal] = ACTIONS(654), - [anon_sym_true] = ACTIONS(658), - [anon_sym_false] = ACTIONS(658), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(700), - [sym_super] = ACTIONS(700), - [sym_crate] = ACTIONS(700), - [sym_metavariable] = ACTIONS(712), - [sym__raw_string_literal_start] = ACTIONS(662), - [sym_float_literal] = ACTIONS(654), + [aux_sym_token_tree_repeat1] = STATE(70), + [aux_sym__non_special_token_repeat1] = STATE(136), + [sym_identifier] = ACTIONS(703), + [anon_sym_SEMI] = ACTIONS(572), + [anon_sym_LPAREN] = ACTIONS(705), + [anon_sym_RPAREN] = ACTIONS(709), + [anon_sym_LBRACK] = ACTIONS(707), + [anon_sym_LBRACE] = ACTIONS(711), + [anon_sym_EQ_GT] = ACTIONS(572), + [anon_sym_COLON] = ACTIONS(582), + [anon_sym_DOLLAR] = ACTIONS(713), + [anon_sym_PLUS] = ACTIONS(582), + [anon_sym_STAR] = ACTIONS(582), + [anon_sym_QMARK] = ACTIONS(572), + [anon_sym_u8] = ACTIONS(703), + [anon_sym_i8] = ACTIONS(703), + [anon_sym_u16] = ACTIONS(703), + [anon_sym_i16] = ACTIONS(703), + [anon_sym_u32] = ACTIONS(703), + [anon_sym_i32] = ACTIONS(703), + [anon_sym_u64] = ACTIONS(703), + [anon_sym_i64] = ACTIONS(703), + [anon_sym_u128] = ACTIONS(703), + [anon_sym_i128] = ACTIONS(703), + [anon_sym_isize] = ACTIONS(703), + [anon_sym_usize] = ACTIONS(703), + [anon_sym_f32] = ACTIONS(703), + [anon_sym_f64] = ACTIONS(703), + [anon_sym_bool] = ACTIONS(703), + [anon_sym_str] = ACTIONS(703), + [anon_sym_char] = ACTIONS(703), + [anon_sym_DASH] = ACTIONS(582), + [anon_sym_SLASH] = ACTIONS(582), + [anon_sym_PERCENT] = ACTIONS(582), + [anon_sym_CARET] = ACTIONS(582), + [anon_sym_BANG] = ACTIONS(582), + [anon_sym_AMP] = ACTIONS(582), + [anon_sym_PIPE] = ACTIONS(582), + [anon_sym_AMP_AMP] = ACTIONS(572), + [anon_sym_PIPE_PIPE] = ACTIONS(572), + [anon_sym_LT_LT] = ACTIONS(582), + [anon_sym_GT_GT] = ACTIONS(582), + [anon_sym_PLUS_EQ] = ACTIONS(572), + [anon_sym_DASH_EQ] = ACTIONS(572), + [anon_sym_STAR_EQ] = ACTIONS(572), + [anon_sym_SLASH_EQ] = ACTIONS(572), + [anon_sym_PERCENT_EQ] = ACTIONS(572), + [anon_sym_CARET_EQ] = ACTIONS(572), + [anon_sym_AMP_EQ] = ACTIONS(572), + [anon_sym_PIPE_EQ] = ACTIONS(572), + [anon_sym_LT_LT_EQ] = ACTIONS(572), + [anon_sym_GT_GT_EQ] = ACTIONS(572), + [anon_sym_EQ] = ACTIONS(582), + [anon_sym_EQ_EQ] = ACTIONS(572), + [anon_sym_BANG_EQ] = ACTIONS(572), + [anon_sym_GT] = ACTIONS(582), + [anon_sym_LT] = ACTIONS(582), + [anon_sym_GT_EQ] = ACTIONS(572), + [anon_sym_LT_EQ] = ACTIONS(572), + [anon_sym_AT] = ACTIONS(572), + [anon_sym__] = ACTIONS(582), + [anon_sym_DOT] = ACTIONS(582), + [anon_sym_DOT_DOT] = ACTIONS(582), + [anon_sym_DOT_DOT_DOT] = ACTIONS(572), + [anon_sym_DOT_DOT_EQ] = ACTIONS(572), + [anon_sym_COMMA] = ACTIONS(572), + [anon_sym_COLON_COLON] = ACTIONS(572), + [anon_sym_DASH_GT] = ACTIONS(572), + [anon_sym_POUND] = ACTIONS(572), + [anon_sym_SQUOTE] = ACTIONS(703), + [anon_sym_as] = ACTIONS(703), + [anon_sym_async] = ACTIONS(703), + [anon_sym_await] = ACTIONS(703), + [anon_sym_break] = ACTIONS(703), + [anon_sym_const] = ACTIONS(703), + [anon_sym_continue] = ACTIONS(703), + [anon_sym_default] = ACTIONS(703), + [anon_sym_enum] = ACTIONS(703), + [anon_sym_fn] = ACTIONS(703), + [anon_sym_for] = ACTIONS(703), + [anon_sym_gen] = ACTIONS(703), + [anon_sym_if] = ACTIONS(703), + [anon_sym_impl] = ACTIONS(703), + [anon_sym_let] = ACTIONS(703), + [anon_sym_loop] = ACTIONS(703), + [anon_sym_match] = ACTIONS(703), + [anon_sym_mod] = ACTIONS(703), + [anon_sym_pub] = ACTIONS(703), + [anon_sym_return] = ACTIONS(703), + [anon_sym_static] = ACTIONS(703), + [anon_sym_struct] = ACTIONS(703), + [anon_sym_trait] = ACTIONS(703), + [anon_sym_type] = ACTIONS(703), + [anon_sym_union] = ACTIONS(703), + [anon_sym_unsafe] = ACTIONS(703), + [anon_sym_use] = ACTIONS(703), + [anon_sym_where] = ACTIONS(703), + [anon_sym_while] = ACTIONS(703), + [sym_mutable_specifier] = ACTIONS(703), + [sym_integer_literal] = ACTIONS(586), + [aux_sym_string_literal_token1] = ACTIONS(588), + [sym_char_literal] = ACTIONS(586), + [anon_sym_true] = ACTIONS(590), + [anon_sym_false] = ACTIONS(590), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(703), + [sym_super] = ACTIONS(703), + [sym_crate] = ACTIONS(703), + [sym_metavariable] = ACTIONS(715), + [sym__raw_string_literal_start] = ACTIONS(594), + [sym_float_literal] = ACTIONS(586), }, [STATE(113)] = { - [sym_token_tree] = STATE(170), - [sym_token_repetition] = STATE(170), - [sym__literal] = STATE(170), - [sym_string_literal] = STATE(175), - [sym_raw_string_literal] = STATE(175), - [sym_boolean_literal] = STATE(175), + [sym_delim_token_tree] = STATE(208), + [sym__delim_tokens] = STATE(209), + [sym__non_delim_token] = STATE(208), + [sym__literal] = STATE(204), + [sym_string_literal] = STATE(201), + [sym_raw_string_literal] = STATE(201), + [sym_boolean_literal] = STATE(201), [sym_line_comment] = STATE(113), [sym_block_comment] = STATE(113), - [aux_sym_token_tree_repeat1] = STATE(94), - [aux_sym__non_special_token_repeat1] = STATE(140), - [sym_identifier] = ACTIONS(700), - [anon_sym_SEMI] = ACTIONS(640), - [anon_sym_LPAREN] = ACTIONS(702), - [anon_sym_RPAREN] = ACTIONS(706), - [anon_sym_LBRACK] = ACTIONS(704), - [anon_sym_LBRACE] = ACTIONS(708), - [anon_sym_EQ_GT] = ACTIONS(640), - [anon_sym_COLON] = ACTIONS(650), - [anon_sym_DOLLAR] = ACTIONS(710), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_STAR] = ACTIONS(650), - [anon_sym_QMARK] = ACTIONS(640), - [anon_sym_u8] = ACTIONS(700), - [anon_sym_i8] = ACTIONS(700), - [anon_sym_u16] = ACTIONS(700), - [anon_sym_i16] = ACTIONS(700), - [anon_sym_u32] = ACTIONS(700), - [anon_sym_i32] = ACTIONS(700), - [anon_sym_u64] = ACTIONS(700), - [anon_sym_i64] = ACTIONS(700), - [anon_sym_u128] = ACTIONS(700), - [anon_sym_i128] = ACTIONS(700), - [anon_sym_isize] = ACTIONS(700), - [anon_sym_usize] = ACTIONS(700), - [anon_sym_f32] = ACTIONS(700), - [anon_sym_f64] = ACTIONS(700), - [anon_sym_bool] = ACTIONS(700), - [anon_sym_str] = ACTIONS(700), - [anon_sym_char] = ACTIONS(700), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(650), - [anon_sym_PERCENT] = ACTIONS(650), - [anon_sym_CARET] = ACTIONS(650), - [anon_sym_BANG] = ACTIONS(650), - [anon_sym_AMP] = ACTIONS(650), - [anon_sym_PIPE] = ACTIONS(650), - [anon_sym_AMP_AMP] = ACTIONS(640), - [anon_sym_PIPE_PIPE] = ACTIONS(640), - [anon_sym_LT_LT] = ACTIONS(650), - [anon_sym_GT_GT] = ACTIONS(650), - [anon_sym_PLUS_EQ] = ACTIONS(640), - [anon_sym_DASH_EQ] = ACTIONS(640), - [anon_sym_STAR_EQ] = ACTIONS(640), - [anon_sym_SLASH_EQ] = ACTIONS(640), - [anon_sym_PERCENT_EQ] = ACTIONS(640), - [anon_sym_CARET_EQ] = ACTIONS(640), - [anon_sym_AMP_EQ] = ACTIONS(640), - [anon_sym_PIPE_EQ] = ACTIONS(640), - [anon_sym_LT_LT_EQ] = ACTIONS(640), - [anon_sym_GT_GT_EQ] = ACTIONS(640), - [anon_sym_EQ] = ACTIONS(650), - [anon_sym_EQ_EQ] = ACTIONS(640), - [anon_sym_BANG_EQ] = ACTIONS(640), - [anon_sym_GT] = ACTIONS(650), - [anon_sym_LT] = ACTIONS(650), - [anon_sym_GT_EQ] = ACTIONS(640), - [anon_sym_LT_EQ] = ACTIONS(640), - [anon_sym_AT] = ACTIONS(640), - [anon_sym__] = ACTIONS(650), - [anon_sym_DOT] = ACTIONS(650), - [anon_sym_DOT_DOT] = ACTIONS(650), - [anon_sym_DOT_DOT_DOT] = ACTIONS(640), - [anon_sym_DOT_DOT_EQ] = ACTIONS(640), - [anon_sym_COMMA] = ACTIONS(640), - [anon_sym_COLON_COLON] = ACTIONS(640), - [anon_sym_DASH_GT] = ACTIONS(640), - [anon_sym_POUND] = ACTIONS(640), - [anon_sym_SQUOTE] = ACTIONS(700), - [anon_sym_as] = ACTIONS(700), - [anon_sym_async] = ACTIONS(700), - [anon_sym_await] = ACTIONS(700), - [anon_sym_break] = ACTIONS(700), - [anon_sym_const] = ACTIONS(700), - [anon_sym_continue] = ACTIONS(700), - [anon_sym_default] = ACTIONS(700), - [anon_sym_enum] = ACTIONS(700), - [anon_sym_fn] = ACTIONS(700), - [anon_sym_for] = ACTIONS(700), - [anon_sym_gen] = ACTIONS(700), - [anon_sym_if] = ACTIONS(700), - [anon_sym_impl] = ACTIONS(700), - [anon_sym_let] = ACTIONS(700), - [anon_sym_loop] = ACTIONS(700), - [anon_sym_match] = ACTIONS(700), - [anon_sym_mod] = ACTIONS(700), - [anon_sym_pub] = ACTIONS(700), - [anon_sym_return] = ACTIONS(700), - [anon_sym_static] = ACTIONS(700), - [anon_sym_struct] = ACTIONS(700), - [anon_sym_trait] = ACTIONS(700), - [anon_sym_type] = ACTIONS(700), - [anon_sym_union] = ACTIONS(700), - [anon_sym_unsafe] = ACTIONS(700), - [anon_sym_use] = ACTIONS(700), - [anon_sym_where] = ACTIONS(700), - [anon_sym_while] = ACTIONS(700), - [sym_mutable_specifier] = ACTIONS(700), - [sym_integer_literal] = ACTIONS(654), - [aux_sym_string_literal_token1] = ACTIONS(656), - [sym_char_literal] = ACTIONS(654), - [anon_sym_true] = ACTIONS(658), - [anon_sym_false] = ACTIONS(658), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(700), - [sym_super] = ACTIONS(700), - [sym_crate] = ACTIONS(700), - [sym_metavariable] = ACTIONS(712), - [sym__raw_string_literal_start] = ACTIONS(662), - [sym_float_literal] = ACTIONS(654), + [aux_sym__non_special_token_repeat1] = STATE(180), + [aux_sym_delim_token_tree_repeat1] = STATE(116), + [sym_identifier] = ACTIONS(679), + [anon_sym_SEMI] = ACTIONS(681), + [anon_sym_LPAREN] = ACTIONS(683), + [anon_sym_RPAREN] = ACTIONS(735), + [anon_sym_LBRACK] = ACTIONS(685), + [anon_sym_LBRACE] = ACTIONS(689), + [anon_sym_EQ_GT] = ACTIONS(681), + [anon_sym_COLON] = ACTIONS(691), + [anon_sym_DOLLAR] = ACTIONS(693), + [anon_sym_PLUS] = ACTIONS(691), + [anon_sym_STAR] = ACTIONS(691), + [anon_sym_QMARK] = ACTIONS(681), + [anon_sym_u8] = ACTIONS(679), + [anon_sym_i8] = ACTIONS(679), + [anon_sym_u16] = ACTIONS(679), + [anon_sym_i16] = ACTIONS(679), + [anon_sym_u32] = ACTIONS(679), + [anon_sym_i32] = ACTIONS(679), + [anon_sym_u64] = ACTIONS(679), + [anon_sym_i64] = ACTIONS(679), + [anon_sym_u128] = ACTIONS(679), + [anon_sym_i128] = ACTIONS(679), + [anon_sym_isize] = ACTIONS(679), + [anon_sym_usize] = ACTIONS(679), + [anon_sym_f32] = ACTIONS(679), + [anon_sym_f64] = ACTIONS(679), + [anon_sym_bool] = ACTIONS(679), + [anon_sym_str] = ACTIONS(679), + [anon_sym_char] = ACTIONS(679), + [anon_sym_DASH] = ACTIONS(691), + [anon_sym_SLASH] = ACTIONS(691), + [anon_sym_PERCENT] = ACTIONS(691), + [anon_sym_CARET] = ACTIONS(691), + [anon_sym_BANG] = ACTIONS(691), + [anon_sym_AMP] = ACTIONS(691), + [anon_sym_PIPE] = ACTIONS(691), + [anon_sym_AMP_AMP] = ACTIONS(681), + [anon_sym_PIPE_PIPE] = ACTIONS(681), + [anon_sym_LT_LT] = ACTIONS(691), + [anon_sym_GT_GT] = ACTIONS(691), + [anon_sym_PLUS_EQ] = ACTIONS(681), + [anon_sym_DASH_EQ] = ACTIONS(681), + [anon_sym_STAR_EQ] = ACTIONS(681), + [anon_sym_SLASH_EQ] = ACTIONS(681), + [anon_sym_PERCENT_EQ] = ACTIONS(681), + [anon_sym_CARET_EQ] = ACTIONS(681), + [anon_sym_AMP_EQ] = ACTIONS(681), + [anon_sym_PIPE_EQ] = ACTIONS(681), + [anon_sym_LT_LT_EQ] = ACTIONS(681), + [anon_sym_GT_GT_EQ] = ACTIONS(681), + [anon_sym_EQ] = ACTIONS(691), + [anon_sym_EQ_EQ] = ACTIONS(681), + [anon_sym_BANG_EQ] = ACTIONS(681), + [anon_sym_GT] = ACTIONS(691), + [anon_sym_LT] = ACTIONS(691), + [anon_sym_GT_EQ] = ACTIONS(681), + [anon_sym_LT_EQ] = ACTIONS(681), + [anon_sym_AT] = ACTIONS(681), + [anon_sym__] = ACTIONS(691), + [anon_sym_DOT] = ACTIONS(691), + [anon_sym_DOT_DOT] = ACTIONS(691), + [anon_sym_DOT_DOT_DOT] = ACTIONS(681), + [anon_sym_DOT_DOT_EQ] = ACTIONS(681), + [anon_sym_COMMA] = ACTIONS(681), + [anon_sym_COLON_COLON] = ACTIONS(681), + [anon_sym_DASH_GT] = ACTIONS(681), + [anon_sym_POUND] = ACTIONS(681), + [anon_sym_SQUOTE] = ACTIONS(679), + [anon_sym_as] = ACTIONS(679), + [anon_sym_async] = ACTIONS(679), + [anon_sym_await] = ACTIONS(679), + [anon_sym_break] = ACTIONS(679), + [anon_sym_const] = ACTIONS(679), + [anon_sym_continue] = ACTIONS(679), + [anon_sym_default] = ACTIONS(679), + [anon_sym_enum] = ACTIONS(679), + [anon_sym_fn] = ACTIONS(679), + [anon_sym_for] = ACTIONS(679), + [anon_sym_gen] = ACTIONS(679), + [anon_sym_if] = ACTIONS(679), + [anon_sym_impl] = ACTIONS(679), + [anon_sym_let] = ACTIONS(679), + [anon_sym_loop] = ACTIONS(679), + [anon_sym_match] = ACTIONS(679), + [anon_sym_mod] = ACTIONS(679), + [anon_sym_pub] = ACTIONS(679), + [anon_sym_return] = ACTIONS(679), + [anon_sym_static] = ACTIONS(679), + [anon_sym_struct] = ACTIONS(679), + [anon_sym_trait] = ACTIONS(679), + [anon_sym_type] = ACTIONS(679), + [anon_sym_union] = ACTIONS(679), + [anon_sym_unsafe] = ACTIONS(679), + [anon_sym_use] = ACTIONS(679), + [anon_sym_where] = ACTIONS(679), + [anon_sym_while] = ACTIONS(679), + [sym_mutable_specifier] = ACTIONS(679), + [sym_integer_literal] = ACTIONS(695), + [aux_sym_string_literal_token1] = ACTIONS(697), + [sym_char_literal] = ACTIONS(695), + [anon_sym_true] = ACTIONS(699), + [anon_sym_false] = ACTIONS(699), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(679), + [sym_super] = ACTIONS(679), + [sym_crate] = ACTIONS(679), + [sym__raw_string_literal_start] = ACTIONS(701), + [sym_float_literal] = ACTIONS(695), }, [STATE(114)] = { - [sym_delim_token_tree] = STATE(207), - [sym__delim_tokens] = STATE(208), - [sym__non_delim_token] = STATE(207), - [sym__literal] = STATE(206), - [sym_string_literal] = STATE(212), - [sym_raw_string_literal] = STATE(212), - [sym_boolean_literal] = STATE(212), + [sym_delim_token_tree] = STATE(208), + [sym__delim_tokens] = STATE(209), + [sym__non_delim_token] = STATE(208), + [sym__literal] = STATE(204), + [sym_string_literal] = STATE(201), + [sym_raw_string_literal] = STATE(201), + [sym_boolean_literal] = STATE(201), [sym_line_comment] = STATE(114), [sym_block_comment] = STATE(114), - [aux_sym__non_special_token_repeat1] = STATE(181), + [aux_sym__non_special_token_repeat1] = STATE(180), [aux_sym_delim_token_tree_repeat1] = STATE(117), - [sym_identifier] = ACTIONS(674), - [anon_sym_SEMI] = ACTIONS(676), - [anon_sym_LPAREN] = ACTIONS(678), - [anon_sym_RPAREN] = ACTIONS(734), - [anon_sym_LBRACK] = ACTIONS(680), - [anon_sym_LBRACE] = ACTIONS(682), - [anon_sym_EQ_GT] = ACTIONS(676), - [anon_sym_COLON] = ACTIONS(686), - [anon_sym_DOLLAR] = ACTIONS(688), - [anon_sym_PLUS] = ACTIONS(686), - [anon_sym_STAR] = ACTIONS(686), - [anon_sym_QMARK] = ACTIONS(676), - [anon_sym_u8] = ACTIONS(674), - [anon_sym_i8] = ACTIONS(674), - [anon_sym_u16] = ACTIONS(674), - [anon_sym_i16] = ACTIONS(674), - [anon_sym_u32] = ACTIONS(674), - [anon_sym_i32] = ACTIONS(674), - [anon_sym_u64] = ACTIONS(674), - [anon_sym_i64] = ACTIONS(674), - [anon_sym_u128] = ACTIONS(674), - [anon_sym_i128] = ACTIONS(674), - [anon_sym_isize] = ACTIONS(674), - [anon_sym_usize] = ACTIONS(674), - [anon_sym_f32] = ACTIONS(674), - [anon_sym_f64] = ACTIONS(674), - [anon_sym_bool] = ACTIONS(674), - [anon_sym_str] = ACTIONS(674), - [anon_sym_char] = ACTIONS(674), - [anon_sym_DASH] = ACTIONS(686), - [anon_sym_SLASH] = ACTIONS(686), - [anon_sym_PERCENT] = ACTIONS(686), - [anon_sym_CARET] = ACTIONS(686), - [anon_sym_BANG] = ACTIONS(686), - [anon_sym_AMP] = ACTIONS(686), - [anon_sym_PIPE] = ACTIONS(686), - [anon_sym_AMP_AMP] = ACTIONS(676), - [anon_sym_PIPE_PIPE] = ACTIONS(676), - [anon_sym_LT_LT] = ACTIONS(686), - [anon_sym_GT_GT] = ACTIONS(686), - [anon_sym_PLUS_EQ] = ACTIONS(676), - [anon_sym_DASH_EQ] = ACTIONS(676), - [anon_sym_STAR_EQ] = ACTIONS(676), - [anon_sym_SLASH_EQ] = ACTIONS(676), - [anon_sym_PERCENT_EQ] = ACTIONS(676), - [anon_sym_CARET_EQ] = ACTIONS(676), - [anon_sym_AMP_EQ] = ACTIONS(676), - [anon_sym_PIPE_EQ] = ACTIONS(676), - [anon_sym_LT_LT_EQ] = ACTIONS(676), - [anon_sym_GT_GT_EQ] = ACTIONS(676), - [anon_sym_EQ] = ACTIONS(686), - [anon_sym_EQ_EQ] = ACTIONS(676), - [anon_sym_BANG_EQ] = ACTIONS(676), - [anon_sym_GT] = ACTIONS(686), - [anon_sym_LT] = ACTIONS(686), - [anon_sym_GT_EQ] = ACTIONS(676), - [anon_sym_LT_EQ] = ACTIONS(676), - [anon_sym_AT] = ACTIONS(676), - [anon_sym__] = ACTIONS(686), - [anon_sym_DOT] = ACTIONS(686), - [anon_sym_DOT_DOT] = ACTIONS(686), - [anon_sym_DOT_DOT_DOT] = ACTIONS(676), - [anon_sym_DOT_DOT_EQ] = ACTIONS(676), - [anon_sym_COMMA] = ACTIONS(676), - [anon_sym_COLON_COLON] = ACTIONS(676), - [anon_sym_DASH_GT] = ACTIONS(676), - [anon_sym_POUND] = ACTIONS(676), - [anon_sym_SQUOTE] = ACTIONS(674), - [anon_sym_as] = ACTIONS(674), - [anon_sym_async] = ACTIONS(674), - [anon_sym_await] = ACTIONS(674), - [anon_sym_break] = ACTIONS(674), - [anon_sym_const] = ACTIONS(674), - [anon_sym_continue] = ACTIONS(674), - [anon_sym_default] = ACTIONS(674), - [anon_sym_enum] = ACTIONS(674), - [anon_sym_fn] = ACTIONS(674), - [anon_sym_for] = ACTIONS(674), - [anon_sym_gen] = ACTIONS(674), - [anon_sym_if] = ACTIONS(674), - [anon_sym_impl] = ACTIONS(674), - [anon_sym_let] = ACTIONS(674), - [anon_sym_loop] = ACTIONS(674), - [anon_sym_match] = ACTIONS(674), - [anon_sym_mod] = ACTIONS(674), - [anon_sym_pub] = ACTIONS(674), - [anon_sym_return] = ACTIONS(674), - [anon_sym_static] = ACTIONS(674), - [anon_sym_struct] = ACTIONS(674), - [anon_sym_trait] = ACTIONS(674), - [anon_sym_type] = ACTIONS(674), - [anon_sym_union] = ACTIONS(674), - [anon_sym_unsafe] = ACTIONS(674), - [anon_sym_use] = ACTIONS(674), - [anon_sym_where] = ACTIONS(674), - [anon_sym_while] = ACTIONS(674), - [sym_mutable_specifier] = ACTIONS(674), - [sym_integer_literal] = ACTIONS(690), - [aux_sym_string_literal_token1] = ACTIONS(692), - [sym_char_literal] = ACTIONS(690), - [anon_sym_true] = ACTIONS(694), - [anon_sym_false] = ACTIONS(694), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(674), - [sym_super] = ACTIONS(674), - [sym_crate] = ACTIONS(674), - [sym__raw_string_literal_start] = ACTIONS(696), - [sym_float_literal] = ACTIONS(690), + [sym_identifier] = ACTIONS(679), + [anon_sym_SEMI] = ACTIONS(681), + [anon_sym_LPAREN] = ACTIONS(683), + [anon_sym_LBRACK] = ACTIONS(685), + [anon_sym_RBRACK] = ACTIONS(735), + [anon_sym_LBRACE] = ACTIONS(689), + [anon_sym_EQ_GT] = ACTIONS(681), + [anon_sym_COLON] = ACTIONS(691), + [anon_sym_DOLLAR] = ACTIONS(693), + [anon_sym_PLUS] = ACTIONS(691), + [anon_sym_STAR] = ACTIONS(691), + [anon_sym_QMARK] = ACTIONS(681), + [anon_sym_u8] = ACTIONS(679), + [anon_sym_i8] = ACTIONS(679), + [anon_sym_u16] = ACTIONS(679), + [anon_sym_i16] = ACTIONS(679), + [anon_sym_u32] = ACTIONS(679), + [anon_sym_i32] = ACTIONS(679), + [anon_sym_u64] = ACTIONS(679), + [anon_sym_i64] = ACTIONS(679), + [anon_sym_u128] = ACTIONS(679), + [anon_sym_i128] = ACTIONS(679), + [anon_sym_isize] = ACTIONS(679), + [anon_sym_usize] = ACTIONS(679), + [anon_sym_f32] = ACTIONS(679), + [anon_sym_f64] = ACTIONS(679), + [anon_sym_bool] = ACTIONS(679), + [anon_sym_str] = ACTIONS(679), + [anon_sym_char] = ACTIONS(679), + [anon_sym_DASH] = ACTIONS(691), + [anon_sym_SLASH] = ACTIONS(691), + [anon_sym_PERCENT] = ACTIONS(691), + [anon_sym_CARET] = ACTIONS(691), + [anon_sym_BANG] = ACTIONS(691), + [anon_sym_AMP] = ACTIONS(691), + [anon_sym_PIPE] = ACTIONS(691), + [anon_sym_AMP_AMP] = ACTIONS(681), + [anon_sym_PIPE_PIPE] = ACTIONS(681), + [anon_sym_LT_LT] = ACTIONS(691), + [anon_sym_GT_GT] = ACTIONS(691), + [anon_sym_PLUS_EQ] = ACTIONS(681), + [anon_sym_DASH_EQ] = ACTIONS(681), + [anon_sym_STAR_EQ] = ACTIONS(681), + [anon_sym_SLASH_EQ] = ACTIONS(681), + [anon_sym_PERCENT_EQ] = ACTIONS(681), + [anon_sym_CARET_EQ] = ACTIONS(681), + [anon_sym_AMP_EQ] = ACTIONS(681), + [anon_sym_PIPE_EQ] = ACTIONS(681), + [anon_sym_LT_LT_EQ] = ACTIONS(681), + [anon_sym_GT_GT_EQ] = ACTIONS(681), + [anon_sym_EQ] = ACTIONS(691), + [anon_sym_EQ_EQ] = ACTIONS(681), + [anon_sym_BANG_EQ] = ACTIONS(681), + [anon_sym_GT] = ACTIONS(691), + [anon_sym_LT] = ACTIONS(691), + [anon_sym_GT_EQ] = ACTIONS(681), + [anon_sym_LT_EQ] = ACTIONS(681), + [anon_sym_AT] = ACTIONS(681), + [anon_sym__] = ACTIONS(691), + [anon_sym_DOT] = ACTIONS(691), + [anon_sym_DOT_DOT] = ACTIONS(691), + [anon_sym_DOT_DOT_DOT] = ACTIONS(681), + [anon_sym_DOT_DOT_EQ] = ACTIONS(681), + [anon_sym_COMMA] = ACTIONS(681), + [anon_sym_COLON_COLON] = ACTIONS(681), + [anon_sym_DASH_GT] = ACTIONS(681), + [anon_sym_POUND] = ACTIONS(681), + [anon_sym_SQUOTE] = ACTIONS(679), + [anon_sym_as] = ACTIONS(679), + [anon_sym_async] = ACTIONS(679), + [anon_sym_await] = ACTIONS(679), + [anon_sym_break] = ACTIONS(679), + [anon_sym_const] = ACTIONS(679), + [anon_sym_continue] = ACTIONS(679), + [anon_sym_default] = ACTIONS(679), + [anon_sym_enum] = ACTIONS(679), + [anon_sym_fn] = ACTIONS(679), + [anon_sym_for] = ACTIONS(679), + [anon_sym_gen] = ACTIONS(679), + [anon_sym_if] = ACTIONS(679), + [anon_sym_impl] = ACTIONS(679), + [anon_sym_let] = ACTIONS(679), + [anon_sym_loop] = ACTIONS(679), + [anon_sym_match] = ACTIONS(679), + [anon_sym_mod] = ACTIONS(679), + [anon_sym_pub] = ACTIONS(679), + [anon_sym_return] = ACTIONS(679), + [anon_sym_static] = ACTIONS(679), + [anon_sym_struct] = ACTIONS(679), + [anon_sym_trait] = ACTIONS(679), + [anon_sym_type] = ACTIONS(679), + [anon_sym_union] = ACTIONS(679), + [anon_sym_unsafe] = ACTIONS(679), + [anon_sym_use] = ACTIONS(679), + [anon_sym_where] = ACTIONS(679), + [anon_sym_while] = ACTIONS(679), + [sym_mutable_specifier] = ACTIONS(679), + [sym_integer_literal] = ACTIONS(695), + [aux_sym_string_literal_token1] = ACTIONS(697), + [sym_char_literal] = ACTIONS(695), + [anon_sym_true] = ACTIONS(699), + [anon_sym_false] = ACTIONS(699), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(679), + [sym_super] = ACTIONS(679), + [sym_crate] = ACTIONS(679), + [sym__raw_string_literal_start] = ACTIONS(701), + [sym_float_literal] = ACTIONS(695), }, [STATE(115)] = { - [sym_delim_token_tree] = STATE(207), - [sym__delim_tokens] = STATE(208), - [sym__non_delim_token] = STATE(207), - [sym__literal] = STATE(206), - [sym_string_literal] = STATE(212), - [sym_raw_string_literal] = STATE(212), - [sym_boolean_literal] = STATE(212), + [sym_delim_token_tree] = STATE(208), + [sym__delim_tokens] = STATE(209), + [sym__non_delim_token] = STATE(208), + [sym__literal] = STATE(204), + [sym_string_literal] = STATE(201), + [sym_raw_string_literal] = STATE(201), + [sym_boolean_literal] = STATE(201), [sym_line_comment] = STATE(115), [sym_block_comment] = STATE(115), - [aux_sym__non_special_token_repeat1] = STATE(181), + [aux_sym__non_special_token_repeat1] = STATE(180), [aux_sym_delim_token_tree_repeat1] = STATE(118), - [sym_identifier] = ACTIONS(674), - [anon_sym_SEMI] = ACTIONS(676), - [anon_sym_LPAREN] = ACTIONS(678), - [anon_sym_LBRACK] = ACTIONS(680), - [anon_sym_RBRACK] = ACTIONS(734), - [anon_sym_LBRACE] = ACTIONS(682), - [anon_sym_EQ_GT] = ACTIONS(676), - [anon_sym_COLON] = ACTIONS(686), - [anon_sym_DOLLAR] = ACTIONS(688), - [anon_sym_PLUS] = ACTIONS(686), - [anon_sym_STAR] = ACTIONS(686), - [anon_sym_QMARK] = ACTIONS(676), - [anon_sym_u8] = ACTIONS(674), - [anon_sym_i8] = ACTIONS(674), - [anon_sym_u16] = ACTIONS(674), - [anon_sym_i16] = ACTIONS(674), - [anon_sym_u32] = ACTIONS(674), - [anon_sym_i32] = ACTIONS(674), - [anon_sym_u64] = ACTIONS(674), - [anon_sym_i64] = ACTIONS(674), - [anon_sym_u128] = ACTIONS(674), - [anon_sym_i128] = ACTIONS(674), - [anon_sym_isize] = ACTIONS(674), - [anon_sym_usize] = ACTIONS(674), - [anon_sym_f32] = ACTIONS(674), - [anon_sym_f64] = ACTIONS(674), - [anon_sym_bool] = ACTIONS(674), - [anon_sym_str] = ACTIONS(674), - [anon_sym_char] = ACTIONS(674), - [anon_sym_DASH] = ACTIONS(686), - [anon_sym_SLASH] = ACTIONS(686), - [anon_sym_PERCENT] = ACTIONS(686), - [anon_sym_CARET] = ACTIONS(686), - [anon_sym_BANG] = ACTIONS(686), - [anon_sym_AMP] = ACTIONS(686), - [anon_sym_PIPE] = ACTIONS(686), - [anon_sym_AMP_AMP] = ACTIONS(676), - [anon_sym_PIPE_PIPE] = ACTIONS(676), - [anon_sym_LT_LT] = ACTIONS(686), - [anon_sym_GT_GT] = ACTIONS(686), - [anon_sym_PLUS_EQ] = ACTIONS(676), - [anon_sym_DASH_EQ] = ACTIONS(676), - [anon_sym_STAR_EQ] = ACTIONS(676), - [anon_sym_SLASH_EQ] = ACTIONS(676), - [anon_sym_PERCENT_EQ] = ACTIONS(676), - [anon_sym_CARET_EQ] = ACTIONS(676), - [anon_sym_AMP_EQ] = ACTIONS(676), - [anon_sym_PIPE_EQ] = ACTIONS(676), - [anon_sym_LT_LT_EQ] = ACTIONS(676), - [anon_sym_GT_GT_EQ] = ACTIONS(676), - [anon_sym_EQ] = ACTIONS(686), - [anon_sym_EQ_EQ] = ACTIONS(676), - [anon_sym_BANG_EQ] = ACTIONS(676), - [anon_sym_GT] = ACTIONS(686), - [anon_sym_LT] = ACTIONS(686), - [anon_sym_GT_EQ] = ACTIONS(676), - [anon_sym_LT_EQ] = ACTIONS(676), - [anon_sym_AT] = ACTIONS(676), - [anon_sym__] = ACTIONS(686), - [anon_sym_DOT] = ACTIONS(686), - [anon_sym_DOT_DOT] = ACTIONS(686), - [anon_sym_DOT_DOT_DOT] = ACTIONS(676), - [anon_sym_DOT_DOT_EQ] = ACTIONS(676), - [anon_sym_COMMA] = ACTIONS(676), - [anon_sym_COLON_COLON] = ACTIONS(676), - [anon_sym_DASH_GT] = ACTIONS(676), - [anon_sym_POUND] = ACTIONS(676), - [anon_sym_SQUOTE] = ACTIONS(674), - [anon_sym_as] = ACTIONS(674), - [anon_sym_async] = ACTIONS(674), - [anon_sym_await] = ACTIONS(674), - [anon_sym_break] = ACTIONS(674), - [anon_sym_const] = ACTIONS(674), - [anon_sym_continue] = ACTIONS(674), - [anon_sym_default] = ACTIONS(674), - [anon_sym_enum] = ACTIONS(674), - [anon_sym_fn] = ACTIONS(674), - [anon_sym_for] = ACTIONS(674), - [anon_sym_gen] = ACTIONS(674), - [anon_sym_if] = ACTIONS(674), - [anon_sym_impl] = ACTIONS(674), - [anon_sym_let] = ACTIONS(674), - [anon_sym_loop] = ACTIONS(674), - [anon_sym_match] = ACTIONS(674), - [anon_sym_mod] = ACTIONS(674), - [anon_sym_pub] = ACTIONS(674), - [anon_sym_return] = ACTIONS(674), - [anon_sym_static] = ACTIONS(674), - [anon_sym_struct] = ACTIONS(674), - [anon_sym_trait] = ACTIONS(674), - [anon_sym_type] = ACTIONS(674), - [anon_sym_union] = ACTIONS(674), - [anon_sym_unsafe] = ACTIONS(674), - [anon_sym_use] = ACTIONS(674), - [anon_sym_where] = ACTIONS(674), - [anon_sym_while] = ACTIONS(674), - [sym_mutable_specifier] = ACTIONS(674), - [sym_integer_literal] = ACTIONS(690), - [aux_sym_string_literal_token1] = ACTIONS(692), - [sym_char_literal] = ACTIONS(690), - [anon_sym_true] = ACTIONS(694), - [anon_sym_false] = ACTIONS(694), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(674), - [sym_super] = ACTIONS(674), - [sym_crate] = ACTIONS(674), - [sym__raw_string_literal_start] = ACTIONS(696), - [sym_float_literal] = ACTIONS(690), + [sym_identifier] = ACTIONS(679), + [anon_sym_SEMI] = ACTIONS(681), + [anon_sym_LPAREN] = ACTIONS(683), + [anon_sym_LBRACK] = ACTIONS(685), + [anon_sym_LBRACE] = ACTIONS(689), + [anon_sym_RBRACE] = ACTIONS(735), + [anon_sym_EQ_GT] = ACTIONS(681), + [anon_sym_COLON] = ACTIONS(691), + [anon_sym_DOLLAR] = ACTIONS(693), + [anon_sym_PLUS] = ACTIONS(691), + [anon_sym_STAR] = ACTIONS(691), + [anon_sym_QMARK] = ACTIONS(681), + [anon_sym_u8] = ACTIONS(679), + [anon_sym_i8] = ACTIONS(679), + [anon_sym_u16] = ACTIONS(679), + [anon_sym_i16] = ACTIONS(679), + [anon_sym_u32] = ACTIONS(679), + [anon_sym_i32] = ACTIONS(679), + [anon_sym_u64] = ACTIONS(679), + [anon_sym_i64] = ACTIONS(679), + [anon_sym_u128] = ACTIONS(679), + [anon_sym_i128] = ACTIONS(679), + [anon_sym_isize] = ACTIONS(679), + [anon_sym_usize] = ACTIONS(679), + [anon_sym_f32] = ACTIONS(679), + [anon_sym_f64] = ACTIONS(679), + [anon_sym_bool] = ACTIONS(679), + [anon_sym_str] = ACTIONS(679), + [anon_sym_char] = ACTIONS(679), + [anon_sym_DASH] = ACTIONS(691), + [anon_sym_SLASH] = ACTIONS(691), + [anon_sym_PERCENT] = ACTIONS(691), + [anon_sym_CARET] = ACTIONS(691), + [anon_sym_BANG] = ACTIONS(691), + [anon_sym_AMP] = ACTIONS(691), + [anon_sym_PIPE] = ACTIONS(691), + [anon_sym_AMP_AMP] = ACTIONS(681), + [anon_sym_PIPE_PIPE] = ACTIONS(681), + [anon_sym_LT_LT] = ACTIONS(691), + [anon_sym_GT_GT] = ACTIONS(691), + [anon_sym_PLUS_EQ] = ACTIONS(681), + [anon_sym_DASH_EQ] = ACTIONS(681), + [anon_sym_STAR_EQ] = ACTIONS(681), + [anon_sym_SLASH_EQ] = ACTIONS(681), + [anon_sym_PERCENT_EQ] = ACTIONS(681), + [anon_sym_CARET_EQ] = ACTIONS(681), + [anon_sym_AMP_EQ] = ACTIONS(681), + [anon_sym_PIPE_EQ] = ACTIONS(681), + [anon_sym_LT_LT_EQ] = ACTIONS(681), + [anon_sym_GT_GT_EQ] = ACTIONS(681), + [anon_sym_EQ] = ACTIONS(691), + [anon_sym_EQ_EQ] = ACTIONS(681), + [anon_sym_BANG_EQ] = ACTIONS(681), + [anon_sym_GT] = ACTIONS(691), + [anon_sym_LT] = ACTIONS(691), + [anon_sym_GT_EQ] = ACTIONS(681), + [anon_sym_LT_EQ] = ACTIONS(681), + [anon_sym_AT] = ACTIONS(681), + [anon_sym__] = ACTIONS(691), + [anon_sym_DOT] = ACTIONS(691), + [anon_sym_DOT_DOT] = ACTIONS(691), + [anon_sym_DOT_DOT_DOT] = ACTIONS(681), + [anon_sym_DOT_DOT_EQ] = ACTIONS(681), + [anon_sym_COMMA] = ACTIONS(681), + [anon_sym_COLON_COLON] = ACTIONS(681), + [anon_sym_DASH_GT] = ACTIONS(681), + [anon_sym_POUND] = ACTIONS(681), + [anon_sym_SQUOTE] = ACTIONS(679), + [anon_sym_as] = ACTIONS(679), + [anon_sym_async] = ACTIONS(679), + [anon_sym_await] = ACTIONS(679), + [anon_sym_break] = ACTIONS(679), + [anon_sym_const] = ACTIONS(679), + [anon_sym_continue] = ACTIONS(679), + [anon_sym_default] = ACTIONS(679), + [anon_sym_enum] = ACTIONS(679), + [anon_sym_fn] = ACTIONS(679), + [anon_sym_for] = ACTIONS(679), + [anon_sym_gen] = ACTIONS(679), + [anon_sym_if] = ACTIONS(679), + [anon_sym_impl] = ACTIONS(679), + [anon_sym_let] = ACTIONS(679), + [anon_sym_loop] = ACTIONS(679), + [anon_sym_match] = ACTIONS(679), + [anon_sym_mod] = ACTIONS(679), + [anon_sym_pub] = ACTIONS(679), + [anon_sym_return] = ACTIONS(679), + [anon_sym_static] = ACTIONS(679), + [anon_sym_struct] = ACTIONS(679), + [anon_sym_trait] = ACTIONS(679), + [anon_sym_type] = ACTIONS(679), + [anon_sym_union] = ACTIONS(679), + [anon_sym_unsafe] = ACTIONS(679), + [anon_sym_use] = ACTIONS(679), + [anon_sym_where] = ACTIONS(679), + [anon_sym_while] = ACTIONS(679), + [sym_mutable_specifier] = ACTIONS(679), + [sym_integer_literal] = ACTIONS(695), + [aux_sym_string_literal_token1] = ACTIONS(697), + [sym_char_literal] = ACTIONS(695), + [anon_sym_true] = ACTIONS(699), + [anon_sym_false] = ACTIONS(699), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(679), + [sym_super] = ACTIONS(679), + [sym_crate] = ACTIONS(679), + [sym__raw_string_literal_start] = ACTIONS(701), + [sym_float_literal] = ACTIONS(695), }, [STATE(116)] = { - [sym_delim_token_tree] = STATE(207), - [sym__delim_tokens] = STATE(208), - [sym__non_delim_token] = STATE(207), - [sym__literal] = STATE(206), - [sym_string_literal] = STATE(212), - [sym_raw_string_literal] = STATE(212), - [sym_boolean_literal] = STATE(212), + [sym_delim_token_tree] = STATE(208), + [sym__delim_tokens] = STATE(209), + [sym__non_delim_token] = STATE(208), + [sym__literal] = STATE(204), + [sym_string_literal] = STATE(201), + [sym_raw_string_literal] = STATE(201), + [sym_boolean_literal] = STATE(201), [sym_line_comment] = STATE(116), [sym_block_comment] = STATE(116), - [aux_sym__non_special_token_repeat1] = STATE(181), - [aux_sym_delim_token_tree_repeat1] = STATE(119), - [sym_identifier] = ACTIONS(674), - [anon_sym_SEMI] = ACTIONS(676), - [anon_sym_LPAREN] = ACTIONS(678), - [anon_sym_LBRACK] = ACTIONS(680), - [anon_sym_LBRACE] = ACTIONS(682), - [anon_sym_RBRACE] = ACTIONS(734), - [anon_sym_EQ_GT] = ACTIONS(676), - [anon_sym_COLON] = ACTIONS(686), - [anon_sym_DOLLAR] = ACTIONS(688), - [anon_sym_PLUS] = ACTIONS(686), - [anon_sym_STAR] = ACTIONS(686), - [anon_sym_QMARK] = ACTIONS(676), - [anon_sym_u8] = ACTIONS(674), - [anon_sym_i8] = ACTIONS(674), - [anon_sym_u16] = ACTIONS(674), - [anon_sym_i16] = ACTIONS(674), - [anon_sym_u32] = ACTIONS(674), - [anon_sym_i32] = ACTIONS(674), - [anon_sym_u64] = ACTIONS(674), - [anon_sym_i64] = ACTIONS(674), - [anon_sym_u128] = ACTIONS(674), - [anon_sym_i128] = ACTIONS(674), - [anon_sym_isize] = ACTIONS(674), - [anon_sym_usize] = ACTIONS(674), - [anon_sym_f32] = ACTIONS(674), - [anon_sym_f64] = ACTIONS(674), - [anon_sym_bool] = ACTIONS(674), - [anon_sym_str] = ACTIONS(674), - [anon_sym_char] = ACTIONS(674), - [anon_sym_DASH] = ACTIONS(686), - [anon_sym_SLASH] = ACTIONS(686), - [anon_sym_PERCENT] = ACTIONS(686), - [anon_sym_CARET] = ACTIONS(686), - [anon_sym_BANG] = ACTIONS(686), - [anon_sym_AMP] = ACTIONS(686), - [anon_sym_PIPE] = ACTIONS(686), - [anon_sym_AMP_AMP] = ACTIONS(676), - [anon_sym_PIPE_PIPE] = ACTIONS(676), - [anon_sym_LT_LT] = ACTIONS(686), - [anon_sym_GT_GT] = ACTIONS(686), - [anon_sym_PLUS_EQ] = ACTIONS(676), - [anon_sym_DASH_EQ] = ACTIONS(676), - [anon_sym_STAR_EQ] = ACTIONS(676), - [anon_sym_SLASH_EQ] = ACTIONS(676), - [anon_sym_PERCENT_EQ] = ACTIONS(676), - [anon_sym_CARET_EQ] = ACTIONS(676), - [anon_sym_AMP_EQ] = ACTIONS(676), - [anon_sym_PIPE_EQ] = ACTIONS(676), - [anon_sym_LT_LT_EQ] = ACTIONS(676), - [anon_sym_GT_GT_EQ] = ACTIONS(676), - [anon_sym_EQ] = ACTIONS(686), - [anon_sym_EQ_EQ] = ACTIONS(676), - [anon_sym_BANG_EQ] = ACTIONS(676), - [anon_sym_GT] = ACTIONS(686), - [anon_sym_LT] = ACTIONS(686), - [anon_sym_GT_EQ] = ACTIONS(676), - [anon_sym_LT_EQ] = ACTIONS(676), - [anon_sym_AT] = ACTIONS(676), - [anon_sym__] = ACTIONS(686), - [anon_sym_DOT] = ACTIONS(686), - [anon_sym_DOT_DOT] = ACTIONS(686), - [anon_sym_DOT_DOT_DOT] = ACTIONS(676), - [anon_sym_DOT_DOT_EQ] = ACTIONS(676), - [anon_sym_COMMA] = ACTIONS(676), - [anon_sym_COLON_COLON] = ACTIONS(676), - [anon_sym_DASH_GT] = ACTIONS(676), - [anon_sym_POUND] = ACTIONS(676), - [anon_sym_SQUOTE] = ACTIONS(674), - [anon_sym_as] = ACTIONS(674), - [anon_sym_async] = ACTIONS(674), - [anon_sym_await] = ACTIONS(674), - [anon_sym_break] = ACTIONS(674), - [anon_sym_const] = ACTIONS(674), - [anon_sym_continue] = ACTIONS(674), - [anon_sym_default] = ACTIONS(674), - [anon_sym_enum] = ACTIONS(674), - [anon_sym_fn] = ACTIONS(674), - [anon_sym_for] = ACTIONS(674), - [anon_sym_gen] = ACTIONS(674), - [anon_sym_if] = ACTIONS(674), - [anon_sym_impl] = ACTIONS(674), - [anon_sym_let] = ACTIONS(674), - [anon_sym_loop] = ACTIONS(674), - [anon_sym_match] = ACTIONS(674), - [anon_sym_mod] = ACTIONS(674), - [anon_sym_pub] = ACTIONS(674), - [anon_sym_return] = ACTIONS(674), - [anon_sym_static] = ACTIONS(674), - [anon_sym_struct] = ACTIONS(674), - [anon_sym_trait] = ACTIONS(674), - [anon_sym_type] = ACTIONS(674), - [anon_sym_union] = ACTIONS(674), - [anon_sym_unsafe] = ACTIONS(674), - [anon_sym_use] = ACTIONS(674), - [anon_sym_where] = ACTIONS(674), - [anon_sym_while] = ACTIONS(674), - [sym_mutable_specifier] = ACTIONS(674), - [sym_integer_literal] = ACTIONS(690), - [aux_sym_string_literal_token1] = ACTIONS(692), - [sym_char_literal] = ACTIONS(690), - [anon_sym_true] = ACTIONS(694), - [anon_sym_false] = ACTIONS(694), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(674), - [sym_super] = ACTIONS(674), - [sym_crate] = ACTIONS(674), - [sym__raw_string_literal_start] = ACTIONS(696), - [sym_float_literal] = ACTIONS(690), + [aux_sym__non_special_token_repeat1] = STATE(180), + [aux_sym_delim_token_tree_repeat1] = STATE(72), + [sym_identifier] = ACTIONS(679), + [anon_sym_SEMI] = ACTIONS(681), + [anon_sym_LPAREN] = ACTIONS(683), + [anon_sym_RPAREN] = ACTIONS(737), + [anon_sym_LBRACK] = ACTIONS(685), + [anon_sym_LBRACE] = ACTIONS(689), + [anon_sym_EQ_GT] = ACTIONS(681), + [anon_sym_COLON] = ACTIONS(691), + [anon_sym_DOLLAR] = ACTIONS(693), + [anon_sym_PLUS] = ACTIONS(691), + [anon_sym_STAR] = ACTIONS(691), + [anon_sym_QMARK] = ACTIONS(681), + [anon_sym_u8] = ACTIONS(679), + [anon_sym_i8] = ACTIONS(679), + [anon_sym_u16] = ACTIONS(679), + [anon_sym_i16] = ACTIONS(679), + [anon_sym_u32] = ACTIONS(679), + [anon_sym_i32] = ACTIONS(679), + [anon_sym_u64] = ACTIONS(679), + [anon_sym_i64] = ACTIONS(679), + [anon_sym_u128] = ACTIONS(679), + [anon_sym_i128] = ACTIONS(679), + [anon_sym_isize] = ACTIONS(679), + [anon_sym_usize] = ACTIONS(679), + [anon_sym_f32] = ACTIONS(679), + [anon_sym_f64] = ACTIONS(679), + [anon_sym_bool] = ACTIONS(679), + [anon_sym_str] = ACTIONS(679), + [anon_sym_char] = ACTIONS(679), + [anon_sym_DASH] = ACTIONS(691), + [anon_sym_SLASH] = ACTIONS(691), + [anon_sym_PERCENT] = ACTIONS(691), + [anon_sym_CARET] = ACTIONS(691), + [anon_sym_BANG] = ACTIONS(691), + [anon_sym_AMP] = ACTIONS(691), + [anon_sym_PIPE] = ACTIONS(691), + [anon_sym_AMP_AMP] = ACTIONS(681), + [anon_sym_PIPE_PIPE] = ACTIONS(681), + [anon_sym_LT_LT] = ACTIONS(691), + [anon_sym_GT_GT] = ACTIONS(691), + [anon_sym_PLUS_EQ] = ACTIONS(681), + [anon_sym_DASH_EQ] = ACTIONS(681), + [anon_sym_STAR_EQ] = ACTIONS(681), + [anon_sym_SLASH_EQ] = ACTIONS(681), + [anon_sym_PERCENT_EQ] = ACTIONS(681), + [anon_sym_CARET_EQ] = ACTIONS(681), + [anon_sym_AMP_EQ] = ACTIONS(681), + [anon_sym_PIPE_EQ] = ACTIONS(681), + [anon_sym_LT_LT_EQ] = ACTIONS(681), + [anon_sym_GT_GT_EQ] = ACTIONS(681), + [anon_sym_EQ] = ACTIONS(691), + [anon_sym_EQ_EQ] = ACTIONS(681), + [anon_sym_BANG_EQ] = ACTIONS(681), + [anon_sym_GT] = ACTIONS(691), + [anon_sym_LT] = ACTIONS(691), + [anon_sym_GT_EQ] = ACTIONS(681), + [anon_sym_LT_EQ] = ACTIONS(681), + [anon_sym_AT] = ACTIONS(681), + [anon_sym__] = ACTIONS(691), + [anon_sym_DOT] = ACTIONS(691), + [anon_sym_DOT_DOT] = ACTIONS(691), + [anon_sym_DOT_DOT_DOT] = ACTIONS(681), + [anon_sym_DOT_DOT_EQ] = ACTIONS(681), + [anon_sym_COMMA] = ACTIONS(681), + [anon_sym_COLON_COLON] = ACTIONS(681), + [anon_sym_DASH_GT] = ACTIONS(681), + [anon_sym_POUND] = ACTIONS(681), + [anon_sym_SQUOTE] = ACTIONS(679), + [anon_sym_as] = ACTIONS(679), + [anon_sym_async] = ACTIONS(679), + [anon_sym_await] = ACTIONS(679), + [anon_sym_break] = ACTIONS(679), + [anon_sym_const] = ACTIONS(679), + [anon_sym_continue] = ACTIONS(679), + [anon_sym_default] = ACTIONS(679), + [anon_sym_enum] = ACTIONS(679), + [anon_sym_fn] = ACTIONS(679), + [anon_sym_for] = ACTIONS(679), + [anon_sym_gen] = ACTIONS(679), + [anon_sym_if] = ACTIONS(679), + [anon_sym_impl] = ACTIONS(679), + [anon_sym_let] = ACTIONS(679), + [anon_sym_loop] = ACTIONS(679), + [anon_sym_match] = ACTIONS(679), + [anon_sym_mod] = ACTIONS(679), + [anon_sym_pub] = ACTIONS(679), + [anon_sym_return] = ACTIONS(679), + [anon_sym_static] = ACTIONS(679), + [anon_sym_struct] = ACTIONS(679), + [anon_sym_trait] = ACTIONS(679), + [anon_sym_type] = ACTIONS(679), + [anon_sym_union] = ACTIONS(679), + [anon_sym_unsafe] = ACTIONS(679), + [anon_sym_use] = ACTIONS(679), + [anon_sym_where] = ACTIONS(679), + [anon_sym_while] = ACTIONS(679), + [sym_mutable_specifier] = ACTIONS(679), + [sym_integer_literal] = ACTIONS(695), + [aux_sym_string_literal_token1] = ACTIONS(697), + [sym_char_literal] = ACTIONS(695), + [anon_sym_true] = ACTIONS(699), + [anon_sym_false] = ACTIONS(699), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(679), + [sym_super] = ACTIONS(679), + [sym_crate] = ACTIONS(679), + [sym__raw_string_literal_start] = ACTIONS(701), + [sym_float_literal] = ACTIONS(695), }, [STATE(117)] = { - [sym_delim_token_tree] = STATE(207), - [sym__delim_tokens] = STATE(208), - [sym__non_delim_token] = STATE(207), - [sym__literal] = STATE(206), - [sym_string_literal] = STATE(212), - [sym_raw_string_literal] = STATE(212), - [sym_boolean_literal] = STATE(212), + [sym_delim_token_tree] = STATE(208), + [sym__delim_tokens] = STATE(209), + [sym__non_delim_token] = STATE(208), + [sym__literal] = STATE(204), + [sym_string_literal] = STATE(201), + [sym_raw_string_literal] = STATE(201), + [sym_boolean_literal] = STATE(201), [sym_line_comment] = STATE(117), [sym_block_comment] = STATE(117), - [aux_sym__non_special_token_repeat1] = STATE(181), - [aux_sym_delim_token_tree_repeat1] = STATE(68), - [sym_identifier] = ACTIONS(674), - [anon_sym_SEMI] = ACTIONS(676), - [anon_sym_LPAREN] = ACTIONS(678), - [anon_sym_RPAREN] = ACTIONS(736), - [anon_sym_LBRACK] = ACTIONS(680), - [anon_sym_LBRACE] = ACTIONS(682), - [anon_sym_EQ_GT] = ACTIONS(676), - [anon_sym_COLON] = ACTIONS(686), - [anon_sym_DOLLAR] = ACTIONS(688), - [anon_sym_PLUS] = ACTIONS(686), - [anon_sym_STAR] = ACTIONS(686), - [anon_sym_QMARK] = ACTIONS(676), - [anon_sym_u8] = ACTIONS(674), - [anon_sym_i8] = ACTIONS(674), - [anon_sym_u16] = ACTIONS(674), - [anon_sym_i16] = ACTIONS(674), - [anon_sym_u32] = ACTIONS(674), - [anon_sym_i32] = ACTIONS(674), - [anon_sym_u64] = ACTIONS(674), - [anon_sym_i64] = ACTIONS(674), - [anon_sym_u128] = ACTIONS(674), - [anon_sym_i128] = ACTIONS(674), - [anon_sym_isize] = ACTIONS(674), - [anon_sym_usize] = ACTIONS(674), - [anon_sym_f32] = ACTIONS(674), - [anon_sym_f64] = ACTIONS(674), - [anon_sym_bool] = ACTIONS(674), - [anon_sym_str] = ACTIONS(674), - [anon_sym_char] = ACTIONS(674), - [anon_sym_DASH] = ACTIONS(686), - [anon_sym_SLASH] = ACTIONS(686), - [anon_sym_PERCENT] = ACTIONS(686), - [anon_sym_CARET] = ACTIONS(686), - [anon_sym_BANG] = ACTIONS(686), - [anon_sym_AMP] = ACTIONS(686), - [anon_sym_PIPE] = ACTIONS(686), - [anon_sym_AMP_AMP] = ACTIONS(676), - [anon_sym_PIPE_PIPE] = ACTIONS(676), - [anon_sym_LT_LT] = ACTIONS(686), - [anon_sym_GT_GT] = ACTIONS(686), - [anon_sym_PLUS_EQ] = ACTIONS(676), - [anon_sym_DASH_EQ] = ACTIONS(676), - [anon_sym_STAR_EQ] = ACTIONS(676), - [anon_sym_SLASH_EQ] = ACTIONS(676), - [anon_sym_PERCENT_EQ] = ACTIONS(676), - [anon_sym_CARET_EQ] = ACTIONS(676), - [anon_sym_AMP_EQ] = ACTIONS(676), - [anon_sym_PIPE_EQ] = ACTIONS(676), - [anon_sym_LT_LT_EQ] = ACTIONS(676), - [anon_sym_GT_GT_EQ] = ACTIONS(676), - [anon_sym_EQ] = ACTIONS(686), - [anon_sym_EQ_EQ] = ACTIONS(676), - [anon_sym_BANG_EQ] = ACTIONS(676), - [anon_sym_GT] = ACTIONS(686), - [anon_sym_LT] = ACTIONS(686), - [anon_sym_GT_EQ] = ACTIONS(676), - [anon_sym_LT_EQ] = ACTIONS(676), - [anon_sym_AT] = ACTIONS(676), - [anon_sym__] = ACTIONS(686), - [anon_sym_DOT] = ACTIONS(686), - [anon_sym_DOT_DOT] = ACTIONS(686), - [anon_sym_DOT_DOT_DOT] = ACTIONS(676), - [anon_sym_DOT_DOT_EQ] = ACTIONS(676), - [anon_sym_COMMA] = ACTIONS(676), - [anon_sym_COLON_COLON] = ACTIONS(676), - [anon_sym_DASH_GT] = ACTIONS(676), - [anon_sym_POUND] = ACTIONS(676), - [anon_sym_SQUOTE] = ACTIONS(674), - [anon_sym_as] = ACTIONS(674), - [anon_sym_async] = ACTIONS(674), - [anon_sym_await] = ACTIONS(674), - [anon_sym_break] = ACTIONS(674), - [anon_sym_const] = ACTIONS(674), - [anon_sym_continue] = ACTIONS(674), - [anon_sym_default] = ACTIONS(674), - [anon_sym_enum] = ACTIONS(674), - [anon_sym_fn] = ACTIONS(674), - [anon_sym_for] = ACTIONS(674), - [anon_sym_gen] = ACTIONS(674), - [anon_sym_if] = ACTIONS(674), - [anon_sym_impl] = ACTIONS(674), - [anon_sym_let] = ACTIONS(674), - [anon_sym_loop] = ACTIONS(674), - [anon_sym_match] = ACTIONS(674), - [anon_sym_mod] = ACTIONS(674), - [anon_sym_pub] = ACTIONS(674), - [anon_sym_return] = ACTIONS(674), - [anon_sym_static] = ACTIONS(674), - [anon_sym_struct] = ACTIONS(674), - [anon_sym_trait] = ACTIONS(674), - [anon_sym_type] = ACTIONS(674), - [anon_sym_union] = ACTIONS(674), - [anon_sym_unsafe] = ACTIONS(674), - [anon_sym_use] = ACTIONS(674), - [anon_sym_where] = ACTIONS(674), - [anon_sym_while] = ACTIONS(674), - [sym_mutable_specifier] = ACTIONS(674), - [sym_integer_literal] = ACTIONS(690), - [aux_sym_string_literal_token1] = ACTIONS(692), - [sym_char_literal] = ACTIONS(690), - [anon_sym_true] = ACTIONS(694), - [anon_sym_false] = ACTIONS(694), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(674), - [sym_super] = ACTIONS(674), - [sym_crate] = ACTIONS(674), - [sym__raw_string_literal_start] = ACTIONS(696), - [sym_float_literal] = ACTIONS(690), + [aux_sym__non_special_token_repeat1] = STATE(180), + [aux_sym_delim_token_tree_repeat1] = STATE(72), + [sym_identifier] = ACTIONS(679), + [anon_sym_SEMI] = ACTIONS(681), + [anon_sym_LPAREN] = ACTIONS(683), + [anon_sym_LBRACK] = ACTIONS(685), + [anon_sym_RBRACK] = ACTIONS(737), + [anon_sym_LBRACE] = ACTIONS(689), + [anon_sym_EQ_GT] = ACTIONS(681), + [anon_sym_COLON] = ACTIONS(691), + [anon_sym_DOLLAR] = ACTIONS(693), + [anon_sym_PLUS] = ACTIONS(691), + [anon_sym_STAR] = ACTIONS(691), + [anon_sym_QMARK] = ACTIONS(681), + [anon_sym_u8] = ACTIONS(679), + [anon_sym_i8] = ACTIONS(679), + [anon_sym_u16] = ACTIONS(679), + [anon_sym_i16] = ACTIONS(679), + [anon_sym_u32] = ACTIONS(679), + [anon_sym_i32] = ACTIONS(679), + [anon_sym_u64] = ACTIONS(679), + [anon_sym_i64] = ACTIONS(679), + [anon_sym_u128] = ACTIONS(679), + [anon_sym_i128] = ACTIONS(679), + [anon_sym_isize] = ACTIONS(679), + [anon_sym_usize] = ACTIONS(679), + [anon_sym_f32] = ACTIONS(679), + [anon_sym_f64] = ACTIONS(679), + [anon_sym_bool] = ACTIONS(679), + [anon_sym_str] = ACTIONS(679), + [anon_sym_char] = ACTIONS(679), + [anon_sym_DASH] = ACTIONS(691), + [anon_sym_SLASH] = ACTIONS(691), + [anon_sym_PERCENT] = ACTIONS(691), + [anon_sym_CARET] = ACTIONS(691), + [anon_sym_BANG] = ACTIONS(691), + [anon_sym_AMP] = ACTIONS(691), + [anon_sym_PIPE] = ACTIONS(691), + [anon_sym_AMP_AMP] = ACTIONS(681), + [anon_sym_PIPE_PIPE] = ACTIONS(681), + [anon_sym_LT_LT] = ACTIONS(691), + [anon_sym_GT_GT] = ACTIONS(691), + [anon_sym_PLUS_EQ] = ACTIONS(681), + [anon_sym_DASH_EQ] = ACTIONS(681), + [anon_sym_STAR_EQ] = ACTIONS(681), + [anon_sym_SLASH_EQ] = ACTIONS(681), + [anon_sym_PERCENT_EQ] = ACTIONS(681), + [anon_sym_CARET_EQ] = ACTIONS(681), + [anon_sym_AMP_EQ] = ACTIONS(681), + [anon_sym_PIPE_EQ] = ACTIONS(681), + [anon_sym_LT_LT_EQ] = ACTIONS(681), + [anon_sym_GT_GT_EQ] = ACTIONS(681), + [anon_sym_EQ] = ACTIONS(691), + [anon_sym_EQ_EQ] = ACTIONS(681), + [anon_sym_BANG_EQ] = ACTIONS(681), + [anon_sym_GT] = ACTIONS(691), + [anon_sym_LT] = ACTIONS(691), + [anon_sym_GT_EQ] = ACTIONS(681), + [anon_sym_LT_EQ] = ACTIONS(681), + [anon_sym_AT] = ACTIONS(681), + [anon_sym__] = ACTIONS(691), + [anon_sym_DOT] = ACTIONS(691), + [anon_sym_DOT_DOT] = ACTIONS(691), + [anon_sym_DOT_DOT_DOT] = ACTIONS(681), + [anon_sym_DOT_DOT_EQ] = ACTIONS(681), + [anon_sym_COMMA] = ACTIONS(681), + [anon_sym_COLON_COLON] = ACTIONS(681), + [anon_sym_DASH_GT] = ACTIONS(681), + [anon_sym_POUND] = ACTIONS(681), + [anon_sym_SQUOTE] = ACTIONS(679), + [anon_sym_as] = ACTIONS(679), + [anon_sym_async] = ACTIONS(679), + [anon_sym_await] = ACTIONS(679), + [anon_sym_break] = ACTIONS(679), + [anon_sym_const] = ACTIONS(679), + [anon_sym_continue] = ACTIONS(679), + [anon_sym_default] = ACTIONS(679), + [anon_sym_enum] = ACTIONS(679), + [anon_sym_fn] = ACTIONS(679), + [anon_sym_for] = ACTIONS(679), + [anon_sym_gen] = ACTIONS(679), + [anon_sym_if] = ACTIONS(679), + [anon_sym_impl] = ACTIONS(679), + [anon_sym_let] = ACTIONS(679), + [anon_sym_loop] = ACTIONS(679), + [anon_sym_match] = ACTIONS(679), + [anon_sym_mod] = ACTIONS(679), + [anon_sym_pub] = ACTIONS(679), + [anon_sym_return] = ACTIONS(679), + [anon_sym_static] = ACTIONS(679), + [anon_sym_struct] = ACTIONS(679), + [anon_sym_trait] = ACTIONS(679), + [anon_sym_type] = ACTIONS(679), + [anon_sym_union] = ACTIONS(679), + [anon_sym_unsafe] = ACTIONS(679), + [anon_sym_use] = ACTIONS(679), + [anon_sym_where] = ACTIONS(679), + [anon_sym_while] = ACTIONS(679), + [sym_mutable_specifier] = ACTIONS(679), + [sym_integer_literal] = ACTIONS(695), + [aux_sym_string_literal_token1] = ACTIONS(697), + [sym_char_literal] = ACTIONS(695), + [anon_sym_true] = ACTIONS(699), + [anon_sym_false] = ACTIONS(699), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(679), + [sym_super] = ACTIONS(679), + [sym_crate] = ACTIONS(679), + [sym__raw_string_literal_start] = ACTIONS(701), + [sym_float_literal] = ACTIONS(695), }, [STATE(118)] = { - [sym_delim_token_tree] = STATE(207), - [sym__delim_tokens] = STATE(208), - [sym__non_delim_token] = STATE(207), - [sym__literal] = STATE(206), - [sym_string_literal] = STATE(212), - [sym_raw_string_literal] = STATE(212), - [sym_boolean_literal] = STATE(212), + [sym_delim_token_tree] = STATE(208), + [sym__delim_tokens] = STATE(209), + [sym__non_delim_token] = STATE(208), + [sym__literal] = STATE(204), + [sym_string_literal] = STATE(201), + [sym_raw_string_literal] = STATE(201), + [sym_boolean_literal] = STATE(201), [sym_line_comment] = STATE(118), [sym_block_comment] = STATE(118), - [aux_sym__non_special_token_repeat1] = STATE(181), - [aux_sym_delim_token_tree_repeat1] = STATE(68), - [sym_identifier] = ACTIONS(674), - [anon_sym_SEMI] = ACTIONS(676), - [anon_sym_LPAREN] = ACTIONS(678), - [anon_sym_LBRACK] = ACTIONS(680), - [anon_sym_RBRACK] = ACTIONS(736), - [anon_sym_LBRACE] = ACTIONS(682), - [anon_sym_EQ_GT] = ACTIONS(676), - [anon_sym_COLON] = ACTIONS(686), - [anon_sym_DOLLAR] = ACTIONS(688), - [anon_sym_PLUS] = ACTIONS(686), - [anon_sym_STAR] = ACTIONS(686), - [anon_sym_QMARK] = ACTIONS(676), - [anon_sym_u8] = ACTIONS(674), - [anon_sym_i8] = ACTIONS(674), - [anon_sym_u16] = ACTIONS(674), - [anon_sym_i16] = ACTIONS(674), - [anon_sym_u32] = ACTIONS(674), - [anon_sym_i32] = ACTIONS(674), - [anon_sym_u64] = ACTIONS(674), - [anon_sym_i64] = ACTIONS(674), - [anon_sym_u128] = ACTIONS(674), - [anon_sym_i128] = ACTIONS(674), - [anon_sym_isize] = ACTIONS(674), - [anon_sym_usize] = ACTIONS(674), - [anon_sym_f32] = ACTIONS(674), - [anon_sym_f64] = ACTIONS(674), - [anon_sym_bool] = ACTIONS(674), - [anon_sym_str] = ACTIONS(674), - [anon_sym_char] = ACTIONS(674), - [anon_sym_DASH] = ACTIONS(686), - [anon_sym_SLASH] = ACTIONS(686), - [anon_sym_PERCENT] = ACTIONS(686), - [anon_sym_CARET] = ACTIONS(686), - [anon_sym_BANG] = ACTIONS(686), - [anon_sym_AMP] = ACTIONS(686), - [anon_sym_PIPE] = ACTIONS(686), - [anon_sym_AMP_AMP] = ACTIONS(676), - [anon_sym_PIPE_PIPE] = ACTIONS(676), - [anon_sym_LT_LT] = ACTIONS(686), - [anon_sym_GT_GT] = ACTIONS(686), - [anon_sym_PLUS_EQ] = ACTIONS(676), - [anon_sym_DASH_EQ] = ACTIONS(676), - [anon_sym_STAR_EQ] = ACTIONS(676), - [anon_sym_SLASH_EQ] = ACTIONS(676), - [anon_sym_PERCENT_EQ] = ACTIONS(676), - [anon_sym_CARET_EQ] = ACTIONS(676), - [anon_sym_AMP_EQ] = ACTIONS(676), - [anon_sym_PIPE_EQ] = ACTIONS(676), - [anon_sym_LT_LT_EQ] = ACTIONS(676), - [anon_sym_GT_GT_EQ] = ACTIONS(676), - [anon_sym_EQ] = ACTIONS(686), - [anon_sym_EQ_EQ] = ACTIONS(676), - [anon_sym_BANG_EQ] = ACTIONS(676), - [anon_sym_GT] = ACTIONS(686), - [anon_sym_LT] = ACTIONS(686), - [anon_sym_GT_EQ] = ACTIONS(676), - [anon_sym_LT_EQ] = ACTIONS(676), - [anon_sym_AT] = ACTIONS(676), - [anon_sym__] = ACTIONS(686), - [anon_sym_DOT] = ACTIONS(686), - [anon_sym_DOT_DOT] = ACTIONS(686), - [anon_sym_DOT_DOT_DOT] = ACTIONS(676), - [anon_sym_DOT_DOT_EQ] = ACTIONS(676), - [anon_sym_COMMA] = ACTIONS(676), - [anon_sym_COLON_COLON] = ACTIONS(676), - [anon_sym_DASH_GT] = ACTIONS(676), - [anon_sym_POUND] = ACTIONS(676), - [anon_sym_SQUOTE] = ACTIONS(674), - [anon_sym_as] = ACTIONS(674), - [anon_sym_async] = ACTIONS(674), - [anon_sym_await] = ACTIONS(674), - [anon_sym_break] = ACTIONS(674), - [anon_sym_const] = ACTIONS(674), - [anon_sym_continue] = ACTIONS(674), - [anon_sym_default] = ACTIONS(674), - [anon_sym_enum] = ACTIONS(674), - [anon_sym_fn] = ACTIONS(674), - [anon_sym_for] = ACTIONS(674), - [anon_sym_gen] = ACTIONS(674), - [anon_sym_if] = ACTIONS(674), - [anon_sym_impl] = ACTIONS(674), - [anon_sym_let] = ACTIONS(674), - [anon_sym_loop] = ACTIONS(674), - [anon_sym_match] = ACTIONS(674), - [anon_sym_mod] = ACTIONS(674), - [anon_sym_pub] = ACTIONS(674), - [anon_sym_return] = ACTIONS(674), - [anon_sym_static] = ACTIONS(674), - [anon_sym_struct] = ACTIONS(674), - [anon_sym_trait] = ACTIONS(674), - [anon_sym_type] = ACTIONS(674), - [anon_sym_union] = ACTIONS(674), - [anon_sym_unsafe] = ACTIONS(674), - [anon_sym_use] = ACTIONS(674), - [anon_sym_where] = ACTIONS(674), - [anon_sym_while] = ACTIONS(674), - [sym_mutable_specifier] = ACTIONS(674), - [sym_integer_literal] = ACTIONS(690), - [aux_sym_string_literal_token1] = ACTIONS(692), - [sym_char_literal] = ACTIONS(690), - [anon_sym_true] = ACTIONS(694), - [anon_sym_false] = ACTIONS(694), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(674), - [sym_super] = ACTIONS(674), - [sym_crate] = ACTIONS(674), - [sym__raw_string_literal_start] = ACTIONS(696), - [sym_float_literal] = ACTIONS(690), + [aux_sym__non_special_token_repeat1] = STATE(180), + [aux_sym_delim_token_tree_repeat1] = STATE(72), + [sym_identifier] = ACTIONS(679), + [anon_sym_SEMI] = ACTIONS(681), + [anon_sym_LPAREN] = ACTIONS(683), + [anon_sym_LBRACK] = ACTIONS(685), + [anon_sym_LBRACE] = ACTIONS(689), + [anon_sym_RBRACE] = ACTIONS(737), + [anon_sym_EQ_GT] = ACTIONS(681), + [anon_sym_COLON] = ACTIONS(691), + [anon_sym_DOLLAR] = ACTIONS(693), + [anon_sym_PLUS] = ACTIONS(691), + [anon_sym_STAR] = ACTIONS(691), + [anon_sym_QMARK] = ACTIONS(681), + [anon_sym_u8] = ACTIONS(679), + [anon_sym_i8] = ACTIONS(679), + [anon_sym_u16] = ACTIONS(679), + [anon_sym_i16] = ACTIONS(679), + [anon_sym_u32] = ACTIONS(679), + [anon_sym_i32] = ACTIONS(679), + [anon_sym_u64] = ACTIONS(679), + [anon_sym_i64] = ACTIONS(679), + [anon_sym_u128] = ACTIONS(679), + [anon_sym_i128] = ACTIONS(679), + [anon_sym_isize] = ACTIONS(679), + [anon_sym_usize] = ACTIONS(679), + [anon_sym_f32] = ACTIONS(679), + [anon_sym_f64] = ACTIONS(679), + [anon_sym_bool] = ACTIONS(679), + [anon_sym_str] = ACTIONS(679), + [anon_sym_char] = ACTIONS(679), + [anon_sym_DASH] = ACTIONS(691), + [anon_sym_SLASH] = ACTIONS(691), + [anon_sym_PERCENT] = ACTIONS(691), + [anon_sym_CARET] = ACTIONS(691), + [anon_sym_BANG] = ACTIONS(691), + [anon_sym_AMP] = ACTIONS(691), + [anon_sym_PIPE] = ACTIONS(691), + [anon_sym_AMP_AMP] = ACTIONS(681), + [anon_sym_PIPE_PIPE] = ACTIONS(681), + [anon_sym_LT_LT] = ACTIONS(691), + [anon_sym_GT_GT] = ACTIONS(691), + [anon_sym_PLUS_EQ] = ACTIONS(681), + [anon_sym_DASH_EQ] = ACTIONS(681), + [anon_sym_STAR_EQ] = ACTIONS(681), + [anon_sym_SLASH_EQ] = ACTIONS(681), + [anon_sym_PERCENT_EQ] = ACTIONS(681), + [anon_sym_CARET_EQ] = ACTIONS(681), + [anon_sym_AMP_EQ] = ACTIONS(681), + [anon_sym_PIPE_EQ] = ACTIONS(681), + [anon_sym_LT_LT_EQ] = ACTIONS(681), + [anon_sym_GT_GT_EQ] = ACTIONS(681), + [anon_sym_EQ] = ACTIONS(691), + [anon_sym_EQ_EQ] = ACTIONS(681), + [anon_sym_BANG_EQ] = ACTIONS(681), + [anon_sym_GT] = ACTIONS(691), + [anon_sym_LT] = ACTIONS(691), + [anon_sym_GT_EQ] = ACTIONS(681), + [anon_sym_LT_EQ] = ACTIONS(681), + [anon_sym_AT] = ACTIONS(681), + [anon_sym__] = ACTIONS(691), + [anon_sym_DOT] = ACTIONS(691), + [anon_sym_DOT_DOT] = ACTIONS(691), + [anon_sym_DOT_DOT_DOT] = ACTIONS(681), + [anon_sym_DOT_DOT_EQ] = ACTIONS(681), + [anon_sym_COMMA] = ACTIONS(681), + [anon_sym_COLON_COLON] = ACTIONS(681), + [anon_sym_DASH_GT] = ACTIONS(681), + [anon_sym_POUND] = ACTIONS(681), + [anon_sym_SQUOTE] = ACTIONS(679), + [anon_sym_as] = ACTIONS(679), + [anon_sym_async] = ACTIONS(679), + [anon_sym_await] = ACTIONS(679), + [anon_sym_break] = ACTIONS(679), + [anon_sym_const] = ACTIONS(679), + [anon_sym_continue] = ACTIONS(679), + [anon_sym_default] = ACTIONS(679), + [anon_sym_enum] = ACTIONS(679), + [anon_sym_fn] = ACTIONS(679), + [anon_sym_for] = ACTIONS(679), + [anon_sym_gen] = ACTIONS(679), + [anon_sym_if] = ACTIONS(679), + [anon_sym_impl] = ACTIONS(679), + [anon_sym_let] = ACTIONS(679), + [anon_sym_loop] = ACTIONS(679), + [anon_sym_match] = ACTIONS(679), + [anon_sym_mod] = ACTIONS(679), + [anon_sym_pub] = ACTIONS(679), + [anon_sym_return] = ACTIONS(679), + [anon_sym_static] = ACTIONS(679), + [anon_sym_struct] = ACTIONS(679), + [anon_sym_trait] = ACTIONS(679), + [anon_sym_type] = ACTIONS(679), + [anon_sym_union] = ACTIONS(679), + [anon_sym_unsafe] = ACTIONS(679), + [anon_sym_use] = ACTIONS(679), + [anon_sym_where] = ACTIONS(679), + [anon_sym_while] = ACTIONS(679), + [sym_mutable_specifier] = ACTIONS(679), + [sym_integer_literal] = ACTIONS(695), + [aux_sym_string_literal_token1] = ACTIONS(697), + [sym_char_literal] = ACTIONS(695), + [anon_sym_true] = ACTIONS(699), + [anon_sym_false] = ACTIONS(699), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(679), + [sym_super] = ACTIONS(679), + [sym_crate] = ACTIONS(679), + [sym__raw_string_literal_start] = ACTIONS(701), + [sym_float_literal] = ACTIONS(695), }, [STATE(119)] = { - [sym_delim_token_tree] = STATE(207), - [sym__delim_tokens] = STATE(208), - [sym__non_delim_token] = STATE(207), - [sym__literal] = STATE(206), - [sym_string_literal] = STATE(212), - [sym_raw_string_literal] = STATE(212), - [sym_boolean_literal] = STATE(212), + [sym_delim_token_tree] = STATE(208), + [sym__delim_tokens] = STATE(209), + [sym__non_delim_token] = STATE(208), + [sym__literal] = STATE(204), + [sym_string_literal] = STATE(201), + [sym_raw_string_literal] = STATE(201), + [sym_boolean_literal] = STATE(201), [sym_line_comment] = STATE(119), [sym_block_comment] = STATE(119), - [aux_sym__non_special_token_repeat1] = STATE(181), - [aux_sym_delim_token_tree_repeat1] = STATE(68), - [sym_identifier] = ACTIONS(674), - [anon_sym_SEMI] = ACTIONS(676), - [anon_sym_LPAREN] = ACTIONS(678), - [anon_sym_LBRACK] = ACTIONS(680), - [anon_sym_LBRACE] = ACTIONS(682), - [anon_sym_RBRACE] = ACTIONS(736), - [anon_sym_EQ_GT] = ACTIONS(676), - [anon_sym_COLON] = ACTIONS(686), - [anon_sym_DOLLAR] = ACTIONS(688), - [anon_sym_PLUS] = ACTIONS(686), - [anon_sym_STAR] = ACTIONS(686), - [anon_sym_QMARK] = ACTIONS(676), - [anon_sym_u8] = ACTIONS(674), - [anon_sym_i8] = ACTIONS(674), - [anon_sym_u16] = ACTIONS(674), - [anon_sym_i16] = ACTIONS(674), - [anon_sym_u32] = ACTIONS(674), - [anon_sym_i32] = ACTIONS(674), - [anon_sym_u64] = ACTIONS(674), - [anon_sym_i64] = ACTIONS(674), - [anon_sym_u128] = ACTIONS(674), - [anon_sym_i128] = ACTIONS(674), - [anon_sym_isize] = ACTIONS(674), - [anon_sym_usize] = ACTIONS(674), - [anon_sym_f32] = ACTIONS(674), - [anon_sym_f64] = ACTIONS(674), - [anon_sym_bool] = ACTIONS(674), - [anon_sym_str] = ACTIONS(674), - [anon_sym_char] = ACTIONS(674), - [anon_sym_DASH] = ACTIONS(686), - [anon_sym_SLASH] = ACTIONS(686), - [anon_sym_PERCENT] = ACTIONS(686), - [anon_sym_CARET] = ACTIONS(686), - [anon_sym_BANG] = ACTIONS(686), - [anon_sym_AMP] = ACTIONS(686), - [anon_sym_PIPE] = ACTIONS(686), - [anon_sym_AMP_AMP] = ACTIONS(676), - [anon_sym_PIPE_PIPE] = ACTIONS(676), - [anon_sym_LT_LT] = ACTIONS(686), - [anon_sym_GT_GT] = ACTIONS(686), - [anon_sym_PLUS_EQ] = ACTIONS(676), - [anon_sym_DASH_EQ] = ACTIONS(676), - [anon_sym_STAR_EQ] = ACTIONS(676), - [anon_sym_SLASH_EQ] = ACTIONS(676), - [anon_sym_PERCENT_EQ] = ACTIONS(676), - [anon_sym_CARET_EQ] = ACTIONS(676), - [anon_sym_AMP_EQ] = ACTIONS(676), - [anon_sym_PIPE_EQ] = ACTIONS(676), - [anon_sym_LT_LT_EQ] = ACTIONS(676), - [anon_sym_GT_GT_EQ] = ACTIONS(676), - [anon_sym_EQ] = ACTIONS(686), - [anon_sym_EQ_EQ] = ACTIONS(676), - [anon_sym_BANG_EQ] = ACTIONS(676), - [anon_sym_GT] = ACTIONS(686), - [anon_sym_LT] = ACTIONS(686), - [anon_sym_GT_EQ] = ACTIONS(676), - [anon_sym_LT_EQ] = ACTIONS(676), - [anon_sym_AT] = ACTIONS(676), - [anon_sym__] = ACTIONS(686), - [anon_sym_DOT] = ACTIONS(686), - [anon_sym_DOT_DOT] = ACTIONS(686), - [anon_sym_DOT_DOT_DOT] = ACTIONS(676), - [anon_sym_DOT_DOT_EQ] = ACTIONS(676), - [anon_sym_COMMA] = ACTIONS(676), - [anon_sym_COLON_COLON] = ACTIONS(676), - [anon_sym_DASH_GT] = ACTIONS(676), - [anon_sym_POUND] = ACTIONS(676), - [anon_sym_SQUOTE] = ACTIONS(674), - [anon_sym_as] = ACTIONS(674), - [anon_sym_async] = ACTIONS(674), - [anon_sym_await] = ACTIONS(674), - [anon_sym_break] = ACTIONS(674), - [anon_sym_const] = ACTIONS(674), - [anon_sym_continue] = ACTIONS(674), - [anon_sym_default] = ACTIONS(674), - [anon_sym_enum] = ACTIONS(674), - [anon_sym_fn] = ACTIONS(674), - [anon_sym_for] = ACTIONS(674), - [anon_sym_gen] = ACTIONS(674), - [anon_sym_if] = ACTIONS(674), - [anon_sym_impl] = ACTIONS(674), - [anon_sym_let] = ACTIONS(674), - [anon_sym_loop] = ACTIONS(674), - [anon_sym_match] = ACTIONS(674), - [anon_sym_mod] = ACTIONS(674), - [anon_sym_pub] = ACTIONS(674), - [anon_sym_return] = ACTIONS(674), - [anon_sym_static] = ACTIONS(674), - [anon_sym_struct] = ACTIONS(674), - [anon_sym_trait] = ACTIONS(674), - [anon_sym_type] = ACTIONS(674), - [anon_sym_union] = ACTIONS(674), - [anon_sym_unsafe] = ACTIONS(674), - [anon_sym_use] = ACTIONS(674), - [anon_sym_where] = ACTIONS(674), - [anon_sym_while] = ACTIONS(674), - [sym_mutable_specifier] = ACTIONS(674), - [sym_integer_literal] = ACTIONS(690), - [aux_sym_string_literal_token1] = ACTIONS(692), - [sym_char_literal] = ACTIONS(690), - [anon_sym_true] = ACTIONS(694), - [anon_sym_false] = ACTIONS(694), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(674), - [sym_super] = ACTIONS(674), - [sym_crate] = ACTIONS(674), - [sym__raw_string_literal_start] = ACTIONS(696), - [sym_float_literal] = ACTIONS(690), + [aux_sym__non_special_token_repeat1] = STATE(180), + [aux_sym_delim_token_tree_repeat1] = STATE(122), + [sym_identifier] = ACTIONS(679), + [anon_sym_SEMI] = ACTIONS(681), + [anon_sym_LPAREN] = ACTIONS(683), + [anon_sym_RPAREN] = ACTIONS(739), + [anon_sym_LBRACK] = ACTIONS(685), + [anon_sym_LBRACE] = ACTIONS(689), + [anon_sym_EQ_GT] = ACTIONS(681), + [anon_sym_COLON] = ACTIONS(691), + [anon_sym_DOLLAR] = ACTIONS(693), + [anon_sym_PLUS] = ACTIONS(691), + [anon_sym_STAR] = ACTIONS(691), + [anon_sym_QMARK] = ACTIONS(681), + [anon_sym_u8] = ACTIONS(679), + [anon_sym_i8] = ACTIONS(679), + [anon_sym_u16] = ACTIONS(679), + [anon_sym_i16] = ACTIONS(679), + [anon_sym_u32] = ACTIONS(679), + [anon_sym_i32] = ACTIONS(679), + [anon_sym_u64] = ACTIONS(679), + [anon_sym_i64] = ACTIONS(679), + [anon_sym_u128] = ACTIONS(679), + [anon_sym_i128] = ACTIONS(679), + [anon_sym_isize] = ACTIONS(679), + [anon_sym_usize] = ACTIONS(679), + [anon_sym_f32] = ACTIONS(679), + [anon_sym_f64] = ACTIONS(679), + [anon_sym_bool] = ACTIONS(679), + [anon_sym_str] = ACTIONS(679), + [anon_sym_char] = ACTIONS(679), + [anon_sym_DASH] = ACTIONS(691), + [anon_sym_SLASH] = ACTIONS(691), + [anon_sym_PERCENT] = ACTIONS(691), + [anon_sym_CARET] = ACTIONS(691), + [anon_sym_BANG] = ACTIONS(691), + [anon_sym_AMP] = ACTIONS(691), + [anon_sym_PIPE] = ACTIONS(691), + [anon_sym_AMP_AMP] = ACTIONS(681), + [anon_sym_PIPE_PIPE] = ACTIONS(681), + [anon_sym_LT_LT] = ACTIONS(691), + [anon_sym_GT_GT] = ACTIONS(691), + [anon_sym_PLUS_EQ] = ACTIONS(681), + [anon_sym_DASH_EQ] = ACTIONS(681), + [anon_sym_STAR_EQ] = ACTIONS(681), + [anon_sym_SLASH_EQ] = ACTIONS(681), + [anon_sym_PERCENT_EQ] = ACTIONS(681), + [anon_sym_CARET_EQ] = ACTIONS(681), + [anon_sym_AMP_EQ] = ACTIONS(681), + [anon_sym_PIPE_EQ] = ACTIONS(681), + [anon_sym_LT_LT_EQ] = ACTIONS(681), + [anon_sym_GT_GT_EQ] = ACTIONS(681), + [anon_sym_EQ] = ACTIONS(691), + [anon_sym_EQ_EQ] = ACTIONS(681), + [anon_sym_BANG_EQ] = ACTIONS(681), + [anon_sym_GT] = ACTIONS(691), + [anon_sym_LT] = ACTIONS(691), + [anon_sym_GT_EQ] = ACTIONS(681), + [anon_sym_LT_EQ] = ACTIONS(681), + [anon_sym_AT] = ACTIONS(681), + [anon_sym__] = ACTIONS(691), + [anon_sym_DOT] = ACTIONS(691), + [anon_sym_DOT_DOT] = ACTIONS(691), + [anon_sym_DOT_DOT_DOT] = ACTIONS(681), + [anon_sym_DOT_DOT_EQ] = ACTIONS(681), + [anon_sym_COMMA] = ACTIONS(681), + [anon_sym_COLON_COLON] = ACTIONS(681), + [anon_sym_DASH_GT] = ACTIONS(681), + [anon_sym_POUND] = ACTIONS(681), + [anon_sym_SQUOTE] = ACTIONS(679), + [anon_sym_as] = ACTIONS(679), + [anon_sym_async] = ACTIONS(679), + [anon_sym_await] = ACTIONS(679), + [anon_sym_break] = ACTIONS(679), + [anon_sym_const] = ACTIONS(679), + [anon_sym_continue] = ACTIONS(679), + [anon_sym_default] = ACTIONS(679), + [anon_sym_enum] = ACTIONS(679), + [anon_sym_fn] = ACTIONS(679), + [anon_sym_for] = ACTIONS(679), + [anon_sym_gen] = ACTIONS(679), + [anon_sym_if] = ACTIONS(679), + [anon_sym_impl] = ACTIONS(679), + [anon_sym_let] = ACTIONS(679), + [anon_sym_loop] = ACTIONS(679), + [anon_sym_match] = ACTIONS(679), + [anon_sym_mod] = ACTIONS(679), + [anon_sym_pub] = ACTIONS(679), + [anon_sym_return] = ACTIONS(679), + [anon_sym_static] = ACTIONS(679), + [anon_sym_struct] = ACTIONS(679), + [anon_sym_trait] = ACTIONS(679), + [anon_sym_type] = ACTIONS(679), + [anon_sym_union] = ACTIONS(679), + [anon_sym_unsafe] = ACTIONS(679), + [anon_sym_use] = ACTIONS(679), + [anon_sym_where] = ACTIONS(679), + [anon_sym_while] = ACTIONS(679), + [sym_mutable_specifier] = ACTIONS(679), + [sym_integer_literal] = ACTIONS(695), + [aux_sym_string_literal_token1] = ACTIONS(697), + [sym_char_literal] = ACTIONS(695), + [anon_sym_true] = ACTIONS(699), + [anon_sym_false] = ACTIONS(699), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(679), + [sym_super] = ACTIONS(679), + [sym_crate] = ACTIONS(679), + [sym__raw_string_literal_start] = ACTIONS(701), + [sym_float_literal] = ACTIONS(695), }, [STATE(120)] = { - [sym_delim_token_tree] = STATE(207), - [sym__delim_tokens] = STATE(208), - [sym__non_delim_token] = STATE(207), - [sym__literal] = STATE(206), - [sym_string_literal] = STATE(212), - [sym_raw_string_literal] = STATE(212), - [sym_boolean_literal] = STATE(212), + [sym_delim_token_tree] = STATE(208), + [sym__delim_tokens] = STATE(209), + [sym__non_delim_token] = STATE(208), + [sym__literal] = STATE(204), + [sym_string_literal] = STATE(201), + [sym_raw_string_literal] = STATE(201), + [sym_boolean_literal] = STATE(201), [sym_line_comment] = STATE(120), [sym_block_comment] = STATE(120), - [aux_sym__non_special_token_repeat1] = STATE(181), + [aux_sym__non_special_token_repeat1] = STATE(180), [aux_sym_delim_token_tree_repeat1] = STATE(123), - [sym_identifier] = ACTIONS(674), - [anon_sym_SEMI] = ACTIONS(676), - [anon_sym_LPAREN] = ACTIONS(678), - [anon_sym_RPAREN] = ACTIONS(738), - [anon_sym_LBRACK] = ACTIONS(680), - [anon_sym_LBRACE] = ACTIONS(682), - [anon_sym_EQ_GT] = ACTIONS(676), - [anon_sym_COLON] = ACTIONS(686), - [anon_sym_DOLLAR] = ACTIONS(688), - [anon_sym_PLUS] = ACTIONS(686), - [anon_sym_STAR] = ACTIONS(686), - [anon_sym_QMARK] = ACTIONS(676), - [anon_sym_u8] = ACTIONS(674), - [anon_sym_i8] = ACTIONS(674), - [anon_sym_u16] = ACTIONS(674), - [anon_sym_i16] = ACTIONS(674), - [anon_sym_u32] = ACTIONS(674), - [anon_sym_i32] = ACTIONS(674), - [anon_sym_u64] = ACTIONS(674), - [anon_sym_i64] = ACTIONS(674), - [anon_sym_u128] = ACTIONS(674), - [anon_sym_i128] = ACTIONS(674), - [anon_sym_isize] = ACTIONS(674), - [anon_sym_usize] = ACTIONS(674), - [anon_sym_f32] = ACTIONS(674), - [anon_sym_f64] = ACTIONS(674), - [anon_sym_bool] = ACTIONS(674), - [anon_sym_str] = ACTIONS(674), - [anon_sym_char] = ACTIONS(674), - [anon_sym_DASH] = ACTIONS(686), - [anon_sym_SLASH] = ACTIONS(686), - [anon_sym_PERCENT] = ACTIONS(686), - [anon_sym_CARET] = ACTIONS(686), - [anon_sym_BANG] = ACTIONS(686), - [anon_sym_AMP] = ACTIONS(686), - [anon_sym_PIPE] = ACTIONS(686), - [anon_sym_AMP_AMP] = ACTIONS(676), - [anon_sym_PIPE_PIPE] = ACTIONS(676), - [anon_sym_LT_LT] = ACTIONS(686), - [anon_sym_GT_GT] = ACTIONS(686), - [anon_sym_PLUS_EQ] = ACTIONS(676), - [anon_sym_DASH_EQ] = ACTIONS(676), - [anon_sym_STAR_EQ] = ACTIONS(676), - [anon_sym_SLASH_EQ] = ACTIONS(676), - [anon_sym_PERCENT_EQ] = ACTIONS(676), - [anon_sym_CARET_EQ] = ACTIONS(676), - [anon_sym_AMP_EQ] = ACTIONS(676), - [anon_sym_PIPE_EQ] = ACTIONS(676), - [anon_sym_LT_LT_EQ] = ACTIONS(676), - [anon_sym_GT_GT_EQ] = ACTIONS(676), - [anon_sym_EQ] = ACTIONS(686), - [anon_sym_EQ_EQ] = ACTIONS(676), - [anon_sym_BANG_EQ] = ACTIONS(676), - [anon_sym_GT] = ACTIONS(686), - [anon_sym_LT] = ACTIONS(686), - [anon_sym_GT_EQ] = ACTIONS(676), - [anon_sym_LT_EQ] = ACTIONS(676), - [anon_sym_AT] = ACTIONS(676), - [anon_sym__] = ACTIONS(686), - [anon_sym_DOT] = ACTIONS(686), - [anon_sym_DOT_DOT] = ACTIONS(686), - [anon_sym_DOT_DOT_DOT] = ACTIONS(676), - [anon_sym_DOT_DOT_EQ] = ACTIONS(676), - [anon_sym_COMMA] = ACTIONS(676), - [anon_sym_COLON_COLON] = ACTIONS(676), - [anon_sym_DASH_GT] = ACTIONS(676), - [anon_sym_POUND] = ACTIONS(676), - [anon_sym_SQUOTE] = ACTIONS(674), - [anon_sym_as] = ACTIONS(674), - [anon_sym_async] = ACTIONS(674), - [anon_sym_await] = ACTIONS(674), - [anon_sym_break] = ACTIONS(674), - [anon_sym_const] = ACTIONS(674), - [anon_sym_continue] = ACTIONS(674), - [anon_sym_default] = ACTIONS(674), - [anon_sym_enum] = ACTIONS(674), - [anon_sym_fn] = ACTIONS(674), - [anon_sym_for] = ACTIONS(674), - [anon_sym_gen] = ACTIONS(674), - [anon_sym_if] = ACTIONS(674), - [anon_sym_impl] = ACTIONS(674), - [anon_sym_let] = ACTIONS(674), - [anon_sym_loop] = ACTIONS(674), - [anon_sym_match] = ACTIONS(674), - [anon_sym_mod] = ACTIONS(674), - [anon_sym_pub] = ACTIONS(674), - [anon_sym_return] = ACTIONS(674), - [anon_sym_static] = ACTIONS(674), - [anon_sym_struct] = ACTIONS(674), - [anon_sym_trait] = ACTIONS(674), - [anon_sym_type] = ACTIONS(674), - [anon_sym_union] = ACTIONS(674), - [anon_sym_unsafe] = ACTIONS(674), - [anon_sym_use] = ACTIONS(674), - [anon_sym_where] = ACTIONS(674), - [anon_sym_while] = ACTIONS(674), - [sym_mutable_specifier] = ACTIONS(674), - [sym_integer_literal] = ACTIONS(690), - [aux_sym_string_literal_token1] = ACTIONS(692), - [sym_char_literal] = ACTIONS(690), - [anon_sym_true] = ACTIONS(694), - [anon_sym_false] = ACTIONS(694), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(674), - [sym_super] = ACTIONS(674), - [sym_crate] = ACTIONS(674), - [sym__raw_string_literal_start] = ACTIONS(696), - [sym_float_literal] = ACTIONS(690), + [sym_identifier] = ACTIONS(679), + [anon_sym_SEMI] = ACTIONS(681), + [anon_sym_LPAREN] = ACTIONS(683), + [anon_sym_LBRACK] = ACTIONS(685), + [anon_sym_RBRACK] = ACTIONS(739), + [anon_sym_LBRACE] = ACTIONS(689), + [anon_sym_EQ_GT] = ACTIONS(681), + [anon_sym_COLON] = ACTIONS(691), + [anon_sym_DOLLAR] = ACTIONS(693), + [anon_sym_PLUS] = ACTIONS(691), + [anon_sym_STAR] = ACTIONS(691), + [anon_sym_QMARK] = ACTIONS(681), + [anon_sym_u8] = ACTIONS(679), + [anon_sym_i8] = ACTIONS(679), + [anon_sym_u16] = ACTIONS(679), + [anon_sym_i16] = ACTIONS(679), + [anon_sym_u32] = ACTIONS(679), + [anon_sym_i32] = ACTIONS(679), + [anon_sym_u64] = ACTIONS(679), + [anon_sym_i64] = ACTIONS(679), + [anon_sym_u128] = ACTIONS(679), + [anon_sym_i128] = ACTIONS(679), + [anon_sym_isize] = ACTIONS(679), + [anon_sym_usize] = ACTIONS(679), + [anon_sym_f32] = ACTIONS(679), + [anon_sym_f64] = ACTIONS(679), + [anon_sym_bool] = ACTIONS(679), + [anon_sym_str] = ACTIONS(679), + [anon_sym_char] = ACTIONS(679), + [anon_sym_DASH] = ACTIONS(691), + [anon_sym_SLASH] = ACTIONS(691), + [anon_sym_PERCENT] = ACTIONS(691), + [anon_sym_CARET] = ACTIONS(691), + [anon_sym_BANG] = ACTIONS(691), + [anon_sym_AMP] = ACTIONS(691), + [anon_sym_PIPE] = ACTIONS(691), + [anon_sym_AMP_AMP] = ACTIONS(681), + [anon_sym_PIPE_PIPE] = ACTIONS(681), + [anon_sym_LT_LT] = ACTIONS(691), + [anon_sym_GT_GT] = ACTIONS(691), + [anon_sym_PLUS_EQ] = ACTIONS(681), + [anon_sym_DASH_EQ] = ACTIONS(681), + [anon_sym_STAR_EQ] = ACTIONS(681), + [anon_sym_SLASH_EQ] = ACTIONS(681), + [anon_sym_PERCENT_EQ] = ACTIONS(681), + [anon_sym_CARET_EQ] = ACTIONS(681), + [anon_sym_AMP_EQ] = ACTIONS(681), + [anon_sym_PIPE_EQ] = ACTIONS(681), + [anon_sym_LT_LT_EQ] = ACTIONS(681), + [anon_sym_GT_GT_EQ] = ACTIONS(681), + [anon_sym_EQ] = ACTIONS(691), + [anon_sym_EQ_EQ] = ACTIONS(681), + [anon_sym_BANG_EQ] = ACTIONS(681), + [anon_sym_GT] = ACTIONS(691), + [anon_sym_LT] = ACTIONS(691), + [anon_sym_GT_EQ] = ACTIONS(681), + [anon_sym_LT_EQ] = ACTIONS(681), + [anon_sym_AT] = ACTIONS(681), + [anon_sym__] = ACTIONS(691), + [anon_sym_DOT] = ACTIONS(691), + [anon_sym_DOT_DOT] = ACTIONS(691), + [anon_sym_DOT_DOT_DOT] = ACTIONS(681), + [anon_sym_DOT_DOT_EQ] = ACTIONS(681), + [anon_sym_COMMA] = ACTIONS(681), + [anon_sym_COLON_COLON] = ACTIONS(681), + [anon_sym_DASH_GT] = ACTIONS(681), + [anon_sym_POUND] = ACTIONS(681), + [anon_sym_SQUOTE] = ACTIONS(679), + [anon_sym_as] = ACTIONS(679), + [anon_sym_async] = ACTIONS(679), + [anon_sym_await] = ACTIONS(679), + [anon_sym_break] = ACTIONS(679), + [anon_sym_const] = ACTIONS(679), + [anon_sym_continue] = ACTIONS(679), + [anon_sym_default] = ACTIONS(679), + [anon_sym_enum] = ACTIONS(679), + [anon_sym_fn] = ACTIONS(679), + [anon_sym_for] = ACTIONS(679), + [anon_sym_gen] = ACTIONS(679), + [anon_sym_if] = ACTIONS(679), + [anon_sym_impl] = ACTIONS(679), + [anon_sym_let] = ACTIONS(679), + [anon_sym_loop] = ACTIONS(679), + [anon_sym_match] = ACTIONS(679), + [anon_sym_mod] = ACTIONS(679), + [anon_sym_pub] = ACTIONS(679), + [anon_sym_return] = ACTIONS(679), + [anon_sym_static] = ACTIONS(679), + [anon_sym_struct] = ACTIONS(679), + [anon_sym_trait] = ACTIONS(679), + [anon_sym_type] = ACTIONS(679), + [anon_sym_union] = ACTIONS(679), + [anon_sym_unsafe] = ACTIONS(679), + [anon_sym_use] = ACTIONS(679), + [anon_sym_where] = ACTIONS(679), + [anon_sym_while] = ACTIONS(679), + [sym_mutable_specifier] = ACTIONS(679), + [sym_integer_literal] = ACTIONS(695), + [aux_sym_string_literal_token1] = ACTIONS(697), + [sym_char_literal] = ACTIONS(695), + [anon_sym_true] = ACTIONS(699), + [anon_sym_false] = ACTIONS(699), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(679), + [sym_super] = ACTIONS(679), + [sym_crate] = ACTIONS(679), + [sym__raw_string_literal_start] = ACTIONS(701), + [sym_float_literal] = ACTIONS(695), }, [STATE(121)] = { - [sym_delim_token_tree] = STATE(207), - [sym__delim_tokens] = STATE(208), - [sym__non_delim_token] = STATE(207), - [sym__literal] = STATE(206), - [sym_string_literal] = STATE(212), - [sym_raw_string_literal] = STATE(212), - [sym_boolean_literal] = STATE(212), + [sym_delim_token_tree] = STATE(208), + [sym__delim_tokens] = STATE(209), + [sym__non_delim_token] = STATE(208), + [sym__literal] = STATE(204), + [sym_string_literal] = STATE(201), + [sym_raw_string_literal] = STATE(201), + [sym_boolean_literal] = STATE(201), [sym_line_comment] = STATE(121), [sym_block_comment] = STATE(121), - [aux_sym__non_special_token_repeat1] = STATE(181), + [aux_sym__non_special_token_repeat1] = STATE(180), [aux_sym_delim_token_tree_repeat1] = STATE(124), - [sym_identifier] = ACTIONS(674), - [anon_sym_SEMI] = ACTIONS(676), - [anon_sym_LPAREN] = ACTIONS(678), - [anon_sym_LBRACK] = ACTIONS(680), - [anon_sym_RBRACK] = ACTIONS(738), - [anon_sym_LBRACE] = ACTIONS(682), - [anon_sym_EQ_GT] = ACTIONS(676), - [anon_sym_COLON] = ACTIONS(686), - [anon_sym_DOLLAR] = ACTIONS(688), - [anon_sym_PLUS] = ACTIONS(686), - [anon_sym_STAR] = ACTIONS(686), - [anon_sym_QMARK] = ACTIONS(676), - [anon_sym_u8] = ACTIONS(674), - [anon_sym_i8] = ACTIONS(674), - [anon_sym_u16] = ACTIONS(674), - [anon_sym_i16] = ACTIONS(674), - [anon_sym_u32] = ACTIONS(674), - [anon_sym_i32] = ACTIONS(674), - [anon_sym_u64] = ACTIONS(674), - [anon_sym_i64] = ACTIONS(674), - [anon_sym_u128] = ACTIONS(674), - [anon_sym_i128] = ACTIONS(674), - [anon_sym_isize] = ACTIONS(674), - [anon_sym_usize] = ACTIONS(674), - [anon_sym_f32] = ACTIONS(674), - [anon_sym_f64] = ACTIONS(674), - [anon_sym_bool] = ACTIONS(674), - [anon_sym_str] = ACTIONS(674), - [anon_sym_char] = ACTIONS(674), - [anon_sym_DASH] = ACTIONS(686), - [anon_sym_SLASH] = ACTIONS(686), - [anon_sym_PERCENT] = ACTIONS(686), - [anon_sym_CARET] = ACTIONS(686), - [anon_sym_BANG] = ACTIONS(686), - [anon_sym_AMP] = ACTIONS(686), - [anon_sym_PIPE] = ACTIONS(686), - [anon_sym_AMP_AMP] = ACTIONS(676), - [anon_sym_PIPE_PIPE] = ACTIONS(676), - [anon_sym_LT_LT] = ACTIONS(686), - [anon_sym_GT_GT] = ACTIONS(686), - [anon_sym_PLUS_EQ] = ACTIONS(676), - [anon_sym_DASH_EQ] = ACTIONS(676), - [anon_sym_STAR_EQ] = ACTIONS(676), - [anon_sym_SLASH_EQ] = ACTIONS(676), - [anon_sym_PERCENT_EQ] = ACTIONS(676), - [anon_sym_CARET_EQ] = ACTIONS(676), - [anon_sym_AMP_EQ] = ACTIONS(676), - [anon_sym_PIPE_EQ] = ACTIONS(676), - [anon_sym_LT_LT_EQ] = ACTIONS(676), - [anon_sym_GT_GT_EQ] = ACTIONS(676), - [anon_sym_EQ] = ACTIONS(686), - [anon_sym_EQ_EQ] = ACTIONS(676), - [anon_sym_BANG_EQ] = ACTIONS(676), - [anon_sym_GT] = ACTIONS(686), - [anon_sym_LT] = ACTIONS(686), - [anon_sym_GT_EQ] = ACTIONS(676), - [anon_sym_LT_EQ] = ACTIONS(676), - [anon_sym_AT] = ACTIONS(676), - [anon_sym__] = ACTIONS(686), - [anon_sym_DOT] = ACTIONS(686), - [anon_sym_DOT_DOT] = ACTIONS(686), - [anon_sym_DOT_DOT_DOT] = ACTIONS(676), - [anon_sym_DOT_DOT_EQ] = ACTIONS(676), - [anon_sym_COMMA] = ACTIONS(676), - [anon_sym_COLON_COLON] = ACTIONS(676), - [anon_sym_DASH_GT] = ACTIONS(676), - [anon_sym_POUND] = ACTIONS(676), - [anon_sym_SQUOTE] = ACTIONS(674), - [anon_sym_as] = ACTIONS(674), - [anon_sym_async] = ACTIONS(674), - [anon_sym_await] = ACTIONS(674), - [anon_sym_break] = ACTIONS(674), - [anon_sym_const] = ACTIONS(674), - [anon_sym_continue] = ACTIONS(674), - [anon_sym_default] = ACTIONS(674), - [anon_sym_enum] = ACTIONS(674), - [anon_sym_fn] = ACTIONS(674), - [anon_sym_for] = ACTIONS(674), - [anon_sym_gen] = ACTIONS(674), - [anon_sym_if] = ACTIONS(674), - [anon_sym_impl] = ACTIONS(674), - [anon_sym_let] = ACTIONS(674), - [anon_sym_loop] = ACTIONS(674), - [anon_sym_match] = ACTIONS(674), - [anon_sym_mod] = ACTIONS(674), - [anon_sym_pub] = ACTIONS(674), - [anon_sym_return] = ACTIONS(674), - [anon_sym_static] = ACTIONS(674), - [anon_sym_struct] = ACTIONS(674), - [anon_sym_trait] = ACTIONS(674), - [anon_sym_type] = ACTIONS(674), - [anon_sym_union] = ACTIONS(674), - [anon_sym_unsafe] = ACTIONS(674), - [anon_sym_use] = ACTIONS(674), - [anon_sym_where] = ACTIONS(674), - [anon_sym_while] = ACTIONS(674), - [sym_mutable_specifier] = ACTIONS(674), - [sym_integer_literal] = ACTIONS(690), - [aux_sym_string_literal_token1] = ACTIONS(692), - [sym_char_literal] = ACTIONS(690), - [anon_sym_true] = ACTIONS(694), - [anon_sym_false] = ACTIONS(694), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(674), - [sym_super] = ACTIONS(674), - [sym_crate] = ACTIONS(674), - [sym__raw_string_literal_start] = ACTIONS(696), - [sym_float_literal] = ACTIONS(690), + [sym_identifier] = ACTIONS(679), + [anon_sym_SEMI] = ACTIONS(681), + [anon_sym_LPAREN] = ACTIONS(683), + [anon_sym_LBRACK] = ACTIONS(685), + [anon_sym_LBRACE] = ACTIONS(689), + [anon_sym_RBRACE] = ACTIONS(739), + [anon_sym_EQ_GT] = ACTIONS(681), + [anon_sym_COLON] = ACTIONS(691), + [anon_sym_DOLLAR] = ACTIONS(693), + [anon_sym_PLUS] = ACTIONS(691), + [anon_sym_STAR] = ACTIONS(691), + [anon_sym_QMARK] = ACTIONS(681), + [anon_sym_u8] = ACTIONS(679), + [anon_sym_i8] = ACTIONS(679), + [anon_sym_u16] = ACTIONS(679), + [anon_sym_i16] = ACTIONS(679), + [anon_sym_u32] = ACTIONS(679), + [anon_sym_i32] = ACTIONS(679), + [anon_sym_u64] = ACTIONS(679), + [anon_sym_i64] = ACTIONS(679), + [anon_sym_u128] = ACTIONS(679), + [anon_sym_i128] = ACTIONS(679), + [anon_sym_isize] = ACTIONS(679), + [anon_sym_usize] = ACTIONS(679), + [anon_sym_f32] = ACTIONS(679), + [anon_sym_f64] = ACTIONS(679), + [anon_sym_bool] = ACTIONS(679), + [anon_sym_str] = ACTIONS(679), + [anon_sym_char] = ACTIONS(679), + [anon_sym_DASH] = ACTIONS(691), + [anon_sym_SLASH] = ACTIONS(691), + [anon_sym_PERCENT] = ACTIONS(691), + [anon_sym_CARET] = ACTIONS(691), + [anon_sym_BANG] = ACTIONS(691), + [anon_sym_AMP] = ACTIONS(691), + [anon_sym_PIPE] = ACTIONS(691), + [anon_sym_AMP_AMP] = ACTIONS(681), + [anon_sym_PIPE_PIPE] = ACTIONS(681), + [anon_sym_LT_LT] = ACTIONS(691), + [anon_sym_GT_GT] = ACTIONS(691), + [anon_sym_PLUS_EQ] = ACTIONS(681), + [anon_sym_DASH_EQ] = ACTIONS(681), + [anon_sym_STAR_EQ] = ACTIONS(681), + [anon_sym_SLASH_EQ] = ACTIONS(681), + [anon_sym_PERCENT_EQ] = ACTIONS(681), + [anon_sym_CARET_EQ] = ACTIONS(681), + [anon_sym_AMP_EQ] = ACTIONS(681), + [anon_sym_PIPE_EQ] = ACTIONS(681), + [anon_sym_LT_LT_EQ] = ACTIONS(681), + [anon_sym_GT_GT_EQ] = ACTIONS(681), + [anon_sym_EQ] = ACTIONS(691), + [anon_sym_EQ_EQ] = ACTIONS(681), + [anon_sym_BANG_EQ] = ACTIONS(681), + [anon_sym_GT] = ACTIONS(691), + [anon_sym_LT] = ACTIONS(691), + [anon_sym_GT_EQ] = ACTIONS(681), + [anon_sym_LT_EQ] = ACTIONS(681), + [anon_sym_AT] = ACTIONS(681), + [anon_sym__] = ACTIONS(691), + [anon_sym_DOT] = ACTIONS(691), + [anon_sym_DOT_DOT] = ACTIONS(691), + [anon_sym_DOT_DOT_DOT] = ACTIONS(681), + [anon_sym_DOT_DOT_EQ] = ACTIONS(681), + [anon_sym_COMMA] = ACTIONS(681), + [anon_sym_COLON_COLON] = ACTIONS(681), + [anon_sym_DASH_GT] = ACTIONS(681), + [anon_sym_POUND] = ACTIONS(681), + [anon_sym_SQUOTE] = ACTIONS(679), + [anon_sym_as] = ACTIONS(679), + [anon_sym_async] = ACTIONS(679), + [anon_sym_await] = ACTIONS(679), + [anon_sym_break] = ACTIONS(679), + [anon_sym_const] = ACTIONS(679), + [anon_sym_continue] = ACTIONS(679), + [anon_sym_default] = ACTIONS(679), + [anon_sym_enum] = ACTIONS(679), + [anon_sym_fn] = ACTIONS(679), + [anon_sym_for] = ACTIONS(679), + [anon_sym_gen] = ACTIONS(679), + [anon_sym_if] = ACTIONS(679), + [anon_sym_impl] = ACTIONS(679), + [anon_sym_let] = ACTIONS(679), + [anon_sym_loop] = ACTIONS(679), + [anon_sym_match] = ACTIONS(679), + [anon_sym_mod] = ACTIONS(679), + [anon_sym_pub] = ACTIONS(679), + [anon_sym_return] = ACTIONS(679), + [anon_sym_static] = ACTIONS(679), + [anon_sym_struct] = ACTIONS(679), + [anon_sym_trait] = ACTIONS(679), + [anon_sym_type] = ACTIONS(679), + [anon_sym_union] = ACTIONS(679), + [anon_sym_unsafe] = ACTIONS(679), + [anon_sym_use] = ACTIONS(679), + [anon_sym_where] = ACTIONS(679), + [anon_sym_while] = ACTIONS(679), + [sym_mutable_specifier] = ACTIONS(679), + [sym_integer_literal] = ACTIONS(695), + [aux_sym_string_literal_token1] = ACTIONS(697), + [sym_char_literal] = ACTIONS(695), + [anon_sym_true] = ACTIONS(699), + [anon_sym_false] = ACTIONS(699), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(679), + [sym_super] = ACTIONS(679), + [sym_crate] = ACTIONS(679), + [sym__raw_string_literal_start] = ACTIONS(701), + [sym_float_literal] = ACTIONS(695), }, [STATE(122)] = { - [sym_delim_token_tree] = STATE(207), - [sym__delim_tokens] = STATE(208), - [sym__non_delim_token] = STATE(207), - [sym__literal] = STATE(206), - [sym_string_literal] = STATE(212), - [sym_raw_string_literal] = STATE(212), - [sym_boolean_literal] = STATE(212), + [sym_delim_token_tree] = STATE(208), + [sym__delim_tokens] = STATE(209), + [sym__non_delim_token] = STATE(208), + [sym__literal] = STATE(204), + [sym_string_literal] = STATE(201), + [sym_raw_string_literal] = STATE(201), + [sym_boolean_literal] = STATE(201), [sym_line_comment] = STATE(122), [sym_block_comment] = STATE(122), - [aux_sym__non_special_token_repeat1] = STATE(181), - [aux_sym_delim_token_tree_repeat1] = STATE(84), - [sym_identifier] = ACTIONS(674), - [anon_sym_SEMI] = ACTIONS(676), - [anon_sym_LPAREN] = ACTIONS(678), - [anon_sym_LBRACK] = ACTIONS(680), - [anon_sym_LBRACE] = ACTIONS(682), - [anon_sym_RBRACE] = ACTIONS(738), - [anon_sym_EQ_GT] = ACTIONS(676), - [anon_sym_COLON] = ACTIONS(686), - [anon_sym_DOLLAR] = ACTIONS(688), - [anon_sym_PLUS] = ACTIONS(686), - [anon_sym_STAR] = ACTIONS(686), - [anon_sym_QMARK] = ACTIONS(676), - [anon_sym_u8] = ACTIONS(674), - [anon_sym_i8] = ACTIONS(674), - [anon_sym_u16] = ACTIONS(674), - [anon_sym_i16] = ACTIONS(674), - [anon_sym_u32] = ACTIONS(674), - [anon_sym_i32] = ACTIONS(674), - [anon_sym_u64] = ACTIONS(674), - [anon_sym_i64] = ACTIONS(674), - [anon_sym_u128] = ACTIONS(674), - [anon_sym_i128] = ACTIONS(674), - [anon_sym_isize] = ACTIONS(674), - [anon_sym_usize] = ACTIONS(674), - [anon_sym_f32] = ACTIONS(674), - [anon_sym_f64] = ACTIONS(674), - [anon_sym_bool] = ACTIONS(674), - [anon_sym_str] = ACTIONS(674), - [anon_sym_char] = ACTIONS(674), - [anon_sym_DASH] = ACTIONS(686), - [anon_sym_SLASH] = ACTIONS(686), - [anon_sym_PERCENT] = ACTIONS(686), - [anon_sym_CARET] = ACTIONS(686), - [anon_sym_BANG] = ACTIONS(686), - [anon_sym_AMP] = ACTIONS(686), - [anon_sym_PIPE] = ACTIONS(686), - [anon_sym_AMP_AMP] = ACTIONS(676), - [anon_sym_PIPE_PIPE] = ACTIONS(676), - [anon_sym_LT_LT] = ACTIONS(686), - [anon_sym_GT_GT] = ACTIONS(686), - [anon_sym_PLUS_EQ] = ACTIONS(676), - [anon_sym_DASH_EQ] = ACTIONS(676), - [anon_sym_STAR_EQ] = ACTIONS(676), - [anon_sym_SLASH_EQ] = ACTIONS(676), - [anon_sym_PERCENT_EQ] = ACTIONS(676), - [anon_sym_CARET_EQ] = ACTIONS(676), - [anon_sym_AMP_EQ] = ACTIONS(676), - [anon_sym_PIPE_EQ] = ACTIONS(676), - [anon_sym_LT_LT_EQ] = ACTIONS(676), - [anon_sym_GT_GT_EQ] = ACTIONS(676), - [anon_sym_EQ] = ACTIONS(686), - [anon_sym_EQ_EQ] = ACTIONS(676), - [anon_sym_BANG_EQ] = ACTIONS(676), - [anon_sym_GT] = ACTIONS(686), - [anon_sym_LT] = ACTIONS(686), - [anon_sym_GT_EQ] = ACTIONS(676), - [anon_sym_LT_EQ] = ACTIONS(676), - [anon_sym_AT] = ACTIONS(676), - [anon_sym__] = ACTIONS(686), - [anon_sym_DOT] = ACTIONS(686), - [anon_sym_DOT_DOT] = ACTIONS(686), - [anon_sym_DOT_DOT_DOT] = ACTIONS(676), - [anon_sym_DOT_DOT_EQ] = ACTIONS(676), - [anon_sym_COMMA] = ACTIONS(676), - [anon_sym_COLON_COLON] = ACTIONS(676), - [anon_sym_DASH_GT] = ACTIONS(676), - [anon_sym_POUND] = ACTIONS(676), - [anon_sym_SQUOTE] = ACTIONS(674), - [anon_sym_as] = ACTIONS(674), - [anon_sym_async] = ACTIONS(674), - [anon_sym_await] = ACTIONS(674), - [anon_sym_break] = ACTIONS(674), - [anon_sym_const] = ACTIONS(674), - [anon_sym_continue] = ACTIONS(674), - [anon_sym_default] = ACTIONS(674), - [anon_sym_enum] = ACTIONS(674), - [anon_sym_fn] = ACTIONS(674), - [anon_sym_for] = ACTIONS(674), - [anon_sym_gen] = ACTIONS(674), - [anon_sym_if] = ACTIONS(674), - [anon_sym_impl] = ACTIONS(674), - [anon_sym_let] = ACTIONS(674), - [anon_sym_loop] = ACTIONS(674), - [anon_sym_match] = ACTIONS(674), - [anon_sym_mod] = ACTIONS(674), - [anon_sym_pub] = ACTIONS(674), - [anon_sym_return] = ACTIONS(674), - [anon_sym_static] = ACTIONS(674), - [anon_sym_struct] = ACTIONS(674), - [anon_sym_trait] = ACTIONS(674), - [anon_sym_type] = ACTIONS(674), - [anon_sym_union] = ACTIONS(674), - [anon_sym_unsafe] = ACTIONS(674), - [anon_sym_use] = ACTIONS(674), - [anon_sym_where] = ACTIONS(674), - [anon_sym_while] = ACTIONS(674), - [sym_mutable_specifier] = ACTIONS(674), - [sym_integer_literal] = ACTIONS(690), - [aux_sym_string_literal_token1] = ACTIONS(692), - [sym_char_literal] = ACTIONS(690), - [anon_sym_true] = ACTIONS(694), - [anon_sym_false] = ACTIONS(694), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(674), - [sym_super] = ACTIONS(674), - [sym_crate] = ACTIONS(674), - [sym__raw_string_literal_start] = ACTIONS(696), - [sym_float_literal] = ACTIONS(690), + [aux_sym__non_special_token_repeat1] = STATE(180), + [aux_sym_delim_token_tree_repeat1] = STATE(72), + [sym_identifier] = ACTIONS(679), + [anon_sym_SEMI] = ACTIONS(681), + [anon_sym_LPAREN] = ACTIONS(683), + [anon_sym_RPAREN] = ACTIONS(741), + [anon_sym_LBRACK] = ACTIONS(685), + [anon_sym_LBRACE] = ACTIONS(689), + [anon_sym_EQ_GT] = ACTIONS(681), + [anon_sym_COLON] = ACTIONS(691), + [anon_sym_DOLLAR] = ACTIONS(693), + [anon_sym_PLUS] = ACTIONS(691), + [anon_sym_STAR] = ACTIONS(691), + [anon_sym_QMARK] = ACTIONS(681), + [anon_sym_u8] = ACTIONS(679), + [anon_sym_i8] = ACTIONS(679), + [anon_sym_u16] = ACTIONS(679), + [anon_sym_i16] = ACTIONS(679), + [anon_sym_u32] = ACTIONS(679), + [anon_sym_i32] = ACTIONS(679), + [anon_sym_u64] = ACTIONS(679), + [anon_sym_i64] = ACTIONS(679), + [anon_sym_u128] = ACTIONS(679), + [anon_sym_i128] = ACTIONS(679), + [anon_sym_isize] = ACTIONS(679), + [anon_sym_usize] = ACTIONS(679), + [anon_sym_f32] = ACTIONS(679), + [anon_sym_f64] = ACTIONS(679), + [anon_sym_bool] = ACTIONS(679), + [anon_sym_str] = ACTIONS(679), + [anon_sym_char] = ACTIONS(679), + [anon_sym_DASH] = ACTIONS(691), + [anon_sym_SLASH] = ACTIONS(691), + [anon_sym_PERCENT] = ACTIONS(691), + [anon_sym_CARET] = ACTIONS(691), + [anon_sym_BANG] = ACTIONS(691), + [anon_sym_AMP] = ACTIONS(691), + [anon_sym_PIPE] = ACTIONS(691), + [anon_sym_AMP_AMP] = ACTIONS(681), + [anon_sym_PIPE_PIPE] = ACTIONS(681), + [anon_sym_LT_LT] = ACTIONS(691), + [anon_sym_GT_GT] = ACTIONS(691), + [anon_sym_PLUS_EQ] = ACTIONS(681), + [anon_sym_DASH_EQ] = ACTIONS(681), + [anon_sym_STAR_EQ] = ACTIONS(681), + [anon_sym_SLASH_EQ] = ACTIONS(681), + [anon_sym_PERCENT_EQ] = ACTIONS(681), + [anon_sym_CARET_EQ] = ACTIONS(681), + [anon_sym_AMP_EQ] = ACTIONS(681), + [anon_sym_PIPE_EQ] = ACTIONS(681), + [anon_sym_LT_LT_EQ] = ACTIONS(681), + [anon_sym_GT_GT_EQ] = ACTIONS(681), + [anon_sym_EQ] = ACTIONS(691), + [anon_sym_EQ_EQ] = ACTIONS(681), + [anon_sym_BANG_EQ] = ACTIONS(681), + [anon_sym_GT] = ACTIONS(691), + [anon_sym_LT] = ACTIONS(691), + [anon_sym_GT_EQ] = ACTIONS(681), + [anon_sym_LT_EQ] = ACTIONS(681), + [anon_sym_AT] = ACTIONS(681), + [anon_sym__] = ACTIONS(691), + [anon_sym_DOT] = ACTIONS(691), + [anon_sym_DOT_DOT] = ACTIONS(691), + [anon_sym_DOT_DOT_DOT] = ACTIONS(681), + [anon_sym_DOT_DOT_EQ] = ACTIONS(681), + [anon_sym_COMMA] = ACTIONS(681), + [anon_sym_COLON_COLON] = ACTIONS(681), + [anon_sym_DASH_GT] = ACTIONS(681), + [anon_sym_POUND] = ACTIONS(681), + [anon_sym_SQUOTE] = ACTIONS(679), + [anon_sym_as] = ACTIONS(679), + [anon_sym_async] = ACTIONS(679), + [anon_sym_await] = ACTIONS(679), + [anon_sym_break] = ACTIONS(679), + [anon_sym_const] = ACTIONS(679), + [anon_sym_continue] = ACTIONS(679), + [anon_sym_default] = ACTIONS(679), + [anon_sym_enum] = ACTIONS(679), + [anon_sym_fn] = ACTIONS(679), + [anon_sym_for] = ACTIONS(679), + [anon_sym_gen] = ACTIONS(679), + [anon_sym_if] = ACTIONS(679), + [anon_sym_impl] = ACTIONS(679), + [anon_sym_let] = ACTIONS(679), + [anon_sym_loop] = ACTIONS(679), + [anon_sym_match] = ACTIONS(679), + [anon_sym_mod] = ACTIONS(679), + [anon_sym_pub] = ACTIONS(679), + [anon_sym_return] = ACTIONS(679), + [anon_sym_static] = ACTIONS(679), + [anon_sym_struct] = ACTIONS(679), + [anon_sym_trait] = ACTIONS(679), + [anon_sym_type] = ACTIONS(679), + [anon_sym_union] = ACTIONS(679), + [anon_sym_unsafe] = ACTIONS(679), + [anon_sym_use] = ACTIONS(679), + [anon_sym_where] = ACTIONS(679), + [anon_sym_while] = ACTIONS(679), + [sym_mutable_specifier] = ACTIONS(679), + [sym_integer_literal] = ACTIONS(695), + [aux_sym_string_literal_token1] = ACTIONS(697), + [sym_char_literal] = ACTIONS(695), + [anon_sym_true] = ACTIONS(699), + [anon_sym_false] = ACTIONS(699), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(679), + [sym_super] = ACTIONS(679), + [sym_crate] = ACTIONS(679), + [sym__raw_string_literal_start] = ACTIONS(701), + [sym_float_literal] = ACTIONS(695), }, [STATE(123)] = { - [sym_delim_token_tree] = STATE(207), - [sym__delim_tokens] = STATE(208), - [sym__non_delim_token] = STATE(207), - [sym__literal] = STATE(206), - [sym_string_literal] = STATE(212), - [sym_raw_string_literal] = STATE(212), - [sym_boolean_literal] = STATE(212), + [sym_delim_token_tree] = STATE(208), + [sym__delim_tokens] = STATE(209), + [sym__non_delim_token] = STATE(208), + [sym__literal] = STATE(204), + [sym_string_literal] = STATE(201), + [sym_raw_string_literal] = STATE(201), + [sym_boolean_literal] = STATE(201), [sym_line_comment] = STATE(123), [sym_block_comment] = STATE(123), - [aux_sym__non_special_token_repeat1] = STATE(181), - [aux_sym_delim_token_tree_repeat1] = STATE(68), - [sym_identifier] = ACTIONS(674), - [anon_sym_SEMI] = ACTIONS(676), - [anon_sym_LPAREN] = ACTIONS(678), - [anon_sym_RPAREN] = ACTIONS(684), - [anon_sym_LBRACK] = ACTIONS(680), - [anon_sym_LBRACE] = ACTIONS(682), - [anon_sym_EQ_GT] = ACTIONS(676), - [anon_sym_COLON] = ACTIONS(686), - [anon_sym_DOLLAR] = ACTIONS(688), - [anon_sym_PLUS] = ACTIONS(686), - [anon_sym_STAR] = ACTIONS(686), - [anon_sym_QMARK] = ACTIONS(676), - [anon_sym_u8] = ACTIONS(674), - [anon_sym_i8] = ACTIONS(674), - [anon_sym_u16] = ACTIONS(674), - [anon_sym_i16] = ACTIONS(674), - [anon_sym_u32] = ACTIONS(674), - [anon_sym_i32] = ACTIONS(674), - [anon_sym_u64] = ACTIONS(674), - [anon_sym_i64] = ACTIONS(674), - [anon_sym_u128] = ACTIONS(674), - [anon_sym_i128] = ACTIONS(674), - [anon_sym_isize] = ACTIONS(674), - [anon_sym_usize] = ACTIONS(674), - [anon_sym_f32] = ACTIONS(674), - [anon_sym_f64] = ACTIONS(674), - [anon_sym_bool] = ACTIONS(674), - [anon_sym_str] = ACTIONS(674), - [anon_sym_char] = ACTIONS(674), - [anon_sym_DASH] = ACTIONS(686), - [anon_sym_SLASH] = ACTIONS(686), - [anon_sym_PERCENT] = ACTIONS(686), - [anon_sym_CARET] = ACTIONS(686), - [anon_sym_BANG] = ACTIONS(686), - [anon_sym_AMP] = ACTIONS(686), - [anon_sym_PIPE] = ACTIONS(686), - [anon_sym_AMP_AMP] = ACTIONS(676), - [anon_sym_PIPE_PIPE] = ACTIONS(676), - [anon_sym_LT_LT] = ACTIONS(686), - [anon_sym_GT_GT] = ACTIONS(686), - [anon_sym_PLUS_EQ] = ACTIONS(676), - [anon_sym_DASH_EQ] = ACTIONS(676), - [anon_sym_STAR_EQ] = ACTIONS(676), - [anon_sym_SLASH_EQ] = ACTIONS(676), - [anon_sym_PERCENT_EQ] = ACTIONS(676), - [anon_sym_CARET_EQ] = ACTIONS(676), - [anon_sym_AMP_EQ] = ACTIONS(676), - [anon_sym_PIPE_EQ] = ACTIONS(676), - [anon_sym_LT_LT_EQ] = ACTIONS(676), - [anon_sym_GT_GT_EQ] = ACTIONS(676), - [anon_sym_EQ] = ACTIONS(686), - [anon_sym_EQ_EQ] = ACTIONS(676), - [anon_sym_BANG_EQ] = ACTIONS(676), - [anon_sym_GT] = ACTIONS(686), - [anon_sym_LT] = ACTIONS(686), - [anon_sym_GT_EQ] = ACTIONS(676), - [anon_sym_LT_EQ] = ACTIONS(676), - [anon_sym_AT] = ACTIONS(676), - [anon_sym__] = ACTIONS(686), - [anon_sym_DOT] = ACTIONS(686), - [anon_sym_DOT_DOT] = ACTIONS(686), - [anon_sym_DOT_DOT_DOT] = ACTIONS(676), - [anon_sym_DOT_DOT_EQ] = ACTIONS(676), - [anon_sym_COMMA] = ACTIONS(676), - [anon_sym_COLON_COLON] = ACTIONS(676), - [anon_sym_DASH_GT] = ACTIONS(676), - [anon_sym_POUND] = ACTIONS(676), - [anon_sym_SQUOTE] = ACTIONS(674), - [anon_sym_as] = ACTIONS(674), - [anon_sym_async] = ACTIONS(674), - [anon_sym_await] = ACTIONS(674), - [anon_sym_break] = ACTIONS(674), - [anon_sym_const] = ACTIONS(674), - [anon_sym_continue] = ACTIONS(674), - [anon_sym_default] = ACTIONS(674), - [anon_sym_enum] = ACTIONS(674), - [anon_sym_fn] = ACTIONS(674), - [anon_sym_for] = ACTIONS(674), - [anon_sym_gen] = ACTIONS(674), - [anon_sym_if] = ACTIONS(674), - [anon_sym_impl] = ACTIONS(674), - [anon_sym_let] = ACTIONS(674), - [anon_sym_loop] = ACTIONS(674), - [anon_sym_match] = ACTIONS(674), - [anon_sym_mod] = ACTIONS(674), - [anon_sym_pub] = ACTIONS(674), - [anon_sym_return] = ACTIONS(674), - [anon_sym_static] = ACTIONS(674), - [anon_sym_struct] = ACTIONS(674), - [anon_sym_trait] = ACTIONS(674), - [anon_sym_type] = ACTIONS(674), - [anon_sym_union] = ACTIONS(674), - [anon_sym_unsafe] = ACTIONS(674), - [anon_sym_use] = ACTIONS(674), - [anon_sym_where] = ACTIONS(674), - [anon_sym_while] = ACTIONS(674), - [sym_mutable_specifier] = ACTIONS(674), - [sym_integer_literal] = ACTIONS(690), - [aux_sym_string_literal_token1] = ACTIONS(692), - [sym_char_literal] = ACTIONS(690), - [anon_sym_true] = ACTIONS(694), - [anon_sym_false] = ACTIONS(694), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(674), - [sym_super] = ACTIONS(674), - [sym_crate] = ACTIONS(674), - [sym__raw_string_literal_start] = ACTIONS(696), - [sym_float_literal] = ACTIONS(690), + [aux_sym__non_special_token_repeat1] = STATE(180), + [aux_sym_delim_token_tree_repeat1] = STATE(72), + [sym_identifier] = ACTIONS(679), + [anon_sym_SEMI] = ACTIONS(681), + [anon_sym_LPAREN] = ACTIONS(683), + [anon_sym_LBRACK] = ACTIONS(685), + [anon_sym_RBRACK] = ACTIONS(741), + [anon_sym_LBRACE] = ACTIONS(689), + [anon_sym_EQ_GT] = ACTIONS(681), + [anon_sym_COLON] = ACTIONS(691), + [anon_sym_DOLLAR] = ACTIONS(693), + [anon_sym_PLUS] = ACTIONS(691), + [anon_sym_STAR] = ACTIONS(691), + [anon_sym_QMARK] = ACTIONS(681), + [anon_sym_u8] = ACTIONS(679), + [anon_sym_i8] = ACTIONS(679), + [anon_sym_u16] = ACTIONS(679), + [anon_sym_i16] = ACTIONS(679), + [anon_sym_u32] = ACTIONS(679), + [anon_sym_i32] = ACTIONS(679), + [anon_sym_u64] = ACTIONS(679), + [anon_sym_i64] = ACTIONS(679), + [anon_sym_u128] = ACTIONS(679), + [anon_sym_i128] = ACTIONS(679), + [anon_sym_isize] = ACTIONS(679), + [anon_sym_usize] = ACTIONS(679), + [anon_sym_f32] = ACTIONS(679), + [anon_sym_f64] = ACTIONS(679), + [anon_sym_bool] = ACTIONS(679), + [anon_sym_str] = ACTIONS(679), + [anon_sym_char] = ACTIONS(679), + [anon_sym_DASH] = ACTIONS(691), + [anon_sym_SLASH] = ACTIONS(691), + [anon_sym_PERCENT] = ACTIONS(691), + [anon_sym_CARET] = ACTIONS(691), + [anon_sym_BANG] = ACTIONS(691), + [anon_sym_AMP] = ACTIONS(691), + [anon_sym_PIPE] = ACTIONS(691), + [anon_sym_AMP_AMP] = ACTIONS(681), + [anon_sym_PIPE_PIPE] = ACTIONS(681), + [anon_sym_LT_LT] = ACTIONS(691), + [anon_sym_GT_GT] = ACTIONS(691), + [anon_sym_PLUS_EQ] = ACTIONS(681), + [anon_sym_DASH_EQ] = ACTIONS(681), + [anon_sym_STAR_EQ] = ACTIONS(681), + [anon_sym_SLASH_EQ] = ACTIONS(681), + [anon_sym_PERCENT_EQ] = ACTIONS(681), + [anon_sym_CARET_EQ] = ACTIONS(681), + [anon_sym_AMP_EQ] = ACTIONS(681), + [anon_sym_PIPE_EQ] = ACTIONS(681), + [anon_sym_LT_LT_EQ] = ACTIONS(681), + [anon_sym_GT_GT_EQ] = ACTIONS(681), + [anon_sym_EQ] = ACTIONS(691), + [anon_sym_EQ_EQ] = ACTIONS(681), + [anon_sym_BANG_EQ] = ACTIONS(681), + [anon_sym_GT] = ACTIONS(691), + [anon_sym_LT] = ACTIONS(691), + [anon_sym_GT_EQ] = ACTIONS(681), + [anon_sym_LT_EQ] = ACTIONS(681), + [anon_sym_AT] = ACTIONS(681), + [anon_sym__] = ACTIONS(691), + [anon_sym_DOT] = ACTIONS(691), + [anon_sym_DOT_DOT] = ACTIONS(691), + [anon_sym_DOT_DOT_DOT] = ACTIONS(681), + [anon_sym_DOT_DOT_EQ] = ACTIONS(681), + [anon_sym_COMMA] = ACTIONS(681), + [anon_sym_COLON_COLON] = ACTIONS(681), + [anon_sym_DASH_GT] = ACTIONS(681), + [anon_sym_POUND] = ACTIONS(681), + [anon_sym_SQUOTE] = ACTIONS(679), + [anon_sym_as] = ACTIONS(679), + [anon_sym_async] = ACTIONS(679), + [anon_sym_await] = ACTIONS(679), + [anon_sym_break] = ACTIONS(679), + [anon_sym_const] = ACTIONS(679), + [anon_sym_continue] = ACTIONS(679), + [anon_sym_default] = ACTIONS(679), + [anon_sym_enum] = ACTIONS(679), + [anon_sym_fn] = ACTIONS(679), + [anon_sym_for] = ACTIONS(679), + [anon_sym_gen] = ACTIONS(679), + [anon_sym_if] = ACTIONS(679), + [anon_sym_impl] = ACTIONS(679), + [anon_sym_let] = ACTIONS(679), + [anon_sym_loop] = ACTIONS(679), + [anon_sym_match] = ACTIONS(679), + [anon_sym_mod] = ACTIONS(679), + [anon_sym_pub] = ACTIONS(679), + [anon_sym_return] = ACTIONS(679), + [anon_sym_static] = ACTIONS(679), + [anon_sym_struct] = ACTIONS(679), + [anon_sym_trait] = ACTIONS(679), + [anon_sym_type] = ACTIONS(679), + [anon_sym_union] = ACTIONS(679), + [anon_sym_unsafe] = ACTIONS(679), + [anon_sym_use] = ACTIONS(679), + [anon_sym_where] = ACTIONS(679), + [anon_sym_while] = ACTIONS(679), + [sym_mutable_specifier] = ACTIONS(679), + [sym_integer_literal] = ACTIONS(695), + [aux_sym_string_literal_token1] = ACTIONS(697), + [sym_char_literal] = ACTIONS(695), + [anon_sym_true] = ACTIONS(699), + [anon_sym_false] = ACTIONS(699), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(679), + [sym_super] = ACTIONS(679), + [sym_crate] = ACTIONS(679), + [sym__raw_string_literal_start] = ACTIONS(701), + [sym_float_literal] = ACTIONS(695), }, [STATE(124)] = { - [sym_delim_token_tree] = STATE(207), - [sym__delim_tokens] = STATE(208), - [sym__non_delim_token] = STATE(207), - [sym__literal] = STATE(206), - [sym_string_literal] = STATE(212), - [sym_raw_string_literal] = STATE(212), - [sym_boolean_literal] = STATE(212), + [sym_delim_token_tree] = STATE(208), + [sym__delim_tokens] = STATE(209), + [sym__non_delim_token] = STATE(208), + [sym__literal] = STATE(204), + [sym_string_literal] = STATE(201), + [sym_raw_string_literal] = STATE(201), + [sym_boolean_literal] = STATE(201), [sym_line_comment] = STATE(124), [sym_block_comment] = STATE(124), - [aux_sym__non_special_token_repeat1] = STATE(181), - [aux_sym_delim_token_tree_repeat1] = STATE(68), - [sym_identifier] = ACTIONS(674), - [anon_sym_SEMI] = ACTIONS(676), - [anon_sym_LPAREN] = ACTIONS(678), - [anon_sym_LBRACK] = ACTIONS(680), - [anon_sym_RBRACK] = ACTIONS(684), - [anon_sym_LBRACE] = ACTIONS(682), - [anon_sym_EQ_GT] = ACTIONS(676), - [anon_sym_COLON] = ACTIONS(686), - [anon_sym_DOLLAR] = ACTIONS(688), - [anon_sym_PLUS] = ACTIONS(686), - [anon_sym_STAR] = ACTIONS(686), - [anon_sym_QMARK] = ACTIONS(676), - [anon_sym_u8] = ACTIONS(674), - [anon_sym_i8] = ACTIONS(674), - [anon_sym_u16] = ACTIONS(674), - [anon_sym_i16] = ACTIONS(674), - [anon_sym_u32] = ACTIONS(674), - [anon_sym_i32] = ACTIONS(674), - [anon_sym_u64] = ACTIONS(674), - [anon_sym_i64] = ACTIONS(674), - [anon_sym_u128] = ACTIONS(674), - [anon_sym_i128] = ACTIONS(674), - [anon_sym_isize] = ACTIONS(674), - [anon_sym_usize] = ACTIONS(674), - [anon_sym_f32] = ACTIONS(674), - [anon_sym_f64] = ACTIONS(674), - [anon_sym_bool] = ACTIONS(674), - [anon_sym_str] = ACTIONS(674), - [anon_sym_char] = ACTIONS(674), - [anon_sym_DASH] = ACTIONS(686), - [anon_sym_SLASH] = ACTIONS(686), - [anon_sym_PERCENT] = ACTIONS(686), - [anon_sym_CARET] = ACTIONS(686), - [anon_sym_BANG] = ACTIONS(686), - [anon_sym_AMP] = ACTIONS(686), - [anon_sym_PIPE] = ACTIONS(686), - [anon_sym_AMP_AMP] = ACTIONS(676), - [anon_sym_PIPE_PIPE] = ACTIONS(676), - [anon_sym_LT_LT] = ACTIONS(686), - [anon_sym_GT_GT] = ACTIONS(686), - [anon_sym_PLUS_EQ] = ACTIONS(676), - [anon_sym_DASH_EQ] = ACTIONS(676), - [anon_sym_STAR_EQ] = ACTIONS(676), - [anon_sym_SLASH_EQ] = ACTIONS(676), - [anon_sym_PERCENT_EQ] = ACTIONS(676), - [anon_sym_CARET_EQ] = ACTIONS(676), - [anon_sym_AMP_EQ] = ACTIONS(676), - [anon_sym_PIPE_EQ] = ACTIONS(676), - [anon_sym_LT_LT_EQ] = ACTIONS(676), - [anon_sym_GT_GT_EQ] = ACTIONS(676), - [anon_sym_EQ] = ACTIONS(686), - [anon_sym_EQ_EQ] = ACTIONS(676), - [anon_sym_BANG_EQ] = ACTIONS(676), - [anon_sym_GT] = ACTIONS(686), - [anon_sym_LT] = ACTIONS(686), - [anon_sym_GT_EQ] = ACTIONS(676), - [anon_sym_LT_EQ] = ACTIONS(676), - [anon_sym_AT] = ACTIONS(676), - [anon_sym__] = ACTIONS(686), - [anon_sym_DOT] = ACTIONS(686), - [anon_sym_DOT_DOT] = ACTIONS(686), - [anon_sym_DOT_DOT_DOT] = ACTIONS(676), - [anon_sym_DOT_DOT_EQ] = ACTIONS(676), - [anon_sym_COMMA] = ACTIONS(676), - [anon_sym_COLON_COLON] = ACTIONS(676), - [anon_sym_DASH_GT] = ACTIONS(676), - [anon_sym_POUND] = ACTIONS(676), - [anon_sym_SQUOTE] = ACTIONS(674), - [anon_sym_as] = ACTIONS(674), - [anon_sym_async] = ACTIONS(674), - [anon_sym_await] = ACTIONS(674), - [anon_sym_break] = ACTIONS(674), - [anon_sym_const] = ACTIONS(674), - [anon_sym_continue] = ACTIONS(674), - [anon_sym_default] = ACTIONS(674), - [anon_sym_enum] = ACTIONS(674), - [anon_sym_fn] = ACTIONS(674), - [anon_sym_for] = ACTIONS(674), - [anon_sym_gen] = ACTIONS(674), - [anon_sym_if] = ACTIONS(674), - [anon_sym_impl] = ACTIONS(674), - [anon_sym_let] = ACTIONS(674), - [anon_sym_loop] = ACTIONS(674), - [anon_sym_match] = ACTIONS(674), - [anon_sym_mod] = ACTIONS(674), - [anon_sym_pub] = ACTIONS(674), - [anon_sym_return] = ACTIONS(674), - [anon_sym_static] = ACTIONS(674), - [anon_sym_struct] = ACTIONS(674), - [anon_sym_trait] = ACTIONS(674), - [anon_sym_type] = ACTIONS(674), - [anon_sym_union] = ACTIONS(674), - [anon_sym_unsafe] = ACTIONS(674), - [anon_sym_use] = ACTIONS(674), - [anon_sym_where] = ACTIONS(674), - [anon_sym_while] = ACTIONS(674), - [sym_mutable_specifier] = ACTIONS(674), - [sym_integer_literal] = ACTIONS(690), - [aux_sym_string_literal_token1] = ACTIONS(692), - [sym_char_literal] = ACTIONS(690), - [anon_sym_true] = ACTIONS(694), - [anon_sym_false] = ACTIONS(694), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(674), - [sym_super] = ACTIONS(674), - [sym_crate] = ACTIONS(674), - [sym__raw_string_literal_start] = ACTIONS(696), - [sym_float_literal] = ACTIONS(690), + [aux_sym__non_special_token_repeat1] = STATE(180), + [aux_sym_delim_token_tree_repeat1] = STATE(72), + [sym_identifier] = ACTIONS(679), + [anon_sym_SEMI] = ACTIONS(681), + [anon_sym_LPAREN] = ACTIONS(683), + [anon_sym_LBRACK] = ACTIONS(685), + [anon_sym_LBRACE] = ACTIONS(689), + [anon_sym_RBRACE] = ACTIONS(741), + [anon_sym_EQ_GT] = ACTIONS(681), + [anon_sym_COLON] = ACTIONS(691), + [anon_sym_DOLLAR] = ACTIONS(693), + [anon_sym_PLUS] = ACTIONS(691), + [anon_sym_STAR] = ACTIONS(691), + [anon_sym_QMARK] = ACTIONS(681), + [anon_sym_u8] = ACTIONS(679), + [anon_sym_i8] = ACTIONS(679), + [anon_sym_u16] = ACTIONS(679), + [anon_sym_i16] = ACTIONS(679), + [anon_sym_u32] = ACTIONS(679), + [anon_sym_i32] = ACTIONS(679), + [anon_sym_u64] = ACTIONS(679), + [anon_sym_i64] = ACTIONS(679), + [anon_sym_u128] = ACTIONS(679), + [anon_sym_i128] = ACTIONS(679), + [anon_sym_isize] = ACTIONS(679), + [anon_sym_usize] = ACTIONS(679), + [anon_sym_f32] = ACTIONS(679), + [anon_sym_f64] = ACTIONS(679), + [anon_sym_bool] = ACTIONS(679), + [anon_sym_str] = ACTIONS(679), + [anon_sym_char] = ACTIONS(679), + [anon_sym_DASH] = ACTIONS(691), + [anon_sym_SLASH] = ACTIONS(691), + [anon_sym_PERCENT] = ACTIONS(691), + [anon_sym_CARET] = ACTIONS(691), + [anon_sym_BANG] = ACTIONS(691), + [anon_sym_AMP] = ACTIONS(691), + [anon_sym_PIPE] = ACTIONS(691), + [anon_sym_AMP_AMP] = ACTIONS(681), + [anon_sym_PIPE_PIPE] = ACTIONS(681), + [anon_sym_LT_LT] = ACTIONS(691), + [anon_sym_GT_GT] = ACTIONS(691), + [anon_sym_PLUS_EQ] = ACTIONS(681), + [anon_sym_DASH_EQ] = ACTIONS(681), + [anon_sym_STAR_EQ] = ACTIONS(681), + [anon_sym_SLASH_EQ] = ACTIONS(681), + [anon_sym_PERCENT_EQ] = ACTIONS(681), + [anon_sym_CARET_EQ] = ACTIONS(681), + [anon_sym_AMP_EQ] = ACTIONS(681), + [anon_sym_PIPE_EQ] = ACTIONS(681), + [anon_sym_LT_LT_EQ] = ACTIONS(681), + [anon_sym_GT_GT_EQ] = ACTIONS(681), + [anon_sym_EQ] = ACTIONS(691), + [anon_sym_EQ_EQ] = ACTIONS(681), + [anon_sym_BANG_EQ] = ACTIONS(681), + [anon_sym_GT] = ACTIONS(691), + [anon_sym_LT] = ACTIONS(691), + [anon_sym_GT_EQ] = ACTIONS(681), + [anon_sym_LT_EQ] = ACTIONS(681), + [anon_sym_AT] = ACTIONS(681), + [anon_sym__] = ACTIONS(691), + [anon_sym_DOT] = ACTIONS(691), + [anon_sym_DOT_DOT] = ACTIONS(691), + [anon_sym_DOT_DOT_DOT] = ACTIONS(681), + [anon_sym_DOT_DOT_EQ] = ACTIONS(681), + [anon_sym_COMMA] = ACTIONS(681), + [anon_sym_COLON_COLON] = ACTIONS(681), + [anon_sym_DASH_GT] = ACTIONS(681), + [anon_sym_POUND] = ACTIONS(681), + [anon_sym_SQUOTE] = ACTIONS(679), + [anon_sym_as] = ACTIONS(679), + [anon_sym_async] = ACTIONS(679), + [anon_sym_await] = ACTIONS(679), + [anon_sym_break] = ACTIONS(679), + [anon_sym_const] = ACTIONS(679), + [anon_sym_continue] = ACTIONS(679), + [anon_sym_default] = ACTIONS(679), + [anon_sym_enum] = ACTIONS(679), + [anon_sym_fn] = ACTIONS(679), + [anon_sym_for] = ACTIONS(679), + [anon_sym_gen] = ACTIONS(679), + [anon_sym_if] = ACTIONS(679), + [anon_sym_impl] = ACTIONS(679), + [anon_sym_let] = ACTIONS(679), + [anon_sym_loop] = ACTIONS(679), + [anon_sym_match] = ACTIONS(679), + [anon_sym_mod] = ACTIONS(679), + [anon_sym_pub] = ACTIONS(679), + [anon_sym_return] = ACTIONS(679), + [anon_sym_static] = ACTIONS(679), + [anon_sym_struct] = ACTIONS(679), + [anon_sym_trait] = ACTIONS(679), + [anon_sym_type] = ACTIONS(679), + [anon_sym_union] = ACTIONS(679), + [anon_sym_unsafe] = ACTIONS(679), + [anon_sym_use] = ACTIONS(679), + [anon_sym_where] = ACTIONS(679), + [anon_sym_while] = ACTIONS(679), + [sym_mutable_specifier] = ACTIONS(679), + [sym_integer_literal] = ACTIONS(695), + [aux_sym_string_literal_token1] = ACTIONS(697), + [sym_char_literal] = ACTIONS(695), + [anon_sym_true] = ACTIONS(699), + [anon_sym_false] = ACTIONS(699), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(679), + [sym_super] = ACTIONS(679), + [sym_crate] = ACTIONS(679), + [sym__raw_string_literal_start] = ACTIONS(701), + [sym_float_literal] = ACTIONS(695), }, [STATE(125)] = { - [sym_delim_token_tree] = STATE(207), - [sym__delim_tokens] = STATE(208), - [sym__non_delim_token] = STATE(207), - [sym__literal] = STATE(206), - [sym_string_literal] = STATE(212), - [sym_raw_string_literal] = STATE(212), - [sym_boolean_literal] = STATE(212), + [sym_delim_token_tree] = STATE(208), + [sym__delim_tokens] = STATE(209), + [sym__non_delim_token] = STATE(208), + [sym__literal] = STATE(204), + [sym_string_literal] = STATE(201), + [sym_raw_string_literal] = STATE(201), + [sym_boolean_literal] = STATE(201), [sym_line_comment] = STATE(125), [sym_block_comment] = STATE(125), - [aux_sym__non_special_token_repeat1] = STATE(181), - [aux_sym_delim_token_tree_repeat1] = STATE(129), - [sym_identifier] = ACTIONS(674), - [anon_sym_SEMI] = ACTIONS(676), - [anon_sym_LPAREN] = ACTIONS(678), - [anon_sym_RPAREN] = ACTIONS(740), - [anon_sym_LBRACK] = ACTIONS(680), - [anon_sym_LBRACE] = ACTIONS(682), - [anon_sym_EQ_GT] = ACTIONS(676), - [anon_sym_COLON] = ACTIONS(686), - [anon_sym_DOLLAR] = ACTIONS(688), - [anon_sym_PLUS] = ACTIONS(686), - [anon_sym_STAR] = ACTIONS(686), - [anon_sym_QMARK] = ACTIONS(676), - [anon_sym_u8] = ACTIONS(674), - [anon_sym_i8] = ACTIONS(674), - [anon_sym_u16] = ACTIONS(674), - [anon_sym_i16] = ACTIONS(674), - [anon_sym_u32] = ACTIONS(674), - [anon_sym_i32] = ACTIONS(674), - [anon_sym_u64] = ACTIONS(674), - [anon_sym_i64] = ACTIONS(674), - [anon_sym_u128] = ACTIONS(674), - [anon_sym_i128] = ACTIONS(674), - [anon_sym_isize] = ACTIONS(674), - [anon_sym_usize] = ACTIONS(674), - [anon_sym_f32] = ACTIONS(674), - [anon_sym_f64] = ACTIONS(674), - [anon_sym_bool] = ACTIONS(674), - [anon_sym_str] = ACTIONS(674), - [anon_sym_char] = ACTIONS(674), - [anon_sym_DASH] = ACTIONS(686), - [anon_sym_SLASH] = ACTIONS(686), - [anon_sym_PERCENT] = ACTIONS(686), - [anon_sym_CARET] = ACTIONS(686), - [anon_sym_BANG] = ACTIONS(686), - [anon_sym_AMP] = ACTIONS(686), - [anon_sym_PIPE] = ACTIONS(686), - [anon_sym_AMP_AMP] = ACTIONS(676), - [anon_sym_PIPE_PIPE] = ACTIONS(676), - [anon_sym_LT_LT] = ACTIONS(686), - [anon_sym_GT_GT] = ACTIONS(686), - [anon_sym_PLUS_EQ] = ACTIONS(676), - [anon_sym_DASH_EQ] = ACTIONS(676), - [anon_sym_STAR_EQ] = ACTIONS(676), - [anon_sym_SLASH_EQ] = ACTIONS(676), - [anon_sym_PERCENT_EQ] = ACTIONS(676), - [anon_sym_CARET_EQ] = ACTIONS(676), - [anon_sym_AMP_EQ] = ACTIONS(676), - [anon_sym_PIPE_EQ] = ACTIONS(676), - [anon_sym_LT_LT_EQ] = ACTIONS(676), - [anon_sym_GT_GT_EQ] = ACTIONS(676), - [anon_sym_EQ] = ACTIONS(686), - [anon_sym_EQ_EQ] = ACTIONS(676), - [anon_sym_BANG_EQ] = ACTIONS(676), - [anon_sym_GT] = ACTIONS(686), - [anon_sym_LT] = ACTIONS(686), - [anon_sym_GT_EQ] = ACTIONS(676), - [anon_sym_LT_EQ] = ACTIONS(676), - [anon_sym_AT] = ACTIONS(676), - [anon_sym__] = ACTIONS(686), - [anon_sym_DOT] = ACTIONS(686), - [anon_sym_DOT_DOT] = ACTIONS(686), - [anon_sym_DOT_DOT_DOT] = ACTIONS(676), - [anon_sym_DOT_DOT_EQ] = ACTIONS(676), - [anon_sym_COMMA] = ACTIONS(676), - [anon_sym_COLON_COLON] = ACTIONS(676), - [anon_sym_DASH_GT] = ACTIONS(676), - [anon_sym_POUND] = ACTIONS(676), - [anon_sym_SQUOTE] = ACTIONS(674), - [anon_sym_as] = ACTIONS(674), - [anon_sym_async] = ACTIONS(674), - [anon_sym_await] = ACTIONS(674), - [anon_sym_break] = ACTIONS(674), - [anon_sym_const] = ACTIONS(674), - [anon_sym_continue] = ACTIONS(674), - [anon_sym_default] = ACTIONS(674), - [anon_sym_enum] = ACTIONS(674), - [anon_sym_fn] = ACTIONS(674), - [anon_sym_for] = ACTIONS(674), - [anon_sym_gen] = ACTIONS(674), - [anon_sym_if] = ACTIONS(674), - [anon_sym_impl] = ACTIONS(674), - [anon_sym_let] = ACTIONS(674), - [anon_sym_loop] = ACTIONS(674), - [anon_sym_match] = ACTIONS(674), - [anon_sym_mod] = ACTIONS(674), - [anon_sym_pub] = ACTIONS(674), - [anon_sym_return] = ACTIONS(674), - [anon_sym_static] = ACTIONS(674), - [anon_sym_struct] = ACTIONS(674), - [anon_sym_trait] = ACTIONS(674), - [anon_sym_type] = ACTIONS(674), - [anon_sym_union] = ACTIONS(674), - [anon_sym_unsafe] = ACTIONS(674), - [anon_sym_use] = ACTIONS(674), - [anon_sym_where] = ACTIONS(674), - [anon_sym_while] = ACTIONS(674), - [sym_mutable_specifier] = ACTIONS(674), - [sym_integer_literal] = ACTIONS(690), - [aux_sym_string_literal_token1] = ACTIONS(692), - [sym_char_literal] = ACTIONS(690), - [anon_sym_true] = ACTIONS(694), - [anon_sym_false] = ACTIONS(694), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(674), - [sym_super] = ACTIONS(674), - [sym_crate] = ACTIONS(674), - [sym__raw_string_literal_start] = ACTIONS(696), - [sym_float_literal] = ACTIONS(690), + [aux_sym__non_special_token_repeat1] = STATE(180), + [aux_sym_delim_token_tree_repeat1] = STATE(128), + [sym_identifier] = ACTIONS(679), + [anon_sym_SEMI] = ACTIONS(681), + [anon_sym_LPAREN] = ACTIONS(683), + [anon_sym_RPAREN] = ACTIONS(687), + [anon_sym_LBRACK] = ACTIONS(685), + [anon_sym_LBRACE] = ACTIONS(689), + [anon_sym_EQ_GT] = ACTIONS(681), + [anon_sym_COLON] = ACTIONS(691), + [anon_sym_DOLLAR] = ACTIONS(693), + [anon_sym_PLUS] = ACTIONS(691), + [anon_sym_STAR] = ACTIONS(691), + [anon_sym_QMARK] = ACTIONS(681), + [anon_sym_u8] = ACTIONS(679), + [anon_sym_i8] = ACTIONS(679), + [anon_sym_u16] = ACTIONS(679), + [anon_sym_i16] = ACTIONS(679), + [anon_sym_u32] = ACTIONS(679), + [anon_sym_i32] = ACTIONS(679), + [anon_sym_u64] = ACTIONS(679), + [anon_sym_i64] = ACTIONS(679), + [anon_sym_u128] = ACTIONS(679), + [anon_sym_i128] = ACTIONS(679), + [anon_sym_isize] = ACTIONS(679), + [anon_sym_usize] = ACTIONS(679), + [anon_sym_f32] = ACTIONS(679), + [anon_sym_f64] = ACTIONS(679), + [anon_sym_bool] = ACTIONS(679), + [anon_sym_str] = ACTIONS(679), + [anon_sym_char] = ACTIONS(679), + [anon_sym_DASH] = ACTIONS(691), + [anon_sym_SLASH] = ACTIONS(691), + [anon_sym_PERCENT] = ACTIONS(691), + [anon_sym_CARET] = ACTIONS(691), + [anon_sym_BANG] = ACTIONS(691), + [anon_sym_AMP] = ACTIONS(691), + [anon_sym_PIPE] = ACTIONS(691), + [anon_sym_AMP_AMP] = ACTIONS(681), + [anon_sym_PIPE_PIPE] = ACTIONS(681), + [anon_sym_LT_LT] = ACTIONS(691), + [anon_sym_GT_GT] = ACTIONS(691), + [anon_sym_PLUS_EQ] = ACTIONS(681), + [anon_sym_DASH_EQ] = ACTIONS(681), + [anon_sym_STAR_EQ] = ACTIONS(681), + [anon_sym_SLASH_EQ] = ACTIONS(681), + [anon_sym_PERCENT_EQ] = ACTIONS(681), + [anon_sym_CARET_EQ] = ACTIONS(681), + [anon_sym_AMP_EQ] = ACTIONS(681), + [anon_sym_PIPE_EQ] = ACTIONS(681), + [anon_sym_LT_LT_EQ] = ACTIONS(681), + [anon_sym_GT_GT_EQ] = ACTIONS(681), + [anon_sym_EQ] = ACTIONS(691), + [anon_sym_EQ_EQ] = ACTIONS(681), + [anon_sym_BANG_EQ] = ACTIONS(681), + [anon_sym_GT] = ACTIONS(691), + [anon_sym_LT] = ACTIONS(691), + [anon_sym_GT_EQ] = ACTIONS(681), + [anon_sym_LT_EQ] = ACTIONS(681), + [anon_sym_AT] = ACTIONS(681), + [anon_sym__] = ACTIONS(691), + [anon_sym_DOT] = ACTIONS(691), + [anon_sym_DOT_DOT] = ACTIONS(691), + [anon_sym_DOT_DOT_DOT] = ACTIONS(681), + [anon_sym_DOT_DOT_EQ] = ACTIONS(681), + [anon_sym_COMMA] = ACTIONS(681), + [anon_sym_COLON_COLON] = ACTIONS(681), + [anon_sym_DASH_GT] = ACTIONS(681), + [anon_sym_POUND] = ACTIONS(681), + [anon_sym_SQUOTE] = ACTIONS(679), + [anon_sym_as] = ACTIONS(679), + [anon_sym_async] = ACTIONS(679), + [anon_sym_await] = ACTIONS(679), + [anon_sym_break] = ACTIONS(679), + [anon_sym_const] = ACTIONS(679), + [anon_sym_continue] = ACTIONS(679), + [anon_sym_default] = ACTIONS(679), + [anon_sym_enum] = ACTIONS(679), + [anon_sym_fn] = ACTIONS(679), + [anon_sym_for] = ACTIONS(679), + [anon_sym_gen] = ACTIONS(679), + [anon_sym_if] = ACTIONS(679), + [anon_sym_impl] = ACTIONS(679), + [anon_sym_let] = ACTIONS(679), + [anon_sym_loop] = ACTIONS(679), + [anon_sym_match] = ACTIONS(679), + [anon_sym_mod] = ACTIONS(679), + [anon_sym_pub] = ACTIONS(679), + [anon_sym_return] = ACTIONS(679), + [anon_sym_static] = ACTIONS(679), + [anon_sym_struct] = ACTIONS(679), + [anon_sym_trait] = ACTIONS(679), + [anon_sym_type] = ACTIONS(679), + [anon_sym_union] = ACTIONS(679), + [anon_sym_unsafe] = ACTIONS(679), + [anon_sym_use] = ACTIONS(679), + [anon_sym_where] = ACTIONS(679), + [anon_sym_while] = ACTIONS(679), + [sym_mutable_specifier] = ACTIONS(679), + [sym_integer_literal] = ACTIONS(695), + [aux_sym_string_literal_token1] = ACTIONS(697), + [sym_char_literal] = ACTIONS(695), + [anon_sym_true] = ACTIONS(699), + [anon_sym_false] = ACTIONS(699), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(679), + [sym_super] = ACTIONS(679), + [sym_crate] = ACTIONS(679), + [sym__raw_string_literal_start] = ACTIONS(701), + [sym_float_literal] = ACTIONS(695), }, [STATE(126)] = { - [sym_delim_token_tree] = STATE(207), - [sym__delim_tokens] = STATE(208), - [sym__non_delim_token] = STATE(207), - [sym__literal] = STATE(206), - [sym_string_literal] = STATE(212), - [sym_raw_string_literal] = STATE(212), - [sym_boolean_literal] = STATE(212), + [sym_delim_token_tree] = STATE(208), + [sym__delim_tokens] = STATE(209), + [sym__non_delim_token] = STATE(208), + [sym__literal] = STATE(204), + [sym_string_literal] = STATE(201), + [sym_raw_string_literal] = STATE(201), + [sym_boolean_literal] = STATE(201), [sym_line_comment] = STATE(126), [sym_block_comment] = STATE(126), - [aux_sym__non_special_token_repeat1] = STATE(181), + [aux_sym__non_special_token_repeat1] = STATE(180), [aux_sym_delim_token_tree_repeat1] = STATE(130), - [sym_identifier] = ACTIONS(674), - [anon_sym_SEMI] = ACTIONS(676), - [anon_sym_LPAREN] = ACTIONS(678), - [anon_sym_LBRACK] = ACTIONS(680), - [anon_sym_RBRACK] = ACTIONS(740), - [anon_sym_LBRACE] = ACTIONS(682), - [anon_sym_EQ_GT] = ACTIONS(676), - [anon_sym_COLON] = ACTIONS(686), - [anon_sym_DOLLAR] = ACTIONS(688), - [anon_sym_PLUS] = ACTIONS(686), - [anon_sym_STAR] = ACTIONS(686), - [anon_sym_QMARK] = ACTIONS(676), - [anon_sym_u8] = ACTIONS(674), - [anon_sym_i8] = ACTIONS(674), - [anon_sym_u16] = ACTIONS(674), - [anon_sym_i16] = ACTIONS(674), - [anon_sym_u32] = ACTIONS(674), - [anon_sym_i32] = ACTIONS(674), - [anon_sym_u64] = ACTIONS(674), - [anon_sym_i64] = ACTIONS(674), - [anon_sym_u128] = ACTIONS(674), - [anon_sym_i128] = ACTIONS(674), - [anon_sym_isize] = ACTIONS(674), - [anon_sym_usize] = ACTIONS(674), - [anon_sym_f32] = ACTIONS(674), - [anon_sym_f64] = ACTIONS(674), - [anon_sym_bool] = ACTIONS(674), - [anon_sym_str] = ACTIONS(674), - [anon_sym_char] = ACTIONS(674), - [anon_sym_DASH] = ACTIONS(686), - [anon_sym_SLASH] = ACTIONS(686), - [anon_sym_PERCENT] = ACTIONS(686), - [anon_sym_CARET] = ACTIONS(686), - [anon_sym_BANG] = ACTIONS(686), - [anon_sym_AMP] = ACTIONS(686), - [anon_sym_PIPE] = ACTIONS(686), - [anon_sym_AMP_AMP] = ACTIONS(676), - [anon_sym_PIPE_PIPE] = ACTIONS(676), - [anon_sym_LT_LT] = ACTIONS(686), - [anon_sym_GT_GT] = ACTIONS(686), - [anon_sym_PLUS_EQ] = ACTIONS(676), - [anon_sym_DASH_EQ] = ACTIONS(676), - [anon_sym_STAR_EQ] = ACTIONS(676), - [anon_sym_SLASH_EQ] = ACTIONS(676), - [anon_sym_PERCENT_EQ] = ACTIONS(676), - [anon_sym_CARET_EQ] = ACTIONS(676), - [anon_sym_AMP_EQ] = ACTIONS(676), - [anon_sym_PIPE_EQ] = ACTIONS(676), - [anon_sym_LT_LT_EQ] = ACTIONS(676), - [anon_sym_GT_GT_EQ] = ACTIONS(676), - [anon_sym_EQ] = ACTIONS(686), - [anon_sym_EQ_EQ] = ACTIONS(676), - [anon_sym_BANG_EQ] = ACTIONS(676), - [anon_sym_GT] = ACTIONS(686), - [anon_sym_LT] = ACTIONS(686), - [anon_sym_GT_EQ] = ACTIONS(676), - [anon_sym_LT_EQ] = ACTIONS(676), - [anon_sym_AT] = ACTIONS(676), - [anon_sym__] = ACTIONS(686), - [anon_sym_DOT] = ACTIONS(686), - [anon_sym_DOT_DOT] = ACTIONS(686), - [anon_sym_DOT_DOT_DOT] = ACTIONS(676), - [anon_sym_DOT_DOT_EQ] = ACTIONS(676), - [anon_sym_COMMA] = ACTIONS(676), - [anon_sym_COLON_COLON] = ACTIONS(676), - [anon_sym_DASH_GT] = ACTIONS(676), - [anon_sym_POUND] = ACTIONS(676), - [anon_sym_SQUOTE] = ACTIONS(674), - [anon_sym_as] = ACTIONS(674), - [anon_sym_async] = ACTIONS(674), - [anon_sym_await] = ACTIONS(674), - [anon_sym_break] = ACTIONS(674), - [anon_sym_const] = ACTIONS(674), - [anon_sym_continue] = ACTIONS(674), - [anon_sym_default] = ACTIONS(674), - [anon_sym_enum] = ACTIONS(674), - [anon_sym_fn] = ACTIONS(674), - [anon_sym_for] = ACTIONS(674), - [anon_sym_gen] = ACTIONS(674), - [anon_sym_if] = ACTIONS(674), - [anon_sym_impl] = ACTIONS(674), - [anon_sym_let] = ACTIONS(674), - [anon_sym_loop] = ACTIONS(674), - [anon_sym_match] = ACTIONS(674), - [anon_sym_mod] = ACTIONS(674), - [anon_sym_pub] = ACTIONS(674), - [anon_sym_return] = ACTIONS(674), - [anon_sym_static] = ACTIONS(674), - [anon_sym_struct] = ACTIONS(674), - [anon_sym_trait] = ACTIONS(674), - [anon_sym_type] = ACTIONS(674), - [anon_sym_union] = ACTIONS(674), - [anon_sym_unsafe] = ACTIONS(674), - [anon_sym_use] = ACTIONS(674), - [anon_sym_where] = ACTIONS(674), - [anon_sym_while] = ACTIONS(674), - [sym_mutable_specifier] = ACTIONS(674), - [sym_integer_literal] = ACTIONS(690), - [aux_sym_string_literal_token1] = ACTIONS(692), - [sym_char_literal] = ACTIONS(690), - [anon_sym_true] = ACTIONS(694), - [anon_sym_false] = ACTIONS(694), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(674), - [sym_super] = ACTIONS(674), - [sym_crate] = ACTIONS(674), - [sym__raw_string_literal_start] = ACTIONS(696), - [sym_float_literal] = ACTIONS(690), + [sym_identifier] = ACTIONS(679), + [anon_sym_SEMI] = ACTIONS(681), + [anon_sym_LPAREN] = ACTIONS(683), + [anon_sym_LBRACK] = ACTIONS(685), + [anon_sym_LBRACE] = ACTIONS(689), + [anon_sym_RBRACE] = ACTIONS(687), + [anon_sym_EQ_GT] = ACTIONS(681), + [anon_sym_COLON] = ACTIONS(691), + [anon_sym_DOLLAR] = ACTIONS(693), + [anon_sym_PLUS] = ACTIONS(691), + [anon_sym_STAR] = ACTIONS(691), + [anon_sym_QMARK] = ACTIONS(681), + [anon_sym_u8] = ACTIONS(679), + [anon_sym_i8] = ACTIONS(679), + [anon_sym_u16] = ACTIONS(679), + [anon_sym_i16] = ACTIONS(679), + [anon_sym_u32] = ACTIONS(679), + [anon_sym_i32] = ACTIONS(679), + [anon_sym_u64] = ACTIONS(679), + [anon_sym_i64] = ACTIONS(679), + [anon_sym_u128] = ACTIONS(679), + [anon_sym_i128] = ACTIONS(679), + [anon_sym_isize] = ACTIONS(679), + [anon_sym_usize] = ACTIONS(679), + [anon_sym_f32] = ACTIONS(679), + [anon_sym_f64] = ACTIONS(679), + [anon_sym_bool] = ACTIONS(679), + [anon_sym_str] = ACTIONS(679), + [anon_sym_char] = ACTIONS(679), + [anon_sym_DASH] = ACTIONS(691), + [anon_sym_SLASH] = ACTIONS(691), + [anon_sym_PERCENT] = ACTIONS(691), + [anon_sym_CARET] = ACTIONS(691), + [anon_sym_BANG] = ACTIONS(691), + [anon_sym_AMP] = ACTIONS(691), + [anon_sym_PIPE] = ACTIONS(691), + [anon_sym_AMP_AMP] = ACTIONS(681), + [anon_sym_PIPE_PIPE] = ACTIONS(681), + [anon_sym_LT_LT] = ACTIONS(691), + [anon_sym_GT_GT] = ACTIONS(691), + [anon_sym_PLUS_EQ] = ACTIONS(681), + [anon_sym_DASH_EQ] = ACTIONS(681), + [anon_sym_STAR_EQ] = ACTIONS(681), + [anon_sym_SLASH_EQ] = ACTIONS(681), + [anon_sym_PERCENT_EQ] = ACTIONS(681), + [anon_sym_CARET_EQ] = ACTIONS(681), + [anon_sym_AMP_EQ] = ACTIONS(681), + [anon_sym_PIPE_EQ] = ACTIONS(681), + [anon_sym_LT_LT_EQ] = ACTIONS(681), + [anon_sym_GT_GT_EQ] = ACTIONS(681), + [anon_sym_EQ] = ACTIONS(691), + [anon_sym_EQ_EQ] = ACTIONS(681), + [anon_sym_BANG_EQ] = ACTIONS(681), + [anon_sym_GT] = ACTIONS(691), + [anon_sym_LT] = ACTIONS(691), + [anon_sym_GT_EQ] = ACTIONS(681), + [anon_sym_LT_EQ] = ACTIONS(681), + [anon_sym_AT] = ACTIONS(681), + [anon_sym__] = ACTIONS(691), + [anon_sym_DOT] = ACTIONS(691), + [anon_sym_DOT_DOT] = ACTIONS(691), + [anon_sym_DOT_DOT_DOT] = ACTIONS(681), + [anon_sym_DOT_DOT_EQ] = ACTIONS(681), + [anon_sym_COMMA] = ACTIONS(681), + [anon_sym_COLON_COLON] = ACTIONS(681), + [anon_sym_DASH_GT] = ACTIONS(681), + [anon_sym_POUND] = ACTIONS(681), + [anon_sym_SQUOTE] = ACTIONS(679), + [anon_sym_as] = ACTIONS(679), + [anon_sym_async] = ACTIONS(679), + [anon_sym_await] = ACTIONS(679), + [anon_sym_break] = ACTIONS(679), + [anon_sym_const] = ACTIONS(679), + [anon_sym_continue] = ACTIONS(679), + [anon_sym_default] = ACTIONS(679), + [anon_sym_enum] = ACTIONS(679), + [anon_sym_fn] = ACTIONS(679), + [anon_sym_for] = ACTIONS(679), + [anon_sym_gen] = ACTIONS(679), + [anon_sym_if] = ACTIONS(679), + [anon_sym_impl] = ACTIONS(679), + [anon_sym_let] = ACTIONS(679), + [anon_sym_loop] = ACTIONS(679), + [anon_sym_match] = ACTIONS(679), + [anon_sym_mod] = ACTIONS(679), + [anon_sym_pub] = ACTIONS(679), + [anon_sym_return] = ACTIONS(679), + [anon_sym_static] = ACTIONS(679), + [anon_sym_struct] = ACTIONS(679), + [anon_sym_trait] = ACTIONS(679), + [anon_sym_type] = ACTIONS(679), + [anon_sym_union] = ACTIONS(679), + [anon_sym_unsafe] = ACTIONS(679), + [anon_sym_use] = ACTIONS(679), + [anon_sym_where] = ACTIONS(679), + [anon_sym_while] = ACTIONS(679), + [sym_mutable_specifier] = ACTIONS(679), + [sym_integer_literal] = ACTIONS(695), + [aux_sym_string_literal_token1] = ACTIONS(697), + [sym_char_literal] = ACTIONS(695), + [anon_sym_true] = ACTIONS(699), + [anon_sym_false] = ACTIONS(699), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(679), + [sym_super] = ACTIONS(679), + [sym_crate] = ACTIONS(679), + [sym__raw_string_literal_start] = ACTIONS(701), + [sym_float_literal] = ACTIONS(695), }, [STATE(127)] = { - [sym_delim_token_tree] = STATE(207), - [sym__delim_tokens] = STATE(208), - [sym__non_delim_token] = STATE(207), - [sym__literal] = STATE(206), - [sym_string_literal] = STATE(212), - [sym_raw_string_literal] = STATE(212), - [sym_boolean_literal] = STATE(212), + [sym_delim_token_tree] = STATE(208), + [sym__delim_tokens] = STATE(209), + [sym__non_delim_token] = STATE(208), + [sym__literal] = STATE(204), + [sym_string_literal] = STATE(201), + [sym_raw_string_literal] = STATE(201), + [sym_boolean_literal] = STATE(201), [sym_line_comment] = STATE(127), [sym_block_comment] = STATE(127), - [aux_sym__non_special_token_repeat1] = STATE(181), - [aux_sym_delim_token_tree_repeat1] = STATE(131), - [sym_identifier] = ACTIONS(674), - [anon_sym_SEMI] = ACTIONS(676), - [anon_sym_LPAREN] = ACTIONS(678), - [anon_sym_LBRACK] = ACTIONS(680), - [anon_sym_LBRACE] = ACTIONS(682), - [anon_sym_RBRACE] = ACTIONS(740), - [anon_sym_EQ_GT] = ACTIONS(676), - [anon_sym_COLON] = ACTIONS(686), - [anon_sym_DOLLAR] = ACTIONS(688), - [anon_sym_PLUS] = ACTIONS(686), - [anon_sym_STAR] = ACTIONS(686), - [anon_sym_QMARK] = ACTIONS(676), - [anon_sym_u8] = ACTIONS(674), - [anon_sym_i8] = ACTIONS(674), - [anon_sym_u16] = ACTIONS(674), - [anon_sym_i16] = ACTIONS(674), - [anon_sym_u32] = ACTIONS(674), - [anon_sym_i32] = ACTIONS(674), - [anon_sym_u64] = ACTIONS(674), - [anon_sym_i64] = ACTIONS(674), - [anon_sym_u128] = ACTIONS(674), - [anon_sym_i128] = ACTIONS(674), - [anon_sym_isize] = ACTIONS(674), - [anon_sym_usize] = ACTIONS(674), - [anon_sym_f32] = ACTIONS(674), - [anon_sym_f64] = ACTIONS(674), - [anon_sym_bool] = ACTIONS(674), - [anon_sym_str] = ACTIONS(674), - [anon_sym_char] = ACTIONS(674), - [anon_sym_DASH] = ACTIONS(686), - [anon_sym_SLASH] = ACTIONS(686), - [anon_sym_PERCENT] = ACTIONS(686), - [anon_sym_CARET] = ACTIONS(686), - [anon_sym_BANG] = ACTIONS(686), - [anon_sym_AMP] = ACTIONS(686), - [anon_sym_PIPE] = ACTIONS(686), - [anon_sym_AMP_AMP] = ACTIONS(676), - [anon_sym_PIPE_PIPE] = ACTIONS(676), - [anon_sym_LT_LT] = ACTIONS(686), - [anon_sym_GT_GT] = ACTIONS(686), - [anon_sym_PLUS_EQ] = ACTIONS(676), - [anon_sym_DASH_EQ] = ACTIONS(676), - [anon_sym_STAR_EQ] = ACTIONS(676), - [anon_sym_SLASH_EQ] = ACTIONS(676), - [anon_sym_PERCENT_EQ] = ACTIONS(676), - [anon_sym_CARET_EQ] = ACTIONS(676), - [anon_sym_AMP_EQ] = ACTIONS(676), - [anon_sym_PIPE_EQ] = ACTIONS(676), - [anon_sym_LT_LT_EQ] = ACTIONS(676), - [anon_sym_GT_GT_EQ] = ACTIONS(676), - [anon_sym_EQ] = ACTIONS(686), - [anon_sym_EQ_EQ] = ACTIONS(676), - [anon_sym_BANG_EQ] = ACTIONS(676), - [anon_sym_GT] = ACTIONS(686), - [anon_sym_LT] = ACTIONS(686), - [anon_sym_GT_EQ] = ACTIONS(676), - [anon_sym_LT_EQ] = ACTIONS(676), - [anon_sym_AT] = ACTIONS(676), - [anon_sym__] = ACTIONS(686), - [anon_sym_DOT] = ACTIONS(686), - [anon_sym_DOT_DOT] = ACTIONS(686), - [anon_sym_DOT_DOT_DOT] = ACTIONS(676), - [anon_sym_DOT_DOT_EQ] = ACTIONS(676), - [anon_sym_COMMA] = ACTIONS(676), - [anon_sym_COLON_COLON] = ACTIONS(676), - [anon_sym_DASH_GT] = ACTIONS(676), - [anon_sym_POUND] = ACTIONS(676), - [anon_sym_SQUOTE] = ACTIONS(674), - [anon_sym_as] = ACTIONS(674), - [anon_sym_async] = ACTIONS(674), - [anon_sym_await] = ACTIONS(674), - [anon_sym_break] = ACTIONS(674), - [anon_sym_const] = ACTIONS(674), - [anon_sym_continue] = ACTIONS(674), - [anon_sym_default] = ACTIONS(674), - [anon_sym_enum] = ACTIONS(674), - [anon_sym_fn] = ACTIONS(674), - [anon_sym_for] = ACTIONS(674), - [anon_sym_gen] = ACTIONS(674), - [anon_sym_if] = ACTIONS(674), - [anon_sym_impl] = ACTIONS(674), - [anon_sym_let] = ACTIONS(674), - [anon_sym_loop] = ACTIONS(674), - [anon_sym_match] = ACTIONS(674), - [anon_sym_mod] = ACTIONS(674), - [anon_sym_pub] = ACTIONS(674), - [anon_sym_return] = ACTIONS(674), - [anon_sym_static] = ACTIONS(674), - [anon_sym_struct] = ACTIONS(674), - [anon_sym_trait] = ACTIONS(674), - [anon_sym_type] = ACTIONS(674), - [anon_sym_union] = ACTIONS(674), - [anon_sym_unsafe] = ACTIONS(674), - [anon_sym_use] = ACTIONS(674), - [anon_sym_where] = ACTIONS(674), - [anon_sym_while] = ACTIONS(674), - [sym_mutable_specifier] = ACTIONS(674), - [sym_integer_literal] = ACTIONS(690), - [aux_sym_string_literal_token1] = ACTIONS(692), - [sym_char_literal] = ACTIONS(690), - [anon_sym_true] = ACTIONS(694), - [anon_sym_false] = ACTIONS(694), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(674), - [sym_super] = ACTIONS(674), - [sym_crate] = ACTIONS(674), - [sym__raw_string_literal_start] = ACTIONS(696), - [sym_float_literal] = ACTIONS(690), + [aux_sym__non_special_token_repeat1] = STATE(180), + [aux_sym_delim_token_tree_repeat1] = STATE(72), + [sym_identifier] = ACTIONS(679), + [anon_sym_SEMI] = ACTIONS(681), + [anon_sym_LPAREN] = ACTIONS(683), + [anon_sym_RPAREN] = ACTIONS(743), + [anon_sym_LBRACK] = ACTIONS(685), + [anon_sym_LBRACE] = ACTIONS(689), + [anon_sym_EQ_GT] = ACTIONS(681), + [anon_sym_COLON] = ACTIONS(691), + [anon_sym_DOLLAR] = ACTIONS(693), + [anon_sym_PLUS] = ACTIONS(691), + [anon_sym_STAR] = ACTIONS(691), + [anon_sym_QMARK] = ACTIONS(681), + [anon_sym_u8] = ACTIONS(679), + [anon_sym_i8] = ACTIONS(679), + [anon_sym_u16] = ACTIONS(679), + [anon_sym_i16] = ACTIONS(679), + [anon_sym_u32] = ACTIONS(679), + [anon_sym_i32] = ACTIONS(679), + [anon_sym_u64] = ACTIONS(679), + [anon_sym_i64] = ACTIONS(679), + [anon_sym_u128] = ACTIONS(679), + [anon_sym_i128] = ACTIONS(679), + [anon_sym_isize] = ACTIONS(679), + [anon_sym_usize] = ACTIONS(679), + [anon_sym_f32] = ACTIONS(679), + [anon_sym_f64] = ACTIONS(679), + [anon_sym_bool] = ACTIONS(679), + [anon_sym_str] = ACTIONS(679), + [anon_sym_char] = ACTIONS(679), + [anon_sym_DASH] = ACTIONS(691), + [anon_sym_SLASH] = ACTIONS(691), + [anon_sym_PERCENT] = ACTIONS(691), + [anon_sym_CARET] = ACTIONS(691), + [anon_sym_BANG] = ACTIONS(691), + [anon_sym_AMP] = ACTIONS(691), + [anon_sym_PIPE] = ACTIONS(691), + [anon_sym_AMP_AMP] = ACTIONS(681), + [anon_sym_PIPE_PIPE] = ACTIONS(681), + [anon_sym_LT_LT] = ACTIONS(691), + [anon_sym_GT_GT] = ACTIONS(691), + [anon_sym_PLUS_EQ] = ACTIONS(681), + [anon_sym_DASH_EQ] = ACTIONS(681), + [anon_sym_STAR_EQ] = ACTIONS(681), + [anon_sym_SLASH_EQ] = ACTIONS(681), + [anon_sym_PERCENT_EQ] = ACTIONS(681), + [anon_sym_CARET_EQ] = ACTIONS(681), + [anon_sym_AMP_EQ] = ACTIONS(681), + [anon_sym_PIPE_EQ] = ACTIONS(681), + [anon_sym_LT_LT_EQ] = ACTIONS(681), + [anon_sym_GT_GT_EQ] = ACTIONS(681), + [anon_sym_EQ] = ACTIONS(691), + [anon_sym_EQ_EQ] = ACTIONS(681), + [anon_sym_BANG_EQ] = ACTIONS(681), + [anon_sym_GT] = ACTIONS(691), + [anon_sym_LT] = ACTIONS(691), + [anon_sym_GT_EQ] = ACTIONS(681), + [anon_sym_LT_EQ] = ACTIONS(681), + [anon_sym_AT] = ACTIONS(681), + [anon_sym__] = ACTIONS(691), + [anon_sym_DOT] = ACTIONS(691), + [anon_sym_DOT_DOT] = ACTIONS(691), + [anon_sym_DOT_DOT_DOT] = ACTIONS(681), + [anon_sym_DOT_DOT_EQ] = ACTIONS(681), + [anon_sym_COMMA] = ACTIONS(681), + [anon_sym_COLON_COLON] = ACTIONS(681), + [anon_sym_DASH_GT] = ACTIONS(681), + [anon_sym_POUND] = ACTIONS(681), + [anon_sym_SQUOTE] = ACTIONS(679), + [anon_sym_as] = ACTIONS(679), + [anon_sym_async] = ACTIONS(679), + [anon_sym_await] = ACTIONS(679), + [anon_sym_break] = ACTIONS(679), + [anon_sym_const] = ACTIONS(679), + [anon_sym_continue] = ACTIONS(679), + [anon_sym_default] = ACTIONS(679), + [anon_sym_enum] = ACTIONS(679), + [anon_sym_fn] = ACTIONS(679), + [anon_sym_for] = ACTIONS(679), + [anon_sym_gen] = ACTIONS(679), + [anon_sym_if] = ACTIONS(679), + [anon_sym_impl] = ACTIONS(679), + [anon_sym_let] = ACTIONS(679), + [anon_sym_loop] = ACTIONS(679), + [anon_sym_match] = ACTIONS(679), + [anon_sym_mod] = ACTIONS(679), + [anon_sym_pub] = ACTIONS(679), + [anon_sym_return] = ACTIONS(679), + [anon_sym_static] = ACTIONS(679), + [anon_sym_struct] = ACTIONS(679), + [anon_sym_trait] = ACTIONS(679), + [anon_sym_type] = ACTIONS(679), + [anon_sym_union] = ACTIONS(679), + [anon_sym_unsafe] = ACTIONS(679), + [anon_sym_use] = ACTIONS(679), + [anon_sym_where] = ACTIONS(679), + [anon_sym_while] = ACTIONS(679), + [sym_mutable_specifier] = ACTIONS(679), + [sym_integer_literal] = ACTIONS(695), + [aux_sym_string_literal_token1] = ACTIONS(697), + [sym_char_literal] = ACTIONS(695), + [anon_sym_true] = ACTIONS(699), + [anon_sym_false] = ACTIONS(699), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(679), + [sym_super] = ACTIONS(679), + [sym_crate] = ACTIONS(679), + [sym__raw_string_literal_start] = ACTIONS(701), + [sym_float_literal] = ACTIONS(695), }, [STATE(128)] = { - [sym_delim_token_tree] = STATE(207), - [sym__delim_tokens] = STATE(208), - [sym__non_delim_token] = STATE(207), - [sym__literal] = STATE(206), - [sym_string_literal] = STATE(212), - [sym_raw_string_literal] = STATE(212), - [sym_boolean_literal] = STATE(212), + [sym_delim_token_tree] = STATE(208), + [sym__delim_tokens] = STATE(209), + [sym__non_delim_token] = STATE(208), + [sym__literal] = STATE(204), + [sym_string_literal] = STATE(201), + [sym_raw_string_literal] = STATE(201), + [sym_boolean_literal] = STATE(201), [sym_line_comment] = STATE(128), [sym_block_comment] = STATE(128), - [aux_sym__non_special_token_repeat1] = STATE(181), - [aux_sym_delim_token_tree_repeat1] = STATE(68), - [sym_identifier] = ACTIONS(674), - [anon_sym_SEMI] = ACTIONS(676), - [anon_sym_LPAREN] = ACTIONS(678), - [anon_sym_RPAREN] = ACTIONS(698), - [anon_sym_LBRACK] = ACTIONS(680), - [anon_sym_LBRACE] = ACTIONS(682), - [anon_sym_EQ_GT] = ACTIONS(676), - [anon_sym_COLON] = ACTIONS(686), - [anon_sym_DOLLAR] = ACTIONS(688), - [anon_sym_PLUS] = ACTIONS(686), - [anon_sym_STAR] = ACTIONS(686), - [anon_sym_QMARK] = ACTIONS(676), - [anon_sym_u8] = ACTIONS(674), - [anon_sym_i8] = ACTIONS(674), - [anon_sym_u16] = ACTIONS(674), - [anon_sym_i16] = ACTIONS(674), - [anon_sym_u32] = ACTIONS(674), - [anon_sym_i32] = ACTIONS(674), - [anon_sym_u64] = ACTIONS(674), - [anon_sym_i64] = ACTIONS(674), - [anon_sym_u128] = ACTIONS(674), - [anon_sym_i128] = ACTIONS(674), - [anon_sym_isize] = ACTIONS(674), - [anon_sym_usize] = ACTIONS(674), - [anon_sym_f32] = ACTIONS(674), - [anon_sym_f64] = ACTIONS(674), - [anon_sym_bool] = ACTIONS(674), - [anon_sym_str] = ACTIONS(674), - [anon_sym_char] = ACTIONS(674), - [anon_sym_DASH] = ACTIONS(686), - [anon_sym_SLASH] = ACTIONS(686), - [anon_sym_PERCENT] = ACTIONS(686), - [anon_sym_CARET] = ACTIONS(686), - [anon_sym_BANG] = ACTIONS(686), - [anon_sym_AMP] = ACTIONS(686), - [anon_sym_PIPE] = ACTIONS(686), - [anon_sym_AMP_AMP] = ACTIONS(676), - [anon_sym_PIPE_PIPE] = ACTIONS(676), - [anon_sym_LT_LT] = ACTIONS(686), - [anon_sym_GT_GT] = ACTIONS(686), - [anon_sym_PLUS_EQ] = ACTIONS(676), - [anon_sym_DASH_EQ] = ACTIONS(676), - [anon_sym_STAR_EQ] = ACTIONS(676), - [anon_sym_SLASH_EQ] = ACTIONS(676), - [anon_sym_PERCENT_EQ] = ACTIONS(676), - [anon_sym_CARET_EQ] = ACTIONS(676), - [anon_sym_AMP_EQ] = ACTIONS(676), - [anon_sym_PIPE_EQ] = ACTIONS(676), - [anon_sym_LT_LT_EQ] = ACTIONS(676), - [anon_sym_GT_GT_EQ] = ACTIONS(676), - [anon_sym_EQ] = ACTIONS(686), - [anon_sym_EQ_EQ] = ACTIONS(676), - [anon_sym_BANG_EQ] = ACTIONS(676), - [anon_sym_GT] = ACTIONS(686), - [anon_sym_LT] = ACTIONS(686), - [anon_sym_GT_EQ] = ACTIONS(676), - [anon_sym_LT_EQ] = ACTIONS(676), - [anon_sym_AT] = ACTIONS(676), - [anon_sym__] = ACTIONS(686), - [anon_sym_DOT] = ACTIONS(686), - [anon_sym_DOT_DOT] = ACTIONS(686), - [anon_sym_DOT_DOT_DOT] = ACTIONS(676), - [anon_sym_DOT_DOT_EQ] = ACTIONS(676), - [anon_sym_COMMA] = ACTIONS(676), - [anon_sym_COLON_COLON] = ACTIONS(676), - [anon_sym_DASH_GT] = ACTIONS(676), - [anon_sym_POUND] = ACTIONS(676), - [anon_sym_SQUOTE] = ACTIONS(674), - [anon_sym_as] = ACTIONS(674), - [anon_sym_async] = ACTIONS(674), - [anon_sym_await] = ACTIONS(674), - [anon_sym_break] = ACTIONS(674), - [anon_sym_const] = ACTIONS(674), - [anon_sym_continue] = ACTIONS(674), - [anon_sym_default] = ACTIONS(674), - [anon_sym_enum] = ACTIONS(674), - [anon_sym_fn] = ACTIONS(674), - [anon_sym_for] = ACTIONS(674), - [anon_sym_gen] = ACTIONS(674), - [anon_sym_if] = ACTIONS(674), - [anon_sym_impl] = ACTIONS(674), - [anon_sym_let] = ACTIONS(674), - [anon_sym_loop] = ACTIONS(674), - [anon_sym_match] = ACTIONS(674), - [anon_sym_mod] = ACTIONS(674), - [anon_sym_pub] = ACTIONS(674), - [anon_sym_return] = ACTIONS(674), - [anon_sym_static] = ACTIONS(674), - [anon_sym_struct] = ACTIONS(674), - [anon_sym_trait] = ACTIONS(674), - [anon_sym_type] = ACTIONS(674), - [anon_sym_union] = ACTIONS(674), - [anon_sym_unsafe] = ACTIONS(674), - [anon_sym_use] = ACTIONS(674), - [anon_sym_where] = ACTIONS(674), - [anon_sym_while] = ACTIONS(674), - [sym_mutable_specifier] = ACTIONS(674), - [sym_integer_literal] = ACTIONS(690), - [aux_sym_string_literal_token1] = ACTIONS(692), - [sym_char_literal] = ACTIONS(690), - [anon_sym_true] = ACTIONS(694), - [anon_sym_false] = ACTIONS(694), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(674), - [sym_super] = ACTIONS(674), - [sym_crate] = ACTIONS(674), - [sym__raw_string_literal_start] = ACTIONS(696), - [sym_float_literal] = ACTIONS(690), + [aux_sym__non_special_token_repeat1] = STATE(180), + [aux_sym_delim_token_tree_repeat1] = STATE(72), + [sym_identifier] = ACTIONS(679), + [anon_sym_SEMI] = ACTIONS(681), + [anon_sym_LPAREN] = ACTIONS(683), + [anon_sym_RPAREN] = ACTIONS(745), + [anon_sym_LBRACK] = ACTIONS(685), + [anon_sym_LBRACE] = ACTIONS(689), + [anon_sym_EQ_GT] = ACTIONS(681), + [anon_sym_COLON] = ACTIONS(691), + [anon_sym_DOLLAR] = ACTIONS(693), + [anon_sym_PLUS] = ACTIONS(691), + [anon_sym_STAR] = ACTIONS(691), + [anon_sym_QMARK] = ACTIONS(681), + [anon_sym_u8] = ACTIONS(679), + [anon_sym_i8] = ACTIONS(679), + [anon_sym_u16] = ACTIONS(679), + [anon_sym_i16] = ACTIONS(679), + [anon_sym_u32] = ACTIONS(679), + [anon_sym_i32] = ACTIONS(679), + [anon_sym_u64] = ACTIONS(679), + [anon_sym_i64] = ACTIONS(679), + [anon_sym_u128] = ACTIONS(679), + [anon_sym_i128] = ACTIONS(679), + [anon_sym_isize] = ACTIONS(679), + [anon_sym_usize] = ACTIONS(679), + [anon_sym_f32] = ACTIONS(679), + [anon_sym_f64] = ACTIONS(679), + [anon_sym_bool] = ACTIONS(679), + [anon_sym_str] = ACTIONS(679), + [anon_sym_char] = ACTIONS(679), + [anon_sym_DASH] = ACTIONS(691), + [anon_sym_SLASH] = ACTIONS(691), + [anon_sym_PERCENT] = ACTIONS(691), + [anon_sym_CARET] = ACTIONS(691), + [anon_sym_BANG] = ACTIONS(691), + [anon_sym_AMP] = ACTIONS(691), + [anon_sym_PIPE] = ACTIONS(691), + [anon_sym_AMP_AMP] = ACTIONS(681), + [anon_sym_PIPE_PIPE] = ACTIONS(681), + [anon_sym_LT_LT] = ACTIONS(691), + [anon_sym_GT_GT] = ACTIONS(691), + [anon_sym_PLUS_EQ] = ACTIONS(681), + [anon_sym_DASH_EQ] = ACTIONS(681), + [anon_sym_STAR_EQ] = ACTIONS(681), + [anon_sym_SLASH_EQ] = ACTIONS(681), + [anon_sym_PERCENT_EQ] = ACTIONS(681), + [anon_sym_CARET_EQ] = ACTIONS(681), + [anon_sym_AMP_EQ] = ACTIONS(681), + [anon_sym_PIPE_EQ] = ACTIONS(681), + [anon_sym_LT_LT_EQ] = ACTIONS(681), + [anon_sym_GT_GT_EQ] = ACTIONS(681), + [anon_sym_EQ] = ACTIONS(691), + [anon_sym_EQ_EQ] = ACTIONS(681), + [anon_sym_BANG_EQ] = ACTIONS(681), + [anon_sym_GT] = ACTIONS(691), + [anon_sym_LT] = ACTIONS(691), + [anon_sym_GT_EQ] = ACTIONS(681), + [anon_sym_LT_EQ] = ACTIONS(681), + [anon_sym_AT] = ACTIONS(681), + [anon_sym__] = ACTIONS(691), + [anon_sym_DOT] = ACTIONS(691), + [anon_sym_DOT_DOT] = ACTIONS(691), + [anon_sym_DOT_DOT_DOT] = ACTIONS(681), + [anon_sym_DOT_DOT_EQ] = ACTIONS(681), + [anon_sym_COMMA] = ACTIONS(681), + [anon_sym_COLON_COLON] = ACTIONS(681), + [anon_sym_DASH_GT] = ACTIONS(681), + [anon_sym_POUND] = ACTIONS(681), + [anon_sym_SQUOTE] = ACTIONS(679), + [anon_sym_as] = ACTIONS(679), + [anon_sym_async] = ACTIONS(679), + [anon_sym_await] = ACTIONS(679), + [anon_sym_break] = ACTIONS(679), + [anon_sym_const] = ACTIONS(679), + [anon_sym_continue] = ACTIONS(679), + [anon_sym_default] = ACTIONS(679), + [anon_sym_enum] = ACTIONS(679), + [anon_sym_fn] = ACTIONS(679), + [anon_sym_for] = ACTIONS(679), + [anon_sym_gen] = ACTIONS(679), + [anon_sym_if] = ACTIONS(679), + [anon_sym_impl] = ACTIONS(679), + [anon_sym_let] = ACTIONS(679), + [anon_sym_loop] = ACTIONS(679), + [anon_sym_match] = ACTIONS(679), + [anon_sym_mod] = ACTIONS(679), + [anon_sym_pub] = ACTIONS(679), + [anon_sym_return] = ACTIONS(679), + [anon_sym_static] = ACTIONS(679), + [anon_sym_struct] = ACTIONS(679), + [anon_sym_trait] = ACTIONS(679), + [anon_sym_type] = ACTIONS(679), + [anon_sym_union] = ACTIONS(679), + [anon_sym_unsafe] = ACTIONS(679), + [anon_sym_use] = ACTIONS(679), + [anon_sym_where] = ACTIONS(679), + [anon_sym_while] = ACTIONS(679), + [sym_mutable_specifier] = ACTIONS(679), + [sym_integer_literal] = ACTIONS(695), + [aux_sym_string_literal_token1] = ACTIONS(697), + [sym_char_literal] = ACTIONS(695), + [anon_sym_true] = ACTIONS(699), + [anon_sym_false] = ACTIONS(699), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(679), + [sym_super] = ACTIONS(679), + [sym_crate] = ACTIONS(679), + [sym__raw_string_literal_start] = ACTIONS(701), + [sym_float_literal] = ACTIONS(695), }, [STATE(129)] = { - [sym_delim_token_tree] = STATE(207), - [sym__delim_tokens] = STATE(208), - [sym__non_delim_token] = STATE(207), - [sym__literal] = STATE(206), - [sym_string_literal] = STATE(212), - [sym_raw_string_literal] = STATE(212), - [sym_boolean_literal] = STATE(212), + [sym_delim_token_tree] = STATE(208), + [sym__delim_tokens] = STATE(209), + [sym__non_delim_token] = STATE(208), + [sym__literal] = STATE(204), + [sym_string_literal] = STATE(201), + [sym_raw_string_literal] = STATE(201), + [sym_boolean_literal] = STATE(201), [sym_line_comment] = STATE(129), [sym_block_comment] = STATE(129), - [aux_sym__non_special_token_repeat1] = STATE(181), - [aux_sym_delim_token_tree_repeat1] = STATE(68), - [sym_identifier] = ACTIONS(674), - [anon_sym_SEMI] = ACTIONS(676), - [anon_sym_LPAREN] = ACTIONS(678), - [anon_sym_RPAREN] = ACTIONS(742), - [anon_sym_LBRACK] = ACTIONS(680), - [anon_sym_LBRACE] = ACTIONS(682), - [anon_sym_EQ_GT] = ACTIONS(676), - [anon_sym_COLON] = ACTIONS(686), - [anon_sym_DOLLAR] = ACTIONS(688), - [anon_sym_PLUS] = ACTIONS(686), - [anon_sym_STAR] = ACTIONS(686), - [anon_sym_QMARK] = ACTIONS(676), - [anon_sym_u8] = ACTIONS(674), - [anon_sym_i8] = ACTIONS(674), - [anon_sym_u16] = ACTIONS(674), - [anon_sym_i16] = ACTIONS(674), - [anon_sym_u32] = ACTIONS(674), - [anon_sym_i32] = ACTIONS(674), - [anon_sym_u64] = ACTIONS(674), - [anon_sym_i64] = ACTIONS(674), - [anon_sym_u128] = ACTIONS(674), - [anon_sym_i128] = ACTIONS(674), - [anon_sym_isize] = ACTIONS(674), - [anon_sym_usize] = ACTIONS(674), - [anon_sym_f32] = ACTIONS(674), - [anon_sym_f64] = ACTIONS(674), - [anon_sym_bool] = ACTIONS(674), - [anon_sym_str] = ACTIONS(674), - [anon_sym_char] = ACTIONS(674), - [anon_sym_DASH] = ACTIONS(686), - [anon_sym_SLASH] = ACTIONS(686), - [anon_sym_PERCENT] = ACTIONS(686), - [anon_sym_CARET] = ACTIONS(686), - [anon_sym_BANG] = ACTIONS(686), - [anon_sym_AMP] = ACTIONS(686), - [anon_sym_PIPE] = ACTIONS(686), - [anon_sym_AMP_AMP] = ACTIONS(676), - [anon_sym_PIPE_PIPE] = ACTIONS(676), - [anon_sym_LT_LT] = ACTIONS(686), - [anon_sym_GT_GT] = ACTIONS(686), - [anon_sym_PLUS_EQ] = ACTIONS(676), - [anon_sym_DASH_EQ] = ACTIONS(676), - [anon_sym_STAR_EQ] = ACTIONS(676), - [anon_sym_SLASH_EQ] = ACTIONS(676), - [anon_sym_PERCENT_EQ] = ACTIONS(676), - [anon_sym_CARET_EQ] = ACTIONS(676), - [anon_sym_AMP_EQ] = ACTIONS(676), - [anon_sym_PIPE_EQ] = ACTIONS(676), - [anon_sym_LT_LT_EQ] = ACTIONS(676), - [anon_sym_GT_GT_EQ] = ACTIONS(676), - [anon_sym_EQ] = ACTIONS(686), - [anon_sym_EQ_EQ] = ACTIONS(676), - [anon_sym_BANG_EQ] = ACTIONS(676), - [anon_sym_GT] = ACTIONS(686), - [anon_sym_LT] = ACTIONS(686), - [anon_sym_GT_EQ] = ACTIONS(676), - [anon_sym_LT_EQ] = ACTIONS(676), - [anon_sym_AT] = ACTIONS(676), - [anon_sym__] = ACTIONS(686), - [anon_sym_DOT] = ACTIONS(686), - [anon_sym_DOT_DOT] = ACTIONS(686), - [anon_sym_DOT_DOT_DOT] = ACTIONS(676), - [anon_sym_DOT_DOT_EQ] = ACTIONS(676), - [anon_sym_COMMA] = ACTIONS(676), - [anon_sym_COLON_COLON] = ACTIONS(676), - [anon_sym_DASH_GT] = ACTIONS(676), - [anon_sym_POUND] = ACTIONS(676), - [anon_sym_SQUOTE] = ACTIONS(674), - [anon_sym_as] = ACTIONS(674), - [anon_sym_async] = ACTIONS(674), - [anon_sym_await] = ACTIONS(674), - [anon_sym_break] = ACTIONS(674), - [anon_sym_const] = ACTIONS(674), - [anon_sym_continue] = ACTIONS(674), - [anon_sym_default] = ACTIONS(674), - [anon_sym_enum] = ACTIONS(674), - [anon_sym_fn] = ACTIONS(674), - [anon_sym_for] = ACTIONS(674), - [anon_sym_gen] = ACTIONS(674), - [anon_sym_if] = ACTIONS(674), - [anon_sym_impl] = ACTIONS(674), - [anon_sym_let] = ACTIONS(674), - [anon_sym_loop] = ACTIONS(674), - [anon_sym_match] = ACTIONS(674), - [anon_sym_mod] = ACTIONS(674), - [anon_sym_pub] = ACTIONS(674), - [anon_sym_return] = ACTIONS(674), - [anon_sym_static] = ACTIONS(674), - [anon_sym_struct] = ACTIONS(674), - [anon_sym_trait] = ACTIONS(674), - [anon_sym_type] = ACTIONS(674), - [anon_sym_union] = ACTIONS(674), - [anon_sym_unsafe] = ACTIONS(674), - [anon_sym_use] = ACTIONS(674), - [anon_sym_where] = ACTIONS(674), - [anon_sym_while] = ACTIONS(674), - [sym_mutable_specifier] = ACTIONS(674), - [sym_integer_literal] = ACTIONS(690), - [aux_sym_string_literal_token1] = ACTIONS(692), - [sym_char_literal] = ACTIONS(690), - [anon_sym_true] = ACTIONS(694), - [anon_sym_false] = ACTIONS(694), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(674), - [sym_super] = ACTIONS(674), - [sym_crate] = ACTIONS(674), - [sym__raw_string_literal_start] = ACTIONS(696), - [sym_float_literal] = ACTIONS(690), + [aux_sym__non_special_token_repeat1] = STATE(180), + [aux_sym_delim_token_tree_repeat1] = STATE(72), + [sym_identifier] = ACTIONS(679), + [anon_sym_SEMI] = ACTIONS(681), + [anon_sym_LPAREN] = ACTIONS(683), + [anon_sym_LBRACK] = ACTIONS(685), + [anon_sym_RBRACK] = ACTIONS(745), + [anon_sym_LBRACE] = ACTIONS(689), + [anon_sym_EQ_GT] = ACTIONS(681), + [anon_sym_COLON] = ACTIONS(691), + [anon_sym_DOLLAR] = ACTIONS(693), + [anon_sym_PLUS] = ACTIONS(691), + [anon_sym_STAR] = ACTIONS(691), + [anon_sym_QMARK] = ACTIONS(681), + [anon_sym_u8] = ACTIONS(679), + [anon_sym_i8] = ACTIONS(679), + [anon_sym_u16] = ACTIONS(679), + [anon_sym_i16] = ACTIONS(679), + [anon_sym_u32] = ACTIONS(679), + [anon_sym_i32] = ACTIONS(679), + [anon_sym_u64] = ACTIONS(679), + [anon_sym_i64] = ACTIONS(679), + [anon_sym_u128] = ACTIONS(679), + [anon_sym_i128] = ACTIONS(679), + [anon_sym_isize] = ACTIONS(679), + [anon_sym_usize] = ACTIONS(679), + [anon_sym_f32] = ACTIONS(679), + [anon_sym_f64] = ACTIONS(679), + [anon_sym_bool] = ACTIONS(679), + [anon_sym_str] = ACTIONS(679), + [anon_sym_char] = ACTIONS(679), + [anon_sym_DASH] = ACTIONS(691), + [anon_sym_SLASH] = ACTIONS(691), + [anon_sym_PERCENT] = ACTIONS(691), + [anon_sym_CARET] = ACTIONS(691), + [anon_sym_BANG] = ACTIONS(691), + [anon_sym_AMP] = ACTIONS(691), + [anon_sym_PIPE] = ACTIONS(691), + [anon_sym_AMP_AMP] = ACTIONS(681), + [anon_sym_PIPE_PIPE] = ACTIONS(681), + [anon_sym_LT_LT] = ACTIONS(691), + [anon_sym_GT_GT] = ACTIONS(691), + [anon_sym_PLUS_EQ] = ACTIONS(681), + [anon_sym_DASH_EQ] = ACTIONS(681), + [anon_sym_STAR_EQ] = ACTIONS(681), + [anon_sym_SLASH_EQ] = ACTIONS(681), + [anon_sym_PERCENT_EQ] = ACTIONS(681), + [anon_sym_CARET_EQ] = ACTIONS(681), + [anon_sym_AMP_EQ] = ACTIONS(681), + [anon_sym_PIPE_EQ] = ACTIONS(681), + [anon_sym_LT_LT_EQ] = ACTIONS(681), + [anon_sym_GT_GT_EQ] = ACTIONS(681), + [anon_sym_EQ] = ACTIONS(691), + [anon_sym_EQ_EQ] = ACTIONS(681), + [anon_sym_BANG_EQ] = ACTIONS(681), + [anon_sym_GT] = ACTIONS(691), + [anon_sym_LT] = ACTIONS(691), + [anon_sym_GT_EQ] = ACTIONS(681), + [anon_sym_LT_EQ] = ACTIONS(681), + [anon_sym_AT] = ACTIONS(681), + [anon_sym__] = ACTIONS(691), + [anon_sym_DOT] = ACTIONS(691), + [anon_sym_DOT_DOT] = ACTIONS(691), + [anon_sym_DOT_DOT_DOT] = ACTIONS(681), + [anon_sym_DOT_DOT_EQ] = ACTIONS(681), + [anon_sym_COMMA] = ACTIONS(681), + [anon_sym_COLON_COLON] = ACTIONS(681), + [anon_sym_DASH_GT] = ACTIONS(681), + [anon_sym_POUND] = ACTIONS(681), + [anon_sym_SQUOTE] = ACTIONS(679), + [anon_sym_as] = ACTIONS(679), + [anon_sym_async] = ACTIONS(679), + [anon_sym_await] = ACTIONS(679), + [anon_sym_break] = ACTIONS(679), + [anon_sym_const] = ACTIONS(679), + [anon_sym_continue] = ACTIONS(679), + [anon_sym_default] = ACTIONS(679), + [anon_sym_enum] = ACTIONS(679), + [anon_sym_fn] = ACTIONS(679), + [anon_sym_for] = ACTIONS(679), + [anon_sym_gen] = ACTIONS(679), + [anon_sym_if] = ACTIONS(679), + [anon_sym_impl] = ACTIONS(679), + [anon_sym_let] = ACTIONS(679), + [anon_sym_loop] = ACTIONS(679), + [anon_sym_match] = ACTIONS(679), + [anon_sym_mod] = ACTIONS(679), + [anon_sym_pub] = ACTIONS(679), + [anon_sym_return] = ACTIONS(679), + [anon_sym_static] = ACTIONS(679), + [anon_sym_struct] = ACTIONS(679), + [anon_sym_trait] = ACTIONS(679), + [anon_sym_type] = ACTIONS(679), + [anon_sym_union] = ACTIONS(679), + [anon_sym_unsafe] = ACTIONS(679), + [anon_sym_use] = ACTIONS(679), + [anon_sym_where] = ACTIONS(679), + [anon_sym_while] = ACTIONS(679), + [sym_mutable_specifier] = ACTIONS(679), + [sym_integer_literal] = ACTIONS(695), + [aux_sym_string_literal_token1] = ACTIONS(697), + [sym_char_literal] = ACTIONS(695), + [anon_sym_true] = ACTIONS(699), + [anon_sym_false] = ACTIONS(699), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(679), + [sym_super] = ACTIONS(679), + [sym_crate] = ACTIONS(679), + [sym__raw_string_literal_start] = ACTIONS(701), + [sym_float_literal] = ACTIONS(695), }, [STATE(130)] = { - [sym_delim_token_tree] = STATE(207), - [sym__delim_tokens] = STATE(208), - [sym__non_delim_token] = STATE(207), - [sym__literal] = STATE(206), - [sym_string_literal] = STATE(212), - [sym_raw_string_literal] = STATE(212), - [sym_boolean_literal] = STATE(212), + [sym_delim_token_tree] = STATE(208), + [sym__delim_tokens] = STATE(209), + [sym__non_delim_token] = STATE(208), + [sym__literal] = STATE(204), + [sym_string_literal] = STATE(201), + [sym_raw_string_literal] = STATE(201), + [sym_boolean_literal] = STATE(201), [sym_line_comment] = STATE(130), [sym_block_comment] = STATE(130), - [aux_sym__non_special_token_repeat1] = STATE(181), - [aux_sym_delim_token_tree_repeat1] = STATE(68), - [sym_identifier] = ACTIONS(674), - [anon_sym_SEMI] = ACTIONS(676), - [anon_sym_LPAREN] = ACTIONS(678), - [anon_sym_LBRACK] = ACTIONS(680), - [anon_sym_RBRACK] = ACTIONS(742), - [anon_sym_LBRACE] = ACTIONS(682), - [anon_sym_EQ_GT] = ACTIONS(676), - [anon_sym_COLON] = ACTIONS(686), - [anon_sym_DOLLAR] = ACTIONS(688), - [anon_sym_PLUS] = ACTIONS(686), - [anon_sym_STAR] = ACTIONS(686), - [anon_sym_QMARK] = ACTIONS(676), - [anon_sym_u8] = ACTIONS(674), - [anon_sym_i8] = ACTIONS(674), - [anon_sym_u16] = ACTIONS(674), - [anon_sym_i16] = ACTIONS(674), - [anon_sym_u32] = ACTIONS(674), - [anon_sym_i32] = ACTIONS(674), - [anon_sym_u64] = ACTIONS(674), - [anon_sym_i64] = ACTIONS(674), - [anon_sym_u128] = ACTIONS(674), - [anon_sym_i128] = ACTIONS(674), - [anon_sym_isize] = ACTIONS(674), - [anon_sym_usize] = ACTIONS(674), - [anon_sym_f32] = ACTIONS(674), - [anon_sym_f64] = ACTIONS(674), - [anon_sym_bool] = ACTIONS(674), - [anon_sym_str] = ACTIONS(674), - [anon_sym_char] = ACTIONS(674), - [anon_sym_DASH] = ACTIONS(686), - [anon_sym_SLASH] = ACTIONS(686), - [anon_sym_PERCENT] = ACTIONS(686), - [anon_sym_CARET] = ACTIONS(686), - [anon_sym_BANG] = ACTIONS(686), - [anon_sym_AMP] = ACTIONS(686), - [anon_sym_PIPE] = ACTIONS(686), - [anon_sym_AMP_AMP] = ACTIONS(676), - [anon_sym_PIPE_PIPE] = ACTIONS(676), - [anon_sym_LT_LT] = ACTIONS(686), - [anon_sym_GT_GT] = ACTIONS(686), - [anon_sym_PLUS_EQ] = ACTIONS(676), - [anon_sym_DASH_EQ] = ACTIONS(676), - [anon_sym_STAR_EQ] = ACTIONS(676), - [anon_sym_SLASH_EQ] = ACTIONS(676), - [anon_sym_PERCENT_EQ] = ACTIONS(676), - [anon_sym_CARET_EQ] = ACTIONS(676), - [anon_sym_AMP_EQ] = ACTIONS(676), - [anon_sym_PIPE_EQ] = ACTIONS(676), - [anon_sym_LT_LT_EQ] = ACTIONS(676), - [anon_sym_GT_GT_EQ] = ACTIONS(676), - [anon_sym_EQ] = ACTIONS(686), - [anon_sym_EQ_EQ] = ACTIONS(676), - [anon_sym_BANG_EQ] = ACTIONS(676), - [anon_sym_GT] = ACTIONS(686), - [anon_sym_LT] = ACTIONS(686), - [anon_sym_GT_EQ] = ACTIONS(676), - [anon_sym_LT_EQ] = ACTIONS(676), - [anon_sym_AT] = ACTIONS(676), - [anon_sym__] = ACTIONS(686), - [anon_sym_DOT] = ACTIONS(686), - [anon_sym_DOT_DOT] = ACTIONS(686), - [anon_sym_DOT_DOT_DOT] = ACTIONS(676), - [anon_sym_DOT_DOT_EQ] = ACTIONS(676), - [anon_sym_COMMA] = ACTIONS(676), - [anon_sym_COLON_COLON] = ACTIONS(676), - [anon_sym_DASH_GT] = ACTIONS(676), - [anon_sym_POUND] = ACTIONS(676), - [anon_sym_SQUOTE] = ACTIONS(674), - [anon_sym_as] = ACTIONS(674), - [anon_sym_async] = ACTIONS(674), - [anon_sym_await] = ACTIONS(674), - [anon_sym_break] = ACTIONS(674), - [anon_sym_const] = ACTIONS(674), - [anon_sym_continue] = ACTIONS(674), - [anon_sym_default] = ACTIONS(674), - [anon_sym_enum] = ACTIONS(674), - [anon_sym_fn] = ACTIONS(674), - [anon_sym_for] = ACTIONS(674), - [anon_sym_gen] = ACTIONS(674), - [anon_sym_if] = ACTIONS(674), - [anon_sym_impl] = ACTIONS(674), - [anon_sym_let] = ACTIONS(674), - [anon_sym_loop] = ACTIONS(674), - [anon_sym_match] = ACTIONS(674), - [anon_sym_mod] = ACTIONS(674), - [anon_sym_pub] = ACTIONS(674), - [anon_sym_return] = ACTIONS(674), - [anon_sym_static] = ACTIONS(674), - [anon_sym_struct] = ACTIONS(674), - [anon_sym_trait] = ACTIONS(674), - [anon_sym_type] = ACTIONS(674), - [anon_sym_union] = ACTIONS(674), - [anon_sym_unsafe] = ACTIONS(674), - [anon_sym_use] = ACTIONS(674), - [anon_sym_where] = ACTIONS(674), - [anon_sym_while] = ACTIONS(674), - [sym_mutable_specifier] = ACTIONS(674), - [sym_integer_literal] = ACTIONS(690), - [aux_sym_string_literal_token1] = ACTIONS(692), - [sym_char_literal] = ACTIONS(690), - [anon_sym_true] = ACTIONS(694), - [anon_sym_false] = ACTIONS(694), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(674), - [sym_super] = ACTIONS(674), - [sym_crate] = ACTIONS(674), - [sym__raw_string_literal_start] = ACTIONS(696), - [sym_float_literal] = ACTIONS(690), + [aux_sym__non_special_token_repeat1] = STATE(180), + [aux_sym_delim_token_tree_repeat1] = STATE(72), + [sym_identifier] = ACTIONS(679), + [anon_sym_SEMI] = ACTIONS(681), + [anon_sym_LPAREN] = ACTIONS(683), + [anon_sym_LBRACK] = ACTIONS(685), + [anon_sym_LBRACE] = ACTIONS(689), + [anon_sym_RBRACE] = ACTIONS(745), + [anon_sym_EQ_GT] = ACTIONS(681), + [anon_sym_COLON] = ACTIONS(691), + [anon_sym_DOLLAR] = ACTIONS(693), + [anon_sym_PLUS] = ACTIONS(691), + [anon_sym_STAR] = ACTIONS(691), + [anon_sym_QMARK] = ACTIONS(681), + [anon_sym_u8] = ACTIONS(679), + [anon_sym_i8] = ACTIONS(679), + [anon_sym_u16] = ACTIONS(679), + [anon_sym_i16] = ACTIONS(679), + [anon_sym_u32] = ACTIONS(679), + [anon_sym_i32] = ACTIONS(679), + [anon_sym_u64] = ACTIONS(679), + [anon_sym_i64] = ACTIONS(679), + [anon_sym_u128] = ACTIONS(679), + [anon_sym_i128] = ACTIONS(679), + [anon_sym_isize] = ACTIONS(679), + [anon_sym_usize] = ACTIONS(679), + [anon_sym_f32] = ACTIONS(679), + [anon_sym_f64] = ACTIONS(679), + [anon_sym_bool] = ACTIONS(679), + [anon_sym_str] = ACTIONS(679), + [anon_sym_char] = ACTIONS(679), + [anon_sym_DASH] = ACTIONS(691), + [anon_sym_SLASH] = ACTIONS(691), + [anon_sym_PERCENT] = ACTIONS(691), + [anon_sym_CARET] = ACTIONS(691), + [anon_sym_BANG] = ACTIONS(691), + [anon_sym_AMP] = ACTIONS(691), + [anon_sym_PIPE] = ACTIONS(691), + [anon_sym_AMP_AMP] = ACTIONS(681), + [anon_sym_PIPE_PIPE] = ACTIONS(681), + [anon_sym_LT_LT] = ACTIONS(691), + [anon_sym_GT_GT] = ACTIONS(691), + [anon_sym_PLUS_EQ] = ACTIONS(681), + [anon_sym_DASH_EQ] = ACTIONS(681), + [anon_sym_STAR_EQ] = ACTIONS(681), + [anon_sym_SLASH_EQ] = ACTIONS(681), + [anon_sym_PERCENT_EQ] = ACTIONS(681), + [anon_sym_CARET_EQ] = ACTIONS(681), + [anon_sym_AMP_EQ] = ACTIONS(681), + [anon_sym_PIPE_EQ] = ACTIONS(681), + [anon_sym_LT_LT_EQ] = ACTIONS(681), + [anon_sym_GT_GT_EQ] = ACTIONS(681), + [anon_sym_EQ] = ACTIONS(691), + [anon_sym_EQ_EQ] = ACTIONS(681), + [anon_sym_BANG_EQ] = ACTIONS(681), + [anon_sym_GT] = ACTIONS(691), + [anon_sym_LT] = ACTIONS(691), + [anon_sym_GT_EQ] = ACTIONS(681), + [anon_sym_LT_EQ] = ACTIONS(681), + [anon_sym_AT] = ACTIONS(681), + [anon_sym__] = ACTIONS(691), + [anon_sym_DOT] = ACTIONS(691), + [anon_sym_DOT_DOT] = ACTIONS(691), + [anon_sym_DOT_DOT_DOT] = ACTIONS(681), + [anon_sym_DOT_DOT_EQ] = ACTIONS(681), + [anon_sym_COMMA] = ACTIONS(681), + [anon_sym_COLON_COLON] = ACTIONS(681), + [anon_sym_DASH_GT] = ACTIONS(681), + [anon_sym_POUND] = ACTIONS(681), + [anon_sym_SQUOTE] = ACTIONS(679), + [anon_sym_as] = ACTIONS(679), + [anon_sym_async] = ACTIONS(679), + [anon_sym_await] = ACTIONS(679), + [anon_sym_break] = ACTIONS(679), + [anon_sym_const] = ACTIONS(679), + [anon_sym_continue] = ACTIONS(679), + [anon_sym_default] = ACTIONS(679), + [anon_sym_enum] = ACTIONS(679), + [anon_sym_fn] = ACTIONS(679), + [anon_sym_for] = ACTIONS(679), + [anon_sym_gen] = ACTIONS(679), + [anon_sym_if] = ACTIONS(679), + [anon_sym_impl] = ACTIONS(679), + [anon_sym_let] = ACTIONS(679), + [anon_sym_loop] = ACTIONS(679), + [anon_sym_match] = ACTIONS(679), + [anon_sym_mod] = ACTIONS(679), + [anon_sym_pub] = ACTIONS(679), + [anon_sym_return] = ACTIONS(679), + [anon_sym_static] = ACTIONS(679), + [anon_sym_struct] = ACTIONS(679), + [anon_sym_trait] = ACTIONS(679), + [anon_sym_type] = ACTIONS(679), + [anon_sym_union] = ACTIONS(679), + [anon_sym_unsafe] = ACTIONS(679), + [anon_sym_use] = ACTIONS(679), + [anon_sym_where] = ACTIONS(679), + [anon_sym_while] = ACTIONS(679), + [sym_mutable_specifier] = ACTIONS(679), + [sym_integer_literal] = ACTIONS(695), + [aux_sym_string_literal_token1] = ACTIONS(697), + [sym_char_literal] = ACTIONS(695), + [anon_sym_true] = ACTIONS(699), + [anon_sym_false] = ACTIONS(699), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(679), + [sym_super] = ACTIONS(679), + [sym_crate] = ACTIONS(679), + [sym__raw_string_literal_start] = ACTIONS(701), + [sym_float_literal] = ACTIONS(695), }, [STATE(131)] = { - [sym_delim_token_tree] = STATE(207), - [sym__delim_tokens] = STATE(208), - [sym__non_delim_token] = STATE(207), - [sym__literal] = STATE(206), - [sym_string_literal] = STATE(212), - [sym_raw_string_literal] = STATE(212), - [sym_boolean_literal] = STATE(212), + [sym_delim_token_tree] = STATE(208), + [sym__delim_tokens] = STATE(209), + [sym__non_delim_token] = STATE(208), + [sym__literal] = STATE(204), + [sym_string_literal] = STATE(201), + [sym_raw_string_literal] = STATE(201), + [sym_boolean_literal] = STATE(201), [sym_line_comment] = STATE(131), [sym_block_comment] = STATE(131), - [aux_sym__non_special_token_repeat1] = STATE(181), - [aux_sym_delim_token_tree_repeat1] = STATE(68), - [sym_identifier] = ACTIONS(674), - [anon_sym_SEMI] = ACTIONS(676), - [anon_sym_LPAREN] = ACTIONS(678), - [anon_sym_LBRACK] = ACTIONS(680), - [anon_sym_LBRACE] = ACTIONS(682), - [anon_sym_RBRACE] = ACTIONS(742), - [anon_sym_EQ_GT] = ACTIONS(676), - [anon_sym_COLON] = ACTIONS(686), - [anon_sym_DOLLAR] = ACTIONS(688), - [anon_sym_PLUS] = ACTIONS(686), - [anon_sym_STAR] = ACTIONS(686), - [anon_sym_QMARK] = ACTIONS(676), - [anon_sym_u8] = ACTIONS(674), - [anon_sym_i8] = ACTIONS(674), - [anon_sym_u16] = ACTIONS(674), - [anon_sym_i16] = ACTIONS(674), - [anon_sym_u32] = ACTIONS(674), - [anon_sym_i32] = ACTIONS(674), - [anon_sym_u64] = ACTIONS(674), - [anon_sym_i64] = ACTIONS(674), - [anon_sym_u128] = ACTIONS(674), - [anon_sym_i128] = ACTIONS(674), - [anon_sym_isize] = ACTIONS(674), - [anon_sym_usize] = ACTIONS(674), - [anon_sym_f32] = ACTIONS(674), - [anon_sym_f64] = ACTIONS(674), - [anon_sym_bool] = ACTIONS(674), - [anon_sym_str] = ACTIONS(674), - [anon_sym_char] = ACTIONS(674), - [anon_sym_DASH] = ACTIONS(686), - [anon_sym_SLASH] = ACTIONS(686), - [anon_sym_PERCENT] = ACTIONS(686), - [anon_sym_CARET] = ACTIONS(686), - [anon_sym_BANG] = ACTIONS(686), - [anon_sym_AMP] = ACTIONS(686), - [anon_sym_PIPE] = ACTIONS(686), - [anon_sym_AMP_AMP] = ACTIONS(676), - [anon_sym_PIPE_PIPE] = ACTIONS(676), - [anon_sym_LT_LT] = ACTIONS(686), - [anon_sym_GT_GT] = ACTIONS(686), - [anon_sym_PLUS_EQ] = ACTIONS(676), - [anon_sym_DASH_EQ] = ACTIONS(676), - [anon_sym_STAR_EQ] = ACTIONS(676), - [anon_sym_SLASH_EQ] = ACTIONS(676), - [anon_sym_PERCENT_EQ] = ACTIONS(676), - [anon_sym_CARET_EQ] = ACTIONS(676), - [anon_sym_AMP_EQ] = ACTIONS(676), - [anon_sym_PIPE_EQ] = ACTIONS(676), - [anon_sym_LT_LT_EQ] = ACTIONS(676), - [anon_sym_GT_GT_EQ] = ACTIONS(676), - [anon_sym_EQ] = ACTIONS(686), - [anon_sym_EQ_EQ] = ACTIONS(676), - [anon_sym_BANG_EQ] = ACTIONS(676), - [anon_sym_GT] = ACTIONS(686), - [anon_sym_LT] = ACTIONS(686), - [anon_sym_GT_EQ] = ACTIONS(676), - [anon_sym_LT_EQ] = ACTIONS(676), - [anon_sym_AT] = ACTIONS(676), - [anon_sym__] = ACTIONS(686), - [anon_sym_DOT] = ACTIONS(686), - [anon_sym_DOT_DOT] = ACTIONS(686), - [anon_sym_DOT_DOT_DOT] = ACTIONS(676), - [anon_sym_DOT_DOT_EQ] = ACTIONS(676), - [anon_sym_COMMA] = ACTIONS(676), - [anon_sym_COLON_COLON] = ACTIONS(676), - [anon_sym_DASH_GT] = ACTIONS(676), - [anon_sym_POUND] = ACTIONS(676), - [anon_sym_SQUOTE] = ACTIONS(674), - [anon_sym_as] = ACTIONS(674), - [anon_sym_async] = ACTIONS(674), - [anon_sym_await] = ACTIONS(674), - [anon_sym_break] = ACTIONS(674), - [anon_sym_const] = ACTIONS(674), - [anon_sym_continue] = ACTIONS(674), - [anon_sym_default] = ACTIONS(674), - [anon_sym_enum] = ACTIONS(674), - [anon_sym_fn] = ACTIONS(674), - [anon_sym_for] = ACTIONS(674), - [anon_sym_gen] = ACTIONS(674), - [anon_sym_if] = ACTIONS(674), - [anon_sym_impl] = ACTIONS(674), - [anon_sym_let] = ACTIONS(674), - [anon_sym_loop] = ACTIONS(674), - [anon_sym_match] = ACTIONS(674), - [anon_sym_mod] = ACTIONS(674), - [anon_sym_pub] = ACTIONS(674), - [anon_sym_return] = ACTIONS(674), - [anon_sym_static] = ACTIONS(674), - [anon_sym_struct] = ACTIONS(674), - [anon_sym_trait] = ACTIONS(674), - [anon_sym_type] = ACTIONS(674), - [anon_sym_union] = ACTIONS(674), - [anon_sym_unsafe] = ACTIONS(674), - [anon_sym_use] = ACTIONS(674), - [anon_sym_where] = ACTIONS(674), - [anon_sym_while] = ACTIONS(674), - [sym_mutable_specifier] = ACTIONS(674), - [sym_integer_literal] = ACTIONS(690), - [aux_sym_string_literal_token1] = ACTIONS(692), - [sym_char_literal] = ACTIONS(690), - [anon_sym_true] = ACTIONS(694), - [anon_sym_false] = ACTIONS(694), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(674), - [sym_super] = ACTIONS(674), - [sym_crate] = ACTIONS(674), - [sym__raw_string_literal_start] = ACTIONS(696), - [sym_float_literal] = ACTIONS(690), + [aux_sym__non_special_token_repeat1] = STATE(180), + [aux_sym_delim_token_tree_repeat1] = STATE(72), + [sym_identifier] = ACTIONS(679), + [anon_sym_SEMI] = ACTIONS(681), + [anon_sym_LPAREN] = ACTIONS(683), + [anon_sym_LBRACK] = ACTIONS(685), + [anon_sym_RBRACK] = ACTIONS(743), + [anon_sym_LBRACE] = ACTIONS(689), + [anon_sym_EQ_GT] = ACTIONS(681), + [anon_sym_COLON] = ACTIONS(691), + [anon_sym_DOLLAR] = ACTIONS(693), + [anon_sym_PLUS] = ACTIONS(691), + [anon_sym_STAR] = ACTIONS(691), + [anon_sym_QMARK] = ACTIONS(681), + [anon_sym_u8] = ACTIONS(679), + [anon_sym_i8] = ACTIONS(679), + [anon_sym_u16] = ACTIONS(679), + [anon_sym_i16] = ACTIONS(679), + [anon_sym_u32] = ACTIONS(679), + [anon_sym_i32] = ACTIONS(679), + [anon_sym_u64] = ACTIONS(679), + [anon_sym_i64] = ACTIONS(679), + [anon_sym_u128] = ACTIONS(679), + [anon_sym_i128] = ACTIONS(679), + [anon_sym_isize] = ACTIONS(679), + [anon_sym_usize] = ACTIONS(679), + [anon_sym_f32] = ACTIONS(679), + [anon_sym_f64] = ACTIONS(679), + [anon_sym_bool] = ACTIONS(679), + [anon_sym_str] = ACTIONS(679), + [anon_sym_char] = ACTIONS(679), + [anon_sym_DASH] = ACTIONS(691), + [anon_sym_SLASH] = ACTIONS(691), + [anon_sym_PERCENT] = ACTIONS(691), + [anon_sym_CARET] = ACTIONS(691), + [anon_sym_BANG] = ACTIONS(691), + [anon_sym_AMP] = ACTIONS(691), + [anon_sym_PIPE] = ACTIONS(691), + [anon_sym_AMP_AMP] = ACTIONS(681), + [anon_sym_PIPE_PIPE] = ACTIONS(681), + [anon_sym_LT_LT] = ACTIONS(691), + [anon_sym_GT_GT] = ACTIONS(691), + [anon_sym_PLUS_EQ] = ACTIONS(681), + [anon_sym_DASH_EQ] = ACTIONS(681), + [anon_sym_STAR_EQ] = ACTIONS(681), + [anon_sym_SLASH_EQ] = ACTIONS(681), + [anon_sym_PERCENT_EQ] = ACTIONS(681), + [anon_sym_CARET_EQ] = ACTIONS(681), + [anon_sym_AMP_EQ] = ACTIONS(681), + [anon_sym_PIPE_EQ] = ACTIONS(681), + [anon_sym_LT_LT_EQ] = ACTIONS(681), + [anon_sym_GT_GT_EQ] = ACTIONS(681), + [anon_sym_EQ] = ACTIONS(691), + [anon_sym_EQ_EQ] = ACTIONS(681), + [anon_sym_BANG_EQ] = ACTIONS(681), + [anon_sym_GT] = ACTIONS(691), + [anon_sym_LT] = ACTIONS(691), + [anon_sym_GT_EQ] = ACTIONS(681), + [anon_sym_LT_EQ] = ACTIONS(681), + [anon_sym_AT] = ACTIONS(681), + [anon_sym__] = ACTIONS(691), + [anon_sym_DOT] = ACTIONS(691), + [anon_sym_DOT_DOT] = ACTIONS(691), + [anon_sym_DOT_DOT_DOT] = ACTIONS(681), + [anon_sym_DOT_DOT_EQ] = ACTIONS(681), + [anon_sym_COMMA] = ACTIONS(681), + [anon_sym_COLON_COLON] = ACTIONS(681), + [anon_sym_DASH_GT] = ACTIONS(681), + [anon_sym_POUND] = ACTIONS(681), + [anon_sym_SQUOTE] = ACTIONS(679), + [anon_sym_as] = ACTIONS(679), + [anon_sym_async] = ACTIONS(679), + [anon_sym_await] = ACTIONS(679), + [anon_sym_break] = ACTIONS(679), + [anon_sym_const] = ACTIONS(679), + [anon_sym_continue] = ACTIONS(679), + [anon_sym_default] = ACTIONS(679), + [anon_sym_enum] = ACTIONS(679), + [anon_sym_fn] = ACTIONS(679), + [anon_sym_for] = ACTIONS(679), + [anon_sym_gen] = ACTIONS(679), + [anon_sym_if] = ACTIONS(679), + [anon_sym_impl] = ACTIONS(679), + [anon_sym_let] = ACTIONS(679), + [anon_sym_loop] = ACTIONS(679), + [anon_sym_match] = ACTIONS(679), + [anon_sym_mod] = ACTIONS(679), + [anon_sym_pub] = ACTIONS(679), + [anon_sym_return] = ACTIONS(679), + [anon_sym_static] = ACTIONS(679), + [anon_sym_struct] = ACTIONS(679), + [anon_sym_trait] = ACTIONS(679), + [anon_sym_type] = ACTIONS(679), + [anon_sym_union] = ACTIONS(679), + [anon_sym_unsafe] = ACTIONS(679), + [anon_sym_use] = ACTIONS(679), + [anon_sym_where] = ACTIONS(679), + [anon_sym_while] = ACTIONS(679), + [sym_mutable_specifier] = ACTIONS(679), + [sym_integer_literal] = ACTIONS(695), + [aux_sym_string_literal_token1] = ACTIONS(697), + [sym_char_literal] = ACTIONS(695), + [anon_sym_true] = ACTIONS(699), + [anon_sym_false] = ACTIONS(699), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(679), + [sym_super] = ACTIONS(679), + [sym_crate] = ACTIONS(679), + [sym__raw_string_literal_start] = ACTIONS(701), + [sym_float_literal] = ACTIONS(695), }, [STATE(132)] = { - [sym_delim_token_tree] = STATE(207), - [sym__delim_tokens] = STATE(208), - [sym__non_delim_token] = STATE(207), - [sym__literal] = STATE(206), - [sym_string_literal] = STATE(212), - [sym_raw_string_literal] = STATE(212), - [sym_boolean_literal] = STATE(212), + [sym_delim_token_tree] = STATE(208), + [sym__delim_tokens] = STATE(209), + [sym__non_delim_token] = STATE(208), + [sym__literal] = STATE(204), + [sym_string_literal] = STATE(201), + [sym_raw_string_literal] = STATE(201), + [sym_boolean_literal] = STATE(201), [sym_line_comment] = STATE(132), [sym_block_comment] = STATE(132), - [aux_sym__non_special_token_repeat1] = STATE(181), - [aux_sym_delim_token_tree_repeat1] = STATE(68), - [sym_identifier] = ACTIONS(674), - [anon_sym_SEMI] = ACTIONS(676), - [anon_sym_LPAREN] = ACTIONS(678), - [anon_sym_LBRACK] = ACTIONS(680), - [anon_sym_RBRACK] = ACTIONS(698), - [anon_sym_LBRACE] = ACTIONS(682), - [anon_sym_EQ_GT] = ACTIONS(676), - [anon_sym_COLON] = ACTIONS(686), - [anon_sym_DOLLAR] = ACTIONS(688), - [anon_sym_PLUS] = ACTIONS(686), - [anon_sym_STAR] = ACTIONS(686), - [anon_sym_QMARK] = ACTIONS(676), - [anon_sym_u8] = ACTIONS(674), - [anon_sym_i8] = ACTIONS(674), - [anon_sym_u16] = ACTIONS(674), - [anon_sym_i16] = ACTIONS(674), - [anon_sym_u32] = ACTIONS(674), - [anon_sym_i32] = ACTIONS(674), - [anon_sym_u64] = ACTIONS(674), - [anon_sym_i64] = ACTIONS(674), - [anon_sym_u128] = ACTIONS(674), - [anon_sym_i128] = ACTIONS(674), - [anon_sym_isize] = ACTIONS(674), - [anon_sym_usize] = ACTIONS(674), - [anon_sym_f32] = ACTIONS(674), - [anon_sym_f64] = ACTIONS(674), - [anon_sym_bool] = ACTIONS(674), - [anon_sym_str] = ACTIONS(674), - [anon_sym_char] = ACTIONS(674), - [anon_sym_DASH] = ACTIONS(686), - [anon_sym_SLASH] = ACTIONS(686), - [anon_sym_PERCENT] = ACTIONS(686), - [anon_sym_CARET] = ACTIONS(686), - [anon_sym_BANG] = ACTIONS(686), - [anon_sym_AMP] = ACTIONS(686), - [anon_sym_PIPE] = ACTIONS(686), - [anon_sym_AMP_AMP] = ACTIONS(676), - [anon_sym_PIPE_PIPE] = ACTIONS(676), - [anon_sym_LT_LT] = ACTIONS(686), - [anon_sym_GT_GT] = ACTIONS(686), - [anon_sym_PLUS_EQ] = ACTIONS(676), - [anon_sym_DASH_EQ] = ACTIONS(676), - [anon_sym_STAR_EQ] = ACTIONS(676), - [anon_sym_SLASH_EQ] = ACTIONS(676), - [anon_sym_PERCENT_EQ] = ACTIONS(676), - [anon_sym_CARET_EQ] = ACTIONS(676), - [anon_sym_AMP_EQ] = ACTIONS(676), - [anon_sym_PIPE_EQ] = ACTIONS(676), - [anon_sym_LT_LT_EQ] = ACTIONS(676), - [anon_sym_GT_GT_EQ] = ACTIONS(676), - [anon_sym_EQ] = ACTIONS(686), - [anon_sym_EQ_EQ] = ACTIONS(676), - [anon_sym_BANG_EQ] = ACTIONS(676), - [anon_sym_GT] = ACTIONS(686), - [anon_sym_LT] = ACTIONS(686), - [anon_sym_GT_EQ] = ACTIONS(676), - [anon_sym_LT_EQ] = ACTIONS(676), - [anon_sym_AT] = ACTIONS(676), - [anon_sym__] = ACTIONS(686), - [anon_sym_DOT] = ACTIONS(686), - [anon_sym_DOT_DOT] = ACTIONS(686), - [anon_sym_DOT_DOT_DOT] = ACTIONS(676), - [anon_sym_DOT_DOT_EQ] = ACTIONS(676), - [anon_sym_COMMA] = ACTIONS(676), - [anon_sym_COLON_COLON] = ACTIONS(676), - [anon_sym_DASH_GT] = ACTIONS(676), - [anon_sym_POUND] = ACTIONS(676), - [anon_sym_SQUOTE] = ACTIONS(674), - [anon_sym_as] = ACTIONS(674), - [anon_sym_async] = ACTIONS(674), - [anon_sym_await] = ACTIONS(674), - [anon_sym_break] = ACTIONS(674), - [anon_sym_const] = ACTIONS(674), - [anon_sym_continue] = ACTIONS(674), - [anon_sym_default] = ACTIONS(674), - [anon_sym_enum] = ACTIONS(674), - [anon_sym_fn] = ACTIONS(674), - [anon_sym_for] = ACTIONS(674), - [anon_sym_gen] = ACTIONS(674), - [anon_sym_if] = ACTIONS(674), - [anon_sym_impl] = ACTIONS(674), - [anon_sym_let] = ACTIONS(674), - [anon_sym_loop] = ACTIONS(674), - [anon_sym_match] = ACTIONS(674), - [anon_sym_mod] = ACTIONS(674), - [anon_sym_pub] = ACTIONS(674), - [anon_sym_return] = ACTIONS(674), - [anon_sym_static] = ACTIONS(674), - [anon_sym_struct] = ACTIONS(674), - [anon_sym_trait] = ACTIONS(674), - [anon_sym_type] = ACTIONS(674), - [anon_sym_union] = ACTIONS(674), - [anon_sym_unsafe] = ACTIONS(674), - [anon_sym_use] = ACTIONS(674), - [anon_sym_where] = ACTIONS(674), - [anon_sym_while] = ACTIONS(674), - [sym_mutable_specifier] = ACTIONS(674), - [sym_integer_literal] = ACTIONS(690), - [aux_sym_string_literal_token1] = ACTIONS(692), - [sym_char_literal] = ACTIONS(690), - [anon_sym_true] = ACTIONS(694), - [anon_sym_false] = ACTIONS(694), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(674), - [sym_super] = ACTIONS(674), - [sym_crate] = ACTIONS(674), - [sym__raw_string_literal_start] = ACTIONS(696), - [sym_float_literal] = ACTIONS(690), + [aux_sym__non_special_token_repeat1] = STATE(180), + [aux_sym_delim_token_tree_repeat1] = STATE(72), + [sym_identifier] = ACTIONS(679), + [anon_sym_SEMI] = ACTIONS(681), + [anon_sym_LPAREN] = ACTIONS(683), + [anon_sym_LBRACK] = ACTIONS(685), + [anon_sym_LBRACE] = ACTIONS(689), + [anon_sym_RBRACE] = ACTIONS(743), + [anon_sym_EQ_GT] = ACTIONS(681), + [anon_sym_COLON] = ACTIONS(691), + [anon_sym_DOLLAR] = ACTIONS(693), + [anon_sym_PLUS] = ACTIONS(691), + [anon_sym_STAR] = ACTIONS(691), + [anon_sym_QMARK] = ACTIONS(681), + [anon_sym_u8] = ACTIONS(679), + [anon_sym_i8] = ACTIONS(679), + [anon_sym_u16] = ACTIONS(679), + [anon_sym_i16] = ACTIONS(679), + [anon_sym_u32] = ACTIONS(679), + [anon_sym_i32] = ACTIONS(679), + [anon_sym_u64] = ACTIONS(679), + [anon_sym_i64] = ACTIONS(679), + [anon_sym_u128] = ACTIONS(679), + [anon_sym_i128] = ACTIONS(679), + [anon_sym_isize] = ACTIONS(679), + [anon_sym_usize] = ACTIONS(679), + [anon_sym_f32] = ACTIONS(679), + [anon_sym_f64] = ACTIONS(679), + [anon_sym_bool] = ACTIONS(679), + [anon_sym_str] = ACTIONS(679), + [anon_sym_char] = ACTIONS(679), + [anon_sym_DASH] = ACTIONS(691), + [anon_sym_SLASH] = ACTIONS(691), + [anon_sym_PERCENT] = ACTIONS(691), + [anon_sym_CARET] = ACTIONS(691), + [anon_sym_BANG] = ACTIONS(691), + [anon_sym_AMP] = ACTIONS(691), + [anon_sym_PIPE] = ACTIONS(691), + [anon_sym_AMP_AMP] = ACTIONS(681), + [anon_sym_PIPE_PIPE] = ACTIONS(681), + [anon_sym_LT_LT] = ACTIONS(691), + [anon_sym_GT_GT] = ACTIONS(691), + [anon_sym_PLUS_EQ] = ACTIONS(681), + [anon_sym_DASH_EQ] = ACTIONS(681), + [anon_sym_STAR_EQ] = ACTIONS(681), + [anon_sym_SLASH_EQ] = ACTIONS(681), + [anon_sym_PERCENT_EQ] = ACTIONS(681), + [anon_sym_CARET_EQ] = ACTIONS(681), + [anon_sym_AMP_EQ] = ACTIONS(681), + [anon_sym_PIPE_EQ] = ACTIONS(681), + [anon_sym_LT_LT_EQ] = ACTIONS(681), + [anon_sym_GT_GT_EQ] = ACTIONS(681), + [anon_sym_EQ] = ACTIONS(691), + [anon_sym_EQ_EQ] = ACTIONS(681), + [anon_sym_BANG_EQ] = ACTIONS(681), + [anon_sym_GT] = ACTIONS(691), + [anon_sym_LT] = ACTIONS(691), + [anon_sym_GT_EQ] = ACTIONS(681), + [anon_sym_LT_EQ] = ACTIONS(681), + [anon_sym_AT] = ACTIONS(681), + [anon_sym__] = ACTIONS(691), + [anon_sym_DOT] = ACTIONS(691), + [anon_sym_DOT_DOT] = ACTIONS(691), + [anon_sym_DOT_DOT_DOT] = ACTIONS(681), + [anon_sym_DOT_DOT_EQ] = ACTIONS(681), + [anon_sym_COMMA] = ACTIONS(681), + [anon_sym_COLON_COLON] = ACTIONS(681), + [anon_sym_DASH_GT] = ACTIONS(681), + [anon_sym_POUND] = ACTIONS(681), + [anon_sym_SQUOTE] = ACTIONS(679), + [anon_sym_as] = ACTIONS(679), + [anon_sym_async] = ACTIONS(679), + [anon_sym_await] = ACTIONS(679), + [anon_sym_break] = ACTIONS(679), + [anon_sym_const] = ACTIONS(679), + [anon_sym_continue] = ACTIONS(679), + [anon_sym_default] = ACTIONS(679), + [anon_sym_enum] = ACTIONS(679), + [anon_sym_fn] = ACTIONS(679), + [anon_sym_for] = ACTIONS(679), + [anon_sym_gen] = ACTIONS(679), + [anon_sym_if] = ACTIONS(679), + [anon_sym_impl] = ACTIONS(679), + [anon_sym_let] = ACTIONS(679), + [anon_sym_loop] = ACTIONS(679), + [anon_sym_match] = ACTIONS(679), + [anon_sym_mod] = ACTIONS(679), + [anon_sym_pub] = ACTIONS(679), + [anon_sym_return] = ACTIONS(679), + [anon_sym_static] = ACTIONS(679), + [anon_sym_struct] = ACTIONS(679), + [anon_sym_trait] = ACTIONS(679), + [anon_sym_type] = ACTIONS(679), + [anon_sym_union] = ACTIONS(679), + [anon_sym_unsafe] = ACTIONS(679), + [anon_sym_use] = ACTIONS(679), + [anon_sym_where] = ACTIONS(679), + [anon_sym_while] = ACTIONS(679), + [sym_mutable_specifier] = ACTIONS(679), + [sym_integer_literal] = ACTIONS(695), + [aux_sym_string_literal_token1] = ACTIONS(697), + [sym_char_literal] = ACTIONS(695), + [anon_sym_true] = ACTIONS(699), + [anon_sym_false] = ACTIONS(699), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(679), + [sym_super] = ACTIONS(679), + [sym_crate] = ACTIONS(679), + [sym__raw_string_literal_start] = ACTIONS(701), + [sym_float_literal] = ACTIONS(695), }, [STATE(133)] = { [sym_token_tree] = STATE(170), [sym_token_repetition] = STATE(170), [sym__literal] = STATE(170), - [sym_string_literal] = STATE(175), - [sym_raw_string_literal] = STATE(175), - [sym_boolean_literal] = STATE(175), + [sym_string_literal] = STATE(174), + [sym_raw_string_literal] = STATE(174), + [sym_boolean_literal] = STATE(174), [sym_line_comment] = STATE(133), [sym_block_comment] = STATE(133), - [aux_sym_token_tree_repeat1] = STATE(69), - [aux_sym__non_special_token_repeat1] = STATE(140), - [sym_identifier] = ACTIONS(700), - [anon_sym_SEMI] = ACTIONS(640), - [anon_sym_LPAREN] = ACTIONS(702), - [anon_sym_LBRACK] = ACTIONS(704), - [anon_sym_LBRACE] = ACTIONS(708), - [anon_sym_RBRACE] = ACTIONS(724), - [anon_sym_EQ_GT] = ACTIONS(640), - [anon_sym_COLON] = ACTIONS(650), - [anon_sym_DOLLAR] = ACTIONS(710), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_STAR] = ACTIONS(650), - [anon_sym_QMARK] = ACTIONS(640), - [anon_sym_u8] = ACTIONS(700), - [anon_sym_i8] = ACTIONS(700), - [anon_sym_u16] = ACTIONS(700), - [anon_sym_i16] = ACTIONS(700), - [anon_sym_u32] = ACTIONS(700), - [anon_sym_i32] = ACTIONS(700), - [anon_sym_u64] = ACTIONS(700), - [anon_sym_i64] = ACTIONS(700), - [anon_sym_u128] = ACTIONS(700), - [anon_sym_i128] = ACTIONS(700), - [anon_sym_isize] = ACTIONS(700), - [anon_sym_usize] = ACTIONS(700), - [anon_sym_f32] = ACTIONS(700), - [anon_sym_f64] = ACTIONS(700), - [anon_sym_bool] = ACTIONS(700), - [anon_sym_str] = ACTIONS(700), - [anon_sym_char] = ACTIONS(700), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(650), - [anon_sym_PERCENT] = ACTIONS(650), - [anon_sym_CARET] = ACTIONS(650), - [anon_sym_BANG] = ACTIONS(650), - [anon_sym_AMP] = ACTIONS(650), - [anon_sym_PIPE] = ACTIONS(650), - [anon_sym_AMP_AMP] = ACTIONS(640), - [anon_sym_PIPE_PIPE] = ACTIONS(640), - [anon_sym_LT_LT] = ACTIONS(650), - [anon_sym_GT_GT] = ACTIONS(650), - [anon_sym_PLUS_EQ] = ACTIONS(640), - [anon_sym_DASH_EQ] = ACTIONS(640), - [anon_sym_STAR_EQ] = ACTIONS(640), - [anon_sym_SLASH_EQ] = ACTIONS(640), - [anon_sym_PERCENT_EQ] = ACTIONS(640), - [anon_sym_CARET_EQ] = ACTIONS(640), - [anon_sym_AMP_EQ] = ACTIONS(640), - [anon_sym_PIPE_EQ] = ACTIONS(640), - [anon_sym_LT_LT_EQ] = ACTIONS(640), - [anon_sym_GT_GT_EQ] = ACTIONS(640), - [anon_sym_EQ] = ACTIONS(650), - [anon_sym_EQ_EQ] = ACTIONS(640), - [anon_sym_BANG_EQ] = ACTIONS(640), - [anon_sym_GT] = ACTIONS(650), - [anon_sym_LT] = ACTIONS(650), - [anon_sym_GT_EQ] = ACTIONS(640), - [anon_sym_LT_EQ] = ACTIONS(640), - [anon_sym_AT] = ACTIONS(640), - [anon_sym__] = ACTIONS(650), - [anon_sym_DOT] = ACTIONS(650), - [anon_sym_DOT_DOT] = ACTIONS(650), - [anon_sym_DOT_DOT_DOT] = ACTIONS(640), - [anon_sym_DOT_DOT_EQ] = ACTIONS(640), - [anon_sym_COMMA] = ACTIONS(640), - [anon_sym_COLON_COLON] = ACTIONS(640), - [anon_sym_DASH_GT] = ACTIONS(640), - [anon_sym_POUND] = ACTIONS(640), - [anon_sym_SQUOTE] = ACTIONS(700), - [anon_sym_as] = ACTIONS(700), - [anon_sym_async] = ACTIONS(700), - [anon_sym_await] = ACTIONS(700), - [anon_sym_break] = ACTIONS(700), - [anon_sym_const] = ACTIONS(700), - [anon_sym_continue] = ACTIONS(700), - [anon_sym_default] = ACTIONS(700), - [anon_sym_enum] = ACTIONS(700), - [anon_sym_fn] = ACTIONS(700), - [anon_sym_for] = ACTIONS(700), - [anon_sym_gen] = ACTIONS(700), - [anon_sym_if] = ACTIONS(700), - [anon_sym_impl] = ACTIONS(700), - [anon_sym_let] = ACTIONS(700), - [anon_sym_loop] = ACTIONS(700), - [anon_sym_match] = ACTIONS(700), - [anon_sym_mod] = ACTIONS(700), - [anon_sym_pub] = ACTIONS(700), - [anon_sym_return] = ACTIONS(700), - [anon_sym_static] = ACTIONS(700), - [anon_sym_struct] = ACTIONS(700), - [anon_sym_trait] = ACTIONS(700), - [anon_sym_type] = ACTIONS(700), - [anon_sym_union] = ACTIONS(700), - [anon_sym_unsafe] = ACTIONS(700), - [anon_sym_use] = ACTIONS(700), - [anon_sym_where] = ACTIONS(700), - [anon_sym_while] = ACTIONS(700), - [sym_mutable_specifier] = ACTIONS(700), - [sym_integer_literal] = ACTIONS(654), - [aux_sym_string_literal_token1] = ACTIONS(656), - [sym_char_literal] = ACTIONS(654), - [anon_sym_true] = ACTIONS(658), - [anon_sym_false] = ACTIONS(658), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(700), - [sym_super] = ACTIONS(700), - [sym_crate] = ACTIONS(700), - [sym_metavariable] = ACTIONS(712), - [sym__raw_string_literal_start] = ACTIONS(662), - [sym_float_literal] = ACTIONS(654), + [aux_sym_token_tree_repeat1] = STATE(111), + [aux_sym__non_special_token_repeat1] = STATE(136), + [sym_identifier] = ACTIONS(703), + [anon_sym_SEMI] = ACTIONS(572), + [anon_sym_LPAREN] = ACTIONS(705), + [anon_sym_RPAREN] = ACTIONS(747), + [anon_sym_LBRACK] = ACTIONS(707), + [anon_sym_LBRACE] = ACTIONS(711), + [anon_sym_EQ_GT] = ACTIONS(572), + [anon_sym_COLON] = ACTIONS(582), + [anon_sym_DOLLAR] = ACTIONS(713), + [anon_sym_PLUS] = ACTIONS(582), + [anon_sym_STAR] = ACTIONS(582), + [anon_sym_QMARK] = ACTIONS(572), + [anon_sym_u8] = ACTIONS(703), + [anon_sym_i8] = ACTIONS(703), + [anon_sym_u16] = ACTIONS(703), + [anon_sym_i16] = ACTIONS(703), + [anon_sym_u32] = ACTIONS(703), + [anon_sym_i32] = ACTIONS(703), + [anon_sym_u64] = ACTIONS(703), + [anon_sym_i64] = ACTIONS(703), + [anon_sym_u128] = ACTIONS(703), + [anon_sym_i128] = ACTIONS(703), + [anon_sym_isize] = ACTIONS(703), + [anon_sym_usize] = ACTIONS(703), + [anon_sym_f32] = ACTIONS(703), + [anon_sym_f64] = ACTIONS(703), + [anon_sym_bool] = ACTIONS(703), + [anon_sym_str] = ACTIONS(703), + [anon_sym_char] = ACTIONS(703), + [anon_sym_DASH] = ACTIONS(582), + [anon_sym_SLASH] = ACTIONS(582), + [anon_sym_PERCENT] = ACTIONS(582), + [anon_sym_CARET] = ACTIONS(582), + [anon_sym_BANG] = ACTIONS(582), + [anon_sym_AMP] = ACTIONS(582), + [anon_sym_PIPE] = ACTIONS(582), + [anon_sym_AMP_AMP] = ACTIONS(572), + [anon_sym_PIPE_PIPE] = ACTIONS(572), + [anon_sym_LT_LT] = ACTIONS(582), + [anon_sym_GT_GT] = ACTIONS(582), + [anon_sym_PLUS_EQ] = ACTIONS(572), + [anon_sym_DASH_EQ] = ACTIONS(572), + [anon_sym_STAR_EQ] = ACTIONS(572), + [anon_sym_SLASH_EQ] = ACTIONS(572), + [anon_sym_PERCENT_EQ] = ACTIONS(572), + [anon_sym_CARET_EQ] = ACTIONS(572), + [anon_sym_AMP_EQ] = ACTIONS(572), + [anon_sym_PIPE_EQ] = ACTIONS(572), + [anon_sym_LT_LT_EQ] = ACTIONS(572), + [anon_sym_GT_GT_EQ] = ACTIONS(572), + [anon_sym_EQ] = ACTIONS(582), + [anon_sym_EQ_EQ] = ACTIONS(572), + [anon_sym_BANG_EQ] = ACTIONS(572), + [anon_sym_GT] = ACTIONS(582), + [anon_sym_LT] = ACTIONS(582), + [anon_sym_GT_EQ] = ACTIONS(572), + [anon_sym_LT_EQ] = ACTIONS(572), + [anon_sym_AT] = ACTIONS(572), + [anon_sym__] = ACTIONS(582), + [anon_sym_DOT] = ACTIONS(582), + [anon_sym_DOT_DOT] = ACTIONS(582), + [anon_sym_DOT_DOT_DOT] = ACTIONS(572), + [anon_sym_DOT_DOT_EQ] = ACTIONS(572), + [anon_sym_COMMA] = ACTIONS(572), + [anon_sym_COLON_COLON] = ACTIONS(572), + [anon_sym_DASH_GT] = ACTIONS(572), + [anon_sym_POUND] = ACTIONS(572), + [anon_sym_SQUOTE] = ACTIONS(703), + [anon_sym_as] = ACTIONS(703), + [anon_sym_async] = ACTIONS(703), + [anon_sym_await] = ACTIONS(703), + [anon_sym_break] = ACTIONS(703), + [anon_sym_const] = ACTIONS(703), + [anon_sym_continue] = ACTIONS(703), + [anon_sym_default] = ACTIONS(703), + [anon_sym_enum] = ACTIONS(703), + [anon_sym_fn] = ACTIONS(703), + [anon_sym_for] = ACTIONS(703), + [anon_sym_gen] = ACTIONS(703), + [anon_sym_if] = ACTIONS(703), + [anon_sym_impl] = ACTIONS(703), + [anon_sym_let] = ACTIONS(703), + [anon_sym_loop] = ACTIONS(703), + [anon_sym_match] = ACTIONS(703), + [anon_sym_mod] = ACTIONS(703), + [anon_sym_pub] = ACTIONS(703), + [anon_sym_return] = ACTIONS(703), + [anon_sym_static] = ACTIONS(703), + [anon_sym_struct] = ACTIONS(703), + [anon_sym_trait] = ACTIONS(703), + [anon_sym_type] = ACTIONS(703), + [anon_sym_union] = ACTIONS(703), + [anon_sym_unsafe] = ACTIONS(703), + [anon_sym_use] = ACTIONS(703), + [anon_sym_where] = ACTIONS(703), + [anon_sym_while] = ACTIONS(703), + [sym_mutable_specifier] = ACTIONS(703), + [sym_integer_literal] = ACTIONS(586), + [aux_sym_string_literal_token1] = ACTIONS(588), + [sym_char_literal] = ACTIONS(586), + [anon_sym_true] = ACTIONS(590), + [anon_sym_false] = ACTIONS(590), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(703), + [sym_super] = ACTIONS(703), + [sym_crate] = ACTIONS(703), + [sym_metavariable] = ACTIONS(715), + [sym__raw_string_literal_start] = ACTIONS(594), + [sym_float_literal] = ACTIONS(586), }, [STATE(134)] = { - [sym_attribute_item] = STATE(1031), - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1601), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1520), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), + [sym_attribute_item] = STATE(1038), + [sym_bracketed_type] = STATE(3752), + [sym_generic_function] = STATE(1492), + [sym_generic_type_with_turbofish] = STATE(3039), + [sym__expression_except_range] = STATE(1409), + [sym__expression] = STATE(1669), + [sym_macro_invocation] = STATE(1529), + [sym_scoped_identifier] = STATE(1540), + [sym_scoped_type_identifier_in_expression_position] = STATE(3335), + [sym_range_expression] = STATE(1505), + [sym_unary_expression] = STATE(1492), + [sym_try_expression] = STATE(1492), + [sym_reference_expression] = STATE(1492), + [sym_binary_expression] = STATE(1492), + [sym_assignment_expression] = STATE(1492), + [sym_compound_assignment_expr] = STATE(1492), + [sym_type_cast_expression] = STATE(1492), + [sym_return_expression] = STATE(1492), + [sym_yield_expression] = STATE(1492), + [sym_call_expression] = STATE(1492), + [sym_array_expression] = STATE(1492), + [sym_parenthesized_expression] = STATE(1492), + [sym_tuple_expression] = STATE(1492), + [sym_unit_expression] = STATE(1492), + [sym_struct_expression] = STATE(1492), + [sym_if_expression] = STATE(1492), + [sym_match_expression] = STATE(1492), + [sym_while_expression] = STATE(1492), + [sym_loop_expression] = STATE(1492), + [sym_for_expression] = STATE(1492), + [sym_const_block] = STATE(1492), + [sym_closure_expression] = STATE(1492), + [sym_closure_parameters] = STATE(229), + [sym_label] = STATE(3689), + [sym_break_expression] = STATE(1492), + [sym_continue_expression] = STATE(1492), + [sym_index_expression] = STATE(1492), + [sym_await_expression] = STATE(1492), + [sym_field_expression] = STATE(1412), + [sym_unsafe_block] = STATE(1492), + [sym_async_block] = STATE(1492), + [sym_gen_block] = STATE(1492), + [sym_try_block] = STATE(1492), + [sym_block] = STATE(1492), + [sym__literal] = STATE(1492), + [sym_string_literal] = STATE(1530), + [sym_raw_string_literal] = STATE(1530), + [sym_boolean_literal] = STATE(1530), [sym_line_comment] = STATE(134), [sym_block_comment] = STATE(134), - [aux_sym_enum_variant_list_repeat1] = STATE(142), - [sym_identifier] = ACTIONS(339), + [aux_sym_enum_variant_list_repeat1] = STATE(1037), + [sym_identifier] = ACTIONS(749), + [anon_sym_LPAREN] = ACTIONS(752), + [anon_sym_LBRACK] = ACTIONS(755), + [anon_sym_RBRACK] = ACTIONS(758), + [anon_sym_LBRACE] = ACTIONS(760), + [anon_sym_STAR] = ACTIONS(763), + [anon_sym_u8] = ACTIONS(766), + [anon_sym_i8] = ACTIONS(766), + [anon_sym_u16] = ACTIONS(766), + [anon_sym_i16] = ACTIONS(766), + [anon_sym_u32] = ACTIONS(766), + [anon_sym_i32] = ACTIONS(766), + [anon_sym_u64] = ACTIONS(766), + [anon_sym_i64] = ACTIONS(766), + [anon_sym_u128] = ACTIONS(766), + [anon_sym_i128] = ACTIONS(766), + [anon_sym_isize] = ACTIONS(766), + [anon_sym_usize] = ACTIONS(766), + [anon_sym_f32] = ACTIONS(766), + [anon_sym_f64] = ACTIONS(766), + [anon_sym_bool] = ACTIONS(766), + [anon_sym_str] = ACTIONS(766), + [anon_sym_char] = ACTIONS(766), + [anon_sym_DASH] = ACTIONS(763), + [anon_sym_BANG] = ACTIONS(763), + [anon_sym_AMP] = ACTIONS(769), + [anon_sym_PIPE] = ACTIONS(772), + [anon_sym_LT] = ACTIONS(775), + [anon_sym_DOT_DOT] = ACTIONS(778), + [anon_sym_COMMA] = ACTIONS(758), + [anon_sym_COLON_COLON] = ACTIONS(781), + [anon_sym_POUND] = ACTIONS(784), + [anon_sym_SQUOTE] = ACTIONS(787), + [anon_sym_async] = ACTIONS(790), + [anon_sym_break] = ACTIONS(793), + [anon_sym_const] = ACTIONS(796), + [anon_sym_continue] = ACTIONS(799), + [anon_sym_default] = ACTIONS(802), + [anon_sym_for] = ACTIONS(805), + [anon_sym_gen] = ACTIONS(808), + [anon_sym_if] = ACTIONS(811), + [anon_sym_loop] = ACTIONS(814), + [anon_sym_match] = ACTIONS(817), + [anon_sym_return] = ACTIONS(820), + [anon_sym_static] = ACTIONS(823), + [anon_sym_union] = ACTIONS(802), + [anon_sym_unsafe] = ACTIONS(826), + [anon_sym_while] = ACTIONS(829), + [anon_sym_yield] = ACTIONS(832), + [anon_sym_move] = ACTIONS(835), + [anon_sym_try] = ACTIONS(838), + [sym_integer_literal] = ACTIONS(841), + [aux_sym_string_literal_token1] = ACTIONS(844), + [sym_char_literal] = ACTIONS(841), + [anon_sym_true] = ACTIONS(847), + [anon_sym_false] = ACTIONS(847), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(850), + [sym_super] = ACTIONS(853), + [sym_crate] = ACTIONS(853), + [sym_metavariable] = ACTIONS(856), + [sym__raw_string_literal_start] = ACTIONS(859), + [sym_float_literal] = ACTIONS(841), + }, + [STATE(135)] = { + [sym_line_comment] = STATE(135), + [sym_block_comment] = STATE(135), + [aux_sym__non_special_token_repeat1] = STATE(142), + [sym_identifier] = ACTIONS(862), + [anon_sym_SEMI] = ACTIONS(572), + [anon_sym_LPAREN] = ACTIONS(864), + [anon_sym_RPAREN] = ACTIONS(864), + [anon_sym_LBRACK] = ACTIONS(864), + [anon_sym_RBRACK] = ACTIONS(864), + [anon_sym_LBRACE] = ACTIONS(864), + [anon_sym_RBRACE] = ACTIONS(864), + [anon_sym_EQ_GT] = ACTIONS(572), + [anon_sym_COLON] = ACTIONS(582), + [anon_sym_DOLLAR] = ACTIONS(862), + [anon_sym_PLUS] = ACTIONS(582), + [anon_sym_STAR] = ACTIONS(582), + [anon_sym_QMARK] = ACTIONS(572), + [anon_sym_u8] = ACTIONS(862), + [anon_sym_i8] = ACTIONS(862), + [anon_sym_u16] = ACTIONS(862), + [anon_sym_i16] = ACTIONS(862), + [anon_sym_u32] = ACTIONS(862), + [anon_sym_i32] = ACTIONS(862), + [anon_sym_u64] = ACTIONS(862), + [anon_sym_i64] = ACTIONS(862), + [anon_sym_u128] = ACTIONS(862), + [anon_sym_i128] = ACTIONS(862), + [anon_sym_isize] = ACTIONS(862), + [anon_sym_usize] = ACTIONS(862), + [anon_sym_f32] = ACTIONS(862), + [anon_sym_f64] = ACTIONS(862), + [anon_sym_bool] = ACTIONS(862), + [anon_sym_str] = ACTIONS(862), + [anon_sym_char] = ACTIONS(862), + [anon_sym_DASH] = ACTIONS(582), + [anon_sym_SLASH] = ACTIONS(582), + [anon_sym_PERCENT] = ACTIONS(582), + [anon_sym_CARET] = ACTIONS(582), + [anon_sym_BANG] = ACTIONS(582), + [anon_sym_AMP] = ACTIONS(582), + [anon_sym_PIPE] = ACTIONS(582), + [anon_sym_AMP_AMP] = ACTIONS(572), + [anon_sym_PIPE_PIPE] = ACTIONS(572), + [anon_sym_LT_LT] = ACTIONS(582), + [anon_sym_GT_GT] = ACTIONS(582), + [anon_sym_PLUS_EQ] = ACTIONS(572), + [anon_sym_DASH_EQ] = ACTIONS(572), + [anon_sym_STAR_EQ] = ACTIONS(572), + [anon_sym_SLASH_EQ] = ACTIONS(572), + [anon_sym_PERCENT_EQ] = ACTIONS(572), + [anon_sym_CARET_EQ] = ACTIONS(572), + [anon_sym_AMP_EQ] = ACTIONS(572), + [anon_sym_PIPE_EQ] = ACTIONS(572), + [anon_sym_LT_LT_EQ] = ACTIONS(572), + [anon_sym_GT_GT_EQ] = ACTIONS(572), + [anon_sym_EQ] = ACTIONS(582), + [anon_sym_EQ_EQ] = ACTIONS(572), + [anon_sym_BANG_EQ] = ACTIONS(572), + [anon_sym_GT] = ACTIONS(582), + [anon_sym_LT] = ACTIONS(582), + [anon_sym_GT_EQ] = ACTIONS(572), + [anon_sym_LT_EQ] = ACTIONS(572), + [anon_sym_AT] = ACTIONS(572), + [anon_sym__] = ACTIONS(582), + [anon_sym_DOT] = ACTIONS(582), + [anon_sym_DOT_DOT] = ACTIONS(582), + [anon_sym_DOT_DOT_DOT] = ACTIONS(572), + [anon_sym_DOT_DOT_EQ] = ACTIONS(572), + [anon_sym_COMMA] = ACTIONS(572), + [anon_sym_COLON_COLON] = ACTIONS(572), + [anon_sym_DASH_GT] = ACTIONS(572), + [anon_sym_POUND] = ACTIONS(572), + [anon_sym_SQUOTE] = ACTIONS(862), + [anon_sym_as] = ACTIONS(862), + [anon_sym_async] = ACTIONS(862), + [anon_sym_await] = ACTIONS(862), + [anon_sym_break] = ACTIONS(862), + [anon_sym_const] = ACTIONS(862), + [anon_sym_continue] = ACTIONS(862), + [anon_sym_default] = ACTIONS(862), + [anon_sym_enum] = ACTIONS(862), + [anon_sym_fn] = ACTIONS(862), + [anon_sym_for] = ACTIONS(862), + [anon_sym_gen] = ACTIONS(862), + [anon_sym_if] = ACTIONS(862), + [anon_sym_impl] = ACTIONS(862), + [anon_sym_let] = ACTIONS(862), + [anon_sym_loop] = ACTIONS(862), + [anon_sym_match] = ACTIONS(862), + [anon_sym_mod] = ACTIONS(862), + [anon_sym_pub] = ACTIONS(862), + [anon_sym_return] = ACTIONS(862), + [anon_sym_static] = ACTIONS(862), + [anon_sym_struct] = ACTIONS(862), + [anon_sym_trait] = ACTIONS(862), + [anon_sym_type] = ACTIONS(862), + [anon_sym_union] = ACTIONS(862), + [anon_sym_unsafe] = ACTIONS(862), + [anon_sym_use] = ACTIONS(862), + [anon_sym_where] = ACTIONS(862), + [anon_sym_while] = ACTIONS(862), + [sym_mutable_specifier] = ACTIONS(862), + [sym_integer_literal] = ACTIONS(864), + [aux_sym_string_literal_token1] = ACTIONS(864), + [sym_char_literal] = ACTIONS(864), + [anon_sym_true] = ACTIONS(862), + [anon_sym_false] = ACTIONS(862), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(862), + [sym_super] = ACTIONS(862), + [sym_crate] = ACTIONS(862), + [sym_metavariable] = ACTIONS(864), + [sym__raw_string_literal_start] = ACTIONS(864), + [sym_float_literal] = ACTIONS(864), + }, + [STATE(136)] = { + [sym_line_comment] = STATE(136), + [sym_block_comment] = STATE(136), + [aux_sym__non_special_token_repeat1] = STATE(142), + [sym_identifier] = ACTIONS(866), + [anon_sym_SEMI] = ACTIONS(572), + [anon_sym_LPAREN] = ACTIONS(868), + [anon_sym_RPAREN] = ACTIONS(868), + [anon_sym_LBRACK] = ACTIONS(868), + [anon_sym_RBRACK] = ACTIONS(868), + [anon_sym_LBRACE] = ACTIONS(868), + [anon_sym_RBRACE] = ACTIONS(868), + [anon_sym_EQ_GT] = ACTIONS(572), + [anon_sym_COLON] = ACTIONS(582), + [anon_sym_DOLLAR] = ACTIONS(866), + [anon_sym_PLUS] = ACTIONS(582), + [anon_sym_STAR] = ACTIONS(582), + [anon_sym_QMARK] = ACTIONS(572), + [anon_sym_u8] = ACTIONS(866), + [anon_sym_i8] = ACTIONS(866), + [anon_sym_u16] = ACTIONS(866), + [anon_sym_i16] = ACTIONS(866), + [anon_sym_u32] = ACTIONS(866), + [anon_sym_i32] = ACTIONS(866), + [anon_sym_u64] = ACTIONS(866), + [anon_sym_i64] = ACTIONS(866), + [anon_sym_u128] = ACTIONS(866), + [anon_sym_i128] = ACTIONS(866), + [anon_sym_isize] = ACTIONS(866), + [anon_sym_usize] = ACTIONS(866), + [anon_sym_f32] = ACTIONS(866), + [anon_sym_f64] = ACTIONS(866), + [anon_sym_bool] = ACTIONS(866), + [anon_sym_str] = ACTIONS(866), + [anon_sym_char] = ACTIONS(866), + [anon_sym_DASH] = ACTIONS(582), + [anon_sym_SLASH] = ACTIONS(582), + [anon_sym_PERCENT] = ACTIONS(582), + [anon_sym_CARET] = ACTIONS(582), + [anon_sym_BANG] = ACTIONS(582), + [anon_sym_AMP] = ACTIONS(582), + [anon_sym_PIPE] = ACTIONS(582), + [anon_sym_AMP_AMP] = ACTIONS(572), + [anon_sym_PIPE_PIPE] = ACTIONS(572), + [anon_sym_LT_LT] = ACTIONS(582), + [anon_sym_GT_GT] = ACTIONS(582), + [anon_sym_PLUS_EQ] = ACTIONS(572), + [anon_sym_DASH_EQ] = ACTIONS(572), + [anon_sym_STAR_EQ] = ACTIONS(572), + [anon_sym_SLASH_EQ] = ACTIONS(572), + [anon_sym_PERCENT_EQ] = ACTIONS(572), + [anon_sym_CARET_EQ] = ACTIONS(572), + [anon_sym_AMP_EQ] = ACTIONS(572), + [anon_sym_PIPE_EQ] = ACTIONS(572), + [anon_sym_LT_LT_EQ] = ACTIONS(572), + [anon_sym_GT_GT_EQ] = ACTIONS(572), + [anon_sym_EQ] = ACTIONS(582), + [anon_sym_EQ_EQ] = ACTIONS(572), + [anon_sym_BANG_EQ] = ACTIONS(572), + [anon_sym_GT] = ACTIONS(582), + [anon_sym_LT] = ACTIONS(582), + [anon_sym_GT_EQ] = ACTIONS(572), + [anon_sym_LT_EQ] = ACTIONS(572), + [anon_sym_AT] = ACTIONS(572), + [anon_sym__] = ACTIONS(582), + [anon_sym_DOT] = ACTIONS(582), + [anon_sym_DOT_DOT] = ACTIONS(582), + [anon_sym_DOT_DOT_DOT] = ACTIONS(572), + [anon_sym_DOT_DOT_EQ] = ACTIONS(572), + [anon_sym_COMMA] = ACTIONS(572), + [anon_sym_COLON_COLON] = ACTIONS(572), + [anon_sym_DASH_GT] = ACTIONS(572), + [anon_sym_POUND] = ACTIONS(572), + [anon_sym_SQUOTE] = ACTIONS(866), + [anon_sym_as] = ACTIONS(866), + [anon_sym_async] = ACTIONS(866), + [anon_sym_await] = ACTIONS(866), + [anon_sym_break] = ACTIONS(866), + [anon_sym_const] = ACTIONS(866), + [anon_sym_continue] = ACTIONS(866), + [anon_sym_default] = ACTIONS(866), + [anon_sym_enum] = ACTIONS(866), + [anon_sym_fn] = ACTIONS(866), + [anon_sym_for] = ACTIONS(866), + [anon_sym_gen] = ACTIONS(866), + [anon_sym_if] = ACTIONS(866), + [anon_sym_impl] = ACTIONS(866), + [anon_sym_let] = ACTIONS(866), + [anon_sym_loop] = ACTIONS(866), + [anon_sym_match] = ACTIONS(866), + [anon_sym_mod] = ACTIONS(866), + [anon_sym_pub] = ACTIONS(866), + [anon_sym_return] = ACTIONS(866), + [anon_sym_static] = ACTIONS(866), + [anon_sym_struct] = ACTIONS(866), + [anon_sym_trait] = ACTIONS(866), + [anon_sym_type] = ACTIONS(866), + [anon_sym_union] = ACTIONS(866), + [anon_sym_unsafe] = ACTIONS(866), + [anon_sym_use] = ACTIONS(866), + [anon_sym_where] = ACTIONS(866), + [anon_sym_while] = ACTIONS(866), + [sym_mutable_specifier] = ACTIONS(866), + [sym_integer_literal] = ACTIONS(868), + [aux_sym_string_literal_token1] = ACTIONS(868), + [sym_char_literal] = ACTIONS(868), + [anon_sym_true] = ACTIONS(866), + [anon_sym_false] = ACTIONS(866), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(866), + [sym_super] = ACTIONS(866), + [sym_crate] = ACTIONS(866), + [sym_metavariable] = ACTIONS(868), + [sym__raw_string_literal_start] = ACTIONS(868), + [sym_float_literal] = ACTIONS(868), + }, + [STATE(137)] = { + [sym_attribute_item] = STATE(1038), + [sym_bracketed_type] = STATE(3752), + [sym_generic_function] = STATE(1492), + [sym_generic_type_with_turbofish] = STATE(3039), + [sym__expression_except_range] = STATE(1409), + [sym__expression] = STATE(1667), + [sym_macro_invocation] = STATE(1529), + [sym_scoped_identifier] = STATE(1540), + [sym_scoped_type_identifier_in_expression_position] = STATE(3335), + [sym_range_expression] = STATE(1505), + [sym_unary_expression] = STATE(1492), + [sym_try_expression] = STATE(1492), + [sym_reference_expression] = STATE(1492), + [sym_binary_expression] = STATE(1492), + [sym_assignment_expression] = STATE(1492), + [sym_compound_assignment_expr] = STATE(1492), + [sym_type_cast_expression] = STATE(1492), + [sym_return_expression] = STATE(1492), + [sym_yield_expression] = STATE(1492), + [sym_call_expression] = STATE(1492), + [sym_array_expression] = STATE(1492), + [sym_parenthesized_expression] = STATE(1492), + [sym_tuple_expression] = STATE(1492), + [sym_unit_expression] = STATE(1492), + [sym_struct_expression] = STATE(1492), + [sym_if_expression] = STATE(1492), + [sym_match_expression] = STATE(1492), + [sym_while_expression] = STATE(1492), + [sym_loop_expression] = STATE(1492), + [sym_for_expression] = STATE(1492), + [sym_const_block] = STATE(1492), + [sym_closure_expression] = STATE(1492), + [sym_closure_parameters] = STATE(229), + [sym_label] = STATE(3689), + [sym_break_expression] = STATE(1492), + [sym_continue_expression] = STATE(1492), + [sym_index_expression] = STATE(1492), + [sym_await_expression] = STATE(1492), + [sym_field_expression] = STATE(1412), + [sym_unsafe_block] = STATE(1492), + [sym_async_block] = STATE(1492), + [sym_gen_block] = STATE(1492), + [sym_try_block] = STATE(1492), + [sym_block] = STATE(1492), + [sym__literal] = STATE(1492), + [sym_string_literal] = STATE(1530), + [sym_raw_string_literal] = STATE(1530), + [sym_boolean_literal] = STATE(1530), + [sym_line_comment] = STATE(137), + [sym_block_comment] = STATE(137), + [aux_sym_enum_variant_list_repeat1] = STATE(206), + [sym_identifier] = ACTIONS(344), [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(870), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(744), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(348), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -32353,216 +32835,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COMMA] = ACTIONS(746), + [anon_sym_COMMA] = ACTIONS(872), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(874), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), + [anon_sym_async] = ACTIONS(356), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(358), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), + [anon_sym_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(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(115), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), - }, - [STATE(135)] = { - [sym_attribute_item] = STATE(1031), - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1658), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1520), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [sym_line_comment] = STATE(135), - [sym_block_comment] = STATE(135), - [aux_sym_enum_variant_list_repeat1] = STATE(1029), - [sym_identifier] = ACTIONS(750), - [anon_sym_LPAREN] = ACTIONS(753), - [anon_sym_LBRACK] = ACTIONS(756), - [anon_sym_RBRACK] = ACTIONS(759), - [anon_sym_LBRACE] = ACTIONS(761), - [anon_sym_STAR] = ACTIONS(764), - [anon_sym_u8] = ACTIONS(767), - [anon_sym_i8] = ACTIONS(767), - [anon_sym_u16] = ACTIONS(767), - [anon_sym_i16] = ACTIONS(767), - [anon_sym_u32] = ACTIONS(767), - [anon_sym_i32] = ACTIONS(767), - [anon_sym_u64] = ACTIONS(767), - [anon_sym_i64] = ACTIONS(767), - [anon_sym_u128] = ACTIONS(767), - [anon_sym_i128] = ACTIONS(767), - [anon_sym_isize] = ACTIONS(767), - [anon_sym_usize] = ACTIONS(767), - [anon_sym_f32] = ACTIONS(767), - [anon_sym_f64] = ACTIONS(767), - [anon_sym_bool] = ACTIONS(767), - [anon_sym_str] = ACTIONS(767), - [anon_sym_char] = ACTIONS(767), - [anon_sym_DASH] = ACTIONS(764), - [anon_sym_BANG] = ACTIONS(764), - [anon_sym_AMP] = ACTIONS(770), - [anon_sym_PIPE] = ACTIONS(773), - [anon_sym_LT] = ACTIONS(776), - [anon_sym_DOT_DOT] = ACTIONS(779), - [anon_sym_COMMA] = ACTIONS(759), - [anon_sym_COLON_COLON] = ACTIONS(782), - [anon_sym_POUND] = ACTIONS(785), - [anon_sym_SQUOTE] = ACTIONS(788), - [anon_sym_async] = ACTIONS(791), - [anon_sym_break] = ACTIONS(794), - [anon_sym_const] = ACTIONS(797), - [anon_sym_continue] = ACTIONS(800), - [anon_sym_default] = ACTIONS(803), - [anon_sym_for] = ACTIONS(806), - [anon_sym_gen] = ACTIONS(809), - [anon_sym_if] = ACTIONS(812), - [anon_sym_loop] = ACTIONS(815), - [anon_sym_match] = ACTIONS(818), - [anon_sym_return] = ACTIONS(821), - [anon_sym_static] = ACTIONS(824), - [anon_sym_union] = ACTIONS(803), - [anon_sym_unsafe] = ACTIONS(827), - [anon_sym_while] = ACTIONS(830), - [anon_sym_yield] = ACTIONS(833), - [anon_sym_move] = ACTIONS(836), - [anon_sym_try] = ACTIONS(839), - [sym_integer_literal] = ACTIONS(842), - [aux_sym_string_literal_token1] = ACTIONS(845), - [sym_char_literal] = ACTIONS(842), - [anon_sym_true] = ACTIONS(848), - [anon_sym_false] = ACTIONS(848), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(851), - [sym_super] = ACTIONS(854), - [sym_crate] = ACTIONS(854), - [sym_metavariable] = ACTIONS(857), - [sym__raw_string_literal_start] = ACTIONS(860), - [sym_float_literal] = ACTIONS(842), + [anon_sym_static] = ACTIONS(372), + [anon_sym_union] = ACTIONS(360), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [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(1031), - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1610), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1520), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [sym_line_comment] = STATE(136), - [sym_block_comment] = STATE(136), - [aux_sym_enum_variant_list_repeat1] = STATE(139), - [sym_identifier] = ACTIONS(339), + [STATE(138)] = { + [sym_attribute_item] = STATE(1038), + [sym_bracketed_type] = STATE(3752), + [sym_generic_function] = STATE(1492), + [sym_generic_type_with_turbofish] = STATE(3039), + [sym__expression_except_range] = STATE(1409), + [sym__expression] = STATE(1612), + [sym_macro_invocation] = STATE(1529), + [sym_scoped_identifier] = STATE(1540), + [sym_scoped_type_identifier_in_expression_position] = STATE(3335), + [sym_range_expression] = STATE(1505), + [sym_unary_expression] = STATE(1492), + [sym_try_expression] = STATE(1492), + [sym_reference_expression] = STATE(1492), + [sym_binary_expression] = STATE(1492), + [sym_assignment_expression] = STATE(1492), + [sym_compound_assignment_expr] = STATE(1492), + [sym_type_cast_expression] = STATE(1492), + [sym_return_expression] = STATE(1492), + [sym_yield_expression] = STATE(1492), + [sym_call_expression] = STATE(1492), + [sym_array_expression] = STATE(1492), + [sym_parenthesized_expression] = STATE(1492), + [sym_tuple_expression] = STATE(1492), + [sym_unit_expression] = STATE(1492), + [sym_struct_expression] = STATE(1492), + [sym_if_expression] = STATE(1492), + [sym_match_expression] = STATE(1492), + [sym_while_expression] = STATE(1492), + [sym_loop_expression] = STATE(1492), + [sym_for_expression] = STATE(1492), + [sym_const_block] = STATE(1492), + [sym_closure_expression] = STATE(1492), + [sym_closure_parameters] = STATE(229), + [sym_label] = STATE(3689), + [sym_break_expression] = STATE(1492), + [sym_continue_expression] = STATE(1492), + [sym_index_expression] = STATE(1492), + [sym_await_expression] = STATE(1492), + [sym_field_expression] = STATE(1412), + [sym_unsafe_block] = STATE(1492), + [sym_async_block] = STATE(1492), + [sym_gen_block] = STATE(1492), + [sym_try_block] = STATE(1492), + [sym_block] = STATE(1492), + [sym__literal] = STATE(1492), + [sym_string_literal] = STATE(1530), + [sym_raw_string_literal] = STATE(1530), + [sym_boolean_literal] = STATE(1530), + [sym_line_comment] = STATE(138), + [sym_block_comment] = STATE(138), + [aux_sym_enum_variant_list_repeat1] = STATE(140), + [sym_identifier] = ACTIONS(344), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(863), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_RBRACK] = ACTIONS(876), + [anon_sym_LBRACE] = ACTIONS(348), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -32587,99 +32952,216 @@ 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(865), + [anon_sym_COMMA] = ACTIONS(878), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(874), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), + [anon_sym_async] = ACTIONS(356), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(358), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), + [anon_sym_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(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(115), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [anon_sym_static] = ACTIONS(372), + [anon_sym_union] = ACTIONS(360), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [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(137)] = { - [sym_attribute_item] = STATE(1031), - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1678), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1520), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [sym_line_comment] = STATE(137), - [sym_block_comment] = STATE(137), - [aux_sym_enum_variant_list_repeat1] = STATE(201), - [sym_identifier] = ACTIONS(339), + [STATE(139)] = { + [sym_attribute_item] = STATE(1038), + [sym_bracketed_type] = STATE(3752), + [sym_generic_function] = STATE(1492), + [sym_generic_type_with_turbofish] = STATE(3039), + [sym__expression_except_range] = STATE(1409), + [sym__expression] = STATE(1645), + [sym_macro_invocation] = STATE(1529), + [sym_scoped_identifier] = STATE(1540), + [sym_scoped_type_identifier_in_expression_position] = STATE(3335), + [sym_range_expression] = STATE(1505), + [sym_unary_expression] = STATE(1492), + [sym_try_expression] = STATE(1492), + [sym_reference_expression] = STATE(1492), + [sym_binary_expression] = STATE(1492), + [sym_assignment_expression] = STATE(1492), + [sym_compound_assignment_expr] = STATE(1492), + [sym_type_cast_expression] = STATE(1492), + [sym_return_expression] = STATE(1492), + [sym_yield_expression] = STATE(1492), + [sym_call_expression] = STATE(1492), + [sym_array_expression] = STATE(1492), + [sym_parenthesized_expression] = STATE(1492), + [sym_tuple_expression] = STATE(1492), + [sym_unit_expression] = STATE(1492), + [sym_struct_expression] = STATE(1492), + [sym_if_expression] = STATE(1492), + [sym_match_expression] = STATE(1492), + [sym_while_expression] = STATE(1492), + [sym_loop_expression] = STATE(1492), + [sym_for_expression] = STATE(1492), + [sym_const_block] = STATE(1492), + [sym_closure_expression] = STATE(1492), + [sym_closure_parameters] = STATE(229), + [sym_label] = STATE(3689), + [sym_break_expression] = STATE(1492), + [sym_continue_expression] = STATE(1492), + [sym_index_expression] = STATE(1492), + [sym_await_expression] = STATE(1492), + [sym_field_expression] = STATE(1412), + [sym_unsafe_block] = STATE(1492), + [sym_async_block] = STATE(1492), + [sym_gen_block] = STATE(1492), + [sym_try_block] = STATE(1492), + [sym_block] = STATE(1492), + [sym__literal] = STATE(1492), + [sym_string_literal] = STATE(1530), + [sym_raw_string_literal] = STATE(1530), + [sym_boolean_literal] = STATE(1530), + [sym_line_comment] = STATE(139), + [sym_block_comment] = STATE(139), + [aux_sym_enum_variant_list_repeat1] = STATE(1037), + [sym_identifier] = ACTIONS(749), + [anon_sym_LPAREN] = ACTIONS(752), + [anon_sym_LBRACK] = ACTIONS(755), + [anon_sym_RBRACK] = ACTIONS(758), + [anon_sym_LBRACE] = ACTIONS(760), + [anon_sym_STAR] = ACTIONS(763), + [anon_sym_u8] = ACTIONS(766), + [anon_sym_i8] = ACTIONS(766), + [anon_sym_u16] = ACTIONS(766), + [anon_sym_i16] = ACTIONS(766), + [anon_sym_u32] = ACTIONS(766), + [anon_sym_i32] = ACTIONS(766), + [anon_sym_u64] = ACTIONS(766), + [anon_sym_i64] = ACTIONS(766), + [anon_sym_u128] = ACTIONS(766), + [anon_sym_i128] = ACTIONS(766), + [anon_sym_isize] = ACTIONS(766), + [anon_sym_usize] = ACTIONS(766), + [anon_sym_f32] = ACTIONS(766), + [anon_sym_f64] = ACTIONS(766), + [anon_sym_bool] = ACTIONS(766), + [anon_sym_str] = ACTIONS(766), + [anon_sym_char] = ACTIONS(766), + [anon_sym_DASH] = ACTIONS(763), + [anon_sym_BANG] = ACTIONS(763), + [anon_sym_AMP] = ACTIONS(769), + [anon_sym_PIPE] = ACTIONS(772), + [anon_sym_LT] = ACTIONS(775), + [anon_sym_DOT_DOT] = ACTIONS(778), + [anon_sym_COMMA] = ACTIONS(758), + [anon_sym_COLON_COLON] = ACTIONS(781), + [anon_sym_POUND] = ACTIONS(784), + [anon_sym_SQUOTE] = ACTIONS(787), + [anon_sym_async] = ACTIONS(790), + [anon_sym_break] = ACTIONS(793), + [anon_sym_const] = ACTIONS(796), + [anon_sym_continue] = ACTIONS(799), + [anon_sym_default] = ACTIONS(802), + [anon_sym_for] = ACTIONS(805), + [anon_sym_gen] = ACTIONS(808), + [anon_sym_if] = ACTIONS(811), + [anon_sym_loop] = ACTIONS(814), + [anon_sym_match] = ACTIONS(817), + [anon_sym_return] = ACTIONS(820), + [anon_sym_static] = ACTIONS(823), + [anon_sym_union] = ACTIONS(802), + [anon_sym_unsafe] = ACTIONS(826), + [anon_sym_while] = ACTIONS(829), + [anon_sym_yield] = ACTIONS(832), + [anon_sym_move] = ACTIONS(835), + [anon_sym_try] = ACTIONS(838), + [sym_integer_literal] = ACTIONS(841), + [aux_sym_string_literal_token1] = ACTIONS(844), + [sym_char_literal] = ACTIONS(841), + [anon_sym_true] = ACTIONS(847), + [anon_sym_false] = ACTIONS(847), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(850), + [sym_super] = ACTIONS(853), + [sym_crate] = ACTIONS(853), + [sym_metavariable] = ACTIONS(856), + [sym__raw_string_literal_start] = ACTIONS(859), + [sym_float_literal] = ACTIONS(841), + }, + [STATE(140)] = { + [sym_attribute_item] = STATE(1038), + [sym_bracketed_type] = STATE(3752), + [sym_generic_function] = STATE(1492), + [sym_generic_type_with_turbofish] = STATE(3039), + [sym__expression_except_range] = STATE(1409), + [sym__expression] = STATE(1615), + [sym_macro_invocation] = STATE(1529), + [sym_scoped_identifier] = STATE(1540), + [sym_scoped_type_identifier_in_expression_position] = STATE(3335), + [sym_range_expression] = STATE(1505), + [sym_unary_expression] = STATE(1492), + [sym_try_expression] = STATE(1492), + [sym_reference_expression] = STATE(1492), + [sym_binary_expression] = STATE(1492), + [sym_assignment_expression] = STATE(1492), + [sym_compound_assignment_expr] = STATE(1492), + [sym_type_cast_expression] = STATE(1492), + [sym_return_expression] = STATE(1492), + [sym_yield_expression] = STATE(1492), + [sym_call_expression] = STATE(1492), + [sym_array_expression] = STATE(1492), + [sym_parenthesized_expression] = STATE(1492), + [sym_tuple_expression] = STATE(1492), + [sym_unit_expression] = STATE(1492), + [sym_struct_expression] = STATE(1492), + [sym_if_expression] = STATE(1492), + [sym_match_expression] = STATE(1492), + [sym_while_expression] = STATE(1492), + [sym_loop_expression] = STATE(1492), + [sym_for_expression] = STATE(1492), + [sym_const_block] = STATE(1492), + [sym_closure_expression] = STATE(1492), + [sym_closure_parameters] = STATE(229), + [sym_label] = STATE(3689), + [sym_break_expression] = STATE(1492), + [sym_continue_expression] = STATE(1492), + [sym_index_expression] = STATE(1492), + [sym_await_expression] = STATE(1492), + [sym_field_expression] = STATE(1412), + [sym_unsafe_block] = STATE(1492), + [sym_async_block] = STATE(1492), + [sym_gen_block] = STATE(1492), + [sym_try_block] = STATE(1492), + [sym_block] = STATE(1492), + [sym__literal] = STATE(1492), + [sym_string_literal] = STATE(1530), + [sym_raw_string_literal] = STATE(1530), + [sym_boolean_literal] = STATE(1530), + [sym_line_comment] = STATE(140), + [sym_block_comment] = STATE(140), + [aux_sym_enum_variant_list_repeat1] = STATE(134), + [sym_identifier] = ACTIONS(344), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(867), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_RBRACK] = ACTIONS(880), + [anon_sym_LBRACE] = ACTIONS(348), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -32704,216 +33186,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COMMA] = ACTIONS(869), + [anon_sym_COMMA] = ACTIONS(882), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(874), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), + [anon_sym_async] = ACTIONS(356), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(358), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), + [anon_sym_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(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(115), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), - }, - [STATE(138)] = { - [sym_attribute_item] = STATE(1031), - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1647), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1520), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [sym_line_comment] = STATE(138), - [sym_block_comment] = STATE(138), - [aux_sym_enum_variant_list_repeat1] = STATE(1029), - [sym_identifier] = ACTIONS(750), - [anon_sym_LPAREN] = ACTIONS(753), - [anon_sym_LBRACK] = ACTIONS(756), - [anon_sym_RBRACK] = ACTIONS(759), - [anon_sym_LBRACE] = ACTIONS(761), - [anon_sym_STAR] = ACTIONS(764), - [anon_sym_u8] = ACTIONS(767), - [anon_sym_i8] = ACTIONS(767), - [anon_sym_u16] = ACTIONS(767), - [anon_sym_i16] = ACTIONS(767), - [anon_sym_u32] = ACTIONS(767), - [anon_sym_i32] = ACTIONS(767), - [anon_sym_u64] = ACTIONS(767), - [anon_sym_i64] = ACTIONS(767), - [anon_sym_u128] = ACTIONS(767), - [anon_sym_i128] = ACTIONS(767), - [anon_sym_isize] = ACTIONS(767), - [anon_sym_usize] = ACTIONS(767), - [anon_sym_f32] = ACTIONS(767), - [anon_sym_f64] = ACTIONS(767), - [anon_sym_bool] = ACTIONS(767), - [anon_sym_str] = ACTIONS(767), - [anon_sym_char] = ACTIONS(767), - [anon_sym_DASH] = ACTIONS(764), - [anon_sym_BANG] = ACTIONS(764), - [anon_sym_AMP] = ACTIONS(770), - [anon_sym_PIPE] = ACTIONS(773), - [anon_sym_LT] = ACTIONS(776), - [anon_sym_DOT_DOT] = ACTIONS(779), - [anon_sym_COMMA] = ACTIONS(759), - [anon_sym_COLON_COLON] = ACTIONS(782), - [anon_sym_POUND] = ACTIONS(785), - [anon_sym_SQUOTE] = ACTIONS(788), - [anon_sym_async] = ACTIONS(791), - [anon_sym_break] = ACTIONS(794), - [anon_sym_const] = ACTIONS(797), - [anon_sym_continue] = ACTIONS(800), - [anon_sym_default] = ACTIONS(803), - [anon_sym_for] = ACTIONS(806), - [anon_sym_gen] = ACTIONS(809), - [anon_sym_if] = ACTIONS(812), - [anon_sym_loop] = ACTIONS(815), - [anon_sym_match] = ACTIONS(818), - [anon_sym_return] = ACTIONS(821), - [anon_sym_static] = ACTIONS(824), - [anon_sym_union] = ACTIONS(803), - [anon_sym_unsafe] = ACTIONS(827), - [anon_sym_while] = ACTIONS(830), - [anon_sym_yield] = ACTIONS(833), - [anon_sym_move] = ACTIONS(836), - [anon_sym_try] = ACTIONS(839), - [sym_integer_literal] = ACTIONS(842), - [aux_sym_string_literal_token1] = ACTIONS(845), - [sym_char_literal] = ACTIONS(842), - [anon_sym_true] = ACTIONS(848), - [anon_sym_false] = ACTIONS(848), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(851), - [sym_super] = ACTIONS(854), - [sym_crate] = ACTIONS(854), - [sym_metavariable] = ACTIONS(857), - [sym__raw_string_literal_start] = ACTIONS(860), - [sym_float_literal] = ACTIONS(842), + [anon_sym_static] = ACTIONS(372), + [anon_sym_union] = ACTIONS(360), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [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(139)] = { - [sym_attribute_item] = STATE(1031), - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1611), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1520), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [sym_line_comment] = STATE(139), - [sym_block_comment] = STATE(139), - [aux_sym_enum_variant_list_repeat1] = STATE(135), - [sym_identifier] = ACTIONS(339), + [STATE(141)] = { + [sym_attribute_item] = STATE(1038), + [sym_bracketed_type] = STATE(3752), + [sym_generic_function] = STATE(1492), + [sym_generic_type_with_turbofish] = STATE(3039), + [sym__expression_except_range] = STATE(1409), + [sym__expression] = STATE(1624), + [sym_macro_invocation] = STATE(1529), + [sym_scoped_identifier] = STATE(1540), + [sym_scoped_type_identifier_in_expression_position] = STATE(3335), + [sym_range_expression] = STATE(1505), + [sym_unary_expression] = STATE(1492), + [sym_try_expression] = STATE(1492), + [sym_reference_expression] = STATE(1492), + [sym_binary_expression] = STATE(1492), + [sym_assignment_expression] = STATE(1492), + [sym_compound_assignment_expr] = STATE(1492), + [sym_type_cast_expression] = STATE(1492), + [sym_return_expression] = STATE(1492), + [sym_yield_expression] = STATE(1492), + [sym_call_expression] = STATE(1492), + [sym_array_expression] = STATE(1492), + [sym_parenthesized_expression] = STATE(1492), + [sym_tuple_expression] = STATE(1492), + [sym_unit_expression] = STATE(1492), + [sym_struct_expression] = STATE(1492), + [sym_if_expression] = STATE(1492), + [sym_match_expression] = STATE(1492), + [sym_while_expression] = STATE(1492), + [sym_loop_expression] = STATE(1492), + [sym_for_expression] = STATE(1492), + [sym_const_block] = STATE(1492), + [sym_closure_expression] = STATE(1492), + [sym_closure_parameters] = STATE(229), + [sym_label] = STATE(3689), + [sym_break_expression] = STATE(1492), + [sym_continue_expression] = STATE(1492), + [sym_index_expression] = STATE(1492), + [sym_await_expression] = STATE(1492), + [sym_field_expression] = STATE(1412), + [sym_unsafe_block] = STATE(1492), + [sym_async_block] = STATE(1492), + [sym_gen_block] = STATE(1492), + [sym_try_block] = STATE(1492), + [sym_block] = STATE(1492), + [sym__literal] = STATE(1492), + [sym_string_literal] = STATE(1530), + [sym_raw_string_literal] = STATE(1530), + [sym_boolean_literal] = STATE(1530), + [sym_line_comment] = STATE(141), + [sym_block_comment] = STATE(141), + [aux_sym_enum_variant_list_repeat1] = STATE(139), + [sym_identifier] = ACTIONS(344), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(871), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_RBRACK] = ACTIONS(884), + [anon_sym_LBRACE] = ACTIONS(348), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -32938,333 +33303,216 @@ 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(873), + [anon_sym_COMMA] = ACTIONS(886), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(874), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), + [anon_sym_async] = ACTIONS(356), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(358), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), + [anon_sym_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(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(115), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), - }, - [STATE(140)] = { - [sym_line_comment] = STATE(140), - [sym_block_comment] = STATE(140), - [aux_sym__non_special_token_repeat1] = STATE(143), - [sym_identifier] = ACTIONS(875), - [anon_sym_SEMI] = ACTIONS(640), - [anon_sym_LPAREN] = ACTIONS(877), - [anon_sym_RPAREN] = ACTIONS(877), - [anon_sym_LBRACK] = ACTIONS(877), - [anon_sym_RBRACK] = ACTIONS(877), - [anon_sym_LBRACE] = ACTIONS(877), - [anon_sym_RBRACE] = ACTIONS(877), - [anon_sym_EQ_GT] = ACTIONS(640), - [anon_sym_COLON] = ACTIONS(650), - [anon_sym_DOLLAR] = ACTIONS(875), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_STAR] = ACTIONS(650), - [anon_sym_QMARK] = ACTIONS(640), - [anon_sym_u8] = ACTIONS(875), - [anon_sym_i8] = ACTIONS(875), - [anon_sym_u16] = ACTIONS(875), - [anon_sym_i16] = ACTIONS(875), - [anon_sym_u32] = ACTIONS(875), - [anon_sym_i32] = ACTIONS(875), - [anon_sym_u64] = ACTIONS(875), - [anon_sym_i64] = ACTIONS(875), - [anon_sym_u128] = ACTIONS(875), - [anon_sym_i128] = ACTIONS(875), - [anon_sym_isize] = ACTIONS(875), - [anon_sym_usize] = ACTIONS(875), - [anon_sym_f32] = ACTIONS(875), - [anon_sym_f64] = ACTIONS(875), - [anon_sym_bool] = ACTIONS(875), - [anon_sym_str] = ACTIONS(875), - [anon_sym_char] = ACTIONS(875), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(650), - [anon_sym_PERCENT] = ACTIONS(650), - [anon_sym_CARET] = ACTIONS(650), - [anon_sym_BANG] = ACTIONS(650), - [anon_sym_AMP] = ACTIONS(650), - [anon_sym_PIPE] = ACTIONS(650), - [anon_sym_AMP_AMP] = ACTIONS(640), - [anon_sym_PIPE_PIPE] = ACTIONS(640), - [anon_sym_LT_LT] = ACTIONS(650), - [anon_sym_GT_GT] = ACTIONS(650), - [anon_sym_PLUS_EQ] = ACTIONS(640), - [anon_sym_DASH_EQ] = ACTIONS(640), - [anon_sym_STAR_EQ] = ACTIONS(640), - [anon_sym_SLASH_EQ] = ACTIONS(640), - [anon_sym_PERCENT_EQ] = ACTIONS(640), - [anon_sym_CARET_EQ] = ACTIONS(640), - [anon_sym_AMP_EQ] = ACTIONS(640), - [anon_sym_PIPE_EQ] = ACTIONS(640), - [anon_sym_LT_LT_EQ] = ACTIONS(640), - [anon_sym_GT_GT_EQ] = ACTIONS(640), - [anon_sym_EQ] = ACTIONS(650), - [anon_sym_EQ_EQ] = ACTIONS(640), - [anon_sym_BANG_EQ] = ACTIONS(640), - [anon_sym_GT] = ACTIONS(650), - [anon_sym_LT] = ACTIONS(650), - [anon_sym_GT_EQ] = ACTIONS(640), - [anon_sym_LT_EQ] = ACTIONS(640), - [anon_sym_AT] = ACTIONS(640), - [anon_sym__] = ACTIONS(650), - [anon_sym_DOT] = ACTIONS(650), - [anon_sym_DOT_DOT] = ACTIONS(650), - [anon_sym_DOT_DOT_DOT] = ACTIONS(640), - [anon_sym_DOT_DOT_EQ] = ACTIONS(640), - [anon_sym_COMMA] = ACTIONS(640), - [anon_sym_COLON_COLON] = ACTIONS(640), - [anon_sym_DASH_GT] = ACTIONS(640), - [anon_sym_POUND] = ACTIONS(640), - [anon_sym_SQUOTE] = ACTIONS(875), - [anon_sym_as] = ACTIONS(875), - [anon_sym_async] = ACTIONS(875), - [anon_sym_await] = ACTIONS(875), - [anon_sym_break] = ACTIONS(875), - [anon_sym_const] = ACTIONS(875), - [anon_sym_continue] = ACTIONS(875), - [anon_sym_default] = ACTIONS(875), - [anon_sym_enum] = ACTIONS(875), - [anon_sym_fn] = ACTIONS(875), - [anon_sym_for] = ACTIONS(875), - [anon_sym_gen] = ACTIONS(875), - [anon_sym_if] = ACTIONS(875), - [anon_sym_impl] = ACTIONS(875), - [anon_sym_let] = ACTIONS(875), - [anon_sym_loop] = ACTIONS(875), - [anon_sym_match] = ACTIONS(875), - [anon_sym_mod] = ACTIONS(875), - [anon_sym_pub] = ACTIONS(875), - [anon_sym_return] = ACTIONS(875), - [anon_sym_static] = ACTIONS(875), - [anon_sym_struct] = ACTIONS(875), - [anon_sym_trait] = ACTIONS(875), - [anon_sym_type] = ACTIONS(875), - [anon_sym_union] = ACTIONS(875), - [anon_sym_unsafe] = ACTIONS(875), - [anon_sym_use] = ACTIONS(875), - [anon_sym_where] = ACTIONS(875), - [anon_sym_while] = ACTIONS(875), - [sym_mutable_specifier] = ACTIONS(875), - [sym_integer_literal] = ACTIONS(877), - [aux_sym_string_literal_token1] = ACTIONS(877), - [sym_char_literal] = ACTIONS(877), - [anon_sym_true] = ACTIONS(875), - [anon_sym_false] = ACTIONS(875), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(875), - [sym_super] = ACTIONS(875), - [sym_crate] = ACTIONS(875), - [sym_metavariable] = ACTIONS(877), - [sym__raw_string_literal_start] = ACTIONS(877), - [sym_float_literal] = ACTIONS(877), - }, - [STATE(141)] = { - [sym_line_comment] = STATE(141), - [sym_block_comment] = STATE(141), - [aux_sym__non_special_token_repeat1] = STATE(143), - [sym_identifier] = ACTIONS(879), - [anon_sym_SEMI] = ACTIONS(640), - [anon_sym_LPAREN] = ACTIONS(881), - [anon_sym_RPAREN] = ACTIONS(881), - [anon_sym_LBRACK] = ACTIONS(881), - [anon_sym_RBRACK] = ACTIONS(881), - [anon_sym_LBRACE] = ACTIONS(881), - [anon_sym_RBRACE] = ACTIONS(881), - [anon_sym_EQ_GT] = ACTIONS(640), - [anon_sym_COLON] = ACTIONS(650), - [anon_sym_DOLLAR] = ACTIONS(879), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_STAR] = ACTIONS(650), - [anon_sym_QMARK] = ACTIONS(640), - [anon_sym_u8] = ACTIONS(879), - [anon_sym_i8] = ACTIONS(879), - [anon_sym_u16] = ACTIONS(879), - [anon_sym_i16] = ACTIONS(879), - [anon_sym_u32] = ACTIONS(879), - [anon_sym_i32] = ACTIONS(879), - [anon_sym_u64] = ACTIONS(879), - [anon_sym_i64] = ACTIONS(879), - [anon_sym_u128] = ACTIONS(879), - [anon_sym_i128] = ACTIONS(879), - [anon_sym_isize] = ACTIONS(879), - [anon_sym_usize] = ACTIONS(879), - [anon_sym_f32] = ACTIONS(879), - [anon_sym_f64] = ACTIONS(879), - [anon_sym_bool] = ACTIONS(879), - [anon_sym_str] = ACTIONS(879), - [anon_sym_char] = ACTIONS(879), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(650), - [anon_sym_PERCENT] = ACTIONS(650), - [anon_sym_CARET] = ACTIONS(650), - [anon_sym_BANG] = ACTIONS(650), - [anon_sym_AMP] = ACTIONS(650), - [anon_sym_PIPE] = ACTIONS(650), - [anon_sym_AMP_AMP] = ACTIONS(640), - [anon_sym_PIPE_PIPE] = ACTIONS(640), - [anon_sym_LT_LT] = ACTIONS(650), - [anon_sym_GT_GT] = ACTIONS(650), - [anon_sym_PLUS_EQ] = ACTIONS(640), - [anon_sym_DASH_EQ] = ACTIONS(640), - [anon_sym_STAR_EQ] = ACTIONS(640), - [anon_sym_SLASH_EQ] = ACTIONS(640), - [anon_sym_PERCENT_EQ] = ACTIONS(640), - [anon_sym_CARET_EQ] = ACTIONS(640), - [anon_sym_AMP_EQ] = ACTIONS(640), - [anon_sym_PIPE_EQ] = ACTIONS(640), - [anon_sym_LT_LT_EQ] = ACTIONS(640), - [anon_sym_GT_GT_EQ] = ACTIONS(640), - [anon_sym_EQ] = ACTIONS(650), - [anon_sym_EQ_EQ] = ACTIONS(640), - [anon_sym_BANG_EQ] = ACTIONS(640), - [anon_sym_GT] = ACTIONS(650), - [anon_sym_LT] = ACTIONS(650), - [anon_sym_GT_EQ] = ACTIONS(640), - [anon_sym_LT_EQ] = ACTIONS(640), - [anon_sym_AT] = ACTIONS(640), - [anon_sym__] = ACTIONS(650), - [anon_sym_DOT] = ACTIONS(650), - [anon_sym_DOT_DOT] = ACTIONS(650), - [anon_sym_DOT_DOT_DOT] = ACTIONS(640), - [anon_sym_DOT_DOT_EQ] = ACTIONS(640), - [anon_sym_COMMA] = ACTIONS(640), - [anon_sym_COLON_COLON] = ACTIONS(640), - [anon_sym_DASH_GT] = ACTIONS(640), - [anon_sym_POUND] = ACTIONS(640), - [anon_sym_SQUOTE] = ACTIONS(879), - [anon_sym_as] = ACTIONS(879), - [anon_sym_async] = ACTIONS(879), - [anon_sym_await] = ACTIONS(879), - [anon_sym_break] = ACTIONS(879), - [anon_sym_const] = ACTIONS(879), - [anon_sym_continue] = ACTIONS(879), - [anon_sym_default] = ACTIONS(879), - [anon_sym_enum] = ACTIONS(879), - [anon_sym_fn] = ACTIONS(879), - [anon_sym_for] = ACTIONS(879), - [anon_sym_gen] = ACTIONS(879), - [anon_sym_if] = ACTIONS(879), - [anon_sym_impl] = ACTIONS(879), - [anon_sym_let] = ACTIONS(879), - [anon_sym_loop] = ACTIONS(879), - [anon_sym_match] = ACTIONS(879), - [anon_sym_mod] = ACTIONS(879), - [anon_sym_pub] = ACTIONS(879), - [anon_sym_return] = ACTIONS(879), - [anon_sym_static] = ACTIONS(879), - [anon_sym_struct] = ACTIONS(879), - [anon_sym_trait] = ACTIONS(879), - [anon_sym_type] = ACTIONS(879), - [anon_sym_union] = ACTIONS(879), - [anon_sym_unsafe] = ACTIONS(879), - [anon_sym_use] = ACTIONS(879), - [anon_sym_where] = ACTIONS(879), - [anon_sym_while] = ACTIONS(879), - [sym_mutable_specifier] = ACTIONS(879), - [sym_integer_literal] = ACTIONS(881), - [aux_sym_string_literal_token1] = ACTIONS(881), - [sym_char_literal] = ACTIONS(881), - [anon_sym_true] = ACTIONS(879), - [anon_sym_false] = ACTIONS(879), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(879), - [sym_super] = ACTIONS(879), - [sym_crate] = ACTIONS(879), - [sym_metavariable] = ACTIONS(881), - [sym__raw_string_literal_start] = ACTIONS(881), - [sym_float_literal] = ACTIONS(881), + [anon_sym_static] = ACTIONS(372), + [anon_sym_union] = ACTIONS(360), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [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(142)] = { - [sym_attribute_item] = STATE(1031), - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1608), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1520), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), [sym_line_comment] = STATE(142), [sym_block_comment] = STATE(142), - [aux_sym_enum_variant_list_repeat1] = STATE(138), - [sym_identifier] = ACTIONS(339), + [aux_sym__non_special_token_repeat1] = STATE(142), + [sym_identifier] = ACTIONS(888), + [anon_sym_SEMI] = ACTIONS(890), + [anon_sym_LPAREN] = ACTIONS(893), + [anon_sym_RPAREN] = ACTIONS(893), + [anon_sym_LBRACK] = ACTIONS(893), + [anon_sym_RBRACK] = ACTIONS(893), + [anon_sym_LBRACE] = ACTIONS(893), + [anon_sym_RBRACE] = ACTIONS(893), + [anon_sym_EQ_GT] = ACTIONS(890), + [anon_sym_COLON] = ACTIONS(895), + [anon_sym_DOLLAR] = ACTIONS(888), + [anon_sym_PLUS] = ACTIONS(895), + [anon_sym_STAR] = ACTIONS(895), + [anon_sym_QMARK] = ACTIONS(890), + [anon_sym_u8] = ACTIONS(888), + [anon_sym_i8] = ACTIONS(888), + [anon_sym_u16] = ACTIONS(888), + [anon_sym_i16] = ACTIONS(888), + [anon_sym_u32] = ACTIONS(888), + [anon_sym_i32] = ACTIONS(888), + [anon_sym_u64] = ACTIONS(888), + [anon_sym_i64] = ACTIONS(888), + [anon_sym_u128] = ACTIONS(888), + [anon_sym_i128] = ACTIONS(888), + [anon_sym_isize] = ACTIONS(888), + [anon_sym_usize] = ACTIONS(888), + [anon_sym_f32] = ACTIONS(888), + [anon_sym_f64] = ACTIONS(888), + [anon_sym_bool] = ACTIONS(888), + [anon_sym_str] = ACTIONS(888), + [anon_sym_char] = ACTIONS(888), + [anon_sym_DASH] = ACTIONS(895), + [anon_sym_SLASH] = ACTIONS(895), + [anon_sym_PERCENT] = ACTIONS(895), + [anon_sym_CARET] = ACTIONS(895), + [anon_sym_BANG] = ACTIONS(895), + [anon_sym_AMP] = ACTIONS(895), + [anon_sym_PIPE] = ACTIONS(895), + [anon_sym_AMP_AMP] = ACTIONS(890), + [anon_sym_PIPE_PIPE] = ACTIONS(890), + [anon_sym_LT_LT] = ACTIONS(895), + [anon_sym_GT_GT] = ACTIONS(895), + [anon_sym_PLUS_EQ] = ACTIONS(890), + [anon_sym_DASH_EQ] = ACTIONS(890), + [anon_sym_STAR_EQ] = ACTIONS(890), + [anon_sym_SLASH_EQ] = ACTIONS(890), + [anon_sym_PERCENT_EQ] = ACTIONS(890), + [anon_sym_CARET_EQ] = ACTIONS(890), + [anon_sym_AMP_EQ] = ACTIONS(890), + [anon_sym_PIPE_EQ] = ACTIONS(890), + [anon_sym_LT_LT_EQ] = ACTIONS(890), + [anon_sym_GT_GT_EQ] = ACTIONS(890), + [anon_sym_EQ] = ACTIONS(895), + [anon_sym_EQ_EQ] = ACTIONS(890), + [anon_sym_BANG_EQ] = ACTIONS(890), + [anon_sym_GT] = ACTIONS(895), + [anon_sym_LT] = ACTIONS(895), + [anon_sym_GT_EQ] = ACTIONS(890), + [anon_sym_LT_EQ] = ACTIONS(890), + [anon_sym_AT] = ACTIONS(890), + [anon_sym__] = ACTIONS(895), + [anon_sym_DOT] = ACTIONS(895), + [anon_sym_DOT_DOT] = ACTIONS(895), + [anon_sym_DOT_DOT_DOT] = ACTIONS(890), + [anon_sym_DOT_DOT_EQ] = ACTIONS(890), + [anon_sym_COMMA] = ACTIONS(890), + [anon_sym_COLON_COLON] = ACTIONS(890), + [anon_sym_DASH_GT] = ACTIONS(890), + [anon_sym_POUND] = ACTIONS(890), + [anon_sym_SQUOTE] = ACTIONS(888), + [anon_sym_as] = ACTIONS(888), + [anon_sym_async] = ACTIONS(888), + [anon_sym_await] = ACTIONS(888), + [anon_sym_break] = ACTIONS(888), + [anon_sym_const] = ACTIONS(888), + [anon_sym_continue] = ACTIONS(888), + [anon_sym_default] = ACTIONS(888), + [anon_sym_enum] = ACTIONS(888), + [anon_sym_fn] = ACTIONS(888), + [anon_sym_for] = ACTIONS(888), + [anon_sym_gen] = ACTIONS(888), + [anon_sym_if] = ACTIONS(888), + [anon_sym_impl] = ACTIONS(888), + [anon_sym_let] = ACTIONS(888), + [anon_sym_loop] = ACTIONS(888), + [anon_sym_match] = ACTIONS(888), + [anon_sym_mod] = ACTIONS(888), + [anon_sym_pub] = ACTIONS(888), + [anon_sym_return] = ACTIONS(888), + [anon_sym_static] = ACTIONS(888), + [anon_sym_struct] = ACTIONS(888), + [anon_sym_trait] = ACTIONS(888), + [anon_sym_type] = ACTIONS(888), + [anon_sym_union] = ACTIONS(888), + [anon_sym_unsafe] = ACTIONS(888), + [anon_sym_use] = ACTIONS(888), + [anon_sym_where] = ACTIONS(888), + [anon_sym_while] = ACTIONS(888), + [sym_mutable_specifier] = ACTIONS(888), + [sym_integer_literal] = ACTIONS(893), + [aux_sym_string_literal_token1] = ACTIONS(893), + [sym_char_literal] = ACTIONS(893), + [anon_sym_true] = ACTIONS(888), + [anon_sym_false] = ACTIONS(888), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(888), + [sym_super] = ACTIONS(888), + [sym_crate] = ACTIONS(888), + [sym_metavariable] = ACTIONS(893), + [sym__raw_string_literal_start] = ACTIONS(893), + [sym_float_literal] = ACTIONS(893), + }, + [STATE(143)] = { + [sym_attribute_item] = STATE(1038), + [sym_bracketed_type] = STATE(3752), + [sym_generic_function] = STATE(1492), + [sym_generic_type_with_turbofish] = STATE(3039), + [sym__expression_except_range] = STATE(1409), + [sym__expression] = STATE(1684), + [sym_macro_invocation] = STATE(1529), + [sym_scoped_identifier] = STATE(1540), + [sym_scoped_type_identifier_in_expression_position] = STATE(3335), + [sym_range_expression] = STATE(1505), + [sym_unary_expression] = STATE(1492), + [sym_try_expression] = STATE(1492), + [sym_reference_expression] = STATE(1492), + [sym_binary_expression] = STATE(1492), + [sym_assignment_expression] = STATE(1492), + [sym_compound_assignment_expr] = STATE(1492), + [sym_type_cast_expression] = STATE(1492), + [sym_return_expression] = STATE(1492), + [sym_yield_expression] = STATE(1492), + [sym_call_expression] = STATE(1492), + [sym_array_expression] = STATE(1492), + [sym_parenthesized_expression] = STATE(1492), + [sym_tuple_expression] = STATE(1492), + [sym_unit_expression] = STATE(1492), + [sym_struct_expression] = STATE(1492), + [sym_if_expression] = STATE(1492), + [sym_match_expression] = STATE(1492), + [sym_while_expression] = STATE(1492), + [sym_loop_expression] = STATE(1492), + [sym_for_expression] = STATE(1492), + [sym_const_block] = STATE(1492), + [sym_closure_expression] = STATE(1492), + [sym_closure_parameters] = STATE(229), + [sym_label] = STATE(3689), + [sym_break_expression] = STATE(1492), + [sym_continue_expression] = STATE(1492), + [sym_index_expression] = STATE(1492), + [sym_await_expression] = STATE(1492), + [sym_field_expression] = STATE(1412), + [sym_unsafe_block] = STATE(1492), + [sym_async_block] = STATE(1492), + [sym_gen_block] = STATE(1492), + [sym_try_block] = STATE(1492), + [sym_block] = STATE(1492), + [sym__literal] = STATE(1492), + [sym_string_literal] = STATE(1530), + [sym_raw_string_literal] = STATE(1530), + [sym_boolean_literal] = STATE(1530), + [sym_line_comment] = STATE(143), + [sym_block_comment] = STATE(143), + [aux_sym_enum_variant_list_repeat1] = STATE(211), + [sym_identifier] = ACTIONS(344), [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(898), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(883), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(348), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -33289,216 +33537,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COMMA] = ACTIONS(885), + [anon_sym_COMMA] = ACTIONS(900), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(874), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), + [anon_sym_async] = ACTIONS(356), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(358), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), + [anon_sym_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(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(115), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), - }, - [STATE(143)] = { - [sym_line_comment] = STATE(143), - [sym_block_comment] = STATE(143), - [aux_sym__non_special_token_repeat1] = STATE(143), - [sym_identifier] = ACTIONS(887), - [anon_sym_SEMI] = ACTIONS(889), - [anon_sym_LPAREN] = ACTIONS(892), - [anon_sym_RPAREN] = ACTIONS(892), - [anon_sym_LBRACK] = ACTIONS(892), - [anon_sym_RBRACK] = ACTIONS(892), - [anon_sym_LBRACE] = ACTIONS(892), - [anon_sym_RBRACE] = ACTIONS(892), - [anon_sym_EQ_GT] = ACTIONS(889), - [anon_sym_COLON] = ACTIONS(894), - [anon_sym_DOLLAR] = ACTIONS(887), - [anon_sym_PLUS] = ACTIONS(894), - [anon_sym_STAR] = ACTIONS(894), - [anon_sym_QMARK] = ACTIONS(889), - [anon_sym_u8] = ACTIONS(887), - [anon_sym_i8] = ACTIONS(887), - [anon_sym_u16] = ACTIONS(887), - [anon_sym_i16] = ACTIONS(887), - [anon_sym_u32] = ACTIONS(887), - [anon_sym_i32] = ACTIONS(887), - [anon_sym_u64] = ACTIONS(887), - [anon_sym_i64] = ACTIONS(887), - [anon_sym_u128] = ACTIONS(887), - [anon_sym_i128] = ACTIONS(887), - [anon_sym_isize] = ACTIONS(887), - [anon_sym_usize] = ACTIONS(887), - [anon_sym_f32] = ACTIONS(887), - [anon_sym_f64] = ACTIONS(887), - [anon_sym_bool] = ACTIONS(887), - [anon_sym_str] = ACTIONS(887), - [anon_sym_char] = ACTIONS(887), - [anon_sym_DASH] = ACTIONS(894), - [anon_sym_SLASH] = ACTIONS(894), - [anon_sym_PERCENT] = ACTIONS(894), - [anon_sym_CARET] = ACTIONS(894), - [anon_sym_BANG] = ACTIONS(894), - [anon_sym_AMP] = ACTIONS(894), - [anon_sym_PIPE] = ACTIONS(894), - [anon_sym_AMP_AMP] = ACTIONS(889), - [anon_sym_PIPE_PIPE] = ACTIONS(889), - [anon_sym_LT_LT] = ACTIONS(894), - [anon_sym_GT_GT] = ACTIONS(894), - [anon_sym_PLUS_EQ] = ACTIONS(889), - [anon_sym_DASH_EQ] = ACTIONS(889), - [anon_sym_STAR_EQ] = ACTIONS(889), - [anon_sym_SLASH_EQ] = ACTIONS(889), - [anon_sym_PERCENT_EQ] = ACTIONS(889), - [anon_sym_CARET_EQ] = ACTIONS(889), - [anon_sym_AMP_EQ] = ACTIONS(889), - [anon_sym_PIPE_EQ] = ACTIONS(889), - [anon_sym_LT_LT_EQ] = ACTIONS(889), - [anon_sym_GT_GT_EQ] = ACTIONS(889), - [anon_sym_EQ] = ACTIONS(894), - [anon_sym_EQ_EQ] = ACTIONS(889), - [anon_sym_BANG_EQ] = ACTIONS(889), - [anon_sym_GT] = ACTIONS(894), - [anon_sym_LT] = ACTIONS(894), - [anon_sym_GT_EQ] = ACTIONS(889), - [anon_sym_LT_EQ] = ACTIONS(889), - [anon_sym_AT] = ACTIONS(889), - [anon_sym__] = ACTIONS(894), - [anon_sym_DOT] = ACTIONS(894), - [anon_sym_DOT_DOT] = ACTIONS(894), - [anon_sym_DOT_DOT_DOT] = ACTIONS(889), - [anon_sym_DOT_DOT_EQ] = ACTIONS(889), - [anon_sym_COMMA] = ACTIONS(889), - [anon_sym_COLON_COLON] = ACTIONS(889), - [anon_sym_DASH_GT] = ACTIONS(889), - [anon_sym_POUND] = ACTIONS(889), - [anon_sym_SQUOTE] = ACTIONS(887), - [anon_sym_as] = ACTIONS(887), - [anon_sym_async] = ACTIONS(887), - [anon_sym_await] = ACTIONS(887), - [anon_sym_break] = ACTIONS(887), - [anon_sym_const] = ACTIONS(887), - [anon_sym_continue] = ACTIONS(887), - [anon_sym_default] = ACTIONS(887), - [anon_sym_enum] = ACTIONS(887), - [anon_sym_fn] = ACTIONS(887), - [anon_sym_for] = ACTIONS(887), - [anon_sym_gen] = ACTIONS(887), - [anon_sym_if] = ACTIONS(887), - [anon_sym_impl] = ACTIONS(887), - [anon_sym_let] = ACTIONS(887), - [anon_sym_loop] = ACTIONS(887), - [anon_sym_match] = ACTIONS(887), - [anon_sym_mod] = ACTIONS(887), - [anon_sym_pub] = ACTIONS(887), - [anon_sym_return] = ACTIONS(887), - [anon_sym_static] = ACTIONS(887), - [anon_sym_struct] = ACTIONS(887), - [anon_sym_trait] = ACTIONS(887), - [anon_sym_type] = ACTIONS(887), - [anon_sym_union] = ACTIONS(887), - [anon_sym_unsafe] = ACTIONS(887), - [anon_sym_use] = ACTIONS(887), - [anon_sym_where] = ACTIONS(887), - [anon_sym_while] = ACTIONS(887), - [sym_mutable_specifier] = ACTIONS(887), - [sym_integer_literal] = ACTIONS(892), - [aux_sym_string_literal_token1] = ACTIONS(892), - [sym_char_literal] = ACTIONS(892), - [anon_sym_true] = ACTIONS(887), - [anon_sym_false] = ACTIONS(887), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(887), - [sym_super] = ACTIONS(887), - [sym_crate] = ACTIONS(887), - [sym_metavariable] = ACTIONS(892), - [sym__raw_string_literal_start] = ACTIONS(892), - [sym_float_literal] = ACTIONS(892), + [anon_sym_static] = ACTIONS(372), + [anon_sym_union] = ACTIONS(360), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [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(144)] = { - [sym_attribute_item] = STATE(1031), - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1657), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1520), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), + [sym_attribute_item] = STATE(1038), + [sym_bracketed_type] = STATE(3752), + [sym_generic_function] = STATE(1492), + [sym_generic_type_with_turbofish] = STATE(3039), + [sym__expression_except_range] = STATE(1409), + [sym__expression] = STATE(1622), + [sym_macro_invocation] = STATE(1529), + [sym_scoped_identifier] = STATE(1540), + [sym_scoped_type_identifier_in_expression_position] = STATE(3335), + [sym_range_expression] = STATE(1505), + [sym_unary_expression] = STATE(1492), + [sym_try_expression] = STATE(1492), + [sym_reference_expression] = STATE(1492), + [sym_binary_expression] = STATE(1492), + [sym_assignment_expression] = STATE(1492), + [sym_compound_assignment_expr] = STATE(1492), + [sym_type_cast_expression] = STATE(1492), + [sym_return_expression] = STATE(1492), + [sym_yield_expression] = STATE(1492), + [sym_call_expression] = STATE(1492), + [sym_array_expression] = STATE(1492), + [sym_parenthesized_expression] = STATE(1492), + [sym_tuple_expression] = STATE(1492), + [sym_unit_expression] = STATE(1492), + [sym_struct_expression] = STATE(1492), + [sym_if_expression] = STATE(1492), + [sym_match_expression] = STATE(1492), + [sym_while_expression] = STATE(1492), + [sym_loop_expression] = STATE(1492), + [sym_for_expression] = STATE(1492), + [sym_const_block] = STATE(1492), + [sym_closure_expression] = STATE(1492), + [sym_closure_parameters] = STATE(229), + [sym_label] = STATE(3689), + [sym_break_expression] = STATE(1492), + [sym_continue_expression] = STATE(1492), + [sym_index_expression] = STATE(1492), + [sym_await_expression] = STATE(1492), + [sym_field_expression] = STATE(1412), + [sym_unsafe_block] = STATE(1492), + [sym_async_block] = STATE(1492), + [sym_gen_block] = STATE(1492), + [sym_try_block] = STATE(1492), + [sym_block] = STATE(1492), + [sym__literal] = STATE(1492), + [sym_string_literal] = STATE(1530), + [sym_raw_string_literal] = STATE(1530), + [sym_boolean_literal] = STATE(1530), [sym_line_comment] = STATE(144), [sym_block_comment] = STATE(144), - [aux_sym_enum_variant_list_repeat1] = STATE(213), - [sym_identifier] = ACTIONS(339), + [aux_sym_enum_variant_list_repeat1] = STATE(141), + [sym_identifier] = ACTIONS(344), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(897), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_RBRACK] = ACTIONS(902), + [anon_sym_LBRACE] = ACTIONS(348), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -33523,331 +33654,331 @@ 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(899), + [anon_sym_COMMA] = ACTIONS(904), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(874), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), + [anon_sym_async] = ACTIONS(356), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(358), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), + [anon_sym_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(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(115), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [anon_sym_static] = ACTIONS(372), + [anon_sym_union] = ACTIONS(360), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [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(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3056), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1724), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1591), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_let_condition] = STATE(3090), - [sym__let_chain] = STATE(3116), - [sym__condition] = STATE(2748), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), [sym_line_comment] = STATE(145), [sym_block_comment] = STATE(145), - [sym_identifier] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(901), - [anon_sym_u8] = ACTIONS(469), - [anon_sym_i8] = ACTIONS(469), - [anon_sym_u16] = ACTIONS(469), - [anon_sym_i16] = ACTIONS(469), - [anon_sym_u32] = ACTIONS(469), - [anon_sym_i32] = ACTIONS(469), - [anon_sym_u64] = ACTIONS(469), - [anon_sym_i64] = ACTIONS(469), - [anon_sym_u128] = ACTIONS(469), - [anon_sym_i128] = ACTIONS(469), - [anon_sym_isize] = ACTIONS(469), - [anon_sym_usize] = ACTIONS(469), - [anon_sym_f32] = ACTIONS(469), - [anon_sym_f64] = ACTIONS(469), - [anon_sym_bool] = ACTIONS(469), - [anon_sym_str] = ACTIONS(469), - [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(901), - [anon_sym_BANG] = ACTIONS(901), - [anon_sym_AMP] = ACTIONS(903), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(905), - [anon_sym_COLON_COLON] = ACTIONS(473), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(477), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), - [anon_sym_if] = ACTIONS(361), - [anon_sym_let] = ACTIONS(907), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(477), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(489), - [sym_super] = ACTIONS(491), - [sym_crate] = ACTIONS(491), - [sym_metavariable] = ACTIONS(493), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [sym_identifier] = ACTIONS(862), + [anon_sym_SEMI] = ACTIONS(864), + [anon_sym_LPAREN] = ACTIONS(864), + [anon_sym_RPAREN] = ACTIONS(864), + [anon_sym_LBRACK] = ACTIONS(864), + [anon_sym_RBRACK] = ACTIONS(864), + [anon_sym_LBRACE] = ACTIONS(864), + [anon_sym_RBRACE] = ACTIONS(864), + [anon_sym_EQ_GT] = ACTIONS(864), + [anon_sym_COLON] = ACTIONS(862), + [anon_sym_DOLLAR] = ACTIONS(862), + [anon_sym_PLUS] = ACTIONS(862), + [anon_sym_STAR] = ACTIONS(862), + [anon_sym_QMARK] = ACTIONS(864), + [anon_sym_u8] = ACTIONS(862), + [anon_sym_i8] = ACTIONS(862), + [anon_sym_u16] = ACTIONS(862), + [anon_sym_i16] = ACTIONS(862), + [anon_sym_u32] = ACTIONS(862), + [anon_sym_i32] = ACTIONS(862), + [anon_sym_u64] = ACTIONS(862), + [anon_sym_i64] = ACTIONS(862), + [anon_sym_u128] = ACTIONS(862), + [anon_sym_i128] = ACTIONS(862), + [anon_sym_isize] = ACTIONS(862), + [anon_sym_usize] = ACTIONS(862), + [anon_sym_f32] = ACTIONS(862), + [anon_sym_f64] = ACTIONS(862), + [anon_sym_bool] = ACTIONS(862), + [anon_sym_str] = ACTIONS(862), + [anon_sym_char] = ACTIONS(862), + [anon_sym_DASH] = ACTIONS(862), + [anon_sym_SLASH] = ACTIONS(862), + [anon_sym_PERCENT] = ACTIONS(862), + [anon_sym_CARET] = ACTIONS(862), + [anon_sym_BANG] = ACTIONS(862), + [anon_sym_AMP] = ACTIONS(862), + [anon_sym_PIPE] = ACTIONS(862), + [anon_sym_AMP_AMP] = ACTIONS(864), + [anon_sym_PIPE_PIPE] = ACTIONS(864), + [anon_sym_LT_LT] = ACTIONS(862), + [anon_sym_GT_GT] = ACTIONS(862), + [anon_sym_PLUS_EQ] = ACTIONS(864), + [anon_sym_DASH_EQ] = ACTIONS(864), + [anon_sym_STAR_EQ] = ACTIONS(864), + [anon_sym_SLASH_EQ] = ACTIONS(864), + [anon_sym_PERCENT_EQ] = ACTIONS(864), + [anon_sym_CARET_EQ] = ACTIONS(864), + [anon_sym_AMP_EQ] = ACTIONS(864), + [anon_sym_PIPE_EQ] = ACTIONS(864), + [anon_sym_LT_LT_EQ] = ACTIONS(864), + [anon_sym_GT_GT_EQ] = ACTIONS(864), + [anon_sym_EQ] = ACTIONS(862), + [anon_sym_EQ_EQ] = ACTIONS(864), + [anon_sym_BANG_EQ] = ACTIONS(864), + [anon_sym_GT] = ACTIONS(862), + [anon_sym_LT] = ACTIONS(862), + [anon_sym_GT_EQ] = ACTIONS(864), + [anon_sym_LT_EQ] = ACTIONS(864), + [anon_sym_AT] = ACTIONS(864), + [anon_sym__] = ACTIONS(862), + [anon_sym_DOT] = ACTIONS(862), + [anon_sym_DOT_DOT] = ACTIONS(862), + [anon_sym_DOT_DOT_DOT] = ACTIONS(864), + [anon_sym_DOT_DOT_EQ] = ACTIONS(864), + [anon_sym_COMMA] = ACTIONS(864), + [anon_sym_COLON_COLON] = ACTIONS(864), + [anon_sym_DASH_GT] = ACTIONS(864), + [anon_sym_POUND] = ACTIONS(864), + [anon_sym_SQUOTE] = ACTIONS(862), + [anon_sym_as] = ACTIONS(862), + [anon_sym_async] = ACTIONS(862), + [anon_sym_await] = ACTIONS(862), + [anon_sym_break] = ACTIONS(862), + [anon_sym_const] = ACTIONS(862), + [anon_sym_continue] = ACTIONS(862), + [anon_sym_default] = ACTIONS(862), + [anon_sym_enum] = ACTIONS(862), + [anon_sym_fn] = ACTIONS(862), + [anon_sym_for] = ACTIONS(862), + [anon_sym_gen] = ACTIONS(862), + [anon_sym_if] = ACTIONS(862), + [anon_sym_impl] = ACTIONS(862), + [anon_sym_let] = ACTIONS(862), + [anon_sym_loop] = ACTIONS(862), + [anon_sym_match] = ACTIONS(862), + [anon_sym_mod] = ACTIONS(862), + [anon_sym_pub] = ACTIONS(862), + [anon_sym_return] = ACTIONS(862), + [anon_sym_static] = ACTIONS(862), + [anon_sym_struct] = ACTIONS(862), + [anon_sym_trait] = ACTIONS(862), + [anon_sym_type] = ACTIONS(862), + [anon_sym_union] = ACTIONS(862), + [anon_sym_unsafe] = ACTIONS(862), + [anon_sym_use] = ACTIONS(862), + [anon_sym_where] = ACTIONS(862), + [anon_sym_while] = ACTIONS(862), + [sym_mutable_specifier] = ACTIONS(862), + [sym_integer_literal] = ACTIONS(864), + [aux_sym_string_literal_token1] = ACTIONS(864), + [sym_char_literal] = ACTIONS(864), + [anon_sym_true] = ACTIONS(862), + [anon_sym_false] = ACTIONS(862), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(862), + [sym_super] = ACTIONS(862), + [sym_crate] = ACTIONS(862), + [sym_metavariable] = ACTIONS(864), + [sym__raw_string_literal_start] = ACTIONS(864), + [sym_float_literal] = ACTIONS(864), }, [STATE(146)] = { [sym_line_comment] = STATE(146), [sym_block_comment] = STATE(146), - [sym_identifier] = ACTIONS(909), - [anon_sym_SEMI] = ACTIONS(911), - [anon_sym_LPAREN] = ACTIONS(911), - [anon_sym_RPAREN] = ACTIONS(911), - [anon_sym_LBRACK] = ACTIONS(911), - [anon_sym_RBRACK] = ACTIONS(911), - [anon_sym_LBRACE] = ACTIONS(911), - [anon_sym_RBRACE] = ACTIONS(911), - [anon_sym_EQ_GT] = ACTIONS(911), - [anon_sym_COLON] = ACTIONS(909), - [anon_sym_DOLLAR] = ACTIONS(909), - [anon_sym_PLUS] = ACTIONS(909), - [anon_sym_STAR] = ACTIONS(909), - [anon_sym_QMARK] = ACTIONS(911), - [anon_sym_u8] = ACTIONS(909), - [anon_sym_i8] = ACTIONS(909), - [anon_sym_u16] = ACTIONS(909), - [anon_sym_i16] = ACTIONS(909), - [anon_sym_u32] = ACTIONS(909), - [anon_sym_i32] = ACTIONS(909), - [anon_sym_u64] = ACTIONS(909), - [anon_sym_i64] = ACTIONS(909), - [anon_sym_u128] = ACTIONS(909), - [anon_sym_i128] = ACTIONS(909), - [anon_sym_isize] = ACTIONS(909), - [anon_sym_usize] = ACTIONS(909), - [anon_sym_f32] = ACTIONS(909), - [anon_sym_f64] = ACTIONS(909), - [anon_sym_bool] = ACTIONS(909), - [anon_sym_str] = ACTIONS(909), - [anon_sym_char] = ACTIONS(909), - [anon_sym_DASH] = ACTIONS(909), - [anon_sym_SLASH] = ACTIONS(909), - [anon_sym_PERCENT] = ACTIONS(909), - [anon_sym_CARET] = ACTIONS(909), - [anon_sym_BANG] = ACTIONS(909), - [anon_sym_AMP] = ACTIONS(909), - [anon_sym_PIPE] = ACTIONS(909), - [anon_sym_AMP_AMP] = ACTIONS(911), - [anon_sym_PIPE_PIPE] = ACTIONS(911), - [anon_sym_LT_LT] = ACTIONS(909), - [anon_sym_GT_GT] = ACTIONS(909), - [anon_sym_PLUS_EQ] = ACTIONS(911), - [anon_sym_DASH_EQ] = ACTIONS(911), - [anon_sym_STAR_EQ] = ACTIONS(911), - [anon_sym_SLASH_EQ] = ACTIONS(911), - [anon_sym_PERCENT_EQ] = ACTIONS(911), - [anon_sym_CARET_EQ] = ACTIONS(911), - [anon_sym_AMP_EQ] = ACTIONS(911), - [anon_sym_PIPE_EQ] = ACTIONS(911), - [anon_sym_LT_LT_EQ] = ACTIONS(911), - [anon_sym_GT_GT_EQ] = ACTIONS(911), - [anon_sym_EQ] = ACTIONS(909), - [anon_sym_EQ_EQ] = ACTIONS(911), - [anon_sym_BANG_EQ] = ACTIONS(911), - [anon_sym_GT] = ACTIONS(909), - [anon_sym_LT] = ACTIONS(909), - [anon_sym_GT_EQ] = ACTIONS(911), - [anon_sym_LT_EQ] = ACTIONS(911), - [anon_sym_AT] = ACTIONS(911), - [anon_sym__] = ACTIONS(909), - [anon_sym_DOT] = ACTIONS(909), - [anon_sym_DOT_DOT] = ACTIONS(909), - [anon_sym_DOT_DOT_DOT] = ACTIONS(911), - [anon_sym_DOT_DOT_EQ] = ACTIONS(911), - [anon_sym_COMMA] = ACTIONS(911), - [anon_sym_COLON_COLON] = ACTIONS(911), - [anon_sym_DASH_GT] = ACTIONS(911), - [anon_sym_POUND] = ACTIONS(911), - [anon_sym_SQUOTE] = ACTIONS(909), - [anon_sym_as] = ACTIONS(909), - [anon_sym_async] = ACTIONS(909), - [anon_sym_await] = ACTIONS(909), - [anon_sym_break] = ACTIONS(909), - [anon_sym_const] = ACTIONS(909), - [anon_sym_continue] = ACTIONS(909), - [anon_sym_default] = ACTIONS(909), - [anon_sym_enum] = ACTIONS(909), - [anon_sym_fn] = ACTIONS(909), - [anon_sym_for] = ACTIONS(909), - [anon_sym_gen] = ACTIONS(909), - [anon_sym_if] = ACTIONS(909), - [anon_sym_impl] = ACTIONS(909), - [anon_sym_let] = ACTIONS(909), - [anon_sym_loop] = ACTIONS(909), - [anon_sym_match] = ACTIONS(909), - [anon_sym_mod] = ACTIONS(909), - [anon_sym_pub] = ACTIONS(909), - [anon_sym_return] = ACTIONS(909), - [anon_sym_static] = ACTIONS(909), - [anon_sym_struct] = ACTIONS(909), - [anon_sym_trait] = ACTIONS(909), - [anon_sym_type] = ACTIONS(909), - [anon_sym_union] = ACTIONS(909), - [anon_sym_unsafe] = ACTIONS(909), - [anon_sym_use] = ACTIONS(909), - [anon_sym_where] = ACTIONS(909), - [anon_sym_while] = ACTIONS(909), - [sym_mutable_specifier] = ACTIONS(909), - [sym_integer_literal] = ACTIONS(911), - [aux_sym_string_literal_token1] = ACTIONS(911), - [sym_char_literal] = ACTIONS(911), - [anon_sym_true] = ACTIONS(909), - [anon_sym_false] = ACTIONS(909), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(909), - [sym_super] = ACTIONS(909), - [sym_crate] = ACTIONS(909), - [sym_metavariable] = ACTIONS(911), - [sym__raw_string_literal_start] = ACTIONS(911), - [sym_float_literal] = ACTIONS(911), + [sym_identifier] = ACTIONS(906), + [anon_sym_SEMI] = ACTIONS(908), + [anon_sym_LPAREN] = ACTIONS(908), + [anon_sym_RPAREN] = ACTIONS(908), + [anon_sym_LBRACK] = ACTIONS(908), + [anon_sym_RBRACK] = ACTIONS(908), + [anon_sym_LBRACE] = ACTIONS(908), + [anon_sym_RBRACE] = ACTIONS(908), + [anon_sym_EQ_GT] = ACTIONS(908), + [anon_sym_COLON] = ACTIONS(906), + [anon_sym_DOLLAR] = ACTIONS(906), + [anon_sym_PLUS] = ACTIONS(906), + [anon_sym_STAR] = ACTIONS(906), + [anon_sym_QMARK] = ACTIONS(908), + [anon_sym_u8] = ACTIONS(906), + [anon_sym_i8] = ACTIONS(906), + [anon_sym_u16] = ACTIONS(906), + [anon_sym_i16] = ACTIONS(906), + [anon_sym_u32] = ACTIONS(906), + [anon_sym_i32] = ACTIONS(906), + [anon_sym_u64] = ACTIONS(906), + [anon_sym_i64] = ACTIONS(906), + [anon_sym_u128] = ACTIONS(906), + [anon_sym_i128] = ACTIONS(906), + [anon_sym_isize] = ACTIONS(906), + [anon_sym_usize] = ACTIONS(906), + [anon_sym_f32] = ACTIONS(906), + [anon_sym_f64] = ACTIONS(906), + [anon_sym_bool] = ACTIONS(906), + [anon_sym_str] = ACTIONS(906), + [anon_sym_char] = ACTIONS(906), + [anon_sym_DASH] = ACTIONS(906), + [anon_sym_SLASH] = ACTIONS(906), + [anon_sym_PERCENT] = ACTIONS(906), + [anon_sym_CARET] = ACTIONS(906), + [anon_sym_BANG] = ACTIONS(906), + [anon_sym_AMP] = ACTIONS(906), + [anon_sym_PIPE] = ACTIONS(906), + [anon_sym_AMP_AMP] = ACTIONS(908), + [anon_sym_PIPE_PIPE] = ACTIONS(908), + [anon_sym_LT_LT] = ACTIONS(906), + [anon_sym_GT_GT] = ACTIONS(906), + [anon_sym_PLUS_EQ] = ACTIONS(908), + [anon_sym_DASH_EQ] = ACTIONS(908), + [anon_sym_STAR_EQ] = ACTIONS(908), + [anon_sym_SLASH_EQ] = ACTIONS(908), + [anon_sym_PERCENT_EQ] = ACTIONS(908), + [anon_sym_CARET_EQ] = ACTIONS(908), + [anon_sym_AMP_EQ] = ACTIONS(908), + [anon_sym_PIPE_EQ] = ACTIONS(908), + [anon_sym_LT_LT_EQ] = ACTIONS(908), + [anon_sym_GT_GT_EQ] = ACTIONS(908), + [anon_sym_EQ] = ACTIONS(906), + [anon_sym_EQ_EQ] = ACTIONS(908), + [anon_sym_BANG_EQ] = ACTIONS(908), + [anon_sym_GT] = ACTIONS(906), + [anon_sym_LT] = ACTIONS(906), + [anon_sym_GT_EQ] = ACTIONS(908), + [anon_sym_LT_EQ] = ACTIONS(908), + [anon_sym_AT] = ACTIONS(908), + [anon_sym__] = ACTIONS(906), + [anon_sym_DOT] = ACTIONS(906), + [anon_sym_DOT_DOT] = ACTIONS(906), + [anon_sym_DOT_DOT_DOT] = ACTIONS(908), + [anon_sym_DOT_DOT_EQ] = ACTIONS(908), + [anon_sym_COMMA] = ACTIONS(908), + [anon_sym_COLON_COLON] = ACTIONS(908), + [anon_sym_DASH_GT] = ACTIONS(908), + [anon_sym_POUND] = ACTIONS(908), + [anon_sym_SQUOTE] = ACTIONS(906), + [anon_sym_as] = ACTIONS(906), + [anon_sym_async] = ACTIONS(906), + [anon_sym_await] = ACTIONS(906), + [anon_sym_break] = ACTIONS(906), + [anon_sym_const] = ACTIONS(906), + [anon_sym_continue] = ACTIONS(906), + [anon_sym_default] = ACTIONS(906), + [anon_sym_enum] = ACTIONS(906), + [anon_sym_fn] = ACTIONS(906), + [anon_sym_for] = ACTIONS(906), + [anon_sym_gen] = ACTIONS(906), + [anon_sym_if] = ACTIONS(906), + [anon_sym_impl] = ACTIONS(906), + [anon_sym_let] = ACTIONS(906), + [anon_sym_loop] = ACTIONS(906), + [anon_sym_match] = ACTIONS(906), + [anon_sym_mod] = ACTIONS(906), + [anon_sym_pub] = ACTIONS(906), + [anon_sym_return] = ACTIONS(906), + [anon_sym_static] = ACTIONS(906), + [anon_sym_struct] = ACTIONS(906), + [anon_sym_trait] = ACTIONS(906), + [anon_sym_type] = ACTIONS(906), + [anon_sym_union] = ACTIONS(906), + [anon_sym_unsafe] = ACTIONS(906), + [anon_sym_use] = ACTIONS(906), + [anon_sym_where] = ACTIONS(906), + [anon_sym_while] = ACTIONS(906), + [sym_mutable_specifier] = ACTIONS(906), + [sym_integer_literal] = ACTIONS(908), + [aux_sym_string_literal_token1] = ACTIONS(908), + [sym_char_literal] = ACTIONS(908), + [anon_sym_true] = ACTIONS(906), + [anon_sym_false] = ACTIONS(906), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(906), + [sym_super] = ACTIONS(906), + [sym_crate] = ACTIONS(906), + [sym_metavariable] = ACTIONS(908), + [sym__raw_string_literal_start] = ACTIONS(908), + [sym_float_literal] = ACTIONS(908), }, [STATE(147)] = { - [sym_attribute_item] = STATE(1031), - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1644), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1520), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), + [sym_attribute_item] = STATE(1038), + [sym_bracketed_type] = STATE(3752), + [sym_generic_function] = STATE(1492), + [sym_generic_type_with_turbofish] = STATE(3039), + [sym__expression_except_range] = STATE(1409), + [sym__expression] = STATE(1689), + [sym_macro_invocation] = STATE(1529), + [sym_scoped_identifier] = STATE(1540), + [sym_scoped_type_identifier_in_expression_position] = STATE(3335), + [sym_range_expression] = STATE(1505), + [sym_unary_expression] = STATE(1492), + [sym_try_expression] = STATE(1492), + [sym_reference_expression] = STATE(1492), + [sym_binary_expression] = STATE(1492), + [sym_assignment_expression] = STATE(1492), + [sym_compound_assignment_expr] = STATE(1492), + [sym_type_cast_expression] = STATE(1492), + [sym_return_expression] = STATE(1492), + [sym_yield_expression] = STATE(1492), + [sym_call_expression] = STATE(1492), + [sym_array_expression] = STATE(1492), + [sym_parenthesized_expression] = STATE(1492), + [sym_tuple_expression] = STATE(1492), + [sym_unit_expression] = STATE(1492), + [sym_struct_expression] = STATE(1492), + [sym_if_expression] = STATE(1492), + [sym_match_expression] = STATE(1492), + [sym_while_expression] = STATE(1492), + [sym_loop_expression] = STATE(1492), + [sym_for_expression] = STATE(1492), + [sym_const_block] = STATE(1492), + [sym_closure_expression] = STATE(1492), + [sym_closure_parameters] = STATE(229), + [sym_label] = STATE(3689), + [sym_break_expression] = STATE(1492), + [sym_continue_expression] = STATE(1492), + [sym_index_expression] = STATE(1492), + [sym_await_expression] = STATE(1492), + [sym_field_expression] = STATE(1412), + [sym_unsafe_block] = STATE(1492), + [sym_async_block] = STATE(1492), + [sym_gen_block] = STATE(1492), + [sym_try_block] = STATE(1492), + [sym_block] = STATE(1492), + [sym__literal] = STATE(1492), + [sym_string_literal] = STATE(1530), + [sym_raw_string_literal] = STATE(1530), + [sym_boolean_literal] = STATE(1530), [sym_line_comment] = STATE(147), [sym_block_comment] = STATE(147), - [aux_sym_enum_variant_list_repeat1] = STATE(204), - [sym_identifier] = ACTIONS(339), + [aux_sym_enum_variant_list_repeat1] = STATE(200), + [sym_identifier] = ACTIONS(344), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(913), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_RBRACK] = ACTIONS(910), + [anon_sym_LBRACE] = ACTIONS(348), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -33873,445 +34004,213 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(874), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), + [anon_sym_async] = ACTIONS(356), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(358), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), + [anon_sym_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(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(115), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [anon_sym_static] = ACTIONS(372), + [anon_sym_union] = ACTIONS(360), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [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_line_comment] = STATE(148), [sym_block_comment] = STATE(148), - [sym_identifier] = ACTIONS(915), - [anon_sym_SEMI] = ACTIONS(917), - [anon_sym_LPAREN] = ACTIONS(917), - [anon_sym_RPAREN] = ACTIONS(917), - [anon_sym_LBRACK] = ACTIONS(917), - [anon_sym_RBRACK] = ACTIONS(917), - [anon_sym_LBRACE] = ACTIONS(917), - [anon_sym_RBRACE] = ACTIONS(917), - [anon_sym_EQ_GT] = ACTIONS(917), - [anon_sym_COLON] = ACTIONS(915), - [anon_sym_DOLLAR] = ACTIONS(915), - [anon_sym_PLUS] = ACTIONS(915), - [anon_sym_STAR] = ACTIONS(915), - [anon_sym_QMARK] = ACTIONS(917), - [anon_sym_u8] = ACTIONS(915), - [anon_sym_i8] = ACTIONS(915), - [anon_sym_u16] = ACTIONS(915), - [anon_sym_i16] = ACTIONS(915), - [anon_sym_u32] = ACTIONS(915), - [anon_sym_i32] = ACTIONS(915), - [anon_sym_u64] = ACTIONS(915), - [anon_sym_i64] = ACTIONS(915), - [anon_sym_u128] = ACTIONS(915), - [anon_sym_i128] = ACTIONS(915), - [anon_sym_isize] = ACTIONS(915), - [anon_sym_usize] = ACTIONS(915), - [anon_sym_f32] = ACTIONS(915), - [anon_sym_f64] = ACTIONS(915), - [anon_sym_bool] = ACTIONS(915), - [anon_sym_str] = ACTIONS(915), - [anon_sym_char] = ACTIONS(915), - [anon_sym_DASH] = ACTIONS(915), - [anon_sym_SLASH] = ACTIONS(915), - [anon_sym_PERCENT] = ACTIONS(915), - [anon_sym_CARET] = ACTIONS(915), - [anon_sym_BANG] = ACTIONS(915), - [anon_sym_AMP] = ACTIONS(915), - [anon_sym_PIPE] = ACTIONS(915), - [anon_sym_AMP_AMP] = ACTIONS(917), - [anon_sym_PIPE_PIPE] = ACTIONS(917), - [anon_sym_LT_LT] = ACTIONS(915), - [anon_sym_GT_GT] = ACTIONS(915), - [anon_sym_PLUS_EQ] = ACTIONS(917), - [anon_sym_DASH_EQ] = ACTIONS(917), - [anon_sym_STAR_EQ] = ACTIONS(917), - [anon_sym_SLASH_EQ] = ACTIONS(917), - [anon_sym_PERCENT_EQ] = ACTIONS(917), - [anon_sym_CARET_EQ] = ACTIONS(917), - [anon_sym_AMP_EQ] = ACTIONS(917), - [anon_sym_PIPE_EQ] = ACTIONS(917), - [anon_sym_LT_LT_EQ] = ACTIONS(917), - [anon_sym_GT_GT_EQ] = ACTIONS(917), - [anon_sym_EQ] = ACTIONS(915), - [anon_sym_EQ_EQ] = ACTIONS(917), - [anon_sym_BANG_EQ] = ACTIONS(917), - [anon_sym_GT] = ACTIONS(915), - [anon_sym_LT] = ACTIONS(915), - [anon_sym_GT_EQ] = ACTIONS(917), - [anon_sym_LT_EQ] = ACTIONS(917), - [anon_sym_AT] = ACTIONS(917), - [anon_sym__] = ACTIONS(915), - [anon_sym_DOT] = ACTIONS(915), - [anon_sym_DOT_DOT] = ACTIONS(915), - [anon_sym_DOT_DOT_DOT] = ACTIONS(917), - [anon_sym_DOT_DOT_EQ] = ACTIONS(917), - [anon_sym_COMMA] = ACTIONS(917), - [anon_sym_COLON_COLON] = ACTIONS(917), - [anon_sym_DASH_GT] = ACTIONS(917), - [anon_sym_POUND] = ACTIONS(917), - [anon_sym_SQUOTE] = ACTIONS(915), - [anon_sym_as] = ACTIONS(915), - [anon_sym_async] = ACTIONS(915), - [anon_sym_await] = ACTIONS(915), - [anon_sym_break] = ACTIONS(915), - [anon_sym_const] = ACTIONS(915), - [anon_sym_continue] = ACTIONS(915), - [anon_sym_default] = ACTIONS(915), - [anon_sym_enum] = ACTIONS(915), - [anon_sym_fn] = ACTIONS(915), - [anon_sym_for] = ACTIONS(915), - [anon_sym_gen] = ACTIONS(915), - [anon_sym_if] = ACTIONS(915), - [anon_sym_impl] = ACTIONS(915), - [anon_sym_let] = ACTIONS(915), - [anon_sym_loop] = ACTIONS(915), - [anon_sym_match] = ACTIONS(915), - [anon_sym_mod] = ACTIONS(915), - [anon_sym_pub] = ACTIONS(915), - [anon_sym_return] = ACTIONS(915), - [anon_sym_static] = ACTIONS(915), - [anon_sym_struct] = ACTIONS(915), - [anon_sym_trait] = ACTIONS(915), - [anon_sym_type] = ACTIONS(915), - [anon_sym_union] = ACTIONS(915), - [anon_sym_unsafe] = ACTIONS(915), - [anon_sym_use] = ACTIONS(915), - [anon_sym_where] = ACTIONS(915), - [anon_sym_while] = ACTIONS(915), - [sym_mutable_specifier] = ACTIONS(915), - [sym_integer_literal] = ACTIONS(917), - [aux_sym_string_literal_token1] = ACTIONS(917), - [sym_char_literal] = ACTIONS(917), - [anon_sym_true] = ACTIONS(915), - [anon_sym_false] = ACTIONS(915), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(915), - [sym_super] = ACTIONS(915), - [sym_crate] = ACTIONS(915), - [sym_metavariable] = ACTIONS(917), - [sym__raw_string_literal_start] = ACTIONS(917), - [sym_float_literal] = ACTIONS(917), + [sym_identifier] = ACTIONS(912), + [anon_sym_SEMI] = ACTIONS(914), + [anon_sym_LPAREN] = ACTIONS(914), + [anon_sym_RPAREN] = ACTIONS(914), + [anon_sym_LBRACK] = ACTIONS(914), + [anon_sym_RBRACK] = ACTIONS(914), + [anon_sym_LBRACE] = ACTIONS(914), + [anon_sym_RBRACE] = ACTIONS(914), + [anon_sym_EQ_GT] = ACTIONS(914), + [anon_sym_COLON] = ACTIONS(912), + [anon_sym_DOLLAR] = ACTIONS(912), + [anon_sym_PLUS] = ACTIONS(912), + [anon_sym_STAR] = ACTIONS(912), + [anon_sym_QMARK] = ACTIONS(914), + [anon_sym_u8] = ACTIONS(912), + [anon_sym_i8] = ACTIONS(912), + [anon_sym_u16] = ACTIONS(912), + [anon_sym_i16] = ACTIONS(912), + [anon_sym_u32] = ACTIONS(912), + [anon_sym_i32] = ACTIONS(912), + [anon_sym_u64] = ACTIONS(912), + [anon_sym_i64] = ACTIONS(912), + [anon_sym_u128] = ACTIONS(912), + [anon_sym_i128] = ACTIONS(912), + [anon_sym_isize] = ACTIONS(912), + [anon_sym_usize] = ACTIONS(912), + [anon_sym_f32] = ACTIONS(912), + [anon_sym_f64] = ACTIONS(912), + [anon_sym_bool] = ACTIONS(912), + [anon_sym_str] = ACTIONS(912), + [anon_sym_char] = ACTIONS(912), + [anon_sym_DASH] = ACTIONS(912), + [anon_sym_SLASH] = ACTIONS(912), + [anon_sym_PERCENT] = ACTIONS(912), + [anon_sym_CARET] = ACTIONS(912), + [anon_sym_BANG] = ACTIONS(912), + [anon_sym_AMP] = ACTIONS(912), + [anon_sym_PIPE] = ACTIONS(912), + [anon_sym_AMP_AMP] = ACTIONS(914), + [anon_sym_PIPE_PIPE] = ACTIONS(914), + [anon_sym_LT_LT] = ACTIONS(912), + [anon_sym_GT_GT] = ACTIONS(912), + [anon_sym_PLUS_EQ] = ACTIONS(914), + [anon_sym_DASH_EQ] = ACTIONS(914), + [anon_sym_STAR_EQ] = ACTIONS(914), + [anon_sym_SLASH_EQ] = ACTIONS(914), + [anon_sym_PERCENT_EQ] = ACTIONS(914), + [anon_sym_CARET_EQ] = ACTIONS(914), + [anon_sym_AMP_EQ] = ACTIONS(914), + [anon_sym_PIPE_EQ] = ACTIONS(914), + [anon_sym_LT_LT_EQ] = ACTIONS(914), + [anon_sym_GT_GT_EQ] = ACTIONS(914), + [anon_sym_EQ] = ACTIONS(912), + [anon_sym_EQ_EQ] = ACTIONS(914), + [anon_sym_BANG_EQ] = ACTIONS(914), + [anon_sym_GT] = ACTIONS(912), + [anon_sym_LT] = ACTIONS(912), + [anon_sym_GT_EQ] = ACTIONS(914), + [anon_sym_LT_EQ] = ACTIONS(914), + [anon_sym_AT] = ACTIONS(914), + [anon_sym__] = ACTIONS(912), + [anon_sym_DOT] = ACTIONS(912), + [anon_sym_DOT_DOT] = ACTIONS(912), + [anon_sym_DOT_DOT_DOT] = ACTIONS(914), + [anon_sym_DOT_DOT_EQ] = ACTIONS(914), + [anon_sym_COMMA] = ACTIONS(914), + [anon_sym_COLON_COLON] = ACTIONS(914), + [anon_sym_DASH_GT] = ACTIONS(914), + [anon_sym_POUND] = ACTIONS(914), + [anon_sym_SQUOTE] = ACTIONS(912), + [anon_sym_as] = ACTIONS(912), + [anon_sym_async] = ACTIONS(912), + [anon_sym_await] = ACTIONS(912), + [anon_sym_break] = ACTIONS(912), + [anon_sym_const] = ACTIONS(912), + [anon_sym_continue] = ACTIONS(912), + [anon_sym_default] = ACTIONS(912), + [anon_sym_enum] = ACTIONS(912), + [anon_sym_fn] = ACTIONS(912), + [anon_sym_for] = ACTIONS(912), + [anon_sym_gen] = ACTIONS(912), + [anon_sym_if] = ACTIONS(912), + [anon_sym_impl] = ACTIONS(912), + [anon_sym_let] = ACTIONS(912), + [anon_sym_loop] = ACTIONS(912), + [anon_sym_match] = ACTIONS(912), + [anon_sym_mod] = ACTIONS(912), + [anon_sym_pub] = ACTIONS(912), + [anon_sym_return] = ACTIONS(912), + [anon_sym_static] = ACTIONS(912), + [anon_sym_struct] = ACTIONS(912), + [anon_sym_trait] = ACTIONS(912), + [anon_sym_type] = ACTIONS(912), + [anon_sym_union] = ACTIONS(912), + [anon_sym_unsafe] = ACTIONS(912), + [anon_sym_use] = ACTIONS(912), + [anon_sym_where] = ACTIONS(912), + [anon_sym_while] = ACTIONS(912), + [sym_mutable_specifier] = ACTIONS(912), + [sym_integer_literal] = ACTIONS(914), + [aux_sym_string_literal_token1] = ACTIONS(914), + [sym_char_literal] = ACTIONS(914), + [anon_sym_true] = ACTIONS(912), + [anon_sym_false] = ACTIONS(912), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(912), + [sym_super] = ACTIONS(912), + [sym_crate] = ACTIONS(912), + [sym_metavariable] = ACTIONS(914), + [sym__raw_string_literal_start] = ACTIONS(914), + [sym_float_literal] = ACTIONS(914), }, [STATE(149)] = { + [sym_attribute_item] = STATE(1038), + [sym_bracketed_type] = STATE(3752), + [sym_generic_function] = STATE(1492), + [sym_generic_type_with_turbofish] = STATE(3039), + [sym__expression_except_range] = STATE(1409), + [sym__expression] = STATE(1854), + [sym_macro_invocation] = STATE(1529), + [sym_scoped_identifier] = STATE(1540), + [sym_scoped_type_identifier_in_expression_position] = STATE(3335), + [sym_range_expression] = STATE(1505), + [sym_unary_expression] = STATE(1492), + [sym_try_expression] = STATE(1492), + [sym_reference_expression] = STATE(1492), + [sym_binary_expression] = STATE(1492), + [sym_assignment_expression] = STATE(1492), + [sym_compound_assignment_expr] = STATE(1492), + [sym_type_cast_expression] = STATE(1492), + [sym_return_expression] = STATE(1492), + [sym_yield_expression] = STATE(1492), + [sym_call_expression] = STATE(1492), + [sym_array_expression] = STATE(1492), + [sym_parenthesized_expression] = STATE(1492), + [sym_tuple_expression] = STATE(1492), + [sym_unit_expression] = STATE(1492), + [sym_struct_expression] = STATE(1492), + [sym_if_expression] = STATE(1492), + [sym_match_expression] = STATE(1492), + [sym_while_expression] = STATE(1492), + [sym_loop_expression] = STATE(1492), + [sym_for_expression] = STATE(1492), + [sym_const_block] = STATE(1492), + [sym_closure_expression] = STATE(1492), + [sym_closure_parameters] = STATE(229), + [sym_label] = STATE(3689), + [sym_break_expression] = STATE(1492), + [sym_continue_expression] = STATE(1492), + [sym_index_expression] = STATE(1492), + [sym_await_expression] = STATE(1492), + [sym_field_expression] = STATE(1412), + [sym_unsafe_block] = STATE(1492), + [sym_async_block] = STATE(1492), + [sym_gen_block] = STATE(1492), + [sym_try_block] = STATE(1492), + [sym_block] = STATE(1492), + [sym__literal] = STATE(1492), + [sym_string_literal] = STATE(1530), + [sym_raw_string_literal] = STATE(1530), + [sym_boolean_literal] = STATE(1530), [sym_line_comment] = STATE(149), [sym_block_comment] = STATE(149), - [sym_identifier] = ACTIONS(919), - [anon_sym_SEMI] = ACTIONS(921), - [anon_sym_LPAREN] = ACTIONS(921), - [anon_sym_RPAREN] = ACTIONS(921), - [anon_sym_LBRACK] = ACTIONS(921), - [anon_sym_RBRACK] = ACTIONS(921), - [anon_sym_LBRACE] = ACTIONS(921), - [anon_sym_RBRACE] = ACTIONS(921), - [anon_sym_EQ_GT] = ACTIONS(921), - [anon_sym_COLON] = ACTIONS(919), - [anon_sym_DOLLAR] = ACTIONS(919), - [anon_sym_PLUS] = ACTIONS(919), - [anon_sym_STAR] = ACTIONS(919), - [anon_sym_QMARK] = ACTIONS(921), - [anon_sym_u8] = ACTIONS(919), - [anon_sym_i8] = ACTIONS(919), - [anon_sym_u16] = ACTIONS(919), - [anon_sym_i16] = ACTIONS(919), - [anon_sym_u32] = ACTIONS(919), - [anon_sym_i32] = ACTIONS(919), - [anon_sym_u64] = ACTIONS(919), - [anon_sym_i64] = ACTIONS(919), - [anon_sym_u128] = ACTIONS(919), - [anon_sym_i128] = ACTIONS(919), - [anon_sym_isize] = ACTIONS(919), - [anon_sym_usize] = ACTIONS(919), - [anon_sym_f32] = ACTIONS(919), - [anon_sym_f64] = ACTIONS(919), - [anon_sym_bool] = ACTIONS(919), - [anon_sym_str] = ACTIONS(919), - [anon_sym_char] = ACTIONS(919), - [anon_sym_DASH] = ACTIONS(919), - [anon_sym_SLASH] = ACTIONS(919), - [anon_sym_PERCENT] = ACTIONS(919), - [anon_sym_CARET] = ACTIONS(919), - [anon_sym_BANG] = ACTIONS(919), - [anon_sym_AMP] = ACTIONS(919), - [anon_sym_PIPE] = ACTIONS(919), - [anon_sym_AMP_AMP] = ACTIONS(921), - [anon_sym_PIPE_PIPE] = ACTIONS(921), - [anon_sym_LT_LT] = ACTIONS(919), - [anon_sym_GT_GT] = ACTIONS(919), - [anon_sym_PLUS_EQ] = ACTIONS(921), - [anon_sym_DASH_EQ] = ACTIONS(921), - [anon_sym_STAR_EQ] = ACTIONS(921), - [anon_sym_SLASH_EQ] = ACTIONS(921), - [anon_sym_PERCENT_EQ] = ACTIONS(921), - [anon_sym_CARET_EQ] = ACTIONS(921), - [anon_sym_AMP_EQ] = ACTIONS(921), - [anon_sym_PIPE_EQ] = ACTIONS(921), - [anon_sym_LT_LT_EQ] = ACTIONS(921), - [anon_sym_GT_GT_EQ] = ACTIONS(921), - [anon_sym_EQ] = ACTIONS(919), - [anon_sym_EQ_EQ] = ACTIONS(921), - [anon_sym_BANG_EQ] = ACTIONS(921), - [anon_sym_GT] = ACTIONS(919), - [anon_sym_LT] = ACTIONS(919), - [anon_sym_GT_EQ] = ACTIONS(921), - [anon_sym_LT_EQ] = ACTIONS(921), - [anon_sym_AT] = ACTIONS(921), - [anon_sym__] = ACTIONS(919), - [anon_sym_DOT] = ACTIONS(919), - [anon_sym_DOT_DOT] = ACTIONS(919), - [anon_sym_DOT_DOT_DOT] = ACTIONS(921), - [anon_sym_DOT_DOT_EQ] = ACTIONS(921), - [anon_sym_COMMA] = ACTIONS(921), - [anon_sym_COLON_COLON] = ACTIONS(921), - [anon_sym_DASH_GT] = ACTIONS(921), - [anon_sym_POUND] = ACTIONS(921), - [anon_sym_SQUOTE] = ACTIONS(919), - [anon_sym_as] = ACTIONS(919), - [anon_sym_async] = ACTIONS(919), - [anon_sym_await] = ACTIONS(919), - [anon_sym_break] = ACTIONS(919), - [anon_sym_const] = ACTIONS(919), - [anon_sym_continue] = ACTIONS(919), - [anon_sym_default] = ACTIONS(919), - [anon_sym_enum] = ACTIONS(919), - [anon_sym_fn] = ACTIONS(919), - [anon_sym_for] = ACTIONS(919), - [anon_sym_gen] = ACTIONS(919), - [anon_sym_if] = ACTIONS(919), - [anon_sym_impl] = ACTIONS(919), - [anon_sym_let] = ACTIONS(919), - [anon_sym_loop] = ACTIONS(919), - [anon_sym_match] = ACTIONS(919), - [anon_sym_mod] = ACTIONS(919), - [anon_sym_pub] = ACTIONS(919), - [anon_sym_return] = ACTIONS(919), - [anon_sym_static] = ACTIONS(919), - [anon_sym_struct] = ACTIONS(919), - [anon_sym_trait] = ACTIONS(919), - [anon_sym_type] = ACTIONS(919), - [anon_sym_union] = ACTIONS(919), - [anon_sym_unsafe] = ACTIONS(919), - [anon_sym_use] = ACTIONS(919), - [anon_sym_where] = ACTIONS(919), - [anon_sym_while] = ACTIONS(919), - [sym_mutable_specifier] = ACTIONS(919), - [sym_integer_literal] = ACTIONS(921), - [aux_sym_string_literal_token1] = ACTIONS(921), - [sym_char_literal] = ACTIONS(921), - [anon_sym_true] = ACTIONS(919), - [anon_sym_false] = ACTIONS(919), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(919), - [sym_super] = ACTIONS(919), - [sym_crate] = ACTIONS(919), - [sym_metavariable] = ACTIONS(921), - [sym__raw_string_literal_start] = ACTIONS(921), - [sym_float_literal] = ACTIONS(921), - }, - [STATE(150)] = { - [sym_line_comment] = STATE(150), - [sym_block_comment] = STATE(150), - [sym_identifier] = ACTIONS(923), - [anon_sym_SEMI] = ACTIONS(925), - [anon_sym_LPAREN] = ACTIONS(925), - [anon_sym_RPAREN] = ACTIONS(925), - [anon_sym_LBRACK] = ACTIONS(925), - [anon_sym_RBRACK] = ACTIONS(925), - [anon_sym_LBRACE] = ACTIONS(925), - [anon_sym_RBRACE] = ACTIONS(925), - [anon_sym_EQ_GT] = ACTIONS(925), - [anon_sym_COLON] = ACTIONS(923), - [anon_sym_DOLLAR] = ACTIONS(923), - [anon_sym_PLUS] = ACTIONS(923), - [anon_sym_STAR] = ACTIONS(923), - [anon_sym_QMARK] = ACTIONS(925), - [anon_sym_u8] = ACTIONS(923), - [anon_sym_i8] = ACTIONS(923), - [anon_sym_u16] = ACTIONS(923), - [anon_sym_i16] = ACTIONS(923), - [anon_sym_u32] = ACTIONS(923), - [anon_sym_i32] = ACTIONS(923), - [anon_sym_u64] = ACTIONS(923), - [anon_sym_i64] = ACTIONS(923), - [anon_sym_u128] = ACTIONS(923), - [anon_sym_i128] = ACTIONS(923), - [anon_sym_isize] = ACTIONS(923), - [anon_sym_usize] = ACTIONS(923), - [anon_sym_f32] = ACTIONS(923), - [anon_sym_f64] = ACTIONS(923), - [anon_sym_bool] = ACTIONS(923), - [anon_sym_str] = ACTIONS(923), - [anon_sym_char] = ACTIONS(923), - [anon_sym_DASH] = ACTIONS(923), - [anon_sym_SLASH] = ACTIONS(923), - [anon_sym_PERCENT] = ACTIONS(923), - [anon_sym_CARET] = ACTIONS(923), - [anon_sym_BANG] = ACTIONS(923), - [anon_sym_AMP] = ACTIONS(923), - [anon_sym_PIPE] = ACTIONS(923), - [anon_sym_AMP_AMP] = ACTIONS(925), - [anon_sym_PIPE_PIPE] = ACTIONS(925), - [anon_sym_LT_LT] = ACTIONS(923), - [anon_sym_GT_GT] = ACTIONS(923), - [anon_sym_PLUS_EQ] = ACTIONS(925), - [anon_sym_DASH_EQ] = ACTIONS(925), - [anon_sym_STAR_EQ] = ACTIONS(925), - [anon_sym_SLASH_EQ] = ACTIONS(925), - [anon_sym_PERCENT_EQ] = ACTIONS(925), - [anon_sym_CARET_EQ] = ACTIONS(925), - [anon_sym_AMP_EQ] = ACTIONS(925), - [anon_sym_PIPE_EQ] = ACTIONS(925), - [anon_sym_LT_LT_EQ] = ACTIONS(925), - [anon_sym_GT_GT_EQ] = ACTIONS(925), - [anon_sym_EQ] = ACTIONS(923), - [anon_sym_EQ_EQ] = ACTIONS(925), - [anon_sym_BANG_EQ] = ACTIONS(925), - [anon_sym_GT] = ACTIONS(923), - [anon_sym_LT] = ACTIONS(923), - [anon_sym_GT_EQ] = ACTIONS(925), - [anon_sym_LT_EQ] = ACTIONS(925), - [anon_sym_AT] = ACTIONS(925), - [anon_sym__] = ACTIONS(923), - [anon_sym_DOT] = ACTIONS(923), - [anon_sym_DOT_DOT] = ACTIONS(923), - [anon_sym_DOT_DOT_DOT] = ACTIONS(925), - [anon_sym_DOT_DOT_EQ] = ACTIONS(925), - [anon_sym_COMMA] = ACTIONS(925), - [anon_sym_COLON_COLON] = ACTIONS(925), - [anon_sym_DASH_GT] = ACTIONS(925), - [anon_sym_POUND] = ACTIONS(925), - [anon_sym_SQUOTE] = ACTIONS(923), - [anon_sym_as] = ACTIONS(923), - [anon_sym_async] = ACTIONS(923), - [anon_sym_await] = ACTIONS(923), - [anon_sym_break] = ACTIONS(923), - [anon_sym_const] = ACTIONS(923), - [anon_sym_continue] = ACTIONS(923), - [anon_sym_default] = ACTIONS(923), - [anon_sym_enum] = ACTIONS(923), - [anon_sym_fn] = ACTIONS(923), - [anon_sym_for] = ACTIONS(923), - [anon_sym_gen] = ACTIONS(923), - [anon_sym_if] = ACTIONS(923), - [anon_sym_impl] = ACTIONS(923), - [anon_sym_let] = ACTIONS(923), - [anon_sym_loop] = ACTIONS(923), - [anon_sym_match] = ACTIONS(923), - [anon_sym_mod] = ACTIONS(923), - [anon_sym_pub] = ACTIONS(923), - [anon_sym_return] = ACTIONS(923), - [anon_sym_static] = ACTIONS(923), - [anon_sym_struct] = ACTIONS(923), - [anon_sym_trait] = ACTIONS(923), - [anon_sym_type] = ACTIONS(923), - [anon_sym_union] = ACTIONS(923), - [anon_sym_unsafe] = ACTIONS(923), - [anon_sym_use] = ACTIONS(923), - [anon_sym_where] = ACTIONS(923), - [anon_sym_while] = ACTIONS(923), - [sym_mutable_specifier] = ACTIONS(923), - [sym_integer_literal] = ACTIONS(925), - [aux_sym_string_literal_token1] = ACTIONS(925), - [sym_char_literal] = ACTIONS(925), - [anon_sym_true] = ACTIONS(923), - [anon_sym_false] = ACTIONS(923), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(923), - [sym_super] = ACTIONS(923), - [sym_crate] = ACTIONS(923), - [sym_metavariable] = ACTIONS(925), - [sym__raw_string_literal_start] = ACTIONS(925), - [sym_float_literal] = ACTIONS(925), - }, - [STATE(151)] = { - [sym_attribute_item] = STATE(1031), - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1805), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1520), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [sym_line_comment] = STATE(151), - [sym_block_comment] = STATE(151), - [aux_sym_enum_variant_list_repeat1] = STATE(211), - [sym_identifier] = ACTIONS(339), + [aux_sym_enum_variant_list_repeat1] = STATE(214), + [sym_identifier] = ACTIONS(344), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(927), + [anon_sym_RPAREN] = ACTIONS(916), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(348), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -34337,97 +34236,329 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(874), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), + [anon_sym_async] = ACTIONS(356), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(358), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), + [anon_sym_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(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(115), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [anon_sym_static] = ACTIONS(372), + [anon_sym_union] = ACTIONS(360), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [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(150)] = { + [sym_line_comment] = STATE(150), + [sym_block_comment] = STATE(150), + [sym_identifier] = ACTIONS(918), + [anon_sym_SEMI] = ACTIONS(920), + [anon_sym_LPAREN] = ACTIONS(920), + [anon_sym_RPAREN] = ACTIONS(920), + [anon_sym_LBRACK] = ACTIONS(920), + [anon_sym_RBRACK] = ACTIONS(920), + [anon_sym_LBRACE] = ACTIONS(920), + [anon_sym_RBRACE] = ACTIONS(920), + [anon_sym_EQ_GT] = ACTIONS(920), + [anon_sym_COLON] = ACTIONS(918), + [anon_sym_DOLLAR] = ACTIONS(918), + [anon_sym_PLUS] = ACTIONS(918), + [anon_sym_STAR] = ACTIONS(918), + [anon_sym_QMARK] = ACTIONS(920), + [anon_sym_u8] = ACTIONS(918), + [anon_sym_i8] = ACTIONS(918), + [anon_sym_u16] = ACTIONS(918), + [anon_sym_i16] = ACTIONS(918), + [anon_sym_u32] = ACTIONS(918), + [anon_sym_i32] = ACTIONS(918), + [anon_sym_u64] = ACTIONS(918), + [anon_sym_i64] = ACTIONS(918), + [anon_sym_u128] = ACTIONS(918), + [anon_sym_i128] = ACTIONS(918), + [anon_sym_isize] = ACTIONS(918), + [anon_sym_usize] = ACTIONS(918), + [anon_sym_f32] = ACTIONS(918), + [anon_sym_f64] = ACTIONS(918), + [anon_sym_bool] = ACTIONS(918), + [anon_sym_str] = ACTIONS(918), + [anon_sym_char] = ACTIONS(918), + [anon_sym_DASH] = ACTIONS(918), + [anon_sym_SLASH] = ACTIONS(918), + [anon_sym_PERCENT] = ACTIONS(918), + [anon_sym_CARET] = ACTIONS(918), + [anon_sym_BANG] = ACTIONS(918), + [anon_sym_AMP] = ACTIONS(918), + [anon_sym_PIPE] = ACTIONS(918), + [anon_sym_AMP_AMP] = ACTIONS(920), + [anon_sym_PIPE_PIPE] = ACTIONS(920), + [anon_sym_LT_LT] = ACTIONS(918), + [anon_sym_GT_GT] = ACTIONS(918), + [anon_sym_PLUS_EQ] = ACTIONS(920), + [anon_sym_DASH_EQ] = ACTIONS(920), + [anon_sym_STAR_EQ] = ACTIONS(920), + [anon_sym_SLASH_EQ] = ACTIONS(920), + [anon_sym_PERCENT_EQ] = ACTIONS(920), + [anon_sym_CARET_EQ] = ACTIONS(920), + [anon_sym_AMP_EQ] = ACTIONS(920), + [anon_sym_PIPE_EQ] = ACTIONS(920), + [anon_sym_LT_LT_EQ] = ACTIONS(920), + [anon_sym_GT_GT_EQ] = ACTIONS(920), + [anon_sym_EQ] = ACTIONS(918), + [anon_sym_EQ_EQ] = ACTIONS(920), + [anon_sym_BANG_EQ] = ACTIONS(920), + [anon_sym_GT] = ACTIONS(918), + [anon_sym_LT] = ACTIONS(918), + [anon_sym_GT_EQ] = ACTIONS(920), + [anon_sym_LT_EQ] = ACTIONS(920), + [anon_sym_AT] = ACTIONS(920), + [anon_sym__] = ACTIONS(918), + [anon_sym_DOT] = ACTIONS(918), + [anon_sym_DOT_DOT] = ACTIONS(918), + [anon_sym_DOT_DOT_DOT] = ACTIONS(920), + [anon_sym_DOT_DOT_EQ] = ACTIONS(920), + [anon_sym_COMMA] = ACTIONS(920), + [anon_sym_COLON_COLON] = ACTIONS(920), + [anon_sym_DASH_GT] = ACTIONS(920), + [anon_sym_POUND] = ACTIONS(920), + [anon_sym_SQUOTE] = ACTIONS(918), + [anon_sym_as] = ACTIONS(918), + [anon_sym_async] = ACTIONS(918), + [anon_sym_await] = ACTIONS(918), + [anon_sym_break] = ACTIONS(918), + [anon_sym_const] = ACTIONS(918), + [anon_sym_continue] = ACTIONS(918), + [anon_sym_default] = ACTIONS(918), + [anon_sym_enum] = ACTIONS(918), + [anon_sym_fn] = ACTIONS(918), + [anon_sym_for] = ACTIONS(918), + [anon_sym_gen] = ACTIONS(918), + [anon_sym_if] = ACTIONS(918), + [anon_sym_impl] = ACTIONS(918), + [anon_sym_let] = ACTIONS(918), + [anon_sym_loop] = ACTIONS(918), + [anon_sym_match] = ACTIONS(918), + [anon_sym_mod] = ACTIONS(918), + [anon_sym_pub] = ACTIONS(918), + [anon_sym_return] = ACTIONS(918), + [anon_sym_static] = ACTIONS(918), + [anon_sym_struct] = ACTIONS(918), + [anon_sym_trait] = ACTIONS(918), + [anon_sym_type] = ACTIONS(918), + [anon_sym_union] = ACTIONS(918), + [anon_sym_unsafe] = ACTIONS(918), + [anon_sym_use] = ACTIONS(918), + [anon_sym_where] = ACTIONS(918), + [anon_sym_while] = ACTIONS(918), + [sym_mutable_specifier] = ACTIONS(918), + [sym_integer_literal] = ACTIONS(920), + [aux_sym_string_literal_token1] = ACTIONS(920), + [sym_char_literal] = ACTIONS(920), + [anon_sym_true] = ACTIONS(918), + [anon_sym_false] = ACTIONS(918), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(918), + [sym_super] = ACTIONS(918), + [sym_crate] = ACTIONS(918), + [sym_metavariable] = ACTIONS(920), + [sym__raw_string_literal_start] = ACTIONS(920), + [sym_float_literal] = ACTIONS(920), + }, + [STATE(151)] = { + [sym_line_comment] = STATE(151), + [sym_block_comment] = STATE(151), + [sym_identifier] = ACTIONS(922), + [anon_sym_SEMI] = ACTIONS(924), + [anon_sym_LPAREN] = ACTIONS(924), + [anon_sym_RPAREN] = ACTIONS(924), + [anon_sym_LBRACK] = ACTIONS(924), + [anon_sym_RBRACK] = ACTIONS(924), + [anon_sym_LBRACE] = ACTIONS(924), + [anon_sym_RBRACE] = ACTIONS(924), + [anon_sym_EQ_GT] = ACTIONS(924), + [anon_sym_COLON] = ACTIONS(922), + [anon_sym_DOLLAR] = ACTIONS(922), + [anon_sym_PLUS] = ACTIONS(922), + [anon_sym_STAR] = ACTIONS(922), + [anon_sym_QMARK] = ACTIONS(924), + [anon_sym_u8] = ACTIONS(922), + [anon_sym_i8] = ACTIONS(922), + [anon_sym_u16] = ACTIONS(922), + [anon_sym_i16] = ACTIONS(922), + [anon_sym_u32] = ACTIONS(922), + [anon_sym_i32] = ACTIONS(922), + [anon_sym_u64] = ACTIONS(922), + [anon_sym_i64] = ACTIONS(922), + [anon_sym_u128] = ACTIONS(922), + [anon_sym_i128] = ACTIONS(922), + [anon_sym_isize] = ACTIONS(922), + [anon_sym_usize] = ACTIONS(922), + [anon_sym_f32] = ACTIONS(922), + [anon_sym_f64] = ACTIONS(922), + [anon_sym_bool] = ACTIONS(922), + [anon_sym_str] = ACTIONS(922), + [anon_sym_char] = ACTIONS(922), + [anon_sym_DASH] = ACTIONS(922), + [anon_sym_SLASH] = ACTIONS(922), + [anon_sym_PERCENT] = ACTIONS(922), + [anon_sym_CARET] = ACTIONS(922), + [anon_sym_BANG] = ACTIONS(922), + [anon_sym_AMP] = ACTIONS(922), + [anon_sym_PIPE] = ACTIONS(922), + [anon_sym_AMP_AMP] = ACTIONS(924), + [anon_sym_PIPE_PIPE] = ACTIONS(924), + [anon_sym_LT_LT] = ACTIONS(922), + [anon_sym_GT_GT] = ACTIONS(922), + [anon_sym_PLUS_EQ] = ACTIONS(924), + [anon_sym_DASH_EQ] = ACTIONS(924), + [anon_sym_STAR_EQ] = ACTIONS(924), + [anon_sym_SLASH_EQ] = ACTIONS(924), + [anon_sym_PERCENT_EQ] = ACTIONS(924), + [anon_sym_CARET_EQ] = ACTIONS(924), + [anon_sym_AMP_EQ] = ACTIONS(924), + [anon_sym_PIPE_EQ] = ACTIONS(924), + [anon_sym_LT_LT_EQ] = ACTIONS(924), + [anon_sym_GT_GT_EQ] = ACTIONS(924), + [anon_sym_EQ] = ACTIONS(922), + [anon_sym_EQ_EQ] = ACTIONS(924), + [anon_sym_BANG_EQ] = ACTIONS(924), + [anon_sym_GT] = ACTIONS(922), + [anon_sym_LT] = ACTIONS(922), + [anon_sym_GT_EQ] = ACTIONS(924), + [anon_sym_LT_EQ] = ACTIONS(924), + [anon_sym_AT] = ACTIONS(924), + [anon_sym__] = ACTIONS(922), + [anon_sym_DOT] = ACTIONS(922), + [anon_sym_DOT_DOT] = ACTIONS(922), + [anon_sym_DOT_DOT_DOT] = ACTIONS(924), + [anon_sym_DOT_DOT_EQ] = ACTIONS(924), + [anon_sym_COMMA] = ACTIONS(924), + [anon_sym_COLON_COLON] = ACTIONS(924), + [anon_sym_DASH_GT] = ACTIONS(924), + [anon_sym_POUND] = ACTIONS(924), + [anon_sym_SQUOTE] = ACTIONS(922), + [anon_sym_as] = ACTIONS(922), + [anon_sym_async] = ACTIONS(922), + [anon_sym_await] = ACTIONS(922), + [anon_sym_break] = ACTIONS(922), + [anon_sym_const] = ACTIONS(922), + [anon_sym_continue] = ACTIONS(922), + [anon_sym_default] = ACTIONS(922), + [anon_sym_enum] = ACTIONS(922), + [anon_sym_fn] = ACTIONS(922), + [anon_sym_for] = ACTIONS(922), + [anon_sym_gen] = ACTIONS(922), + [anon_sym_if] = ACTIONS(922), + [anon_sym_impl] = ACTIONS(922), + [anon_sym_let] = ACTIONS(922), + [anon_sym_loop] = ACTIONS(922), + [anon_sym_match] = ACTIONS(922), + [anon_sym_mod] = ACTIONS(922), + [anon_sym_pub] = ACTIONS(922), + [anon_sym_return] = ACTIONS(922), + [anon_sym_static] = ACTIONS(922), + [anon_sym_struct] = ACTIONS(922), + [anon_sym_trait] = ACTIONS(922), + [anon_sym_type] = ACTIONS(922), + [anon_sym_union] = ACTIONS(922), + [anon_sym_unsafe] = ACTIONS(922), + [anon_sym_use] = ACTIONS(922), + [anon_sym_where] = ACTIONS(922), + [anon_sym_while] = ACTIONS(922), + [sym_mutable_specifier] = ACTIONS(922), + [sym_integer_literal] = ACTIONS(924), + [aux_sym_string_literal_token1] = ACTIONS(924), + [sym_char_literal] = ACTIONS(924), + [anon_sym_true] = ACTIONS(922), + [anon_sym_false] = ACTIONS(922), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(922), + [sym_super] = ACTIONS(922), + [sym_crate] = ACTIONS(922), + [sym_metavariable] = ACTIONS(924), + [sym__raw_string_literal_start] = ACTIONS(924), + [sym_float_literal] = ACTIONS(924), }, [STATE(152)] = { - [sym_attribute_item] = STATE(1031), - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1644), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1520), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), + [sym_attribute_item] = STATE(1038), + [sym_bracketed_type] = STATE(3752), + [sym_generic_function] = STATE(1492), + [sym_generic_type_with_turbofish] = STATE(3039), + [sym__expression_except_range] = STATE(1409), + [sym__expression] = STATE(1689), + [sym_macro_invocation] = STATE(1529), + [sym_scoped_identifier] = STATE(1540), + [sym_scoped_type_identifier_in_expression_position] = STATE(3335), + [sym_range_expression] = STATE(1505), + [sym_unary_expression] = STATE(1492), + [sym_try_expression] = STATE(1492), + [sym_reference_expression] = STATE(1492), + [sym_binary_expression] = STATE(1492), + [sym_assignment_expression] = STATE(1492), + [sym_compound_assignment_expr] = STATE(1492), + [sym_type_cast_expression] = STATE(1492), + [sym_return_expression] = STATE(1492), + [sym_yield_expression] = STATE(1492), + [sym_call_expression] = STATE(1492), + [sym_array_expression] = STATE(1492), + [sym_parenthesized_expression] = STATE(1492), + [sym_tuple_expression] = STATE(1492), + [sym_unit_expression] = STATE(1492), + [sym_struct_expression] = STATE(1492), + [sym_if_expression] = STATE(1492), + [sym_match_expression] = STATE(1492), + [sym_while_expression] = STATE(1492), + [sym_loop_expression] = STATE(1492), + [sym_for_expression] = STATE(1492), + [sym_const_block] = STATE(1492), + [sym_closure_expression] = STATE(1492), + [sym_closure_parameters] = STATE(229), + [sym_label] = STATE(3689), + [sym_break_expression] = STATE(1492), + [sym_continue_expression] = STATE(1492), + [sym_index_expression] = STATE(1492), + [sym_await_expression] = STATE(1492), + [sym_field_expression] = STATE(1412), + [sym_unsafe_block] = STATE(1492), + [sym_async_block] = STATE(1492), + [sym_gen_block] = STATE(1492), + [sym_try_block] = STATE(1492), + [sym_block] = STATE(1492), + [sym__literal] = STATE(1492), + [sym_string_literal] = STATE(1530), + [sym_raw_string_literal] = STATE(1530), + [sym_boolean_literal] = STATE(1530), [sym_line_comment] = STATE(152), [sym_block_comment] = STATE(152), - [aux_sym_enum_variant_list_repeat1] = STATE(204), - [sym_identifier] = ACTIONS(339), + [aux_sym_enum_variant_list_repeat1] = STATE(200), + [sym_identifier] = ACTIONS(344), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(929), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_RBRACK] = ACTIONS(926), + [anon_sym_LBRACE] = ACTIONS(348), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -34453,97 +34584,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(874), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), + [anon_sym_async] = ACTIONS(356), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(358), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), + [anon_sym_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(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(115), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [anon_sym_static] = ACTIONS(372), + [anon_sym_union] = ACTIONS(360), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [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_attribute_item] = STATE(1031), - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1644), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1520), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), + [sym_attribute_item] = STATE(1038), + [sym_bracketed_type] = STATE(3752), + [sym_generic_function] = STATE(1492), + [sym_generic_type_with_turbofish] = STATE(3039), + [sym__expression_except_range] = STATE(1409), + [sym__expression] = STATE(1689), + [sym_macro_invocation] = STATE(1529), + [sym_scoped_identifier] = STATE(1540), + [sym_scoped_type_identifier_in_expression_position] = STATE(3335), + [sym_range_expression] = STATE(1505), + [sym_unary_expression] = STATE(1492), + [sym_try_expression] = STATE(1492), + [sym_reference_expression] = STATE(1492), + [sym_binary_expression] = STATE(1492), + [sym_assignment_expression] = STATE(1492), + [sym_compound_assignment_expr] = STATE(1492), + [sym_type_cast_expression] = STATE(1492), + [sym_return_expression] = STATE(1492), + [sym_yield_expression] = STATE(1492), + [sym_call_expression] = STATE(1492), + [sym_array_expression] = STATE(1492), + [sym_parenthesized_expression] = STATE(1492), + [sym_tuple_expression] = STATE(1492), + [sym_unit_expression] = STATE(1492), + [sym_struct_expression] = STATE(1492), + [sym_if_expression] = STATE(1492), + [sym_match_expression] = STATE(1492), + [sym_while_expression] = STATE(1492), + [sym_loop_expression] = STATE(1492), + [sym_for_expression] = STATE(1492), + [sym_const_block] = STATE(1492), + [sym_closure_expression] = STATE(1492), + [sym_closure_parameters] = STATE(229), + [sym_label] = STATE(3689), + [sym_break_expression] = STATE(1492), + [sym_continue_expression] = STATE(1492), + [sym_index_expression] = STATE(1492), + [sym_await_expression] = STATE(1492), + [sym_field_expression] = STATE(1412), + [sym_unsafe_block] = STATE(1492), + [sym_async_block] = STATE(1492), + [sym_gen_block] = STATE(1492), + [sym_try_block] = STATE(1492), + [sym_block] = STATE(1492), + [sym__literal] = STATE(1492), + [sym_string_literal] = STATE(1530), + [sym_raw_string_literal] = STATE(1530), + [sym_boolean_literal] = STATE(1530), [sym_line_comment] = STATE(153), [sym_block_comment] = STATE(153), - [aux_sym_enum_variant_list_repeat1] = STATE(204), - [sym_identifier] = ACTIONS(339), + [aux_sym_enum_variant_list_repeat1] = STATE(200), + [sym_identifier] = ACTIONS(344), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(931), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_RBRACK] = ACTIONS(928), + [anon_sym_LBRACE] = ACTIONS(348), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -34569,213 +34700,213 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(874), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), + [anon_sym_async] = ACTIONS(356), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(358), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), + [anon_sym_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(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(115), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [anon_sym_static] = ACTIONS(372), + [anon_sym_union] = ACTIONS(360), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [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(154)] = { + [sym_attribute_item] = STATE(1038), + [sym_bracketed_type] = STATE(3752), + [sym_generic_function] = STATE(1492), + [sym_generic_type_with_turbofish] = STATE(3039), + [sym__expression_except_range] = STATE(1409), + [sym__expression] = STATE(1689), + [sym_macro_invocation] = STATE(1529), + [sym_scoped_identifier] = STATE(1540), + [sym_scoped_type_identifier_in_expression_position] = STATE(3335), + [sym_range_expression] = STATE(1505), + [sym_unary_expression] = STATE(1492), + [sym_try_expression] = STATE(1492), + [sym_reference_expression] = STATE(1492), + [sym_binary_expression] = STATE(1492), + [sym_assignment_expression] = STATE(1492), + [sym_compound_assignment_expr] = STATE(1492), + [sym_type_cast_expression] = STATE(1492), + [sym_return_expression] = STATE(1492), + [sym_yield_expression] = STATE(1492), + [sym_call_expression] = STATE(1492), + [sym_array_expression] = STATE(1492), + [sym_parenthesized_expression] = STATE(1492), + [sym_tuple_expression] = STATE(1492), + [sym_unit_expression] = STATE(1492), + [sym_struct_expression] = STATE(1492), + [sym_if_expression] = STATE(1492), + [sym_match_expression] = STATE(1492), + [sym_while_expression] = STATE(1492), + [sym_loop_expression] = STATE(1492), + [sym_for_expression] = STATE(1492), + [sym_const_block] = STATE(1492), + [sym_closure_expression] = STATE(1492), + [sym_closure_parameters] = STATE(229), + [sym_label] = STATE(3689), + [sym_break_expression] = STATE(1492), + [sym_continue_expression] = STATE(1492), + [sym_index_expression] = STATE(1492), + [sym_await_expression] = STATE(1492), + [sym_field_expression] = STATE(1412), + [sym_unsafe_block] = STATE(1492), + [sym_async_block] = STATE(1492), + [sym_gen_block] = STATE(1492), + [sym_try_block] = STATE(1492), + [sym_block] = STATE(1492), + [sym__literal] = STATE(1492), + [sym_string_literal] = STATE(1530), + [sym_raw_string_literal] = STATE(1530), + [sym_boolean_literal] = STATE(1530), [sym_line_comment] = STATE(154), [sym_block_comment] = STATE(154), - [sym_identifier] = ACTIONS(933), - [anon_sym_SEMI] = ACTIONS(935), - [anon_sym_LPAREN] = ACTIONS(935), - [anon_sym_RPAREN] = ACTIONS(935), - [anon_sym_LBRACK] = ACTIONS(935), - [anon_sym_RBRACK] = ACTIONS(935), - [anon_sym_LBRACE] = ACTIONS(935), - [anon_sym_RBRACE] = ACTIONS(935), - [anon_sym_EQ_GT] = ACTIONS(935), - [anon_sym_COLON] = ACTIONS(933), - [anon_sym_DOLLAR] = ACTIONS(933), - [anon_sym_PLUS] = ACTIONS(933), - [anon_sym_STAR] = ACTIONS(933), - [anon_sym_QMARK] = ACTIONS(935), - [anon_sym_u8] = ACTIONS(933), - [anon_sym_i8] = ACTIONS(933), - [anon_sym_u16] = ACTIONS(933), - [anon_sym_i16] = ACTIONS(933), - [anon_sym_u32] = ACTIONS(933), - [anon_sym_i32] = ACTIONS(933), - [anon_sym_u64] = ACTIONS(933), - [anon_sym_i64] = ACTIONS(933), - [anon_sym_u128] = ACTIONS(933), - [anon_sym_i128] = ACTIONS(933), - [anon_sym_isize] = ACTIONS(933), - [anon_sym_usize] = ACTIONS(933), - [anon_sym_f32] = ACTIONS(933), - [anon_sym_f64] = ACTIONS(933), - [anon_sym_bool] = ACTIONS(933), - [anon_sym_str] = ACTIONS(933), - [anon_sym_char] = ACTIONS(933), - [anon_sym_DASH] = ACTIONS(933), - [anon_sym_SLASH] = ACTIONS(933), - [anon_sym_PERCENT] = ACTIONS(933), - [anon_sym_CARET] = ACTIONS(933), - [anon_sym_BANG] = ACTIONS(933), - [anon_sym_AMP] = ACTIONS(933), - [anon_sym_PIPE] = ACTIONS(933), - [anon_sym_AMP_AMP] = ACTIONS(935), - [anon_sym_PIPE_PIPE] = ACTIONS(935), - [anon_sym_LT_LT] = ACTIONS(933), - [anon_sym_GT_GT] = ACTIONS(933), - [anon_sym_PLUS_EQ] = ACTIONS(935), - [anon_sym_DASH_EQ] = ACTIONS(935), - [anon_sym_STAR_EQ] = ACTIONS(935), - [anon_sym_SLASH_EQ] = ACTIONS(935), - [anon_sym_PERCENT_EQ] = ACTIONS(935), - [anon_sym_CARET_EQ] = ACTIONS(935), - [anon_sym_AMP_EQ] = ACTIONS(935), - [anon_sym_PIPE_EQ] = ACTIONS(935), - [anon_sym_LT_LT_EQ] = ACTIONS(935), - [anon_sym_GT_GT_EQ] = ACTIONS(935), - [anon_sym_EQ] = ACTIONS(933), - [anon_sym_EQ_EQ] = ACTIONS(935), - [anon_sym_BANG_EQ] = ACTIONS(935), - [anon_sym_GT] = ACTIONS(933), - [anon_sym_LT] = ACTIONS(933), - [anon_sym_GT_EQ] = ACTIONS(935), - [anon_sym_LT_EQ] = ACTIONS(935), - [anon_sym_AT] = ACTIONS(935), - [anon_sym__] = ACTIONS(933), - [anon_sym_DOT] = ACTIONS(933), - [anon_sym_DOT_DOT] = ACTIONS(933), - [anon_sym_DOT_DOT_DOT] = ACTIONS(935), - [anon_sym_DOT_DOT_EQ] = ACTIONS(935), - [anon_sym_COMMA] = ACTIONS(935), - [anon_sym_COLON_COLON] = ACTIONS(935), - [anon_sym_DASH_GT] = ACTIONS(935), - [anon_sym_POUND] = ACTIONS(935), - [anon_sym_SQUOTE] = ACTIONS(933), - [anon_sym_as] = ACTIONS(933), - [anon_sym_async] = ACTIONS(933), - [anon_sym_await] = ACTIONS(933), - [anon_sym_break] = ACTIONS(933), - [anon_sym_const] = ACTIONS(933), - [anon_sym_continue] = ACTIONS(933), - [anon_sym_default] = ACTIONS(933), - [anon_sym_enum] = ACTIONS(933), - [anon_sym_fn] = ACTIONS(933), - [anon_sym_for] = ACTIONS(933), - [anon_sym_gen] = ACTIONS(933), - [anon_sym_if] = ACTIONS(933), - [anon_sym_impl] = ACTIONS(933), - [anon_sym_let] = ACTIONS(933), - [anon_sym_loop] = ACTIONS(933), - [anon_sym_match] = ACTIONS(933), - [anon_sym_mod] = ACTIONS(933), - [anon_sym_pub] = ACTIONS(933), - [anon_sym_return] = ACTIONS(933), - [anon_sym_static] = ACTIONS(933), - [anon_sym_struct] = ACTIONS(933), - [anon_sym_trait] = ACTIONS(933), - [anon_sym_type] = ACTIONS(933), - [anon_sym_union] = ACTIONS(933), - [anon_sym_unsafe] = ACTIONS(933), - [anon_sym_use] = ACTIONS(933), - [anon_sym_where] = ACTIONS(933), - [anon_sym_while] = ACTIONS(933), - [sym_mutable_specifier] = ACTIONS(933), - [sym_integer_literal] = ACTIONS(935), - [aux_sym_string_literal_token1] = ACTIONS(935), - [sym_char_literal] = ACTIONS(935), - [anon_sym_true] = ACTIONS(933), - [anon_sym_false] = ACTIONS(933), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(933), - [sym_super] = ACTIONS(933), - [sym_crate] = ACTIONS(933), - [sym_metavariable] = ACTIONS(935), - [sym__raw_string_literal_start] = ACTIONS(935), - [sym_float_literal] = ACTIONS(935), + [aux_sym_enum_variant_list_repeat1] = STATE(200), + [sym_identifier] = ACTIONS(344), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(930), + [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(874), + [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_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(155)] = { - [sym_attribute_item] = STATE(1031), - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1644), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1520), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), + [sym_attribute_item] = STATE(1038), + [sym_bracketed_type] = STATE(3752), + [sym_generic_function] = STATE(1492), + [sym_generic_type_with_turbofish] = STATE(3039), + [sym__expression_except_range] = STATE(1409), + [sym__expression] = STATE(1689), + [sym_macro_invocation] = STATE(1529), + [sym_scoped_identifier] = STATE(1540), + [sym_scoped_type_identifier_in_expression_position] = STATE(3335), + [sym_range_expression] = STATE(1505), + [sym_unary_expression] = STATE(1492), + [sym_try_expression] = STATE(1492), + [sym_reference_expression] = STATE(1492), + [sym_binary_expression] = STATE(1492), + [sym_assignment_expression] = STATE(1492), + [sym_compound_assignment_expr] = STATE(1492), + [sym_type_cast_expression] = STATE(1492), + [sym_return_expression] = STATE(1492), + [sym_yield_expression] = STATE(1492), + [sym_call_expression] = STATE(1492), + [sym_array_expression] = STATE(1492), + [sym_parenthesized_expression] = STATE(1492), + [sym_tuple_expression] = STATE(1492), + [sym_unit_expression] = STATE(1492), + [sym_struct_expression] = STATE(1492), + [sym_if_expression] = STATE(1492), + [sym_match_expression] = STATE(1492), + [sym_while_expression] = STATE(1492), + [sym_loop_expression] = STATE(1492), + [sym_for_expression] = STATE(1492), + [sym_const_block] = STATE(1492), + [sym_closure_expression] = STATE(1492), + [sym_closure_parameters] = STATE(229), + [sym_label] = STATE(3689), + [sym_break_expression] = STATE(1492), + [sym_continue_expression] = STATE(1492), + [sym_index_expression] = STATE(1492), + [sym_await_expression] = STATE(1492), + [sym_field_expression] = STATE(1412), + [sym_unsafe_block] = STATE(1492), + [sym_async_block] = STATE(1492), + [sym_gen_block] = STATE(1492), + [sym_try_block] = STATE(1492), + [sym_block] = STATE(1492), + [sym__literal] = STATE(1492), + [sym_string_literal] = STATE(1530), + [sym_raw_string_literal] = STATE(1530), + [sym_boolean_literal] = STATE(1530), [sym_line_comment] = STATE(155), [sym_block_comment] = STATE(155), - [aux_sym_enum_variant_list_repeat1] = STATE(204), - [sym_identifier] = ACTIONS(339), + [aux_sym_enum_variant_list_repeat1] = STATE(200), + [sym_identifier] = ACTIONS(344), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(937), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_RBRACK] = ACTIONS(932), + [anon_sym_LBRACE] = ACTIONS(348), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -34801,329 +34932,445 @@ 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(748), + [anon_sym_POUND] = ACTIONS(874), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), + [anon_sym_async] = ACTIONS(356), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(358), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), + [anon_sym_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(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(115), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [anon_sym_static] = ACTIONS(372), + [anon_sym_union] = ACTIONS(360), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [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(156)] = { + [sym_attribute_item] = STATE(1038), + [sym_bracketed_type] = STATE(3752), + [sym_generic_function] = STATE(1492), + [sym_generic_type_with_turbofish] = STATE(3039), + [sym__expression_except_range] = STATE(1409), + [sym__expression] = STATE(1689), + [sym_macro_invocation] = STATE(1529), + [sym_scoped_identifier] = STATE(1540), + [sym_scoped_type_identifier_in_expression_position] = STATE(3335), + [sym_range_expression] = STATE(1505), + [sym_unary_expression] = STATE(1492), + [sym_try_expression] = STATE(1492), + [sym_reference_expression] = STATE(1492), + [sym_binary_expression] = STATE(1492), + [sym_assignment_expression] = STATE(1492), + [sym_compound_assignment_expr] = STATE(1492), + [sym_type_cast_expression] = STATE(1492), + [sym_return_expression] = STATE(1492), + [sym_yield_expression] = STATE(1492), + [sym_call_expression] = STATE(1492), + [sym_array_expression] = STATE(1492), + [sym_parenthesized_expression] = STATE(1492), + [sym_tuple_expression] = STATE(1492), + [sym_unit_expression] = STATE(1492), + [sym_struct_expression] = STATE(1492), + [sym_if_expression] = STATE(1492), + [sym_match_expression] = STATE(1492), + [sym_while_expression] = STATE(1492), + [sym_loop_expression] = STATE(1492), + [sym_for_expression] = STATE(1492), + [sym_const_block] = STATE(1492), + [sym_closure_expression] = STATE(1492), + [sym_closure_parameters] = STATE(229), + [sym_label] = STATE(3689), + [sym_break_expression] = STATE(1492), + [sym_continue_expression] = STATE(1492), + [sym_index_expression] = STATE(1492), + [sym_await_expression] = STATE(1492), + [sym_field_expression] = STATE(1412), + [sym_unsafe_block] = STATE(1492), + [sym_async_block] = STATE(1492), + [sym_gen_block] = STATE(1492), + [sym_try_block] = STATE(1492), + [sym_block] = STATE(1492), + [sym__literal] = STATE(1492), + [sym_string_literal] = STATE(1530), + [sym_raw_string_literal] = STATE(1530), + [sym_boolean_literal] = STATE(1530), [sym_line_comment] = STATE(156), [sym_block_comment] = STATE(156), - [sym_identifier] = ACTIONS(939), - [anon_sym_SEMI] = ACTIONS(941), - [anon_sym_LPAREN] = ACTIONS(941), - [anon_sym_RPAREN] = ACTIONS(941), - [anon_sym_LBRACK] = ACTIONS(941), - [anon_sym_RBRACK] = ACTIONS(941), - [anon_sym_LBRACE] = ACTIONS(941), - [anon_sym_RBRACE] = ACTIONS(941), - [anon_sym_EQ_GT] = ACTIONS(941), - [anon_sym_COLON] = ACTIONS(939), - [anon_sym_DOLLAR] = ACTIONS(939), - [anon_sym_PLUS] = ACTIONS(939), - [anon_sym_STAR] = ACTIONS(939), - [anon_sym_QMARK] = ACTIONS(941), - [anon_sym_u8] = ACTIONS(939), - [anon_sym_i8] = ACTIONS(939), - [anon_sym_u16] = ACTIONS(939), - [anon_sym_i16] = ACTIONS(939), - [anon_sym_u32] = ACTIONS(939), - [anon_sym_i32] = ACTIONS(939), - [anon_sym_u64] = ACTIONS(939), - [anon_sym_i64] = ACTIONS(939), - [anon_sym_u128] = ACTIONS(939), - [anon_sym_i128] = ACTIONS(939), - [anon_sym_isize] = ACTIONS(939), - [anon_sym_usize] = ACTIONS(939), - [anon_sym_f32] = ACTIONS(939), - [anon_sym_f64] = ACTIONS(939), - [anon_sym_bool] = ACTIONS(939), - [anon_sym_str] = ACTIONS(939), - [anon_sym_char] = ACTIONS(939), - [anon_sym_DASH] = ACTIONS(939), - [anon_sym_SLASH] = ACTIONS(939), - [anon_sym_PERCENT] = ACTIONS(939), - [anon_sym_CARET] = ACTIONS(939), - [anon_sym_BANG] = ACTIONS(939), - [anon_sym_AMP] = ACTIONS(939), - [anon_sym_PIPE] = ACTIONS(939), - [anon_sym_AMP_AMP] = ACTIONS(941), - [anon_sym_PIPE_PIPE] = ACTIONS(941), - [anon_sym_LT_LT] = ACTIONS(939), - [anon_sym_GT_GT] = ACTIONS(939), - [anon_sym_PLUS_EQ] = ACTIONS(941), - [anon_sym_DASH_EQ] = ACTIONS(941), - [anon_sym_STAR_EQ] = ACTIONS(941), - [anon_sym_SLASH_EQ] = ACTIONS(941), - [anon_sym_PERCENT_EQ] = ACTIONS(941), - [anon_sym_CARET_EQ] = ACTIONS(941), - [anon_sym_AMP_EQ] = ACTIONS(941), - [anon_sym_PIPE_EQ] = ACTIONS(941), - [anon_sym_LT_LT_EQ] = ACTIONS(941), - [anon_sym_GT_GT_EQ] = ACTIONS(941), - [anon_sym_EQ] = ACTIONS(939), - [anon_sym_EQ_EQ] = ACTIONS(941), - [anon_sym_BANG_EQ] = ACTIONS(941), - [anon_sym_GT] = ACTIONS(939), - [anon_sym_LT] = ACTIONS(939), - [anon_sym_GT_EQ] = ACTIONS(941), - [anon_sym_LT_EQ] = ACTIONS(941), - [anon_sym_AT] = ACTIONS(941), - [anon_sym__] = ACTIONS(939), - [anon_sym_DOT] = ACTIONS(939), - [anon_sym_DOT_DOT] = ACTIONS(939), - [anon_sym_DOT_DOT_DOT] = ACTIONS(941), - [anon_sym_DOT_DOT_EQ] = ACTIONS(941), - [anon_sym_COMMA] = ACTIONS(941), - [anon_sym_COLON_COLON] = ACTIONS(941), - [anon_sym_DASH_GT] = ACTIONS(941), - [anon_sym_POUND] = ACTIONS(941), - [anon_sym_SQUOTE] = ACTIONS(939), - [anon_sym_as] = ACTIONS(939), - [anon_sym_async] = ACTIONS(939), - [anon_sym_await] = ACTIONS(939), - [anon_sym_break] = ACTIONS(939), - [anon_sym_const] = ACTIONS(939), - [anon_sym_continue] = ACTIONS(939), - [anon_sym_default] = ACTIONS(939), - [anon_sym_enum] = ACTIONS(939), - [anon_sym_fn] = ACTIONS(939), - [anon_sym_for] = ACTIONS(939), - [anon_sym_gen] = ACTIONS(939), - [anon_sym_if] = ACTIONS(939), - [anon_sym_impl] = ACTIONS(939), - [anon_sym_let] = ACTIONS(939), - [anon_sym_loop] = ACTIONS(939), - [anon_sym_match] = ACTIONS(939), - [anon_sym_mod] = ACTIONS(939), - [anon_sym_pub] = ACTIONS(939), - [anon_sym_return] = ACTIONS(939), - [anon_sym_static] = ACTIONS(939), - [anon_sym_struct] = ACTIONS(939), - [anon_sym_trait] = ACTIONS(939), - [anon_sym_type] = ACTIONS(939), - [anon_sym_union] = ACTIONS(939), - [anon_sym_unsafe] = ACTIONS(939), - [anon_sym_use] = ACTIONS(939), - [anon_sym_where] = ACTIONS(939), - [anon_sym_while] = ACTIONS(939), - [sym_mutable_specifier] = ACTIONS(939), - [sym_integer_literal] = ACTIONS(941), - [aux_sym_string_literal_token1] = ACTIONS(941), - [sym_char_literal] = ACTIONS(941), - [anon_sym_true] = ACTIONS(939), - [anon_sym_false] = ACTIONS(939), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(939), - [sym_super] = ACTIONS(939), - [sym_crate] = ACTIONS(939), - [sym_metavariable] = ACTIONS(941), - [sym__raw_string_literal_start] = ACTIONS(941), - [sym_float_literal] = ACTIONS(941), - }, - [STATE(157)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3056), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1724), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1591), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_let_condition] = STATE(3090), - [sym__let_chain] = STATE(3116), - [sym__condition] = STATE(2583), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [sym_line_comment] = STATE(157), - [sym_block_comment] = STATE(157), - [sym_identifier] = ACTIONS(467), + [aux_sym_enum_variant_list_repeat1] = STATE(200), + [sym_identifier] = ACTIONS(344), [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(934), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(901), - [anon_sym_u8] = ACTIONS(469), - [anon_sym_i8] = ACTIONS(469), - [anon_sym_u16] = ACTIONS(469), - [anon_sym_i16] = ACTIONS(469), - [anon_sym_u32] = ACTIONS(469), - [anon_sym_i32] = ACTIONS(469), - [anon_sym_u64] = ACTIONS(469), - [anon_sym_i64] = ACTIONS(469), - [anon_sym_u128] = ACTIONS(469), - [anon_sym_i128] = ACTIONS(469), - [anon_sym_isize] = ACTIONS(469), - [anon_sym_usize] = ACTIONS(469), - [anon_sym_f32] = ACTIONS(469), - [anon_sym_f64] = ACTIONS(469), - [anon_sym_bool] = ACTIONS(469), - [anon_sym_str] = ACTIONS(469), - [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(901), - [anon_sym_BANG] = ACTIONS(901), - [anon_sym_AMP] = ACTIONS(903), + [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(905), - [anon_sym_COLON_COLON] = ACTIONS(473), + [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_POUND] = ACTIONS(874), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(477), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), - [anon_sym_if] = ACTIONS(361), - [anon_sym_let] = ACTIONS(907), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(477), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(489), - [sym_super] = ACTIONS(491), - [sym_crate] = ACTIONS(491), - [sym_metavariable] = ACTIONS(493), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [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_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(157)] = { + [sym_line_comment] = STATE(157), + [sym_block_comment] = STATE(157), + [sym_identifier] = ACTIONS(936), + [anon_sym_SEMI] = ACTIONS(938), + [anon_sym_LPAREN] = ACTIONS(938), + [anon_sym_RPAREN] = ACTIONS(938), + [anon_sym_LBRACK] = ACTIONS(938), + [anon_sym_RBRACK] = ACTIONS(938), + [anon_sym_LBRACE] = ACTIONS(938), + [anon_sym_RBRACE] = ACTIONS(938), + [anon_sym_EQ_GT] = ACTIONS(938), + [anon_sym_COLON] = ACTIONS(936), + [anon_sym_DOLLAR] = ACTIONS(936), + [anon_sym_PLUS] = ACTIONS(936), + [anon_sym_STAR] = ACTIONS(936), + [anon_sym_QMARK] = ACTIONS(938), + [anon_sym_u8] = ACTIONS(936), + [anon_sym_i8] = ACTIONS(936), + [anon_sym_u16] = ACTIONS(936), + [anon_sym_i16] = ACTIONS(936), + [anon_sym_u32] = ACTIONS(936), + [anon_sym_i32] = ACTIONS(936), + [anon_sym_u64] = ACTIONS(936), + [anon_sym_i64] = ACTIONS(936), + [anon_sym_u128] = ACTIONS(936), + [anon_sym_i128] = ACTIONS(936), + [anon_sym_isize] = ACTIONS(936), + [anon_sym_usize] = ACTIONS(936), + [anon_sym_f32] = ACTIONS(936), + [anon_sym_f64] = ACTIONS(936), + [anon_sym_bool] = ACTIONS(936), + [anon_sym_str] = ACTIONS(936), + [anon_sym_char] = ACTIONS(936), + [anon_sym_DASH] = ACTIONS(936), + [anon_sym_SLASH] = ACTIONS(936), + [anon_sym_PERCENT] = ACTIONS(936), + [anon_sym_CARET] = ACTIONS(936), + [anon_sym_BANG] = ACTIONS(936), + [anon_sym_AMP] = ACTIONS(936), + [anon_sym_PIPE] = ACTIONS(936), + [anon_sym_AMP_AMP] = ACTIONS(938), + [anon_sym_PIPE_PIPE] = ACTIONS(938), + [anon_sym_LT_LT] = ACTIONS(936), + [anon_sym_GT_GT] = ACTIONS(936), + [anon_sym_PLUS_EQ] = ACTIONS(938), + [anon_sym_DASH_EQ] = ACTIONS(938), + [anon_sym_STAR_EQ] = ACTIONS(938), + [anon_sym_SLASH_EQ] = ACTIONS(938), + [anon_sym_PERCENT_EQ] = ACTIONS(938), + [anon_sym_CARET_EQ] = ACTIONS(938), + [anon_sym_AMP_EQ] = ACTIONS(938), + [anon_sym_PIPE_EQ] = ACTIONS(938), + [anon_sym_LT_LT_EQ] = ACTIONS(938), + [anon_sym_GT_GT_EQ] = ACTIONS(938), + [anon_sym_EQ] = ACTIONS(936), + [anon_sym_EQ_EQ] = ACTIONS(938), + [anon_sym_BANG_EQ] = ACTIONS(938), + [anon_sym_GT] = ACTIONS(936), + [anon_sym_LT] = ACTIONS(936), + [anon_sym_GT_EQ] = ACTIONS(938), + [anon_sym_LT_EQ] = ACTIONS(938), + [anon_sym_AT] = ACTIONS(938), + [anon_sym__] = ACTIONS(936), + [anon_sym_DOT] = ACTIONS(936), + [anon_sym_DOT_DOT] = ACTIONS(936), + [anon_sym_DOT_DOT_DOT] = ACTIONS(938), + [anon_sym_DOT_DOT_EQ] = ACTIONS(938), + [anon_sym_COMMA] = ACTIONS(938), + [anon_sym_COLON_COLON] = ACTIONS(938), + [anon_sym_DASH_GT] = ACTIONS(938), + [anon_sym_POUND] = ACTIONS(938), + [anon_sym_SQUOTE] = ACTIONS(936), + [anon_sym_as] = ACTIONS(936), + [anon_sym_async] = ACTIONS(936), + [anon_sym_await] = ACTIONS(936), + [anon_sym_break] = ACTIONS(936), + [anon_sym_const] = ACTIONS(936), + [anon_sym_continue] = ACTIONS(936), + [anon_sym_default] = ACTIONS(936), + [anon_sym_enum] = ACTIONS(936), + [anon_sym_fn] = ACTIONS(936), + [anon_sym_for] = ACTIONS(936), + [anon_sym_gen] = ACTIONS(936), + [anon_sym_if] = ACTIONS(936), + [anon_sym_impl] = ACTIONS(936), + [anon_sym_let] = ACTIONS(936), + [anon_sym_loop] = ACTIONS(936), + [anon_sym_match] = ACTIONS(936), + [anon_sym_mod] = ACTIONS(936), + [anon_sym_pub] = ACTIONS(936), + [anon_sym_return] = ACTIONS(936), + [anon_sym_static] = ACTIONS(936), + [anon_sym_struct] = ACTIONS(936), + [anon_sym_trait] = ACTIONS(936), + [anon_sym_type] = ACTIONS(936), + [anon_sym_union] = ACTIONS(936), + [anon_sym_unsafe] = ACTIONS(936), + [anon_sym_use] = ACTIONS(936), + [anon_sym_where] = ACTIONS(936), + [anon_sym_while] = ACTIONS(936), + [sym_mutable_specifier] = ACTIONS(936), + [sym_integer_literal] = ACTIONS(938), + [aux_sym_string_literal_token1] = ACTIONS(938), + [sym_char_literal] = ACTIONS(938), + [anon_sym_true] = ACTIONS(936), + [anon_sym_false] = ACTIONS(936), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(936), + [sym_super] = ACTIONS(936), + [sym_crate] = ACTIONS(936), + [sym_metavariable] = ACTIONS(938), + [sym__raw_string_literal_start] = ACTIONS(938), + [sym_float_literal] = ACTIONS(938), }, [STATE(158)] = { - [sym_attribute_item] = STATE(1031), - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1644), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1520), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), [sym_line_comment] = STATE(158), [sym_block_comment] = STATE(158), - [aux_sym_enum_variant_list_repeat1] = STATE(204), - [sym_identifier] = ACTIONS(339), + [sym_identifier] = ACTIONS(940), + [anon_sym_SEMI] = ACTIONS(942), + [anon_sym_LPAREN] = ACTIONS(942), + [anon_sym_RPAREN] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(942), + [anon_sym_RBRACK] = ACTIONS(942), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_RBRACE] = ACTIONS(942), + [anon_sym_EQ_GT] = ACTIONS(942), + [anon_sym_COLON] = ACTIONS(940), + [anon_sym_DOLLAR] = ACTIONS(940), + [anon_sym_PLUS] = ACTIONS(940), + [anon_sym_STAR] = ACTIONS(940), + [anon_sym_QMARK] = ACTIONS(942), + [anon_sym_u8] = ACTIONS(940), + [anon_sym_i8] = ACTIONS(940), + [anon_sym_u16] = ACTIONS(940), + [anon_sym_i16] = ACTIONS(940), + [anon_sym_u32] = ACTIONS(940), + [anon_sym_i32] = ACTIONS(940), + [anon_sym_u64] = ACTIONS(940), + [anon_sym_i64] = ACTIONS(940), + [anon_sym_u128] = ACTIONS(940), + [anon_sym_i128] = ACTIONS(940), + [anon_sym_isize] = ACTIONS(940), + [anon_sym_usize] = ACTIONS(940), + [anon_sym_f32] = ACTIONS(940), + [anon_sym_f64] = ACTIONS(940), + [anon_sym_bool] = ACTIONS(940), + [anon_sym_str] = ACTIONS(940), + [anon_sym_char] = ACTIONS(940), + [anon_sym_DASH] = ACTIONS(940), + [anon_sym_SLASH] = ACTIONS(940), + [anon_sym_PERCENT] = ACTIONS(940), + [anon_sym_CARET] = ACTIONS(940), + [anon_sym_BANG] = ACTIONS(940), + [anon_sym_AMP] = ACTIONS(940), + [anon_sym_PIPE] = ACTIONS(940), + [anon_sym_AMP_AMP] = ACTIONS(942), + [anon_sym_PIPE_PIPE] = ACTIONS(942), + [anon_sym_LT_LT] = ACTIONS(940), + [anon_sym_GT_GT] = ACTIONS(940), + [anon_sym_PLUS_EQ] = ACTIONS(942), + [anon_sym_DASH_EQ] = ACTIONS(942), + [anon_sym_STAR_EQ] = ACTIONS(942), + [anon_sym_SLASH_EQ] = ACTIONS(942), + [anon_sym_PERCENT_EQ] = ACTIONS(942), + [anon_sym_CARET_EQ] = ACTIONS(942), + [anon_sym_AMP_EQ] = ACTIONS(942), + [anon_sym_PIPE_EQ] = ACTIONS(942), + [anon_sym_LT_LT_EQ] = ACTIONS(942), + [anon_sym_GT_GT_EQ] = ACTIONS(942), + [anon_sym_EQ] = ACTIONS(940), + [anon_sym_EQ_EQ] = ACTIONS(942), + [anon_sym_BANG_EQ] = ACTIONS(942), + [anon_sym_GT] = ACTIONS(940), + [anon_sym_LT] = ACTIONS(940), + [anon_sym_GT_EQ] = ACTIONS(942), + [anon_sym_LT_EQ] = ACTIONS(942), + [anon_sym_AT] = ACTIONS(942), + [anon_sym__] = ACTIONS(940), + [anon_sym_DOT] = ACTIONS(940), + [anon_sym_DOT_DOT] = ACTIONS(940), + [anon_sym_DOT_DOT_DOT] = ACTIONS(942), + [anon_sym_DOT_DOT_EQ] = ACTIONS(942), + [anon_sym_COMMA] = ACTIONS(942), + [anon_sym_COLON_COLON] = ACTIONS(942), + [anon_sym_DASH_GT] = ACTIONS(942), + [anon_sym_POUND] = ACTIONS(942), + [anon_sym_SQUOTE] = ACTIONS(940), + [anon_sym_as] = ACTIONS(940), + [anon_sym_async] = ACTIONS(940), + [anon_sym_await] = ACTIONS(940), + [anon_sym_break] = ACTIONS(940), + [anon_sym_const] = ACTIONS(940), + [anon_sym_continue] = ACTIONS(940), + [anon_sym_default] = ACTIONS(940), + [anon_sym_enum] = ACTIONS(940), + [anon_sym_fn] = ACTIONS(940), + [anon_sym_for] = ACTIONS(940), + [anon_sym_gen] = ACTIONS(940), + [anon_sym_if] = ACTIONS(940), + [anon_sym_impl] = ACTIONS(940), + [anon_sym_let] = ACTIONS(940), + [anon_sym_loop] = ACTIONS(940), + [anon_sym_match] = ACTIONS(940), + [anon_sym_mod] = ACTIONS(940), + [anon_sym_pub] = ACTIONS(940), + [anon_sym_return] = ACTIONS(940), + [anon_sym_static] = ACTIONS(940), + [anon_sym_struct] = ACTIONS(940), + [anon_sym_trait] = ACTIONS(940), + [anon_sym_type] = ACTIONS(940), + [anon_sym_union] = ACTIONS(940), + [anon_sym_unsafe] = ACTIONS(940), + [anon_sym_use] = ACTIONS(940), + [anon_sym_where] = ACTIONS(940), + [anon_sym_while] = ACTIONS(940), + [sym_mutable_specifier] = ACTIONS(940), + [sym_integer_literal] = ACTIONS(942), + [aux_sym_string_literal_token1] = ACTIONS(942), + [sym_char_literal] = ACTIONS(942), + [anon_sym_true] = ACTIONS(940), + [anon_sym_false] = ACTIONS(940), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(940), + [sym_super] = ACTIONS(940), + [sym_crate] = ACTIONS(940), + [sym_metavariable] = ACTIONS(942), + [sym__raw_string_literal_start] = ACTIONS(942), + [sym_float_literal] = ACTIONS(942), + }, + [STATE(159)] = { + [sym_attribute_item] = STATE(1038), + [sym_bracketed_type] = STATE(3752), + [sym_generic_function] = STATE(1492), + [sym_generic_type_with_turbofish] = STATE(3039), + [sym__expression_except_range] = STATE(1409), + [sym__expression] = STATE(1689), + [sym_macro_invocation] = STATE(1529), + [sym_scoped_identifier] = STATE(1540), + [sym_scoped_type_identifier_in_expression_position] = STATE(3335), + [sym_range_expression] = STATE(1505), + [sym_unary_expression] = STATE(1492), + [sym_try_expression] = STATE(1492), + [sym_reference_expression] = STATE(1492), + [sym_binary_expression] = STATE(1492), + [sym_assignment_expression] = STATE(1492), + [sym_compound_assignment_expr] = STATE(1492), + [sym_type_cast_expression] = STATE(1492), + [sym_return_expression] = STATE(1492), + [sym_yield_expression] = STATE(1492), + [sym_call_expression] = STATE(1492), + [sym_array_expression] = STATE(1492), + [sym_parenthesized_expression] = STATE(1492), + [sym_tuple_expression] = STATE(1492), + [sym_unit_expression] = STATE(1492), + [sym_struct_expression] = STATE(1492), + [sym_if_expression] = STATE(1492), + [sym_match_expression] = STATE(1492), + [sym_while_expression] = STATE(1492), + [sym_loop_expression] = STATE(1492), + [sym_for_expression] = STATE(1492), + [sym_const_block] = STATE(1492), + [sym_closure_expression] = STATE(1492), + [sym_closure_parameters] = STATE(229), + [sym_label] = STATE(3689), + [sym_break_expression] = STATE(1492), + [sym_continue_expression] = STATE(1492), + [sym_index_expression] = STATE(1492), + [sym_await_expression] = STATE(1492), + [sym_field_expression] = STATE(1412), + [sym_unsafe_block] = STATE(1492), + [sym_async_block] = STATE(1492), + [sym_gen_block] = STATE(1492), + [sym_try_block] = STATE(1492), + [sym_block] = STATE(1492), + [sym__literal] = STATE(1492), + [sym_string_literal] = STATE(1530), + [sym_raw_string_literal] = STATE(1530), + [sym_boolean_literal] = STATE(1530), + [sym_line_comment] = STATE(159), + [sym_block_comment] = STATE(159), + [aux_sym_enum_variant_list_repeat1] = STATE(200), + [sym_identifier] = ACTIONS(344), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(943), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_RBRACK] = ACTIONS(944), + [anon_sym_LBRACE] = ACTIONS(348), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -35149,213 +35396,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(874), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), + [anon_sym_async] = ACTIONS(356), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(358), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), + [anon_sym_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(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(115), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), - }, - [STATE(159)] = { - [sym_line_comment] = STATE(159), - [sym_block_comment] = STATE(159), - [sym_identifier] = ACTIONS(945), - [anon_sym_SEMI] = ACTIONS(947), - [anon_sym_LPAREN] = ACTIONS(947), - [anon_sym_RPAREN] = ACTIONS(947), - [anon_sym_LBRACK] = ACTIONS(947), - [anon_sym_RBRACK] = ACTIONS(947), - [anon_sym_LBRACE] = ACTIONS(947), - [anon_sym_RBRACE] = ACTIONS(947), - [anon_sym_EQ_GT] = ACTIONS(947), - [anon_sym_COLON] = ACTIONS(945), - [anon_sym_DOLLAR] = ACTIONS(945), - [anon_sym_PLUS] = ACTIONS(945), - [anon_sym_STAR] = ACTIONS(945), - [anon_sym_QMARK] = ACTIONS(947), - [anon_sym_u8] = ACTIONS(945), - [anon_sym_i8] = ACTIONS(945), - [anon_sym_u16] = ACTIONS(945), - [anon_sym_i16] = ACTIONS(945), - [anon_sym_u32] = ACTIONS(945), - [anon_sym_i32] = ACTIONS(945), - [anon_sym_u64] = ACTIONS(945), - [anon_sym_i64] = ACTIONS(945), - [anon_sym_u128] = ACTIONS(945), - [anon_sym_i128] = ACTIONS(945), - [anon_sym_isize] = ACTIONS(945), - [anon_sym_usize] = ACTIONS(945), - [anon_sym_f32] = ACTIONS(945), - [anon_sym_f64] = ACTIONS(945), - [anon_sym_bool] = ACTIONS(945), - [anon_sym_str] = ACTIONS(945), - [anon_sym_char] = ACTIONS(945), - [anon_sym_DASH] = ACTIONS(945), - [anon_sym_SLASH] = ACTIONS(945), - [anon_sym_PERCENT] = ACTIONS(945), - [anon_sym_CARET] = ACTIONS(945), - [anon_sym_BANG] = ACTIONS(945), - [anon_sym_AMP] = ACTIONS(945), - [anon_sym_PIPE] = ACTIONS(945), - [anon_sym_AMP_AMP] = ACTIONS(947), - [anon_sym_PIPE_PIPE] = ACTIONS(947), - [anon_sym_LT_LT] = ACTIONS(945), - [anon_sym_GT_GT] = ACTIONS(945), - [anon_sym_PLUS_EQ] = ACTIONS(947), - [anon_sym_DASH_EQ] = ACTIONS(947), - [anon_sym_STAR_EQ] = ACTIONS(947), - [anon_sym_SLASH_EQ] = ACTIONS(947), - [anon_sym_PERCENT_EQ] = ACTIONS(947), - [anon_sym_CARET_EQ] = ACTIONS(947), - [anon_sym_AMP_EQ] = ACTIONS(947), - [anon_sym_PIPE_EQ] = ACTIONS(947), - [anon_sym_LT_LT_EQ] = ACTIONS(947), - [anon_sym_GT_GT_EQ] = ACTIONS(947), - [anon_sym_EQ] = ACTIONS(945), - [anon_sym_EQ_EQ] = ACTIONS(947), - [anon_sym_BANG_EQ] = ACTIONS(947), - [anon_sym_GT] = ACTIONS(945), - [anon_sym_LT] = ACTIONS(945), - [anon_sym_GT_EQ] = ACTIONS(947), - [anon_sym_LT_EQ] = ACTIONS(947), - [anon_sym_AT] = ACTIONS(947), - [anon_sym__] = ACTIONS(945), - [anon_sym_DOT] = ACTIONS(945), - [anon_sym_DOT_DOT] = ACTIONS(945), - [anon_sym_DOT_DOT_DOT] = ACTIONS(947), - [anon_sym_DOT_DOT_EQ] = ACTIONS(947), - [anon_sym_COMMA] = ACTIONS(947), - [anon_sym_COLON_COLON] = ACTIONS(947), - [anon_sym_DASH_GT] = ACTIONS(947), - [anon_sym_POUND] = ACTIONS(947), - [anon_sym_SQUOTE] = ACTIONS(945), - [anon_sym_as] = ACTIONS(945), - [anon_sym_async] = ACTIONS(945), - [anon_sym_await] = ACTIONS(945), - [anon_sym_break] = ACTIONS(945), - [anon_sym_const] = ACTIONS(945), - [anon_sym_continue] = ACTIONS(945), - [anon_sym_default] = ACTIONS(945), - [anon_sym_enum] = ACTIONS(945), - [anon_sym_fn] = ACTIONS(945), - [anon_sym_for] = ACTIONS(945), - [anon_sym_gen] = ACTIONS(945), - [anon_sym_if] = ACTIONS(945), - [anon_sym_impl] = ACTIONS(945), - [anon_sym_let] = ACTIONS(945), - [anon_sym_loop] = ACTIONS(945), - [anon_sym_match] = ACTIONS(945), - [anon_sym_mod] = ACTIONS(945), - [anon_sym_pub] = ACTIONS(945), - [anon_sym_return] = ACTIONS(945), - [anon_sym_static] = ACTIONS(945), - [anon_sym_struct] = ACTIONS(945), - [anon_sym_trait] = ACTIONS(945), - [anon_sym_type] = ACTIONS(945), - [anon_sym_union] = ACTIONS(945), - [anon_sym_unsafe] = ACTIONS(945), - [anon_sym_use] = ACTIONS(945), - [anon_sym_where] = ACTIONS(945), - [anon_sym_while] = ACTIONS(945), - [sym_mutable_specifier] = ACTIONS(945), - [sym_integer_literal] = ACTIONS(947), - [aux_sym_string_literal_token1] = ACTIONS(947), - [sym_char_literal] = ACTIONS(947), - [anon_sym_true] = ACTIONS(945), - [anon_sym_false] = ACTIONS(945), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(945), - [sym_super] = ACTIONS(945), - [sym_crate] = ACTIONS(945), - [sym_metavariable] = ACTIONS(947), - [sym__raw_string_literal_start] = ACTIONS(947), - [sym_float_literal] = ACTIONS(947), + [anon_sym_static] = ACTIONS(372), + [anon_sym_union] = ACTIONS(360), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [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(160)] = { - [sym_attribute_item] = STATE(1031), - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1644), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1520), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), + [sym_attribute_item] = STATE(1038), + [sym_bracketed_type] = STATE(3752), + [sym_generic_function] = STATE(1492), + [sym_generic_type_with_turbofish] = STATE(3039), + [sym__expression_except_range] = STATE(1409), + [sym__expression] = STATE(1689), + [sym_macro_invocation] = STATE(1529), + [sym_scoped_identifier] = STATE(1540), + [sym_scoped_type_identifier_in_expression_position] = STATE(3335), + [sym_range_expression] = STATE(1505), + [sym_unary_expression] = STATE(1492), + [sym_try_expression] = STATE(1492), + [sym_reference_expression] = STATE(1492), + [sym_binary_expression] = STATE(1492), + [sym_assignment_expression] = STATE(1492), + [sym_compound_assignment_expr] = STATE(1492), + [sym_type_cast_expression] = STATE(1492), + [sym_return_expression] = STATE(1492), + [sym_yield_expression] = STATE(1492), + [sym_call_expression] = STATE(1492), + [sym_array_expression] = STATE(1492), + [sym_parenthesized_expression] = STATE(1492), + [sym_tuple_expression] = STATE(1492), + [sym_unit_expression] = STATE(1492), + [sym_struct_expression] = STATE(1492), + [sym_if_expression] = STATE(1492), + [sym_match_expression] = STATE(1492), + [sym_while_expression] = STATE(1492), + [sym_loop_expression] = STATE(1492), + [sym_for_expression] = STATE(1492), + [sym_const_block] = STATE(1492), + [sym_closure_expression] = STATE(1492), + [sym_closure_parameters] = STATE(229), + [sym_label] = STATE(3689), + [sym_break_expression] = STATE(1492), + [sym_continue_expression] = STATE(1492), + [sym_index_expression] = STATE(1492), + [sym_await_expression] = STATE(1492), + [sym_field_expression] = STATE(1412), + [sym_unsafe_block] = STATE(1492), + [sym_async_block] = STATE(1492), + [sym_gen_block] = STATE(1492), + [sym_try_block] = STATE(1492), + [sym_block] = STATE(1492), + [sym__literal] = STATE(1492), + [sym_string_literal] = STATE(1530), + [sym_raw_string_literal] = STATE(1530), + [sym_boolean_literal] = STATE(1530), [sym_line_comment] = STATE(160), [sym_block_comment] = STATE(160), - [aux_sym_enum_variant_list_repeat1] = STATE(204), - [sym_identifier] = ACTIONS(339), + [aux_sym_enum_variant_list_repeat1] = STATE(200), + [sym_identifier] = ACTIONS(344), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(949), + [anon_sym_RPAREN] = ACTIONS(946), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(348), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -35381,74 +35512,75 @@ 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(748), + [anon_sym_POUND] = ACTIONS(874), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), + [anon_sym_async] = ACTIONS(356), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(358), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), + [anon_sym_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(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(115), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [anon_sym_static] = ACTIONS(372), + [anon_sym_union] = ACTIONS(360), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [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(161)] = { [sym_line_comment] = STATE(161), [sym_block_comment] = STATE(161), - [sym_identifier] = ACTIONS(951), - [anon_sym_SEMI] = ACTIONS(953), - [anon_sym_LPAREN] = ACTIONS(953), - [anon_sym_RPAREN] = ACTIONS(953), - [anon_sym_LBRACK] = ACTIONS(953), - [anon_sym_RBRACK] = ACTIONS(953), - [anon_sym_LBRACE] = ACTIONS(953), - [anon_sym_RBRACE] = ACTIONS(953), - [anon_sym_EQ_GT] = ACTIONS(953), + [aux_sym__non_special_token_repeat1] = STATE(161), + [sym_identifier] = ACTIONS(888), + [anon_sym_SEMI] = ACTIONS(948), + [anon_sym_LPAREN] = ACTIONS(893), + [anon_sym_RPAREN] = ACTIONS(893), + [anon_sym_LBRACK] = ACTIONS(893), + [anon_sym_RBRACK] = ACTIONS(893), + [anon_sym_LBRACE] = ACTIONS(893), + [anon_sym_RBRACE] = ACTIONS(893), + [anon_sym_EQ_GT] = ACTIONS(948), [anon_sym_COLON] = ACTIONS(951), - [anon_sym_DOLLAR] = ACTIONS(951), + [anon_sym_DOLLAR] = ACTIONS(893), [anon_sym_PLUS] = ACTIONS(951), [anon_sym_STAR] = ACTIONS(951), - [anon_sym_QMARK] = ACTIONS(953), - [anon_sym_u8] = ACTIONS(951), - [anon_sym_i8] = ACTIONS(951), - [anon_sym_u16] = ACTIONS(951), - [anon_sym_i16] = ACTIONS(951), - [anon_sym_u32] = ACTIONS(951), - [anon_sym_i32] = ACTIONS(951), - [anon_sym_u64] = ACTIONS(951), - [anon_sym_i64] = ACTIONS(951), - [anon_sym_u128] = ACTIONS(951), - [anon_sym_i128] = ACTIONS(951), - [anon_sym_isize] = ACTIONS(951), - [anon_sym_usize] = ACTIONS(951), - [anon_sym_f32] = ACTIONS(951), - [anon_sym_f64] = ACTIONS(951), - [anon_sym_bool] = ACTIONS(951), - [anon_sym_str] = ACTIONS(951), - [anon_sym_char] = ACTIONS(951), + [anon_sym_QMARK] = ACTIONS(948), + [anon_sym_u8] = ACTIONS(888), + [anon_sym_i8] = ACTIONS(888), + [anon_sym_u16] = ACTIONS(888), + [anon_sym_i16] = ACTIONS(888), + [anon_sym_u32] = ACTIONS(888), + [anon_sym_i32] = ACTIONS(888), + [anon_sym_u64] = ACTIONS(888), + [anon_sym_i64] = ACTIONS(888), + [anon_sym_u128] = ACTIONS(888), + [anon_sym_i128] = ACTIONS(888), + [anon_sym_isize] = ACTIONS(888), + [anon_sym_usize] = ACTIONS(888), + [anon_sym_f32] = ACTIONS(888), + [anon_sym_f64] = ACTIONS(888), + [anon_sym_bool] = ACTIONS(888), + [anon_sym_str] = ACTIONS(888), + [anon_sym_char] = ACTIONS(888), [anon_sym_DASH] = ACTIONS(951), [anon_sym_SLASH] = ACTIONS(951), [anon_sym_PERCENT] = ACTIONS(951), @@ -35456,370 +35588,369 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(951), [anon_sym_AMP] = ACTIONS(951), [anon_sym_PIPE] = ACTIONS(951), - [anon_sym_AMP_AMP] = ACTIONS(953), - [anon_sym_PIPE_PIPE] = ACTIONS(953), + [anon_sym_AMP_AMP] = ACTIONS(948), + [anon_sym_PIPE_PIPE] = ACTIONS(948), [anon_sym_LT_LT] = ACTIONS(951), [anon_sym_GT_GT] = ACTIONS(951), - [anon_sym_PLUS_EQ] = ACTIONS(953), - [anon_sym_DASH_EQ] = ACTIONS(953), - [anon_sym_STAR_EQ] = ACTIONS(953), - [anon_sym_SLASH_EQ] = ACTIONS(953), - [anon_sym_PERCENT_EQ] = ACTIONS(953), - [anon_sym_CARET_EQ] = ACTIONS(953), - [anon_sym_AMP_EQ] = ACTIONS(953), - [anon_sym_PIPE_EQ] = ACTIONS(953), - [anon_sym_LT_LT_EQ] = ACTIONS(953), - [anon_sym_GT_GT_EQ] = ACTIONS(953), + [anon_sym_PLUS_EQ] = ACTIONS(948), + [anon_sym_DASH_EQ] = ACTIONS(948), + [anon_sym_STAR_EQ] = ACTIONS(948), + [anon_sym_SLASH_EQ] = ACTIONS(948), + [anon_sym_PERCENT_EQ] = ACTIONS(948), + [anon_sym_CARET_EQ] = ACTIONS(948), + [anon_sym_AMP_EQ] = ACTIONS(948), + [anon_sym_PIPE_EQ] = ACTIONS(948), + [anon_sym_LT_LT_EQ] = ACTIONS(948), + [anon_sym_GT_GT_EQ] = ACTIONS(948), [anon_sym_EQ] = ACTIONS(951), - [anon_sym_EQ_EQ] = ACTIONS(953), - [anon_sym_BANG_EQ] = ACTIONS(953), + [anon_sym_EQ_EQ] = ACTIONS(948), + [anon_sym_BANG_EQ] = ACTIONS(948), [anon_sym_GT] = ACTIONS(951), [anon_sym_LT] = ACTIONS(951), - [anon_sym_GT_EQ] = ACTIONS(953), - [anon_sym_LT_EQ] = ACTIONS(953), - [anon_sym_AT] = ACTIONS(953), + [anon_sym_GT_EQ] = ACTIONS(948), + [anon_sym_LT_EQ] = ACTIONS(948), + [anon_sym_AT] = ACTIONS(948), [anon_sym__] = ACTIONS(951), [anon_sym_DOT] = ACTIONS(951), [anon_sym_DOT_DOT] = ACTIONS(951), - [anon_sym_DOT_DOT_DOT] = ACTIONS(953), - [anon_sym_DOT_DOT_EQ] = ACTIONS(953), - [anon_sym_COMMA] = ACTIONS(953), - [anon_sym_COLON_COLON] = ACTIONS(953), - [anon_sym_DASH_GT] = ACTIONS(953), - [anon_sym_POUND] = ACTIONS(953), - [anon_sym_SQUOTE] = ACTIONS(951), - [anon_sym_as] = ACTIONS(951), - [anon_sym_async] = ACTIONS(951), - [anon_sym_await] = ACTIONS(951), - [anon_sym_break] = ACTIONS(951), - [anon_sym_const] = ACTIONS(951), - [anon_sym_continue] = ACTIONS(951), - [anon_sym_default] = ACTIONS(951), - [anon_sym_enum] = ACTIONS(951), - [anon_sym_fn] = ACTIONS(951), - [anon_sym_for] = ACTIONS(951), - [anon_sym_gen] = ACTIONS(951), - [anon_sym_if] = ACTIONS(951), - [anon_sym_impl] = ACTIONS(951), - [anon_sym_let] = ACTIONS(951), - [anon_sym_loop] = ACTIONS(951), - [anon_sym_match] = ACTIONS(951), - [anon_sym_mod] = ACTIONS(951), - [anon_sym_pub] = ACTIONS(951), - [anon_sym_return] = ACTIONS(951), - [anon_sym_static] = ACTIONS(951), - [anon_sym_struct] = ACTIONS(951), - [anon_sym_trait] = ACTIONS(951), - [anon_sym_type] = ACTIONS(951), - [anon_sym_union] = ACTIONS(951), - [anon_sym_unsafe] = ACTIONS(951), - [anon_sym_use] = ACTIONS(951), - [anon_sym_where] = ACTIONS(951), - [anon_sym_while] = ACTIONS(951), - [sym_mutable_specifier] = ACTIONS(951), - [sym_integer_literal] = ACTIONS(953), - [aux_sym_string_literal_token1] = ACTIONS(953), - [sym_char_literal] = ACTIONS(953), - [anon_sym_true] = ACTIONS(951), - [anon_sym_false] = ACTIONS(951), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(951), - [sym_super] = ACTIONS(951), - [sym_crate] = ACTIONS(951), - [sym_metavariable] = ACTIONS(953), - [sym__raw_string_literal_start] = ACTIONS(953), - [sym_float_literal] = ACTIONS(953), + [anon_sym_DOT_DOT_DOT] = ACTIONS(948), + [anon_sym_DOT_DOT_EQ] = ACTIONS(948), + [anon_sym_COMMA] = ACTIONS(948), + [anon_sym_COLON_COLON] = ACTIONS(948), + [anon_sym_DASH_GT] = ACTIONS(948), + [anon_sym_POUND] = ACTIONS(948), + [anon_sym_SQUOTE] = ACTIONS(888), + [anon_sym_as] = ACTIONS(888), + [anon_sym_async] = ACTIONS(888), + [anon_sym_await] = ACTIONS(888), + [anon_sym_break] = ACTIONS(888), + [anon_sym_const] = ACTIONS(888), + [anon_sym_continue] = ACTIONS(888), + [anon_sym_default] = ACTIONS(888), + [anon_sym_enum] = ACTIONS(888), + [anon_sym_fn] = ACTIONS(888), + [anon_sym_for] = ACTIONS(888), + [anon_sym_gen] = ACTIONS(888), + [anon_sym_if] = ACTIONS(888), + [anon_sym_impl] = ACTIONS(888), + [anon_sym_let] = ACTIONS(888), + [anon_sym_loop] = ACTIONS(888), + [anon_sym_match] = ACTIONS(888), + [anon_sym_mod] = ACTIONS(888), + [anon_sym_pub] = ACTIONS(888), + [anon_sym_return] = ACTIONS(888), + [anon_sym_static] = ACTIONS(888), + [anon_sym_struct] = ACTIONS(888), + [anon_sym_trait] = ACTIONS(888), + [anon_sym_type] = ACTIONS(888), + [anon_sym_union] = ACTIONS(888), + [anon_sym_unsafe] = ACTIONS(888), + [anon_sym_use] = ACTIONS(888), + [anon_sym_where] = ACTIONS(888), + [anon_sym_while] = ACTIONS(888), + [sym_mutable_specifier] = ACTIONS(888), + [sym_integer_literal] = ACTIONS(893), + [aux_sym_string_literal_token1] = ACTIONS(893), + [sym_char_literal] = ACTIONS(893), + [anon_sym_true] = ACTIONS(888), + [anon_sym_false] = ACTIONS(888), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(888), + [sym_super] = ACTIONS(888), + [sym_crate] = ACTIONS(888), + [sym__raw_string_literal_start] = ACTIONS(893), + [sym_float_literal] = ACTIONS(893), }, [STATE(162)] = { [sym_line_comment] = STATE(162), [sym_block_comment] = STATE(162), - [sym_identifier] = ACTIONS(955), - [anon_sym_SEMI] = ACTIONS(957), - [anon_sym_LPAREN] = ACTIONS(957), - [anon_sym_RPAREN] = ACTIONS(957), - [anon_sym_LBRACK] = ACTIONS(957), - [anon_sym_RBRACK] = ACTIONS(957), - [anon_sym_LBRACE] = ACTIONS(957), - [anon_sym_RBRACE] = ACTIONS(957), - [anon_sym_EQ_GT] = ACTIONS(957), - [anon_sym_COLON] = ACTIONS(955), - [anon_sym_DOLLAR] = ACTIONS(955), - [anon_sym_PLUS] = ACTIONS(955), - [anon_sym_STAR] = ACTIONS(955), - [anon_sym_QMARK] = ACTIONS(957), - [anon_sym_u8] = ACTIONS(955), - [anon_sym_i8] = ACTIONS(955), - [anon_sym_u16] = ACTIONS(955), - [anon_sym_i16] = ACTIONS(955), - [anon_sym_u32] = ACTIONS(955), - [anon_sym_i32] = ACTIONS(955), - [anon_sym_u64] = ACTIONS(955), - [anon_sym_i64] = ACTIONS(955), - [anon_sym_u128] = ACTIONS(955), - [anon_sym_i128] = ACTIONS(955), - [anon_sym_isize] = ACTIONS(955), - [anon_sym_usize] = ACTIONS(955), - [anon_sym_f32] = ACTIONS(955), - [anon_sym_f64] = ACTIONS(955), - [anon_sym_bool] = ACTIONS(955), - [anon_sym_str] = ACTIONS(955), - [anon_sym_char] = ACTIONS(955), - [anon_sym_DASH] = ACTIONS(955), - [anon_sym_SLASH] = ACTIONS(955), - [anon_sym_PERCENT] = ACTIONS(955), - [anon_sym_CARET] = ACTIONS(955), - [anon_sym_BANG] = ACTIONS(955), - [anon_sym_AMP] = ACTIONS(955), - [anon_sym_PIPE] = ACTIONS(955), - [anon_sym_AMP_AMP] = ACTIONS(957), - [anon_sym_PIPE_PIPE] = ACTIONS(957), - [anon_sym_LT_LT] = ACTIONS(955), - [anon_sym_GT_GT] = ACTIONS(955), - [anon_sym_PLUS_EQ] = ACTIONS(957), - [anon_sym_DASH_EQ] = ACTIONS(957), - [anon_sym_STAR_EQ] = ACTIONS(957), - [anon_sym_SLASH_EQ] = ACTIONS(957), - [anon_sym_PERCENT_EQ] = ACTIONS(957), - [anon_sym_CARET_EQ] = ACTIONS(957), - [anon_sym_AMP_EQ] = ACTIONS(957), - [anon_sym_PIPE_EQ] = ACTIONS(957), - [anon_sym_LT_LT_EQ] = ACTIONS(957), - [anon_sym_GT_GT_EQ] = ACTIONS(957), - [anon_sym_EQ] = ACTIONS(955), - [anon_sym_EQ_EQ] = ACTIONS(957), - [anon_sym_BANG_EQ] = ACTIONS(957), - [anon_sym_GT] = ACTIONS(955), - [anon_sym_LT] = ACTIONS(955), - [anon_sym_GT_EQ] = ACTIONS(957), - [anon_sym_LT_EQ] = ACTIONS(957), - [anon_sym_AT] = ACTIONS(957), - [anon_sym__] = ACTIONS(955), - [anon_sym_DOT] = ACTIONS(955), - [anon_sym_DOT_DOT] = ACTIONS(955), - [anon_sym_DOT_DOT_DOT] = ACTIONS(957), - [anon_sym_DOT_DOT_EQ] = ACTIONS(957), - [anon_sym_COMMA] = ACTIONS(957), - [anon_sym_COLON_COLON] = ACTIONS(957), - [anon_sym_DASH_GT] = ACTIONS(957), - [anon_sym_POUND] = ACTIONS(957), - [anon_sym_SQUOTE] = ACTIONS(955), - [anon_sym_as] = ACTIONS(955), - [anon_sym_async] = ACTIONS(955), - [anon_sym_await] = ACTIONS(955), - [anon_sym_break] = ACTIONS(955), - [anon_sym_const] = ACTIONS(955), - [anon_sym_continue] = ACTIONS(955), - [anon_sym_default] = ACTIONS(955), - [anon_sym_enum] = ACTIONS(955), - [anon_sym_fn] = ACTIONS(955), - [anon_sym_for] = ACTIONS(955), - [anon_sym_gen] = ACTIONS(955), - [anon_sym_if] = ACTIONS(955), - [anon_sym_impl] = ACTIONS(955), - [anon_sym_let] = ACTIONS(955), - [anon_sym_loop] = ACTIONS(955), - [anon_sym_match] = ACTIONS(955), - [anon_sym_mod] = ACTIONS(955), - [anon_sym_pub] = ACTIONS(955), - [anon_sym_return] = ACTIONS(955), - [anon_sym_static] = ACTIONS(955), - [anon_sym_struct] = ACTIONS(955), - [anon_sym_trait] = ACTIONS(955), - [anon_sym_type] = ACTIONS(955), - [anon_sym_union] = ACTIONS(955), - [anon_sym_unsafe] = ACTIONS(955), - [anon_sym_use] = ACTIONS(955), - [anon_sym_where] = ACTIONS(955), - [anon_sym_while] = ACTIONS(955), - [sym_mutable_specifier] = ACTIONS(955), - [sym_integer_literal] = ACTIONS(957), - [aux_sym_string_literal_token1] = ACTIONS(957), - [sym_char_literal] = ACTIONS(957), - [anon_sym_true] = ACTIONS(955), - [anon_sym_false] = ACTIONS(955), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(955), - [sym_super] = ACTIONS(955), - [sym_crate] = ACTIONS(955), - [sym_metavariable] = ACTIONS(957), - [sym__raw_string_literal_start] = ACTIONS(957), - [sym_float_literal] = ACTIONS(957), + [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(163)] = { [sym_line_comment] = STATE(163), [sym_block_comment] = STATE(163), - [sym_identifier] = ACTIONS(959), - [anon_sym_SEMI] = ACTIONS(961), - [anon_sym_LPAREN] = ACTIONS(961), - [anon_sym_RPAREN] = ACTIONS(961), - [anon_sym_LBRACK] = ACTIONS(961), - [anon_sym_RBRACK] = ACTIONS(961), - [anon_sym_LBRACE] = ACTIONS(961), - [anon_sym_RBRACE] = ACTIONS(961), - [anon_sym_EQ_GT] = ACTIONS(961), - [anon_sym_COLON] = ACTIONS(959), - [anon_sym_DOLLAR] = ACTIONS(959), - [anon_sym_PLUS] = ACTIONS(959), - [anon_sym_STAR] = ACTIONS(959), - [anon_sym_QMARK] = ACTIONS(961), - [anon_sym_u8] = ACTIONS(959), - [anon_sym_i8] = ACTIONS(959), - [anon_sym_u16] = ACTIONS(959), - [anon_sym_i16] = ACTIONS(959), - [anon_sym_u32] = ACTIONS(959), - [anon_sym_i32] = ACTIONS(959), - [anon_sym_u64] = ACTIONS(959), - [anon_sym_i64] = ACTIONS(959), - [anon_sym_u128] = ACTIONS(959), - [anon_sym_i128] = ACTIONS(959), - [anon_sym_isize] = ACTIONS(959), - [anon_sym_usize] = ACTIONS(959), - [anon_sym_f32] = ACTIONS(959), - [anon_sym_f64] = ACTIONS(959), - [anon_sym_bool] = ACTIONS(959), - [anon_sym_str] = ACTIONS(959), - [anon_sym_char] = ACTIONS(959), - [anon_sym_DASH] = ACTIONS(959), - [anon_sym_SLASH] = ACTIONS(959), - [anon_sym_PERCENT] = ACTIONS(959), - [anon_sym_CARET] = ACTIONS(959), - [anon_sym_BANG] = ACTIONS(959), - [anon_sym_AMP] = ACTIONS(959), - [anon_sym_PIPE] = ACTIONS(959), - [anon_sym_AMP_AMP] = ACTIONS(961), - [anon_sym_PIPE_PIPE] = ACTIONS(961), - [anon_sym_LT_LT] = ACTIONS(959), - [anon_sym_GT_GT] = ACTIONS(959), - [anon_sym_PLUS_EQ] = ACTIONS(961), - [anon_sym_DASH_EQ] = ACTIONS(961), - [anon_sym_STAR_EQ] = ACTIONS(961), - [anon_sym_SLASH_EQ] = ACTIONS(961), - [anon_sym_PERCENT_EQ] = ACTIONS(961), - [anon_sym_CARET_EQ] = ACTIONS(961), - [anon_sym_AMP_EQ] = ACTIONS(961), - [anon_sym_PIPE_EQ] = ACTIONS(961), - [anon_sym_LT_LT_EQ] = ACTIONS(961), - [anon_sym_GT_GT_EQ] = ACTIONS(961), - [anon_sym_EQ] = ACTIONS(959), - [anon_sym_EQ_EQ] = ACTIONS(961), - [anon_sym_BANG_EQ] = ACTIONS(961), - [anon_sym_GT] = ACTIONS(959), - [anon_sym_LT] = ACTIONS(959), - [anon_sym_GT_EQ] = ACTIONS(961), - [anon_sym_LT_EQ] = ACTIONS(961), - [anon_sym_AT] = ACTIONS(961), - [anon_sym__] = ACTIONS(959), - [anon_sym_DOT] = ACTIONS(959), - [anon_sym_DOT_DOT] = ACTIONS(959), - [anon_sym_DOT_DOT_DOT] = ACTIONS(961), - [anon_sym_DOT_DOT_EQ] = ACTIONS(961), - [anon_sym_COMMA] = ACTIONS(961), - [anon_sym_COLON_COLON] = ACTIONS(961), - [anon_sym_DASH_GT] = ACTIONS(961), - [anon_sym_POUND] = ACTIONS(961), - [anon_sym_SQUOTE] = ACTIONS(959), - [anon_sym_as] = ACTIONS(959), - [anon_sym_async] = ACTIONS(959), - [anon_sym_await] = ACTIONS(959), - [anon_sym_break] = ACTIONS(959), - [anon_sym_const] = ACTIONS(959), - [anon_sym_continue] = ACTIONS(959), - [anon_sym_default] = ACTIONS(959), - [anon_sym_enum] = ACTIONS(959), - [anon_sym_fn] = ACTIONS(959), - [anon_sym_for] = ACTIONS(959), - [anon_sym_gen] = ACTIONS(959), - [anon_sym_if] = ACTIONS(959), - [anon_sym_impl] = ACTIONS(959), - [anon_sym_let] = ACTIONS(959), - [anon_sym_loop] = ACTIONS(959), - [anon_sym_match] = ACTIONS(959), - [anon_sym_mod] = ACTIONS(959), - [anon_sym_pub] = ACTIONS(959), - [anon_sym_return] = ACTIONS(959), - [anon_sym_static] = ACTIONS(959), - [anon_sym_struct] = ACTIONS(959), - [anon_sym_trait] = ACTIONS(959), - [anon_sym_type] = ACTIONS(959), - [anon_sym_union] = ACTIONS(959), - [anon_sym_unsafe] = ACTIONS(959), - [anon_sym_use] = ACTIONS(959), - [anon_sym_where] = ACTIONS(959), - [anon_sym_while] = ACTIONS(959), - [sym_mutable_specifier] = ACTIONS(959), - [sym_integer_literal] = ACTIONS(961), - [aux_sym_string_literal_token1] = ACTIONS(961), - [sym_char_literal] = ACTIONS(961), - [anon_sym_true] = ACTIONS(959), - [anon_sym_false] = ACTIONS(959), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(959), - [sym_super] = ACTIONS(959), - [sym_crate] = ACTIONS(959), - [sym_metavariable] = ACTIONS(961), - [sym__raw_string_literal_start] = ACTIONS(961), - [sym_float_literal] = ACTIONS(961), + [sym_identifier] = ACTIONS(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(958), + [anon_sym_PLUS] = ACTIONS(958), + [anon_sym_STAR] = ACTIONS(958), + [anon_sym_QMARK] = ACTIONS(960), + [anon_sym_u8] = ACTIONS(958), + [anon_sym_i8] = ACTIONS(958), + [anon_sym_u16] = ACTIONS(958), + [anon_sym_i16] = ACTIONS(958), + [anon_sym_u32] = ACTIONS(958), + [anon_sym_i32] = ACTIONS(958), + [anon_sym_u64] = ACTIONS(958), + [anon_sym_i64] = ACTIONS(958), + [anon_sym_u128] = ACTIONS(958), + [anon_sym_i128] = ACTIONS(958), + [anon_sym_isize] = ACTIONS(958), + [anon_sym_usize] = ACTIONS(958), + [anon_sym_f32] = ACTIONS(958), + [anon_sym_f64] = ACTIONS(958), + [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_SQUOTE] = ACTIONS(958), + [anon_sym_as] = ACTIONS(958), + [anon_sym_async] = ACTIONS(958), + [anon_sym_await] = ACTIONS(958), + [anon_sym_break] = ACTIONS(958), + [anon_sym_const] = ACTIONS(958), + [anon_sym_continue] = ACTIONS(958), + [anon_sym_default] = ACTIONS(958), + [anon_sym_enum] = ACTIONS(958), + [anon_sym_fn] = ACTIONS(958), + [anon_sym_for] = ACTIONS(958), + [anon_sym_gen] = ACTIONS(958), + [anon_sym_if] = ACTIONS(958), + [anon_sym_impl] = ACTIONS(958), + [anon_sym_let] = ACTIONS(958), + [anon_sym_loop] = ACTIONS(958), + [anon_sym_match] = ACTIONS(958), + [anon_sym_mod] = ACTIONS(958), + [anon_sym_pub] = ACTIONS(958), + [anon_sym_return] = ACTIONS(958), + [anon_sym_static] = ACTIONS(958), + [anon_sym_struct] = ACTIONS(958), + [anon_sym_trait] = ACTIONS(958), + [anon_sym_type] = ACTIONS(958), + [anon_sym_union] = ACTIONS(958), + [anon_sym_unsafe] = ACTIONS(958), + [anon_sym_use] = ACTIONS(958), + [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), + [anon_sym_true] = ACTIONS(958), + [anon_sym_false] = ACTIONS(958), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [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(164)] = { - [sym_attribute_item] = STATE(1031), - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1644), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1520), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), + [sym_attribute_item] = STATE(1038), + [sym_bracketed_type] = STATE(3752), + [sym_generic_function] = STATE(1492), + [sym_generic_type_with_turbofish] = STATE(3039), + [sym__expression_except_range] = STATE(1409), + [sym__expression] = STATE(1689), + [sym_macro_invocation] = STATE(1529), + [sym_scoped_identifier] = STATE(1540), + [sym_scoped_type_identifier_in_expression_position] = STATE(3335), + [sym_range_expression] = STATE(1505), + [sym_unary_expression] = STATE(1492), + [sym_try_expression] = STATE(1492), + [sym_reference_expression] = STATE(1492), + [sym_binary_expression] = STATE(1492), + [sym_assignment_expression] = STATE(1492), + [sym_compound_assignment_expr] = STATE(1492), + [sym_type_cast_expression] = STATE(1492), + [sym_return_expression] = STATE(1492), + [sym_yield_expression] = STATE(1492), + [sym_call_expression] = STATE(1492), + [sym_array_expression] = STATE(1492), + [sym_parenthesized_expression] = STATE(1492), + [sym_tuple_expression] = STATE(1492), + [sym_unit_expression] = STATE(1492), + [sym_struct_expression] = STATE(1492), + [sym_if_expression] = STATE(1492), + [sym_match_expression] = STATE(1492), + [sym_while_expression] = STATE(1492), + [sym_loop_expression] = STATE(1492), + [sym_for_expression] = STATE(1492), + [sym_const_block] = STATE(1492), + [sym_closure_expression] = STATE(1492), + [sym_closure_parameters] = STATE(229), + [sym_label] = STATE(3689), + [sym_break_expression] = STATE(1492), + [sym_continue_expression] = STATE(1492), + [sym_index_expression] = STATE(1492), + [sym_await_expression] = STATE(1492), + [sym_field_expression] = STATE(1412), + [sym_unsafe_block] = STATE(1492), + [sym_async_block] = STATE(1492), + [sym_gen_block] = STATE(1492), + [sym_try_block] = STATE(1492), + [sym_block] = STATE(1492), + [sym__literal] = STATE(1492), + [sym_string_literal] = STATE(1530), + [sym_raw_string_literal] = STATE(1530), + [sym_boolean_literal] = STATE(1530), [sym_line_comment] = STATE(164), [sym_block_comment] = STATE(164), - [aux_sym_enum_variant_list_repeat1] = STATE(204), - [sym_identifier] = ACTIONS(339), + [aux_sym_enum_variant_list_repeat1] = STATE(200), + [sym_identifier] = ACTIONS(344), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(963), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_RBRACK] = ACTIONS(962), + [anon_sym_LBRACE] = ACTIONS(348), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -35845,97 +35976,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(874), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), + [anon_sym_async] = ACTIONS(356), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(358), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), + [anon_sym_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(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(115), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [anon_sym_static] = ACTIONS(372), + [anon_sym_union] = ACTIONS(360), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [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(165)] = { - [sym_attribute_item] = STATE(1031), - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1644), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1520), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), + [sym_attribute_item] = STATE(1038), + [sym_bracketed_type] = STATE(3752), + [sym_generic_function] = STATE(1492), + [sym_generic_type_with_turbofish] = STATE(3039), + [sym__expression_except_range] = STATE(1409), + [sym__expression] = STATE(1689), + [sym_macro_invocation] = STATE(1529), + [sym_scoped_identifier] = STATE(1540), + [sym_scoped_type_identifier_in_expression_position] = STATE(3335), + [sym_range_expression] = STATE(1505), + [sym_unary_expression] = STATE(1492), + [sym_try_expression] = STATE(1492), + [sym_reference_expression] = STATE(1492), + [sym_binary_expression] = STATE(1492), + [sym_assignment_expression] = STATE(1492), + [sym_compound_assignment_expr] = STATE(1492), + [sym_type_cast_expression] = STATE(1492), + [sym_return_expression] = STATE(1492), + [sym_yield_expression] = STATE(1492), + [sym_call_expression] = STATE(1492), + [sym_array_expression] = STATE(1492), + [sym_parenthesized_expression] = STATE(1492), + [sym_tuple_expression] = STATE(1492), + [sym_unit_expression] = STATE(1492), + [sym_struct_expression] = STATE(1492), + [sym_if_expression] = STATE(1492), + [sym_match_expression] = STATE(1492), + [sym_while_expression] = STATE(1492), + [sym_loop_expression] = STATE(1492), + [sym_for_expression] = STATE(1492), + [sym_const_block] = STATE(1492), + [sym_closure_expression] = STATE(1492), + [sym_closure_parameters] = STATE(229), + [sym_label] = STATE(3689), + [sym_break_expression] = STATE(1492), + [sym_continue_expression] = STATE(1492), + [sym_index_expression] = STATE(1492), + [sym_await_expression] = STATE(1492), + [sym_field_expression] = STATE(1412), + [sym_unsafe_block] = STATE(1492), + [sym_async_block] = STATE(1492), + [sym_gen_block] = STATE(1492), + [sym_try_block] = STATE(1492), + [sym_block] = STATE(1492), + [sym__literal] = STATE(1492), + [sym_string_literal] = STATE(1530), + [sym_raw_string_literal] = STATE(1530), + [sym_boolean_literal] = STATE(1530), [sym_line_comment] = STATE(165), [sym_block_comment] = STATE(165), - [aux_sym_enum_variant_list_repeat1] = STATE(204), - [sym_identifier] = ACTIONS(339), + [aux_sym_enum_variant_list_repeat1] = STATE(200), + [sym_identifier] = ACTIONS(344), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(965), + [anon_sym_RPAREN] = ACTIONS(964), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(348), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -35961,793 +36092,909 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(874), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), + [anon_sym_async] = ACTIONS(356), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(358), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), + [anon_sym_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(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(115), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [anon_sym_static] = ACTIONS(372), + [anon_sym_union] = ACTIONS(360), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [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(166)] = { [sym_line_comment] = STATE(166), [sym_block_comment] = STATE(166), - [sym_identifier] = ACTIONS(967), - [anon_sym_SEMI] = ACTIONS(969), - [anon_sym_LPAREN] = ACTIONS(969), - [anon_sym_RPAREN] = ACTIONS(969), - [anon_sym_LBRACK] = ACTIONS(969), - [anon_sym_RBRACK] = ACTIONS(969), - [anon_sym_LBRACE] = ACTIONS(969), - [anon_sym_RBRACE] = ACTIONS(969), - [anon_sym_EQ_GT] = ACTIONS(969), - [anon_sym_COLON] = ACTIONS(967), - [anon_sym_DOLLAR] = ACTIONS(967), - [anon_sym_PLUS] = ACTIONS(967), - [anon_sym_STAR] = ACTIONS(967), - [anon_sym_QMARK] = ACTIONS(969), - [anon_sym_u8] = ACTIONS(967), - [anon_sym_i8] = ACTIONS(967), - [anon_sym_u16] = ACTIONS(967), - [anon_sym_i16] = ACTIONS(967), - [anon_sym_u32] = ACTIONS(967), - [anon_sym_i32] = ACTIONS(967), - [anon_sym_u64] = ACTIONS(967), - [anon_sym_i64] = ACTIONS(967), - [anon_sym_u128] = ACTIONS(967), - [anon_sym_i128] = ACTIONS(967), - [anon_sym_isize] = ACTIONS(967), - [anon_sym_usize] = ACTIONS(967), - [anon_sym_f32] = ACTIONS(967), - [anon_sym_f64] = ACTIONS(967), - [anon_sym_bool] = ACTIONS(967), - [anon_sym_str] = ACTIONS(967), - [anon_sym_char] = ACTIONS(967), - [anon_sym_DASH] = ACTIONS(967), - [anon_sym_SLASH] = ACTIONS(967), - [anon_sym_PERCENT] = ACTIONS(967), - [anon_sym_CARET] = ACTIONS(967), - [anon_sym_BANG] = ACTIONS(967), - [anon_sym_AMP] = ACTIONS(967), - [anon_sym_PIPE] = ACTIONS(967), - [anon_sym_AMP_AMP] = ACTIONS(969), - [anon_sym_PIPE_PIPE] = ACTIONS(969), - [anon_sym_LT_LT] = ACTIONS(967), - [anon_sym_GT_GT] = ACTIONS(967), - [anon_sym_PLUS_EQ] = ACTIONS(969), - [anon_sym_DASH_EQ] = ACTIONS(969), - [anon_sym_STAR_EQ] = ACTIONS(969), - [anon_sym_SLASH_EQ] = ACTIONS(969), - [anon_sym_PERCENT_EQ] = ACTIONS(969), - [anon_sym_CARET_EQ] = ACTIONS(969), - [anon_sym_AMP_EQ] = ACTIONS(969), - [anon_sym_PIPE_EQ] = ACTIONS(969), - [anon_sym_LT_LT_EQ] = ACTIONS(969), - [anon_sym_GT_GT_EQ] = ACTIONS(969), - [anon_sym_EQ] = ACTIONS(967), - [anon_sym_EQ_EQ] = ACTIONS(969), - [anon_sym_BANG_EQ] = ACTIONS(969), - [anon_sym_GT] = ACTIONS(967), - [anon_sym_LT] = ACTIONS(967), - [anon_sym_GT_EQ] = ACTIONS(969), - [anon_sym_LT_EQ] = ACTIONS(969), - [anon_sym_AT] = ACTIONS(969), - [anon_sym__] = ACTIONS(967), - [anon_sym_DOT] = ACTIONS(967), - [anon_sym_DOT_DOT] = ACTIONS(967), - [anon_sym_DOT_DOT_DOT] = ACTIONS(969), - [anon_sym_DOT_DOT_EQ] = ACTIONS(969), - [anon_sym_COMMA] = ACTIONS(969), - [anon_sym_COLON_COLON] = ACTIONS(969), - [anon_sym_DASH_GT] = ACTIONS(969), - [anon_sym_POUND] = ACTIONS(969), - [anon_sym_SQUOTE] = ACTIONS(967), - [anon_sym_as] = ACTIONS(967), - [anon_sym_async] = ACTIONS(967), - [anon_sym_await] = ACTIONS(967), - [anon_sym_break] = ACTIONS(967), - [anon_sym_const] = ACTIONS(967), - [anon_sym_continue] = ACTIONS(967), - [anon_sym_default] = ACTIONS(967), - [anon_sym_enum] = ACTIONS(967), - [anon_sym_fn] = ACTIONS(967), - [anon_sym_for] = ACTIONS(967), - [anon_sym_gen] = ACTIONS(967), - [anon_sym_if] = ACTIONS(967), - [anon_sym_impl] = ACTIONS(967), - [anon_sym_let] = ACTIONS(967), - [anon_sym_loop] = ACTIONS(967), - [anon_sym_match] = ACTIONS(967), - [anon_sym_mod] = ACTIONS(967), - [anon_sym_pub] = ACTIONS(967), - [anon_sym_return] = ACTIONS(967), - [anon_sym_static] = ACTIONS(967), - [anon_sym_struct] = ACTIONS(967), - [anon_sym_trait] = ACTIONS(967), - [anon_sym_type] = ACTIONS(967), - [anon_sym_union] = ACTIONS(967), - [anon_sym_unsafe] = ACTIONS(967), - [anon_sym_use] = ACTIONS(967), - [anon_sym_where] = ACTIONS(967), - [anon_sym_while] = ACTIONS(967), - [sym_mutable_specifier] = ACTIONS(967), - [sym_integer_literal] = ACTIONS(969), - [aux_sym_string_literal_token1] = ACTIONS(969), - [sym_char_literal] = ACTIONS(969), - [anon_sym_true] = ACTIONS(967), - [anon_sym_false] = ACTIONS(967), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(967), - [sym_super] = ACTIONS(967), - [sym_crate] = ACTIONS(967), - [sym_metavariable] = ACTIONS(969), - [sym__raw_string_literal_start] = ACTIONS(969), - [sym_float_literal] = ACTIONS(969), + [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), }, [STATE(167)] = { [sym_line_comment] = STATE(167), [sym_block_comment] = STATE(167), - [sym_identifier] = ACTIONS(971), - [anon_sym_SEMI] = ACTIONS(973), - [anon_sym_LPAREN] = ACTIONS(973), - [anon_sym_RPAREN] = ACTIONS(973), - [anon_sym_LBRACK] = ACTIONS(973), - [anon_sym_RBRACK] = ACTIONS(973), - [anon_sym_LBRACE] = ACTIONS(973), - [anon_sym_RBRACE] = ACTIONS(973), - [anon_sym_EQ_GT] = ACTIONS(973), - [anon_sym_COLON] = ACTIONS(971), - [anon_sym_DOLLAR] = ACTIONS(971), - [anon_sym_PLUS] = ACTIONS(971), - [anon_sym_STAR] = ACTIONS(971), - [anon_sym_QMARK] = ACTIONS(973), - [anon_sym_u8] = ACTIONS(971), - [anon_sym_i8] = ACTIONS(971), - [anon_sym_u16] = ACTIONS(971), - [anon_sym_i16] = ACTIONS(971), - [anon_sym_u32] = ACTIONS(971), - [anon_sym_i32] = ACTIONS(971), - [anon_sym_u64] = ACTIONS(971), - [anon_sym_i64] = ACTIONS(971), - [anon_sym_u128] = ACTIONS(971), - [anon_sym_i128] = ACTIONS(971), - [anon_sym_isize] = ACTIONS(971), - [anon_sym_usize] = ACTIONS(971), - [anon_sym_f32] = ACTIONS(971), - [anon_sym_f64] = ACTIONS(971), - [anon_sym_bool] = ACTIONS(971), - [anon_sym_str] = ACTIONS(971), - [anon_sym_char] = ACTIONS(971), - [anon_sym_DASH] = ACTIONS(971), - [anon_sym_SLASH] = ACTIONS(971), - [anon_sym_PERCENT] = ACTIONS(971), - [anon_sym_CARET] = ACTIONS(971), - [anon_sym_BANG] = ACTIONS(971), - [anon_sym_AMP] = ACTIONS(971), - [anon_sym_PIPE] = ACTIONS(971), - [anon_sym_AMP_AMP] = ACTIONS(973), - [anon_sym_PIPE_PIPE] = ACTIONS(973), - [anon_sym_LT_LT] = ACTIONS(971), - [anon_sym_GT_GT] = ACTIONS(971), - [anon_sym_PLUS_EQ] = ACTIONS(973), - [anon_sym_DASH_EQ] = ACTIONS(973), - [anon_sym_STAR_EQ] = ACTIONS(973), - [anon_sym_SLASH_EQ] = ACTIONS(973), - [anon_sym_PERCENT_EQ] = ACTIONS(973), - [anon_sym_CARET_EQ] = ACTIONS(973), - [anon_sym_AMP_EQ] = ACTIONS(973), - [anon_sym_PIPE_EQ] = ACTIONS(973), - [anon_sym_LT_LT_EQ] = ACTIONS(973), - [anon_sym_GT_GT_EQ] = ACTIONS(973), - [anon_sym_EQ] = ACTIONS(971), - [anon_sym_EQ_EQ] = ACTIONS(973), - [anon_sym_BANG_EQ] = ACTIONS(973), - [anon_sym_GT] = ACTIONS(971), - [anon_sym_LT] = ACTIONS(971), - [anon_sym_GT_EQ] = ACTIONS(973), - [anon_sym_LT_EQ] = ACTIONS(973), - [anon_sym_AT] = ACTIONS(973), - [anon_sym__] = ACTIONS(971), - [anon_sym_DOT] = ACTIONS(971), - [anon_sym_DOT_DOT] = ACTIONS(971), - [anon_sym_DOT_DOT_DOT] = ACTIONS(973), - [anon_sym_DOT_DOT_EQ] = ACTIONS(973), - [anon_sym_COMMA] = ACTIONS(973), - [anon_sym_COLON_COLON] = ACTIONS(973), - [anon_sym_DASH_GT] = ACTIONS(973), - [anon_sym_POUND] = ACTIONS(973), - [anon_sym_SQUOTE] = ACTIONS(971), - [anon_sym_as] = ACTIONS(971), - [anon_sym_async] = ACTIONS(971), - [anon_sym_await] = ACTIONS(971), - [anon_sym_break] = ACTIONS(971), - [anon_sym_const] = ACTIONS(971), - [anon_sym_continue] = ACTIONS(971), - [anon_sym_default] = ACTIONS(971), - [anon_sym_enum] = ACTIONS(971), - [anon_sym_fn] = ACTIONS(971), - [anon_sym_for] = ACTIONS(971), - [anon_sym_gen] = ACTIONS(971), - [anon_sym_if] = ACTIONS(971), - [anon_sym_impl] = ACTIONS(971), - [anon_sym_let] = ACTIONS(971), - [anon_sym_loop] = ACTIONS(971), - [anon_sym_match] = ACTIONS(971), - [anon_sym_mod] = ACTIONS(971), - [anon_sym_pub] = ACTIONS(971), - [anon_sym_return] = ACTIONS(971), - [anon_sym_static] = ACTIONS(971), - [anon_sym_struct] = ACTIONS(971), - [anon_sym_trait] = ACTIONS(971), - [anon_sym_type] = ACTIONS(971), - [anon_sym_union] = ACTIONS(971), - [anon_sym_unsafe] = ACTIONS(971), - [anon_sym_use] = ACTIONS(971), - [anon_sym_where] = ACTIONS(971), - [anon_sym_while] = ACTIONS(971), - [sym_mutable_specifier] = ACTIONS(971), - [sym_integer_literal] = ACTIONS(973), - [aux_sym_string_literal_token1] = ACTIONS(973), - [sym_char_literal] = ACTIONS(973), - [anon_sym_true] = ACTIONS(971), - [anon_sym_false] = ACTIONS(971), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(971), - [sym_super] = ACTIONS(971), - [sym_crate] = ACTIONS(971), - [sym_metavariable] = ACTIONS(973), - [sym__raw_string_literal_start] = ACTIONS(973), - [sym_float_literal] = ACTIONS(973), + [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), }, [STATE(168)] = { - [sym_attribute_item] = STATE(1031), - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1644), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1520), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), [sym_line_comment] = STATE(168), [sym_block_comment] = STATE(168), - [aux_sym_enum_variant_list_repeat1] = STATE(204), - [sym_identifier] = ACTIONS(339), + [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), + }, + [STATE(169)] = { + [sym_bracketed_type] = STATE(3752), + [sym_generic_function] = STATE(1492), + [sym_generic_type_with_turbofish] = STATE(3085), + [sym__expression_except_range] = STATE(1409), + [sym__expression] = STATE(1760), + [sym_macro_invocation] = STATE(1529), + [sym_scoped_identifier] = STATE(1604), + [sym_scoped_type_identifier_in_expression_position] = STATE(3335), + [sym_range_expression] = STATE(1505), + [sym_unary_expression] = STATE(1492), + [sym_try_expression] = STATE(1492), + [sym_reference_expression] = STATE(1492), + [sym_binary_expression] = STATE(1492), + [sym_assignment_expression] = STATE(1492), + [sym_compound_assignment_expr] = STATE(1492), + [sym_type_cast_expression] = STATE(1492), + [sym_return_expression] = STATE(1492), + [sym_yield_expression] = STATE(1492), + [sym_call_expression] = STATE(1492), + [sym_array_expression] = STATE(1492), + [sym_parenthesized_expression] = STATE(1492), + [sym_tuple_expression] = STATE(1492), + [sym_unit_expression] = STATE(1492), + [sym_struct_expression] = STATE(1492), + [sym_if_expression] = STATE(1492), + [sym_let_condition] = STATE(3089), + [sym__let_chain] = STATE(3112), + [sym__condition] = STATE(2603), + [sym_match_expression] = STATE(1492), + [sym_while_expression] = STATE(1492), + [sym_loop_expression] = STATE(1492), + [sym_for_expression] = STATE(1492), + [sym_const_block] = STATE(1492), + [sym_closure_expression] = STATE(1492), + [sym_closure_parameters] = STATE(221), + [sym_label] = STATE(3689), + [sym_break_expression] = STATE(1492), + [sym_continue_expression] = STATE(1492), + [sym_index_expression] = STATE(1492), + [sym_await_expression] = STATE(1492), + [sym_field_expression] = STATE(1412), + [sym_unsafe_block] = STATE(1492), + [sym_async_block] = STATE(1492), + [sym_gen_block] = STATE(1492), + [sym_try_block] = STATE(1492), + [sym_block] = STATE(1492), + [sym__literal] = STATE(1492), + [sym_string_literal] = STATE(1530), + [sym_raw_string_literal] = STATE(1530), + [sym_boolean_literal] = STATE(1530), + [sym_line_comment] = STATE(169), + [sym_block_comment] = STATE(169), + [sym_identifier] = ACTIONS(470), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(975), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(348), + [anon_sym_STAR] = ACTIONS(978), + [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(978), + [anon_sym_BANG] = ACTIONS(978), + [anon_sym_AMP] = ACTIONS(980), [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(748), + [anon_sym_DOT_DOT] = ACTIONS(982), + [anon_sym_COLON_COLON] = ACTIONS(476), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(115), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), - }, - [STATE(169)] = { - [sym_attribute_item] = STATE(1031), - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1644), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1520), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [sym_line_comment] = STATE(169), - [sym_block_comment] = STATE(169), - [aux_sym_enum_variant_list_repeat1] = STATE(204), - [sym_identifier] = ACTIONS(339), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(977), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(748), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(115), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [anon_sym_async] = ACTIONS(356), + [anon_sym_break] = ACTIONS(510), + [anon_sym_const] = ACTIONS(358), + [anon_sym_continue] = ACTIONS(512), + [anon_sym_default] = ACTIONS(480), + [anon_sym_for] = ACTIONS(362), + [anon_sym_gen] = ACTIONS(514), + [anon_sym_if] = ACTIONS(366), + [anon_sym_let] = ACTIONS(984), + [anon_sym_loop] = ACTIONS(368), + [anon_sym_match] = ACTIONS(370), + [anon_sym_return] = ACTIONS(516), + [anon_sym_static] = ACTIONS(518), + [anon_sym_union] = ACTIONS(480), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [anon_sym_yield] = ACTIONS(520), + [anon_sym_move] = ACTIONS(522), + [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(492), + [sym_super] = ACTIONS(494), + [sym_crate] = ACTIONS(494), + [sym_metavariable] = ACTIONS(496), + [sym__raw_string_literal_start] = ACTIONS(119), + [sym_float_literal] = ACTIONS(99), }, [STATE(170)] = { [sym_line_comment] = STATE(170), [sym_block_comment] = STATE(170), - [sym_identifier] = ACTIONS(875), - [anon_sym_SEMI] = ACTIONS(877), - [anon_sym_LPAREN] = ACTIONS(877), - [anon_sym_RPAREN] = ACTIONS(877), - [anon_sym_LBRACK] = ACTIONS(877), - [anon_sym_RBRACK] = ACTIONS(877), - [anon_sym_LBRACE] = ACTIONS(877), - [anon_sym_RBRACE] = ACTIONS(877), - [anon_sym_EQ_GT] = ACTIONS(877), - [anon_sym_COLON] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(875), - [anon_sym_PLUS] = ACTIONS(875), - [anon_sym_STAR] = ACTIONS(875), - [anon_sym_QMARK] = ACTIONS(877), - [anon_sym_u8] = ACTIONS(875), - [anon_sym_i8] = ACTIONS(875), - [anon_sym_u16] = ACTIONS(875), - [anon_sym_i16] = ACTIONS(875), - [anon_sym_u32] = ACTIONS(875), - [anon_sym_i32] = ACTIONS(875), - [anon_sym_u64] = ACTIONS(875), - [anon_sym_i64] = ACTIONS(875), - [anon_sym_u128] = ACTIONS(875), - [anon_sym_i128] = ACTIONS(875), - [anon_sym_isize] = ACTIONS(875), - [anon_sym_usize] = ACTIONS(875), - [anon_sym_f32] = ACTIONS(875), - [anon_sym_f64] = ACTIONS(875), - [anon_sym_bool] = ACTIONS(875), - [anon_sym_str] = ACTIONS(875), - [anon_sym_char] = ACTIONS(875), - [anon_sym_DASH] = ACTIONS(875), - [anon_sym_SLASH] = ACTIONS(875), - [anon_sym_PERCENT] = ACTIONS(875), - [anon_sym_CARET] = ACTIONS(875), - [anon_sym_BANG] = ACTIONS(875), - [anon_sym_AMP] = ACTIONS(875), - [anon_sym_PIPE] = ACTIONS(875), - [anon_sym_AMP_AMP] = ACTIONS(877), - [anon_sym_PIPE_PIPE] = ACTIONS(877), - [anon_sym_LT_LT] = ACTIONS(875), - [anon_sym_GT_GT] = ACTIONS(875), - [anon_sym_PLUS_EQ] = ACTIONS(877), - [anon_sym_DASH_EQ] = ACTIONS(877), - [anon_sym_STAR_EQ] = ACTIONS(877), - [anon_sym_SLASH_EQ] = ACTIONS(877), - [anon_sym_PERCENT_EQ] = ACTIONS(877), - [anon_sym_CARET_EQ] = ACTIONS(877), - [anon_sym_AMP_EQ] = ACTIONS(877), - [anon_sym_PIPE_EQ] = ACTIONS(877), - [anon_sym_LT_LT_EQ] = ACTIONS(877), - [anon_sym_GT_GT_EQ] = ACTIONS(877), - [anon_sym_EQ] = ACTIONS(875), - [anon_sym_EQ_EQ] = ACTIONS(877), - [anon_sym_BANG_EQ] = ACTIONS(877), - [anon_sym_GT] = ACTIONS(875), - [anon_sym_LT] = ACTIONS(875), - [anon_sym_GT_EQ] = ACTIONS(877), - [anon_sym_LT_EQ] = ACTIONS(877), - [anon_sym_AT] = ACTIONS(877), - [anon_sym__] = ACTIONS(875), - [anon_sym_DOT] = ACTIONS(875), - [anon_sym_DOT_DOT] = ACTIONS(875), - [anon_sym_DOT_DOT_DOT] = ACTIONS(877), - [anon_sym_DOT_DOT_EQ] = ACTIONS(877), - [anon_sym_COMMA] = ACTIONS(877), - [anon_sym_COLON_COLON] = ACTIONS(877), - [anon_sym_DASH_GT] = ACTIONS(877), - [anon_sym_POUND] = ACTIONS(877), - [anon_sym_SQUOTE] = ACTIONS(875), - [anon_sym_as] = ACTIONS(875), - [anon_sym_async] = ACTIONS(875), - [anon_sym_await] = ACTIONS(875), - [anon_sym_break] = ACTIONS(875), - [anon_sym_const] = ACTIONS(875), - [anon_sym_continue] = ACTIONS(875), - [anon_sym_default] = ACTIONS(875), - [anon_sym_enum] = ACTIONS(875), - [anon_sym_fn] = ACTIONS(875), - [anon_sym_for] = ACTIONS(875), - [anon_sym_gen] = ACTIONS(875), - [anon_sym_if] = ACTIONS(875), - [anon_sym_impl] = ACTIONS(875), - [anon_sym_let] = ACTIONS(875), - [anon_sym_loop] = ACTIONS(875), - [anon_sym_match] = ACTIONS(875), - [anon_sym_mod] = ACTIONS(875), - [anon_sym_pub] = ACTIONS(875), - [anon_sym_return] = ACTIONS(875), - [anon_sym_static] = ACTIONS(875), - [anon_sym_struct] = ACTIONS(875), - [anon_sym_trait] = ACTIONS(875), - [anon_sym_type] = ACTIONS(875), - [anon_sym_union] = ACTIONS(875), - [anon_sym_unsafe] = ACTIONS(875), - [anon_sym_use] = ACTIONS(875), - [anon_sym_where] = ACTIONS(875), - [anon_sym_while] = ACTIONS(875), - [sym_mutable_specifier] = ACTIONS(875), - [sym_integer_literal] = ACTIONS(877), - [aux_sym_string_literal_token1] = ACTIONS(877), - [sym_char_literal] = ACTIONS(877), - [anon_sym_true] = ACTIONS(875), - [anon_sym_false] = ACTIONS(875), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(875), - [sym_super] = ACTIONS(875), - [sym_crate] = ACTIONS(875), - [sym_metavariable] = ACTIONS(877), - [sym__raw_string_literal_start] = ACTIONS(877), - [sym_float_literal] = ACTIONS(877), + [sym_identifier] = ACTIONS(866), + [anon_sym_SEMI] = ACTIONS(868), + [anon_sym_LPAREN] = ACTIONS(868), + [anon_sym_RPAREN] = ACTIONS(868), + [anon_sym_LBRACK] = ACTIONS(868), + [anon_sym_RBRACK] = ACTIONS(868), + [anon_sym_LBRACE] = ACTIONS(868), + [anon_sym_RBRACE] = ACTIONS(868), + [anon_sym_EQ_GT] = ACTIONS(868), + [anon_sym_COLON] = ACTIONS(866), + [anon_sym_DOLLAR] = ACTIONS(866), + [anon_sym_PLUS] = ACTIONS(866), + [anon_sym_STAR] = ACTIONS(866), + [anon_sym_QMARK] = ACTIONS(868), + [anon_sym_u8] = ACTIONS(866), + [anon_sym_i8] = ACTIONS(866), + [anon_sym_u16] = ACTIONS(866), + [anon_sym_i16] = ACTIONS(866), + [anon_sym_u32] = ACTIONS(866), + [anon_sym_i32] = ACTIONS(866), + [anon_sym_u64] = ACTIONS(866), + [anon_sym_i64] = ACTIONS(866), + [anon_sym_u128] = ACTIONS(866), + [anon_sym_i128] = ACTIONS(866), + [anon_sym_isize] = ACTIONS(866), + [anon_sym_usize] = ACTIONS(866), + [anon_sym_f32] = ACTIONS(866), + [anon_sym_f64] = ACTIONS(866), + [anon_sym_bool] = ACTIONS(866), + [anon_sym_str] = ACTIONS(866), + [anon_sym_char] = ACTIONS(866), + [anon_sym_DASH] = ACTIONS(866), + [anon_sym_SLASH] = ACTIONS(866), + [anon_sym_PERCENT] = ACTIONS(866), + [anon_sym_CARET] = ACTIONS(866), + [anon_sym_BANG] = ACTIONS(866), + [anon_sym_AMP] = ACTIONS(866), + [anon_sym_PIPE] = ACTIONS(866), + [anon_sym_AMP_AMP] = ACTIONS(868), + [anon_sym_PIPE_PIPE] = ACTIONS(868), + [anon_sym_LT_LT] = ACTIONS(866), + [anon_sym_GT_GT] = ACTIONS(866), + [anon_sym_PLUS_EQ] = ACTIONS(868), + [anon_sym_DASH_EQ] = ACTIONS(868), + [anon_sym_STAR_EQ] = ACTIONS(868), + [anon_sym_SLASH_EQ] = ACTIONS(868), + [anon_sym_PERCENT_EQ] = ACTIONS(868), + [anon_sym_CARET_EQ] = ACTIONS(868), + [anon_sym_AMP_EQ] = ACTIONS(868), + [anon_sym_PIPE_EQ] = ACTIONS(868), + [anon_sym_LT_LT_EQ] = ACTIONS(868), + [anon_sym_GT_GT_EQ] = ACTIONS(868), + [anon_sym_EQ] = ACTIONS(866), + [anon_sym_EQ_EQ] = ACTIONS(868), + [anon_sym_BANG_EQ] = ACTIONS(868), + [anon_sym_GT] = ACTIONS(866), + [anon_sym_LT] = ACTIONS(866), + [anon_sym_GT_EQ] = ACTIONS(868), + [anon_sym_LT_EQ] = ACTIONS(868), + [anon_sym_AT] = ACTIONS(868), + [anon_sym__] = ACTIONS(866), + [anon_sym_DOT] = ACTIONS(866), + [anon_sym_DOT_DOT] = ACTIONS(866), + [anon_sym_DOT_DOT_DOT] = ACTIONS(868), + [anon_sym_DOT_DOT_EQ] = ACTIONS(868), + [anon_sym_COMMA] = ACTIONS(868), + [anon_sym_COLON_COLON] = ACTIONS(868), + [anon_sym_DASH_GT] = ACTIONS(868), + [anon_sym_POUND] = ACTIONS(868), + [anon_sym_SQUOTE] = ACTIONS(866), + [anon_sym_as] = ACTIONS(866), + [anon_sym_async] = ACTIONS(866), + [anon_sym_await] = ACTIONS(866), + [anon_sym_break] = ACTIONS(866), + [anon_sym_const] = ACTIONS(866), + [anon_sym_continue] = ACTIONS(866), + [anon_sym_default] = ACTIONS(866), + [anon_sym_enum] = ACTIONS(866), + [anon_sym_fn] = ACTIONS(866), + [anon_sym_for] = ACTIONS(866), + [anon_sym_gen] = ACTIONS(866), + [anon_sym_if] = ACTIONS(866), + [anon_sym_impl] = ACTIONS(866), + [anon_sym_let] = ACTIONS(866), + [anon_sym_loop] = ACTIONS(866), + [anon_sym_match] = ACTIONS(866), + [anon_sym_mod] = ACTIONS(866), + [anon_sym_pub] = ACTIONS(866), + [anon_sym_return] = ACTIONS(866), + [anon_sym_static] = ACTIONS(866), + [anon_sym_struct] = ACTIONS(866), + [anon_sym_trait] = ACTIONS(866), + [anon_sym_type] = ACTIONS(866), + [anon_sym_union] = ACTIONS(866), + [anon_sym_unsafe] = ACTIONS(866), + [anon_sym_use] = ACTIONS(866), + [anon_sym_where] = ACTIONS(866), + [anon_sym_while] = ACTIONS(866), + [sym_mutable_specifier] = ACTIONS(866), + [sym_integer_literal] = ACTIONS(868), + [aux_sym_string_literal_token1] = ACTIONS(868), + [sym_char_literal] = ACTIONS(868), + [anon_sym_true] = ACTIONS(866), + [anon_sym_false] = ACTIONS(866), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(866), + [sym_super] = ACTIONS(866), + [sym_crate] = ACTIONS(866), + [sym_metavariable] = ACTIONS(868), + [sym__raw_string_literal_start] = ACTIONS(868), + [sym_float_literal] = ACTIONS(868), }, [STATE(171)] = { - [sym_bracketed_type] = STATE(3621), - [sym_generic_function] = STATE(1691), - [sym_generic_type_with_turbofish] = STATE(3063), - [sym__expression_except_range] = STATE(1659), - [sym__expression] = STATE(1926), - [sym_macro_invocation] = STATE(1708), - [sym_scoped_identifier] = STATE(1599), - [sym_scoped_type_identifier_in_expression_position] = STATE(3307), - [sym_range_expression] = STATE(1695), - [sym_unary_expression] = STATE(1691), - [sym_try_expression] = STATE(1691), - [sym_reference_expression] = STATE(1691), - [sym_binary_expression] = STATE(1691), - [sym_assignment_expression] = STATE(1691), - [sym_compound_assignment_expr] = STATE(1691), - [sym_type_cast_expression] = STATE(1691), - [sym_return_expression] = STATE(1691), - [sym_yield_expression] = STATE(1691), - [sym_call_expression] = STATE(1691), - [sym_array_expression] = STATE(1691), - [sym_parenthesized_expression] = STATE(1691), - [sym_tuple_expression] = STATE(1691), - [sym_unit_expression] = STATE(1691), - [sym_struct_expression] = STATE(1691), - [sym_if_expression] = STATE(1691), - [sym_let_condition] = STATE(3339), - [sym__let_chain] = STATE(3340), - [sym__condition] = STATE(3542), - [sym_match_expression] = STATE(1691), - [sym_while_expression] = STATE(1691), - [sym_loop_expression] = STATE(1691), - [sym_for_expression] = STATE(1691), - [sym_const_block] = STATE(1691), - [sym_closure_expression] = STATE(1691), - [sym_closure_parameters] = STATE(229), - [sym_label] = STATE(3712), - [sym_break_expression] = STATE(1691), - [sym_continue_expression] = STATE(1691), - [sym_index_expression] = STATE(1691), - [sym_await_expression] = STATE(1691), - [sym_field_expression] = STATE(1671), - [sym_unsafe_block] = STATE(1691), - [sym_async_block] = STATE(1691), - [sym_gen_block] = STATE(1691), - [sym_try_block] = STATE(1691), - [sym_block] = STATE(1691), - [sym__literal] = STATE(1691), - [sym_string_literal] = STATE(1776), - [sym_raw_string_literal] = STATE(1776), - [sym_boolean_literal] = STATE(1776), [sym_line_comment] = STATE(171), [sym_block_comment] = STATE(171), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(495), - [anon_sym_LBRACK] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(979), - [anon_sym_u8] = ACTIONS(411), - [anon_sym_i8] = ACTIONS(411), - [anon_sym_u16] = ACTIONS(411), - [anon_sym_i16] = ACTIONS(411), - [anon_sym_u32] = ACTIONS(411), - [anon_sym_i32] = ACTIONS(411), - [anon_sym_u64] = ACTIONS(411), - [anon_sym_i64] = ACTIONS(411), - [anon_sym_u128] = ACTIONS(411), - [anon_sym_i128] = ACTIONS(411), - [anon_sym_isize] = ACTIONS(411), - [anon_sym_usize] = ACTIONS(411), - [anon_sym_f32] = ACTIONS(411), - [anon_sym_f64] = ACTIONS(411), - [anon_sym_bool] = ACTIONS(411), - [anon_sym_str] = ACTIONS(411), - [anon_sym_char] = ACTIONS(411), - [anon_sym_DASH] = ACTIONS(979), - [anon_sym_BANG] = ACTIONS(979), - [anon_sym_AMP] = ACTIONS(981), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(983), - [anon_sym_COLON_COLON] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(417), - [anon_sym_break] = ACTIONS(419), - [anon_sym_const] = ACTIONS(421), - [anon_sym_continue] = ACTIONS(423), - [anon_sym_default] = ACTIONS(425), - [anon_sym_for] = ACTIONS(427), - [anon_sym_gen] = ACTIONS(429), - [anon_sym_if] = ACTIONS(431), - [anon_sym_let] = ACTIONS(985), - [anon_sym_loop] = ACTIONS(433), - [anon_sym_match] = ACTIONS(435), - [anon_sym_return] = ACTIONS(437), - [anon_sym_static] = ACTIONS(439), - [anon_sym_union] = ACTIONS(425), - [anon_sym_unsafe] = ACTIONS(441), - [anon_sym_while] = ACTIONS(443), - [anon_sym_yield] = ACTIONS(445), - [anon_sym_move] = ACTIONS(447), - [anon_sym_try] = ACTIONS(449), - [sym_integer_literal] = ACTIONS(451), - [aux_sym_string_literal_token1] = ACTIONS(453), - [sym_char_literal] = ACTIONS(451), - [anon_sym_true] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(457), - [sym_super] = ACTIONS(459), - [sym_crate] = ACTIONS(459), - [sym_metavariable] = ACTIONS(461), - [sym__raw_string_literal_start] = ACTIONS(463), - [sym_float_literal] = ACTIONS(451), + [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(172)] = { - [sym_attribute_item] = STATE(1031), - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1644), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1520), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), + [sym_bracketed_type] = STATE(3650), + [sym_generic_function] = STATE(1711), + [sym_generic_type_with_turbofish] = STATE(3091), + [sym__expression_except_range] = STATE(1658), + [sym__expression] = STATE(1942), + [sym_macro_invocation] = STATE(1717), + [sym_scoped_identifier] = STATE(1623), + [sym_scoped_type_identifier_in_expression_position] = STATE(3337), + [sym_range_expression] = STATE(1715), + [sym_unary_expression] = STATE(1711), + [sym_try_expression] = STATE(1711), + [sym_reference_expression] = STATE(1711), + [sym_binary_expression] = STATE(1711), + [sym_assignment_expression] = STATE(1711), + [sym_compound_assignment_expr] = STATE(1711), + [sym_type_cast_expression] = STATE(1711), + [sym_return_expression] = STATE(1711), + [sym_yield_expression] = STATE(1711), + [sym_call_expression] = STATE(1711), + [sym_array_expression] = STATE(1711), + [sym_parenthesized_expression] = STATE(1711), + [sym_tuple_expression] = STATE(1711), + [sym_unit_expression] = STATE(1711), + [sym_struct_expression] = STATE(1711), + [sym_if_expression] = STATE(1711), + [sym_let_condition] = STATE(3371), + [sym__let_chain] = STATE(3372), + [sym__condition] = STATE(3769), + [sym_match_expression] = STATE(1711), + [sym_while_expression] = STATE(1711), + [sym_loop_expression] = STATE(1711), + [sym_for_expression] = STATE(1711), + [sym_const_block] = STATE(1711), + [sym_closure_expression] = STATE(1711), [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), + [sym_label] = STATE(3742), + [sym_break_expression] = STATE(1711), + [sym_continue_expression] = STATE(1711), + [sym_index_expression] = STATE(1711), + [sym_await_expression] = STATE(1711), + [sym_field_expression] = STATE(1690), + [sym_unsafe_block] = STATE(1711), + [sym_async_block] = STATE(1711), + [sym_gen_block] = STATE(1711), + [sym_try_block] = STATE(1711), + [sym_block] = STATE(1711), + [sym__literal] = STATE(1711), + [sym_string_literal] = STATE(1831), + [sym_raw_string_literal] = STATE(1831), + [sym_boolean_literal] = STATE(1831), [sym_line_comment] = STATE(172), [sym_block_comment] = STATE(172), - [aux_sym_enum_variant_list_repeat1] = STATE(204), - [sym_identifier] = ACTIONS(339), + [sym_identifier] = ACTIONS(410), + [anon_sym_LPAREN] = ACTIONS(498), + [anon_sym_LBRACK] = ACTIONS(500), + [anon_sym_LBRACE] = ACTIONS(412), + [anon_sym_STAR] = ACTIONS(990), + [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(990), + [anon_sym_BANG] = ACTIONS(990), + [anon_sym_AMP] = ACTIONS(992), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(994), + [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_let] = ACTIONS(996), + [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_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(173)] = { + [sym_attribute_item] = STATE(1038), + [sym_bracketed_type] = STATE(3752), + [sym_generic_function] = STATE(1492), + [sym_generic_type_with_turbofish] = STATE(3039), + [sym__expression_except_range] = STATE(1409), + [sym__expression] = STATE(1689), + [sym_macro_invocation] = STATE(1529), + [sym_scoped_identifier] = STATE(1540), + [sym_scoped_type_identifier_in_expression_position] = STATE(3335), + [sym_range_expression] = STATE(1505), + [sym_unary_expression] = STATE(1492), + [sym_try_expression] = STATE(1492), + [sym_reference_expression] = STATE(1492), + [sym_binary_expression] = STATE(1492), + [sym_assignment_expression] = STATE(1492), + [sym_compound_assignment_expr] = STATE(1492), + [sym_type_cast_expression] = STATE(1492), + [sym_return_expression] = STATE(1492), + [sym_yield_expression] = STATE(1492), + [sym_call_expression] = STATE(1492), + [sym_array_expression] = STATE(1492), + [sym_parenthesized_expression] = STATE(1492), + [sym_tuple_expression] = STATE(1492), + [sym_unit_expression] = STATE(1492), + [sym_struct_expression] = STATE(1492), + [sym_if_expression] = STATE(1492), + [sym_match_expression] = STATE(1492), + [sym_while_expression] = STATE(1492), + [sym_loop_expression] = STATE(1492), + [sym_for_expression] = STATE(1492), + [sym_const_block] = STATE(1492), + [sym_closure_expression] = STATE(1492), + [sym_closure_parameters] = STATE(229), + [sym_label] = STATE(3689), + [sym_break_expression] = STATE(1492), + [sym_continue_expression] = STATE(1492), + [sym_index_expression] = STATE(1492), + [sym_await_expression] = STATE(1492), + [sym_field_expression] = STATE(1412), + [sym_unsafe_block] = STATE(1492), + [sym_async_block] = STATE(1492), + [sym_gen_block] = STATE(1492), + [sym_try_block] = STATE(1492), + [sym_block] = STATE(1492), + [sym__literal] = STATE(1492), + [sym_string_literal] = STATE(1530), + [sym_raw_string_literal] = STATE(1530), + [sym_boolean_literal] = STATE(1530), + [sym_line_comment] = STATE(173), + [sym_block_comment] = STATE(173), + [aux_sym_enum_variant_list_repeat1] = STATE(200), + [sym_identifier] = ACTIONS(344), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(987), + [anon_sym_RPAREN] = ACTIONS(998), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(348), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -36773,561 +37020,329 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(874), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), + [anon_sym_async] = ACTIONS(356), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(358), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), + [anon_sym_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(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(115), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), - }, - [STATE(173)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3056), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1724), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1591), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_let_condition] = STATE(3090), - [sym__let_chain] = STATE(3116), - [sym__condition] = STATE(2570), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [sym_line_comment] = STATE(173), - [sym_block_comment] = STATE(173), - [sym_identifier] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(901), - [anon_sym_u8] = ACTIONS(469), - [anon_sym_i8] = ACTIONS(469), - [anon_sym_u16] = ACTIONS(469), - [anon_sym_i16] = ACTIONS(469), - [anon_sym_u32] = ACTIONS(469), - [anon_sym_i32] = ACTIONS(469), - [anon_sym_u64] = ACTIONS(469), - [anon_sym_i64] = ACTIONS(469), - [anon_sym_u128] = ACTIONS(469), - [anon_sym_i128] = ACTIONS(469), - [anon_sym_isize] = ACTIONS(469), - [anon_sym_usize] = ACTIONS(469), - [anon_sym_f32] = ACTIONS(469), - [anon_sym_f64] = ACTIONS(469), - [anon_sym_bool] = ACTIONS(469), - [anon_sym_str] = ACTIONS(469), - [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(901), - [anon_sym_BANG] = ACTIONS(901), - [anon_sym_AMP] = ACTIONS(903), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(905), - [anon_sym_COLON_COLON] = ACTIONS(473), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(477), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), - [anon_sym_if] = ACTIONS(361), - [anon_sym_let] = ACTIONS(907), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(477), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(489), - [sym_super] = ACTIONS(491), - [sym_crate] = ACTIONS(491), - [sym_metavariable] = ACTIONS(493), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [anon_sym_static] = ACTIONS(372), + [anon_sym_union] = ACTIONS(360), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [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(174)] = { [sym_line_comment] = STATE(174), [sym_block_comment] = STATE(174), - [sym_identifier] = ACTIONS(989), - [anon_sym_SEMI] = ACTIONS(991), - [anon_sym_LPAREN] = ACTIONS(991), - [anon_sym_RPAREN] = ACTIONS(991), - [anon_sym_LBRACK] = ACTIONS(991), - [anon_sym_RBRACK] = ACTIONS(991), - [anon_sym_LBRACE] = ACTIONS(991), - [anon_sym_RBRACE] = ACTIONS(991), - [anon_sym_EQ_GT] = ACTIONS(991), - [anon_sym_COLON] = ACTIONS(989), - [anon_sym_DOLLAR] = ACTIONS(989), - [anon_sym_PLUS] = ACTIONS(989), - [anon_sym_STAR] = ACTIONS(989), - [anon_sym_QMARK] = ACTIONS(991), - [anon_sym_u8] = ACTIONS(989), - [anon_sym_i8] = ACTIONS(989), - [anon_sym_u16] = ACTIONS(989), - [anon_sym_i16] = ACTIONS(989), - [anon_sym_u32] = ACTIONS(989), - [anon_sym_i32] = ACTIONS(989), - [anon_sym_u64] = ACTIONS(989), - [anon_sym_i64] = ACTIONS(989), - [anon_sym_u128] = ACTIONS(989), - [anon_sym_i128] = ACTIONS(989), - [anon_sym_isize] = ACTIONS(989), - [anon_sym_usize] = ACTIONS(989), - [anon_sym_f32] = ACTIONS(989), - [anon_sym_f64] = ACTIONS(989), - [anon_sym_bool] = ACTIONS(989), - [anon_sym_str] = ACTIONS(989), - [anon_sym_char] = ACTIONS(989), - [anon_sym_DASH] = ACTIONS(989), - [anon_sym_SLASH] = ACTIONS(989), - [anon_sym_PERCENT] = ACTIONS(989), - [anon_sym_CARET] = ACTIONS(989), - [anon_sym_BANG] = ACTIONS(989), - [anon_sym_AMP] = ACTIONS(989), - [anon_sym_PIPE] = ACTIONS(989), - [anon_sym_AMP_AMP] = ACTIONS(991), - [anon_sym_PIPE_PIPE] = ACTIONS(991), - [anon_sym_LT_LT] = ACTIONS(989), - [anon_sym_GT_GT] = ACTIONS(989), - [anon_sym_PLUS_EQ] = ACTIONS(991), - [anon_sym_DASH_EQ] = ACTIONS(991), - [anon_sym_STAR_EQ] = ACTIONS(991), - [anon_sym_SLASH_EQ] = ACTIONS(991), - [anon_sym_PERCENT_EQ] = ACTIONS(991), - [anon_sym_CARET_EQ] = ACTIONS(991), - [anon_sym_AMP_EQ] = ACTIONS(991), - [anon_sym_PIPE_EQ] = ACTIONS(991), - [anon_sym_LT_LT_EQ] = ACTIONS(991), - [anon_sym_GT_GT_EQ] = ACTIONS(991), - [anon_sym_EQ] = ACTIONS(989), - [anon_sym_EQ_EQ] = ACTIONS(991), - [anon_sym_BANG_EQ] = ACTIONS(991), - [anon_sym_GT] = ACTIONS(989), - [anon_sym_LT] = ACTIONS(989), - [anon_sym_GT_EQ] = ACTIONS(991), - [anon_sym_LT_EQ] = ACTIONS(991), - [anon_sym_AT] = ACTIONS(991), - [anon_sym__] = ACTIONS(989), - [anon_sym_DOT] = ACTIONS(989), - [anon_sym_DOT_DOT] = ACTIONS(989), - [anon_sym_DOT_DOT_DOT] = ACTIONS(991), - [anon_sym_DOT_DOT_EQ] = ACTIONS(991), - [anon_sym_COMMA] = ACTIONS(991), - [anon_sym_COLON_COLON] = ACTIONS(991), - [anon_sym_DASH_GT] = ACTIONS(991), - [anon_sym_POUND] = ACTIONS(991), - [anon_sym_SQUOTE] = ACTIONS(989), - [anon_sym_as] = ACTIONS(989), - [anon_sym_async] = ACTIONS(989), - [anon_sym_await] = ACTIONS(989), - [anon_sym_break] = ACTIONS(989), - [anon_sym_const] = ACTIONS(989), - [anon_sym_continue] = ACTIONS(989), - [anon_sym_default] = ACTIONS(989), - [anon_sym_enum] = ACTIONS(989), - [anon_sym_fn] = ACTIONS(989), - [anon_sym_for] = ACTIONS(989), - [anon_sym_gen] = ACTIONS(989), - [anon_sym_if] = ACTIONS(989), - [anon_sym_impl] = ACTIONS(989), - [anon_sym_let] = ACTIONS(989), - [anon_sym_loop] = ACTIONS(989), - [anon_sym_match] = ACTIONS(989), - [anon_sym_mod] = ACTIONS(989), - [anon_sym_pub] = ACTIONS(989), - [anon_sym_return] = ACTIONS(989), - [anon_sym_static] = ACTIONS(989), - [anon_sym_struct] = ACTIONS(989), - [anon_sym_trait] = ACTIONS(989), - [anon_sym_type] = ACTIONS(989), - [anon_sym_union] = ACTIONS(989), - [anon_sym_unsafe] = ACTIONS(989), - [anon_sym_use] = ACTIONS(989), - [anon_sym_where] = ACTIONS(989), - [anon_sym_while] = ACTIONS(989), - [sym_mutable_specifier] = ACTIONS(989), - [sym_integer_literal] = ACTIONS(991), - [aux_sym_string_literal_token1] = ACTIONS(991), - [sym_char_literal] = ACTIONS(991), - [anon_sym_true] = ACTIONS(989), - [anon_sym_false] = ACTIONS(989), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(989), - [sym_super] = ACTIONS(989), - [sym_crate] = ACTIONS(989), - [sym_metavariable] = ACTIONS(991), - [sym__raw_string_literal_start] = ACTIONS(991), - [sym_float_literal] = ACTIONS(991), + [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(175)] = { + [sym_bracketed_type] = STATE(3752), + [sym_generic_function] = STATE(1492), + [sym_generic_type_with_turbofish] = STATE(3085), + [sym__expression_except_range] = STATE(1409), + [sym__expression] = STATE(1760), + [sym_macro_invocation] = STATE(1529), + [sym_scoped_identifier] = STATE(1604), + [sym_scoped_type_identifier_in_expression_position] = STATE(3335), + [sym_range_expression] = STATE(1505), + [sym_unary_expression] = STATE(1492), + [sym_try_expression] = STATE(1492), + [sym_reference_expression] = STATE(1492), + [sym_binary_expression] = STATE(1492), + [sym_assignment_expression] = STATE(1492), + [sym_compound_assignment_expr] = STATE(1492), + [sym_type_cast_expression] = STATE(1492), + [sym_return_expression] = STATE(1492), + [sym_yield_expression] = STATE(1492), + [sym_call_expression] = STATE(1492), + [sym_array_expression] = STATE(1492), + [sym_parenthesized_expression] = STATE(1492), + [sym_tuple_expression] = STATE(1492), + [sym_unit_expression] = STATE(1492), + [sym_struct_expression] = STATE(1492), + [sym_if_expression] = STATE(1492), + [sym_let_condition] = STATE(3089), + [sym__let_chain] = STATE(3112), + [sym__condition] = STATE(2610), + [sym_match_expression] = STATE(1492), + [sym_while_expression] = STATE(1492), + [sym_loop_expression] = STATE(1492), + [sym_for_expression] = STATE(1492), + [sym_const_block] = STATE(1492), + [sym_closure_expression] = STATE(1492), + [sym_closure_parameters] = STATE(221), + [sym_label] = STATE(3689), + [sym_break_expression] = STATE(1492), + [sym_continue_expression] = STATE(1492), + [sym_index_expression] = STATE(1492), + [sym_await_expression] = STATE(1492), + [sym_field_expression] = STATE(1412), + [sym_unsafe_block] = STATE(1492), + [sym_async_block] = STATE(1492), + [sym_gen_block] = STATE(1492), + [sym_try_block] = STATE(1492), + [sym_block] = STATE(1492), + [sym__literal] = STATE(1492), + [sym_string_literal] = STATE(1530), + [sym_raw_string_literal] = STATE(1530), + [sym_boolean_literal] = STATE(1530), [sym_line_comment] = STATE(175), [sym_block_comment] = STATE(175), - [sym_identifier] = ACTIONS(993), - [anon_sym_SEMI] = ACTIONS(995), - [anon_sym_LPAREN] = ACTIONS(995), - [anon_sym_RPAREN] = ACTIONS(995), - [anon_sym_LBRACK] = ACTIONS(995), - [anon_sym_RBRACK] = ACTIONS(995), - [anon_sym_LBRACE] = ACTIONS(995), - [anon_sym_RBRACE] = ACTIONS(995), - [anon_sym_EQ_GT] = ACTIONS(995), - [anon_sym_COLON] = ACTIONS(993), - [anon_sym_DOLLAR] = ACTIONS(993), - [anon_sym_PLUS] = ACTIONS(993), - [anon_sym_STAR] = ACTIONS(993), - [anon_sym_QMARK] = ACTIONS(995), - [anon_sym_u8] = ACTIONS(993), - [anon_sym_i8] = ACTIONS(993), - [anon_sym_u16] = ACTIONS(993), - [anon_sym_i16] = ACTIONS(993), - [anon_sym_u32] = ACTIONS(993), - [anon_sym_i32] = ACTIONS(993), - [anon_sym_u64] = ACTIONS(993), - [anon_sym_i64] = ACTIONS(993), - [anon_sym_u128] = ACTIONS(993), - [anon_sym_i128] = ACTIONS(993), - [anon_sym_isize] = ACTIONS(993), - [anon_sym_usize] = ACTIONS(993), - [anon_sym_f32] = ACTIONS(993), - [anon_sym_f64] = ACTIONS(993), - [anon_sym_bool] = ACTIONS(993), - [anon_sym_str] = ACTIONS(993), - [anon_sym_char] = ACTIONS(993), - [anon_sym_DASH] = ACTIONS(993), - [anon_sym_SLASH] = ACTIONS(993), - [anon_sym_PERCENT] = ACTIONS(993), - [anon_sym_CARET] = ACTIONS(993), - [anon_sym_BANG] = ACTIONS(993), - [anon_sym_AMP] = ACTIONS(993), - [anon_sym_PIPE] = ACTIONS(993), - [anon_sym_AMP_AMP] = ACTIONS(995), - [anon_sym_PIPE_PIPE] = ACTIONS(995), - [anon_sym_LT_LT] = ACTIONS(993), - [anon_sym_GT_GT] = ACTIONS(993), - [anon_sym_PLUS_EQ] = ACTIONS(995), - [anon_sym_DASH_EQ] = ACTIONS(995), - [anon_sym_STAR_EQ] = ACTIONS(995), - [anon_sym_SLASH_EQ] = ACTIONS(995), - [anon_sym_PERCENT_EQ] = ACTIONS(995), - [anon_sym_CARET_EQ] = ACTIONS(995), - [anon_sym_AMP_EQ] = ACTIONS(995), - [anon_sym_PIPE_EQ] = ACTIONS(995), - [anon_sym_LT_LT_EQ] = ACTIONS(995), - [anon_sym_GT_GT_EQ] = ACTIONS(995), - [anon_sym_EQ] = ACTIONS(993), - [anon_sym_EQ_EQ] = ACTIONS(995), - [anon_sym_BANG_EQ] = ACTIONS(995), - [anon_sym_GT] = ACTIONS(993), - [anon_sym_LT] = ACTIONS(993), - [anon_sym_GT_EQ] = ACTIONS(995), - [anon_sym_LT_EQ] = ACTIONS(995), - [anon_sym_AT] = ACTIONS(995), - [anon_sym__] = ACTIONS(993), - [anon_sym_DOT] = ACTIONS(993), - [anon_sym_DOT_DOT] = ACTIONS(993), - [anon_sym_DOT_DOT_DOT] = ACTIONS(995), - [anon_sym_DOT_DOT_EQ] = ACTIONS(995), - [anon_sym_COMMA] = ACTIONS(995), - [anon_sym_COLON_COLON] = ACTIONS(995), - [anon_sym_DASH_GT] = ACTIONS(995), - [anon_sym_POUND] = ACTIONS(995), - [anon_sym_SQUOTE] = ACTIONS(993), - [anon_sym_as] = ACTIONS(993), - [anon_sym_async] = ACTIONS(993), - [anon_sym_await] = ACTIONS(993), - [anon_sym_break] = ACTIONS(993), - [anon_sym_const] = ACTIONS(993), - [anon_sym_continue] = ACTIONS(993), - [anon_sym_default] = ACTIONS(993), - [anon_sym_enum] = ACTIONS(993), - [anon_sym_fn] = ACTIONS(993), - [anon_sym_for] = ACTIONS(993), - [anon_sym_gen] = ACTIONS(993), - [anon_sym_if] = ACTIONS(993), - [anon_sym_impl] = ACTIONS(993), - [anon_sym_let] = ACTIONS(993), - [anon_sym_loop] = ACTIONS(993), - [anon_sym_match] = ACTIONS(993), - [anon_sym_mod] = ACTIONS(993), - [anon_sym_pub] = ACTIONS(993), - [anon_sym_return] = ACTIONS(993), - [anon_sym_static] = ACTIONS(993), - [anon_sym_struct] = ACTIONS(993), - [anon_sym_trait] = ACTIONS(993), - [anon_sym_type] = ACTIONS(993), - [anon_sym_union] = ACTIONS(993), - [anon_sym_unsafe] = ACTIONS(993), - [anon_sym_use] = ACTIONS(993), - [anon_sym_where] = ACTIONS(993), - [anon_sym_while] = ACTIONS(993), - [sym_mutable_specifier] = ACTIONS(993), - [sym_integer_literal] = ACTIONS(995), - [aux_sym_string_literal_token1] = ACTIONS(995), - [sym_char_literal] = ACTIONS(995), - [anon_sym_true] = ACTIONS(993), - [anon_sym_false] = ACTIONS(993), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(993), - [sym_super] = ACTIONS(993), - [sym_crate] = ACTIONS(993), - [sym_metavariable] = ACTIONS(995), - [sym__raw_string_literal_start] = ACTIONS(995), - [sym_float_literal] = ACTIONS(995), + [sym_identifier] = ACTIONS(470), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(348), + [anon_sym_STAR] = ACTIONS(978), + [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(978), + [anon_sym_BANG] = ACTIONS(978), + [anon_sym_AMP] = ACTIONS(980), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(982), + [anon_sym_COLON_COLON] = ACTIONS(476), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(356), + [anon_sym_break] = ACTIONS(510), + [anon_sym_const] = ACTIONS(358), + [anon_sym_continue] = ACTIONS(512), + [anon_sym_default] = ACTIONS(480), + [anon_sym_for] = ACTIONS(362), + [anon_sym_gen] = ACTIONS(514), + [anon_sym_if] = ACTIONS(366), + [anon_sym_let] = ACTIONS(984), + [anon_sym_loop] = ACTIONS(368), + [anon_sym_match] = ACTIONS(370), + [anon_sym_return] = ACTIONS(516), + [anon_sym_static] = ACTIONS(518), + [anon_sym_union] = ACTIONS(480), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [anon_sym_yield] = ACTIONS(520), + [anon_sym_move] = ACTIONS(522), + [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(492), + [sym_super] = ACTIONS(494), + [sym_crate] = ACTIONS(494), + [sym_metavariable] = ACTIONS(496), + [sym__raw_string_literal_start] = ACTIONS(119), + [sym_float_literal] = ACTIONS(99), }, [STATE(176)] = { + [sym_attribute_item] = STATE(1038), + [sym_bracketed_type] = STATE(3752), + [sym_generic_function] = STATE(1492), + [sym_generic_type_with_turbofish] = STATE(3039), + [sym__expression_except_range] = STATE(1409), + [sym__expression] = STATE(1689), + [sym_macro_invocation] = STATE(1529), + [sym_scoped_identifier] = STATE(1540), + [sym_scoped_type_identifier_in_expression_position] = STATE(3335), + [sym_range_expression] = STATE(1505), + [sym_unary_expression] = STATE(1492), + [sym_try_expression] = STATE(1492), + [sym_reference_expression] = STATE(1492), + [sym_binary_expression] = STATE(1492), + [sym_assignment_expression] = STATE(1492), + [sym_compound_assignment_expr] = STATE(1492), + [sym_type_cast_expression] = STATE(1492), + [sym_return_expression] = STATE(1492), + [sym_yield_expression] = STATE(1492), + [sym_call_expression] = STATE(1492), + [sym_array_expression] = STATE(1492), + [sym_parenthesized_expression] = STATE(1492), + [sym_tuple_expression] = STATE(1492), + [sym_unit_expression] = STATE(1492), + [sym_struct_expression] = STATE(1492), + [sym_if_expression] = STATE(1492), + [sym_match_expression] = STATE(1492), + [sym_while_expression] = STATE(1492), + [sym_loop_expression] = STATE(1492), + [sym_for_expression] = STATE(1492), + [sym_const_block] = STATE(1492), + [sym_closure_expression] = STATE(1492), + [sym_closure_parameters] = STATE(229), + [sym_label] = STATE(3689), + [sym_break_expression] = STATE(1492), + [sym_continue_expression] = STATE(1492), + [sym_index_expression] = STATE(1492), + [sym_await_expression] = STATE(1492), + [sym_field_expression] = STATE(1412), + [sym_unsafe_block] = STATE(1492), + [sym_async_block] = STATE(1492), + [sym_gen_block] = STATE(1492), + [sym_try_block] = STATE(1492), + [sym_block] = STATE(1492), + [sym__literal] = STATE(1492), + [sym_string_literal] = STATE(1530), + [sym_raw_string_literal] = STATE(1530), + [sym_boolean_literal] = STATE(1530), [sym_line_comment] = STATE(176), [sym_block_comment] = STATE(176), - [sym_identifier] = ACTIONS(997), - [anon_sym_SEMI] = ACTIONS(999), - [anon_sym_LPAREN] = ACTIONS(999), - [anon_sym_RPAREN] = ACTIONS(999), - [anon_sym_LBRACK] = ACTIONS(999), - [anon_sym_RBRACK] = ACTIONS(999), - [anon_sym_LBRACE] = ACTIONS(999), - [anon_sym_RBRACE] = ACTIONS(999), - [anon_sym_EQ_GT] = ACTIONS(999), - [anon_sym_COLON] = ACTIONS(997), - [anon_sym_DOLLAR] = ACTIONS(997), - [anon_sym_PLUS] = ACTIONS(997), - [anon_sym_STAR] = ACTIONS(997), - [anon_sym_QMARK] = ACTIONS(999), - [anon_sym_u8] = ACTIONS(997), - [anon_sym_i8] = ACTIONS(997), - [anon_sym_u16] = ACTIONS(997), - [anon_sym_i16] = ACTIONS(997), - [anon_sym_u32] = ACTIONS(997), - [anon_sym_i32] = ACTIONS(997), - [anon_sym_u64] = ACTIONS(997), - [anon_sym_i64] = ACTIONS(997), - [anon_sym_u128] = ACTIONS(997), - [anon_sym_i128] = ACTIONS(997), - [anon_sym_isize] = ACTIONS(997), - [anon_sym_usize] = ACTIONS(997), - [anon_sym_f32] = ACTIONS(997), - [anon_sym_f64] = ACTIONS(997), - [anon_sym_bool] = ACTIONS(997), - [anon_sym_str] = ACTIONS(997), - [anon_sym_char] = ACTIONS(997), - [anon_sym_DASH] = ACTIONS(997), - [anon_sym_SLASH] = ACTIONS(997), - [anon_sym_PERCENT] = ACTIONS(997), - [anon_sym_CARET] = ACTIONS(997), - [anon_sym_BANG] = ACTIONS(997), - [anon_sym_AMP] = ACTIONS(997), - [anon_sym_PIPE] = ACTIONS(997), - [anon_sym_AMP_AMP] = ACTIONS(999), - [anon_sym_PIPE_PIPE] = ACTIONS(999), - [anon_sym_LT_LT] = ACTIONS(997), - [anon_sym_GT_GT] = ACTIONS(997), - [anon_sym_PLUS_EQ] = ACTIONS(999), - [anon_sym_DASH_EQ] = ACTIONS(999), - [anon_sym_STAR_EQ] = ACTIONS(999), - [anon_sym_SLASH_EQ] = ACTIONS(999), - [anon_sym_PERCENT_EQ] = ACTIONS(999), - [anon_sym_CARET_EQ] = ACTIONS(999), - [anon_sym_AMP_EQ] = ACTIONS(999), - [anon_sym_PIPE_EQ] = ACTIONS(999), - [anon_sym_LT_LT_EQ] = ACTIONS(999), - [anon_sym_GT_GT_EQ] = ACTIONS(999), - [anon_sym_EQ] = ACTIONS(997), - [anon_sym_EQ_EQ] = ACTIONS(999), - [anon_sym_BANG_EQ] = ACTIONS(999), - [anon_sym_GT] = ACTIONS(997), - [anon_sym_LT] = ACTIONS(997), - [anon_sym_GT_EQ] = ACTIONS(999), - [anon_sym_LT_EQ] = ACTIONS(999), - [anon_sym_AT] = ACTIONS(999), - [anon_sym__] = ACTIONS(997), - [anon_sym_DOT] = ACTIONS(997), - [anon_sym_DOT_DOT] = ACTIONS(997), - [anon_sym_DOT_DOT_DOT] = ACTIONS(999), - [anon_sym_DOT_DOT_EQ] = ACTIONS(999), - [anon_sym_COMMA] = ACTIONS(999), - [anon_sym_COLON_COLON] = ACTIONS(999), - [anon_sym_DASH_GT] = ACTIONS(999), - [anon_sym_POUND] = ACTIONS(999), - [anon_sym_SQUOTE] = ACTIONS(997), - [anon_sym_as] = ACTIONS(997), - [anon_sym_async] = ACTIONS(997), - [anon_sym_await] = ACTIONS(997), - [anon_sym_break] = ACTIONS(997), - [anon_sym_const] = ACTIONS(997), - [anon_sym_continue] = ACTIONS(997), - [anon_sym_default] = ACTIONS(997), - [anon_sym_enum] = ACTIONS(997), - [anon_sym_fn] = ACTIONS(997), - [anon_sym_for] = ACTIONS(997), - [anon_sym_gen] = ACTIONS(997), - [anon_sym_if] = ACTIONS(997), - [anon_sym_impl] = ACTIONS(997), - [anon_sym_let] = ACTIONS(997), - [anon_sym_loop] = ACTIONS(997), - [anon_sym_match] = ACTIONS(997), - [anon_sym_mod] = ACTIONS(997), - [anon_sym_pub] = ACTIONS(997), - [anon_sym_return] = ACTIONS(997), - [anon_sym_static] = ACTIONS(997), - [anon_sym_struct] = ACTIONS(997), - [anon_sym_trait] = ACTIONS(997), - [anon_sym_type] = ACTIONS(997), - [anon_sym_union] = ACTIONS(997), - [anon_sym_unsafe] = ACTIONS(997), - [anon_sym_use] = ACTIONS(997), - [anon_sym_where] = ACTIONS(997), - [anon_sym_while] = ACTIONS(997), - [sym_mutable_specifier] = ACTIONS(997), - [sym_integer_literal] = ACTIONS(999), - [aux_sym_string_literal_token1] = ACTIONS(999), - [sym_char_literal] = ACTIONS(999), - [anon_sym_true] = ACTIONS(997), - [anon_sym_false] = ACTIONS(997), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(997), - [sym_super] = ACTIONS(997), - [sym_crate] = ACTIONS(997), - [sym_metavariable] = ACTIONS(999), - [sym__raw_string_literal_start] = ACTIONS(999), - [sym_float_literal] = ACTIONS(999), - }, - [STATE(177)] = { - [sym_attribute_item] = STATE(1031), - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1644), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1520), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [sym_line_comment] = STATE(177), - [sym_block_comment] = STATE(177), - [aux_sym_enum_variant_list_repeat1] = STATE(204), - [sym_identifier] = ACTIONS(339), + [aux_sym_enum_variant_list_repeat1] = STATE(200), + [sym_identifier] = ACTIONS(344), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(1001), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_RBRACK] = ACTIONS(1004), + [anon_sym_LBRACE] = ACTIONS(348), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -37353,213 +37368,213 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(874), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), + [anon_sym_async] = ACTIONS(356), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(358), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), + [anon_sym_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(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(115), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [anon_sym_static] = ACTIONS(372), + [anon_sym_union] = ACTIONS(360), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [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(177)] = { + [sym_line_comment] = STATE(177), + [sym_block_comment] = STATE(177), + [sym_identifier] = ACTIONS(1006), + [anon_sym_SEMI] = ACTIONS(1008), + [anon_sym_LPAREN] = ACTIONS(1008), + [anon_sym_RPAREN] = ACTIONS(1008), + [anon_sym_LBRACK] = ACTIONS(1008), + [anon_sym_RBRACK] = ACTIONS(1008), + [anon_sym_LBRACE] = ACTIONS(1008), + [anon_sym_RBRACE] = ACTIONS(1008), + [anon_sym_EQ_GT] = ACTIONS(1008), + [anon_sym_COLON] = ACTIONS(1006), + [anon_sym_DOLLAR] = ACTIONS(1006), + [anon_sym_PLUS] = ACTIONS(1006), + [anon_sym_STAR] = ACTIONS(1006), + [anon_sym_QMARK] = ACTIONS(1008), + [anon_sym_u8] = ACTIONS(1006), + [anon_sym_i8] = ACTIONS(1006), + [anon_sym_u16] = ACTIONS(1006), + [anon_sym_i16] = ACTIONS(1006), + [anon_sym_u32] = ACTIONS(1006), + [anon_sym_i32] = ACTIONS(1006), + [anon_sym_u64] = ACTIONS(1006), + [anon_sym_i64] = ACTIONS(1006), + [anon_sym_u128] = ACTIONS(1006), + [anon_sym_i128] = ACTIONS(1006), + [anon_sym_isize] = ACTIONS(1006), + [anon_sym_usize] = ACTIONS(1006), + [anon_sym_f32] = ACTIONS(1006), + [anon_sym_f64] = ACTIONS(1006), + [anon_sym_bool] = ACTIONS(1006), + [anon_sym_str] = ACTIONS(1006), + [anon_sym_char] = ACTIONS(1006), + [anon_sym_DASH] = ACTIONS(1006), + [anon_sym_SLASH] = ACTIONS(1006), + [anon_sym_PERCENT] = ACTIONS(1006), + [anon_sym_CARET] = ACTIONS(1006), + [anon_sym_BANG] = ACTIONS(1006), + [anon_sym_AMP] = ACTIONS(1006), + [anon_sym_PIPE] = ACTIONS(1006), + [anon_sym_AMP_AMP] = ACTIONS(1008), + [anon_sym_PIPE_PIPE] = ACTIONS(1008), + [anon_sym_LT_LT] = ACTIONS(1006), + [anon_sym_GT_GT] = ACTIONS(1006), + [anon_sym_PLUS_EQ] = ACTIONS(1008), + [anon_sym_DASH_EQ] = ACTIONS(1008), + [anon_sym_STAR_EQ] = ACTIONS(1008), + [anon_sym_SLASH_EQ] = ACTIONS(1008), + [anon_sym_PERCENT_EQ] = ACTIONS(1008), + [anon_sym_CARET_EQ] = ACTIONS(1008), + [anon_sym_AMP_EQ] = ACTIONS(1008), + [anon_sym_PIPE_EQ] = ACTIONS(1008), + [anon_sym_LT_LT_EQ] = ACTIONS(1008), + [anon_sym_GT_GT_EQ] = ACTIONS(1008), + [anon_sym_EQ] = ACTIONS(1006), + [anon_sym_EQ_EQ] = ACTIONS(1008), + [anon_sym_BANG_EQ] = ACTIONS(1008), + [anon_sym_GT] = ACTIONS(1006), + [anon_sym_LT] = ACTIONS(1006), + [anon_sym_GT_EQ] = ACTIONS(1008), + [anon_sym_LT_EQ] = ACTIONS(1008), + [anon_sym_AT] = ACTIONS(1008), + [anon_sym__] = ACTIONS(1006), + [anon_sym_DOT] = ACTIONS(1006), + [anon_sym_DOT_DOT] = ACTIONS(1006), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1008), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1008), + [anon_sym_COMMA] = ACTIONS(1008), + [anon_sym_COLON_COLON] = ACTIONS(1008), + [anon_sym_DASH_GT] = ACTIONS(1008), + [anon_sym_POUND] = ACTIONS(1008), + [anon_sym_SQUOTE] = ACTIONS(1006), + [anon_sym_as] = ACTIONS(1006), + [anon_sym_async] = ACTIONS(1006), + [anon_sym_await] = ACTIONS(1006), + [anon_sym_break] = ACTIONS(1006), + [anon_sym_const] = ACTIONS(1006), + [anon_sym_continue] = ACTIONS(1006), + [anon_sym_default] = ACTIONS(1006), + [anon_sym_enum] = ACTIONS(1006), + [anon_sym_fn] = ACTIONS(1006), + [anon_sym_for] = ACTIONS(1006), + [anon_sym_gen] = ACTIONS(1006), + [anon_sym_if] = ACTIONS(1006), + [anon_sym_impl] = ACTIONS(1006), + [anon_sym_let] = ACTIONS(1006), + [anon_sym_loop] = ACTIONS(1006), + [anon_sym_match] = ACTIONS(1006), + [anon_sym_mod] = ACTIONS(1006), + [anon_sym_pub] = ACTIONS(1006), + [anon_sym_return] = ACTIONS(1006), + [anon_sym_static] = ACTIONS(1006), + [anon_sym_struct] = ACTIONS(1006), + [anon_sym_trait] = ACTIONS(1006), + [anon_sym_type] = ACTIONS(1006), + [anon_sym_union] = ACTIONS(1006), + [anon_sym_unsafe] = ACTIONS(1006), + [anon_sym_use] = ACTIONS(1006), + [anon_sym_where] = ACTIONS(1006), + [anon_sym_while] = ACTIONS(1006), + [sym_mutable_specifier] = ACTIONS(1006), + [sym_integer_literal] = ACTIONS(1008), + [aux_sym_string_literal_token1] = ACTIONS(1008), + [sym_char_literal] = ACTIONS(1008), + [anon_sym_true] = ACTIONS(1006), + [anon_sym_false] = ACTIONS(1006), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1006), + [sym_super] = ACTIONS(1006), + [sym_crate] = ACTIONS(1006), + [sym_metavariable] = ACTIONS(1008), + [sym__raw_string_literal_start] = ACTIONS(1008), + [sym_float_literal] = ACTIONS(1008), }, [STATE(178)] = { + [sym_attribute_item] = STATE(1038), + [sym_bracketed_type] = STATE(3752), + [sym_generic_function] = STATE(1492), + [sym_generic_type_with_turbofish] = STATE(3039), + [sym__expression_except_range] = STATE(1409), + [sym__expression] = STATE(1689), + [sym_macro_invocation] = STATE(1529), + [sym_scoped_identifier] = STATE(1540), + [sym_scoped_type_identifier_in_expression_position] = STATE(3335), + [sym_range_expression] = STATE(1505), + [sym_unary_expression] = STATE(1492), + [sym_try_expression] = STATE(1492), + [sym_reference_expression] = STATE(1492), + [sym_binary_expression] = STATE(1492), + [sym_assignment_expression] = STATE(1492), + [sym_compound_assignment_expr] = STATE(1492), + [sym_type_cast_expression] = STATE(1492), + [sym_return_expression] = STATE(1492), + [sym_yield_expression] = STATE(1492), + [sym_call_expression] = STATE(1492), + [sym_array_expression] = STATE(1492), + [sym_parenthesized_expression] = STATE(1492), + [sym_tuple_expression] = STATE(1492), + [sym_unit_expression] = STATE(1492), + [sym_struct_expression] = STATE(1492), + [sym_if_expression] = STATE(1492), + [sym_match_expression] = STATE(1492), + [sym_while_expression] = STATE(1492), + [sym_loop_expression] = STATE(1492), + [sym_for_expression] = STATE(1492), + [sym_const_block] = STATE(1492), + [sym_closure_expression] = STATE(1492), + [sym_closure_parameters] = STATE(229), + [sym_label] = STATE(3689), + [sym_break_expression] = STATE(1492), + [sym_continue_expression] = STATE(1492), + [sym_index_expression] = STATE(1492), + [sym_await_expression] = STATE(1492), + [sym_field_expression] = STATE(1412), + [sym_unsafe_block] = STATE(1492), + [sym_async_block] = STATE(1492), + [sym_gen_block] = STATE(1492), + [sym_try_block] = STATE(1492), + [sym_block] = STATE(1492), + [sym__literal] = STATE(1492), + [sym_string_literal] = STATE(1530), + [sym_raw_string_literal] = STATE(1530), + [sym_boolean_literal] = STATE(1530), [sym_line_comment] = STATE(178), [sym_block_comment] = STATE(178), - [sym_identifier] = ACTIONS(1003), - [anon_sym_SEMI] = ACTIONS(1005), - [anon_sym_LPAREN] = ACTIONS(1005), - [anon_sym_RPAREN] = ACTIONS(1005), - [anon_sym_LBRACK] = ACTIONS(1005), - [anon_sym_RBRACK] = ACTIONS(1005), - [anon_sym_LBRACE] = ACTIONS(1005), - [anon_sym_RBRACE] = ACTIONS(1005), - [anon_sym_EQ_GT] = ACTIONS(1005), - [anon_sym_COLON] = ACTIONS(1003), - [anon_sym_DOLLAR] = ACTIONS(1003), - [anon_sym_PLUS] = ACTIONS(1003), - [anon_sym_STAR] = ACTIONS(1003), - [anon_sym_QMARK] = ACTIONS(1005), - [anon_sym_u8] = ACTIONS(1003), - [anon_sym_i8] = ACTIONS(1003), - [anon_sym_u16] = ACTIONS(1003), - [anon_sym_i16] = ACTIONS(1003), - [anon_sym_u32] = ACTIONS(1003), - [anon_sym_i32] = ACTIONS(1003), - [anon_sym_u64] = ACTIONS(1003), - [anon_sym_i64] = ACTIONS(1003), - [anon_sym_u128] = ACTIONS(1003), - [anon_sym_i128] = ACTIONS(1003), - [anon_sym_isize] = ACTIONS(1003), - [anon_sym_usize] = ACTIONS(1003), - [anon_sym_f32] = ACTIONS(1003), - [anon_sym_f64] = ACTIONS(1003), - [anon_sym_bool] = ACTIONS(1003), - [anon_sym_str] = ACTIONS(1003), - [anon_sym_char] = ACTIONS(1003), - [anon_sym_DASH] = ACTIONS(1003), - [anon_sym_SLASH] = ACTIONS(1003), - [anon_sym_PERCENT] = ACTIONS(1003), - [anon_sym_CARET] = ACTIONS(1003), - [anon_sym_BANG] = ACTIONS(1003), - [anon_sym_AMP] = ACTIONS(1003), - [anon_sym_PIPE] = ACTIONS(1003), - [anon_sym_AMP_AMP] = ACTIONS(1005), - [anon_sym_PIPE_PIPE] = ACTIONS(1005), - [anon_sym_LT_LT] = ACTIONS(1003), - [anon_sym_GT_GT] = ACTIONS(1003), - [anon_sym_PLUS_EQ] = ACTIONS(1005), - [anon_sym_DASH_EQ] = ACTIONS(1005), - [anon_sym_STAR_EQ] = ACTIONS(1005), - [anon_sym_SLASH_EQ] = ACTIONS(1005), - [anon_sym_PERCENT_EQ] = ACTIONS(1005), - [anon_sym_CARET_EQ] = ACTIONS(1005), - [anon_sym_AMP_EQ] = ACTIONS(1005), - [anon_sym_PIPE_EQ] = ACTIONS(1005), - [anon_sym_LT_LT_EQ] = ACTIONS(1005), - [anon_sym_GT_GT_EQ] = ACTIONS(1005), - [anon_sym_EQ] = ACTIONS(1003), - [anon_sym_EQ_EQ] = ACTIONS(1005), - [anon_sym_BANG_EQ] = ACTIONS(1005), - [anon_sym_GT] = ACTIONS(1003), - [anon_sym_LT] = ACTIONS(1003), - [anon_sym_GT_EQ] = ACTIONS(1005), - [anon_sym_LT_EQ] = ACTIONS(1005), - [anon_sym_AT] = ACTIONS(1005), - [anon_sym__] = ACTIONS(1003), - [anon_sym_DOT] = ACTIONS(1003), - [anon_sym_DOT_DOT] = ACTIONS(1003), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1005), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1005), - [anon_sym_COMMA] = ACTIONS(1005), - [anon_sym_COLON_COLON] = ACTIONS(1005), - [anon_sym_DASH_GT] = ACTIONS(1005), - [anon_sym_POUND] = ACTIONS(1005), - [anon_sym_SQUOTE] = ACTIONS(1003), - [anon_sym_as] = ACTIONS(1003), - [anon_sym_async] = ACTIONS(1003), - [anon_sym_await] = ACTIONS(1003), - [anon_sym_break] = ACTIONS(1003), - [anon_sym_const] = ACTIONS(1003), - [anon_sym_continue] = ACTIONS(1003), - [anon_sym_default] = ACTIONS(1003), - [anon_sym_enum] = ACTIONS(1003), - [anon_sym_fn] = ACTIONS(1003), - [anon_sym_for] = ACTIONS(1003), - [anon_sym_gen] = ACTIONS(1003), - [anon_sym_if] = ACTIONS(1003), - [anon_sym_impl] = ACTIONS(1003), - [anon_sym_let] = ACTIONS(1003), - [anon_sym_loop] = ACTIONS(1003), - [anon_sym_match] = ACTIONS(1003), - [anon_sym_mod] = ACTIONS(1003), - [anon_sym_pub] = ACTIONS(1003), - [anon_sym_return] = ACTIONS(1003), - [anon_sym_static] = ACTIONS(1003), - [anon_sym_struct] = ACTIONS(1003), - [anon_sym_trait] = ACTIONS(1003), - [anon_sym_type] = ACTIONS(1003), - [anon_sym_union] = ACTIONS(1003), - [anon_sym_unsafe] = ACTIONS(1003), - [anon_sym_use] = ACTIONS(1003), - [anon_sym_where] = ACTIONS(1003), - [anon_sym_while] = ACTIONS(1003), - [sym_mutable_specifier] = ACTIONS(1003), - [sym_integer_literal] = ACTIONS(1005), - [aux_sym_string_literal_token1] = ACTIONS(1005), - [sym_char_literal] = ACTIONS(1005), - [anon_sym_true] = ACTIONS(1003), - [anon_sym_false] = ACTIONS(1003), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1003), - [sym_super] = ACTIONS(1003), - [sym_crate] = ACTIONS(1003), - [sym_metavariable] = ACTIONS(1005), - [sym__raw_string_literal_start] = ACTIONS(1005), - [sym_float_literal] = ACTIONS(1005), - }, - [STATE(179)] = { - [sym_attribute_item] = STATE(1031), - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1644), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1520), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [sym_line_comment] = STATE(179), - [sym_block_comment] = STATE(179), - [aux_sym_enum_variant_list_repeat1] = STATE(204), - [sym_identifier] = ACTIONS(339), + [aux_sym_enum_variant_list_repeat1] = STATE(200), + [sym_identifier] = ACTIONS(344), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(1007), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_RBRACK] = ACTIONS(1010), + [anon_sym_LBRACE] = ACTIONS(348), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -37585,561 +37600,329 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(874), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), + [anon_sym_async] = ACTIONS(356), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(358), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), + [anon_sym_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(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(115), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [anon_sym_static] = ACTIONS(372), + [anon_sym_union] = ACTIONS(360), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [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(179)] = { + [sym_line_comment] = STATE(179), + [sym_block_comment] = STATE(179), + [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(1012), + [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_metavariable] = ACTIONS(1014), + [sym__raw_string_literal_start] = ACTIONS(1014), + [sym_float_literal] = ACTIONS(1014), }, [STATE(180)] = { [sym_line_comment] = STATE(180), [sym_block_comment] = STATE(180), - [sym_identifier] = ACTIONS(1009), - [anon_sym_SEMI] = ACTIONS(1011), - [anon_sym_LPAREN] = ACTIONS(1011), - [anon_sym_RPAREN] = ACTIONS(1011), - [anon_sym_LBRACK] = ACTIONS(1011), - [anon_sym_RBRACK] = ACTIONS(1011), - [anon_sym_LBRACE] = ACTIONS(1011), - [anon_sym_RBRACE] = ACTIONS(1011), - [anon_sym_EQ_GT] = ACTIONS(1011), - [anon_sym_COLON] = ACTIONS(1009), - [anon_sym_DOLLAR] = ACTIONS(1009), - [anon_sym_PLUS] = ACTIONS(1009), - [anon_sym_STAR] = ACTIONS(1009), - [anon_sym_QMARK] = ACTIONS(1011), - [anon_sym_u8] = ACTIONS(1009), - [anon_sym_i8] = ACTIONS(1009), - [anon_sym_u16] = ACTIONS(1009), - [anon_sym_i16] = ACTIONS(1009), - [anon_sym_u32] = ACTIONS(1009), - [anon_sym_i32] = ACTIONS(1009), - [anon_sym_u64] = ACTIONS(1009), - [anon_sym_i64] = ACTIONS(1009), - [anon_sym_u128] = ACTIONS(1009), - [anon_sym_i128] = ACTIONS(1009), - [anon_sym_isize] = ACTIONS(1009), - [anon_sym_usize] = ACTIONS(1009), - [anon_sym_f32] = ACTIONS(1009), - [anon_sym_f64] = ACTIONS(1009), - [anon_sym_bool] = ACTIONS(1009), - [anon_sym_str] = ACTIONS(1009), - [anon_sym_char] = ACTIONS(1009), - [anon_sym_DASH] = ACTIONS(1009), - [anon_sym_SLASH] = ACTIONS(1009), - [anon_sym_PERCENT] = ACTIONS(1009), - [anon_sym_CARET] = ACTIONS(1009), - [anon_sym_BANG] = ACTIONS(1009), - [anon_sym_AMP] = ACTIONS(1009), - [anon_sym_PIPE] = ACTIONS(1009), - [anon_sym_AMP_AMP] = ACTIONS(1011), - [anon_sym_PIPE_PIPE] = ACTIONS(1011), - [anon_sym_LT_LT] = ACTIONS(1009), - [anon_sym_GT_GT] = ACTIONS(1009), - [anon_sym_PLUS_EQ] = ACTIONS(1011), - [anon_sym_DASH_EQ] = ACTIONS(1011), - [anon_sym_STAR_EQ] = ACTIONS(1011), - [anon_sym_SLASH_EQ] = ACTIONS(1011), - [anon_sym_PERCENT_EQ] = ACTIONS(1011), - [anon_sym_CARET_EQ] = ACTIONS(1011), - [anon_sym_AMP_EQ] = ACTIONS(1011), - [anon_sym_PIPE_EQ] = ACTIONS(1011), - [anon_sym_LT_LT_EQ] = ACTIONS(1011), - [anon_sym_GT_GT_EQ] = ACTIONS(1011), - [anon_sym_EQ] = ACTIONS(1009), - [anon_sym_EQ_EQ] = ACTIONS(1011), - [anon_sym_BANG_EQ] = ACTIONS(1011), - [anon_sym_GT] = ACTIONS(1009), - [anon_sym_LT] = ACTIONS(1009), - [anon_sym_GT_EQ] = ACTIONS(1011), - [anon_sym_LT_EQ] = ACTIONS(1011), - [anon_sym_AT] = ACTIONS(1011), - [anon_sym__] = ACTIONS(1009), - [anon_sym_DOT] = ACTIONS(1009), - [anon_sym_DOT_DOT] = ACTIONS(1009), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1011), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1011), - [anon_sym_COMMA] = ACTIONS(1011), - [anon_sym_COLON_COLON] = ACTIONS(1011), - [anon_sym_DASH_GT] = ACTIONS(1011), - [anon_sym_POUND] = ACTIONS(1011), - [anon_sym_SQUOTE] = ACTIONS(1009), - [anon_sym_as] = ACTIONS(1009), - [anon_sym_async] = ACTIONS(1009), - [anon_sym_await] = ACTIONS(1009), - [anon_sym_break] = ACTIONS(1009), - [anon_sym_const] = ACTIONS(1009), - [anon_sym_continue] = ACTIONS(1009), - [anon_sym_default] = ACTIONS(1009), - [anon_sym_enum] = ACTIONS(1009), - [anon_sym_fn] = ACTIONS(1009), - [anon_sym_for] = ACTIONS(1009), - [anon_sym_gen] = ACTIONS(1009), - [anon_sym_if] = ACTIONS(1009), - [anon_sym_impl] = ACTIONS(1009), - [anon_sym_let] = ACTIONS(1009), - [anon_sym_loop] = ACTIONS(1009), - [anon_sym_match] = ACTIONS(1009), - [anon_sym_mod] = ACTIONS(1009), - [anon_sym_pub] = ACTIONS(1009), - [anon_sym_return] = ACTIONS(1009), - [anon_sym_static] = ACTIONS(1009), - [anon_sym_struct] = ACTIONS(1009), - [anon_sym_trait] = ACTIONS(1009), - [anon_sym_type] = ACTIONS(1009), - [anon_sym_union] = ACTIONS(1009), - [anon_sym_unsafe] = ACTIONS(1009), - [anon_sym_use] = ACTIONS(1009), - [anon_sym_where] = ACTIONS(1009), - [anon_sym_while] = ACTIONS(1009), - [sym_mutable_specifier] = ACTIONS(1009), - [sym_integer_literal] = ACTIONS(1011), - [aux_sym_string_literal_token1] = ACTIONS(1011), - [sym_char_literal] = ACTIONS(1011), - [anon_sym_true] = ACTIONS(1009), - [anon_sym_false] = ACTIONS(1009), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1009), - [sym_super] = ACTIONS(1009), - [sym_crate] = ACTIONS(1009), - [sym_metavariable] = ACTIONS(1011), - [sym__raw_string_literal_start] = ACTIONS(1011), - [sym_float_literal] = ACTIONS(1011), + [aux_sym__non_special_token_repeat1] = STATE(161), + [sym_identifier] = ACTIONS(1016), + [anon_sym_SEMI] = ACTIONS(681), + [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(681), + [anon_sym_COLON] = ACTIONS(691), + [anon_sym_DOLLAR] = ACTIONS(1018), + [anon_sym_PLUS] = ACTIONS(691), + [anon_sym_STAR] = ACTIONS(691), + [anon_sym_QMARK] = ACTIONS(681), + [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(691), + [anon_sym_SLASH] = ACTIONS(691), + [anon_sym_PERCENT] = ACTIONS(691), + [anon_sym_CARET] = ACTIONS(691), + [anon_sym_BANG] = ACTIONS(691), + [anon_sym_AMP] = ACTIONS(691), + [anon_sym_PIPE] = ACTIONS(691), + [anon_sym_AMP_AMP] = ACTIONS(681), + [anon_sym_PIPE_PIPE] = ACTIONS(681), + [anon_sym_LT_LT] = ACTIONS(691), + [anon_sym_GT_GT] = ACTIONS(691), + [anon_sym_PLUS_EQ] = ACTIONS(681), + [anon_sym_DASH_EQ] = ACTIONS(681), + [anon_sym_STAR_EQ] = ACTIONS(681), + [anon_sym_SLASH_EQ] = ACTIONS(681), + [anon_sym_PERCENT_EQ] = ACTIONS(681), + [anon_sym_CARET_EQ] = ACTIONS(681), + [anon_sym_AMP_EQ] = ACTIONS(681), + [anon_sym_PIPE_EQ] = ACTIONS(681), + [anon_sym_LT_LT_EQ] = ACTIONS(681), + [anon_sym_GT_GT_EQ] = ACTIONS(681), + [anon_sym_EQ] = ACTIONS(691), + [anon_sym_EQ_EQ] = ACTIONS(681), + [anon_sym_BANG_EQ] = ACTIONS(681), + [anon_sym_GT] = ACTIONS(691), + [anon_sym_LT] = ACTIONS(691), + [anon_sym_GT_EQ] = ACTIONS(681), + [anon_sym_LT_EQ] = ACTIONS(681), + [anon_sym_AT] = ACTIONS(681), + [anon_sym__] = ACTIONS(691), + [anon_sym_DOT] = ACTIONS(691), + [anon_sym_DOT_DOT] = ACTIONS(691), + [anon_sym_DOT_DOT_DOT] = ACTIONS(681), + [anon_sym_DOT_DOT_EQ] = ACTIONS(681), + [anon_sym_COMMA] = ACTIONS(681), + [anon_sym_COLON_COLON] = ACTIONS(681), + [anon_sym_DASH_GT] = ACTIONS(681), + [anon_sym_POUND] = ACTIONS(681), + [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(181)] = { + [sym_attribute_item] = STATE(1038), + [sym_bracketed_type] = STATE(3752), + [sym_generic_function] = STATE(1492), + [sym_generic_type_with_turbofish] = STATE(3039), + [sym__expression_except_range] = STATE(1409), + [sym__expression] = STATE(1865), + [sym_macro_invocation] = STATE(1529), + [sym_scoped_identifier] = STATE(1540), + [sym_scoped_type_identifier_in_expression_position] = STATE(3335), + [sym_range_expression] = STATE(1505), + [sym_unary_expression] = STATE(1492), + [sym_try_expression] = STATE(1492), + [sym_reference_expression] = STATE(1492), + [sym_binary_expression] = STATE(1492), + [sym_assignment_expression] = STATE(1492), + [sym_compound_assignment_expr] = STATE(1492), + [sym_type_cast_expression] = STATE(1492), + [sym_return_expression] = STATE(1492), + [sym_yield_expression] = STATE(1492), + [sym_call_expression] = STATE(1492), + [sym_array_expression] = STATE(1492), + [sym_parenthesized_expression] = STATE(1492), + [sym_tuple_expression] = STATE(1492), + [sym_unit_expression] = STATE(1492), + [sym_struct_expression] = STATE(1492), + [sym_if_expression] = STATE(1492), + [sym_match_expression] = STATE(1492), + [sym_while_expression] = STATE(1492), + [sym_loop_expression] = STATE(1492), + [sym_for_expression] = STATE(1492), + [sym_const_block] = STATE(1492), + [sym_closure_expression] = STATE(1492), + [sym_closure_parameters] = STATE(229), + [sym_label] = STATE(3689), + [sym_break_expression] = STATE(1492), + [sym_continue_expression] = STATE(1492), + [sym_index_expression] = STATE(1492), + [sym_await_expression] = STATE(1492), + [sym_field_expression] = STATE(1412), + [sym_unsafe_block] = STATE(1492), + [sym_async_block] = STATE(1492), + [sym_gen_block] = STATE(1492), + [sym_try_block] = STATE(1492), + [sym_block] = STATE(1492), + [sym__literal] = STATE(1492), + [sym_string_literal] = STATE(1530), + [sym_raw_string_literal] = STATE(1530), + [sym_boolean_literal] = STATE(1530), [sym_line_comment] = STATE(181), [sym_block_comment] = STATE(181), - [aux_sym__non_special_token_repeat1] = STATE(189), - [sym_identifier] = ACTIONS(1013), - [anon_sym_SEMI] = ACTIONS(676), - [anon_sym_LPAREN] = ACTIONS(1015), - [anon_sym_RPAREN] = ACTIONS(1015), - [anon_sym_LBRACK] = ACTIONS(1015), - [anon_sym_RBRACK] = ACTIONS(1015), - [anon_sym_LBRACE] = ACTIONS(1015), - [anon_sym_RBRACE] = ACTIONS(1015), - [anon_sym_EQ_GT] = ACTIONS(676), - [anon_sym_COLON] = ACTIONS(686), - [anon_sym_DOLLAR] = ACTIONS(1015), - [anon_sym_PLUS] = ACTIONS(686), - [anon_sym_STAR] = ACTIONS(686), - [anon_sym_QMARK] = ACTIONS(676), - [anon_sym_u8] = ACTIONS(1013), - [anon_sym_i8] = ACTIONS(1013), - [anon_sym_u16] = ACTIONS(1013), - [anon_sym_i16] = ACTIONS(1013), - [anon_sym_u32] = ACTIONS(1013), - [anon_sym_i32] = ACTIONS(1013), - [anon_sym_u64] = ACTIONS(1013), - [anon_sym_i64] = ACTIONS(1013), - [anon_sym_u128] = ACTIONS(1013), - [anon_sym_i128] = ACTIONS(1013), - [anon_sym_isize] = ACTIONS(1013), - [anon_sym_usize] = ACTIONS(1013), - [anon_sym_f32] = ACTIONS(1013), - [anon_sym_f64] = ACTIONS(1013), - [anon_sym_bool] = ACTIONS(1013), - [anon_sym_str] = ACTIONS(1013), - [anon_sym_char] = ACTIONS(1013), - [anon_sym_DASH] = ACTIONS(686), - [anon_sym_SLASH] = ACTIONS(686), - [anon_sym_PERCENT] = ACTIONS(686), - [anon_sym_CARET] = ACTIONS(686), - [anon_sym_BANG] = ACTIONS(686), - [anon_sym_AMP] = ACTIONS(686), - [anon_sym_PIPE] = ACTIONS(686), - [anon_sym_AMP_AMP] = ACTIONS(676), - [anon_sym_PIPE_PIPE] = ACTIONS(676), - [anon_sym_LT_LT] = ACTIONS(686), - [anon_sym_GT_GT] = ACTIONS(686), - [anon_sym_PLUS_EQ] = ACTIONS(676), - [anon_sym_DASH_EQ] = ACTIONS(676), - [anon_sym_STAR_EQ] = ACTIONS(676), - [anon_sym_SLASH_EQ] = ACTIONS(676), - [anon_sym_PERCENT_EQ] = ACTIONS(676), - [anon_sym_CARET_EQ] = ACTIONS(676), - [anon_sym_AMP_EQ] = ACTIONS(676), - [anon_sym_PIPE_EQ] = ACTIONS(676), - [anon_sym_LT_LT_EQ] = ACTIONS(676), - [anon_sym_GT_GT_EQ] = ACTIONS(676), - [anon_sym_EQ] = ACTIONS(686), - [anon_sym_EQ_EQ] = ACTIONS(676), - [anon_sym_BANG_EQ] = ACTIONS(676), - [anon_sym_GT] = ACTIONS(686), - [anon_sym_LT] = ACTIONS(686), - [anon_sym_GT_EQ] = ACTIONS(676), - [anon_sym_LT_EQ] = ACTIONS(676), - [anon_sym_AT] = ACTIONS(676), - [anon_sym__] = ACTIONS(686), - [anon_sym_DOT] = ACTIONS(686), - [anon_sym_DOT_DOT] = ACTIONS(686), - [anon_sym_DOT_DOT_DOT] = ACTIONS(676), - [anon_sym_DOT_DOT_EQ] = ACTIONS(676), - [anon_sym_COMMA] = ACTIONS(676), - [anon_sym_COLON_COLON] = ACTIONS(676), - [anon_sym_DASH_GT] = ACTIONS(676), - [anon_sym_POUND] = ACTIONS(676), - [anon_sym_SQUOTE] = ACTIONS(1013), - [anon_sym_as] = ACTIONS(1013), - [anon_sym_async] = ACTIONS(1013), - [anon_sym_await] = ACTIONS(1013), - [anon_sym_break] = ACTIONS(1013), - [anon_sym_const] = ACTIONS(1013), - [anon_sym_continue] = ACTIONS(1013), - [anon_sym_default] = ACTIONS(1013), - [anon_sym_enum] = ACTIONS(1013), - [anon_sym_fn] = ACTIONS(1013), - [anon_sym_for] = ACTIONS(1013), - [anon_sym_gen] = ACTIONS(1013), - [anon_sym_if] = ACTIONS(1013), - [anon_sym_impl] = ACTIONS(1013), - [anon_sym_let] = ACTIONS(1013), - [anon_sym_loop] = ACTIONS(1013), - [anon_sym_match] = ACTIONS(1013), - [anon_sym_mod] = ACTIONS(1013), - [anon_sym_pub] = ACTIONS(1013), - [anon_sym_return] = ACTIONS(1013), - [anon_sym_static] = ACTIONS(1013), - [anon_sym_struct] = ACTIONS(1013), - [anon_sym_trait] = ACTIONS(1013), - [anon_sym_type] = ACTIONS(1013), - [anon_sym_union] = ACTIONS(1013), - [anon_sym_unsafe] = ACTIONS(1013), - [anon_sym_use] = ACTIONS(1013), - [anon_sym_where] = ACTIONS(1013), - [anon_sym_while] = ACTIONS(1013), - [sym_mutable_specifier] = ACTIONS(1013), - [sym_integer_literal] = ACTIONS(1015), - [aux_sym_string_literal_token1] = ACTIONS(1015), - [sym_char_literal] = ACTIONS(1015), - [anon_sym_true] = ACTIONS(1013), - [anon_sym_false] = ACTIONS(1013), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1013), - [sym_super] = ACTIONS(1013), - [sym_crate] = ACTIONS(1013), - [sym__raw_string_literal_start] = ACTIONS(1015), - [sym_float_literal] = ACTIONS(1015), - }, - [STATE(182)] = { - [sym_line_comment] = STATE(182), - [sym_block_comment] = STATE(182), - [sym_identifier] = ACTIONS(1017), - [anon_sym_SEMI] = ACTIONS(1019), - [anon_sym_LPAREN] = ACTIONS(1019), - [anon_sym_RPAREN] = ACTIONS(1019), - [anon_sym_LBRACK] = ACTIONS(1019), - [anon_sym_RBRACK] = ACTIONS(1019), - [anon_sym_LBRACE] = ACTIONS(1019), - [anon_sym_RBRACE] = ACTIONS(1019), - [anon_sym_EQ_GT] = ACTIONS(1019), - [anon_sym_COLON] = ACTIONS(1017), - [anon_sym_DOLLAR] = ACTIONS(1017), - [anon_sym_PLUS] = ACTIONS(1017), - [anon_sym_STAR] = ACTIONS(1017), - [anon_sym_QMARK] = ACTIONS(1019), - [anon_sym_u8] = ACTIONS(1017), - [anon_sym_i8] = ACTIONS(1017), - [anon_sym_u16] = ACTIONS(1017), - [anon_sym_i16] = ACTIONS(1017), - [anon_sym_u32] = ACTIONS(1017), - [anon_sym_i32] = ACTIONS(1017), - [anon_sym_u64] = ACTIONS(1017), - [anon_sym_i64] = ACTIONS(1017), - [anon_sym_u128] = ACTIONS(1017), - [anon_sym_i128] = ACTIONS(1017), - [anon_sym_isize] = ACTIONS(1017), - [anon_sym_usize] = ACTIONS(1017), - [anon_sym_f32] = ACTIONS(1017), - [anon_sym_f64] = ACTIONS(1017), - [anon_sym_bool] = ACTIONS(1017), - [anon_sym_str] = ACTIONS(1017), - [anon_sym_char] = ACTIONS(1017), - [anon_sym_DASH] = ACTIONS(1017), - [anon_sym_SLASH] = ACTIONS(1017), - [anon_sym_PERCENT] = ACTIONS(1017), - [anon_sym_CARET] = ACTIONS(1017), - [anon_sym_BANG] = ACTIONS(1017), - [anon_sym_AMP] = ACTIONS(1017), - [anon_sym_PIPE] = ACTIONS(1017), - [anon_sym_AMP_AMP] = ACTIONS(1019), - [anon_sym_PIPE_PIPE] = ACTIONS(1019), - [anon_sym_LT_LT] = ACTIONS(1017), - [anon_sym_GT_GT] = ACTIONS(1017), - [anon_sym_PLUS_EQ] = ACTIONS(1019), - [anon_sym_DASH_EQ] = ACTIONS(1019), - [anon_sym_STAR_EQ] = ACTIONS(1019), - [anon_sym_SLASH_EQ] = ACTIONS(1019), - [anon_sym_PERCENT_EQ] = ACTIONS(1019), - [anon_sym_CARET_EQ] = ACTIONS(1019), - [anon_sym_AMP_EQ] = ACTIONS(1019), - [anon_sym_PIPE_EQ] = ACTIONS(1019), - [anon_sym_LT_LT_EQ] = ACTIONS(1019), - [anon_sym_GT_GT_EQ] = ACTIONS(1019), - [anon_sym_EQ] = ACTIONS(1017), - [anon_sym_EQ_EQ] = ACTIONS(1019), - [anon_sym_BANG_EQ] = ACTIONS(1019), - [anon_sym_GT] = ACTIONS(1017), - [anon_sym_LT] = ACTIONS(1017), - [anon_sym_GT_EQ] = ACTIONS(1019), - [anon_sym_LT_EQ] = ACTIONS(1019), - [anon_sym_AT] = ACTIONS(1019), - [anon_sym__] = ACTIONS(1017), - [anon_sym_DOT] = ACTIONS(1017), - [anon_sym_DOT_DOT] = ACTIONS(1017), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1019), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1019), - [anon_sym_COMMA] = ACTIONS(1019), - [anon_sym_COLON_COLON] = ACTIONS(1019), - [anon_sym_DASH_GT] = ACTIONS(1019), - [anon_sym_POUND] = ACTIONS(1019), - [anon_sym_SQUOTE] = ACTIONS(1017), - [anon_sym_as] = ACTIONS(1017), - [anon_sym_async] = ACTIONS(1017), - [anon_sym_await] = ACTIONS(1017), - [anon_sym_break] = ACTIONS(1017), - [anon_sym_const] = ACTIONS(1017), - [anon_sym_continue] = ACTIONS(1017), - [anon_sym_default] = ACTIONS(1017), - [anon_sym_enum] = ACTIONS(1017), - [anon_sym_fn] = ACTIONS(1017), - [anon_sym_for] = ACTIONS(1017), - [anon_sym_gen] = ACTIONS(1017), - [anon_sym_if] = ACTIONS(1017), - [anon_sym_impl] = ACTIONS(1017), - [anon_sym_let] = ACTIONS(1017), - [anon_sym_loop] = ACTIONS(1017), - [anon_sym_match] = ACTIONS(1017), - [anon_sym_mod] = ACTIONS(1017), - [anon_sym_pub] = ACTIONS(1017), - [anon_sym_return] = ACTIONS(1017), - [anon_sym_static] = ACTIONS(1017), - [anon_sym_struct] = ACTIONS(1017), - [anon_sym_trait] = ACTIONS(1017), - [anon_sym_type] = ACTIONS(1017), - [anon_sym_union] = ACTIONS(1017), - [anon_sym_unsafe] = ACTIONS(1017), - [anon_sym_use] = ACTIONS(1017), - [anon_sym_where] = ACTIONS(1017), - [anon_sym_while] = ACTIONS(1017), - [sym_mutable_specifier] = ACTIONS(1017), - [sym_integer_literal] = ACTIONS(1019), - [aux_sym_string_literal_token1] = ACTIONS(1019), - [sym_char_literal] = ACTIONS(1019), - [anon_sym_true] = ACTIONS(1017), - [anon_sym_false] = ACTIONS(1017), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1017), - [sym_super] = ACTIONS(1017), - [sym_crate] = ACTIONS(1017), - [sym_metavariable] = ACTIONS(1019), - [sym__raw_string_literal_start] = ACTIONS(1019), - [sym_float_literal] = ACTIONS(1019), - }, - [STATE(183)] = { - [sym_line_comment] = STATE(183), - [sym_block_comment] = STATE(183), - [sym_identifier] = ACTIONS(1021), - [anon_sym_SEMI] = ACTIONS(1023), - [anon_sym_LPAREN] = ACTIONS(1023), - [anon_sym_RPAREN] = ACTIONS(1023), - [anon_sym_LBRACK] = ACTIONS(1023), - [anon_sym_RBRACK] = ACTIONS(1023), - [anon_sym_LBRACE] = ACTIONS(1023), - [anon_sym_RBRACE] = ACTIONS(1023), - [anon_sym_EQ_GT] = ACTIONS(1023), - [anon_sym_COLON] = ACTIONS(1021), - [anon_sym_DOLLAR] = ACTIONS(1021), - [anon_sym_PLUS] = ACTIONS(1021), - [anon_sym_STAR] = ACTIONS(1021), - [anon_sym_QMARK] = ACTIONS(1023), - [anon_sym_u8] = ACTIONS(1021), - [anon_sym_i8] = ACTIONS(1021), - [anon_sym_u16] = ACTIONS(1021), - [anon_sym_i16] = ACTIONS(1021), - [anon_sym_u32] = ACTIONS(1021), - [anon_sym_i32] = ACTIONS(1021), - [anon_sym_u64] = ACTIONS(1021), - [anon_sym_i64] = ACTIONS(1021), - [anon_sym_u128] = ACTIONS(1021), - [anon_sym_i128] = ACTIONS(1021), - [anon_sym_isize] = ACTIONS(1021), - [anon_sym_usize] = ACTIONS(1021), - [anon_sym_f32] = ACTIONS(1021), - [anon_sym_f64] = ACTIONS(1021), - [anon_sym_bool] = ACTIONS(1021), - [anon_sym_str] = ACTIONS(1021), - [anon_sym_char] = ACTIONS(1021), - [anon_sym_DASH] = ACTIONS(1021), - [anon_sym_SLASH] = ACTIONS(1021), - [anon_sym_PERCENT] = ACTIONS(1021), - [anon_sym_CARET] = ACTIONS(1021), - [anon_sym_BANG] = ACTIONS(1021), - [anon_sym_AMP] = ACTIONS(1021), - [anon_sym_PIPE] = ACTIONS(1021), - [anon_sym_AMP_AMP] = ACTIONS(1023), - [anon_sym_PIPE_PIPE] = ACTIONS(1023), - [anon_sym_LT_LT] = ACTIONS(1021), - [anon_sym_GT_GT] = ACTIONS(1021), - [anon_sym_PLUS_EQ] = ACTIONS(1023), - [anon_sym_DASH_EQ] = ACTIONS(1023), - [anon_sym_STAR_EQ] = ACTIONS(1023), - [anon_sym_SLASH_EQ] = ACTIONS(1023), - [anon_sym_PERCENT_EQ] = ACTIONS(1023), - [anon_sym_CARET_EQ] = ACTIONS(1023), - [anon_sym_AMP_EQ] = ACTIONS(1023), - [anon_sym_PIPE_EQ] = ACTIONS(1023), - [anon_sym_LT_LT_EQ] = ACTIONS(1023), - [anon_sym_GT_GT_EQ] = ACTIONS(1023), - [anon_sym_EQ] = ACTIONS(1021), - [anon_sym_EQ_EQ] = ACTIONS(1023), - [anon_sym_BANG_EQ] = ACTIONS(1023), - [anon_sym_GT] = ACTIONS(1021), - [anon_sym_LT] = ACTIONS(1021), - [anon_sym_GT_EQ] = ACTIONS(1023), - [anon_sym_LT_EQ] = ACTIONS(1023), - [anon_sym_AT] = ACTIONS(1023), - [anon_sym__] = ACTIONS(1021), - [anon_sym_DOT] = ACTIONS(1021), - [anon_sym_DOT_DOT] = ACTIONS(1021), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1023), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1023), - [anon_sym_COMMA] = ACTIONS(1023), - [anon_sym_COLON_COLON] = ACTIONS(1023), - [anon_sym_DASH_GT] = ACTIONS(1023), - [anon_sym_POUND] = ACTIONS(1023), - [anon_sym_SQUOTE] = ACTIONS(1021), - [anon_sym_as] = ACTIONS(1021), - [anon_sym_async] = ACTIONS(1021), - [anon_sym_await] = ACTIONS(1021), - [anon_sym_break] = ACTIONS(1021), - [anon_sym_const] = ACTIONS(1021), - [anon_sym_continue] = ACTIONS(1021), - [anon_sym_default] = ACTIONS(1021), - [anon_sym_enum] = ACTIONS(1021), - [anon_sym_fn] = ACTIONS(1021), - [anon_sym_for] = ACTIONS(1021), - [anon_sym_gen] = ACTIONS(1021), - [anon_sym_if] = ACTIONS(1021), - [anon_sym_impl] = ACTIONS(1021), - [anon_sym_let] = ACTIONS(1021), - [anon_sym_loop] = ACTIONS(1021), - [anon_sym_match] = ACTIONS(1021), - [anon_sym_mod] = ACTIONS(1021), - [anon_sym_pub] = ACTIONS(1021), - [anon_sym_return] = ACTIONS(1021), - [anon_sym_static] = ACTIONS(1021), - [anon_sym_struct] = ACTIONS(1021), - [anon_sym_trait] = ACTIONS(1021), - [anon_sym_type] = ACTIONS(1021), - [anon_sym_union] = ACTIONS(1021), - [anon_sym_unsafe] = ACTIONS(1021), - [anon_sym_use] = ACTIONS(1021), - [anon_sym_where] = ACTIONS(1021), - [anon_sym_while] = ACTIONS(1021), - [sym_mutable_specifier] = ACTIONS(1021), - [sym_integer_literal] = ACTIONS(1023), - [aux_sym_string_literal_token1] = ACTIONS(1023), - [sym_char_literal] = ACTIONS(1023), - [anon_sym_true] = ACTIONS(1021), - [anon_sym_false] = ACTIONS(1021), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1021), - [sym_super] = ACTIONS(1021), - [sym_crate] = ACTIONS(1021), - [sym_metavariable] = ACTIONS(1023), - [sym__raw_string_literal_start] = ACTIONS(1023), - [sym_float_literal] = ACTIONS(1023), - }, - [STATE(184)] = { - [sym_attribute_item] = STATE(1031), - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1644), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1520), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [sym_line_comment] = STATE(184), - [sym_block_comment] = STATE(184), - [aux_sym_enum_variant_list_repeat1] = STATE(204), - [sym_identifier] = ACTIONS(339), + [aux_sym_enum_variant_list_repeat1] = STATE(213), + [sym_identifier] = ACTIONS(344), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(1025), + [anon_sym_RPAREN] = ACTIONS(1020), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(348), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -38165,97 +37948,445 @@ 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(748), + [anon_sym_POUND] = ACTIONS(874), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), + [anon_sym_async] = ACTIONS(356), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(358), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), + [anon_sym_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(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(115), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [anon_sym_static] = ACTIONS(372), + [anon_sym_union] = ACTIONS(360), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [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(182)] = { + [sym_line_comment] = STATE(182), + [sym_block_comment] = STATE(182), + [sym_identifier] = ACTIONS(1022), + [anon_sym_SEMI] = ACTIONS(1024), + [anon_sym_LPAREN] = ACTIONS(1024), + [anon_sym_RPAREN] = ACTIONS(1024), + [anon_sym_LBRACK] = ACTIONS(1024), + [anon_sym_RBRACK] = ACTIONS(1024), + [anon_sym_LBRACE] = ACTIONS(1024), + [anon_sym_RBRACE] = ACTIONS(1024), + [anon_sym_EQ_GT] = ACTIONS(1024), + [anon_sym_COLON] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_PLUS] = ACTIONS(1022), + [anon_sym_STAR] = ACTIONS(1022), + [anon_sym_QMARK] = ACTIONS(1024), + [anon_sym_u8] = ACTIONS(1022), + [anon_sym_i8] = ACTIONS(1022), + [anon_sym_u16] = ACTIONS(1022), + [anon_sym_i16] = ACTIONS(1022), + [anon_sym_u32] = ACTIONS(1022), + [anon_sym_i32] = ACTIONS(1022), + [anon_sym_u64] = ACTIONS(1022), + [anon_sym_i64] = ACTIONS(1022), + [anon_sym_u128] = ACTIONS(1022), + [anon_sym_i128] = ACTIONS(1022), + [anon_sym_isize] = ACTIONS(1022), + [anon_sym_usize] = ACTIONS(1022), + [anon_sym_f32] = ACTIONS(1022), + [anon_sym_f64] = ACTIONS(1022), + [anon_sym_bool] = ACTIONS(1022), + [anon_sym_str] = ACTIONS(1022), + [anon_sym_char] = ACTIONS(1022), + [anon_sym_DASH] = ACTIONS(1022), + [anon_sym_SLASH] = ACTIONS(1022), + [anon_sym_PERCENT] = ACTIONS(1022), + [anon_sym_CARET] = ACTIONS(1022), + [anon_sym_BANG] = ACTIONS(1022), + [anon_sym_AMP] = ACTIONS(1022), + [anon_sym_PIPE] = ACTIONS(1022), + [anon_sym_AMP_AMP] = ACTIONS(1024), + [anon_sym_PIPE_PIPE] = ACTIONS(1024), + [anon_sym_LT_LT] = ACTIONS(1022), + [anon_sym_GT_GT] = ACTIONS(1022), + [anon_sym_PLUS_EQ] = ACTIONS(1024), + [anon_sym_DASH_EQ] = ACTIONS(1024), + [anon_sym_STAR_EQ] = ACTIONS(1024), + [anon_sym_SLASH_EQ] = ACTIONS(1024), + [anon_sym_PERCENT_EQ] = ACTIONS(1024), + [anon_sym_CARET_EQ] = ACTIONS(1024), + [anon_sym_AMP_EQ] = ACTIONS(1024), + [anon_sym_PIPE_EQ] = ACTIONS(1024), + [anon_sym_LT_LT_EQ] = ACTIONS(1024), + [anon_sym_GT_GT_EQ] = ACTIONS(1024), + [anon_sym_EQ] = ACTIONS(1022), + [anon_sym_EQ_EQ] = ACTIONS(1024), + [anon_sym_BANG_EQ] = ACTIONS(1024), + [anon_sym_GT] = ACTIONS(1022), + [anon_sym_LT] = ACTIONS(1022), + [anon_sym_GT_EQ] = ACTIONS(1024), + [anon_sym_LT_EQ] = ACTIONS(1024), + [anon_sym_AT] = ACTIONS(1024), + [anon_sym__] = ACTIONS(1022), + [anon_sym_DOT] = ACTIONS(1022), + [anon_sym_DOT_DOT] = ACTIONS(1022), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1024), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1024), + [anon_sym_COMMA] = ACTIONS(1024), + [anon_sym_COLON_COLON] = ACTIONS(1024), + [anon_sym_DASH_GT] = ACTIONS(1024), + [anon_sym_POUND] = ACTIONS(1024), + [anon_sym_SQUOTE] = ACTIONS(1022), + [anon_sym_as] = ACTIONS(1022), + [anon_sym_async] = ACTIONS(1022), + [anon_sym_await] = ACTIONS(1022), + [anon_sym_break] = ACTIONS(1022), + [anon_sym_const] = ACTIONS(1022), + [anon_sym_continue] = ACTIONS(1022), + [anon_sym_default] = ACTIONS(1022), + [anon_sym_enum] = ACTIONS(1022), + [anon_sym_fn] = ACTIONS(1022), + [anon_sym_for] = ACTIONS(1022), + [anon_sym_gen] = ACTIONS(1022), + [anon_sym_if] = ACTIONS(1022), + [anon_sym_impl] = ACTIONS(1022), + [anon_sym_let] = ACTIONS(1022), + [anon_sym_loop] = ACTIONS(1022), + [anon_sym_match] = ACTIONS(1022), + [anon_sym_mod] = ACTIONS(1022), + [anon_sym_pub] = ACTIONS(1022), + [anon_sym_return] = ACTIONS(1022), + [anon_sym_static] = ACTIONS(1022), + [anon_sym_struct] = ACTIONS(1022), + [anon_sym_trait] = ACTIONS(1022), + [anon_sym_type] = ACTIONS(1022), + [anon_sym_union] = ACTIONS(1022), + [anon_sym_unsafe] = ACTIONS(1022), + [anon_sym_use] = ACTIONS(1022), + [anon_sym_where] = ACTIONS(1022), + [anon_sym_while] = ACTIONS(1022), + [sym_mutable_specifier] = ACTIONS(1022), + [sym_integer_literal] = ACTIONS(1024), + [aux_sym_string_literal_token1] = ACTIONS(1024), + [sym_char_literal] = ACTIONS(1024), + [anon_sym_true] = ACTIONS(1022), + [anon_sym_false] = ACTIONS(1022), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1022), + [sym_super] = ACTIONS(1022), + [sym_crate] = ACTIONS(1022), + [sym_metavariable] = ACTIONS(1024), + [sym__raw_string_literal_start] = ACTIONS(1024), + [sym_float_literal] = ACTIONS(1024), + }, + [STATE(183)] = { + [sym_line_comment] = STATE(183), + [sym_block_comment] = STATE(183), + [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), + }, + [STATE(184)] = { + [sym_line_comment] = STATE(184), + [sym_block_comment] = STATE(184), + [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), }, [STATE(185)] = { - [sym_attribute_item] = STATE(1031), - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1902), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1520), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), + [sym_attribute_item] = STATE(1038), + [sym_bracketed_type] = STATE(3752), + [sym_generic_function] = STATE(1492), + [sym_generic_type_with_turbofish] = STATE(3039), + [sym__expression_except_range] = STATE(1409), + [sym__expression] = STATE(1689), + [sym_macro_invocation] = STATE(1529), + [sym_scoped_identifier] = STATE(1540), + [sym_scoped_type_identifier_in_expression_position] = STATE(3335), + [sym_range_expression] = STATE(1505), + [sym_unary_expression] = STATE(1492), + [sym_try_expression] = STATE(1492), + [sym_reference_expression] = STATE(1492), + [sym_binary_expression] = STATE(1492), + [sym_assignment_expression] = STATE(1492), + [sym_compound_assignment_expr] = STATE(1492), + [sym_type_cast_expression] = STATE(1492), + [sym_return_expression] = STATE(1492), + [sym_yield_expression] = STATE(1492), + [sym_call_expression] = STATE(1492), + [sym_array_expression] = STATE(1492), + [sym_parenthesized_expression] = STATE(1492), + [sym_tuple_expression] = STATE(1492), + [sym_unit_expression] = STATE(1492), + [sym_struct_expression] = STATE(1492), + [sym_if_expression] = STATE(1492), + [sym_match_expression] = STATE(1492), + [sym_while_expression] = STATE(1492), + [sym_loop_expression] = STATE(1492), + [sym_for_expression] = STATE(1492), + [sym_const_block] = STATE(1492), + [sym_closure_expression] = STATE(1492), + [sym_closure_parameters] = STATE(229), + [sym_label] = STATE(3689), + [sym_break_expression] = STATE(1492), + [sym_continue_expression] = STATE(1492), + [sym_index_expression] = STATE(1492), + [sym_await_expression] = STATE(1492), + [sym_field_expression] = STATE(1412), + [sym_unsafe_block] = STATE(1492), + [sym_async_block] = STATE(1492), + [sym_gen_block] = STATE(1492), + [sym_try_block] = STATE(1492), + [sym_block] = STATE(1492), + [sym__literal] = STATE(1492), + [sym_string_literal] = STATE(1530), + [sym_raw_string_literal] = STATE(1530), + [sym_boolean_literal] = STATE(1530), [sym_line_comment] = STATE(185), [sym_block_comment] = STATE(185), - [aux_sym_enum_variant_list_repeat1] = STATE(203), - [sym_identifier] = ACTIONS(339), + [aux_sym_enum_variant_list_repeat1] = STATE(200), + [sym_identifier] = ACTIONS(344), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(1027), + [anon_sym_RPAREN] = ACTIONS(1034), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(348), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -38281,1833 +38412,1718 @@ 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(748), + [anon_sym_POUND] = ACTIONS(874), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), + [anon_sym_async] = ACTIONS(356), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(358), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), + [anon_sym_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(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(115), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [anon_sym_static] = ACTIONS(372), + [anon_sym_union] = ACTIONS(360), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [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(186)] = { + [sym_bracketed_type] = STATE(3752), + [sym_generic_function] = STATE(1492), + [sym_generic_type_with_turbofish] = STATE(3085), + [sym__expression_except_range] = STATE(1409), + [sym__expression] = STATE(1760), + [sym_macro_invocation] = STATE(1529), + [sym_scoped_identifier] = STATE(1604), + [sym_scoped_type_identifier_in_expression_position] = STATE(3335), + [sym_range_expression] = STATE(1505), + [sym_unary_expression] = STATE(1492), + [sym_try_expression] = STATE(1492), + [sym_reference_expression] = STATE(1492), + [sym_binary_expression] = STATE(1492), + [sym_assignment_expression] = STATE(1492), + [sym_compound_assignment_expr] = STATE(1492), + [sym_type_cast_expression] = STATE(1492), + [sym_return_expression] = STATE(1492), + [sym_yield_expression] = STATE(1492), + [sym_call_expression] = STATE(1492), + [sym_array_expression] = STATE(1492), + [sym_parenthesized_expression] = STATE(1492), + [sym_tuple_expression] = STATE(1492), + [sym_unit_expression] = STATE(1492), + [sym_struct_expression] = STATE(1492), + [sym_if_expression] = STATE(1492), + [sym_let_condition] = STATE(3089), + [sym__let_chain] = STATE(3112), + [sym__condition] = STATE(2760), + [sym_match_expression] = STATE(1492), + [sym_while_expression] = STATE(1492), + [sym_loop_expression] = STATE(1492), + [sym_for_expression] = STATE(1492), + [sym_const_block] = STATE(1492), + [sym_closure_expression] = STATE(1492), + [sym_closure_parameters] = STATE(221), + [sym_label] = STATE(3689), + [sym_break_expression] = STATE(1492), + [sym_continue_expression] = STATE(1492), + [sym_index_expression] = STATE(1492), + [sym_await_expression] = STATE(1492), + [sym_field_expression] = STATE(1412), + [sym_unsafe_block] = STATE(1492), + [sym_async_block] = STATE(1492), + [sym_gen_block] = STATE(1492), + [sym_try_block] = STATE(1492), + [sym_block] = STATE(1492), + [sym__literal] = STATE(1492), + [sym_string_literal] = STATE(1530), + [sym_raw_string_literal] = STATE(1530), + [sym_boolean_literal] = STATE(1530), [sym_line_comment] = STATE(186), [sym_block_comment] = STATE(186), - [sym_identifier] = ACTIONS(879), - [anon_sym_SEMI] = ACTIONS(881), - [anon_sym_LPAREN] = ACTIONS(881), - [anon_sym_RPAREN] = ACTIONS(881), - [anon_sym_LBRACK] = ACTIONS(881), - [anon_sym_RBRACK] = ACTIONS(881), - [anon_sym_LBRACE] = ACTIONS(881), - [anon_sym_RBRACE] = ACTIONS(881), - [anon_sym_EQ_GT] = ACTIONS(881), - [anon_sym_COLON] = ACTIONS(879), - [anon_sym_DOLLAR] = ACTIONS(879), - [anon_sym_PLUS] = ACTIONS(879), - [anon_sym_STAR] = ACTIONS(879), - [anon_sym_QMARK] = ACTIONS(881), - [anon_sym_u8] = ACTIONS(879), - [anon_sym_i8] = ACTIONS(879), - [anon_sym_u16] = ACTIONS(879), - [anon_sym_i16] = ACTIONS(879), - [anon_sym_u32] = ACTIONS(879), - [anon_sym_i32] = ACTIONS(879), - [anon_sym_u64] = ACTIONS(879), - [anon_sym_i64] = ACTIONS(879), - [anon_sym_u128] = ACTIONS(879), - [anon_sym_i128] = ACTIONS(879), - [anon_sym_isize] = ACTIONS(879), - [anon_sym_usize] = ACTIONS(879), - [anon_sym_f32] = ACTIONS(879), - [anon_sym_f64] = ACTIONS(879), - [anon_sym_bool] = ACTIONS(879), - [anon_sym_str] = ACTIONS(879), - [anon_sym_char] = ACTIONS(879), - [anon_sym_DASH] = ACTIONS(879), - [anon_sym_SLASH] = ACTIONS(879), - [anon_sym_PERCENT] = ACTIONS(879), - [anon_sym_CARET] = ACTIONS(879), - [anon_sym_BANG] = ACTIONS(879), - [anon_sym_AMP] = ACTIONS(879), - [anon_sym_PIPE] = ACTIONS(879), - [anon_sym_AMP_AMP] = ACTIONS(881), - [anon_sym_PIPE_PIPE] = ACTIONS(881), - [anon_sym_LT_LT] = ACTIONS(879), - [anon_sym_GT_GT] = ACTIONS(879), - [anon_sym_PLUS_EQ] = ACTIONS(881), - [anon_sym_DASH_EQ] = ACTIONS(881), - [anon_sym_STAR_EQ] = ACTIONS(881), - [anon_sym_SLASH_EQ] = ACTIONS(881), - [anon_sym_PERCENT_EQ] = ACTIONS(881), - [anon_sym_CARET_EQ] = ACTIONS(881), - [anon_sym_AMP_EQ] = ACTIONS(881), - [anon_sym_PIPE_EQ] = ACTIONS(881), - [anon_sym_LT_LT_EQ] = ACTIONS(881), - [anon_sym_GT_GT_EQ] = ACTIONS(881), - [anon_sym_EQ] = ACTIONS(879), - [anon_sym_EQ_EQ] = ACTIONS(881), - [anon_sym_BANG_EQ] = ACTIONS(881), - [anon_sym_GT] = ACTIONS(879), - [anon_sym_LT] = ACTIONS(879), - [anon_sym_GT_EQ] = ACTIONS(881), - [anon_sym_LT_EQ] = ACTIONS(881), - [anon_sym_AT] = ACTIONS(881), - [anon_sym__] = ACTIONS(879), - [anon_sym_DOT] = ACTIONS(879), - [anon_sym_DOT_DOT] = ACTIONS(879), - [anon_sym_DOT_DOT_DOT] = ACTIONS(881), - [anon_sym_DOT_DOT_EQ] = ACTIONS(881), - [anon_sym_COMMA] = ACTIONS(881), - [anon_sym_COLON_COLON] = ACTIONS(881), - [anon_sym_DASH_GT] = ACTIONS(881), - [anon_sym_POUND] = ACTIONS(881), - [anon_sym_SQUOTE] = ACTIONS(879), - [anon_sym_as] = ACTIONS(879), - [anon_sym_async] = ACTIONS(879), - [anon_sym_await] = ACTIONS(879), - [anon_sym_break] = ACTIONS(879), - [anon_sym_const] = ACTIONS(879), - [anon_sym_continue] = ACTIONS(879), - [anon_sym_default] = ACTIONS(879), - [anon_sym_enum] = ACTIONS(879), - [anon_sym_fn] = ACTIONS(879), - [anon_sym_for] = ACTIONS(879), - [anon_sym_gen] = ACTIONS(879), - [anon_sym_if] = ACTIONS(879), - [anon_sym_impl] = ACTIONS(879), - [anon_sym_let] = ACTIONS(879), - [anon_sym_loop] = ACTIONS(879), - [anon_sym_match] = ACTIONS(879), - [anon_sym_mod] = ACTIONS(879), - [anon_sym_pub] = ACTIONS(879), - [anon_sym_return] = ACTIONS(879), - [anon_sym_static] = ACTIONS(879), - [anon_sym_struct] = ACTIONS(879), - [anon_sym_trait] = ACTIONS(879), - [anon_sym_type] = ACTIONS(879), - [anon_sym_union] = ACTIONS(879), - [anon_sym_unsafe] = ACTIONS(879), - [anon_sym_use] = ACTIONS(879), - [anon_sym_where] = ACTIONS(879), - [anon_sym_while] = ACTIONS(879), - [sym_mutable_specifier] = ACTIONS(879), - [sym_integer_literal] = ACTIONS(881), - [aux_sym_string_literal_token1] = ACTIONS(881), - [sym_char_literal] = ACTIONS(881), - [anon_sym_true] = ACTIONS(879), - [anon_sym_false] = ACTIONS(879), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(879), - [sym_super] = ACTIONS(879), - [sym_crate] = ACTIONS(879), - [sym_metavariable] = ACTIONS(881), - [sym__raw_string_literal_start] = ACTIONS(881), - [sym_float_literal] = ACTIONS(881), - }, - [STATE(187)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3056), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1724), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1591), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_let_condition] = STATE(3090), - [sym__let_chain] = STATE(3116), - [sym__condition] = STATE(2745), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [sym_line_comment] = STATE(187), - [sym_block_comment] = STATE(187), - [sym_identifier] = ACTIONS(467), + [sym_identifier] = ACTIONS(470), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(901), - [anon_sym_u8] = ACTIONS(469), - [anon_sym_i8] = ACTIONS(469), - [anon_sym_u16] = ACTIONS(469), - [anon_sym_i16] = ACTIONS(469), - [anon_sym_u32] = ACTIONS(469), - [anon_sym_i32] = ACTIONS(469), - [anon_sym_u64] = ACTIONS(469), - [anon_sym_i64] = ACTIONS(469), - [anon_sym_u128] = ACTIONS(469), - [anon_sym_i128] = ACTIONS(469), - [anon_sym_isize] = ACTIONS(469), - [anon_sym_usize] = ACTIONS(469), - [anon_sym_f32] = ACTIONS(469), - [anon_sym_f64] = ACTIONS(469), - [anon_sym_bool] = ACTIONS(469), - [anon_sym_str] = ACTIONS(469), - [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(901), - [anon_sym_BANG] = ACTIONS(901), - [anon_sym_AMP] = ACTIONS(903), + [anon_sym_LBRACE] = ACTIONS(348), + [anon_sym_STAR] = ACTIONS(978), + [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(978), + [anon_sym_BANG] = ACTIONS(978), + [anon_sym_AMP] = ACTIONS(980), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(905), - [anon_sym_COLON_COLON] = ACTIONS(473), + [anon_sym_DOT_DOT] = ACTIONS(982), + [anon_sym_COLON_COLON] = ACTIONS(476), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(477), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), - [anon_sym_if] = ACTIONS(361), - [anon_sym_let] = ACTIONS(907), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(477), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(489), - [sym_super] = ACTIONS(491), - [sym_crate] = ACTIONS(491), - [sym_metavariable] = ACTIONS(493), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [anon_sym_async] = ACTIONS(356), + [anon_sym_break] = ACTIONS(510), + [anon_sym_const] = ACTIONS(358), + [anon_sym_continue] = ACTIONS(512), + [anon_sym_default] = ACTIONS(480), + [anon_sym_for] = ACTIONS(362), + [anon_sym_gen] = ACTIONS(514), + [anon_sym_if] = ACTIONS(366), + [anon_sym_let] = ACTIONS(984), + [anon_sym_loop] = ACTIONS(368), + [anon_sym_match] = ACTIONS(370), + [anon_sym_return] = ACTIONS(516), + [anon_sym_static] = ACTIONS(518), + [anon_sym_union] = ACTIONS(480), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [anon_sym_yield] = ACTIONS(520), + [anon_sym_move] = ACTIONS(522), + [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(492), + [sym_super] = ACTIONS(494), + [sym_crate] = ACTIONS(494), + [sym_metavariable] = ACTIONS(496), + [sym__raw_string_literal_start] = ACTIONS(119), + [sym_float_literal] = ACTIONS(99), + }, + [STATE(187)] = { + [sym_line_comment] = STATE(187), + [sym_block_comment] = STATE(187), + [sym_identifier] = ACTIONS(862), + [anon_sym_SEMI] = ACTIONS(864), + [anon_sym_LPAREN] = ACTIONS(864), + [anon_sym_RPAREN] = ACTIONS(864), + [anon_sym_LBRACK] = ACTIONS(864), + [anon_sym_RBRACK] = ACTIONS(864), + [anon_sym_LBRACE] = ACTIONS(864), + [anon_sym_RBRACE] = ACTIONS(864), + [anon_sym_EQ_GT] = ACTIONS(864), + [anon_sym_COLON] = ACTIONS(1036), + [anon_sym_DOLLAR] = ACTIONS(862), + [anon_sym_PLUS] = ACTIONS(862), + [anon_sym_STAR] = ACTIONS(862), + [anon_sym_QMARK] = ACTIONS(864), + [anon_sym_u8] = ACTIONS(862), + [anon_sym_i8] = ACTIONS(862), + [anon_sym_u16] = ACTIONS(862), + [anon_sym_i16] = ACTIONS(862), + [anon_sym_u32] = ACTIONS(862), + [anon_sym_i32] = ACTIONS(862), + [anon_sym_u64] = ACTIONS(862), + [anon_sym_i64] = ACTIONS(862), + [anon_sym_u128] = ACTIONS(862), + [anon_sym_i128] = ACTIONS(862), + [anon_sym_isize] = ACTIONS(862), + [anon_sym_usize] = ACTIONS(862), + [anon_sym_f32] = ACTIONS(862), + [anon_sym_f64] = ACTIONS(862), + [anon_sym_bool] = ACTIONS(862), + [anon_sym_str] = ACTIONS(862), + [anon_sym_char] = ACTIONS(862), + [anon_sym_DASH] = ACTIONS(862), + [anon_sym_SLASH] = ACTIONS(862), + [anon_sym_PERCENT] = ACTIONS(862), + [anon_sym_CARET] = ACTIONS(862), + [anon_sym_BANG] = ACTIONS(862), + [anon_sym_AMP] = ACTIONS(862), + [anon_sym_PIPE] = ACTIONS(862), + [anon_sym_AMP_AMP] = ACTIONS(864), + [anon_sym_PIPE_PIPE] = ACTIONS(864), + [anon_sym_LT_LT] = ACTIONS(862), + [anon_sym_GT_GT] = ACTIONS(862), + [anon_sym_PLUS_EQ] = ACTIONS(864), + [anon_sym_DASH_EQ] = ACTIONS(864), + [anon_sym_STAR_EQ] = ACTIONS(864), + [anon_sym_SLASH_EQ] = ACTIONS(864), + [anon_sym_PERCENT_EQ] = ACTIONS(864), + [anon_sym_CARET_EQ] = ACTIONS(864), + [anon_sym_AMP_EQ] = ACTIONS(864), + [anon_sym_PIPE_EQ] = ACTIONS(864), + [anon_sym_LT_LT_EQ] = ACTIONS(864), + [anon_sym_GT_GT_EQ] = ACTIONS(864), + [anon_sym_EQ] = ACTIONS(862), + [anon_sym_EQ_EQ] = ACTIONS(864), + [anon_sym_BANG_EQ] = ACTIONS(864), + [anon_sym_GT] = ACTIONS(862), + [anon_sym_LT] = ACTIONS(862), + [anon_sym_GT_EQ] = ACTIONS(864), + [anon_sym_LT_EQ] = ACTIONS(864), + [anon_sym_AT] = ACTIONS(864), + [anon_sym__] = ACTIONS(862), + [anon_sym_DOT] = ACTIONS(862), + [anon_sym_DOT_DOT] = ACTIONS(862), + [anon_sym_DOT_DOT_DOT] = ACTIONS(864), + [anon_sym_DOT_DOT_EQ] = ACTIONS(864), + [anon_sym_COMMA] = ACTIONS(864), + [anon_sym_COLON_COLON] = ACTIONS(864), + [anon_sym_DASH_GT] = ACTIONS(864), + [anon_sym_POUND] = ACTIONS(864), + [anon_sym_SQUOTE] = ACTIONS(862), + [anon_sym_as] = ACTIONS(862), + [anon_sym_async] = ACTIONS(862), + [anon_sym_await] = ACTIONS(862), + [anon_sym_break] = ACTIONS(862), + [anon_sym_const] = ACTIONS(862), + [anon_sym_continue] = ACTIONS(862), + [anon_sym_default] = ACTIONS(862), + [anon_sym_enum] = ACTIONS(862), + [anon_sym_fn] = ACTIONS(862), + [anon_sym_for] = ACTIONS(862), + [anon_sym_gen] = ACTIONS(862), + [anon_sym_if] = ACTIONS(862), + [anon_sym_impl] = ACTIONS(862), + [anon_sym_let] = ACTIONS(862), + [anon_sym_loop] = ACTIONS(862), + [anon_sym_match] = ACTIONS(862), + [anon_sym_mod] = ACTIONS(862), + [anon_sym_pub] = ACTIONS(862), + [anon_sym_return] = ACTIONS(862), + [anon_sym_static] = ACTIONS(862), + [anon_sym_struct] = ACTIONS(862), + [anon_sym_trait] = ACTIONS(862), + [anon_sym_type] = ACTIONS(862), + [anon_sym_union] = ACTIONS(862), + [anon_sym_unsafe] = ACTIONS(862), + [anon_sym_use] = ACTIONS(862), + [anon_sym_where] = ACTIONS(862), + [anon_sym_while] = ACTIONS(862), + [sym_mutable_specifier] = ACTIONS(862), + [sym_integer_literal] = ACTIONS(864), + [aux_sym_string_literal_token1] = ACTIONS(864), + [sym_char_literal] = ACTIONS(864), + [anon_sym_true] = ACTIONS(862), + [anon_sym_false] = ACTIONS(862), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(862), + [sym_super] = ACTIONS(862), + [sym_crate] = ACTIONS(862), + [sym_metavariable] = ACTIONS(864), + [sym__raw_string_literal_start] = ACTIONS(864), + [sym_float_literal] = ACTIONS(864), }, [STATE(188)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3056), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1724), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1591), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_let_condition] = STATE(3090), - [sym__let_chain] = STATE(3116), - [sym__condition] = STATE(2821), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), + [sym_bracketed_type] = STATE(3752), + [sym_generic_function] = STATE(1492), + [sym_generic_type_with_turbofish] = STATE(3085), + [sym__expression_except_range] = STATE(1409), + [sym__expression] = STATE(1760), + [sym_macro_invocation] = STATE(1529), + [sym_scoped_identifier] = STATE(1604), + [sym_scoped_type_identifier_in_expression_position] = STATE(3335), + [sym_range_expression] = STATE(1505), + [sym_unary_expression] = STATE(1492), + [sym_try_expression] = STATE(1492), + [sym_reference_expression] = STATE(1492), + [sym_binary_expression] = STATE(1492), + [sym_assignment_expression] = STATE(1492), + [sym_compound_assignment_expr] = STATE(1492), + [sym_type_cast_expression] = STATE(1492), + [sym_return_expression] = STATE(1492), + [sym_yield_expression] = STATE(1492), + [sym_call_expression] = STATE(1492), + [sym_array_expression] = STATE(1492), + [sym_parenthesized_expression] = STATE(1492), + [sym_tuple_expression] = STATE(1492), + [sym_unit_expression] = STATE(1492), + [sym_struct_expression] = STATE(1492), + [sym_if_expression] = STATE(1492), + [sym_let_condition] = STATE(3089), + [sym__let_chain] = STATE(3112), + [sym__condition] = STATE(2745), + [sym_match_expression] = STATE(1492), + [sym_while_expression] = STATE(1492), + [sym_loop_expression] = STATE(1492), + [sym_for_expression] = STATE(1492), + [sym_const_block] = STATE(1492), + [sym_closure_expression] = STATE(1492), + [sym_closure_parameters] = STATE(221), + [sym_label] = STATE(3689), + [sym_break_expression] = STATE(1492), + [sym_continue_expression] = STATE(1492), + [sym_index_expression] = STATE(1492), + [sym_await_expression] = STATE(1492), + [sym_field_expression] = STATE(1412), + [sym_unsafe_block] = STATE(1492), + [sym_async_block] = STATE(1492), + [sym_gen_block] = STATE(1492), + [sym_try_block] = STATE(1492), + [sym_block] = STATE(1492), + [sym__literal] = STATE(1492), + [sym_string_literal] = STATE(1530), + [sym_raw_string_literal] = STATE(1530), + [sym_boolean_literal] = STATE(1530), [sym_line_comment] = STATE(188), [sym_block_comment] = STATE(188), - [sym_identifier] = ACTIONS(467), + [sym_identifier] = ACTIONS(470), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(901), - [anon_sym_u8] = ACTIONS(469), - [anon_sym_i8] = ACTIONS(469), - [anon_sym_u16] = ACTIONS(469), - [anon_sym_i16] = ACTIONS(469), - [anon_sym_u32] = ACTIONS(469), - [anon_sym_i32] = ACTIONS(469), - [anon_sym_u64] = ACTIONS(469), - [anon_sym_i64] = ACTIONS(469), - [anon_sym_u128] = ACTIONS(469), - [anon_sym_i128] = ACTIONS(469), - [anon_sym_isize] = ACTIONS(469), - [anon_sym_usize] = ACTIONS(469), - [anon_sym_f32] = ACTIONS(469), - [anon_sym_f64] = ACTIONS(469), - [anon_sym_bool] = ACTIONS(469), - [anon_sym_str] = ACTIONS(469), - [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(901), - [anon_sym_BANG] = ACTIONS(901), - [anon_sym_AMP] = ACTIONS(903), + [anon_sym_LBRACE] = ACTIONS(348), + [anon_sym_STAR] = ACTIONS(978), + [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(978), + [anon_sym_BANG] = ACTIONS(978), + [anon_sym_AMP] = ACTIONS(980), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(905), - [anon_sym_COLON_COLON] = ACTIONS(473), + [anon_sym_DOT_DOT] = ACTIONS(982), + [anon_sym_COLON_COLON] = ACTIONS(476), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(477), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), - [anon_sym_if] = ACTIONS(361), - [anon_sym_let] = ACTIONS(907), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(477), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(489), - [sym_super] = ACTIONS(491), - [sym_crate] = ACTIONS(491), - [sym_metavariable] = ACTIONS(493), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [anon_sym_async] = ACTIONS(356), + [anon_sym_break] = ACTIONS(510), + [anon_sym_const] = ACTIONS(358), + [anon_sym_continue] = ACTIONS(512), + [anon_sym_default] = ACTIONS(480), + [anon_sym_for] = ACTIONS(362), + [anon_sym_gen] = ACTIONS(514), + [anon_sym_if] = ACTIONS(366), + [anon_sym_let] = ACTIONS(984), + [anon_sym_loop] = ACTIONS(368), + [anon_sym_match] = ACTIONS(370), + [anon_sym_return] = ACTIONS(516), + [anon_sym_static] = ACTIONS(518), + [anon_sym_union] = ACTIONS(480), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [anon_sym_yield] = ACTIONS(520), + [anon_sym_move] = ACTIONS(522), + [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(492), + [sym_super] = ACTIONS(494), + [sym_crate] = ACTIONS(494), + [sym_metavariable] = ACTIONS(496), + [sym__raw_string_literal_start] = ACTIONS(119), + [sym_float_literal] = ACTIONS(99), }, [STATE(189)] = { + [sym_bracketed_type] = STATE(3752), + [sym_generic_function] = STATE(1492), + [sym_generic_type_with_turbofish] = STATE(3085), + [sym__expression_except_range] = STATE(1409), + [sym__expression] = STATE(1760), + [sym_macro_invocation] = STATE(1529), + [sym_scoped_identifier] = STATE(1604), + [sym_scoped_type_identifier_in_expression_position] = STATE(3335), + [sym_range_expression] = STATE(1505), + [sym_unary_expression] = STATE(1492), + [sym_try_expression] = STATE(1492), + [sym_reference_expression] = STATE(1492), + [sym_binary_expression] = STATE(1492), + [sym_assignment_expression] = STATE(1492), + [sym_compound_assignment_expr] = STATE(1492), + [sym_type_cast_expression] = STATE(1492), + [sym_return_expression] = STATE(1492), + [sym_yield_expression] = STATE(1492), + [sym_call_expression] = STATE(1492), + [sym_array_expression] = STATE(1492), + [sym_parenthesized_expression] = STATE(1492), + [sym_tuple_expression] = STATE(1492), + [sym_unit_expression] = STATE(1492), + [sym_struct_expression] = STATE(1492), + [sym_if_expression] = STATE(1492), + [sym_let_condition] = STATE(3089), + [sym__let_chain] = STATE(3112), + [sym__condition] = STATE(2761), + [sym_match_expression] = STATE(1492), + [sym_while_expression] = STATE(1492), + [sym_loop_expression] = STATE(1492), + [sym_for_expression] = STATE(1492), + [sym_const_block] = STATE(1492), + [sym_closure_expression] = STATE(1492), + [sym_closure_parameters] = STATE(221), + [sym_label] = STATE(3689), + [sym_break_expression] = STATE(1492), + [sym_continue_expression] = STATE(1492), + [sym_index_expression] = STATE(1492), + [sym_await_expression] = STATE(1492), + [sym_field_expression] = STATE(1412), + [sym_unsafe_block] = STATE(1492), + [sym_async_block] = STATE(1492), + [sym_gen_block] = STATE(1492), + [sym_try_block] = STATE(1492), + [sym_block] = STATE(1492), + [sym__literal] = STATE(1492), + [sym_string_literal] = STATE(1530), + [sym_raw_string_literal] = STATE(1530), + [sym_boolean_literal] = STATE(1530), [sym_line_comment] = STATE(189), [sym_block_comment] = STATE(189), - [aux_sym__non_special_token_repeat1] = STATE(189), - [sym_identifier] = ACTIONS(887), - [anon_sym_SEMI] = ACTIONS(1029), - [anon_sym_LPAREN] = ACTIONS(892), - [anon_sym_RPAREN] = ACTIONS(892), - [anon_sym_LBRACK] = ACTIONS(892), - [anon_sym_RBRACK] = ACTIONS(892), - [anon_sym_LBRACE] = ACTIONS(892), - [anon_sym_RBRACE] = ACTIONS(892), - [anon_sym_EQ_GT] = ACTIONS(1029), - [anon_sym_COLON] = ACTIONS(1032), - [anon_sym_DOLLAR] = ACTIONS(892), - [anon_sym_PLUS] = ACTIONS(1032), - [anon_sym_STAR] = ACTIONS(1032), - [anon_sym_QMARK] = ACTIONS(1029), - [anon_sym_u8] = ACTIONS(887), - [anon_sym_i8] = ACTIONS(887), - [anon_sym_u16] = ACTIONS(887), - [anon_sym_i16] = ACTIONS(887), - [anon_sym_u32] = ACTIONS(887), - [anon_sym_i32] = ACTIONS(887), - [anon_sym_u64] = ACTIONS(887), - [anon_sym_i64] = ACTIONS(887), - [anon_sym_u128] = ACTIONS(887), - [anon_sym_i128] = ACTIONS(887), - [anon_sym_isize] = ACTIONS(887), - [anon_sym_usize] = ACTIONS(887), - [anon_sym_f32] = ACTIONS(887), - [anon_sym_f64] = ACTIONS(887), - [anon_sym_bool] = ACTIONS(887), - [anon_sym_str] = ACTIONS(887), - [anon_sym_char] = ACTIONS(887), - [anon_sym_DASH] = ACTIONS(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(1029), - [anon_sym_PIPE_PIPE] = ACTIONS(1029), - [anon_sym_LT_LT] = ACTIONS(1032), - [anon_sym_GT_GT] = ACTIONS(1032), - [anon_sym_PLUS_EQ] = ACTIONS(1029), - [anon_sym_DASH_EQ] = ACTIONS(1029), - [anon_sym_STAR_EQ] = ACTIONS(1029), - [anon_sym_SLASH_EQ] = ACTIONS(1029), - [anon_sym_PERCENT_EQ] = ACTIONS(1029), - [anon_sym_CARET_EQ] = ACTIONS(1029), - [anon_sym_AMP_EQ] = ACTIONS(1029), - [anon_sym_PIPE_EQ] = ACTIONS(1029), - [anon_sym_LT_LT_EQ] = ACTIONS(1029), - [anon_sym_GT_GT_EQ] = ACTIONS(1029), - [anon_sym_EQ] = ACTIONS(1032), - [anon_sym_EQ_EQ] = ACTIONS(1029), - [anon_sym_BANG_EQ] = ACTIONS(1029), - [anon_sym_GT] = ACTIONS(1032), - [anon_sym_LT] = ACTIONS(1032), - [anon_sym_GT_EQ] = ACTIONS(1029), - [anon_sym_LT_EQ] = ACTIONS(1029), - [anon_sym_AT] = ACTIONS(1029), - [anon_sym__] = ACTIONS(1032), - [anon_sym_DOT] = ACTIONS(1032), - [anon_sym_DOT_DOT] = ACTIONS(1032), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1029), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1029), - [anon_sym_COMMA] = ACTIONS(1029), - [anon_sym_COLON_COLON] = ACTIONS(1029), - [anon_sym_DASH_GT] = ACTIONS(1029), - [anon_sym_POUND] = ACTIONS(1029), - [anon_sym_SQUOTE] = ACTIONS(887), - [anon_sym_as] = ACTIONS(887), - [anon_sym_async] = ACTIONS(887), - [anon_sym_await] = ACTIONS(887), - [anon_sym_break] = ACTIONS(887), - [anon_sym_const] = ACTIONS(887), - [anon_sym_continue] = ACTIONS(887), - [anon_sym_default] = ACTIONS(887), - [anon_sym_enum] = ACTIONS(887), - [anon_sym_fn] = ACTIONS(887), - [anon_sym_for] = ACTIONS(887), - [anon_sym_gen] = ACTIONS(887), - [anon_sym_if] = ACTIONS(887), - [anon_sym_impl] = ACTIONS(887), - [anon_sym_let] = ACTIONS(887), - [anon_sym_loop] = ACTIONS(887), - [anon_sym_match] = ACTIONS(887), - [anon_sym_mod] = ACTIONS(887), - [anon_sym_pub] = ACTIONS(887), - [anon_sym_return] = ACTIONS(887), - [anon_sym_static] = ACTIONS(887), - [anon_sym_struct] = ACTIONS(887), - [anon_sym_trait] = ACTIONS(887), - [anon_sym_type] = ACTIONS(887), - [anon_sym_union] = ACTIONS(887), - [anon_sym_unsafe] = ACTIONS(887), - [anon_sym_use] = ACTIONS(887), - [anon_sym_where] = ACTIONS(887), - [anon_sym_while] = ACTIONS(887), - [sym_mutable_specifier] = ACTIONS(887), - [sym_integer_literal] = ACTIONS(892), - [aux_sym_string_literal_token1] = ACTIONS(892), - [sym_char_literal] = ACTIONS(892), - [anon_sym_true] = ACTIONS(887), - [anon_sym_false] = ACTIONS(887), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(887), - [sym_super] = ACTIONS(887), - [sym_crate] = ACTIONS(887), - [sym__raw_string_literal_start] = ACTIONS(892), - [sym_float_literal] = ACTIONS(892), + [sym_identifier] = ACTIONS(470), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(348), + [anon_sym_STAR] = ACTIONS(978), + [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(978), + [anon_sym_BANG] = ACTIONS(978), + [anon_sym_AMP] = ACTIONS(980), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(982), + [anon_sym_COLON_COLON] = ACTIONS(476), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(356), + [anon_sym_break] = ACTIONS(510), + [anon_sym_const] = ACTIONS(358), + [anon_sym_continue] = ACTIONS(512), + [anon_sym_default] = ACTIONS(480), + [anon_sym_for] = ACTIONS(362), + [anon_sym_gen] = ACTIONS(514), + [anon_sym_if] = ACTIONS(366), + [anon_sym_let] = ACTIONS(984), + [anon_sym_loop] = ACTIONS(368), + [anon_sym_match] = ACTIONS(370), + [anon_sym_return] = ACTIONS(516), + [anon_sym_static] = ACTIONS(518), + [anon_sym_union] = ACTIONS(480), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [anon_sym_yield] = ACTIONS(520), + [anon_sym_move] = ACTIONS(522), + [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(492), + [sym_super] = ACTIONS(494), + [sym_crate] = ACTIONS(494), + [sym_metavariable] = ACTIONS(496), + [sym__raw_string_literal_start] = ACTIONS(119), + [sym_float_literal] = ACTIONS(99), }, [STATE(190)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3056), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1724), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1591), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_let_condition] = STATE(3090), - [sym__let_chain] = STATE(3116), - [sym__condition] = STATE(2782), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), + [sym_bracketed_type] = STATE(3752), + [sym_generic_function] = STATE(1492), + [sym_generic_type_with_turbofish] = STATE(3085), + [sym__expression_except_range] = STATE(1409), + [sym__expression] = STATE(1760), + [sym_macro_invocation] = STATE(1529), + [sym_scoped_identifier] = STATE(1604), + [sym_scoped_type_identifier_in_expression_position] = STATE(3335), + [sym_range_expression] = STATE(1505), + [sym_unary_expression] = STATE(1492), + [sym_try_expression] = STATE(1492), + [sym_reference_expression] = STATE(1492), + [sym_binary_expression] = STATE(1492), + [sym_assignment_expression] = STATE(1492), + [sym_compound_assignment_expr] = STATE(1492), + [sym_type_cast_expression] = STATE(1492), + [sym_return_expression] = STATE(1492), + [sym_yield_expression] = STATE(1492), + [sym_call_expression] = STATE(1492), + [sym_array_expression] = STATE(1492), + [sym_parenthesized_expression] = STATE(1492), + [sym_tuple_expression] = STATE(1492), + [sym_unit_expression] = STATE(1492), + [sym_struct_expression] = STATE(1492), + [sym_if_expression] = STATE(1492), + [sym_let_condition] = STATE(3089), + [sym__let_chain] = STATE(3112), + [sym__condition] = STATE(2667), + [sym_match_expression] = STATE(1492), + [sym_while_expression] = STATE(1492), + [sym_loop_expression] = STATE(1492), + [sym_for_expression] = STATE(1492), + [sym_const_block] = STATE(1492), + [sym_closure_expression] = STATE(1492), + [sym_closure_parameters] = STATE(221), + [sym_label] = STATE(3689), + [sym_break_expression] = STATE(1492), + [sym_continue_expression] = STATE(1492), + [sym_index_expression] = STATE(1492), + [sym_await_expression] = STATE(1492), + [sym_field_expression] = STATE(1412), + [sym_unsafe_block] = STATE(1492), + [sym_async_block] = STATE(1492), + [sym_gen_block] = STATE(1492), + [sym_try_block] = STATE(1492), + [sym_block] = STATE(1492), + [sym__literal] = STATE(1492), + [sym_string_literal] = STATE(1530), + [sym_raw_string_literal] = STATE(1530), + [sym_boolean_literal] = STATE(1530), [sym_line_comment] = STATE(190), [sym_block_comment] = STATE(190), - [sym_identifier] = ACTIONS(467), + [sym_identifier] = ACTIONS(470), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(901), - [anon_sym_u8] = ACTIONS(469), - [anon_sym_i8] = ACTIONS(469), - [anon_sym_u16] = ACTIONS(469), - [anon_sym_i16] = ACTIONS(469), - [anon_sym_u32] = ACTIONS(469), - [anon_sym_i32] = ACTIONS(469), - [anon_sym_u64] = ACTIONS(469), - [anon_sym_i64] = ACTIONS(469), - [anon_sym_u128] = ACTIONS(469), - [anon_sym_i128] = ACTIONS(469), - [anon_sym_isize] = ACTIONS(469), - [anon_sym_usize] = ACTIONS(469), - [anon_sym_f32] = ACTIONS(469), - [anon_sym_f64] = ACTIONS(469), - [anon_sym_bool] = ACTIONS(469), - [anon_sym_str] = ACTIONS(469), - [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(901), - [anon_sym_BANG] = ACTIONS(901), - [anon_sym_AMP] = ACTIONS(903), + [anon_sym_LBRACE] = ACTIONS(348), + [anon_sym_STAR] = ACTIONS(978), + [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(978), + [anon_sym_BANG] = ACTIONS(978), + [anon_sym_AMP] = ACTIONS(980), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(905), - [anon_sym_COLON_COLON] = ACTIONS(473), + [anon_sym_DOT_DOT] = ACTIONS(982), + [anon_sym_COLON_COLON] = ACTIONS(476), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(477), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), - [anon_sym_if] = ACTIONS(361), - [anon_sym_let] = ACTIONS(907), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(477), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(489), - [sym_super] = ACTIONS(491), - [sym_crate] = ACTIONS(491), - [sym_metavariable] = ACTIONS(493), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [anon_sym_async] = ACTIONS(356), + [anon_sym_break] = ACTIONS(510), + [anon_sym_const] = ACTIONS(358), + [anon_sym_continue] = ACTIONS(512), + [anon_sym_default] = ACTIONS(480), + [anon_sym_for] = ACTIONS(362), + [anon_sym_gen] = ACTIONS(514), + [anon_sym_if] = ACTIONS(366), + [anon_sym_let] = ACTIONS(984), + [anon_sym_loop] = ACTIONS(368), + [anon_sym_match] = ACTIONS(370), + [anon_sym_return] = ACTIONS(516), + [anon_sym_static] = ACTIONS(518), + [anon_sym_union] = ACTIONS(480), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [anon_sym_yield] = ACTIONS(520), + [anon_sym_move] = ACTIONS(522), + [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(492), + [sym_super] = ACTIONS(494), + [sym_crate] = ACTIONS(494), + [sym_metavariable] = ACTIONS(496), + [sym__raw_string_literal_start] = ACTIONS(119), + [sym_float_literal] = ACTIONS(99), }, [STATE(191)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3056), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1724), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1591), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_let_condition] = STATE(3090), - [sym__let_chain] = STATE(3116), - [sym__condition] = STATE(2788), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), + [sym_bracketed_type] = STATE(3752), + [sym_generic_function] = STATE(1492), + [sym_generic_type_with_turbofish] = STATE(3085), + [sym__expression_except_range] = STATE(1409), + [sym__expression] = STATE(1760), + [sym_macro_invocation] = STATE(1529), + [sym_scoped_identifier] = STATE(1604), + [sym_scoped_type_identifier_in_expression_position] = STATE(3335), + [sym_range_expression] = STATE(1505), + [sym_unary_expression] = STATE(1492), + [sym_try_expression] = STATE(1492), + [sym_reference_expression] = STATE(1492), + [sym_binary_expression] = STATE(1492), + [sym_assignment_expression] = STATE(1492), + [sym_compound_assignment_expr] = STATE(1492), + [sym_type_cast_expression] = STATE(1492), + [sym_return_expression] = STATE(1492), + [sym_yield_expression] = STATE(1492), + [sym_call_expression] = STATE(1492), + [sym_array_expression] = STATE(1492), + [sym_parenthesized_expression] = STATE(1492), + [sym_tuple_expression] = STATE(1492), + [sym_unit_expression] = STATE(1492), + [sym_struct_expression] = STATE(1492), + [sym_if_expression] = STATE(1492), + [sym_let_condition] = STATE(3089), + [sym__let_chain] = STATE(3112), + [sym__condition] = STATE(2809), + [sym_match_expression] = STATE(1492), + [sym_while_expression] = STATE(1492), + [sym_loop_expression] = STATE(1492), + [sym_for_expression] = STATE(1492), + [sym_const_block] = STATE(1492), + [sym_closure_expression] = STATE(1492), + [sym_closure_parameters] = STATE(221), + [sym_label] = STATE(3689), + [sym_break_expression] = STATE(1492), + [sym_continue_expression] = STATE(1492), + [sym_index_expression] = STATE(1492), + [sym_await_expression] = STATE(1492), + [sym_field_expression] = STATE(1412), + [sym_unsafe_block] = STATE(1492), + [sym_async_block] = STATE(1492), + [sym_gen_block] = STATE(1492), + [sym_try_block] = STATE(1492), + [sym_block] = STATE(1492), + [sym__literal] = STATE(1492), + [sym_string_literal] = STATE(1530), + [sym_raw_string_literal] = STATE(1530), + [sym_boolean_literal] = STATE(1530), [sym_line_comment] = STATE(191), [sym_block_comment] = STATE(191), - [sym_identifier] = ACTIONS(467), + [sym_identifier] = ACTIONS(470), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(901), - [anon_sym_u8] = ACTIONS(469), - [anon_sym_i8] = ACTIONS(469), - [anon_sym_u16] = ACTIONS(469), - [anon_sym_i16] = ACTIONS(469), - [anon_sym_u32] = ACTIONS(469), - [anon_sym_i32] = ACTIONS(469), - [anon_sym_u64] = ACTIONS(469), - [anon_sym_i64] = ACTIONS(469), - [anon_sym_u128] = ACTIONS(469), - [anon_sym_i128] = ACTIONS(469), - [anon_sym_isize] = ACTIONS(469), - [anon_sym_usize] = ACTIONS(469), - [anon_sym_f32] = ACTIONS(469), - [anon_sym_f64] = ACTIONS(469), - [anon_sym_bool] = ACTIONS(469), - [anon_sym_str] = ACTIONS(469), - [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(901), - [anon_sym_BANG] = ACTIONS(901), - [anon_sym_AMP] = ACTIONS(903), + [anon_sym_LBRACE] = ACTIONS(348), + [anon_sym_STAR] = ACTIONS(978), + [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(978), + [anon_sym_BANG] = ACTIONS(978), + [anon_sym_AMP] = ACTIONS(980), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(905), - [anon_sym_COLON_COLON] = ACTIONS(473), + [anon_sym_DOT_DOT] = ACTIONS(982), + [anon_sym_COLON_COLON] = ACTIONS(476), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(477), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), - [anon_sym_if] = ACTIONS(361), - [anon_sym_let] = ACTIONS(907), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(477), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(489), - [sym_super] = ACTIONS(491), - [sym_crate] = ACTIONS(491), - [sym_metavariable] = ACTIONS(493), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [anon_sym_async] = ACTIONS(356), + [anon_sym_break] = ACTIONS(510), + [anon_sym_const] = ACTIONS(358), + [anon_sym_continue] = ACTIONS(512), + [anon_sym_default] = ACTIONS(480), + [anon_sym_for] = ACTIONS(362), + [anon_sym_gen] = ACTIONS(514), + [anon_sym_if] = ACTIONS(366), + [anon_sym_let] = ACTIONS(984), + [anon_sym_loop] = ACTIONS(368), + [anon_sym_match] = ACTIONS(370), + [anon_sym_return] = ACTIONS(516), + [anon_sym_static] = ACTIONS(518), + [anon_sym_union] = ACTIONS(480), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [anon_sym_yield] = ACTIONS(520), + [anon_sym_move] = ACTIONS(522), + [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(492), + [sym_super] = ACTIONS(494), + [sym_crate] = ACTIONS(494), + [sym_metavariable] = ACTIONS(496), + [sym__raw_string_literal_start] = ACTIONS(119), + [sym_float_literal] = ACTIONS(99), }, [STATE(192)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3056), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1724), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1591), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_let_condition] = STATE(3090), - [sym__let_chain] = STATE(3116), - [sym__condition] = STATE(2792), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), + [sym_bracketed_type] = STATE(3752), + [sym_generic_function] = STATE(1492), + [sym_generic_type_with_turbofish] = STATE(3085), + [sym__expression_except_range] = STATE(1409), + [sym__expression] = STATE(1760), + [sym_macro_invocation] = STATE(1529), + [sym_scoped_identifier] = STATE(1604), + [sym_scoped_type_identifier_in_expression_position] = STATE(3335), + [sym_range_expression] = STATE(1505), + [sym_unary_expression] = STATE(1492), + [sym_try_expression] = STATE(1492), + [sym_reference_expression] = STATE(1492), + [sym_binary_expression] = STATE(1492), + [sym_assignment_expression] = STATE(1492), + [sym_compound_assignment_expr] = STATE(1492), + [sym_type_cast_expression] = STATE(1492), + [sym_return_expression] = STATE(1492), + [sym_yield_expression] = STATE(1492), + [sym_call_expression] = STATE(1492), + [sym_array_expression] = STATE(1492), + [sym_parenthesized_expression] = STATE(1492), + [sym_tuple_expression] = STATE(1492), + [sym_unit_expression] = STATE(1492), + [sym_struct_expression] = STATE(1492), + [sym_if_expression] = STATE(1492), + [sym_let_condition] = STATE(3089), + [sym__let_chain] = STATE(3112), + [sym__condition] = STATE(2813), + [sym_match_expression] = STATE(1492), + [sym_while_expression] = STATE(1492), + [sym_loop_expression] = STATE(1492), + [sym_for_expression] = STATE(1492), + [sym_const_block] = STATE(1492), + [sym_closure_expression] = STATE(1492), + [sym_closure_parameters] = STATE(221), + [sym_label] = STATE(3689), + [sym_break_expression] = STATE(1492), + [sym_continue_expression] = STATE(1492), + [sym_index_expression] = STATE(1492), + [sym_await_expression] = STATE(1492), + [sym_field_expression] = STATE(1412), + [sym_unsafe_block] = STATE(1492), + [sym_async_block] = STATE(1492), + [sym_gen_block] = STATE(1492), + [sym_try_block] = STATE(1492), + [sym_block] = STATE(1492), + [sym__literal] = STATE(1492), + [sym_string_literal] = STATE(1530), + [sym_raw_string_literal] = STATE(1530), + [sym_boolean_literal] = STATE(1530), [sym_line_comment] = STATE(192), [sym_block_comment] = STATE(192), - [sym_identifier] = ACTIONS(467), + [sym_identifier] = ACTIONS(470), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(901), - [anon_sym_u8] = ACTIONS(469), - [anon_sym_i8] = ACTIONS(469), - [anon_sym_u16] = ACTIONS(469), - [anon_sym_i16] = ACTIONS(469), - [anon_sym_u32] = ACTIONS(469), - [anon_sym_i32] = ACTIONS(469), - [anon_sym_u64] = ACTIONS(469), - [anon_sym_i64] = ACTIONS(469), - [anon_sym_u128] = ACTIONS(469), - [anon_sym_i128] = ACTIONS(469), - [anon_sym_isize] = ACTIONS(469), - [anon_sym_usize] = ACTIONS(469), - [anon_sym_f32] = ACTIONS(469), - [anon_sym_f64] = ACTIONS(469), - [anon_sym_bool] = ACTIONS(469), - [anon_sym_str] = ACTIONS(469), - [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(901), - [anon_sym_BANG] = ACTIONS(901), - [anon_sym_AMP] = ACTIONS(903), + [anon_sym_LBRACE] = ACTIONS(348), + [anon_sym_STAR] = ACTIONS(978), + [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(978), + [anon_sym_BANG] = ACTIONS(978), + [anon_sym_AMP] = ACTIONS(980), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(905), - [anon_sym_COLON_COLON] = ACTIONS(473), + [anon_sym_DOT_DOT] = ACTIONS(982), + [anon_sym_COLON_COLON] = ACTIONS(476), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(477), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), - [anon_sym_if] = ACTIONS(361), - [anon_sym_let] = ACTIONS(907), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(477), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(489), - [sym_super] = ACTIONS(491), - [sym_crate] = ACTIONS(491), - [sym_metavariable] = ACTIONS(493), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [anon_sym_async] = ACTIONS(356), + [anon_sym_break] = ACTIONS(510), + [anon_sym_const] = ACTIONS(358), + [anon_sym_continue] = ACTIONS(512), + [anon_sym_default] = ACTIONS(480), + [anon_sym_for] = ACTIONS(362), + [anon_sym_gen] = ACTIONS(514), + [anon_sym_if] = ACTIONS(366), + [anon_sym_let] = ACTIONS(984), + [anon_sym_loop] = ACTIONS(368), + [anon_sym_match] = ACTIONS(370), + [anon_sym_return] = ACTIONS(516), + [anon_sym_static] = ACTIONS(518), + [anon_sym_union] = ACTIONS(480), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [anon_sym_yield] = ACTIONS(520), + [anon_sym_move] = ACTIONS(522), + [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(492), + [sym_super] = ACTIONS(494), + [sym_crate] = ACTIONS(494), + [sym_metavariable] = ACTIONS(496), + [sym__raw_string_literal_start] = ACTIONS(119), + [sym_float_literal] = ACTIONS(99), }, [STATE(193)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3056), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1724), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1591), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_let_condition] = STATE(3090), - [sym__let_chain] = STATE(3116), - [sym__condition] = STATE(2584), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), + [sym_bracketed_type] = STATE(3752), + [sym_generic_function] = STATE(1492), + [sym_generic_type_with_turbofish] = STATE(3085), + [sym__expression_except_range] = STATE(1409), + [sym__expression] = STATE(1760), + [sym_macro_invocation] = STATE(1529), + [sym_scoped_identifier] = STATE(1604), + [sym_scoped_type_identifier_in_expression_position] = STATE(3335), + [sym_range_expression] = STATE(1505), + [sym_unary_expression] = STATE(1492), + [sym_try_expression] = STATE(1492), + [sym_reference_expression] = STATE(1492), + [sym_binary_expression] = STATE(1492), + [sym_assignment_expression] = STATE(1492), + [sym_compound_assignment_expr] = STATE(1492), + [sym_type_cast_expression] = STATE(1492), + [sym_return_expression] = STATE(1492), + [sym_yield_expression] = STATE(1492), + [sym_call_expression] = STATE(1492), + [sym_array_expression] = STATE(1492), + [sym_parenthesized_expression] = STATE(1492), + [sym_tuple_expression] = STATE(1492), + [sym_unit_expression] = STATE(1492), + [sym_struct_expression] = STATE(1492), + [sym_if_expression] = STATE(1492), + [sym_let_condition] = STATE(3089), + [sym__let_chain] = STATE(3112), + [sym__condition] = STATE(2600), + [sym_match_expression] = STATE(1492), + [sym_while_expression] = STATE(1492), + [sym_loop_expression] = STATE(1492), + [sym_for_expression] = STATE(1492), + [sym_const_block] = STATE(1492), + [sym_closure_expression] = STATE(1492), + [sym_closure_parameters] = STATE(221), + [sym_label] = STATE(3689), + [sym_break_expression] = STATE(1492), + [sym_continue_expression] = STATE(1492), + [sym_index_expression] = STATE(1492), + [sym_await_expression] = STATE(1492), + [sym_field_expression] = STATE(1412), + [sym_unsafe_block] = STATE(1492), + [sym_async_block] = STATE(1492), + [sym_gen_block] = STATE(1492), + [sym_try_block] = STATE(1492), + [sym_block] = STATE(1492), + [sym__literal] = STATE(1492), + [sym_string_literal] = STATE(1530), + [sym_raw_string_literal] = STATE(1530), + [sym_boolean_literal] = STATE(1530), [sym_line_comment] = STATE(193), [sym_block_comment] = STATE(193), - [sym_identifier] = ACTIONS(467), + [sym_identifier] = ACTIONS(470), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(901), - [anon_sym_u8] = ACTIONS(469), - [anon_sym_i8] = ACTIONS(469), - [anon_sym_u16] = ACTIONS(469), - [anon_sym_i16] = ACTIONS(469), - [anon_sym_u32] = ACTIONS(469), - [anon_sym_i32] = ACTIONS(469), - [anon_sym_u64] = ACTIONS(469), - [anon_sym_i64] = ACTIONS(469), - [anon_sym_u128] = ACTIONS(469), - [anon_sym_i128] = ACTIONS(469), - [anon_sym_isize] = ACTIONS(469), - [anon_sym_usize] = ACTIONS(469), - [anon_sym_f32] = ACTIONS(469), - [anon_sym_f64] = ACTIONS(469), - [anon_sym_bool] = ACTIONS(469), - [anon_sym_str] = ACTIONS(469), - [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(901), - [anon_sym_BANG] = ACTIONS(901), - [anon_sym_AMP] = ACTIONS(903), + [anon_sym_LBRACE] = ACTIONS(348), + [anon_sym_STAR] = ACTIONS(978), + [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(978), + [anon_sym_BANG] = ACTIONS(978), + [anon_sym_AMP] = ACTIONS(980), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(905), - [anon_sym_COLON_COLON] = ACTIONS(473), + [anon_sym_DOT_DOT] = ACTIONS(982), + [anon_sym_COLON_COLON] = ACTIONS(476), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(477), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), - [anon_sym_if] = ACTIONS(361), - [anon_sym_let] = ACTIONS(907), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(477), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(489), - [sym_super] = ACTIONS(491), - [sym_crate] = ACTIONS(491), - [sym_metavariable] = ACTIONS(493), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [anon_sym_async] = ACTIONS(356), + [anon_sym_break] = ACTIONS(510), + [anon_sym_const] = ACTIONS(358), + [anon_sym_continue] = ACTIONS(512), + [anon_sym_default] = ACTIONS(480), + [anon_sym_for] = ACTIONS(362), + [anon_sym_gen] = ACTIONS(514), + [anon_sym_if] = ACTIONS(366), + [anon_sym_let] = ACTIONS(984), + [anon_sym_loop] = ACTIONS(368), + [anon_sym_match] = ACTIONS(370), + [anon_sym_return] = ACTIONS(516), + [anon_sym_static] = ACTIONS(518), + [anon_sym_union] = ACTIONS(480), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [anon_sym_yield] = ACTIONS(520), + [anon_sym_move] = ACTIONS(522), + [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(492), + [sym_super] = ACTIONS(494), + [sym_crate] = ACTIONS(494), + [sym_metavariable] = ACTIONS(496), + [sym__raw_string_literal_start] = ACTIONS(119), + [sym_float_literal] = ACTIONS(99), }, [STATE(194)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3056), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1724), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1591), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_let_condition] = STATE(3090), - [sym__let_chain] = STATE(3116), - [sym__condition] = STATE(2608), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), + [sym_bracketed_type] = STATE(3752), + [sym_generic_function] = STATE(1492), + [sym_generic_type_with_turbofish] = STATE(3085), + [sym__expression_except_range] = STATE(1409), + [sym__expression] = STATE(1760), + [sym_macro_invocation] = STATE(1529), + [sym_scoped_identifier] = STATE(1604), + [sym_scoped_type_identifier_in_expression_position] = STATE(3335), + [sym_range_expression] = STATE(1505), + [sym_unary_expression] = STATE(1492), + [sym_try_expression] = STATE(1492), + [sym_reference_expression] = STATE(1492), + [sym_binary_expression] = STATE(1492), + [sym_assignment_expression] = STATE(1492), + [sym_compound_assignment_expr] = STATE(1492), + [sym_type_cast_expression] = STATE(1492), + [sym_return_expression] = STATE(1492), + [sym_yield_expression] = STATE(1492), + [sym_call_expression] = STATE(1492), + [sym_array_expression] = STATE(1492), + [sym_parenthesized_expression] = STATE(1492), + [sym_tuple_expression] = STATE(1492), + [sym_unit_expression] = STATE(1492), + [sym_struct_expression] = STATE(1492), + [sym_if_expression] = STATE(1492), + [sym_let_condition] = STATE(3089), + [sym__let_chain] = STATE(3112), + [sym__condition] = STATE(2625), + [sym_match_expression] = STATE(1492), + [sym_while_expression] = STATE(1492), + [sym_loop_expression] = STATE(1492), + [sym_for_expression] = STATE(1492), + [sym_const_block] = STATE(1492), + [sym_closure_expression] = STATE(1492), + [sym_closure_parameters] = STATE(221), + [sym_label] = STATE(3689), + [sym_break_expression] = STATE(1492), + [sym_continue_expression] = STATE(1492), + [sym_index_expression] = STATE(1492), + [sym_await_expression] = STATE(1492), + [sym_field_expression] = STATE(1412), + [sym_unsafe_block] = STATE(1492), + [sym_async_block] = STATE(1492), + [sym_gen_block] = STATE(1492), + [sym_try_block] = STATE(1492), + [sym_block] = STATE(1492), + [sym__literal] = STATE(1492), + [sym_string_literal] = STATE(1530), + [sym_raw_string_literal] = STATE(1530), + [sym_boolean_literal] = STATE(1530), [sym_line_comment] = STATE(194), [sym_block_comment] = STATE(194), - [sym_identifier] = ACTIONS(467), + [sym_identifier] = ACTIONS(470), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(901), - [anon_sym_u8] = ACTIONS(469), - [anon_sym_i8] = ACTIONS(469), - [anon_sym_u16] = ACTIONS(469), - [anon_sym_i16] = ACTIONS(469), - [anon_sym_u32] = ACTIONS(469), - [anon_sym_i32] = ACTIONS(469), - [anon_sym_u64] = ACTIONS(469), - [anon_sym_i64] = ACTIONS(469), - [anon_sym_u128] = ACTIONS(469), - [anon_sym_i128] = ACTIONS(469), - [anon_sym_isize] = ACTIONS(469), - [anon_sym_usize] = ACTIONS(469), - [anon_sym_f32] = ACTIONS(469), - [anon_sym_f64] = ACTIONS(469), - [anon_sym_bool] = ACTIONS(469), - [anon_sym_str] = ACTIONS(469), - [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(901), - [anon_sym_BANG] = ACTIONS(901), - [anon_sym_AMP] = ACTIONS(903), + [anon_sym_LBRACE] = ACTIONS(348), + [anon_sym_STAR] = ACTIONS(978), + [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(978), + [anon_sym_BANG] = ACTIONS(978), + [anon_sym_AMP] = ACTIONS(980), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(905), - [anon_sym_COLON_COLON] = ACTIONS(473), + [anon_sym_DOT_DOT] = ACTIONS(982), + [anon_sym_COLON_COLON] = ACTIONS(476), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(477), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), - [anon_sym_if] = ACTIONS(361), - [anon_sym_let] = ACTIONS(907), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(477), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(489), - [sym_super] = ACTIONS(491), - [sym_crate] = ACTIONS(491), - [sym_metavariable] = ACTIONS(493), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [anon_sym_async] = ACTIONS(356), + [anon_sym_break] = ACTIONS(510), + [anon_sym_const] = ACTIONS(358), + [anon_sym_continue] = ACTIONS(512), + [anon_sym_default] = ACTIONS(480), + [anon_sym_for] = ACTIONS(362), + [anon_sym_gen] = ACTIONS(514), + [anon_sym_if] = ACTIONS(366), + [anon_sym_let] = ACTIONS(984), + [anon_sym_loop] = ACTIONS(368), + [anon_sym_match] = ACTIONS(370), + [anon_sym_return] = ACTIONS(516), + [anon_sym_static] = ACTIONS(518), + [anon_sym_union] = ACTIONS(480), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [anon_sym_yield] = ACTIONS(520), + [anon_sym_move] = ACTIONS(522), + [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(492), + [sym_super] = ACTIONS(494), + [sym_crate] = ACTIONS(494), + [sym_metavariable] = ACTIONS(496), + [sym__raw_string_literal_start] = ACTIONS(119), + [sym_float_literal] = ACTIONS(99), }, [STATE(195)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3056), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1724), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1591), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_let_condition] = STATE(3090), - [sym__let_chain] = STATE(3116), - [sym__condition] = STATE(2610), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), + [sym_bracketed_type] = STATE(3752), + [sym_generic_function] = STATE(1492), + [sym_generic_type_with_turbofish] = STATE(3085), + [sym__expression_except_range] = STATE(1409), + [sym__expression] = STATE(1760), + [sym_macro_invocation] = STATE(1529), + [sym_scoped_identifier] = STATE(1604), + [sym_scoped_type_identifier_in_expression_position] = STATE(3335), + [sym_range_expression] = STATE(1505), + [sym_unary_expression] = STATE(1492), + [sym_try_expression] = STATE(1492), + [sym_reference_expression] = STATE(1492), + [sym_binary_expression] = STATE(1492), + [sym_assignment_expression] = STATE(1492), + [sym_compound_assignment_expr] = STATE(1492), + [sym_type_cast_expression] = STATE(1492), + [sym_return_expression] = STATE(1492), + [sym_yield_expression] = STATE(1492), + [sym_call_expression] = STATE(1492), + [sym_array_expression] = STATE(1492), + [sym_parenthesized_expression] = STATE(1492), + [sym_tuple_expression] = STATE(1492), + [sym_unit_expression] = STATE(1492), + [sym_struct_expression] = STATE(1492), + [sym_if_expression] = STATE(1492), + [sym_let_condition] = STATE(3089), + [sym__let_chain] = STATE(3112), + [sym__condition] = STATE(2627), + [sym_match_expression] = STATE(1492), + [sym_while_expression] = STATE(1492), + [sym_loop_expression] = STATE(1492), + [sym_for_expression] = STATE(1492), + [sym_const_block] = STATE(1492), + [sym_closure_expression] = STATE(1492), + [sym_closure_parameters] = STATE(221), + [sym_label] = STATE(3689), + [sym_break_expression] = STATE(1492), + [sym_continue_expression] = STATE(1492), + [sym_index_expression] = STATE(1492), + [sym_await_expression] = STATE(1492), + [sym_field_expression] = STATE(1412), + [sym_unsafe_block] = STATE(1492), + [sym_async_block] = STATE(1492), + [sym_gen_block] = STATE(1492), + [sym_try_block] = STATE(1492), + [sym_block] = STATE(1492), + [sym__literal] = STATE(1492), + [sym_string_literal] = STATE(1530), + [sym_raw_string_literal] = STATE(1530), + [sym_boolean_literal] = STATE(1530), [sym_line_comment] = STATE(195), [sym_block_comment] = STATE(195), - [sym_identifier] = ACTIONS(467), + [sym_identifier] = ACTIONS(470), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(901), - [anon_sym_u8] = ACTIONS(469), - [anon_sym_i8] = ACTIONS(469), - [anon_sym_u16] = ACTIONS(469), - [anon_sym_i16] = ACTIONS(469), - [anon_sym_u32] = ACTIONS(469), - [anon_sym_i32] = ACTIONS(469), - [anon_sym_u64] = ACTIONS(469), - [anon_sym_i64] = ACTIONS(469), - [anon_sym_u128] = ACTIONS(469), - [anon_sym_i128] = ACTIONS(469), - [anon_sym_isize] = ACTIONS(469), - [anon_sym_usize] = ACTIONS(469), - [anon_sym_f32] = ACTIONS(469), - [anon_sym_f64] = ACTIONS(469), - [anon_sym_bool] = ACTIONS(469), - [anon_sym_str] = ACTIONS(469), - [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(901), - [anon_sym_BANG] = ACTIONS(901), - [anon_sym_AMP] = ACTIONS(903), + [anon_sym_LBRACE] = ACTIONS(348), + [anon_sym_STAR] = ACTIONS(978), + [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(978), + [anon_sym_BANG] = ACTIONS(978), + [anon_sym_AMP] = ACTIONS(980), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(905), - [anon_sym_COLON_COLON] = ACTIONS(473), + [anon_sym_DOT_DOT] = ACTIONS(982), + [anon_sym_COLON_COLON] = ACTIONS(476), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(477), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), - [anon_sym_if] = ACTIONS(361), - [anon_sym_let] = ACTIONS(907), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(477), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(489), - [sym_super] = ACTIONS(491), - [sym_crate] = ACTIONS(491), - [sym_metavariable] = ACTIONS(493), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [anon_sym_async] = ACTIONS(356), + [anon_sym_break] = ACTIONS(510), + [anon_sym_const] = ACTIONS(358), + [anon_sym_continue] = ACTIONS(512), + [anon_sym_default] = ACTIONS(480), + [anon_sym_for] = ACTIONS(362), + [anon_sym_gen] = ACTIONS(514), + [anon_sym_if] = ACTIONS(366), + [anon_sym_let] = ACTIONS(984), + [anon_sym_loop] = ACTIONS(368), + [anon_sym_match] = ACTIONS(370), + [anon_sym_return] = ACTIONS(516), + [anon_sym_static] = ACTIONS(518), + [anon_sym_union] = ACTIONS(480), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [anon_sym_yield] = ACTIONS(520), + [anon_sym_move] = ACTIONS(522), + [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(492), + [sym_super] = ACTIONS(494), + [sym_crate] = ACTIONS(494), + [sym_metavariable] = ACTIONS(496), + [sym__raw_string_literal_start] = ACTIONS(119), + [sym_float_literal] = ACTIONS(99), }, [STATE(196)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3056), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1724), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1591), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_let_condition] = STATE(3090), - [sym__let_chain] = STATE(3116), - [sym__condition] = STATE(2627), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), + [sym_bracketed_type] = STATE(3752), + [sym_generic_function] = STATE(1492), + [sym_generic_type_with_turbofish] = STATE(3085), + [sym__expression_except_range] = STATE(1409), + [sym__expression] = STATE(1760), + [sym_macro_invocation] = STATE(1529), + [sym_scoped_identifier] = STATE(1604), + [sym_scoped_type_identifier_in_expression_position] = STATE(3335), + [sym_range_expression] = STATE(1505), + [sym_unary_expression] = STATE(1492), + [sym_try_expression] = STATE(1492), + [sym_reference_expression] = STATE(1492), + [sym_binary_expression] = STATE(1492), + [sym_assignment_expression] = STATE(1492), + [sym_compound_assignment_expr] = STATE(1492), + [sym_type_cast_expression] = STATE(1492), + [sym_return_expression] = STATE(1492), + [sym_yield_expression] = STATE(1492), + [sym_call_expression] = STATE(1492), + [sym_array_expression] = STATE(1492), + [sym_parenthesized_expression] = STATE(1492), + [sym_tuple_expression] = STATE(1492), + [sym_unit_expression] = STATE(1492), + [sym_struct_expression] = STATE(1492), + [sym_if_expression] = STATE(1492), + [sym_let_condition] = STATE(3089), + [sym__let_chain] = STATE(3112), + [sym__condition] = STATE(2648), + [sym_match_expression] = STATE(1492), + [sym_while_expression] = STATE(1492), + [sym_loop_expression] = STATE(1492), + [sym_for_expression] = STATE(1492), + [sym_const_block] = STATE(1492), + [sym_closure_expression] = STATE(1492), + [sym_closure_parameters] = STATE(221), + [sym_label] = STATE(3689), + [sym_break_expression] = STATE(1492), + [sym_continue_expression] = STATE(1492), + [sym_index_expression] = STATE(1492), + [sym_await_expression] = STATE(1492), + [sym_field_expression] = STATE(1412), + [sym_unsafe_block] = STATE(1492), + [sym_async_block] = STATE(1492), + [sym_gen_block] = STATE(1492), + [sym_try_block] = STATE(1492), + [sym_block] = STATE(1492), + [sym__literal] = STATE(1492), + [sym_string_literal] = STATE(1530), + [sym_raw_string_literal] = STATE(1530), + [sym_boolean_literal] = STATE(1530), [sym_line_comment] = STATE(196), [sym_block_comment] = STATE(196), - [sym_identifier] = ACTIONS(467), + [sym_identifier] = ACTIONS(470), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(901), - [anon_sym_u8] = ACTIONS(469), - [anon_sym_i8] = ACTIONS(469), - [anon_sym_u16] = ACTIONS(469), - [anon_sym_i16] = ACTIONS(469), - [anon_sym_u32] = ACTIONS(469), - [anon_sym_i32] = ACTIONS(469), - [anon_sym_u64] = ACTIONS(469), - [anon_sym_i64] = ACTIONS(469), - [anon_sym_u128] = ACTIONS(469), - [anon_sym_i128] = ACTIONS(469), - [anon_sym_isize] = ACTIONS(469), - [anon_sym_usize] = ACTIONS(469), - [anon_sym_f32] = ACTIONS(469), - [anon_sym_f64] = ACTIONS(469), - [anon_sym_bool] = ACTIONS(469), - [anon_sym_str] = ACTIONS(469), - [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(901), - [anon_sym_BANG] = ACTIONS(901), - [anon_sym_AMP] = ACTIONS(903), + [anon_sym_LBRACE] = ACTIONS(348), + [anon_sym_STAR] = ACTIONS(978), + [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(978), + [anon_sym_BANG] = ACTIONS(978), + [anon_sym_AMP] = ACTIONS(980), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(905), - [anon_sym_COLON_COLON] = ACTIONS(473), + [anon_sym_DOT_DOT] = ACTIONS(982), + [anon_sym_COLON_COLON] = ACTIONS(476), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(477), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), - [anon_sym_if] = ACTIONS(361), - [anon_sym_let] = ACTIONS(907), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(477), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(489), - [sym_super] = ACTIONS(491), - [sym_crate] = ACTIONS(491), - [sym_metavariable] = ACTIONS(493), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [anon_sym_async] = ACTIONS(356), + [anon_sym_break] = ACTIONS(510), + [anon_sym_const] = ACTIONS(358), + [anon_sym_continue] = ACTIONS(512), + [anon_sym_default] = ACTIONS(480), + [anon_sym_for] = ACTIONS(362), + [anon_sym_gen] = ACTIONS(514), + [anon_sym_if] = ACTIONS(366), + [anon_sym_let] = ACTIONS(984), + [anon_sym_loop] = ACTIONS(368), + [anon_sym_match] = ACTIONS(370), + [anon_sym_return] = ACTIONS(516), + [anon_sym_static] = ACTIONS(518), + [anon_sym_union] = ACTIONS(480), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [anon_sym_yield] = ACTIONS(520), + [anon_sym_move] = ACTIONS(522), + [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(492), + [sym_super] = ACTIONS(494), + [sym_crate] = ACTIONS(494), + [sym_metavariable] = ACTIONS(496), + [sym__raw_string_literal_start] = ACTIONS(119), + [sym_float_literal] = ACTIONS(99), }, [STATE(197)] = { [sym_line_comment] = STATE(197), [sym_block_comment] = STATE(197), - [sym_identifier] = ACTIONS(879), - [anon_sym_SEMI] = ACTIONS(881), - [anon_sym_LPAREN] = ACTIONS(881), - [anon_sym_RPAREN] = ACTIONS(881), - [anon_sym_LBRACK] = ACTIONS(881), - [anon_sym_RBRACK] = ACTIONS(881), - [anon_sym_LBRACE] = ACTIONS(881), - [anon_sym_RBRACE] = ACTIONS(881), - [anon_sym_EQ_GT] = ACTIONS(881), - [anon_sym_COLON] = ACTIONS(1035), - [anon_sym_DOLLAR] = ACTIONS(879), - [anon_sym_PLUS] = ACTIONS(879), - [anon_sym_STAR] = ACTIONS(879), - [anon_sym_QMARK] = ACTIONS(881), - [anon_sym_u8] = ACTIONS(879), - [anon_sym_i8] = ACTIONS(879), - [anon_sym_u16] = ACTIONS(879), - [anon_sym_i16] = ACTIONS(879), - [anon_sym_u32] = ACTIONS(879), - [anon_sym_i32] = ACTIONS(879), - [anon_sym_u64] = ACTIONS(879), - [anon_sym_i64] = ACTIONS(879), - [anon_sym_u128] = ACTIONS(879), - [anon_sym_i128] = ACTIONS(879), - [anon_sym_isize] = ACTIONS(879), - [anon_sym_usize] = ACTIONS(879), - [anon_sym_f32] = ACTIONS(879), - [anon_sym_f64] = ACTIONS(879), - [anon_sym_bool] = ACTIONS(879), - [anon_sym_str] = ACTIONS(879), - [anon_sym_char] = ACTIONS(879), - [anon_sym_DASH] = ACTIONS(879), - [anon_sym_SLASH] = ACTIONS(879), - [anon_sym_PERCENT] = ACTIONS(879), - [anon_sym_CARET] = ACTIONS(879), - [anon_sym_BANG] = ACTIONS(879), - [anon_sym_AMP] = ACTIONS(879), - [anon_sym_PIPE] = ACTIONS(879), - [anon_sym_AMP_AMP] = ACTIONS(881), - [anon_sym_PIPE_PIPE] = ACTIONS(881), - [anon_sym_LT_LT] = ACTIONS(879), - [anon_sym_GT_GT] = ACTIONS(879), - [anon_sym_PLUS_EQ] = ACTIONS(881), - [anon_sym_DASH_EQ] = ACTIONS(881), - [anon_sym_STAR_EQ] = ACTIONS(881), - [anon_sym_SLASH_EQ] = ACTIONS(881), - [anon_sym_PERCENT_EQ] = ACTIONS(881), - [anon_sym_CARET_EQ] = ACTIONS(881), - [anon_sym_AMP_EQ] = ACTIONS(881), - [anon_sym_PIPE_EQ] = ACTIONS(881), - [anon_sym_LT_LT_EQ] = ACTIONS(881), - [anon_sym_GT_GT_EQ] = ACTIONS(881), - [anon_sym_EQ] = ACTIONS(879), - [anon_sym_EQ_EQ] = ACTIONS(881), - [anon_sym_BANG_EQ] = ACTIONS(881), - [anon_sym_GT] = ACTIONS(879), - [anon_sym_LT] = ACTIONS(879), - [anon_sym_GT_EQ] = ACTIONS(881), - [anon_sym_LT_EQ] = ACTIONS(881), - [anon_sym_AT] = ACTIONS(881), - [anon_sym__] = ACTIONS(879), - [anon_sym_DOT] = ACTIONS(879), - [anon_sym_DOT_DOT] = ACTIONS(879), - [anon_sym_DOT_DOT_DOT] = ACTIONS(881), - [anon_sym_DOT_DOT_EQ] = ACTIONS(881), - [anon_sym_COMMA] = ACTIONS(881), - [anon_sym_COLON_COLON] = ACTIONS(881), - [anon_sym_DASH_GT] = ACTIONS(881), - [anon_sym_POUND] = ACTIONS(881), - [anon_sym_SQUOTE] = ACTIONS(879), - [anon_sym_as] = ACTIONS(879), - [anon_sym_async] = ACTIONS(879), - [anon_sym_await] = ACTIONS(879), - [anon_sym_break] = ACTIONS(879), - [anon_sym_const] = ACTIONS(879), - [anon_sym_continue] = ACTIONS(879), - [anon_sym_default] = ACTIONS(879), - [anon_sym_enum] = ACTIONS(879), - [anon_sym_fn] = ACTIONS(879), - [anon_sym_for] = ACTIONS(879), - [anon_sym_gen] = ACTIONS(879), - [anon_sym_if] = ACTIONS(879), - [anon_sym_impl] = ACTIONS(879), - [anon_sym_let] = ACTIONS(879), - [anon_sym_loop] = ACTIONS(879), - [anon_sym_match] = ACTIONS(879), - [anon_sym_mod] = ACTIONS(879), - [anon_sym_pub] = ACTIONS(879), - [anon_sym_return] = ACTIONS(879), - [anon_sym_static] = ACTIONS(879), - [anon_sym_struct] = ACTIONS(879), - [anon_sym_trait] = ACTIONS(879), - [anon_sym_type] = ACTIONS(879), - [anon_sym_union] = ACTIONS(879), - [anon_sym_unsafe] = ACTIONS(879), - [anon_sym_use] = ACTIONS(879), - [anon_sym_where] = ACTIONS(879), - [anon_sym_while] = ACTIONS(879), - [sym_mutable_specifier] = ACTIONS(879), - [sym_integer_literal] = ACTIONS(881), - [aux_sym_string_literal_token1] = ACTIONS(881), - [sym_char_literal] = ACTIONS(881), - [anon_sym_true] = ACTIONS(879), - [anon_sym_false] = ACTIONS(879), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(879), - [sym_super] = ACTIONS(879), - [sym_crate] = ACTIONS(879), - [sym_metavariable] = ACTIONS(881), - [sym__raw_string_literal_start] = ACTIONS(881), - [sym_float_literal] = ACTIONS(881), + [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), + [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), }, [STATE(198)] = { [sym_line_comment] = STATE(198), [sym_block_comment] = STATE(198), - [sym_identifier] = ACTIONS(1003), - [anon_sym_SEMI] = ACTIONS(1005), - [anon_sym_LPAREN] = ACTIONS(1005), - [anon_sym_RPAREN] = ACTIONS(1005), - [anon_sym_LBRACK] = ACTIONS(1005), - [anon_sym_RBRACK] = ACTIONS(1005), - [anon_sym_LBRACE] = ACTIONS(1005), - [anon_sym_RBRACE] = ACTIONS(1005), - [anon_sym_EQ_GT] = ACTIONS(1005), - [anon_sym_COLON] = ACTIONS(1003), - [anon_sym_DOLLAR] = ACTIONS(1005), - [anon_sym_PLUS] = ACTIONS(1003), - [anon_sym_STAR] = ACTIONS(1003), - [anon_sym_QMARK] = ACTIONS(1005), - [anon_sym_u8] = ACTIONS(1003), - [anon_sym_i8] = ACTIONS(1003), - [anon_sym_u16] = ACTIONS(1003), - [anon_sym_i16] = ACTIONS(1003), - [anon_sym_u32] = ACTIONS(1003), - [anon_sym_i32] = ACTIONS(1003), - [anon_sym_u64] = ACTIONS(1003), - [anon_sym_i64] = ACTIONS(1003), - [anon_sym_u128] = ACTIONS(1003), - [anon_sym_i128] = ACTIONS(1003), - [anon_sym_isize] = ACTIONS(1003), - [anon_sym_usize] = ACTIONS(1003), - [anon_sym_f32] = ACTIONS(1003), - [anon_sym_f64] = ACTIONS(1003), - [anon_sym_bool] = ACTIONS(1003), - [anon_sym_str] = ACTIONS(1003), - [anon_sym_char] = ACTIONS(1003), - [anon_sym_DASH] = ACTIONS(1003), - [anon_sym_SLASH] = ACTIONS(1003), - [anon_sym_PERCENT] = ACTIONS(1003), - [anon_sym_CARET] = ACTIONS(1003), - [anon_sym_BANG] = ACTIONS(1003), - [anon_sym_AMP] = ACTIONS(1003), - [anon_sym_PIPE] = ACTIONS(1003), - [anon_sym_AMP_AMP] = ACTIONS(1005), - [anon_sym_PIPE_PIPE] = ACTIONS(1005), - [anon_sym_LT_LT] = ACTIONS(1003), - [anon_sym_GT_GT] = ACTIONS(1003), - [anon_sym_PLUS_EQ] = ACTIONS(1005), - [anon_sym_DASH_EQ] = ACTIONS(1005), - [anon_sym_STAR_EQ] = ACTIONS(1005), - [anon_sym_SLASH_EQ] = ACTIONS(1005), - [anon_sym_PERCENT_EQ] = ACTIONS(1005), - [anon_sym_CARET_EQ] = ACTIONS(1005), - [anon_sym_AMP_EQ] = ACTIONS(1005), - [anon_sym_PIPE_EQ] = ACTIONS(1005), - [anon_sym_LT_LT_EQ] = ACTIONS(1005), - [anon_sym_GT_GT_EQ] = ACTIONS(1005), - [anon_sym_EQ] = ACTIONS(1003), - [anon_sym_EQ_EQ] = ACTIONS(1005), - [anon_sym_BANG_EQ] = ACTIONS(1005), - [anon_sym_GT] = ACTIONS(1003), - [anon_sym_LT] = ACTIONS(1003), - [anon_sym_GT_EQ] = ACTIONS(1005), - [anon_sym_LT_EQ] = ACTIONS(1005), - [anon_sym_AT] = ACTIONS(1005), - [anon_sym__] = ACTIONS(1003), - [anon_sym_DOT] = ACTIONS(1003), - [anon_sym_DOT_DOT] = ACTIONS(1003), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1005), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1005), - [anon_sym_COMMA] = ACTIONS(1005), - [anon_sym_COLON_COLON] = ACTIONS(1005), - [anon_sym_DASH_GT] = ACTIONS(1005), - [anon_sym_POUND] = ACTIONS(1005), - [anon_sym_SQUOTE] = ACTIONS(1003), - [anon_sym_as] = ACTIONS(1003), - [anon_sym_async] = ACTIONS(1003), - [anon_sym_await] = ACTIONS(1003), - [anon_sym_break] = ACTIONS(1003), - [anon_sym_const] = ACTIONS(1003), - [anon_sym_continue] = ACTIONS(1003), - [anon_sym_default] = ACTIONS(1003), - [anon_sym_enum] = ACTIONS(1003), - [anon_sym_fn] = ACTIONS(1003), - [anon_sym_for] = ACTIONS(1003), - [anon_sym_gen] = ACTIONS(1003), - [anon_sym_if] = ACTIONS(1003), - [anon_sym_impl] = ACTIONS(1003), - [anon_sym_let] = ACTIONS(1003), - [anon_sym_loop] = ACTIONS(1003), - [anon_sym_match] = ACTIONS(1003), - [anon_sym_mod] = ACTIONS(1003), - [anon_sym_pub] = ACTIONS(1003), - [anon_sym_return] = ACTIONS(1003), - [anon_sym_static] = ACTIONS(1003), - [anon_sym_struct] = ACTIONS(1003), - [anon_sym_trait] = ACTIONS(1003), - [anon_sym_type] = ACTIONS(1003), - [anon_sym_union] = ACTIONS(1003), - [anon_sym_unsafe] = ACTIONS(1003), - [anon_sym_use] = ACTIONS(1003), - [anon_sym_where] = ACTIONS(1003), - [anon_sym_while] = ACTIONS(1003), - [sym_mutable_specifier] = ACTIONS(1003), - [sym_integer_literal] = ACTIONS(1005), - [aux_sym_string_literal_token1] = ACTIONS(1005), - [sym_char_literal] = ACTIONS(1005), - [anon_sym_true] = ACTIONS(1003), - [anon_sym_false] = ACTIONS(1003), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1003), - [sym_super] = ACTIONS(1003), - [sym_crate] = ACTIONS(1003), - [sym__raw_string_literal_start] = ACTIONS(1005), - [sym_float_literal] = ACTIONS(1005), + [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(199)] = { [sym_line_comment] = STATE(199), [sym_block_comment] = STATE(199), - [sym_identifier] = ACTIONS(1009), - [anon_sym_SEMI] = ACTIONS(1011), - [anon_sym_LPAREN] = ACTIONS(1011), - [anon_sym_RPAREN] = ACTIONS(1011), - [anon_sym_LBRACK] = ACTIONS(1011), - [anon_sym_RBRACK] = ACTIONS(1011), - [anon_sym_LBRACE] = ACTIONS(1011), - [anon_sym_RBRACE] = ACTIONS(1011), - [anon_sym_EQ_GT] = ACTIONS(1011), - [anon_sym_COLON] = ACTIONS(1009), - [anon_sym_DOLLAR] = ACTIONS(1011), - [anon_sym_PLUS] = ACTIONS(1009), - [anon_sym_STAR] = ACTIONS(1009), - [anon_sym_QMARK] = ACTIONS(1011), - [anon_sym_u8] = ACTIONS(1009), - [anon_sym_i8] = ACTIONS(1009), - [anon_sym_u16] = ACTIONS(1009), - [anon_sym_i16] = ACTIONS(1009), - [anon_sym_u32] = ACTIONS(1009), - [anon_sym_i32] = ACTIONS(1009), - [anon_sym_u64] = ACTIONS(1009), - [anon_sym_i64] = ACTIONS(1009), - [anon_sym_u128] = ACTIONS(1009), - [anon_sym_i128] = ACTIONS(1009), - [anon_sym_isize] = ACTIONS(1009), - [anon_sym_usize] = ACTIONS(1009), - [anon_sym_f32] = ACTIONS(1009), - [anon_sym_f64] = ACTIONS(1009), - [anon_sym_bool] = ACTIONS(1009), - [anon_sym_str] = ACTIONS(1009), - [anon_sym_char] = ACTIONS(1009), - [anon_sym_DASH] = ACTIONS(1009), - [anon_sym_SLASH] = ACTIONS(1009), - [anon_sym_PERCENT] = ACTIONS(1009), - [anon_sym_CARET] = ACTIONS(1009), - [anon_sym_BANG] = ACTIONS(1009), - [anon_sym_AMP] = ACTIONS(1009), - [anon_sym_PIPE] = ACTIONS(1009), - [anon_sym_AMP_AMP] = ACTIONS(1011), - [anon_sym_PIPE_PIPE] = ACTIONS(1011), - [anon_sym_LT_LT] = ACTIONS(1009), - [anon_sym_GT_GT] = ACTIONS(1009), - [anon_sym_PLUS_EQ] = ACTIONS(1011), - [anon_sym_DASH_EQ] = ACTIONS(1011), - [anon_sym_STAR_EQ] = ACTIONS(1011), - [anon_sym_SLASH_EQ] = ACTIONS(1011), - [anon_sym_PERCENT_EQ] = ACTIONS(1011), - [anon_sym_CARET_EQ] = ACTIONS(1011), - [anon_sym_AMP_EQ] = ACTIONS(1011), - [anon_sym_PIPE_EQ] = ACTIONS(1011), - [anon_sym_LT_LT_EQ] = ACTIONS(1011), - [anon_sym_GT_GT_EQ] = ACTIONS(1011), - [anon_sym_EQ] = ACTIONS(1009), - [anon_sym_EQ_EQ] = ACTIONS(1011), - [anon_sym_BANG_EQ] = ACTIONS(1011), - [anon_sym_GT] = ACTIONS(1009), - [anon_sym_LT] = ACTIONS(1009), - [anon_sym_GT_EQ] = ACTIONS(1011), - [anon_sym_LT_EQ] = ACTIONS(1011), - [anon_sym_AT] = ACTIONS(1011), - [anon_sym__] = ACTIONS(1009), - [anon_sym_DOT] = ACTIONS(1009), - [anon_sym_DOT_DOT] = ACTIONS(1009), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1011), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1011), - [anon_sym_COMMA] = ACTIONS(1011), - [anon_sym_COLON_COLON] = ACTIONS(1011), - [anon_sym_DASH_GT] = ACTIONS(1011), - [anon_sym_POUND] = ACTIONS(1011), - [anon_sym_SQUOTE] = ACTIONS(1009), - [anon_sym_as] = ACTIONS(1009), - [anon_sym_async] = ACTIONS(1009), - [anon_sym_await] = ACTIONS(1009), - [anon_sym_break] = ACTIONS(1009), - [anon_sym_const] = ACTIONS(1009), - [anon_sym_continue] = ACTIONS(1009), - [anon_sym_default] = ACTIONS(1009), - [anon_sym_enum] = ACTIONS(1009), - [anon_sym_fn] = ACTIONS(1009), - [anon_sym_for] = ACTIONS(1009), - [anon_sym_gen] = ACTIONS(1009), - [anon_sym_if] = ACTIONS(1009), - [anon_sym_impl] = ACTIONS(1009), - [anon_sym_let] = ACTIONS(1009), - [anon_sym_loop] = ACTIONS(1009), - [anon_sym_match] = ACTIONS(1009), - [anon_sym_mod] = ACTIONS(1009), - [anon_sym_pub] = ACTIONS(1009), - [anon_sym_return] = ACTIONS(1009), - [anon_sym_static] = ACTIONS(1009), - [anon_sym_struct] = ACTIONS(1009), - [anon_sym_trait] = ACTIONS(1009), - [anon_sym_type] = ACTIONS(1009), - [anon_sym_union] = ACTIONS(1009), - [anon_sym_unsafe] = ACTIONS(1009), - [anon_sym_use] = ACTIONS(1009), - [anon_sym_where] = ACTIONS(1009), - [anon_sym_while] = ACTIONS(1009), - [sym_mutable_specifier] = ACTIONS(1009), - [sym_integer_literal] = ACTIONS(1011), - [aux_sym_string_literal_token1] = ACTIONS(1011), - [sym_char_literal] = ACTIONS(1011), - [anon_sym_true] = ACTIONS(1009), - [anon_sym_false] = ACTIONS(1009), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1009), - [sym_super] = ACTIONS(1009), - [sym_crate] = ACTIONS(1009), - [sym__raw_string_literal_start] = ACTIONS(1011), - [sym_float_literal] = ACTIONS(1011), + [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_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(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [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(200)] = { + [sym_attribute_item] = STATE(1038), + [sym_bracketed_type] = STATE(3752), + [sym_generic_function] = STATE(1492), + [sym_generic_type_with_turbofish] = STATE(3039), + [sym__expression_except_range] = STATE(1409), + [sym__expression] = STATE(1655), + [sym_macro_invocation] = STATE(1529), + [sym_scoped_identifier] = STATE(1540), + [sym_scoped_type_identifier_in_expression_position] = STATE(3335), + [sym_range_expression] = STATE(1505), + [sym_unary_expression] = STATE(1492), + [sym_try_expression] = STATE(1492), + [sym_reference_expression] = STATE(1492), + [sym_binary_expression] = STATE(1492), + [sym_assignment_expression] = STATE(1492), + [sym_compound_assignment_expr] = STATE(1492), + [sym_type_cast_expression] = STATE(1492), + [sym_return_expression] = STATE(1492), + [sym_yield_expression] = STATE(1492), + [sym_call_expression] = STATE(1492), + [sym_array_expression] = STATE(1492), + [sym_parenthesized_expression] = STATE(1492), + [sym_tuple_expression] = STATE(1492), + [sym_unit_expression] = STATE(1492), + [sym_struct_expression] = STATE(1492), + [sym_if_expression] = STATE(1492), + [sym_match_expression] = STATE(1492), + [sym_while_expression] = STATE(1492), + [sym_loop_expression] = STATE(1492), + [sym_for_expression] = STATE(1492), + [sym_const_block] = STATE(1492), + [sym_closure_expression] = STATE(1492), + [sym_closure_parameters] = STATE(229), + [sym_label] = STATE(3689), + [sym_break_expression] = STATE(1492), + [sym_continue_expression] = STATE(1492), + [sym_index_expression] = STATE(1492), + [sym_await_expression] = STATE(1492), + [sym_field_expression] = STATE(1412), + [sym_unsafe_block] = STATE(1492), + [sym_async_block] = STATE(1492), + [sym_gen_block] = STATE(1492), + [sym_try_block] = STATE(1492), + [sym_block] = STATE(1492), + [sym__literal] = STATE(1492), + [sym_string_literal] = STATE(1530), + [sym_raw_string_literal] = STATE(1530), + [sym_boolean_literal] = STATE(1530), [sym_line_comment] = STATE(200), [sym_block_comment] = STATE(200), - [sym_identifier] = ACTIONS(1017), - [anon_sym_SEMI] = ACTIONS(1019), - [anon_sym_LPAREN] = ACTIONS(1019), - [anon_sym_RPAREN] = ACTIONS(1019), - [anon_sym_LBRACK] = ACTIONS(1019), - [anon_sym_RBRACK] = ACTIONS(1019), - [anon_sym_LBRACE] = ACTIONS(1019), - [anon_sym_RBRACE] = ACTIONS(1019), - [anon_sym_EQ_GT] = ACTIONS(1019), - [anon_sym_COLON] = ACTIONS(1017), - [anon_sym_DOLLAR] = ACTIONS(1019), - [anon_sym_PLUS] = ACTIONS(1017), - [anon_sym_STAR] = ACTIONS(1017), - [anon_sym_QMARK] = ACTIONS(1019), - [anon_sym_u8] = ACTIONS(1017), - [anon_sym_i8] = ACTIONS(1017), - [anon_sym_u16] = ACTIONS(1017), - [anon_sym_i16] = ACTIONS(1017), - [anon_sym_u32] = ACTIONS(1017), - [anon_sym_i32] = ACTIONS(1017), - [anon_sym_u64] = ACTIONS(1017), - [anon_sym_i64] = ACTIONS(1017), - [anon_sym_u128] = ACTIONS(1017), - [anon_sym_i128] = ACTIONS(1017), - [anon_sym_isize] = ACTIONS(1017), - [anon_sym_usize] = ACTIONS(1017), - [anon_sym_f32] = ACTIONS(1017), - [anon_sym_f64] = ACTIONS(1017), - [anon_sym_bool] = ACTIONS(1017), - [anon_sym_str] = ACTIONS(1017), - [anon_sym_char] = ACTIONS(1017), - [anon_sym_DASH] = ACTIONS(1017), - [anon_sym_SLASH] = ACTIONS(1017), - [anon_sym_PERCENT] = ACTIONS(1017), - [anon_sym_CARET] = ACTIONS(1017), - [anon_sym_BANG] = ACTIONS(1017), - [anon_sym_AMP] = ACTIONS(1017), - [anon_sym_PIPE] = ACTIONS(1017), - [anon_sym_AMP_AMP] = ACTIONS(1019), - [anon_sym_PIPE_PIPE] = ACTIONS(1019), - [anon_sym_LT_LT] = ACTIONS(1017), - [anon_sym_GT_GT] = ACTIONS(1017), - [anon_sym_PLUS_EQ] = ACTIONS(1019), - [anon_sym_DASH_EQ] = ACTIONS(1019), - [anon_sym_STAR_EQ] = ACTIONS(1019), - [anon_sym_SLASH_EQ] = ACTIONS(1019), - [anon_sym_PERCENT_EQ] = ACTIONS(1019), - [anon_sym_CARET_EQ] = ACTIONS(1019), - [anon_sym_AMP_EQ] = ACTIONS(1019), - [anon_sym_PIPE_EQ] = ACTIONS(1019), - [anon_sym_LT_LT_EQ] = ACTIONS(1019), - [anon_sym_GT_GT_EQ] = ACTIONS(1019), - [anon_sym_EQ] = ACTIONS(1017), - [anon_sym_EQ_EQ] = ACTIONS(1019), - [anon_sym_BANG_EQ] = ACTIONS(1019), - [anon_sym_GT] = ACTIONS(1017), - [anon_sym_LT] = ACTIONS(1017), - [anon_sym_GT_EQ] = ACTIONS(1019), - [anon_sym_LT_EQ] = ACTIONS(1019), - [anon_sym_AT] = ACTIONS(1019), - [anon_sym__] = ACTIONS(1017), - [anon_sym_DOT] = ACTIONS(1017), - [anon_sym_DOT_DOT] = ACTIONS(1017), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1019), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1019), - [anon_sym_COMMA] = ACTIONS(1019), - [anon_sym_COLON_COLON] = ACTIONS(1019), - [anon_sym_DASH_GT] = ACTIONS(1019), - [anon_sym_POUND] = ACTIONS(1019), - [anon_sym_SQUOTE] = ACTIONS(1017), - [anon_sym_as] = ACTIONS(1017), - [anon_sym_async] = ACTIONS(1017), - [anon_sym_await] = ACTIONS(1017), - [anon_sym_break] = ACTIONS(1017), - [anon_sym_const] = ACTIONS(1017), - [anon_sym_continue] = ACTIONS(1017), - [anon_sym_default] = ACTIONS(1017), - [anon_sym_enum] = ACTIONS(1017), - [anon_sym_fn] = ACTIONS(1017), - [anon_sym_for] = ACTIONS(1017), - [anon_sym_gen] = ACTIONS(1017), - [anon_sym_if] = ACTIONS(1017), - [anon_sym_impl] = ACTIONS(1017), - [anon_sym_let] = ACTIONS(1017), - [anon_sym_loop] = ACTIONS(1017), - [anon_sym_match] = ACTIONS(1017), - [anon_sym_mod] = ACTIONS(1017), - [anon_sym_pub] = ACTIONS(1017), - [anon_sym_return] = ACTIONS(1017), - [anon_sym_static] = ACTIONS(1017), - [anon_sym_struct] = ACTIONS(1017), - [anon_sym_trait] = ACTIONS(1017), - [anon_sym_type] = ACTIONS(1017), - [anon_sym_union] = ACTIONS(1017), - [anon_sym_unsafe] = ACTIONS(1017), - [anon_sym_use] = ACTIONS(1017), - [anon_sym_where] = ACTIONS(1017), - [anon_sym_while] = ACTIONS(1017), - [sym_mutable_specifier] = ACTIONS(1017), - [sym_integer_literal] = ACTIONS(1019), - [aux_sym_string_literal_token1] = ACTIONS(1019), - [sym_char_literal] = ACTIONS(1019), - [anon_sym_true] = ACTIONS(1017), - [anon_sym_false] = ACTIONS(1017), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1017), - [sym_super] = ACTIONS(1017), - [sym_crate] = ACTIONS(1017), - [sym__raw_string_literal_start] = ACTIONS(1019), - [sym_float_literal] = ACTIONS(1019), - }, - [STATE(201)] = { - [sym_attribute_item] = STATE(1031), - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1666), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1520), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [sym_line_comment] = STATE(201), - [sym_block_comment] = STATE(201), - [aux_sym_enum_variant_list_repeat1] = STATE(1029), - [sym_identifier] = ACTIONS(339), + [aux_sym_enum_variant_list_repeat1] = STATE(1037), + [sym_identifier] = ACTIONS(344), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(348), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -40133,211 +40149,556 @@ 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(748), + [anon_sym_POUND] = ACTIONS(874), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), + [anon_sym_async] = ACTIONS(356), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(358), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), + [anon_sym_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(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(115), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [anon_sym_static] = ACTIONS(372), + [anon_sym_union] = ACTIONS(360), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [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(201)] = { + [sym_line_comment] = STATE(201), + [sym_block_comment] = STATE(201), + [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(1002), + [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__raw_string_literal_start] = ACTIONS(1002), + [sym_float_literal] = ACTIONS(1002), }, [STATE(202)] = { - [sym_attribute_item] = STATE(1031), - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1644), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1520), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), [sym_line_comment] = STATE(202), [sym_block_comment] = STATE(202), - [aux_sym_enum_variant_list_repeat1] = STATE(204), - [sym_identifier] = ACTIONS(339), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(748), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(115), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [sym_identifier] = ACTIONS(936), + [anon_sym_SEMI] = ACTIONS(938), + [anon_sym_LPAREN] = ACTIONS(938), + [anon_sym_RPAREN] = ACTIONS(938), + [anon_sym_LBRACK] = ACTIONS(938), + [anon_sym_RBRACK] = ACTIONS(938), + [anon_sym_LBRACE] = ACTIONS(938), + [anon_sym_RBRACE] = ACTIONS(938), + [anon_sym_EQ_GT] = ACTIONS(938), + [anon_sym_COLON] = ACTIONS(936), + [anon_sym_DOLLAR] = ACTIONS(938), + [anon_sym_PLUS] = ACTIONS(936), + [anon_sym_STAR] = ACTIONS(936), + [anon_sym_QMARK] = ACTIONS(938), + [anon_sym_u8] = ACTIONS(936), + [anon_sym_i8] = ACTIONS(936), + [anon_sym_u16] = ACTIONS(936), + [anon_sym_i16] = ACTIONS(936), + [anon_sym_u32] = ACTIONS(936), + [anon_sym_i32] = ACTIONS(936), + [anon_sym_u64] = ACTIONS(936), + [anon_sym_i64] = ACTIONS(936), + [anon_sym_u128] = ACTIONS(936), + [anon_sym_i128] = ACTIONS(936), + [anon_sym_isize] = ACTIONS(936), + [anon_sym_usize] = ACTIONS(936), + [anon_sym_f32] = ACTIONS(936), + [anon_sym_f64] = ACTIONS(936), + [anon_sym_bool] = ACTIONS(936), + [anon_sym_str] = ACTIONS(936), + [anon_sym_char] = ACTIONS(936), + [anon_sym_DASH] = ACTIONS(936), + [anon_sym_SLASH] = ACTIONS(936), + [anon_sym_PERCENT] = ACTIONS(936), + [anon_sym_CARET] = ACTIONS(936), + [anon_sym_BANG] = ACTIONS(936), + [anon_sym_AMP] = ACTIONS(936), + [anon_sym_PIPE] = ACTIONS(936), + [anon_sym_AMP_AMP] = ACTIONS(938), + [anon_sym_PIPE_PIPE] = ACTIONS(938), + [anon_sym_LT_LT] = ACTIONS(936), + [anon_sym_GT_GT] = ACTIONS(936), + [anon_sym_PLUS_EQ] = ACTIONS(938), + [anon_sym_DASH_EQ] = ACTIONS(938), + [anon_sym_STAR_EQ] = ACTIONS(938), + [anon_sym_SLASH_EQ] = ACTIONS(938), + [anon_sym_PERCENT_EQ] = ACTIONS(938), + [anon_sym_CARET_EQ] = ACTIONS(938), + [anon_sym_AMP_EQ] = ACTIONS(938), + [anon_sym_PIPE_EQ] = ACTIONS(938), + [anon_sym_LT_LT_EQ] = ACTIONS(938), + [anon_sym_GT_GT_EQ] = ACTIONS(938), + [anon_sym_EQ] = ACTIONS(936), + [anon_sym_EQ_EQ] = ACTIONS(938), + [anon_sym_BANG_EQ] = ACTIONS(938), + [anon_sym_GT] = ACTIONS(936), + [anon_sym_LT] = ACTIONS(936), + [anon_sym_GT_EQ] = ACTIONS(938), + [anon_sym_LT_EQ] = ACTIONS(938), + [anon_sym_AT] = ACTIONS(938), + [anon_sym__] = ACTIONS(936), + [anon_sym_DOT] = ACTIONS(936), + [anon_sym_DOT_DOT] = ACTIONS(936), + [anon_sym_DOT_DOT_DOT] = ACTIONS(938), + [anon_sym_DOT_DOT_EQ] = ACTIONS(938), + [anon_sym_COMMA] = ACTIONS(938), + [anon_sym_COLON_COLON] = ACTIONS(938), + [anon_sym_DASH_GT] = ACTIONS(938), + [anon_sym_POUND] = ACTIONS(938), + [anon_sym_SQUOTE] = ACTIONS(936), + [anon_sym_as] = ACTIONS(936), + [anon_sym_async] = ACTIONS(936), + [anon_sym_await] = ACTIONS(936), + [anon_sym_break] = ACTIONS(936), + [anon_sym_const] = ACTIONS(936), + [anon_sym_continue] = ACTIONS(936), + [anon_sym_default] = ACTIONS(936), + [anon_sym_enum] = ACTIONS(936), + [anon_sym_fn] = ACTIONS(936), + [anon_sym_for] = ACTIONS(936), + [anon_sym_gen] = ACTIONS(936), + [anon_sym_if] = ACTIONS(936), + [anon_sym_impl] = ACTIONS(936), + [anon_sym_let] = ACTIONS(936), + [anon_sym_loop] = ACTIONS(936), + [anon_sym_match] = ACTIONS(936), + [anon_sym_mod] = ACTIONS(936), + [anon_sym_pub] = ACTIONS(936), + [anon_sym_return] = ACTIONS(936), + [anon_sym_static] = ACTIONS(936), + [anon_sym_struct] = ACTIONS(936), + [anon_sym_trait] = ACTIONS(936), + [anon_sym_type] = ACTIONS(936), + [anon_sym_union] = ACTIONS(936), + [anon_sym_unsafe] = ACTIONS(936), + [anon_sym_use] = ACTIONS(936), + [anon_sym_where] = ACTIONS(936), + [anon_sym_while] = ACTIONS(936), + [sym_mutable_specifier] = ACTIONS(936), + [sym_integer_literal] = ACTIONS(938), + [aux_sym_string_literal_token1] = ACTIONS(938), + [sym_char_literal] = ACTIONS(938), + [anon_sym_true] = ACTIONS(936), + [anon_sym_false] = ACTIONS(936), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(936), + [sym_super] = ACTIONS(936), + [sym_crate] = ACTIONS(936), + [sym__raw_string_literal_start] = ACTIONS(938), + [sym_float_literal] = ACTIONS(938), }, [STATE(203)] = { - [sym_attribute_item] = STATE(1031), - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1906), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1520), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), [sym_line_comment] = STATE(203), [sym_block_comment] = STATE(203), - [aux_sym_enum_variant_list_repeat1] = STATE(1029), - [sym_identifier] = ACTIONS(339), + [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), + }, + [STATE(204)] = { + [sym_line_comment] = STATE(204), + [sym_block_comment] = STATE(204), + [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(205)] = { + [sym_attribute_item] = STATE(1038), + [sym_bracketed_type] = STATE(3752), + [sym_generic_function] = STATE(1492), + [sym_generic_type_with_turbofish] = STATE(3039), + [sym__expression_except_range] = STATE(1409), + [sym__expression] = STATE(1689), + [sym_macro_invocation] = STATE(1529), + [sym_scoped_identifier] = STATE(1540), + [sym_scoped_type_identifier_in_expression_position] = STATE(3335), + [sym_range_expression] = STATE(1505), + [sym_unary_expression] = STATE(1492), + [sym_try_expression] = STATE(1492), + [sym_reference_expression] = STATE(1492), + [sym_binary_expression] = STATE(1492), + [sym_assignment_expression] = STATE(1492), + [sym_compound_assignment_expr] = STATE(1492), + [sym_type_cast_expression] = STATE(1492), + [sym_return_expression] = STATE(1492), + [sym_yield_expression] = STATE(1492), + [sym_call_expression] = STATE(1492), + [sym_array_expression] = STATE(1492), + [sym_parenthesized_expression] = STATE(1492), + [sym_tuple_expression] = STATE(1492), + [sym_unit_expression] = STATE(1492), + [sym_struct_expression] = STATE(1492), + [sym_if_expression] = STATE(1492), + [sym_match_expression] = STATE(1492), + [sym_while_expression] = STATE(1492), + [sym_loop_expression] = STATE(1492), + [sym_for_expression] = STATE(1492), + [sym_const_block] = STATE(1492), + [sym_closure_expression] = STATE(1492), + [sym_closure_parameters] = STATE(229), + [sym_label] = STATE(3689), + [sym_break_expression] = STATE(1492), + [sym_continue_expression] = STATE(1492), + [sym_index_expression] = STATE(1492), + [sym_await_expression] = STATE(1492), + [sym_field_expression] = STATE(1412), + [sym_unsafe_block] = STATE(1492), + [sym_async_block] = STATE(1492), + [sym_gen_block] = STATE(1492), + [sym_try_block] = STATE(1492), + [sym_block] = STATE(1492), + [sym__literal] = STATE(1492), + [sym_string_literal] = STATE(1530), + [sym_raw_string_literal] = STATE(1530), + [sym_boolean_literal] = STATE(1530), + [sym_line_comment] = STATE(205), + [sym_block_comment] = STATE(205), + [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(343), + [anon_sym_LBRACE] = ACTIONS(348), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -40363,96 +40724,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(874), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), + [anon_sym_async] = ACTIONS(356), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(358), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), + [anon_sym_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(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(115), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [anon_sym_static] = ACTIONS(372), + [anon_sym_union] = ACTIONS(360), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [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(204)] = { - [sym_attribute_item] = STATE(1031), - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1675), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1520), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [sym_line_comment] = STATE(204), - [sym_block_comment] = STATE(204), - [aux_sym_enum_variant_list_repeat1] = STATE(1029), - [sym_identifier] = ACTIONS(339), + [STATE(206)] = { + [sym_attribute_item] = STATE(1038), + [sym_bracketed_type] = STATE(3752), + [sym_generic_function] = STATE(1492), + [sym_generic_type_with_turbofish] = STATE(3039), + [sym__expression_except_range] = STATE(1409), + [sym__expression] = STATE(1673), + [sym_macro_invocation] = STATE(1529), + [sym_scoped_identifier] = STATE(1540), + [sym_scoped_type_identifier_in_expression_position] = STATE(3335), + [sym_range_expression] = STATE(1505), + [sym_unary_expression] = STATE(1492), + [sym_try_expression] = STATE(1492), + [sym_reference_expression] = STATE(1492), + [sym_binary_expression] = STATE(1492), + [sym_assignment_expression] = STATE(1492), + [sym_compound_assignment_expr] = STATE(1492), + [sym_type_cast_expression] = STATE(1492), + [sym_return_expression] = STATE(1492), + [sym_yield_expression] = STATE(1492), + [sym_call_expression] = STATE(1492), + [sym_array_expression] = STATE(1492), + [sym_parenthesized_expression] = STATE(1492), + [sym_tuple_expression] = STATE(1492), + [sym_unit_expression] = STATE(1492), + [sym_struct_expression] = STATE(1492), + [sym_if_expression] = STATE(1492), + [sym_match_expression] = STATE(1492), + [sym_while_expression] = STATE(1492), + [sym_loop_expression] = STATE(1492), + [sym_for_expression] = STATE(1492), + [sym_const_block] = STATE(1492), + [sym_closure_expression] = STATE(1492), + [sym_closure_parameters] = STATE(229), + [sym_label] = STATE(3689), + [sym_break_expression] = STATE(1492), + [sym_continue_expression] = STATE(1492), + [sym_index_expression] = STATE(1492), + [sym_await_expression] = STATE(1492), + [sym_field_expression] = STATE(1412), + [sym_unsafe_block] = STATE(1492), + [sym_async_block] = STATE(1492), + [sym_gen_block] = STATE(1492), + [sym_try_block] = STATE(1492), + [sym_block] = STATE(1492), + [sym__literal] = STATE(1492), + [sym_string_literal] = STATE(1530), + [sym_raw_string_literal] = STATE(1530), + [sym_boolean_literal] = STATE(1530), + [sym_line_comment] = STATE(206), + [sym_block_comment] = STATE(206), + [aux_sym_enum_variant_list_repeat1] = STATE(1037), + [sym_identifier] = ACTIONS(344), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(348), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -40478,786 +40839,556 @@ 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(748), + [anon_sym_POUND] = ACTIONS(874), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), + [anon_sym_async] = ACTIONS(356), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(358), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), + [anon_sym_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(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(115), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), - }, - [STATE(205)] = { - [sym_line_comment] = STATE(205), - [sym_block_comment] = STATE(205), - [sym_identifier] = ACTIONS(945), - [anon_sym_SEMI] = ACTIONS(947), - [anon_sym_LPAREN] = ACTIONS(947), - [anon_sym_RPAREN] = ACTIONS(947), - [anon_sym_LBRACK] = ACTIONS(947), - [anon_sym_RBRACK] = ACTIONS(947), - [anon_sym_LBRACE] = ACTIONS(947), - [anon_sym_RBRACE] = ACTIONS(947), - [anon_sym_EQ_GT] = ACTIONS(947), - [anon_sym_COLON] = ACTIONS(945), - [anon_sym_DOLLAR] = ACTIONS(947), - [anon_sym_PLUS] = ACTIONS(945), - [anon_sym_STAR] = ACTIONS(945), - [anon_sym_QMARK] = ACTIONS(947), - [anon_sym_u8] = ACTIONS(945), - [anon_sym_i8] = ACTIONS(945), - [anon_sym_u16] = ACTIONS(945), - [anon_sym_i16] = ACTIONS(945), - [anon_sym_u32] = ACTIONS(945), - [anon_sym_i32] = ACTIONS(945), - [anon_sym_u64] = ACTIONS(945), - [anon_sym_i64] = ACTIONS(945), - [anon_sym_u128] = ACTIONS(945), - [anon_sym_i128] = ACTIONS(945), - [anon_sym_isize] = ACTIONS(945), - [anon_sym_usize] = ACTIONS(945), - [anon_sym_f32] = ACTIONS(945), - [anon_sym_f64] = ACTIONS(945), - [anon_sym_bool] = ACTIONS(945), - [anon_sym_str] = ACTIONS(945), - [anon_sym_char] = ACTIONS(945), - [anon_sym_DASH] = ACTIONS(945), - [anon_sym_SLASH] = ACTIONS(945), - [anon_sym_PERCENT] = ACTIONS(945), - [anon_sym_CARET] = ACTIONS(945), - [anon_sym_BANG] = ACTIONS(945), - [anon_sym_AMP] = ACTIONS(945), - [anon_sym_PIPE] = ACTIONS(945), - [anon_sym_AMP_AMP] = ACTIONS(947), - [anon_sym_PIPE_PIPE] = ACTIONS(947), - [anon_sym_LT_LT] = ACTIONS(945), - [anon_sym_GT_GT] = ACTIONS(945), - [anon_sym_PLUS_EQ] = ACTIONS(947), - [anon_sym_DASH_EQ] = ACTIONS(947), - [anon_sym_STAR_EQ] = ACTIONS(947), - [anon_sym_SLASH_EQ] = ACTIONS(947), - [anon_sym_PERCENT_EQ] = ACTIONS(947), - [anon_sym_CARET_EQ] = ACTIONS(947), - [anon_sym_AMP_EQ] = ACTIONS(947), - [anon_sym_PIPE_EQ] = ACTIONS(947), - [anon_sym_LT_LT_EQ] = ACTIONS(947), - [anon_sym_GT_GT_EQ] = ACTIONS(947), - [anon_sym_EQ] = ACTIONS(945), - [anon_sym_EQ_EQ] = ACTIONS(947), - [anon_sym_BANG_EQ] = ACTIONS(947), - [anon_sym_GT] = ACTIONS(945), - [anon_sym_LT] = ACTIONS(945), - [anon_sym_GT_EQ] = ACTIONS(947), - [anon_sym_LT_EQ] = ACTIONS(947), - [anon_sym_AT] = ACTIONS(947), - [anon_sym__] = ACTIONS(945), - [anon_sym_DOT] = ACTIONS(945), - [anon_sym_DOT_DOT] = ACTIONS(945), - [anon_sym_DOT_DOT_DOT] = ACTIONS(947), - [anon_sym_DOT_DOT_EQ] = ACTIONS(947), - [anon_sym_COMMA] = ACTIONS(947), - [anon_sym_COLON_COLON] = ACTIONS(947), - [anon_sym_DASH_GT] = ACTIONS(947), - [anon_sym_POUND] = ACTIONS(947), - [anon_sym_SQUOTE] = ACTIONS(945), - [anon_sym_as] = ACTIONS(945), - [anon_sym_async] = ACTIONS(945), - [anon_sym_await] = ACTIONS(945), - [anon_sym_break] = ACTIONS(945), - [anon_sym_const] = ACTIONS(945), - [anon_sym_continue] = ACTIONS(945), - [anon_sym_default] = ACTIONS(945), - [anon_sym_enum] = ACTIONS(945), - [anon_sym_fn] = ACTIONS(945), - [anon_sym_for] = ACTIONS(945), - [anon_sym_gen] = ACTIONS(945), - [anon_sym_if] = ACTIONS(945), - [anon_sym_impl] = ACTIONS(945), - [anon_sym_let] = ACTIONS(945), - [anon_sym_loop] = ACTIONS(945), - [anon_sym_match] = ACTIONS(945), - [anon_sym_mod] = ACTIONS(945), - [anon_sym_pub] = ACTIONS(945), - [anon_sym_return] = ACTIONS(945), - [anon_sym_static] = ACTIONS(945), - [anon_sym_struct] = ACTIONS(945), - [anon_sym_trait] = ACTIONS(945), - [anon_sym_type] = ACTIONS(945), - [anon_sym_union] = ACTIONS(945), - [anon_sym_unsafe] = ACTIONS(945), - [anon_sym_use] = ACTIONS(945), - [anon_sym_where] = ACTIONS(945), - [anon_sym_while] = ACTIONS(945), - [sym_mutable_specifier] = ACTIONS(945), - [sym_integer_literal] = ACTIONS(947), - [aux_sym_string_literal_token1] = ACTIONS(947), - [sym_char_literal] = ACTIONS(947), - [anon_sym_true] = ACTIONS(945), - [anon_sym_false] = ACTIONS(945), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(945), - [sym_super] = ACTIONS(945), - [sym_crate] = ACTIONS(945), - [sym__raw_string_literal_start] = ACTIONS(947), - [sym_float_literal] = ACTIONS(947), - }, - [STATE(206)] = { - [sym_line_comment] = STATE(206), - [sym_block_comment] = STATE(206), - [sym_identifier] = ACTIONS(1013), - [anon_sym_SEMI] = ACTIONS(1015), - [anon_sym_LPAREN] = ACTIONS(1015), - [anon_sym_RPAREN] = ACTIONS(1015), - [anon_sym_LBRACK] = ACTIONS(1015), - [anon_sym_RBRACK] = ACTIONS(1015), - [anon_sym_LBRACE] = ACTIONS(1015), - [anon_sym_RBRACE] = ACTIONS(1015), - [anon_sym_EQ_GT] = ACTIONS(1015), - [anon_sym_COLON] = ACTIONS(1013), - [anon_sym_DOLLAR] = ACTIONS(1015), - [anon_sym_PLUS] = ACTIONS(1013), - [anon_sym_STAR] = ACTIONS(1013), - [anon_sym_QMARK] = ACTIONS(1015), - [anon_sym_u8] = ACTIONS(1013), - [anon_sym_i8] = ACTIONS(1013), - [anon_sym_u16] = ACTIONS(1013), - [anon_sym_i16] = ACTIONS(1013), - [anon_sym_u32] = ACTIONS(1013), - [anon_sym_i32] = ACTIONS(1013), - [anon_sym_u64] = ACTIONS(1013), - [anon_sym_i64] = ACTIONS(1013), - [anon_sym_u128] = ACTIONS(1013), - [anon_sym_i128] = ACTIONS(1013), - [anon_sym_isize] = ACTIONS(1013), - [anon_sym_usize] = ACTIONS(1013), - [anon_sym_f32] = ACTIONS(1013), - [anon_sym_f64] = ACTIONS(1013), - [anon_sym_bool] = ACTIONS(1013), - [anon_sym_str] = ACTIONS(1013), - [anon_sym_char] = ACTIONS(1013), - [anon_sym_DASH] = ACTIONS(1013), - [anon_sym_SLASH] = ACTIONS(1013), - [anon_sym_PERCENT] = ACTIONS(1013), - [anon_sym_CARET] = ACTIONS(1013), - [anon_sym_BANG] = ACTIONS(1013), - [anon_sym_AMP] = ACTIONS(1013), - [anon_sym_PIPE] = ACTIONS(1013), - [anon_sym_AMP_AMP] = ACTIONS(1015), - [anon_sym_PIPE_PIPE] = ACTIONS(1015), - [anon_sym_LT_LT] = ACTIONS(1013), - [anon_sym_GT_GT] = ACTIONS(1013), - [anon_sym_PLUS_EQ] = ACTIONS(1015), - [anon_sym_DASH_EQ] = ACTIONS(1015), - [anon_sym_STAR_EQ] = ACTIONS(1015), - [anon_sym_SLASH_EQ] = ACTIONS(1015), - [anon_sym_PERCENT_EQ] = ACTIONS(1015), - [anon_sym_CARET_EQ] = ACTIONS(1015), - [anon_sym_AMP_EQ] = ACTIONS(1015), - [anon_sym_PIPE_EQ] = ACTIONS(1015), - [anon_sym_LT_LT_EQ] = ACTIONS(1015), - [anon_sym_GT_GT_EQ] = ACTIONS(1015), - [anon_sym_EQ] = ACTIONS(1013), - [anon_sym_EQ_EQ] = ACTIONS(1015), - [anon_sym_BANG_EQ] = ACTIONS(1015), - [anon_sym_GT] = ACTIONS(1013), - [anon_sym_LT] = ACTIONS(1013), - [anon_sym_GT_EQ] = ACTIONS(1015), - [anon_sym_LT_EQ] = ACTIONS(1015), - [anon_sym_AT] = ACTIONS(1015), - [anon_sym__] = ACTIONS(1013), - [anon_sym_DOT] = ACTIONS(1013), - [anon_sym_DOT_DOT] = ACTIONS(1013), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1015), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1015), - [anon_sym_COMMA] = ACTIONS(1015), - [anon_sym_COLON_COLON] = ACTIONS(1015), - [anon_sym_DASH_GT] = ACTIONS(1015), - [anon_sym_POUND] = ACTIONS(1015), - [anon_sym_SQUOTE] = ACTIONS(1013), - [anon_sym_as] = ACTIONS(1013), - [anon_sym_async] = ACTIONS(1013), - [anon_sym_await] = ACTIONS(1013), - [anon_sym_break] = ACTIONS(1013), - [anon_sym_const] = ACTIONS(1013), - [anon_sym_continue] = ACTIONS(1013), - [anon_sym_default] = ACTIONS(1013), - [anon_sym_enum] = ACTIONS(1013), - [anon_sym_fn] = ACTIONS(1013), - [anon_sym_for] = ACTIONS(1013), - [anon_sym_gen] = ACTIONS(1013), - [anon_sym_if] = ACTIONS(1013), - [anon_sym_impl] = ACTIONS(1013), - [anon_sym_let] = ACTIONS(1013), - [anon_sym_loop] = ACTIONS(1013), - [anon_sym_match] = ACTIONS(1013), - [anon_sym_mod] = ACTIONS(1013), - [anon_sym_pub] = ACTIONS(1013), - [anon_sym_return] = ACTIONS(1013), - [anon_sym_static] = ACTIONS(1013), - [anon_sym_struct] = ACTIONS(1013), - [anon_sym_trait] = ACTIONS(1013), - [anon_sym_type] = ACTIONS(1013), - [anon_sym_union] = ACTIONS(1013), - [anon_sym_unsafe] = ACTIONS(1013), - [anon_sym_use] = ACTIONS(1013), - [anon_sym_where] = ACTIONS(1013), - [anon_sym_while] = ACTIONS(1013), - [sym_mutable_specifier] = ACTIONS(1013), - [sym_integer_literal] = ACTIONS(1015), - [aux_sym_string_literal_token1] = ACTIONS(1015), - [sym_char_literal] = ACTIONS(1015), - [anon_sym_true] = ACTIONS(1013), - [anon_sym_false] = ACTIONS(1013), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1013), - [sym_super] = ACTIONS(1013), - [sym_crate] = ACTIONS(1013), - [sym__raw_string_literal_start] = ACTIONS(1015), - [sym_float_literal] = ACTIONS(1015), + [anon_sym_static] = ACTIONS(372), + [anon_sym_union] = ACTIONS(360), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [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(207)] = { [sym_line_comment] = STATE(207), [sym_block_comment] = STATE(207), - [sym_identifier] = ACTIONS(1037), - [anon_sym_SEMI] = ACTIONS(1039), - [anon_sym_LPAREN] = ACTIONS(1039), - [anon_sym_RPAREN] = ACTIONS(1039), - [anon_sym_LBRACK] = ACTIONS(1039), - [anon_sym_RBRACK] = ACTIONS(1039), - [anon_sym_LBRACE] = ACTIONS(1039), - [anon_sym_RBRACE] = ACTIONS(1039), - [anon_sym_EQ_GT] = ACTIONS(1039), - [anon_sym_COLON] = ACTIONS(1037), - [anon_sym_DOLLAR] = ACTIONS(1039), - [anon_sym_PLUS] = ACTIONS(1037), - [anon_sym_STAR] = ACTIONS(1037), - [anon_sym_QMARK] = ACTIONS(1039), - [anon_sym_u8] = ACTIONS(1037), - [anon_sym_i8] = ACTIONS(1037), - [anon_sym_u16] = ACTIONS(1037), - [anon_sym_i16] = ACTIONS(1037), - [anon_sym_u32] = ACTIONS(1037), - [anon_sym_i32] = ACTIONS(1037), - [anon_sym_u64] = ACTIONS(1037), - [anon_sym_i64] = ACTIONS(1037), - [anon_sym_u128] = ACTIONS(1037), - [anon_sym_i128] = ACTIONS(1037), - [anon_sym_isize] = ACTIONS(1037), - [anon_sym_usize] = ACTIONS(1037), - [anon_sym_f32] = ACTIONS(1037), - [anon_sym_f64] = ACTIONS(1037), - [anon_sym_bool] = ACTIONS(1037), - [anon_sym_str] = ACTIONS(1037), - [anon_sym_char] = ACTIONS(1037), - [anon_sym_DASH] = ACTIONS(1037), - [anon_sym_SLASH] = ACTIONS(1037), - [anon_sym_PERCENT] = ACTIONS(1037), - [anon_sym_CARET] = ACTIONS(1037), - [anon_sym_BANG] = ACTIONS(1037), - [anon_sym_AMP] = ACTIONS(1037), - [anon_sym_PIPE] = ACTIONS(1037), - [anon_sym_AMP_AMP] = ACTIONS(1039), - [anon_sym_PIPE_PIPE] = ACTIONS(1039), - [anon_sym_LT_LT] = ACTIONS(1037), - [anon_sym_GT_GT] = ACTIONS(1037), - [anon_sym_PLUS_EQ] = ACTIONS(1039), - [anon_sym_DASH_EQ] = ACTIONS(1039), - [anon_sym_STAR_EQ] = ACTIONS(1039), - [anon_sym_SLASH_EQ] = ACTIONS(1039), - [anon_sym_PERCENT_EQ] = ACTIONS(1039), - [anon_sym_CARET_EQ] = ACTIONS(1039), - [anon_sym_AMP_EQ] = ACTIONS(1039), - [anon_sym_PIPE_EQ] = ACTIONS(1039), - [anon_sym_LT_LT_EQ] = ACTIONS(1039), - [anon_sym_GT_GT_EQ] = ACTIONS(1039), - [anon_sym_EQ] = ACTIONS(1037), - [anon_sym_EQ_EQ] = ACTIONS(1039), - [anon_sym_BANG_EQ] = ACTIONS(1039), - [anon_sym_GT] = ACTIONS(1037), - [anon_sym_LT] = ACTIONS(1037), - [anon_sym_GT_EQ] = ACTIONS(1039), - [anon_sym_LT_EQ] = ACTIONS(1039), - [anon_sym_AT] = ACTIONS(1039), - [anon_sym__] = ACTIONS(1037), - [anon_sym_DOT] = ACTIONS(1037), - [anon_sym_DOT_DOT] = ACTIONS(1037), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1039), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1039), - [anon_sym_COMMA] = ACTIONS(1039), - [anon_sym_COLON_COLON] = ACTIONS(1039), - [anon_sym_DASH_GT] = ACTIONS(1039), - [anon_sym_POUND] = ACTIONS(1039), - [anon_sym_SQUOTE] = ACTIONS(1037), - [anon_sym_as] = ACTIONS(1037), - [anon_sym_async] = ACTIONS(1037), - [anon_sym_await] = ACTIONS(1037), - [anon_sym_break] = ACTIONS(1037), - [anon_sym_const] = ACTIONS(1037), - [anon_sym_continue] = ACTIONS(1037), - [anon_sym_default] = ACTIONS(1037), - [anon_sym_enum] = ACTIONS(1037), - [anon_sym_fn] = ACTIONS(1037), - [anon_sym_for] = ACTIONS(1037), - [anon_sym_gen] = ACTIONS(1037), - [anon_sym_if] = ACTIONS(1037), - [anon_sym_impl] = ACTIONS(1037), - [anon_sym_let] = ACTIONS(1037), - [anon_sym_loop] = ACTIONS(1037), - [anon_sym_match] = ACTIONS(1037), - [anon_sym_mod] = ACTIONS(1037), - [anon_sym_pub] = ACTIONS(1037), - [anon_sym_return] = ACTIONS(1037), - [anon_sym_static] = ACTIONS(1037), - [anon_sym_struct] = ACTIONS(1037), - [anon_sym_trait] = ACTIONS(1037), - [anon_sym_type] = ACTIONS(1037), - [anon_sym_union] = ACTIONS(1037), - [anon_sym_unsafe] = ACTIONS(1037), - [anon_sym_use] = ACTIONS(1037), - [anon_sym_where] = ACTIONS(1037), - [anon_sym_while] = ACTIONS(1037), - [sym_mutable_specifier] = ACTIONS(1037), - [sym_integer_literal] = ACTIONS(1039), - [aux_sym_string_literal_token1] = ACTIONS(1039), - [sym_char_literal] = ACTIONS(1039), - [anon_sym_true] = ACTIONS(1037), - [anon_sym_false] = ACTIONS(1037), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1037), - [sym_super] = ACTIONS(1037), - [sym_crate] = ACTIONS(1037), - [sym__raw_string_literal_start] = ACTIONS(1039), - [sym_float_literal] = ACTIONS(1039), + [sym_identifier] = ACTIONS(1022), + [anon_sym_SEMI] = ACTIONS(1024), + [anon_sym_LPAREN] = ACTIONS(1024), + [anon_sym_RPAREN] = ACTIONS(1024), + [anon_sym_LBRACK] = ACTIONS(1024), + [anon_sym_RBRACK] = ACTIONS(1024), + [anon_sym_LBRACE] = ACTIONS(1024), + [anon_sym_RBRACE] = ACTIONS(1024), + [anon_sym_EQ_GT] = ACTIONS(1024), + [anon_sym_COLON] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), + [anon_sym_PLUS] = ACTIONS(1022), + [anon_sym_STAR] = ACTIONS(1022), + [anon_sym_QMARK] = ACTIONS(1024), + [anon_sym_u8] = ACTIONS(1022), + [anon_sym_i8] = ACTIONS(1022), + [anon_sym_u16] = ACTIONS(1022), + [anon_sym_i16] = ACTIONS(1022), + [anon_sym_u32] = ACTIONS(1022), + [anon_sym_i32] = ACTIONS(1022), + [anon_sym_u64] = ACTIONS(1022), + [anon_sym_i64] = ACTIONS(1022), + [anon_sym_u128] = ACTIONS(1022), + [anon_sym_i128] = ACTIONS(1022), + [anon_sym_isize] = ACTIONS(1022), + [anon_sym_usize] = ACTIONS(1022), + [anon_sym_f32] = ACTIONS(1022), + [anon_sym_f64] = ACTIONS(1022), + [anon_sym_bool] = ACTIONS(1022), + [anon_sym_str] = ACTIONS(1022), + [anon_sym_char] = ACTIONS(1022), + [anon_sym_DASH] = ACTIONS(1022), + [anon_sym_SLASH] = ACTIONS(1022), + [anon_sym_PERCENT] = ACTIONS(1022), + [anon_sym_CARET] = ACTIONS(1022), + [anon_sym_BANG] = ACTIONS(1022), + [anon_sym_AMP] = ACTIONS(1022), + [anon_sym_PIPE] = ACTIONS(1022), + [anon_sym_AMP_AMP] = ACTIONS(1024), + [anon_sym_PIPE_PIPE] = ACTIONS(1024), + [anon_sym_LT_LT] = ACTIONS(1022), + [anon_sym_GT_GT] = ACTIONS(1022), + [anon_sym_PLUS_EQ] = ACTIONS(1024), + [anon_sym_DASH_EQ] = ACTIONS(1024), + [anon_sym_STAR_EQ] = ACTIONS(1024), + [anon_sym_SLASH_EQ] = ACTIONS(1024), + [anon_sym_PERCENT_EQ] = ACTIONS(1024), + [anon_sym_CARET_EQ] = ACTIONS(1024), + [anon_sym_AMP_EQ] = ACTIONS(1024), + [anon_sym_PIPE_EQ] = ACTIONS(1024), + [anon_sym_LT_LT_EQ] = ACTIONS(1024), + [anon_sym_GT_GT_EQ] = ACTIONS(1024), + [anon_sym_EQ] = ACTIONS(1022), + [anon_sym_EQ_EQ] = ACTIONS(1024), + [anon_sym_BANG_EQ] = ACTIONS(1024), + [anon_sym_GT] = ACTIONS(1022), + [anon_sym_LT] = ACTIONS(1022), + [anon_sym_GT_EQ] = ACTIONS(1024), + [anon_sym_LT_EQ] = ACTIONS(1024), + [anon_sym_AT] = ACTIONS(1024), + [anon_sym__] = ACTIONS(1022), + [anon_sym_DOT] = ACTIONS(1022), + [anon_sym_DOT_DOT] = ACTIONS(1022), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1024), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1024), + [anon_sym_COMMA] = ACTIONS(1024), + [anon_sym_COLON_COLON] = ACTIONS(1024), + [anon_sym_DASH_GT] = ACTIONS(1024), + [anon_sym_POUND] = ACTIONS(1024), + [anon_sym_SQUOTE] = ACTIONS(1022), + [anon_sym_as] = ACTIONS(1022), + [anon_sym_async] = ACTIONS(1022), + [anon_sym_await] = ACTIONS(1022), + [anon_sym_break] = ACTIONS(1022), + [anon_sym_const] = ACTIONS(1022), + [anon_sym_continue] = ACTIONS(1022), + [anon_sym_default] = ACTIONS(1022), + [anon_sym_enum] = ACTIONS(1022), + [anon_sym_fn] = ACTIONS(1022), + [anon_sym_for] = ACTIONS(1022), + [anon_sym_gen] = ACTIONS(1022), + [anon_sym_if] = ACTIONS(1022), + [anon_sym_impl] = ACTIONS(1022), + [anon_sym_let] = ACTIONS(1022), + [anon_sym_loop] = ACTIONS(1022), + [anon_sym_match] = ACTIONS(1022), + [anon_sym_mod] = ACTIONS(1022), + [anon_sym_pub] = ACTIONS(1022), + [anon_sym_return] = ACTIONS(1022), + [anon_sym_static] = ACTIONS(1022), + [anon_sym_struct] = ACTIONS(1022), + [anon_sym_trait] = ACTIONS(1022), + [anon_sym_type] = ACTIONS(1022), + [anon_sym_union] = ACTIONS(1022), + [anon_sym_unsafe] = ACTIONS(1022), + [anon_sym_use] = ACTIONS(1022), + [anon_sym_where] = ACTIONS(1022), + [anon_sym_while] = ACTIONS(1022), + [sym_mutable_specifier] = ACTIONS(1022), + [sym_integer_literal] = ACTIONS(1024), + [aux_sym_string_literal_token1] = ACTIONS(1024), + [sym_char_literal] = ACTIONS(1024), + [anon_sym_true] = ACTIONS(1022), + [anon_sym_false] = ACTIONS(1022), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1022), + [sym_super] = ACTIONS(1022), + [sym_crate] = ACTIONS(1022), + [sym__raw_string_literal_start] = ACTIONS(1024), + [sym_float_literal] = ACTIONS(1024), }, [STATE(208)] = { [sym_line_comment] = STATE(208), [sym_block_comment] = STATE(208), - [sym_identifier] = ACTIONS(1041), - [anon_sym_SEMI] = ACTIONS(1043), - [anon_sym_LPAREN] = ACTIONS(1043), - [anon_sym_RPAREN] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1043), - [anon_sym_RBRACK] = ACTIONS(1043), - [anon_sym_LBRACE] = ACTIONS(1043), - [anon_sym_RBRACE] = ACTIONS(1043), - [anon_sym_EQ_GT] = ACTIONS(1043), - [anon_sym_COLON] = ACTIONS(1041), - [anon_sym_DOLLAR] = ACTIONS(1043), - [anon_sym_PLUS] = ACTIONS(1041), - [anon_sym_STAR] = ACTIONS(1041), - [anon_sym_QMARK] = ACTIONS(1043), - [anon_sym_u8] = ACTIONS(1041), - [anon_sym_i8] = ACTIONS(1041), - [anon_sym_u16] = ACTIONS(1041), - [anon_sym_i16] = ACTIONS(1041), - [anon_sym_u32] = ACTIONS(1041), - [anon_sym_i32] = ACTIONS(1041), - [anon_sym_u64] = ACTIONS(1041), - [anon_sym_i64] = ACTIONS(1041), - [anon_sym_u128] = ACTIONS(1041), - [anon_sym_i128] = ACTIONS(1041), - [anon_sym_isize] = ACTIONS(1041), - [anon_sym_usize] = ACTIONS(1041), - [anon_sym_f32] = ACTIONS(1041), - [anon_sym_f64] = ACTIONS(1041), - [anon_sym_bool] = ACTIONS(1041), - [anon_sym_str] = ACTIONS(1041), - [anon_sym_char] = ACTIONS(1041), - [anon_sym_DASH] = ACTIONS(1041), - [anon_sym_SLASH] = ACTIONS(1041), - [anon_sym_PERCENT] = ACTIONS(1041), - [anon_sym_CARET] = ACTIONS(1041), - [anon_sym_BANG] = ACTIONS(1041), - [anon_sym_AMP] = ACTIONS(1041), - [anon_sym_PIPE] = ACTIONS(1041), - [anon_sym_AMP_AMP] = ACTIONS(1043), - [anon_sym_PIPE_PIPE] = ACTIONS(1043), - [anon_sym_LT_LT] = ACTIONS(1041), - [anon_sym_GT_GT] = ACTIONS(1041), - [anon_sym_PLUS_EQ] = ACTIONS(1043), - [anon_sym_DASH_EQ] = ACTIONS(1043), - [anon_sym_STAR_EQ] = ACTIONS(1043), - [anon_sym_SLASH_EQ] = ACTIONS(1043), - [anon_sym_PERCENT_EQ] = ACTIONS(1043), - [anon_sym_CARET_EQ] = ACTIONS(1043), - [anon_sym_AMP_EQ] = ACTIONS(1043), - [anon_sym_PIPE_EQ] = ACTIONS(1043), - [anon_sym_LT_LT_EQ] = ACTIONS(1043), - [anon_sym_GT_GT_EQ] = ACTIONS(1043), - [anon_sym_EQ] = ACTIONS(1041), - [anon_sym_EQ_EQ] = ACTIONS(1043), - [anon_sym_BANG_EQ] = ACTIONS(1043), - [anon_sym_GT] = ACTIONS(1041), - [anon_sym_LT] = ACTIONS(1041), - [anon_sym_GT_EQ] = ACTIONS(1043), - [anon_sym_LT_EQ] = ACTIONS(1043), - [anon_sym_AT] = ACTIONS(1043), - [anon_sym__] = ACTIONS(1041), - [anon_sym_DOT] = ACTIONS(1041), - [anon_sym_DOT_DOT] = ACTIONS(1041), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1043), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1043), - [anon_sym_COMMA] = ACTIONS(1043), - [anon_sym_COLON_COLON] = ACTIONS(1043), - [anon_sym_DASH_GT] = ACTIONS(1043), - [anon_sym_POUND] = ACTIONS(1043), - [anon_sym_SQUOTE] = ACTIONS(1041), - [anon_sym_as] = ACTIONS(1041), - [anon_sym_async] = ACTIONS(1041), - [anon_sym_await] = ACTIONS(1041), - [anon_sym_break] = ACTIONS(1041), - [anon_sym_const] = ACTIONS(1041), - [anon_sym_continue] = ACTIONS(1041), - [anon_sym_default] = ACTIONS(1041), - [anon_sym_enum] = ACTIONS(1041), - [anon_sym_fn] = ACTIONS(1041), - [anon_sym_for] = ACTIONS(1041), - [anon_sym_gen] = ACTIONS(1041), - [anon_sym_if] = ACTIONS(1041), - [anon_sym_impl] = ACTIONS(1041), - [anon_sym_let] = ACTIONS(1041), - [anon_sym_loop] = ACTIONS(1041), - [anon_sym_match] = ACTIONS(1041), - [anon_sym_mod] = ACTIONS(1041), - [anon_sym_pub] = ACTIONS(1041), - [anon_sym_return] = ACTIONS(1041), - [anon_sym_static] = ACTIONS(1041), - [anon_sym_struct] = ACTIONS(1041), - [anon_sym_trait] = ACTIONS(1041), - [anon_sym_type] = ACTIONS(1041), - [anon_sym_union] = ACTIONS(1041), - [anon_sym_unsafe] = ACTIONS(1041), - [anon_sym_use] = ACTIONS(1041), - [anon_sym_where] = ACTIONS(1041), - [anon_sym_while] = ACTIONS(1041), - [sym_mutable_specifier] = ACTIONS(1041), - [sym_integer_literal] = ACTIONS(1043), - [aux_sym_string_literal_token1] = ACTIONS(1043), - [sym_char_literal] = ACTIONS(1043), - [anon_sym_true] = ACTIONS(1041), - [anon_sym_false] = ACTIONS(1041), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1041), - [sym_super] = ACTIONS(1041), - [sym_crate] = ACTIONS(1041), - [sym__raw_string_literal_start] = ACTIONS(1043), - [sym_float_literal] = ACTIONS(1043), + [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_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(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [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(209)] = { [sym_line_comment] = STATE(209), [sym_block_comment] = STATE(209), - [sym_identifier] = ACTIONS(1045), - [anon_sym_SEMI] = ACTIONS(1047), - [anon_sym_LPAREN] = ACTIONS(1047), - [anon_sym_RPAREN] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1047), - [anon_sym_RBRACK] = ACTIONS(1047), - [anon_sym_LBRACE] = ACTIONS(1047), - [anon_sym_RBRACE] = ACTIONS(1047), - [anon_sym_EQ_GT] = ACTIONS(1047), - [anon_sym_COLON] = ACTIONS(1045), - [anon_sym_DOLLAR] = ACTIONS(1047), - [anon_sym_PLUS] = ACTIONS(1045), - [anon_sym_STAR] = ACTIONS(1045), - [anon_sym_QMARK] = ACTIONS(1047), - [anon_sym_u8] = ACTIONS(1045), - [anon_sym_i8] = ACTIONS(1045), - [anon_sym_u16] = ACTIONS(1045), - [anon_sym_i16] = ACTIONS(1045), - [anon_sym_u32] = ACTIONS(1045), - [anon_sym_i32] = ACTIONS(1045), - [anon_sym_u64] = ACTIONS(1045), - [anon_sym_i64] = ACTIONS(1045), - [anon_sym_u128] = ACTIONS(1045), - [anon_sym_i128] = ACTIONS(1045), - [anon_sym_isize] = ACTIONS(1045), - [anon_sym_usize] = ACTIONS(1045), - [anon_sym_f32] = ACTIONS(1045), - [anon_sym_f64] = ACTIONS(1045), - [anon_sym_bool] = ACTIONS(1045), - [anon_sym_str] = ACTIONS(1045), - [anon_sym_char] = ACTIONS(1045), - [anon_sym_DASH] = ACTIONS(1045), - [anon_sym_SLASH] = ACTIONS(1045), - [anon_sym_PERCENT] = ACTIONS(1045), - [anon_sym_CARET] = ACTIONS(1045), - [anon_sym_BANG] = ACTIONS(1045), - [anon_sym_AMP] = ACTIONS(1045), - [anon_sym_PIPE] = ACTIONS(1045), - [anon_sym_AMP_AMP] = ACTIONS(1047), - [anon_sym_PIPE_PIPE] = ACTIONS(1047), - [anon_sym_LT_LT] = ACTIONS(1045), - [anon_sym_GT_GT] = ACTIONS(1045), - [anon_sym_PLUS_EQ] = ACTIONS(1047), - [anon_sym_DASH_EQ] = ACTIONS(1047), - [anon_sym_STAR_EQ] = ACTIONS(1047), - [anon_sym_SLASH_EQ] = ACTIONS(1047), - [anon_sym_PERCENT_EQ] = ACTIONS(1047), - [anon_sym_CARET_EQ] = ACTIONS(1047), - [anon_sym_AMP_EQ] = ACTIONS(1047), - [anon_sym_PIPE_EQ] = ACTIONS(1047), - [anon_sym_LT_LT_EQ] = ACTIONS(1047), - [anon_sym_GT_GT_EQ] = ACTIONS(1047), - [anon_sym_EQ] = ACTIONS(1045), - [anon_sym_EQ_EQ] = ACTIONS(1047), - [anon_sym_BANG_EQ] = ACTIONS(1047), - [anon_sym_GT] = ACTIONS(1045), - [anon_sym_LT] = ACTIONS(1045), - [anon_sym_GT_EQ] = ACTIONS(1047), - [anon_sym_LT_EQ] = ACTIONS(1047), - [anon_sym_AT] = ACTIONS(1047), - [anon_sym__] = ACTIONS(1045), - [anon_sym_DOT] = ACTIONS(1045), - [anon_sym_DOT_DOT] = ACTIONS(1045), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1047), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1047), - [anon_sym_COMMA] = ACTIONS(1047), - [anon_sym_COLON_COLON] = ACTIONS(1047), - [anon_sym_DASH_GT] = ACTIONS(1047), - [anon_sym_POUND] = ACTIONS(1047), - [anon_sym_SQUOTE] = ACTIONS(1045), - [anon_sym_as] = ACTIONS(1045), - [anon_sym_async] = ACTIONS(1045), - [anon_sym_await] = ACTIONS(1045), - [anon_sym_break] = ACTIONS(1045), - [anon_sym_const] = ACTIONS(1045), - [anon_sym_continue] = ACTIONS(1045), - [anon_sym_default] = ACTIONS(1045), - [anon_sym_enum] = ACTIONS(1045), - [anon_sym_fn] = ACTIONS(1045), - [anon_sym_for] = ACTIONS(1045), - [anon_sym_gen] = ACTIONS(1045), - [anon_sym_if] = ACTIONS(1045), - [anon_sym_impl] = ACTIONS(1045), - [anon_sym_let] = ACTIONS(1045), - [anon_sym_loop] = ACTIONS(1045), - [anon_sym_match] = ACTIONS(1045), - [anon_sym_mod] = ACTIONS(1045), - [anon_sym_pub] = ACTIONS(1045), - [anon_sym_return] = ACTIONS(1045), - [anon_sym_static] = ACTIONS(1045), - [anon_sym_struct] = ACTIONS(1045), - [anon_sym_trait] = ACTIONS(1045), - [anon_sym_type] = ACTIONS(1045), - [anon_sym_union] = ACTIONS(1045), - [anon_sym_unsafe] = ACTIONS(1045), - [anon_sym_use] = ACTIONS(1045), - [anon_sym_where] = ACTIONS(1045), - [anon_sym_while] = ACTIONS(1045), - [sym_mutable_specifier] = ACTIONS(1045), - [sym_integer_literal] = ACTIONS(1047), - [aux_sym_string_literal_token1] = ACTIONS(1047), - [sym_char_literal] = ACTIONS(1047), - [anon_sym_true] = ACTIONS(1045), - [anon_sym_false] = ACTIONS(1045), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1045), - [sym_super] = ACTIONS(1045), - [sym_crate] = ACTIONS(1045), - [sym__raw_string_literal_start] = ACTIONS(1047), - [sym_float_literal] = ACTIONS(1047), + [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_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(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [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(210)] = { [sym_line_comment] = STATE(210), [sym_block_comment] = STATE(210), - [sym_identifier] = ACTIONS(1049), - [anon_sym_SEMI] = ACTIONS(1051), - [anon_sym_LPAREN] = ACTIONS(1051), - [anon_sym_RPAREN] = ACTIONS(1051), - [anon_sym_LBRACK] = ACTIONS(1051), - [anon_sym_RBRACK] = ACTIONS(1051), - [anon_sym_LBRACE] = ACTIONS(1051), - [anon_sym_RBRACE] = ACTIONS(1051), - [anon_sym_EQ_GT] = ACTIONS(1051), - [anon_sym_COLON] = ACTIONS(1049), - [anon_sym_DOLLAR] = ACTIONS(1051), - [anon_sym_PLUS] = ACTIONS(1049), - [anon_sym_STAR] = ACTIONS(1049), - [anon_sym_QMARK] = ACTIONS(1051), - [anon_sym_u8] = ACTIONS(1049), - [anon_sym_i8] = ACTIONS(1049), - [anon_sym_u16] = ACTIONS(1049), - [anon_sym_i16] = ACTIONS(1049), - [anon_sym_u32] = ACTIONS(1049), - [anon_sym_i32] = ACTIONS(1049), - [anon_sym_u64] = ACTIONS(1049), - [anon_sym_i64] = ACTIONS(1049), - [anon_sym_u128] = ACTIONS(1049), - [anon_sym_i128] = ACTIONS(1049), - [anon_sym_isize] = ACTIONS(1049), - [anon_sym_usize] = ACTIONS(1049), - [anon_sym_f32] = ACTIONS(1049), - [anon_sym_f64] = ACTIONS(1049), - [anon_sym_bool] = ACTIONS(1049), - [anon_sym_str] = ACTIONS(1049), - [anon_sym_char] = ACTIONS(1049), - [anon_sym_DASH] = ACTIONS(1049), - [anon_sym_SLASH] = ACTIONS(1049), - [anon_sym_PERCENT] = ACTIONS(1049), - [anon_sym_CARET] = ACTIONS(1049), - [anon_sym_BANG] = ACTIONS(1049), - [anon_sym_AMP] = ACTIONS(1049), - [anon_sym_PIPE] = ACTIONS(1049), - [anon_sym_AMP_AMP] = ACTIONS(1051), - [anon_sym_PIPE_PIPE] = ACTIONS(1051), - [anon_sym_LT_LT] = ACTIONS(1049), - [anon_sym_GT_GT] = ACTIONS(1049), - [anon_sym_PLUS_EQ] = ACTIONS(1051), - [anon_sym_DASH_EQ] = ACTIONS(1051), - [anon_sym_STAR_EQ] = ACTIONS(1051), - [anon_sym_SLASH_EQ] = ACTIONS(1051), - [anon_sym_PERCENT_EQ] = ACTIONS(1051), - [anon_sym_CARET_EQ] = ACTIONS(1051), - [anon_sym_AMP_EQ] = ACTIONS(1051), - [anon_sym_PIPE_EQ] = ACTIONS(1051), - [anon_sym_LT_LT_EQ] = ACTIONS(1051), - [anon_sym_GT_GT_EQ] = ACTIONS(1051), - [anon_sym_EQ] = ACTIONS(1049), - [anon_sym_EQ_EQ] = ACTIONS(1051), - [anon_sym_BANG_EQ] = ACTIONS(1051), - [anon_sym_GT] = ACTIONS(1049), - [anon_sym_LT] = ACTIONS(1049), - [anon_sym_GT_EQ] = ACTIONS(1051), - [anon_sym_LT_EQ] = ACTIONS(1051), - [anon_sym_AT] = ACTIONS(1051), - [anon_sym__] = ACTIONS(1049), - [anon_sym_DOT] = ACTIONS(1049), - [anon_sym_DOT_DOT] = ACTIONS(1049), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1051), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1051), - [anon_sym_COMMA] = ACTIONS(1051), - [anon_sym_COLON_COLON] = ACTIONS(1051), - [anon_sym_DASH_GT] = ACTIONS(1051), - [anon_sym_POUND] = ACTIONS(1051), - [anon_sym_SQUOTE] = ACTIONS(1049), - [anon_sym_as] = ACTIONS(1049), - [anon_sym_async] = ACTIONS(1049), - [anon_sym_await] = ACTIONS(1049), - [anon_sym_break] = ACTIONS(1049), - [anon_sym_const] = ACTIONS(1049), - [anon_sym_continue] = ACTIONS(1049), - [anon_sym_default] = ACTIONS(1049), - [anon_sym_enum] = ACTIONS(1049), - [anon_sym_fn] = ACTIONS(1049), - [anon_sym_for] = ACTIONS(1049), - [anon_sym_gen] = ACTIONS(1049), - [anon_sym_if] = ACTIONS(1049), - [anon_sym_impl] = ACTIONS(1049), - [anon_sym_let] = ACTIONS(1049), - [anon_sym_loop] = ACTIONS(1049), - [anon_sym_match] = ACTIONS(1049), - [anon_sym_mod] = ACTIONS(1049), - [anon_sym_pub] = ACTIONS(1049), - [anon_sym_return] = ACTIONS(1049), - [anon_sym_static] = ACTIONS(1049), - [anon_sym_struct] = ACTIONS(1049), - [anon_sym_trait] = ACTIONS(1049), - [anon_sym_type] = ACTIONS(1049), - [anon_sym_union] = ACTIONS(1049), - [anon_sym_unsafe] = ACTIONS(1049), - [anon_sym_use] = ACTIONS(1049), - [anon_sym_where] = ACTIONS(1049), - [anon_sym_while] = ACTIONS(1049), - [sym_mutable_specifier] = ACTIONS(1049), - [sym_integer_literal] = ACTIONS(1051), - [aux_sym_string_literal_token1] = ACTIONS(1051), - [sym_char_literal] = ACTIONS(1051), - [anon_sym_true] = ACTIONS(1049), - [anon_sym_false] = ACTIONS(1049), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1049), - [sym_super] = ACTIONS(1049), - [sym_crate] = ACTIONS(1049), - [sym__raw_string_literal_start] = ACTIONS(1051), - [sym_float_literal] = ACTIONS(1051), + [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(1028), + [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__raw_string_literal_start] = ACTIONS(1028), + [sym_float_literal] = ACTIONS(1028), }, [STATE(211)] = { - [sym_attribute_item] = STATE(1031), - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1936), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1520), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), + [sym_attribute_item] = STATE(1038), + [sym_bracketed_type] = STATE(3752), + [sym_generic_function] = STATE(1492), + [sym_generic_type_with_turbofish] = STATE(3039), + [sym__expression_except_range] = STATE(1409), + [sym__expression] = STATE(1665), + [sym_macro_invocation] = STATE(1529), + [sym_scoped_identifier] = STATE(1540), + [sym_scoped_type_identifier_in_expression_position] = STATE(3335), + [sym_range_expression] = STATE(1505), + [sym_unary_expression] = STATE(1492), + [sym_try_expression] = STATE(1492), + [sym_reference_expression] = STATE(1492), + [sym_binary_expression] = STATE(1492), + [sym_assignment_expression] = STATE(1492), + [sym_compound_assignment_expr] = STATE(1492), + [sym_type_cast_expression] = STATE(1492), + [sym_return_expression] = STATE(1492), + [sym_yield_expression] = STATE(1492), + [sym_call_expression] = STATE(1492), + [sym_array_expression] = STATE(1492), + [sym_parenthesized_expression] = STATE(1492), + [sym_tuple_expression] = STATE(1492), + [sym_unit_expression] = STATE(1492), + [sym_struct_expression] = STATE(1492), + [sym_if_expression] = STATE(1492), + [sym_match_expression] = STATE(1492), + [sym_while_expression] = STATE(1492), + [sym_loop_expression] = STATE(1492), + [sym_for_expression] = STATE(1492), + [sym_const_block] = STATE(1492), + [sym_closure_expression] = STATE(1492), + [sym_closure_parameters] = STATE(229), + [sym_label] = STATE(3689), + [sym_break_expression] = STATE(1492), + [sym_continue_expression] = STATE(1492), + [sym_index_expression] = STATE(1492), + [sym_await_expression] = STATE(1492), + [sym_field_expression] = STATE(1412), + [sym_unsafe_block] = STATE(1492), + [sym_async_block] = STATE(1492), + [sym_gen_block] = STATE(1492), + [sym_try_block] = STATE(1492), + [sym_block] = STATE(1492), + [sym__literal] = STATE(1492), + [sym_string_literal] = STATE(1530), + [sym_raw_string_literal] = STATE(1530), + [sym_boolean_literal] = STATE(1530), [sym_line_comment] = STATE(211), [sym_block_comment] = STATE(211), - [aux_sym_enum_variant_list_repeat1] = STATE(1029), - [sym_identifier] = ACTIONS(339), + [aux_sym_enum_variant_list_repeat1] = STATE(1037), + [sym_identifier] = ACTIONS(344), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(348), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -41283,211 +41414,211 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(874), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), + [anon_sym_async] = ACTIONS(356), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(358), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), + [anon_sym_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(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(115), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [anon_sym_static] = ACTIONS(372), + [anon_sym_union] = ACTIONS(360), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [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(212)] = { [sym_line_comment] = STATE(212), [sym_block_comment] = STATE(212), - [sym_identifier] = ACTIONS(993), - [anon_sym_SEMI] = ACTIONS(995), - [anon_sym_LPAREN] = ACTIONS(995), - [anon_sym_RPAREN] = ACTIONS(995), - [anon_sym_LBRACK] = ACTIONS(995), - [anon_sym_RBRACK] = ACTIONS(995), - [anon_sym_LBRACE] = ACTIONS(995), - [anon_sym_RBRACE] = ACTIONS(995), - [anon_sym_EQ_GT] = ACTIONS(995), - [anon_sym_COLON] = ACTIONS(993), - [anon_sym_DOLLAR] = ACTIONS(995), - [anon_sym_PLUS] = ACTIONS(993), - [anon_sym_STAR] = ACTIONS(993), - [anon_sym_QMARK] = ACTIONS(995), - [anon_sym_u8] = ACTIONS(993), - [anon_sym_i8] = ACTIONS(993), - [anon_sym_u16] = ACTIONS(993), - [anon_sym_i16] = ACTIONS(993), - [anon_sym_u32] = ACTIONS(993), - [anon_sym_i32] = ACTIONS(993), - [anon_sym_u64] = ACTIONS(993), - [anon_sym_i64] = ACTIONS(993), - [anon_sym_u128] = ACTIONS(993), - [anon_sym_i128] = ACTIONS(993), - [anon_sym_isize] = ACTIONS(993), - [anon_sym_usize] = ACTIONS(993), - [anon_sym_f32] = ACTIONS(993), - [anon_sym_f64] = ACTIONS(993), - [anon_sym_bool] = ACTIONS(993), - [anon_sym_str] = ACTIONS(993), - [anon_sym_char] = ACTIONS(993), - [anon_sym_DASH] = ACTIONS(993), - [anon_sym_SLASH] = ACTIONS(993), - [anon_sym_PERCENT] = ACTIONS(993), - [anon_sym_CARET] = ACTIONS(993), - [anon_sym_BANG] = ACTIONS(993), - [anon_sym_AMP] = ACTIONS(993), - [anon_sym_PIPE] = ACTIONS(993), - [anon_sym_AMP_AMP] = ACTIONS(995), - [anon_sym_PIPE_PIPE] = ACTIONS(995), - [anon_sym_LT_LT] = ACTIONS(993), - [anon_sym_GT_GT] = ACTIONS(993), - [anon_sym_PLUS_EQ] = ACTIONS(995), - [anon_sym_DASH_EQ] = ACTIONS(995), - [anon_sym_STAR_EQ] = ACTIONS(995), - [anon_sym_SLASH_EQ] = ACTIONS(995), - [anon_sym_PERCENT_EQ] = ACTIONS(995), - [anon_sym_CARET_EQ] = ACTIONS(995), - [anon_sym_AMP_EQ] = ACTIONS(995), - [anon_sym_PIPE_EQ] = ACTIONS(995), - [anon_sym_LT_LT_EQ] = ACTIONS(995), - [anon_sym_GT_GT_EQ] = ACTIONS(995), - [anon_sym_EQ] = ACTIONS(993), - [anon_sym_EQ_EQ] = ACTIONS(995), - [anon_sym_BANG_EQ] = ACTIONS(995), - [anon_sym_GT] = ACTIONS(993), - [anon_sym_LT] = ACTIONS(993), - [anon_sym_GT_EQ] = ACTIONS(995), - [anon_sym_LT_EQ] = ACTIONS(995), - [anon_sym_AT] = ACTIONS(995), - [anon_sym__] = ACTIONS(993), - [anon_sym_DOT] = ACTIONS(993), - [anon_sym_DOT_DOT] = ACTIONS(993), - [anon_sym_DOT_DOT_DOT] = ACTIONS(995), - [anon_sym_DOT_DOT_EQ] = ACTIONS(995), - [anon_sym_COMMA] = ACTIONS(995), - [anon_sym_COLON_COLON] = ACTIONS(995), - [anon_sym_DASH_GT] = ACTIONS(995), - [anon_sym_POUND] = ACTIONS(995), - [anon_sym_SQUOTE] = ACTIONS(993), - [anon_sym_as] = ACTIONS(993), - [anon_sym_async] = ACTIONS(993), - [anon_sym_await] = ACTIONS(993), - [anon_sym_break] = ACTIONS(993), - [anon_sym_const] = ACTIONS(993), - [anon_sym_continue] = ACTIONS(993), - [anon_sym_default] = ACTIONS(993), - [anon_sym_enum] = ACTIONS(993), - [anon_sym_fn] = ACTIONS(993), - [anon_sym_for] = ACTIONS(993), - [anon_sym_gen] = ACTIONS(993), - [anon_sym_if] = ACTIONS(993), - [anon_sym_impl] = ACTIONS(993), - [anon_sym_let] = ACTIONS(993), - [anon_sym_loop] = ACTIONS(993), - [anon_sym_match] = ACTIONS(993), - [anon_sym_mod] = ACTIONS(993), - [anon_sym_pub] = ACTIONS(993), - [anon_sym_return] = ACTIONS(993), - [anon_sym_static] = ACTIONS(993), - [anon_sym_struct] = ACTIONS(993), - [anon_sym_trait] = ACTIONS(993), - [anon_sym_type] = ACTIONS(993), - [anon_sym_union] = ACTIONS(993), - [anon_sym_unsafe] = ACTIONS(993), - [anon_sym_use] = ACTIONS(993), - [anon_sym_where] = ACTIONS(993), - [anon_sym_while] = ACTIONS(993), - [sym_mutable_specifier] = ACTIONS(993), - [sym_integer_literal] = ACTIONS(995), - [aux_sym_string_literal_token1] = ACTIONS(995), - [sym_char_literal] = ACTIONS(995), - [anon_sym_true] = ACTIONS(993), - [anon_sym_false] = ACTIONS(993), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(993), - [sym_super] = ACTIONS(993), - [sym_crate] = ACTIONS(993), - [sym__raw_string_literal_start] = ACTIONS(995), - [sym_float_literal] = ACTIONS(995), + [sym_identifier] = ACTIONS(1006), + [anon_sym_SEMI] = ACTIONS(1008), + [anon_sym_LPAREN] = ACTIONS(1008), + [anon_sym_RPAREN] = ACTIONS(1008), + [anon_sym_LBRACK] = ACTIONS(1008), + [anon_sym_RBRACK] = ACTIONS(1008), + [anon_sym_LBRACE] = ACTIONS(1008), + [anon_sym_RBRACE] = ACTIONS(1008), + [anon_sym_EQ_GT] = ACTIONS(1008), + [anon_sym_COLON] = ACTIONS(1006), + [anon_sym_DOLLAR] = ACTIONS(1008), + [anon_sym_PLUS] = ACTIONS(1006), + [anon_sym_STAR] = ACTIONS(1006), + [anon_sym_QMARK] = ACTIONS(1008), + [anon_sym_u8] = ACTIONS(1006), + [anon_sym_i8] = ACTIONS(1006), + [anon_sym_u16] = ACTIONS(1006), + [anon_sym_i16] = ACTIONS(1006), + [anon_sym_u32] = ACTIONS(1006), + [anon_sym_i32] = ACTIONS(1006), + [anon_sym_u64] = ACTIONS(1006), + [anon_sym_i64] = ACTIONS(1006), + [anon_sym_u128] = ACTIONS(1006), + [anon_sym_i128] = ACTIONS(1006), + [anon_sym_isize] = ACTIONS(1006), + [anon_sym_usize] = ACTIONS(1006), + [anon_sym_f32] = ACTIONS(1006), + [anon_sym_f64] = ACTIONS(1006), + [anon_sym_bool] = ACTIONS(1006), + [anon_sym_str] = ACTIONS(1006), + [anon_sym_char] = ACTIONS(1006), + [anon_sym_DASH] = ACTIONS(1006), + [anon_sym_SLASH] = ACTIONS(1006), + [anon_sym_PERCENT] = ACTIONS(1006), + [anon_sym_CARET] = ACTIONS(1006), + [anon_sym_BANG] = ACTIONS(1006), + [anon_sym_AMP] = ACTIONS(1006), + [anon_sym_PIPE] = ACTIONS(1006), + [anon_sym_AMP_AMP] = ACTIONS(1008), + [anon_sym_PIPE_PIPE] = ACTIONS(1008), + [anon_sym_LT_LT] = ACTIONS(1006), + [anon_sym_GT_GT] = ACTIONS(1006), + [anon_sym_PLUS_EQ] = ACTIONS(1008), + [anon_sym_DASH_EQ] = ACTIONS(1008), + [anon_sym_STAR_EQ] = ACTIONS(1008), + [anon_sym_SLASH_EQ] = ACTIONS(1008), + [anon_sym_PERCENT_EQ] = ACTIONS(1008), + [anon_sym_CARET_EQ] = ACTIONS(1008), + [anon_sym_AMP_EQ] = ACTIONS(1008), + [anon_sym_PIPE_EQ] = ACTIONS(1008), + [anon_sym_LT_LT_EQ] = ACTIONS(1008), + [anon_sym_GT_GT_EQ] = ACTIONS(1008), + [anon_sym_EQ] = ACTIONS(1006), + [anon_sym_EQ_EQ] = ACTIONS(1008), + [anon_sym_BANG_EQ] = ACTIONS(1008), + [anon_sym_GT] = ACTIONS(1006), + [anon_sym_LT] = ACTIONS(1006), + [anon_sym_GT_EQ] = ACTIONS(1008), + [anon_sym_LT_EQ] = ACTIONS(1008), + [anon_sym_AT] = ACTIONS(1008), + [anon_sym__] = ACTIONS(1006), + [anon_sym_DOT] = ACTIONS(1006), + [anon_sym_DOT_DOT] = ACTIONS(1006), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1008), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1008), + [anon_sym_COMMA] = ACTIONS(1008), + [anon_sym_COLON_COLON] = ACTIONS(1008), + [anon_sym_DASH_GT] = ACTIONS(1008), + [anon_sym_POUND] = ACTIONS(1008), + [anon_sym_SQUOTE] = ACTIONS(1006), + [anon_sym_as] = ACTIONS(1006), + [anon_sym_async] = ACTIONS(1006), + [anon_sym_await] = ACTIONS(1006), + [anon_sym_break] = ACTIONS(1006), + [anon_sym_const] = ACTIONS(1006), + [anon_sym_continue] = ACTIONS(1006), + [anon_sym_default] = ACTIONS(1006), + [anon_sym_enum] = ACTIONS(1006), + [anon_sym_fn] = ACTIONS(1006), + [anon_sym_for] = ACTIONS(1006), + [anon_sym_gen] = ACTIONS(1006), + [anon_sym_if] = ACTIONS(1006), + [anon_sym_impl] = ACTIONS(1006), + [anon_sym_let] = ACTIONS(1006), + [anon_sym_loop] = ACTIONS(1006), + [anon_sym_match] = ACTIONS(1006), + [anon_sym_mod] = ACTIONS(1006), + [anon_sym_pub] = ACTIONS(1006), + [anon_sym_return] = ACTIONS(1006), + [anon_sym_static] = ACTIONS(1006), + [anon_sym_struct] = ACTIONS(1006), + [anon_sym_trait] = ACTIONS(1006), + [anon_sym_type] = ACTIONS(1006), + [anon_sym_union] = ACTIONS(1006), + [anon_sym_unsafe] = ACTIONS(1006), + [anon_sym_use] = ACTIONS(1006), + [anon_sym_where] = ACTIONS(1006), + [anon_sym_while] = ACTIONS(1006), + [sym_mutable_specifier] = ACTIONS(1006), + [sym_integer_literal] = ACTIONS(1008), + [aux_sym_string_literal_token1] = ACTIONS(1008), + [sym_char_literal] = ACTIONS(1008), + [anon_sym_true] = ACTIONS(1006), + [anon_sym_false] = ACTIONS(1006), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1006), + [sym_super] = ACTIONS(1006), + [sym_crate] = ACTIONS(1006), + [sym__raw_string_literal_start] = ACTIONS(1008), + [sym_float_literal] = ACTIONS(1008), }, [STATE(213)] = { - [sym_attribute_item] = STATE(1031), - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1660), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1520), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), + [sym_attribute_item] = STATE(1038), + [sym_bracketed_type] = STATE(3752), + [sym_generic_function] = STATE(1492), + [sym_generic_type_with_turbofish] = STATE(3039), + [sym__expression_except_range] = STATE(1409), + [sym__expression] = STATE(1929), + [sym_macro_invocation] = STATE(1529), + [sym_scoped_identifier] = STATE(1540), + [sym_scoped_type_identifier_in_expression_position] = STATE(3335), + [sym_range_expression] = STATE(1505), + [sym_unary_expression] = STATE(1492), + [sym_try_expression] = STATE(1492), + [sym_reference_expression] = STATE(1492), + [sym_binary_expression] = STATE(1492), + [sym_assignment_expression] = STATE(1492), + [sym_compound_assignment_expr] = STATE(1492), + [sym_type_cast_expression] = STATE(1492), + [sym_return_expression] = STATE(1492), + [sym_yield_expression] = STATE(1492), + [sym_call_expression] = STATE(1492), + [sym_array_expression] = STATE(1492), + [sym_parenthesized_expression] = STATE(1492), + [sym_tuple_expression] = STATE(1492), + [sym_unit_expression] = STATE(1492), + [sym_struct_expression] = STATE(1492), + [sym_if_expression] = STATE(1492), + [sym_match_expression] = STATE(1492), + [sym_while_expression] = STATE(1492), + [sym_loop_expression] = STATE(1492), + [sym_for_expression] = STATE(1492), + [sym_const_block] = STATE(1492), + [sym_closure_expression] = STATE(1492), + [sym_closure_parameters] = STATE(229), + [sym_label] = STATE(3689), + [sym_break_expression] = STATE(1492), + [sym_continue_expression] = STATE(1492), + [sym_index_expression] = STATE(1492), + [sym_await_expression] = STATE(1492), + [sym_field_expression] = STATE(1412), + [sym_unsafe_block] = STATE(1492), + [sym_async_block] = STATE(1492), + [sym_gen_block] = STATE(1492), + [sym_try_block] = STATE(1492), + [sym_block] = STATE(1492), + [sym__literal] = STATE(1492), + [sym_string_literal] = STATE(1530), + [sym_raw_string_literal] = STATE(1530), + [sym_boolean_literal] = STATE(1530), [sym_line_comment] = STATE(213), [sym_block_comment] = STATE(213), - [aux_sym_enum_variant_list_repeat1] = STATE(1029), - [sym_identifier] = ACTIONS(339), + [aux_sym_enum_variant_list_repeat1] = STATE(1037), + [sym_identifier] = ACTIONS(344), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(348), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -41513,323 +41644,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(874), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), + [anon_sym_async] = ACTIONS(356), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(358), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), + [anon_sym_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(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(115), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [anon_sym_static] = ACTIONS(372), + [anon_sym_union] = ACTIONS(360), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [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(214)] = { + [sym_attribute_item] = STATE(1038), + [sym_bracketed_type] = STATE(3752), + [sym_generic_function] = STATE(1492), + [sym_generic_type_with_turbofish] = STATE(3039), + [sym__expression_except_range] = STATE(1409), + [sym__expression] = STATE(1951), + [sym_macro_invocation] = STATE(1529), + [sym_scoped_identifier] = STATE(1540), + [sym_scoped_type_identifier_in_expression_position] = STATE(3335), + [sym_range_expression] = STATE(1505), + [sym_unary_expression] = STATE(1492), + [sym_try_expression] = STATE(1492), + [sym_reference_expression] = STATE(1492), + [sym_binary_expression] = STATE(1492), + [sym_assignment_expression] = STATE(1492), + [sym_compound_assignment_expr] = STATE(1492), + [sym_type_cast_expression] = STATE(1492), + [sym_return_expression] = STATE(1492), + [sym_yield_expression] = STATE(1492), + [sym_call_expression] = STATE(1492), + [sym_array_expression] = STATE(1492), + [sym_parenthesized_expression] = STATE(1492), + [sym_tuple_expression] = STATE(1492), + [sym_unit_expression] = STATE(1492), + [sym_struct_expression] = STATE(1492), + [sym_if_expression] = STATE(1492), + [sym_match_expression] = STATE(1492), + [sym_while_expression] = STATE(1492), + [sym_loop_expression] = STATE(1492), + [sym_for_expression] = STATE(1492), + [sym_const_block] = STATE(1492), + [sym_closure_expression] = STATE(1492), + [sym_closure_parameters] = STATE(229), + [sym_label] = STATE(3689), + [sym_break_expression] = STATE(1492), + [sym_continue_expression] = STATE(1492), + [sym_index_expression] = STATE(1492), + [sym_await_expression] = STATE(1492), + [sym_field_expression] = STATE(1412), + [sym_unsafe_block] = STATE(1492), + [sym_async_block] = STATE(1492), + [sym_gen_block] = STATE(1492), + [sym_try_block] = STATE(1492), + [sym_block] = STATE(1492), + [sym__literal] = STATE(1492), + [sym_string_literal] = STATE(1530), + [sym_raw_string_literal] = STATE(1530), + [sym_boolean_literal] = STATE(1530), [sym_line_comment] = STATE(214), [sym_block_comment] = STATE(214), - [sym_identifier] = ACTIONS(997), - [anon_sym_SEMI] = ACTIONS(999), - [anon_sym_LPAREN] = ACTIONS(999), - [anon_sym_RPAREN] = ACTIONS(999), - [anon_sym_LBRACK] = ACTIONS(999), - [anon_sym_RBRACK] = ACTIONS(999), - [anon_sym_LBRACE] = ACTIONS(999), - [anon_sym_RBRACE] = ACTIONS(999), - [anon_sym_EQ_GT] = ACTIONS(999), - [anon_sym_COLON] = ACTIONS(997), - [anon_sym_DOLLAR] = ACTIONS(999), - [anon_sym_PLUS] = ACTIONS(997), - [anon_sym_STAR] = ACTIONS(997), - [anon_sym_QMARK] = ACTIONS(999), - [anon_sym_u8] = ACTIONS(997), - [anon_sym_i8] = ACTIONS(997), - [anon_sym_u16] = ACTIONS(997), - [anon_sym_i16] = ACTIONS(997), - [anon_sym_u32] = ACTIONS(997), - [anon_sym_i32] = ACTIONS(997), - [anon_sym_u64] = ACTIONS(997), - [anon_sym_i64] = ACTIONS(997), - [anon_sym_u128] = ACTIONS(997), - [anon_sym_i128] = ACTIONS(997), - [anon_sym_isize] = ACTIONS(997), - [anon_sym_usize] = ACTIONS(997), - [anon_sym_f32] = ACTIONS(997), - [anon_sym_f64] = ACTIONS(997), - [anon_sym_bool] = ACTIONS(997), - [anon_sym_str] = ACTIONS(997), - [anon_sym_char] = ACTIONS(997), - [anon_sym_DASH] = ACTIONS(997), - [anon_sym_SLASH] = ACTIONS(997), - [anon_sym_PERCENT] = ACTIONS(997), - [anon_sym_CARET] = ACTIONS(997), - [anon_sym_BANG] = ACTIONS(997), - [anon_sym_AMP] = ACTIONS(997), - [anon_sym_PIPE] = ACTIONS(997), - [anon_sym_AMP_AMP] = ACTIONS(999), - [anon_sym_PIPE_PIPE] = ACTIONS(999), - [anon_sym_LT_LT] = ACTIONS(997), - [anon_sym_GT_GT] = ACTIONS(997), - [anon_sym_PLUS_EQ] = ACTIONS(999), - [anon_sym_DASH_EQ] = ACTIONS(999), - [anon_sym_STAR_EQ] = ACTIONS(999), - [anon_sym_SLASH_EQ] = ACTIONS(999), - [anon_sym_PERCENT_EQ] = ACTIONS(999), - [anon_sym_CARET_EQ] = ACTIONS(999), - [anon_sym_AMP_EQ] = ACTIONS(999), - [anon_sym_PIPE_EQ] = ACTIONS(999), - [anon_sym_LT_LT_EQ] = ACTIONS(999), - [anon_sym_GT_GT_EQ] = ACTIONS(999), - [anon_sym_EQ] = ACTIONS(997), - [anon_sym_EQ_EQ] = ACTIONS(999), - [anon_sym_BANG_EQ] = ACTIONS(999), - [anon_sym_GT] = ACTIONS(997), - [anon_sym_LT] = ACTIONS(997), - [anon_sym_GT_EQ] = ACTIONS(999), - [anon_sym_LT_EQ] = ACTIONS(999), - [anon_sym_AT] = ACTIONS(999), - [anon_sym__] = ACTIONS(997), - [anon_sym_DOT] = ACTIONS(997), - [anon_sym_DOT_DOT] = ACTIONS(997), - [anon_sym_DOT_DOT_DOT] = ACTIONS(999), - [anon_sym_DOT_DOT_EQ] = ACTIONS(999), - [anon_sym_COMMA] = ACTIONS(999), - [anon_sym_COLON_COLON] = ACTIONS(999), - [anon_sym_DASH_GT] = ACTIONS(999), - [anon_sym_POUND] = ACTIONS(999), - [anon_sym_SQUOTE] = ACTIONS(997), - [anon_sym_as] = ACTIONS(997), - [anon_sym_async] = ACTIONS(997), - [anon_sym_await] = ACTIONS(997), - [anon_sym_break] = ACTIONS(997), - [anon_sym_const] = ACTIONS(997), - [anon_sym_continue] = ACTIONS(997), - [anon_sym_default] = ACTIONS(997), - [anon_sym_enum] = ACTIONS(997), - [anon_sym_fn] = ACTIONS(997), - [anon_sym_for] = ACTIONS(997), - [anon_sym_gen] = ACTIONS(997), - [anon_sym_if] = ACTIONS(997), - [anon_sym_impl] = ACTIONS(997), - [anon_sym_let] = ACTIONS(997), - [anon_sym_loop] = ACTIONS(997), - [anon_sym_match] = ACTIONS(997), - [anon_sym_mod] = ACTIONS(997), - [anon_sym_pub] = ACTIONS(997), - [anon_sym_return] = ACTIONS(997), - [anon_sym_static] = ACTIONS(997), - [anon_sym_struct] = ACTIONS(997), - [anon_sym_trait] = ACTIONS(997), - [anon_sym_type] = ACTIONS(997), - [anon_sym_union] = ACTIONS(997), - [anon_sym_unsafe] = ACTIONS(997), - [anon_sym_use] = ACTIONS(997), - [anon_sym_where] = ACTIONS(997), - [anon_sym_while] = ACTIONS(997), - [sym_mutable_specifier] = ACTIONS(997), - [sym_integer_literal] = ACTIONS(999), - [aux_sym_string_literal_token1] = ACTIONS(999), - [sym_char_literal] = ACTIONS(999), - [anon_sym_true] = ACTIONS(997), - [anon_sym_false] = ACTIONS(997), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(997), - [sym_super] = ACTIONS(997), - [sym_crate] = ACTIONS(997), - [sym__raw_string_literal_start] = ACTIONS(999), - [sym_float_literal] = ACTIONS(999), - }, - [STATE(215)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3056), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1627), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1591), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1439), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [sym_line_comment] = STATE(215), - [sym_block_comment] = STATE(215), - [sym_identifier] = ACTIONS(467), + [aux_sym_enum_variant_list_repeat1] = STATE(1037), + [sym_identifier] = ACTIONS(344), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(901), - [anon_sym_u8] = ACTIONS(469), - [anon_sym_i8] = ACTIONS(469), - [anon_sym_u16] = ACTIONS(469), - [anon_sym_i16] = ACTIONS(469), - [anon_sym_u32] = ACTIONS(469), - [anon_sym_i32] = ACTIONS(469), - [anon_sym_u64] = ACTIONS(469), - [anon_sym_i64] = ACTIONS(469), - [anon_sym_u128] = ACTIONS(469), - [anon_sym_i128] = ACTIONS(469), - [anon_sym_isize] = ACTIONS(469), - [anon_sym_usize] = ACTIONS(469), - [anon_sym_f32] = ACTIONS(469), - [anon_sym_f64] = ACTIONS(469), - [anon_sym_bool] = ACTIONS(469), - [anon_sym_str] = ACTIONS(469), - [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(503), - [anon_sym_BANG] = ACTIONS(901), - [anon_sym_AMP] = ACTIONS(903), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1053), - [anon_sym_DOT_DOT] = ACTIONS(1055), - [anon_sym_COLON_COLON] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(1057), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(477), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(477), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(489), - [sym_super] = ACTIONS(491), - [sym_crate] = ACTIONS(491), - [sym_metavariable] = ACTIONS(493), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), - }, - [STATE(216)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1747), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1520), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1439), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [sym_line_comment] = STATE(216), - [sym_block_comment] = STATE(216), - [sym_identifier] = ACTIONS(339), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(348), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -41848,104 +41752,103 @@ 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(349), + [anon_sym_DASH] = ACTIONS(21), [anon_sym_BANG] = ACTIONS(21), [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1053), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_DASH_GT] = ACTIONS(1057), + [anon_sym_POUND] = ACTIONS(874), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), + [anon_sym_async] = ACTIONS(356), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(358), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), + [anon_sym_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(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(115), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [anon_sym_static] = ACTIONS(372), + [anon_sym_union] = ACTIONS(360), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [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(217)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1865), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1520), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [sym_line_comment] = STATE(217), - [sym_block_comment] = STATE(217), - [aux_sym_tuple_expression_repeat1] = STATE(245), - [sym_identifier] = ACTIONS(339), + [STATE(215)] = { + [sym_bracketed_type] = STATE(3752), + [sym_generic_function] = STATE(1492), + [sym_generic_type_with_turbofish] = STATE(3039), + [sym__expression_except_range] = STATE(1409), + [sym__expression] = STATE(1903), + [sym_macro_invocation] = STATE(1529), + [sym_scoped_identifier] = STATE(1540), + [sym_scoped_type_identifier_in_expression_position] = STATE(3335), + [sym_range_expression] = STATE(1505), + [sym_unary_expression] = STATE(1492), + [sym_try_expression] = STATE(1492), + [sym_reference_expression] = STATE(1492), + [sym_binary_expression] = STATE(1492), + [sym_assignment_expression] = STATE(1492), + [sym_compound_assignment_expr] = STATE(1492), + [sym_type_cast_expression] = STATE(1492), + [sym_return_expression] = STATE(1492), + [sym_yield_expression] = STATE(1492), + [sym_call_expression] = STATE(1492), + [sym_array_expression] = STATE(1492), + [sym_parenthesized_expression] = STATE(1492), + [sym_tuple_expression] = STATE(1492), + [sym_unit_expression] = STATE(1492), + [sym_struct_expression] = STATE(1492), + [sym_if_expression] = STATE(1492), + [sym_match_expression] = STATE(1492), + [sym_while_expression] = STATE(1492), + [sym_loop_expression] = STATE(1492), + [sym_for_expression] = STATE(1492), + [sym_const_block] = STATE(1492), + [sym_closure_expression] = STATE(1492), + [sym_closure_parameters] = STATE(229), + [sym_label] = STATE(3689), + [sym_break_expression] = STATE(1492), + [sym_continue_expression] = STATE(1492), + [sym_index_expression] = STATE(1492), + [sym_await_expression] = STATE(1492), + [sym_field_expression] = STATE(1412), + [sym_unsafe_block] = STATE(1492), + [sym_async_block] = STATE(1492), + [sym_gen_block] = STATE(1492), + [sym_try_block] = STATE(1492), + [sym_block] = STATE(1492), + [sym__literal] = STATE(1492), + [sym_string_literal] = STATE(1530), + [sym_raw_string_literal] = STATE(1530), + [sym_boolean_literal] = STATE(1530), + [sym_line_comment] = STATE(215), + [sym_block_comment] = STATE(215), + [aux_sym_tuple_expression_repeat1] = STATE(216), + [sym_identifier] = ACTIONS(344), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(1059), + [anon_sym_RPAREN] = ACTIONS(1058), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(348), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -41972,92 +41875,436 @@ 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(351), + [anon_sym_async] = ACTIONS(356), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(358), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), + [anon_sym_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(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(115), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [anon_sym_static] = ACTIONS(372), + [anon_sym_union] = ACTIONS(360), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [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(216)] = { + [sym_bracketed_type] = STATE(3752), + [sym_generic_function] = STATE(1492), + [sym_generic_type_with_turbofish] = STATE(3039), + [sym__expression_except_range] = STATE(1409), + [sym__expression] = STATE(1943), + [sym_macro_invocation] = STATE(1529), + [sym_scoped_identifier] = STATE(1540), + [sym_scoped_type_identifier_in_expression_position] = STATE(3335), + [sym_range_expression] = STATE(1505), + [sym_unary_expression] = STATE(1492), + [sym_try_expression] = STATE(1492), + [sym_reference_expression] = STATE(1492), + [sym_binary_expression] = STATE(1492), + [sym_assignment_expression] = STATE(1492), + [sym_compound_assignment_expr] = STATE(1492), + [sym_type_cast_expression] = STATE(1492), + [sym_return_expression] = STATE(1492), + [sym_yield_expression] = STATE(1492), + [sym_call_expression] = STATE(1492), + [sym_array_expression] = STATE(1492), + [sym_parenthesized_expression] = STATE(1492), + [sym_tuple_expression] = STATE(1492), + [sym_unit_expression] = STATE(1492), + [sym_struct_expression] = STATE(1492), + [sym_if_expression] = STATE(1492), + [sym_match_expression] = STATE(1492), + [sym_while_expression] = STATE(1492), + [sym_loop_expression] = STATE(1492), + [sym_for_expression] = STATE(1492), + [sym_const_block] = STATE(1492), + [sym_closure_expression] = STATE(1492), + [sym_closure_parameters] = STATE(229), + [sym_label] = STATE(3689), + [sym_break_expression] = STATE(1492), + [sym_continue_expression] = STATE(1492), + [sym_index_expression] = STATE(1492), + [sym_await_expression] = STATE(1492), + [sym_field_expression] = STATE(1412), + [sym_unsafe_block] = STATE(1492), + [sym_async_block] = STATE(1492), + [sym_gen_block] = STATE(1492), + [sym_try_block] = STATE(1492), + [sym_block] = STATE(1492), + [sym__literal] = STATE(1492), + [sym_string_literal] = STATE(1530), + [sym_raw_string_literal] = STATE(1530), + [sym_boolean_literal] = STATE(1530), + [sym_line_comment] = STATE(216), + [sym_block_comment] = STATE(216), + [aux_sym_tuple_expression_repeat1] = STATE(216), + [sym_identifier] = ACTIONS(1060), + [anon_sym_LPAREN] = ACTIONS(1063), + [anon_sym_RPAREN] = ACTIONS(1066), + [anon_sym_LBRACK] = ACTIONS(1068), + [anon_sym_LBRACE] = ACTIONS(1071), + [anon_sym_STAR] = ACTIONS(1074), + [anon_sym_u8] = ACTIONS(1077), + [anon_sym_i8] = ACTIONS(1077), + [anon_sym_u16] = ACTIONS(1077), + [anon_sym_i16] = ACTIONS(1077), + [anon_sym_u32] = ACTIONS(1077), + [anon_sym_i32] = ACTIONS(1077), + [anon_sym_u64] = ACTIONS(1077), + [anon_sym_i64] = ACTIONS(1077), + [anon_sym_u128] = ACTIONS(1077), + [anon_sym_i128] = ACTIONS(1077), + [anon_sym_isize] = ACTIONS(1077), + [anon_sym_usize] = ACTIONS(1077), + [anon_sym_f32] = ACTIONS(1077), + [anon_sym_f64] = ACTIONS(1077), + [anon_sym_bool] = ACTIONS(1077), + [anon_sym_str] = ACTIONS(1077), + [anon_sym_char] = ACTIONS(1077), + [anon_sym_DASH] = ACTIONS(1074), + [anon_sym_BANG] = ACTIONS(1074), + [anon_sym_AMP] = ACTIONS(1080), + [anon_sym_PIPE] = ACTIONS(1083), + [anon_sym_LT] = ACTIONS(1086), + [anon_sym_DOT_DOT] = ACTIONS(1089), + [anon_sym_COLON_COLON] = ACTIONS(1092), + [anon_sym_SQUOTE] = ACTIONS(1095), + [anon_sym_async] = ACTIONS(1098), + [anon_sym_break] = ACTIONS(1101), + [anon_sym_const] = ACTIONS(1104), + [anon_sym_continue] = ACTIONS(1107), + [anon_sym_default] = ACTIONS(1110), + [anon_sym_for] = ACTIONS(1113), + [anon_sym_gen] = ACTIONS(1116), + [anon_sym_if] = ACTIONS(1119), + [anon_sym_loop] = ACTIONS(1122), + [anon_sym_match] = ACTIONS(1125), + [anon_sym_return] = ACTIONS(1128), + [anon_sym_static] = ACTIONS(1131), + [anon_sym_union] = ACTIONS(1110), + [anon_sym_unsafe] = ACTIONS(1134), + [anon_sym_while] = ACTIONS(1137), + [anon_sym_yield] = ACTIONS(1140), + [anon_sym_move] = ACTIONS(1143), + [anon_sym_try] = ACTIONS(1146), + [sym_integer_literal] = ACTIONS(1149), + [aux_sym_string_literal_token1] = ACTIONS(1152), + [sym_char_literal] = ACTIONS(1149), + [anon_sym_true] = ACTIONS(1155), + [anon_sym_false] = ACTIONS(1155), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1158), + [sym_super] = ACTIONS(1161), + [sym_crate] = ACTIONS(1161), + [sym_metavariable] = ACTIONS(1164), + [sym__raw_string_literal_start] = ACTIONS(1167), + [sym_float_literal] = ACTIONS(1149), + }, + [STATE(217)] = { + [sym_bracketed_type] = STATE(3752), + [sym_generic_function] = STATE(1492), + [sym_generic_type_with_turbofish] = STATE(3085), + [sym__expression_except_range] = STATE(1409), + [sym__expression] = STATE(1541), + [sym_macro_invocation] = STATE(1529), + [sym_scoped_identifier] = STATE(1604), + [sym_scoped_type_identifier_in_expression_position] = STATE(3335), + [sym_range_expression] = STATE(1505), + [sym_unary_expression] = STATE(1492), + [sym_try_expression] = STATE(1492), + [sym_reference_expression] = STATE(1492), + [sym_binary_expression] = STATE(1492), + [sym_assignment_expression] = STATE(1492), + [sym_compound_assignment_expr] = STATE(1492), + [sym_type_cast_expression] = STATE(1492), + [sym_return_expression] = STATE(1492), + [sym_yield_expression] = STATE(1492), + [sym_call_expression] = STATE(1492), + [sym_array_expression] = STATE(1492), + [sym_parenthesized_expression] = STATE(1492), + [sym_tuple_expression] = STATE(1492), + [sym_unit_expression] = STATE(1492), + [sym_struct_expression] = STATE(1492), + [sym_if_expression] = STATE(1492), + [sym_match_expression] = STATE(1492), + [sym_while_expression] = STATE(1492), + [sym_loop_expression] = STATE(1492), + [sym_for_expression] = STATE(1492), + [sym_const_block] = STATE(1492), + [sym_closure_expression] = STATE(1492), + [sym_closure_parameters] = STATE(221), + [sym_label] = STATE(3689), + [sym_break_expression] = STATE(1492), + [sym_continue_expression] = STATE(1492), + [sym_index_expression] = STATE(1492), + [sym_await_expression] = STATE(1492), + [sym_field_expression] = STATE(1412), + [sym_unsafe_block] = STATE(1492), + [sym_async_block] = STATE(1492), + [sym_gen_block] = STATE(1492), + [sym_try_block] = STATE(1492), + [sym_block] = STATE(1492), + [sym__literal] = STATE(1492), + [sym_string_literal] = STATE(1530), + [sym_raw_string_literal] = STATE(1530), + [sym_boolean_literal] = STATE(1530), + [sym_line_comment] = STATE(217), + [sym_block_comment] = STATE(217), + [sym_identifier] = ACTIONS(470), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(348), + [anon_sym_STAR] = ACTIONS(978), + [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(978), + [anon_sym_BANG] = ACTIONS(978), + [anon_sym_AMP] = ACTIONS(980), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1170), + [anon_sym_COLON_COLON] = ACTIONS(476), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(356), + [anon_sym_break] = ACTIONS(510), + [anon_sym_const] = ACTIONS(358), + [anon_sym_continue] = ACTIONS(512), + [anon_sym_default] = ACTIONS(480), + [anon_sym_for] = ACTIONS(362), + [anon_sym_gen] = ACTIONS(514), + [anon_sym_if] = ACTIONS(366), + [anon_sym_loop] = ACTIONS(368), + [anon_sym_match] = ACTIONS(370), + [anon_sym_return] = ACTIONS(516), + [anon_sym_static] = ACTIONS(518), + [anon_sym_union] = ACTIONS(480), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [sym_mutable_specifier] = ACTIONS(1172), + [anon_sym_raw] = ACTIONS(1174), + [anon_sym_yield] = ACTIONS(520), + [anon_sym_move] = ACTIONS(522), + [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(492), + [sym_super] = ACTIONS(494), + [sym_crate] = ACTIONS(494), + [sym_metavariable] = ACTIONS(496), + [sym__raw_string_literal_start] = ACTIONS(119), + [sym_float_literal] = ACTIONS(99), }, [STATE(218)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1548), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1520), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), + [sym_bracketed_type] = STATE(3650), + [sym_generic_function] = STATE(1711), + [sym_generic_type_with_turbofish] = STATE(3091), + [sym__expression_except_range] = STATE(1658), + [sym__expression] = STATE(1724), + [sym_macro_invocation] = STATE(1717), + [sym_scoped_identifier] = STATE(1623), + [sym_scoped_type_identifier_in_expression_position] = STATE(3337), + [sym_range_expression] = STATE(1715), + [sym_unary_expression] = STATE(1711), + [sym_try_expression] = STATE(1711), + [sym_reference_expression] = STATE(1711), + [sym_binary_expression] = STATE(1711), + [sym_assignment_expression] = STATE(1711), + [sym_compound_assignment_expr] = STATE(1711), + [sym_type_cast_expression] = STATE(1711), + [sym_return_expression] = STATE(1711), + [sym_yield_expression] = STATE(1711), + [sym_call_expression] = STATE(1711), + [sym_array_expression] = STATE(1711), + [sym_parenthesized_expression] = STATE(1711), + [sym_tuple_expression] = STATE(1711), + [sym_unit_expression] = STATE(1711), + [sym_struct_expression] = STATE(1711), + [sym_if_expression] = STATE(1711), + [sym_match_expression] = STATE(1711), + [sym_while_expression] = STATE(1711), + [sym_loop_expression] = STATE(1711), + [sym_for_expression] = STATE(1711), + [sym_const_block] = STATE(1711), + [sym_closure_expression] = STATE(1711), [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1439), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), + [sym_label] = STATE(3742), + [sym_break_expression] = STATE(1711), + [sym_continue_expression] = STATE(1711), + [sym_index_expression] = STATE(1711), + [sym_await_expression] = STATE(1711), + [sym_field_expression] = STATE(1690), + [sym_unsafe_block] = STATE(1711), + [sym_async_block] = STATE(1711), + [sym_gen_block] = STATE(1711), + [sym_try_block] = STATE(1711), + [sym_block] = STATE(1711), + [sym__literal] = STATE(1711), + [sym_string_literal] = STATE(1831), + [sym_raw_string_literal] = STATE(1831), + [sym_boolean_literal] = STATE(1831), [sym_line_comment] = STATE(218), [sym_block_comment] = STATE(218), - [sym_identifier] = ACTIONS(339), + [sym_identifier] = ACTIONS(410), + [anon_sym_LPAREN] = ACTIONS(498), + [anon_sym_LBRACK] = ACTIONS(500), + [anon_sym_LBRACE] = ACTIONS(412), + [anon_sym_STAR] = ACTIONS(990), + [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(990), + [anon_sym_BANG] = ACTIONS(990), + [anon_sym_AMP] = ACTIONS(992), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1176), + [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), + [sym_mutable_specifier] = ACTIONS(1178), + [anon_sym_raw] = ACTIONS(1180), + [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(219)] = { + [sym_bracketed_type] = STATE(3752), + [sym_generic_function] = STATE(1492), + [sym_generic_type_with_turbofish] = STATE(3039), + [sym__expression_except_range] = STATE(1409), + [sym__expression] = STATE(1894), + [sym_macro_invocation] = STATE(1529), + [sym_scoped_identifier] = STATE(1540), + [sym_scoped_type_identifier_in_expression_position] = STATE(3335), + [sym_range_expression] = STATE(1505), + [sym_unary_expression] = STATE(1492), + [sym_try_expression] = STATE(1492), + [sym_reference_expression] = STATE(1492), + [sym_binary_expression] = STATE(1492), + [sym_assignment_expression] = STATE(1492), + [sym_compound_assignment_expr] = STATE(1492), + [sym_type_cast_expression] = STATE(1492), + [sym_return_expression] = STATE(1492), + [sym_yield_expression] = STATE(1492), + [sym_call_expression] = STATE(1492), + [sym_array_expression] = STATE(1492), + [sym_parenthesized_expression] = STATE(1492), + [sym_tuple_expression] = STATE(1492), + [sym_unit_expression] = STATE(1492), + [sym_struct_expression] = STATE(1492), + [sym_if_expression] = STATE(1492), + [sym_match_expression] = STATE(1492), + [sym_while_expression] = STATE(1492), + [sym_loop_expression] = STATE(1492), + [sym_for_expression] = STATE(1492), + [sym_const_block] = STATE(1492), + [sym_closure_expression] = STATE(1492), + [sym_closure_parameters] = STATE(229), + [sym_label] = STATE(3689), + [sym_break_expression] = STATE(1492), + [sym_continue_expression] = STATE(1492), + [sym_index_expression] = STATE(1492), + [sym_await_expression] = STATE(1492), + [sym_field_expression] = STATE(1412), + [sym_unsafe_block] = STATE(1492), + [sym_async_block] = STATE(1492), + [sym_gen_block] = STATE(1492), + [sym_try_block] = STATE(1492), + [sym_block] = STATE(1492), + [sym__literal] = STATE(1492), + [sym_string_literal] = STATE(1530), + [sym_raw_string_literal] = STATE(1530), + [sym_boolean_literal] = STATE(1530), + [sym_line_comment] = STATE(219), + [sym_block_comment] = STATE(219), + [aux_sym_tuple_expression_repeat1] = STATE(242), + [sym_identifier] = ACTIONS(344), [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(1182), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(348), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -42076,104 +42323,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(23), [anon_sym_str] = ACTIONS(23), [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(349), + [anon_sym_DASH] = ACTIONS(21), [anon_sym_BANG] = ACTIONS(21), [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1053), - [anon_sym_DOT_DOT] = ACTIONS(1061), + [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_DASH_GT] = ACTIONS(1057), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), + [anon_sym_async] = ACTIONS(356), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(358), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), + [anon_sym_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(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(115), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [anon_sym_static] = ACTIONS(372), + [anon_sym_union] = ACTIONS(360), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [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(219)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1833), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1520), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [sym_line_comment] = STATE(219), - [sym_block_comment] = STATE(219), - [aux_sym_tuple_expression_repeat1] = STATE(240), - [sym_identifier] = ACTIONS(339), + [STATE(220)] = { + [sym_bracketed_type] = STATE(3752), + [sym_generic_function] = STATE(1492), + [sym_generic_type_with_turbofish] = STATE(3039), + [sym__expression_except_range] = STATE(1409), + [sym__expression] = STATE(1794), + [sym_macro_invocation] = STATE(1529), + [sym_scoped_identifier] = STATE(1540), + [sym_scoped_type_identifier_in_expression_position] = STATE(3335), + [sym_range_expression] = STATE(1505), + [sym_unary_expression] = STATE(1492), + [sym_try_expression] = STATE(1492), + [sym_reference_expression] = STATE(1492), + [sym_binary_expression] = STATE(1492), + [sym_assignment_expression] = STATE(1492), + [sym_compound_assignment_expr] = STATE(1492), + [sym_type_cast_expression] = STATE(1492), + [sym_return_expression] = STATE(1492), + [sym_yield_expression] = STATE(1492), + [sym_call_expression] = STATE(1492), + [sym_array_expression] = STATE(1492), + [sym_parenthesized_expression] = STATE(1492), + [sym_tuple_expression] = STATE(1492), + [sym_unit_expression] = STATE(1492), + [sym_struct_expression] = STATE(1492), + [sym_if_expression] = STATE(1492), + [sym_match_expression] = STATE(1492), + [sym_while_expression] = STATE(1492), + [sym_loop_expression] = STATE(1492), + [sym_for_expression] = STATE(1492), + [sym_const_block] = STATE(1492), + [sym_closure_expression] = STATE(1492), + [sym_closure_parameters] = STATE(229), + [sym_label] = STATE(3689), + [sym_break_expression] = STATE(1492), + [sym_continue_expression] = STATE(1492), + [sym_index_expression] = STATE(1492), + [sym_await_expression] = STATE(1492), + [sym_field_expression] = STATE(1412), + [sym_unsafe_block] = STATE(1492), + [sym_async_block] = STATE(1492), + [sym_gen_block] = STATE(1492), + [sym_try_block] = STATE(1492), + [sym_block] = STATE(1514), + [sym__literal] = STATE(1492), + [sym_string_literal] = STATE(1530), + [sym_raw_string_literal] = STATE(1530), + [sym_boolean_literal] = STATE(1530), + [sym_line_comment] = STATE(220), + [sym_block_comment] = STATE(220), + [sym_identifier] = ACTIONS(344), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(1063), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(348), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -42192,100 +42435,216 @@ 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(354), [anon_sym_BANG] = ACTIONS(21), [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1184), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_DASH_GT] = ACTIONS(1186), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), + [anon_sym_async] = ACTIONS(356), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(358), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), + [anon_sym_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(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(115), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [anon_sym_static] = ACTIONS(372), + [anon_sym_union] = ACTIONS(360), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [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(220)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1557), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1520), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1501), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [sym_line_comment] = STATE(220), - [sym_block_comment] = STATE(220), - [sym_identifier] = ACTIONS(339), + [STATE(221)] = { + [sym_bracketed_type] = STATE(3752), + [sym_generic_function] = STATE(1492), + [sym_generic_type_with_turbofish] = STATE(3085), + [sym__expression_except_range] = STATE(1409), + [sym__expression] = STATE(1693), + [sym_macro_invocation] = STATE(1529), + [sym_scoped_identifier] = STATE(1604), + [sym_scoped_type_identifier_in_expression_position] = STATE(3335), + [sym_range_expression] = STATE(1505), + [sym_unary_expression] = STATE(1492), + [sym_try_expression] = STATE(1492), + [sym_reference_expression] = STATE(1492), + [sym_binary_expression] = STATE(1492), + [sym_assignment_expression] = STATE(1492), + [sym_compound_assignment_expr] = STATE(1492), + [sym_type_cast_expression] = STATE(1492), + [sym_return_expression] = STATE(1492), + [sym_yield_expression] = STATE(1492), + [sym_call_expression] = STATE(1492), + [sym_array_expression] = STATE(1492), + [sym_parenthesized_expression] = STATE(1492), + [sym_tuple_expression] = STATE(1492), + [sym_unit_expression] = STATE(1492), + [sym_struct_expression] = STATE(1492), + [sym_if_expression] = STATE(1492), + [sym_match_expression] = STATE(1492), + [sym_while_expression] = STATE(1492), + [sym_loop_expression] = STATE(1492), + [sym_for_expression] = STATE(1492), + [sym_const_block] = STATE(1492), + [sym_closure_expression] = STATE(1492), + [sym_closure_parameters] = STATE(221), + [sym_label] = STATE(3689), + [sym_break_expression] = STATE(1492), + [sym_continue_expression] = STATE(1492), + [sym_index_expression] = STATE(1492), + [sym_await_expression] = STATE(1492), + [sym_field_expression] = STATE(1412), + [sym_unsafe_block] = STATE(1492), + [sym_async_block] = STATE(1492), + [sym_gen_block] = STATE(1492), + [sym_try_block] = STATE(1492), + [sym_block] = STATE(1514), + [sym__literal] = STATE(1492), + [sym_string_literal] = STATE(1530), + [sym_raw_string_literal] = STATE(1530), + [sym_boolean_literal] = STATE(1530), + [sym_line_comment] = STATE(221), + [sym_block_comment] = STATE(221), + [sym_identifier] = ACTIONS(470), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(348), + [anon_sym_STAR] = ACTIONS(978), + [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(508), + [anon_sym_BANG] = ACTIONS(978), + [anon_sym_AMP] = ACTIONS(980), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1184), + [anon_sym_DOT_DOT] = ACTIONS(1170), + [anon_sym_COLON_COLON] = ACTIONS(476), + [anon_sym_DASH_GT] = ACTIONS(1186), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(356), + [anon_sym_break] = ACTIONS(510), + [anon_sym_const] = ACTIONS(358), + [anon_sym_continue] = ACTIONS(512), + [anon_sym_default] = ACTIONS(480), + [anon_sym_for] = ACTIONS(362), + [anon_sym_gen] = ACTIONS(514), + [anon_sym_if] = ACTIONS(366), + [anon_sym_loop] = ACTIONS(368), + [anon_sym_match] = ACTIONS(370), + [anon_sym_return] = ACTIONS(516), + [anon_sym_static] = ACTIONS(518), + [anon_sym_union] = ACTIONS(480), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [anon_sym_yield] = ACTIONS(520), + [anon_sym_move] = ACTIONS(522), + [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(492), + [sym_super] = ACTIONS(494), + [sym_crate] = ACTIONS(494), + [sym_metavariable] = ACTIONS(496), + [sym__raw_string_literal_start] = ACTIONS(119), + [sym_float_literal] = ACTIONS(99), + }, + [STATE(222)] = { + [sym_bracketed_type] = STATE(3752), + [sym_generic_function] = STATE(1492), + [sym_generic_type_with_turbofish] = STATE(3039), + [sym__expression_except_range] = STATE(1409), + [sym__expression] = STATE(1566), + [sym_macro_invocation] = STATE(1529), + [sym_scoped_identifier] = STATE(1540), + [sym_scoped_type_identifier_in_expression_position] = STATE(3335), + [sym_range_expression] = STATE(1505), + [sym_unary_expression] = STATE(1492), + [sym_try_expression] = STATE(1492), + [sym_reference_expression] = STATE(1492), + [sym_binary_expression] = STATE(1492), + [sym_assignment_expression] = STATE(1492), + [sym_compound_assignment_expr] = STATE(1492), + [sym_type_cast_expression] = STATE(1492), + [sym_return_expression] = STATE(1492), + [sym_yield_expression] = STATE(1492), + [sym_call_expression] = STATE(1492), + [sym_array_expression] = STATE(1492), + [sym_parenthesized_expression] = STATE(1492), + [sym_tuple_expression] = STATE(1492), + [sym_unit_expression] = STATE(1492), + [sym_struct_expression] = STATE(1492), + [sym_if_expression] = STATE(1492), + [sym_match_expression] = STATE(1492), + [sym_while_expression] = STATE(1492), + [sym_loop_expression] = STATE(1492), + [sym_for_expression] = STATE(1492), + [sym_const_block] = STATE(1492), + [sym_closure_expression] = STATE(1492), + [sym_closure_parameters] = STATE(229), + [sym_label] = STATE(3689), + [sym_break_expression] = STATE(1492), + [sym_continue_expression] = STATE(1492), + [sym_index_expression] = STATE(1492), + [sym_await_expression] = STATE(1492), + [sym_field_expression] = STATE(1412), + [sym_unsafe_block] = STATE(1492), + [sym_async_block] = STATE(1492), + [sym_gen_block] = STATE(1492), + [sym_try_block] = STATE(1492), + [sym_block] = STATE(1469), + [sym__literal] = STATE(1492), + [sym_string_literal] = STATE(1530), + [sym_raw_string_literal] = STATE(1530), + [sym_boolean_literal] = STATE(1530), + [sym_line_comment] = STATE(222), + [sym_block_comment] = STATE(222), + [sym_identifier] = ACTIONS(344), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(348), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -42304,102 +42663,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(23), [anon_sym_str] = ACTIONS(23), [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(349), + [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(1065), - [anon_sym_DOT_DOT] = ACTIONS(1061), + [anon_sym__] = ACTIONS(1188), + [anon_sym_DOT_DOT] = ACTIONS(1190), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_DASH_GT] = ACTIONS(1067), + [anon_sym_DASH_GT] = ACTIONS(1192), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), + [anon_sym_async] = ACTIONS(356), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(358), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), + [anon_sym_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(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(115), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [anon_sym_static] = ACTIONS(372), + [anon_sym_union] = ACTIONS(360), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [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(221)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1419), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1520), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [sym_line_comment] = STATE(221), - [sym_block_comment] = STATE(221), - [sym_identifier] = ACTIONS(339), + [STATE(223)] = { + [sym_bracketed_type] = STATE(3752), + [sym_generic_function] = STATE(1492), + [sym_generic_type_with_turbofish] = STATE(3039), + [sym__expression_except_range] = STATE(1409), + [sym__expression] = STATE(1803), + [sym_macro_invocation] = STATE(1529), + [sym_scoped_identifier] = STATE(1540), + [sym_scoped_type_identifier_in_expression_position] = STATE(3335), + [sym_range_expression] = STATE(1505), + [sym_unary_expression] = STATE(1492), + [sym_try_expression] = STATE(1492), + [sym_reference_expression] = STATE(1492), + [sym_binary_expression] = STATE(1492), + [sym_assignment_expression] = STATE(1492), + [sym_compound_assignment_expr] = STATE(1492), + [sym_type_cast_expression] = STATE(1492), + [sym_return_expression] = STATE(1492), + [sym_yield_expression] = STATE(1492), + [sym_call_expression] = STATE(1492), + [sym_array_expression] = STATE(1492), + [sym_parenthesized_expression] = STATE(1492), + [sym_tuple_expression] = STATE(1492), + [sym_unit_expression] = STATE(1492), + [sym_struct_expression] = STATE(1492), + [sym_if_expression] = STATE(1492), + [sym_match_expression] = STATE(1492), + [sym_while_expression] = STATE(1492), + [sym_loop_expression] = STATE(1492), + [sym_for_expression] = STATE(1492), + [sym_const_block] = STATE(1492), + [sym_closure_expression] = STATE(1492), + [sym_closure_parameters] = STATE(229), + [sym_label] = STATE(3689), + [sym_break_expression] = STATE(1492), + [sym_continue_expression] = STATE(1492), + [sym_index_expression] = STATE(1492), + [sym_await_expression] = STATE(1492), + [sym_field_expression] = STATE(1412), + [sym_unsafe_block] = STATE(1492), + [sym_async_block] = STATE(1492), + [sym_gen_block] = STATE(1492), + [sym_try_block] = STATE(1492), + [sym_block] = STATE(1469), + [sym__literal] = STATE(1492), + [sym_string_literal] = STATE(1530), + [sym_raw_string_literal] = STATE(1530), + [sym_boolean_literal] = STATE(1530), + [sym_line_comment] = STATE(223), + [sym_block_comment] = STATE(223), + [sym_identifier] = ACTIONS(344), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(348), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -42418,330 +42777,218 @@ 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(354), [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(1061), + [anon_sym__] = ACTIONS(1188), + [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(351), + [anon_sym_async] = ACTIONS(356), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(358), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), + [anon_sym_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(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [sym_mutable_specifier] = ACTIONS(1069), - [anon_sym_raw] = ACTIONS(1071), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(115), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [anon_sym_static] = ACTIONS(372), + [anon_sym_union] = ACTIONS(360), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [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(222)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3056), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1694), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1591), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(244), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1501), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [sym_line_comment] = STATE(222), - [sym_block_comment] = STATE(222), - [sym_identifier] = ACTIONS(467), + [STATE(224)] = { + [sym_bracketed_type] = STATE(3752), + [sym_generic_function] = STATE(1492), + [sym_generic_type_with_turbofish] = STATE(3085), + [sym__expression_except_range] = STATE(1409), + [sym__expression] = STATE(1674), + [sym_macro_invocation] = STATE(1529), + [sym_scoped_identifier] = STATE(1604), + [sym_scoped_type_identifier_in_expression_position] = STATE(3335), + [sym_range_expression] = STATE(1505), + [sym_unary_expression] = STATE(1492), + [sym_try_expression] = STATE(1492), + [sym_reference_expression] = STATE(1492), + [sym_binary_expression] = STATE(1492), + [sym_assignment_expression] = STATE(1492), + [sym_compound_assignment_expr] = STATE(1492), + [sym_type_cast_expression] = STATE(1492), + [sym_return_expression] = STATE(1492), + [sym_yield_expression] = STATE(1492), + [sym_call_expression] = STATE(1492), + [sym_array_expression] = STATE(1492), + [sym_parenthesized_expression] = STATE(1492), + [sym_tuple_expression] = STATE(1492), + [sym_unit_expression] = STATE(1492), + [sym_struct_expression] = STATE(1492), + [sym_if_expression] = STATE(1492), + [sym_match_expression] = STATE(1492), + [sym_while_expression] = STATE(1492), + [sym_loop_expression] = STATE(1492), + [sym_for_expression] = STATE(1492), + [sym_const_block] = STATE(1492), + [sym_closure_expression] = STATE(1492), + [sym_closure_parameters] = STATE(221), + [sym_label] = STATE(3689), + [sym_break_expression] = STATE(1492), + [sym_continue_expression] = STATE(1492), + [sym_index_expression] = STATE(1492), + [sym_await_expression] = STATE(1492), + [sym_field_expression] = STATE(1412), + [sym_unsafe_block] = STATE(1492), + [sym_async_block] = STATE(1492), + [sym_gen_block] = STATE(1492), + [sym_try_block] = STATE(1492), + [sym_block] = STATE(1469), + [sym__literal] = STATE(1492), + [sym_string_literal] = STATE(1530), + [sym_raw_string_literal] = STATE(1530), + [sym_boolean_literal] = STATE(1530), + [sym_line_comment] = STATE(224), + [sym_block_comment] = STATE(224), + [sym_identifier] = ACTIONS(470), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1073), - [anon_sym_u8] = ACTIONS(469), - [anon_sym_i8] = ACTIONS(469), - [anon_sym_u16] = ACTIONS(469), - [anon_sym_i16] = ACTIONS(469), - [anon_sym_u32] = ACTIONS(469), - [anon_sym_i32] = ACTIONS(469), - [anon_sym_u64] = ACTIONS(469), - [anon_sym_i64] = ACTIONS(469), - [anon_sym_u128] = ACTIONS(469), - [anon_sym_i128] = ACTIONS(469), - [anon_sym_isize] = ACTIONS(469), - [anon_sym_usize] = ACTIONS(469), - [anon_sym_f32] = ACTIONS(469), - [anon_sym_f64] = ACTIONS(469), - [anon_sym_bool] = ACTIONS(469), - [anon_sym_str] = ACTIONS(469), - [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(471), - [anon_sym_BANG] = ACTIONS(1073), - [anon_sym_AMP] = ACTIONS(1075), + [anon_sym_LBRACE] = ACTIONS(348), + [anon_sym_STAR] = ACTIONS(978), + [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(508), + [anon_sym_BANG] = ACTIONS(978), + [anon_sym_AMP] = ACTIONS(980), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1065), - [anon_sym_DOT_DOT] = ACTIONS(1077), - [anon_sym_COLON_COLON] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(1067), + [anon_sym__] = ACTIONS(1188), + [anon_sym_DOT_DOT] = ACTIONS(1170), + [anon_sym_COLON_COLON] = ACTIONS(476), + [anon_sym_DASH_GT] = ACTIONS(1192), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(475), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(477), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(479), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(481), - [anon_sym_static] = ACTIONS(483), - [anon_sym_union] = ACTIONS(477), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(485), - [anon_sym_move] = ACTIONS(487), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(489), - [sym_super] = ACTIONS(491), - [sym_crate] = ACTIONS(491), - [sym_metavariable] = ACTIONS(493), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [anon_sym_async] = ACTIONS(356), + [anon_sym_break] = ACTIONS(510), + [anon_sym_const] = ACTIONS(358), + [anon_sym_continue] = ACTIONS(512), + [anon_sym_default] = ACTIONS(480), + [anon_sym_for] = ACTIONS(362), + [anon_sym_gen] = ACTIONS(514), + [anon_sym_if] = ACTIONS(366), + [anon_sym_loop] = ACTIONS(368), + [anon_sym_match] = ACTIONS(370), + [anon_sym_return] = ACTIONS(516), + [anon_sym_static] = ACTIONS(518), + [anon_sym_union] = ACTIONS(480), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [anon_sym_yield] = ACTIONS(520), + [anon_sym_move] = ACTIONS(522), + [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(492), + [sym_super] = ACTIONS(494), + [sym_crate] = ACTIONS(494), + [sym_metavariable] = ACTIONS(496), + [sym__raw_string_literal_start] = ACTIONS(119), + [sym_float_literal] = ACTIONS(99), }, - [STATE(223)] = { - [sym_bracketed_type] = STATE(3621), - [sym_generic_function] = STATE(1691), - [sym_generic_type_with_turbofish] = STATE(3063), - [sym__expression_except_range] = STATE(1659), - [sym__expression] = STATE(1707), - [sym_macro_invocation] = STATE(1708), - [sym_scoped_identifier] = STATE(1599), - [sym_scoped_type_identifier_in_expression_position] = STATE(3307), - [sym_range_expression] = STATE(1695), - [sym_unary_expression] = STATE(1691), - [sym_try_expression] = STATE(1691), - [sym_reference_expression] = STATE(1691), - [sym_binary_expression] = STATE(1691), - [sym_assignment_expression] = STATE(1691), - [sym_compound_assignment_expr] = STATE(1691), - [sym_type_cast_expression] = STATE(1691), - [sym_return_expression] = STATE(1691), - [sym_yield_expression] = STATE(1691), - [sym_call_expression] = STATE(1691), - [sym_array_expression] = STATE(1691), - [sym_parenthesized_expression] = STATE(1691), - [sym_tuple_expression] = STATE(1691), - [sym_unit_expression] = STATE(1691), - [sym_struct_expression] = STATE(1691), - [sym_if_expression] = STATE(1691), - [sym_match_expression] = STATE(1691), - [sym_while_expression] = STATE(1691), - [sym_loop_expression] = STATE(1691), - [sym_for_expression] = STATE(1691), - [sym_const_block] = STATE(1691), - [sym_closure_expression] = STATE(1691), + [STATE(225)] = { + [sym_bracketed_type] = STATE(3752), + [sym_generic_function] = STATE(1492), + [sym_generic_type_with_turbofish] = STATE(3039), + [sym__expression_except_range] = STATE(1409), + [sym__expression] = STATE(1870), + [sym_macro_invocation] = STATE(1529), + [sym_scoped_identifier] = STATE(1540), + [sym_scoped_type_identifier_in_expression_position] = STATE(3335), + [sym_range_expression] = STATE(1505), + [sym_unary_expression] = STATE(1492), + [sym_try_expression] = STATE(1492), + [sym_reference_expression] = STATE(1492), + [sym_binary_expression] = STATE(1492), + [sym_assignment_expression] = STATE(1492), + [sym_compound_assignment_expr] = STATE(1492), + [sym_type_cast_expression] = STATE(1492), + [sym_return_expression] = STATE(1492), + [sym_yield_expression] = STATE(1492), + [sym_call_expression] = STATE(1492), + [sym_array_expression] = STATE(1492), + [sym_parenthesized_expression] = STATE(1492), + [sym_tuple_expression] = STATE(1492), + [sym_unit_expression] = STATE(1492), + [sym_struct_expression] = STATE(1492), + [sym_if_expression] = STATE(1492), + [sym_match_expression] = STATE(1492), + [sym_while_expression] = STATE(1492), + [sym_loop_expression] = STATE(1492), + [sym_for_expression] = STATE(1492), + [sym_const_block] = STATE(1492), + [sym_closure_expression] = STATE(1492), [sym_closure_parameters] = STATE(229), - [sym_label] = STATE(3712), - [sym_break_expression] = STATE(1691), - [sym_continue_expression] = STATE(1691), - [sym_index_expression] = STATE(1691), - [sym_await_expression] = STATE(1691), - [sym_field_expression] = STATE(1671), - [sym_unsafe_block] = STATE(1691), - [sym_async_block] = STATE(1691), - [sym_gen_block] = STATE(1691), - [sym_try_block] = STATE(1691), - [sym_block] = STATE(1691), - [sym__literal] = STATE(1691), - [sym_string_literal] = STATE(1776), - [sym_raw_string_literal] = STATE(1776), - [sym_boolean_literal] = STATE(1776), - [sym_line_comment] = STATE(223), - [sym_block_comment] = STATE(223), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(495), - [anon_sym_LBRACK] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(979), - [anon_sym_u8] = ACTIONS(411), - [anon_sym_i8] = ACTIONS(411), - [anon_sym_u16] = ACTIONS(411), - [anon_sym_i16] = ACTIONS(411), - [anon_sym_u32] = ACTIONS(411), - [anon_sym_i32] = ACTIONS(411), - [anon_sym_u64] = ACTIONS(411), - [anon_sym_i64] = ACTIONS(411), - [anon_sym_u128] = ACTIONS(411), - [anon_sym_i128] = ACTIONS(411), - [anon_sym_isize] = ACTIONS(411), - [anon_sym_usize] = ACTIONS(411), - [anon_sym_f32] = ACTIONS(411), - [anon_sym_f64] = ACTIONS(411), - [anon_sym_bool] = ACTIONS(411), - [anon_sym_str] = ACTIONS(411), - [anon_sym_char] = ACTIONS(411), - [anon_sym_DASH] = ACTIONS(979), - [anon_sym_BANG] = ACTIONS(979), - [anon_sym_AMP] = ACTIONS(981), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1079), - [anon_sym_COLON_COLON] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(417), - [anon_sym_break] = ACTIONS(419), - [anon_sym_const] = ACTIONS(421), - [anon_sym_continue] = ACTIONS(423), - [anon_sym_default] = ACTIONS(425), - [anon_sym_for] = ACTIONS(427), - [anon_sym_gen] = ACTIONS(429), - [anon_sym_if] = ACTIONS(431), - [anon_sym_loop] = ACTIONS(433), - [anon_sym_match] = ACTIONS(435), - [anon_sym_return] = ACTIONS(437), - [anon_sym_static] = ACTIONS(439), - [anon_sym_union] = ACTIONS(425), - [anon_sym_unsafe] = ACTIONS(441), - [anon_sym_while] = ACTIONS(443), - [sym_mutable_specifier] = ACTIONS(1081), - [anon_sym_raw] = ACTIONS(1083), - [anon_sym_yield] = ACTIONS(445), - [anon_sym_move] = ACTIONS(447), - [anon_sym_try] = ACTIONS(449), - [sym_integer_literal] = ACTIONS(451), - [aux_sym_string_literal_token1] = ACTIONS(453), - [sym_char_literal] = ACTIONS(451), - [anon_sym_true] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(457), - [sym_super] = ACTIONS(459), - [sym_crate] = ACTIONS(459), - [sym_metavariable] = ACTIONS(461), - [sym__raw_string_literal_start] = ACTIONS(463), - [sym_float_literal] = ACTIONS(451), - }, - [STATE(224)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1766), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1520), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1501), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [sym_line_comment] = STATE(224), - [sym_block_comment] = STATE(224), - [sym_identifier] = ACTIONS(339), + [sym_label] = STATE(3689), + [sym_break_expression] = STATE(1492), + [sym_continue_expression] = STATE(1492), + [sym_index_expression] = STATE(1492), + [sym_await_expression] = STATE(1492), + [sym_field_expression] = STATE(1412), + [sym_unsafe_block] = STATE(1492), + [sym_async_block] = STATE(1492), + [sym_gen_block] = STATE(1492), + [sym_try_block] = STATE(1492), + [sym_block] = STATE(1492), + [sym__literal] = STATE(1492), + [sym_string_literal] = STATE(1530), + [sym_raw_string_literal] = STATE(1530), + [sym_boolean_literal] = STATE(1530), + [sym_line_comment] = STATE(225), + [sym_block_comment] = STATE(225), + [aux_sym_tuple_expression_repeat1] = STATE(216), + [sym_identifier] = ACTIONS(344), [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(1194), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(348), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -42760,332 +43007,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(23), [anon_sym_str] = ACTIONS(23), [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(349), + [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(1065), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_DASH_GT] = ACTIONS(1067), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), + [anon_sym_async] = ACTIONS(356), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(358), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), + [anon_sym_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(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(115), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), - }, - [STATE(225)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3056), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1419), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1591), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [sym_line_comment] = STATE(225), - [sym_block_comment] = STATE(225), - [sym_identifier] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(901), - [anon_sym_u8] = ACTIONS(469), - [anon_sym_i8] = ACTIONS(469), - [anon_sym_u16] = ACTIONS(469), - [anon_sym_i16] = ACTIONS(469), - [anon_sym_u32] = ACTIONS(469), - [anon_sym_i32] = ACTIONS(469), - [anon_sym_u64] = ACTIONS(469), - [anon_sym_i64] = ACTIONS(469), - [anon_sym_u128] = ACTIONS(469), - [anon_sym_i128] = ACTIONS(469), - [anon_sym_isize] = ACTIONS(469), - [anon_sym_usize] = ACTIONS(469), - [anon_sym_f32] = ACTIONS(469), - [anon_sym_f64] = ACTIONS(469), - [anon_sym_bool] = ACTIONS(469), - [anon_sym_str] = ACTIONS(469), - [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(901), - [anon_sym_BANG] = ACTIONS(901), - [anon_sym_AMP] = ACTIONS(903), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1055), - [anon_sym_COLON_COLON] = ACTIONS(473), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(477), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(477), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [sym_mutable_specifier] = ACTIONS(1085), - [anon_sym_raw] = ACTIONS(1087), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(489), - [sym_super] = ACTIONS(491), - [sym_crate] = ACTIONS(491), - [sym_metavariable] = ACTIONS(493), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [anon_sym_static] = ACTIONS(372), + [anon_sym_union] = ACTIONS(360), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [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(226)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3056), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1635), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1591), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_let_condition] = STATE(2629), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), + [sym_bracketed_type] = STATE(3752), + [sym_generic_function] = STATE(1492), + [sym_generic_type_with_turbofish] = STATE(3039), + [sym__expression_except_range] = STATE(1409), + [sym__expression] = STATE(1870), + [sym_macro_invocation] = STATE(1529), + [sym_scoped_identifier] = STATE(1540), + [sym_scoped_type_identifier_in_expression_position] = STATE(3335), + [sym_range_expression] = STATE(1505), + [sym_unary_expression] = STATE(1492), + [sym_try_expression] = STATE(1492), + [sym_reference_expression] = STATE(1492), + [sym_binary_expression] = STATE(1492), + [sym_assignment_expression] = STATE(1492), + [sym_compound_assignment_expr] = STATE(1492), + [sym_type_cast_expression] = STATE(1492), + [sym_return_expression] = STATE(1492), + [sym_yield_expression] = STATE(1492), + [sym_call_expression] = STATE(1492), + [sym_array_expression] = STATE(1492), + [sym_parenthesized_expression] = STATE(1492), + [sym_tuple_expression] = STATE(1492), + [sym_unit_expression] = STATE(1492), + [sym_struct_expression] = STATE(1492), + [sym_if_expression] = STATE(1492), + [sym_match_expression] = STATE(1492), + [sym_while_expression] = STATE(1492), + [sym_loop_expression] = STATE(1492), + [sym_for_expression] = STATE(1492), + [sym_const_block] = STATE(1492), + [sym_closure_expression] = STATE(1492), + [sym_closure_parameters] = STATE(229), + [sym_label] = STATE(3689), + [sym_break_expression] = STATE(1492), + [sym_continue_expression] = STATE(1492), + [sym_index_expression] = STATE(1492), + [sym_await_expression] = STATE(1492), + [sym_field_expression] = STATE(1412), + [sym_unsafe_block] = STATE(1492), + [sym_async_block] = STATE(1492), + [sym_gen_block] = STATE(1492), + [sym_try_block] = STATE(1492), + [sym_block] = STATE(1492), + [sym__literal] = STATE(1492), + [sym_string_literal] = STATE(1530), + [sym_raw_string_literal] = STATE(1530), + [sym_boolean_literal] = STATE(1530), [sym_line_comment] = STATE(226), [sym_block_comment] = STATE(226), - [sym_identifier] = ACTIONS(467), + [aux_sym_tuple_expression_repeat1] = STATE(244), + [sym_identifier] = ACTIONS(344), [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(1194), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(901), - [anon_sym_u8] = ACTIONS(469), - [anon_sym_i8] = ACTIONS(469), - [anon_sym_u16] = ACTIONS(469), - [anon_sym_i16] = ACTIONS(469), - [anon_sym_u32] = ACTIONS(469), - [anon_sym_i32] = ACTIONS(469), - [anon_sym_u64] = ACTIONS(469), - [anon_sym_i64] = ACTIONS(469), - [anon_sym_u128] = ACTIONS(469), - [anon_sym_i128] = ACTIONS(469), - [anon_sym_isize] = ACTIONS(469), - [anon_sym_usize] = ACTIONS(469), - [anon_sym_f32] = ACTIONS(469), - [anon_sym_f64] = ACTIONS(469), - [anon_sym_bool] = ACTIONS(469), - [anon_sym_str] = ACTIONS(469), - [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(901), - [anon_sym_BANG] = ACTIONS(901), - [anon_sym_AMP] = ACTIONS(903), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1055), - [anon_sym_COLON_COLON] = ACTIONS(473), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(477), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), - [anon_sym_if] = ACTIONS(361), - [anon_sym_let] = ACTIONS(907), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(477), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(489), - [sym_super] = ACTIONS(491), - [sym_crate] = ACTIONS(491), - [sym_metavariable] = ACTIONS(493), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), - }, - [STATE(227)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1865), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1520), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [sym_line_comment] = STATE(227), - [sym_block_comment] = STATE(227), - [aux_sym_tuple_expression_repeat1] = STATE(240), - [sym_identifier] = ACTIONS(339), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(1059), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(348), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -43112,662 +43129,320 @@ 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(351), + [anon_sym_async] = ACTIONS(356), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(358), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), + [anon_sym_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(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(115), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [anon_sym_static] = ACTIONS(372), + [anon_sym_union] = ACTIONS(360), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [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(227)] = { + [sym_bracketed_type] = STATE(3752), + [sym_generic_function] = STATE(1492), + [sym_generic_type_with_turbofish] = STATE(3085), + [sym__expression_except_range] = STATE(1409), + [sym__expression] = STATE(1694), + [sym_macro_invocation] = STATE(1529), + [sym_scoped_identifier] = STATE(1604), + [sym_scoped_type_identifier_in_expression_position] = STATE(3335), + [sym_range_expression] = STATE(1505), + [sym_unary_expression] = STATE(1492), + [sym_try_expression] = STATE(1492), + [sym_reference_expression] = STATE(1492), + [sym_binary_expression] = STATE(1492), + [sym_assignment_expression] = STATE(1492), + [sym_compound_assignment_expr] = STATE(1492), + [sym_type_cast_expression] = STATE(1492), + [sym_return_expression] = STATE(1492), + [sym_yield_expression] = STATE(1492), + [sym_call_expression] = STATE(1492), + [sym_array_expression] = STATE(1492), + [sym_parenthesized_expression] = STATE(1492), + [sym_tuple_expression] = STATE(1492), + [sym_unit_expression] = STATE(1492), + [sym_struct_expression] = STATE(1492), + [sym_if_expression] = STATE(1492), + [sym_let_condition] = STATE(2635), + [sym_match_expression] = STATE(1492), + [sym_while_expression] = STATE(1492), + [sym_loop_expression] = STATE(1492), + [sym_for_expression] = STATE(1492), + [sym_const_block] = STATE(1492), + [sym_closure_expression] = STATE(1492), + [sym_closure_parameters] = STATE(221), + [sym_label] = STATE(3689), + [sym_break_expression] = STATE(1492), + [sym_continue_expression] = STATE(1492), + [sym_index_expression] = STATE(1492), + [sym_await_expression] = STATE(1492), + [sym_field_expression] = STATE(1412), + [sym_unsafe_block] = STATE(1492), + [sym_async_block] = STATE(1492), + [sym_gen_block] = STATE(1492), + [sym_try_block] = STATE(1492), + [sym_block] = STATE(1492), + [sym__literal] = STATE(1492), + [sym_string_literal] = STATE(1530), + [sym_raw_string_literal] = STATE(1530), + [sym_boolean_literal] = STATE(1530), + [sym_line_comment] = STATE(227), + [sym_block_comment] = STATE(227), + [sym_identifier] = ACTIONS(470), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(348), + [anon_sym_STAR] = ACTIONS(978), + [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(978), + [anon_sym_BANG] = ACTIONS(978), + [anon_sym_AMP] = ACTIONS(980), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1170), + [anon_sym_COLON_COLON] = ACTIONS(476), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(356), + [anon_sym_break] = ACTIONS(510), + [anon_sym_const] = ACTIONS(358), + [anon_sym_continue] = ACTIONS(512), + [anon_sym_default] = ACTIONS(480), + [anon_sym_for] = ACTIONS(362), + [anon_sym_gen] = ACTIONS(514), + [anon_sym_if] = ACTIONS(366), + [anon_sym_let] = ACTIONS(984), + [anon_sym_loop] = ACTIONS(368), + [anon_sym_match] = ACTIONS(370), + [anon_sym_return] = ACTIONS(516), + [anon_sym_static] = ACTIONS(518), + [anon_sym_union] = ACTIONS(480), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [anon_sym_yield] = ACTIONS(520), + [anon_sym_move] = ACTIONS(522), + [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(492), + [sym_super] = ACTIONS(494), + [sym_crate] = ACTIONS(494), + [sym_metavariable] = ACTIONS(496), + [sym__raw_string_literal_start] = ACTIONS(119), + [sym_float_literal] = ACTIONS(99), }, [STATE(228)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3056), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1672), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1591), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1521), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), + [sym_bracketed_type] = STATE(3752), + [sym_generic_function] = STATE(1492), + [sym_generic_type_with_turbofish] = STATE(3085), + [sym__expression_except_range] = STATE(1409), + [sym__expression] = STATE(1541), + [sym_macro_invocation] = STATE(1529), + [sym_scoped_identifier] = STATE(1604), + [sym_scoped_type_identifier_in_expression_position] = STATE(3335), + [sym_range_expression] = STATE(1505), + [sym_unary_expression] = STATE(1492), + [sym_try_expression] = STATE(1492), + [sym_reference_expression] = STATE(1492), + [sym_binary_expression] = STATE(1492), + [sym_assignment_expression] = STATE(1492), + [sym_compound_assignment_expr] = STATE(1492), + [sym_type_cast_expression] = STATE(1492), + [sym_return_expression] = STATE(1492), + [sym_yield_expression] = STATE(1492), + [sym_call_expression] = STATE(1492), + [sym_array_expression] = STATE(1492), + [sym_parenthesized_expression] = STATE(1492), + [sym_tuple_expression] = STATE(1492), + [sym_unit_expression] = STATE(1492), + [sym_struct_expression] = STATE(1492), + [sym_if_expression] = STATE(1492), + [sym_match_expression] = STATE(1492), + [sym_while_expression] = STATE(1492), + [sym_loop_expression] = STATE(1492), + [sym_for_expression] = STATE(1492), + [sym_const_block] = STATE(1492), + [sym_closure_expression] = STATE(1492), + [sym_closure_parameters] = STATE(235), + [sym_label] = STATE(3689), + [sym_break_expression] = STATE(1492), + [sym_continue_expression] = STATE(1492), + [sym_index_expression] = STATE(1492), + [sym_await_expression] = STATE(1492), + [sym_field_expression] = STATE(1412), + [sym_unsafe_block] = STATE(1492), + [sym_async_block] = STATE(1492), + [sym_gen_block] = STATE(1492), + [sym_try_block] = STATE(1492), + [sym_block] = STATE(1492), + [sym__literal] = STATE(1492), + [sym_string_literal] = STATE(1530), + [sym_raw_string_literal] = STATE(1530), + [sym_boolean_literal] = STATE(1530), [sym_line_comment] = STATE(228), [sym_block_comment] = STATE(228), - [sym_identifier] = ACTIONS(467), + [sym_identifier] = ACTIONS(470), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(901), - [anon_sym_u8] = ACTIONS(469), - [anon_sym_i8] = ACTIONS(469), - [anon_sym_u16] = ACTIONS(469), - [anon_sym_i16] = ACTIONS(469), - [anon_sym_u32] = ACTIONS(469), - [anon_sym_i32] = ACTIONS(469), - [anon_sym_u64] = ACTIONS(469), - [anon_sym_i64] = ACTIONS(469), - [anon_sym_u128] = ACTIONS(469), - [anon_sym_i128] = ACTIONS(469), - [anon_sym_isize] = ACTIONS(469), - [anon_sym_usize] = ACTIONS(469), - [anon_sym_f32] = ACTIONS(469), - [anon_sym_f64] = ACTIONS(469), - [anon_sym_bool] = ACTIONS(469), - [anon_sym_str] = ACTIONS(469), - [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(503), - [anon_sym_BANG] = ACTIONS(901), - [anon_sym_AMP] = ACTIONS(903), + [anon_sym_LBRACE] = ACTIONS(348), + [anon_sym_STAR] = ACTIONS(1196), + [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(1196), + [anon_sym_BANG] = ACTIONS(1196), + [anon_sym_AMP] = ACTIONS(1198), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1089), - [anon_sym_DOT_DOT] = ACTIONS(1055), - [anon_sym_COLON_COLON] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(1091), + [anon_sym_DOT_DOT] = ACTIONS(1200), + [anon_sym_COLON_COLON] = ACTIONS(476), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(477), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(477), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(489), - [sym_super] = ACTIONS(491), - [sym_crate] = ACTIONS(491), - [sym_metavariable] = ACTIONS(493), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [anon_sym_async] = ACTIONS(356), + [anon_sym_break] = ACTIONS(478), + [anon_sym_const] = ACTIONS(358), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(480), + [anon_sym_for] = ACTIONS(362), + [anon_sym_gen] = ACTIONS(482), + [anon_sym_if] = ACTIONS(366), + [anon_sym_loop] = ACTIONS(368), + [anon_sym_match] = ACTIONS(370), + [anon_sym_return] = ACTIONS(484), + [anon_sym_static] = ACTIONS(486), + [anon_sym_union] = ACTIONS(480), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [sym_mutable_specifier] = ACTIONS(1202), + [anon_sym_raw] = ACTIONS(1204), + [anon_sym_yield] = ACTIONS(488), + [anon_sym_move] = ACTIONS(490), + [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(492), + [sym_super] = ACTIONS(494), + [sym_crate] = ACTIONS(494), + [sym_metavariable] = ACTIONS(496), + [sym__raw_string_literal_start] = ACTIONS(119), + [sym_float_literal] = ACTIONS(99), }, [STATE(229)] = { - [sym_bracketed_type] = STATE(3621), - [sym_generic_function] = STATE(1691), - [sym_generic_type_with_turbofish] = STATE(3063), - [sym__expression_except_range] = STATE(1659), - [sym__expression] = STATE(1780), - [sym_macro_invocation] = STATE(1708), - [sym_scoped_identifier] = STATE(1599), - [sym_scoped_type_identifier_in_expression_position] = STATE(3307), - [sym_range_expression] = STATE(1695), - [sym_unary_expression] = STATE(1691), - [sym_try_expression] = STATE(1691), - [sym_reference_expression] = STATE(1691), - [sym_binary_expression] = STATE(1691), - [sym_assignment_expression] = STATE(1691), - [sym_compound_assignment_expr] = STATE(1691), - [sym_type_cast_expression] = STATE(1691), - [sym_return_expression] = STATE(1691), - [sym_yield_expression] = STATE(1691), - [sym_call_expression] = STATE(1691), - [sym_array_expression] = STATE(1691), - [sym_parenthesized_expression] = STATE(1691), - [sym_tuple_expression] = STATE(1691), - [sym_unit_expression] = STATE(1691), - [sym_struct_expression] = STATE(1691), - [sym_if_expression] = STATE(1691), - [sym_match_expression] = STATE(1691), - [sym_while_expression] = STATE(1691), - [sym_loop_expression] = STATE(1691), - [sym_for_expression] = STATE(1691), - [sym_const_block] = STATE(1691), - [sym_closure_expression] = STATE(1691), + [sym_bracketed_type] = STATE(3752), + [sym_generic_function] = STATE(1492), + [sym_generic_type_with_turbofish] = STATE(3039), + [sym__expression_except_range] = STATE(1409), + [sym__expression] = STATE(1564), + [sym_macro_invocation] = STATE(1529), + [sym_scoped_identifier] = STATE(1540), + [sym_scoped_type_identifier_in_expression_position] = STATE(3335), + [sym_range_expression] = STATE(1505), + [sym_unary_expression] = STATE(1492), + [sym_try_expression] = STATE(1492), + [sym_reference_expression] = STATE(1492), + [sym_binary_expression] = STATE(1492), + [sym_assignment_expression] = STATE(1492), + [sym_compound_assignment_expr] = STATE(1492), + [sym_type_cast_expression] = STATE(1492), + [sym_return_expression] = STATE(1492), + [sym_yield_expression] = STATE(1492), + [sym_call_expression] = STATE(1492), + [sym_array_expression] = STATE(1492), + [sym_parenthesized_expression] = STATE(1492), + [sym_tuple_expression] = STATE(1492), + [sym_unit_expression] = STATE(1492), + [sym_struct_expression] = STATE(1492), + [sym_if_expression] = STATE(1492), + [sym_match_expression] = STATE(1492), + [sym_while_expression] = STATE(1492), + [sym_loop_expression] = STATE(1492), + [sym_for_expression] = STATE(1492), + [sym_const_block] = STATE(1492), + [sym_closure_expression] = STATE(1492), [sym_closure_parameters] = STATE(229), - [sym_label] = STATE(3712), - [sym_break_expression] = STATE(1691), - [sym_continue_expression] = STATE(1691), - [sym_index_expression] = STATE(1691), - [sym_await_expression] = STATE(1691), - [sym_field_expression] = STATE(1671), - [sym_unsafe_block] = STATE(1691), - [sym_async_block] = STATE(1691), - [sym_gen_block] = STATE(1691), - [sym_try_block] = STATE(1691), - [sym_block] = STATE(1879), - [sym__literal] = STATE(1691), - [sym_string_literal] = STATE(1776), - [sym_raw_string_literal] = STATE(1776), - [sym_boolean_literal] = STATE(1776), + [sym_label] = STATE(3689), + [sym_break_expression] = STATE(1492), + [sym_continue_expression] = STATE(1492), + [sym_index_expression] = STATE(1492), + [sym_await_expression] = STATE(1492), + [sym_field_expression] = STATE(1412), + [sym_unsafe_block] = STATE(1492), + [sym_async_block] = STATE(1492), + [sym_gen_block] = STATE(1492), + [sym_try_block] = STATE(1492), + [sym_block] = STATE(1514), + [sym__literal] = STATE(1492), + [sym_string_literal] = STATE(1530), + [sym_raw_string_literal] = STATE(1530), + [sym_boolean_literal] = STATE(1530), [sym_line_comment] = STATE(229), [sym_block_comment] = STATE(229), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(495), - [anon_sym_LBRACK] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(979), - [anon_sym_u8] = ACTIONS(411), - [anon_sym_i8] = ACTIONS(411), - [anon_sym_u16] = ACTIONS(411), - [anon_sym_i16] = ACTIONS(411), - [anon_sym_u32] = ACTIONS(411), - [anon_sym_i32] = ACTIONS(411), - [anon_sym_u64] = ACTIONS(411), - [anon_sym_i64] = ACTIONS(411), - [anon_sym_u128] = ACTIONS(411), - [anon_sym_i128] = ACTIONS(411), - [anon_sym_isize] = ACTIONS(411), - [anon_sym_usize] = ACTIONS(411), - [anon_sym_f32] = ACTIONS(411), - [anon_sym_f64] = ACTIONS(411), - [anon_sym_bool] = ACTIONS(411), - [anon_sym_str] = ACTIONS(411), - [anon_sym_char] = ACTIONS(411), - [anon_sym_DASH] = ACTIONS(413), - [anon_sym_BANG] = ACTIONS(979), - [anon_sym_AMP] = ACTIONS(981), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1093), - [anon_sym_DOT_DOT] = ACTIONS(1079), - [anon_sym_COLON_COLON] = ACTIONS(415), - [anon_sym_DASH_GT] = ACTIONS(1095), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(417), - [anon_sym_break] = ACTIONS(419), - [anon_sym_const] = ACTIONS(421), - [anon_sym_continue] = ACTIONS(423), - [anon_sym_default] = ACTIONS(425), - [anon_sym_for] = ACTIONS(427), - [anon_sym_gen] = ACTIONS(429), - [anon_sym_if] = ACTIONS(431), - [anon_sym_loop] = ACTIONS(433), - [anon_sym_match] = ACTIONS(435), - [anon_sym_return] = ACTIONS(437), - [anon_sym_static] = ACTIONS(439), - [anon_sym_union] = ACTIONS(425), - [anon_sym_unsafe] = ACTIONS(441), - [anon_sym_while] = ACTIONS(443), - [anon_sym_yield] = ACTIONS(445), - [anon_sym_move] = ACTIONS(447), - [anon_sym_try] = ACTIONS(449), - [sym_integer_literal] = ACTIONS(451), - [aux_sym_string_literal_token1] = ACTIONS(453), - [sym_char_literal] = ACTIONS(451), - [anon_sym_true] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(457), - [sym_super] = ACTIONS(459), - [sym_crate] = ACTIONS(459), - [sym_metavariable] = ACTIONS(461), - [sym__raw_string_literal_start] = ACTIONS(463), - [sym_float_literal] = ACTIONS(451), - }, - [STATE(230)] = { - [sym_bracketed_type] = STATE(3621), - [sym_generic_function] = STATE(1691), - [sym_generic_type_with_turbofish] = STATE(3063), - [sym__expression_except_range] = STATE(1659), - [sym__expression] = STATE(1784), - [sym_macro_invocation] = STATE(1708), - [sym_scoped_identifier] = STATE(1599), - [sym_scoped_type_identifier_in_expression_position] = STATE(3307), - [sym_range_expression] = STATE(1695), - [sym_unary_expression] = STATE(1691), - [sym_try_expression] = STATE(1691), - [sym_reference_expression] = STATE(1691), - [sym_binary_expression] = STATE(1691), - [sym_assignment_expression] = STATE(1691), - [sym_compound_assignment_expr] = STATE(1691), - [sym_type_cast_expression] = STATE(1691), - [sym_return_expression] = STATE(1691), - [sym_yield_expression] = STATE(1691), - [sym_call_expression] = STATE(1691), - [sym_array_expression] = STATE(1691), - [sym_parenthesized_expression] = STATE(1691), - [sym_tuple_expression] = STATE(1691), - [sym_unit_expression] = STATE(1691), - [sym_struct_expression] = STATE(1691), - [sym_if_expression] = STATE(1691), - [sym_match_expression] = STATE(1691), - [sym_while_expression] = STATE(1691), - [sym_loop_expression] = STATE(1691), - [sym_for_expression] = STATE(1691), - [sym_const_block] = STATE(1691), - [sym_closure_expression] = STATE(1691), - [sym_closure_parameters] = STATE(229), - [sym_label] = STATE(3712), - [sym_break_expression] = STATE(1691), - [sym_continue_expression] = STATE(1691), - [sym_index_expression] = STATE(1691), - [sym_await_expression] = STATE(1691), - [sym_field_expression] = STATE(1671), - [sym_unsafe_block] = STATE(1691), - [sym_async_block] = STATE(1691), - [sym_gen_block] = STATE(1691), - [sym_try_block] = STATE(1691), - [sym_block] = STATE(1712), - [sym__literal] = STATE(1691), - [sym_string_literal] = STATE(1776), - [sym_raw_string_literal] = STATE(1776), - [sym_boolean_literal] = STATE(1776), - [sym_line_comment] = STATE(230), - [sym_block_comment] = STATE(230), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(495), - [anon_sym_LBRACK] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(979), - [anon_sym_u8] = ACTIONS(411), - [anon_sym_i8] = ACTIONS(411), - [anon_sym_u16] = ACTIONS(411), - [anon_sym_i16] = ACTIONS(411), - [anon_sym_u32] = ACTIONS(411), - [anon_sym_i32] = ACTIONS(411), - [anon_sym_u64] = ACTIONS(411), - [anon_sym_i64] = ACTIONS(411), - [anon_sym_u128] = ACTIONS(411), - [anon_sym_i128] = ACTIONS(411), - [anon_sym_isize] = ACTIONS(411), - [anon_sym_usize] = ACTIONS(411), - [anon_sym_f32] = ACTIONS(411), - [anon_sym_f64] = ACTIONS(411), - [anon_sym_bool] = ACTIONS(411), - [anon_sym_str] = ACTIONS(411), - [anon_sym_char] = ACTIONS(411), - [anon_sym_DASH] = ACTIONS(413), - [anon_sym_BANG] = ACTIONS(979), - [anon_sym_AMP] = ACTIONS(981), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1097), - [anon_sym_DOT_DOT] = ACTIONS(1079), - [anon_sym_COLON_COLON] = ACTIONS(415), - [anon_sym_DASH_GT] = ACTIONS(1099), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(417), - [anon_sym_break] = ACTIONS(419), - [anon_sym_const] = ACTIONS(421), - [anon_sym_continue] = ACTIONS(423), - [anon_sym_default] = ACTIONS(425), - [anon_sym_for] = ACTIONS(427), - [anon_sym_gen] = ACTIONS(429), - [anon_sym_if] = ACTIONS(431), - [anon_sym_loop] = ACTIONS(433), - [anon_sym_match] = ACTIONS(435), - [anon_sym_return] = ACTIONS(437), - [anon_sym_static] = ACTIONS(439), - [anon_sym_union] = ACTIONS(425), - [anon_sym_unsafe] = ACTIONS(441), - [anon_sym_while] = ACTIONS(443), - [anon_sym_yield] = ACTIONS(445), - [anon_sym_move] = ACTIONS(447), - [anon_sym_try] = ACTIONS(449), - [sym_integer_literal] = ACTIONS(451), - [aux_sym_string_literal_token1] = ACTIONS(453), - [sym_char_literal] = ACTIONS(451), - [anon_sym_true] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(457), - [sym_super] = ACTIONS(459), - [sym_crate] = ACTIONS(459), - [sym_metavariable] = ACTIONS(461), - [sym__raw_string_literal_start] = ACTIONS(463), - [sym_float_literal] = ACTIONS(451), - }, - [STATE(231)] = { - [sym_bracketed_type] = STATE(3621), - [sym_generic_function] = STATE(1691), - [sym_generic_type_with_turbofish] = STATE(3063), - [sym__expression_except_range] = STATE(1659), - [sym__expression] = STATE(1687), - [sym_macro_invocation] = STATE(1708), - [sym_scoped_identifier] = STATE(1599), - [sym_scoped_type_identifier_in_expression_position] = STATE(3307), - [sym_range_expression] = STATE(1695), - [sym_unary_expression] = STATE(1691), - [sym_try_expression] = STATE(1691), - [sym_reference_expression] = STATE(1691), - [sym_binary_expression] = STATE(1691), - [sym_assignment_expression] = STATE(1691), - [sym_compound_assignment_expr] = STATE(1691), - [sym_type_cast_expression] = STATE(1691), - [sym_return_expression] = STATE(1691), - [sym_yield_expression] = STATE(1691), - [sym_call_expression] = STATE(1691), - [sym_array_expression] = STATE(1691), - [sym_parenthesized_expression] = STATE(1691), - [sym_tuple_expression] = STATE(1691), - [sym_unit_expression] = STATE(1691), - [sym_struct_expression] = STATE(1691), - [sym_if_expression] = STATE(1691), - [sym_let_condition] = STATE(2629), - [sym_match_expression] = STATE(1691), - [sym_while_expression] = STATE(1691), - [sym_loop_expression] = STATE(1691), - [sym_for_expression] = STATE(1691), - [sym_const_block] = STATE(1691), - [sym_closure_expression] = STATE(1691), - [sym_closure_parameters] = STATE(229), - [sym_label] = STATE(3712), - [sym_break_expression] = STATE(1691), - [sym_continue_expression] = STATE(1691), - [sym_index_expression] = STATE(1691), - [sym_await_expression] = STATE(1691), - [sym_field_expression] = STATE(1671), - [sym_unsafe_block] = STATE(1691), - [sym_async_block] = STATE(1691), - [sym_gen_block] = STATE(1691), - [sym_try_block] = STATE(1691), - [sym_block] = STATE(1691), - [sym__literal] = STATE(1691), - [sym_string_literal] = STATE(1776), - [sym_raw_string_literal] = STATE(1776), - [sym_boolean_literal] = STATE(1776), - [sym_line_comment] = STATE(231), - [sym_block_comment] = STATE(231), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(495), - [anon_sym_LBRACK] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(979), - [anon_sym_u8] = ACTIONS(411), - [anon_sym_i8] = ACTIONS(411), - [anon_sym_u16] = ACTIONS(411), - [anon_sym_i16] = ACTIONS(411), - [anon_sym_u32] = ACTIONS(411), - [anon_sym_i32] = ACTIONS(411), - [anon_sym_u64] = ACTIONS(411), - [anon_sym_i64] = ACTIONS(411), - [anon_sym_u128] = ACTIONS(411), - [anon_sym_i128] = ACTIONS(411), - [anon_sym_isize] = ACTIONS(411), - [anon_sym_usize] = ACTIONS(411), - [anon_sym_f32] = ACTIONS(411), - [anon_sym_f64] = ACTIONS(411), - [anon_sym_bool] = ACTIONS(411), - [anon_sym_str] = ACTIONS(411), - [anon_sym_char] = ACTIONS(411), - [anon_sym_DASH] = ACTIONS(979), - [anon_sym_BANG] = ACTIONS(979), - [anon_sym_AMP] = ACTIONS(981), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1079), - [anon_sym_COLON_COLON] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(417), - [anon_sym_break] = ACTIONS(419), - [anon_sym_const] = ACTIONS(421), - [anon_sym_continue] = ACTIONS(423), - [anon_sym_default] = ACTIONS(425), - [anon_sym_for] = ACTIONS(427), - [anon_sym_gen] = ACTIONS(429), - [anon_sym_if] = ACTIONS(431), - [anon_sym_let] = ACTIONS(985), - [anon_sym_loop] = ACTIONS(433), - [anon_sym_match] = ACTIONS(435), - [anon_sym_return] = ACTIONS(437), - [anon_sym_static] = ACTIONS(439), - [anon_sym_union] = ACTIONS(425), - [anon_sym_unsafe] = ACTIONS(441), - [anon_sym_while] = ACTIONS(443), - [anon_sym_yield] = ACTIONS(445), - [anon_sym_move] = ACTIONS(447), - [anon_sym_try] = ACTIONS(449), - [sym_integer_literal] = ACTIONS(451), - [aux_sym_string_literal_token1] = ACTIONS(453), - [sym_char_literal] = ACTIONS(451), - [anon_sym_true] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(457), - [sym_super] = ACTIONS(459), - [sym_crate] = ACTIONS(459), - [sym_metavariable] = ACTIONS(461), - [sym__raw_string_literal_start] = ACTIONS(463), - [sym_float_literal] = ACTIONS(451), - }, - [STATE(232)] = { - [sym_bracketed_type] = STATE(3621), - [sym_generic_function] = STATE(1691), - [sym_generic_type_with_turbofish] = STATE(3063), - [sym__expression_except_range] = STATE(1659), - [sym__expression] = STATE(1789), - [sym_macro_invocation] = STATE(1708), - [sym_scoped_identifier] = STATE(1599), - [sym_scoped_type_identifier_in_expression_position] = STATE(3307), - [sym_range_expression] = STATE(1695), - [sym_unary_expression] = STATE(1691), - [sym_try_expression] = STATE(1691), - [sym_reference_expression] = STATE(1691), - [sym_binary_expression] = STATE(1691), - [sym_assignment_expression] = STATE(1691), - [sym_compound_assignment_expr] = STATE(1691), - [sym_type_cast_expression] = STATE(1691), - [sym_return_expression] = STATE(1691), - [sym_yield_expression] = STATE(1691), - [sym_call_expression] = STATE(1691), - [sym_array_expression] = STATE(1691), - [sym_parenthesized_expression] = STATE(1691), - [sym_tuple_expression] = STATE(1691), - [sym_unit_expression] = STATE(1691), - [sym_struct_expression] = STATE(1691), - [sym_if_expression] = STATE(1691), - [sym_match_expression] = STATE(1691), - [sym_while_expression] = STATE(1691), - [sym_loop_expression] = STATE(1691), - [sym_for_expression] = STATE(1691), - [sym_const_block] = STATE(1691), - [sym_closure_expression] = STATE(1691), - [sym_closure_parameters] = STATE(229), - [sym_label] = STATE(3712), - [sym_break_expression] = STATE(1691), - [sym_continue_expression] = STATE(1691), - [sym_index_expression] = STATE(1691), - [sym_await_expression] = STATE(1691), - [sym_field_expression] = STATE(1671), - [sym_unsafe_block] = STATE(1691), - [sym_async_block] = STATE(1691), - [sym_gen_block] = STATE(1691), - [sym_try_block] = STATE(1691), - [sym_block] = STATE(1697), - [sym__literal] = STATE(1691), - [sym_string_literal] = STATE(1776), - [sym_raw_string_literal] = STATE(1776), - [sym_boolean_literal] = STATE(1776), - [sym_line_comment] = STATE(232), - [sym_block_comment] = STATE(232), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(495), - [anon_sym_LBRACK] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(979), - [anon_sym_u8] = ACTIONS(411), - [anon_sym_i8] = ACTIONS(411), - [anon_sym_u16] = ACTIONS(411), - [anon_sym_i16] = ACTIONS(411), - [anon_sym_u32] = ACTIONS(411), - [anon_sym_i32] = ACTIONS(411), - [anon_sym_u64] = ACTIONS(411), - [anon_sym_i64] = ACTIONS(411), - [anon_sym_u128] = ACTIONS(411), - [anon_sym_i128] = ACTIONS(411), - [anon_sym_isize] = ACTIONS(411), - [anon_sym_usize] = ACTIONS(411), - [anon_sym_f32] = ACTIONS(411), - [anon_sym_f64] = ACTIONS(411), - [anon_sym_bool] = ACTIONS(411), - [anon_sym_str] = ACTIONS(411), - [anon_sym_char] = ACTIONS(411), - [anon_sym_DASH] = ACTIONS(413), - [anon_sym_BANG] = ACTIONS(979), - [anon_sym_AMP] = ACTIONS(981), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1101), - [anon_sym_DOT_DOT] = ACTIONS(1079), - [anon_sym_COLON_COLON] = ACTIONS(415), - [anon_sym_DASH_GT] = ACTIONS(1103), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(417), - [anon_sym_break] = ACTIONS(419), - [anon_sym_const] = ACTIONS(421), - [anon_sym_continue] = ACTIONS(423), - [anon_sym_default] = ACTIONS(425), - [anon_sym_for] = ACTIONS(427), - [anon_sym_gen] = ACTIONS(429), - [anon_sym_if] = ACTIONS(431), - [anon_sym_loop] = ACTIONS(433), - [anon_sym_match] = ACTIONS(435), - [anon_sym_return] = ACTIONS(437), - [anon_sym_static] = ACTIONS(439), - [anon_sym_union] = ACTIONS(425), - [anon_sym_unsafe] = ACTIONS(441), - [anon_sym_while] = ACTIONS(443), - [anon_sym_yield] = ACTIONS(445), - [anon_sym_move] = ACTIONS(447), - [anon_sym_try] = ACTIONS(449), - [sym_integer_literal] = ACTIONS(451), - [aux_sym_string_literal_token1] = ACTIONS(453), - [sym_char_literal] = ACTIONS(451), - [anon_sym_true] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(457), - [sym_super] = ACTIONS(459), - [sym_crate] = ACTIONS(459), - [sym_metavariable] = ACTIONS(461), - [sym__raw_string_literal_start] = ACTIONS(463), - [sym_float_literal] = ACTIONS(451), - }, - [STATE(233)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1560), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1520), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1521), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [sym_line_comment] = STATE(233), - [sym_block_comment] = STATE(233), - [sym_identifier] = ACTIONS(339), + [sym_identifier] = ACTIONS(344), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(348), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -43786,104 +43461,330 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(23), [anon_sym_str] = ACTIONS(23), [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(349), + [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(1089), - [anon_sym_DOT_DOT] = ACTIONS(1061), + [anon_sym__] = ACTIONS(1184), + [anon_sym_DOT_DOT] = ACTIONS(1190), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_DASH_GT] = ACTIONS(1091), + [anon_sym_DASH_GT] = ACTIONS(1186), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), + [anon_sym_async] = ACTIONS(356), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(358), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), + [anon_sym_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(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(115), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [anon_sym_static] = ACTIONS(372), + [anon_sym_union] = ACTIONS(360), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [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_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1829), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1520), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), + [STATE(230)] = { + [sym_bracketed_type] = STATE(3650), + [sym_generic_function] = STATE(1711), + [sym_generic_type_with_turbofish] = STATE(3091), + [sym__expression_except_range] = STATE(1658), + [sym__expression] = STATE(1809), + [sym_macro_invocation] = STATE(1717), + [sym_scoped_identifier] = STATE(1623), + [sym_scoped_type_identifier_in_expression_position] = STATE(3337), + [sym_range_expression] = STATE(1715), + [sym_unary_expression] = STATE(1711), + [sym_try_expression] = STATE(1711), + [sym_reference_expression] = STATE(1711), + [sym_binary_expression] = STATE(1711), + [sym_assignment_expression] = STATE(1711), + [sym_compound_assignment_expr] = STATE(1711), + [sym_type_cast_expression] = STATE(1711), + [sym_return_expression] = STATE(1711), + [sym_yield_expression] = STATE(1711), + [sym_call_expression] = STATE(1711), + [sym_array_expression] = STATE(1711), + [sym_parenthesized_expression] = STATE(1711), + [sym_tuple_expression] = STATE(1711), + [sym_unit_expression] = STATE(1711), + [sym_struct_expression] = STATE(1711), + [sym_if_expression] = STATE(1711), + [sym_let_condition] = STATE(2635), + [sym_match_expression] = STATE(1711), + [sym_while_expression] = STATE(1711), + [sym_loop_expression] = STATE(1711), + [sym_for_expression] = STATE(1711), + [sym_const_block] = STATE(1711), + [sym_closure_expression] = STATE(1711), [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [sym_line_comment] = STATE(234), - [sym_block_comment] = STATE(234), - [aux_sym_tuple_expression_repeat1] = STATE(240), - [sym_identifier] = ACTIONS(339), + [sym_label] = STATE(3742), + [sym_break_expression] = STATE(1711), + [sym_continue_expression] = STATE(1711), + [sym_index_expression] = STATE(1711), + [sym_await_expression] = STATE(1711), + [sym_field_expression] = STATE(1690), + [sym_unsafe_block] = STATE(1711), + [sym_async_block] = STATE(1711), + [sym_gen_block] = STATE(1711), + [sym_try_block] = STATE(1711), + [sym_block] = STATE(1711), + [sym__literal] = STATE(1711), + [sym_string_literal] = STATE(1831), + [sym_raw_string_literal] = STATE(1831), + [sym_boolean_literal] = STATE(1831), + [sym_line_comment] = STATE(230), + [sym_block_comment] = STATE(230), + [sym_identifier] = ACTIONS(410), + [anon_sym_LPAREN] = ACTIONS(498), + [anon_sym_LBRACK] = ACTIONS(500), + [anon_sym_LBRACE] = ACTIONS(412), + [anon_sym_STAR] = ACTIONS(990), + [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(990), + [anon_sym_BANG] = ACTIONS(990), + [anon_sym_AMP] = ACTIONS(992), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1176), + [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_let] = ACTIONS(996), + [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_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(231)] = { + [sym_bracketed_type] = STATE(3650), + [sym_generic_function] = STATE(1711), + [sym_generic_type_with_turbofish] = STATE(3091), + [sym__expression_except_range] = STATE(1658), + [sym__expression] = STATE(1953), + [sym_macro_invocation] = STATE(1717), + [sym_scoped_identifier] = STATE(1623), + [sym_scoped_type_identifier_in_expression_position] = STATE(3337), + [sym_range_expression] = STATE(1715), + [sym_unary_expression] = STATE(1711), + [sym_try_expression] = STATE(1711), + [sym_reference_expression] = STATE(1711), + [sym_binary_expression] = STATE(1711), + [sym_assignment_expression] = STATE(1711), + [sym_compound_assignment_expr] = STATE(1711), + [sym_type_cast_expression] = STATE(1711), + [sym_return_expression] = STATE(1711), + [sym_yield_expression] = STATE(1711), + [sym_call_expression] = STATE(1711), + [sym_array_expression] = STATE(1711), + [sym_parenthesized_expression] = STATE(1711), + [sym_tuple_expression] = STATE(1711), + [sym_unit_expression] = STATE(1711), + [sym_struct_expression] = STATE(1711), + [sym_if_expression] = STATE(1711), + [sym_let_condition] = STATE(2635), + [sym_match_expression] = STATE(1711), + [sym_while_expression] = STATE(1711), + [sym_loop_expression] = STATE(1711), + [sym_for_expression] = STATE(1711), + [sym_const_block] = STATE(1711), + [sym_closure_expression] = STATE(1711), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3742), + [sym_break_expression] = STATE(1711), + [sym_continue_expression] = STATE(1711), + [sym_index_expression] = STATE(1711), + [sym_await_expression] = STATE(1711), + [sym_field_expression] = STATE(1690), + [sym_unsafe_block] = STATE(1711), + [sym_async_block] = STATE(1711), + [sym_gen_block] = STATE(1711), + [sym_try_block] = STATE(1711), + [sym_block] = STATE(1711), + [sym__literal] = STATE(1711), + [sym_string_literal] = STATE(1831), + [sym_raw_string_literal] = STATE(1831), + [sym_boolean_literal] = STATE(1831), + [sym_line_comment] = STATE(231), + [sym_block_comment] = STATE(231), + [sym_identifier] = ACTIONS(410), + [anon_sym_LPAREN] = ACTIONS(498), + [anon_sym_LBRACK] = ACTIONS(500), + [anon_sym_LBRACE] = ACTIONS(412), + [anon_sym_STAR] = ACTIONS(990), + [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(990), + [anon_sym_BANG] = ACTIONS(990), + [anon_sym_AMP] = ACTIONS(992), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(994), + [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_let] = ACTIONS(996), + [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_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(232)] = { + [sym_bracketed_type] = STATE(3752), + [sym_generic_function] = STATE(1492), + [sym_generic_type_with_turbofish] = STATE(3039), + [sym__expression_except_range] = STATE(1409), + [sym__expression] = STATE(1541), + [sym_macro_invocation] = STATE(1529), + [sym_scoped_identifier] = STATE(1540), + [sym_scoped_type_identifier_in_expression_position] = STATE(3335), + [sym_range_expression] = STATE(1505), + [sym_unary_expression] = STATE(1492), + [sym_try_expression] = STATE(1492), + [sym_reference_expression] = STATE(1492), + [sym_binary_expression] = STATE(1492), + [sym_assignment_expression] = STATE(1492), + [sym_compound_assignment_expr] = STATE(1492), + [sym_type_cast_expression] = STATE(1492), + [sym_return_expression] = STATE(1492), + [sym_yield_expression] = STATE(1492), + [sym_call_expression] = STATE(1492), + [sym_array_expression] = STATE(1492), + [sym_parenthesized_expression] = STATE(1492), + [sym_tuple_expression] = STATE(1492), + [sym_unit_expression] = STATE(1492), + [sym_struct_expression] = STATE(1492), + [sym_if_expression] = STATE(1492), + [sym_match_expression] = STATE(1492), + [sym_while_expression] = STATE(1492), + [sym_loop_expression] = STATE(1492), + [sym_for_expression] = STATE(1492), + [sym_const_block] = STATE(1492), + [sym_closure_expression] = STATE(1492), + [sym_closure_parameters] = STATE(229), + [sym_label] = STATE(3689), + [sym_break_expression] = STATE(1492), + [sym_continue_expression] = STATE(1492), + [sym_index_expression] = STATE(1492), + [sym_await_expression] = STATE(1492), + [sym_field_expression] = STATE(1412), + [sym_unsafe_block] = STATE(1492), + [sym_async_block] = STATE(1492), + [sym_gen_block] = STATE(1492), + [sym_try_block] = STATE(1492), + [sym_block] = STATE(1492), + [sym__literal] = STATE(1492), + [sym_string_literal] = STATE(1530), + [sym_raw_string_literal] = STATE(1530), + [sym_boolean_literal] = STATE(1530), + [sym_line_comment] = STATE(232), + [sym_block_comment] = STATE(232), + [sym_identifier] = ACTIONS(344), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(1105), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(348), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -43907,97 +43808,439 @@ 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(1190), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), + [anon_sym_async] = ACTIONS(356), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(358), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), + [anon_sym_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(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(115), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [anon_sym_static] = ACTIONS(372), + [anon_sym_union] = ACTIONS(360), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [sym_mutable_specifier] = ACTIONS(1206), + [anon_sym_raw] = ACTIONS(1208), + [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(235)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1829), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1520), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), + [STATE(233)] = { + [sym_bracketed_type] = STATE(3650), + [sym_generic_function] = STATE(1711), + [sym_generic_type_with_turbofish] = STATE(3091), + [sym__expression_except_range] = STATE(1658), + [sym__expression] = STATE(1838), + [sym_macro_invocation] = STATE(1717), + [sym_scoped_identifier] = STATE(1623), + [sym_scoped_type_identifier_in_expression_position] = STATE(3337), + [sym_range_expression] = STATE(1715), + [sym_unary_expression] = STATE(1711), + [sym_try_expression] = STATE(1711), + [sym_reference_expression] = STATE(1711), + [sym_binary_expression] = STATE(1711), + [sym_assignment_expression] = STATE(1711), + [sym_compound_assignment_expr] = STATE(1711), + [sym_type_cast_expression] = STATE(1711), + [sym_return_expression] = STATE(1711), + [sym_yield_expression] = STATE(1711), + [sym_call_expression] = STATE(1711), + [sym_array_expression] = STATE(1711), + [sym_parenthesized_expression] = STATE(1711), + [sym_tuple_expression] = STATE(1711), + [sym_unit_expression] = STATE(1711), + [sym_struct_expression] = STATE(1711), + [sym_if_expression] = STATE(1711), + [sym_match_expression] = STATE(1711), + [sym_while_expression] = STATE(1711), + [sym_loop_expression] = STATE(1711), + [sym_for_expression] = STATE(1711), + [sym_const_block] = STATE(1711), + [sym_closure_expression] = STATE(1711), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3742), + [sym_break_expression] = STATE(1711), + [sym_continue_expression] = STATE(1711), + [sym_index_expression] = STATE(1711), + [sym_await_expression] = STATE(1711), + [sym_field_expression] = STATE(1690), + [sym_unsafe_block] = STATE(1711), + [sym_async_block] = STATE(1711), + [sym_gen_block] = STATE(1711), + [sym_try_block] = STATE(1711), + [sym_block] = STATE(1853), + [sym__literal] = STATE(1711), + [sym_string_literal] = STATE(1831), + [sym_raw_string_literal] = STATE(1831), + [sym_boolean_literal] = STATE(1831), + [sym_line_comment] = STATE(233), + [sym_block_comment] = STATE(233), + [sym_identifier] = ACTIONS(410), + [anon_sym_LPAREN] = ACTIONS(498), + [anon_sym_LBRACK] = ACTIONS(500), + [anon_sym_LBRACE] = ACTIONS(412), + [anon_sym_STAR] = ACTIONS(990), + [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(990), + [anon_sym_AMP] = ACTIONS(992), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1210), + [anon_sym_DOT_DOT] = ACTIONS(1176), + [anon_sym_COLON_COLON] = ACTIONS(420), + [anon_sym_DASH_GT] = ACTIONS(1212), + [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_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(234)] = { + [sym_bracketed_type] = STATE(3650), + [sym_generic_function] = STATE(1711), + [sym_generic_type_with_turbofish] = STATE(3091), + [sym__expression_except_range] = STATE(1658), + [sym__expression] = STATE(1841), + [sym_macro_invocation] = STATE(1717), + [sym_scoped_identifier] = STATE(1623), + [sym_scoped_type_identifier_in_expression_position] = STATE(3337), + [sym_range_expression] = STATE(1715), + [sym_unary_expression] = STATE(1711), + [sym_try_expression] = STATE(1711), + [sym_reference_expression] = STATE(1711), + [sym_binary_expression] = STATE(1711), + [sym_assignment_expression] = STATE(1711), + [sym_compound_assignment_expr] = STATE(1711), + [sym_type_cast_expression] = STATE(1711), + [sym_return_expression] = STATE(1711), + [sym_yield_expression] = STATE(1711), + [sym_call_expression] = STATE(1711), + [sym_array_expression] = STATE(1711), + [sym_parenthesized_expression] = STATE(1711), + [sym_tuple_expression] = STATE(1711), + [sym_unit_expression] = STATE(1711), + [sym_struct_expression] = STATE(1711), + [sym_if_expression] = STATE(1711), + [sym_match_expression] = STATE(1711), + [sym_while_expression] = STATE(1711), + [sym_loop_expression] = STATE(1711), + [sym_for_expression] = STATE(1711), + [sym_const_block] = STATE(1711), + [sym_closure_expression] = STATE(1711), [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), + [sym_label] = STATE(3742), + [sym_break_expression] = STATE(1711), + [sym_continue_expression] = STATE(1711), + [sym_index_expression] = STATE(1711), + [sym_await_expression] = STATE(1711), + [sym_field_expression] = STATE(1690), + [sym_unsafe_block] = STATE(1711), + [sym_async_block] = STATE(1711), + [sym_gen_block] = STATE(1711), + [sym_try_block] = STATE(1711), + [sym_block] = STATE(1708), + [sym__literal] = STATE(1711), + [sym_string_literal] = STATE(1831), + [sym_raw_string_literal] = STATE(1831), + [sym_boolean_literal] = STATE(1831), + [sym_line_comment] = STATE(234), + [sym_block_comment] = STATE(234), + [sym_identifier] = ACTIONS(410), + [anon_sym_LPAREN] = ACTIONS(498), + [anon_sym_LBRACK] = ACTIONS(500), + [anon_sym_LBRACE] = ACTIONS(412), + [anon_sym_STAR] = ACTIONS(990), + [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(990), + [anon_sym_AMP] = ACTIONS(992), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1214), + [anon_sym_DOT_DOT] = ACTIONS(1176), + [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_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(235)] = { + [sym_bracketed_type] = STATE(3752), + [sym_generic_function] = STATE(1492), + [sym_generic_type_with_turbofish] = STATE(3085), + [sym__expression_except_range] = STATE(1409), + [sym__expression] = STATE(1727), + [sym_macro_invocation] = STATE(1529), + [sym_scoped_identifier] = STATE(1604), + [sym_scoped_type_identifier_in_expression_position] = STATE(3335), + [sym_range_expression] = STATE(1505), + [sym_unary_expression] = STATE(1492), + [sym_try_expression] = STATE(1492), + [sym_reference_expression] = STATE(1492), + [sym_binary_expression] = STATE(1492), + [sym_assignment_expression] = STATE(1492), + [sym_compound_assignment_expr] = STATE(1492), + [sym_type_cast_expression] = STATE(1492), + [sym_return_expression] = STATE(1492), + [sym_yield_expression] = STATE(1492), + [sym_call_expression] = STATE(1492), + [sym_array_expression] = STATE(1492), + [sym_parenthesized_expression] = STATE(1492), + [sym_tuple_expression] = STATE(1492), + [sym_unit_expression] = STATE(1492), + [sym_struct_expression] = STATE(1492), + [sym_if_expression] = STATE(1492), + [sym_match_expression] = STATE(1492), + [sym_while_expression] = STATE(1492), + [sym_loop_expression] = STATE(1492), + [sym_for_expression] = STATE(1492), + [sym_const_block] = STATE(1492), + [sym_closure_expression] = STATE(1492), + [sym_closure_parameters] = STATE(235), + [sym_label] = STATE(3689), + [sym_break_expression] = STATE(1492), + [sym_continue_expression] = STATE(1492), + [sym_index_expression] = STATE(1492), + [sym_await_expression] = STATE(1492), + [sym_field_expression] = STATE(1412), + [sym_unsafe_block] = STATE(1492), + [sym_async_block] = STATE(1492), + [sym_gen_block] = STATE(1492), + [sym_try_block] = STATE(1492), + [sym_block] = STATE(1514), + [sym__literal] = STATE(1492), + [sym_string_literal] = STATE(1530), + [sym_raw_string_literal] = STATE(1530), + [sym_boolean_literal] = STATE(1530), [sym_line_comment] = STATE(235), [sym_block_comment] = STATE(235), - [aux_sym_tuple_expression_repeat1] = STATE(219), - [sym_identifier] = ACTIONS(339), + [sym_identifier] = ACTIONS(470), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(348), + [anon_sym_STAR] = ACTIONS(1196), + [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(1196), + [anon_sym_AMP] = ACTIONS(1198), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1184), + [anon_sym_DOT_DOT] = ACTIONS(1200), + [anon_sym_COLON_COLON] = ACTIONS(476), + [anon_sym_DASH_GT] = ACTIONS(1186), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(356), + [anon_sym_break] = ACTIONS(478), + [anon_sym_const] = ACTIONS(358), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(480), + [anon_sym_for] = ACTIONS(362), + [anon_sym_gen] = ACTIONS(482), + [anon_sym_if] = ACTIONS(366), + [anon_sym_loop] = ACTIONS(368), + [anon_sym_match] = ACTIONS(370), + [anon_sym_return] = ACTIONS(484), + [anon_sym_static] = ACTIONS(486), + [anon_sym_union] = ACTIONS(480), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [anon_sym_yield] = ACTIONS(488), + [anon_sym_move] = ACTIONS(490), + [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(492), + [sym_super] = ACTIONS(494), + [sym_crate] = ACTIONS(494), + [sym_metavariable] = ACTIONS(496), + [sym__raw_string_literal_start] = ACTIONS(119), + [sym_float_literal] = ACTIONS(99), + }, + [STATE(236)] = { + [sym_bracketed_type] = STATE(3752), + [sym_generic_function] = STATE(1492), + [sym_generic_type_with_turbofish] = STATE(3039), + [sym__expression_except_range] = STATE(1409), + [sym__expression] = STATE(1565), + [sym_macro_invocation] = STATE(1529), + [sym_scoped_identifier] = STATE(1540), + [sym_scoped_type_identifier_in_expression_position] = STATE(3335), + [sym_range_expression] = STATE(1505), + [sym_unary_expression] = STATE(1492), + [sym_try_expression] = STATE(1492), + [sym_reference_expression] = STATE(1492), + [sym_binary_expression] = STATE(1492), + [sym_assignment_expression] = STATE(1492), + [sym_compound_assignment_expr] = STATE(1492), + [sym_type_cast_expression] = STATE(1492), + [sym_return_expression] = STATE(1492), + [sym_yield_expression] = STATE(1492), + [sym_call_expression] = STATE(1492), + [sym_array_expression] = STATE(1492), + [sym_parenthesized_expression] = STATE(1492), + [sym_tuple_expression] = STATE(1492), + [sym_unit_expression] = STATE(1492), + [sym_struct_expression] = STATE(1492), + [sym_if_expression] = STATE(1492), + [sym_match_expression] = STATE(1492), + [sym_while_expression] = STATE(1492), + [sym_loop_expression] = STATE(1492), + [sym_for_expression] = STATE(1492), + [sym_const_block] = STATE(1492), + [sym_closure_expression] = STATE(1492), + [sym_closure_parameters] = STATE(229), + [sym_label] = STATE(3689), + [sym_break_expression] = STATE(1492), + [sym_continue_expression] = STATE(1492), + [sym_index_expression] = STATE(1492), + [sym_await_expression] = STATE(1492), + [sym_field_expression] = STATE(1412), + [sym_unsafe_block] = STATE(1492), + [sym_async_block] = STATE(1492), + [sym_gen_block] = STATE(1492), + [sym_try_block] = STATE(1492), + [sym_block] = STATE(1482), + [sym__literal] = STATE(1492), + [sym_string_literal] = STATE(1530), + [sym_raw_string_literal] = STATE(1530), + [sym_boolean_literal] = STATE(1530), + [sym_line_comment] = STATE(236), + [sym_block_comment] = STATE(236), + [sym_identifier] = ACTIONS(344), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(1105), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(348), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -44016,442 +44259,560 @@ 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(354), [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(1218), + [anon_sym_DOT_DOT] = ACTIONS(1190), [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_DASH_GT] = ACTIONS(1220), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), + [anon_sym_async] = ACTIONS(356), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(358), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), + [anon_sym_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(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(115), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), - }, - [STATE(236)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3056), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1716), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1591), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_let_condition] = STATE(2629), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [sym_line_comment] = STATE(236), - [sym_block_comment] = STATE(236), - [sym_identifier] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(901), - [anon_sym_u8] = ACTIONS(469), - [anon_sym_i8] = ACTIONS(469), - [anon_sym_u16] = ACTIONS(469), - [anon_sym_i16] = ACTIONS(469), - [anon_sym_u32] = ACTIONS(469), - [anon_sym_i32] = ACTIONS(469), - [anon_sym_u64] = ACTIONS(469), - [anon_sym_i64] = ACTIONS(469), - [anon_sym_u128] = ACTIONS(469), - [anon_sym_i128] = ACTIONS(469), - [anon_sym_isize] = ACTIONS(469), - [anon_sym_usize] = ACTIONS(469), - [anon_sym_f32] = ACTIONS(469), - [anon_sym_f64] = ACTIONS(469), - [anon_sym_bool] = ACTIONS(469), - [anon_sym_str] = ACTIONS(469), - [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(901), - [anon_sym_BANG] = ACTIONS(901), - [anon_sym_AMP] = ACTIONS(903), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(905), - [anon_sym_COLON_COLON] = ACTIONS(473), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(477), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), - [anon_sym_if] = ACTIONS(361), - [anon_sym_let] = ACTIONS(907), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(477), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(489), - [sym_super] = ACTIONS(491), - [sym_crate] = ACTIONS(491), - [sym_metavariable] = ACTIONS(493), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [anon_sym_static] = ACTIONS(372), + [anon_sym_union] = ACTIONS(360), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [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(237)] = { - [sym_bracketed_type] = STATE(3621), - [sym_generic_function] = STATE(1691), - [sym_generic_type_with_turbofish] = STATE(3063), - [sym__expression_except_range] = STATE(1659), - [sym__expression] = STATE(1928), - [sym_macro_invocation] = STATE(1708), - [sym_scoped_identifier] = STATE(1599), - [sym_scoped_type_identifier_in_expression_position] = STATE(3307), - [sym_range_expression] = STATE(1695), - [sym_unary_expression] = STATE(1691), - [sym_try_expression] = STATE(1691), - [sym_reference_expression] = STATE(1691), - [sym_binary_expression] = STATE(1691), - [sym_assignment_expression] = STATE(1691), - [sym_compound_assignment_expr] = STATE(1691), - [sym_type_cast_expression] = STATE(1691), - [sym_return_expression] = STATE(1691), - [sym_yield_expression] = STATE(1691), - [sym_call_expression] = STATE(1691), - [sym_array_expression] = STATE(1691), - [sym_parenthesized_expression] = STATE(1691), - [sym_tuple_expression] = STATE(1691), - [sym_unit_expression] = STATE(1691), - [sym_struct_expression] = STATE(1691), - [sym_if_expression] = STATE(1691), - [sym_let_condition] = STATE(2629), - [sym_match_expression] = STATE(1691), - [sym_while_expression] = STATE(1691), - [sym_loop_expression] = STATE(1691), - [sym_for_expression] = STATE(1691), - [sym_const_block] = STATE(1691), - [sym_closure_expression] = STATE(1691), - [sym_closure_parameters] = STATE(229), - [sym_label] = STATE(3712), - [sym_break_expression] = STATE(1691), - [sym_continue_expression] = STATE(1691), - [sym_index_expression] = STATE(1691), - [sym_await_expression] = STATE(1691), - [sym_field_expression] = STATE(1671), - [sym_unsafe_block] = STATE(1691), - [sym_async_block] = STATE(1691), - [sym_gen_block] = STATE(1691), - [sym_try_block] = STATE(1691), - [sym_block] = STATE(1691), - [sym__literal] = STATE(1691), - [sym_string_literal] = STATE(1776), - [sym_raw_string_literal] = STATE(1776), - [sym_boolean_literal] = STATE(1776), + [sym_bracketed_type] = STATE(3752), + [sym_generic_function] = STATE(1492), + [sym_generic_type_with_turbofish] = STATE(3085), + [sym__expression_except_range] = STATE(1409), + [sym__expression] = STATE(1740), + [sym_macro_invocation] = STATE(1529), + [sym_scoped_identifier] = STATE(1604), + [sym_scoped_type_identifier_in_expression_position] = STATE(3335), + [sym_range_expression] = STATE(1505), + [sym_unary_expression] = STATE(1492), + [sym_try_expression] = STATE(1492), + [sym_reference_expression] = STATE(1492), + [sym_binary_expression] = STATE(1492), + [sym_assignment_expression] = STATE(1492), + [sym_compound_assignment_expr] = STATE(1492), + [sym_type_cast_expression] = STATE(1492), + [sym_return_expression] = STATE(1492), + [sym_yield_expression] = STATE(1492), + [sym_call_expression] = STATE(1492), + [sym_array_expression] = STATE(1492), + [sym_parenthesized_expression] = STATE(1492), + [sym_tuple_expression] = STATE(1492), + [sym_unit_expression] = STATE(1492), + [sym_struct_expression] = STATE(1492), + [sym_if_expression] = STATE(1492), + [sym_match_expression] = STATE(1492), + [sym_while_expression] = STATE(1492), + [sym_loop_expression] = STATE(1492), + [sym_for_expression] = STATE(1492), + [sym_const_block] = STATE(1492), + [sym_closure_expression] = STATE(1492), + [sym_closure_parameters] = STATE(235), + [sym_label] = STATE(3689), + [sym_break_expression] = STATE(1492), + [sym_continue_expression] = STATE(1492), + [sym_index_expression] = STATE(1492), + [sym_await_expression] = STATE(1492), + [sym_field_expression] = STATE(1412), + [sym_unsafe_block] = STATE(1492), + [sym_async_block] = STATE(1492), + [sym_gen_block] = STATE(1492), + [sym_try_block] = STATE(1492), + [sym_block] = STATE(1469), + [sym__literal] = STATE(1492), + [sym_string_literal] = STATE(1530), + [sym_raw_string_literal] = STATE(1530), + [sym_boolean_literal] = STATE(1530), [sym_line_comment] = STATE(237), [sym_block_comment] = STATE(237), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(495), - [anon_sym_LBRACK] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(979), - [anon_sym_u8] = ACTIONS(411), - [anon_sym_i8] = ACTIONS(411), - [anon_sym_u16] = ACTIONS(411), - [anon_sym_i16] = ACTIONS(411), - [anon_sym_u32] = ACTIONS(411), - [anon_sym_i32] = ACTIONS(411), - [anon_sym_u64] = ACTIONS(411), - [anon_sym_i64] = ACTIONS(411), - [anon_sym_u128] = ACTIONS(411), - [anon_sym_i128] = ACTIONS(411), - [anon_sym_isize] = ACTIONS(411), - [anon_sym_usize] = ACTIONS(411), - [anon_sym_f32] = ACTIONS(411), - [anon_sym_f64] = ACTIONS(411), - [anon_sym_bool] = ACTIONS(411), - [anon_sym_str] = ACTIONS(411), - [anon_sym_char] = ACTIONS(411), - [anon_sym_DASH] = ACTIONS(979), - [anon_sym_BANG] = ACTIONS(979), - [anon_sym_AMP] = ACTIONS(981), + [sym_identifier] = ACTIONS(470), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(348), + [anon_sym_STAR] = ACTIONS(1196), + [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(1196), + [anon_sym_AMP] = ACTIONS(1198), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(983), - [anon_sym_COLON_COLON] = ACTIONS(415), + [anon_sym__] = ACTIONS(1188), + [anon_sym_DOT_DOT] = ACTIONS(1200), + [anon_sym_COLON_COLON] = ACTIONS(476), + [anon_sym_DASH_GT] = ACTIONS(1192), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(417), - [anon_sym_break] = ACTIONS(419), - [anon_sym_const] = ACTIONS(421), - [anon_sym_continue] = ACTIONS(423), - [anon_sym_default] = ACTIONS(425), - [anon_sym_for] = ACTIONS(427), - [anon_sym_gen] = ACTIONS(429), - [anon_sym_if] = ACTIONS(431), - [anon_sym_let] = ACTIONS(985), - [anon_sym_loop] = ACTIONS(433), - [anon_sym_match] = ACTIONS(435), - [anon_sym_return] = ACTIONS(437), - [anon_sym_static] = ACTIONS(439), - [anon_sym_union] = ACTIONS(425), - [anon_sym_unsafe] = ACTIONS(441), - [anon_sym_while] = ACTIONS(443), - [anon_sym_yield] = ACTIONS(445), - [anon_sym_move] = ACTIONS(447), - [anon_sym_try] = ACTIONS(449), - [sym_integer_literal] = ACTIONS(451), - [aux_sym_string_literal_token1] = ACTIONS(453), - [sym_char_literal] = ACTIONS(451), - [anon_sym_true] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(457), - [sym_super] = ACTIONS(459), - [sym_crate] = ACTIONS(459), - [sym_metavariable] = ACTIONS(461), - [sym__raw_string_literal_start] = ACTIONS(463), - [sym_float_literal] = ACTIONS(451), + [anon_sym_async] = ACTIONS(356), + [anon_sym_break] = ACTIONS(478), + [anon_sym_const] = ACTIONS(358), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(480), + [anon_sym_for] = ACTIONS(362), + [anon_sym_gen] = ACTIONS(482), + [anon_sym_if] = ACTIONS(366), + [anon_sym_loop] = ACTIONS(368), + [anon_sym_match] = ACTIONS(370), + [anon_sym_return] = ACTIONS(484), + [anon_sym_static] = ACTIONS(486), + [anon_sym_union] = ACTIONS(480), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [anon_sym_yield] = ACTIONS(488), + [anon_sym_move] = ACTIONS(490), + [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(492), + [sym_super] = ACTIONS(494), + [sym_crate] = ACTIONS(494), + [sym_metavariable] = ACTIONS(496), + [sym__raw_string_literal_start] = ACTIONS(119), + [sym_float_literal] = ACTIONS(99), }, [STATE(238)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3056), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1686), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1591), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1501), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), + [sym_bracketed_type] = STATE(3752), + [sym_generic_function] = STATE(1492), + [sym_generic_type_with_turbofish] = STATE(3085), + [sym__expression_except_range] = STATE(1409), + [sym__expression] = STATE(1640), + [sym_macro_invocation] = STATE(1529), + [sym_scoped_identifier] = STATE(1604), + [sym_scoped_type_identifier_in_expression_position] = STATE(3335), + [sym_range_expression] = STATE(1505), + [sym_unary_expression] = STATE(1492), + [sym_try_expression] = STATE(1492), + [sym_reference_expression] = STATE(1492), + [sym_binary_expression] = STATE(1492), + [sym_assignment_expression] = STATE(1492), + [sym_compound_assignment_expr] = STATE(1492), + [sym_type_cast_expression] = STATE(1492), + [sym_return_expression] = STATE(1492), + [sym_yield_expression] = STATE(1492), + [sym_call_expression] = STATE(1492), + [sym_array_expression] = STATE(1492), + [sym_parenthesized_expression] = STATE(1492), + [sym_tuple_expression] = STATE(1492), + [sym_unit_expression] = STATE(1492), + [sym_struct_expression] = STATE(1492), + [sym_if_expression] = STATE(1492), + [sym_match_expression] = STATE(1492), + [sym_while_expression] = STATE(1492), + [sym_loop_expression] = STATE(1492), + [sym_for_expression] = STATE(1492), + [sym_const_block] = STATE(1492), + [sym_closure_expression] = STATE(1492), + [sym_closure_parameters] = STATE(221), + [sym_label] = STATE(3689), + [sym_break_expression] = STATE(1492), + [sym_continue_expression] = STATE(1492), + [sym_index_expression] = STATE(1492), + [sym_await_expression] = STATE(1492), + [sym_field_expression] = STATE(1412), + [sym_unsafe_block] = STATE(1492), + [sym_async_block] = STATE(1492), + [sym_gen_block] = STATE(1492), + [sym_try_block] = STATE(1492), + [sym_block] = STATE(1482), + [sym__literal] = STATE(1492), + [sym_string_literal] = STATE(1530), + [sym_raw_string_literal] = STATE(1530), + [sym_boolean_literal] = STATE(1530), [sym_line_comment] = STATE(238), [sym_block_comment] = STATE(238), - [sym_identifier] = ACTIONS(467), + [sym_identifier] = ACTIONS(470), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(901), - [anon_sym_u8] = ACTIONS(469), - [anon_sym_i8] = ACTIONS(469), - [anon_sym_u16] = ACTIONS(469), - [anon_sym_i16] = ACTIONS(469), - [anon_sym_u32] = ACTIONS(469), - [anon_sym_i32] = ACTIONS(469), - [anon_sym_u64] = ACTIONS(469), - [anon_sym_i64] = ACTIONS(469), - [anon_sym_u128] = ACTIONS(469), - [anon_sym_i128] = ACTIONS(469), - [anon_sym_isize] = ACTIONS(469), - [anon_sym_usize] = ACTIONS(469), - [anon_sym_f32] = ACTIONS(469), - [anon_sym_f64] = ACTIONS(469), - [anon_sym_bool] = ACTIONS(469), - [anon_sym_str] = ACTIONS(469), - [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(503), - [anon_sym_BANG] = ACTIONS(901), - [anon_sym_AMP] = ACTIONS(903), + [anon_sym_LBRACE] = ACTIONS(348), + [anon_sym_STAR] = ACTIONS(978), + [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(508), + [anon_sym_BANG] = ACTIONS(978), + [anon_sym_AMP] = ACTIONS(980), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1065), - [anon_sym_DOT_DOT] = ACTIONS(1055), - [anon_sym_COLON_COLON] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(1067), + [anon_sym__] = ACTIONS(1218), + [anon_sym_DOT_DOT] = ACTIONS(1170), + [anon_sym_COLON_COLON] = ACTIONS(476), + [anon_sym_DASH_GT] = ACTIONS(1220), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(477), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(477), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(489), - [sym_super] = ACTIONS(491), - [sym_crate] = ACTIONS(491), - [sym_metavariable] = ACTIONS(493), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [anon_sym_async] = ACTIONS(356), + [anon_sym_break] = ACTIONS(510), + [anon_sym_const] = ACTIONS(358), + [anon_sym_continue] = ACTIONS(512), + [anon_sym_default] = ACTIONS(480), + [anon_sym_for] = ACTIONS(362), + [anon_sym_gen] = ACTIONS(514), + [anon_sym_if] = ACTIONS(366), + [anon_sym_loop] = ACTIONS(368), + [anon_sym_match] = ACTIONS(370), + [anon_sym_return] = ACTIONS(516), + [anon_sym_static] = ACTIONS(518), + [anon_sym_union] = ACTIONS(480), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [anon_sym_yield] = ACTIONS(520), + [anon_sym_move] = ACTIONS(522), + [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(492), + [sym_super] = ACTIONS(494), + [sym_crate] = ACTIONS(494), + [sym_metavariable] = ACTIONS(496), + [sym__raw_string_literal_start] = ACTIONS(119), + [sym_float_literal] = ACTIONS(99), }, [STATE(239)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1738), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1520), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1521), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), + [sym_bracketed_type] = STATE(3752), + [sym_generic_function] = STATE(1492), + [sym_generic_type_with_turbofish] = STATE(3085), + [sym__expression_except_range] = STATE(1409), + [sym__expression] = STATE(1860), + [sym_macro_invocation] = STATE(1529), + [sym_scoped_identifier] = STATE(1604), + [sym_scoped_type_identifier_in_expression_position] = STATE(3335), + [sym_range_expression] = STATE(1505), + [sym_unary_expression] = STATE(1492), + [sym_try_expression] = STATE(1492), + [sym_reference_expression] = STATE(1492), + [sym_binary_expression] = STATE(1492), + [sym_assignment_expression] = STATE(1492), + [sym_compound_assignment_expr] = STATE(1492), + [sym_type_cast_expression] = STATE(1492), + [sym_return_expression] = STATE(1492), + [sym_yield_expression] = STATE(1492), + [sym_call_expression] = STATE(1492), + [sym_array_expression] = STATE(1492), + [sym_parenthesized_expression] = STATE(1492), + [sym_tuple_expression] = STATE(1492), + [sym_unit_expression] = STATE(1492), + [sym_struct_expression] = STATE(1492), + [sym_if_expression] = STATE(1492), + [sym_let_condition] = STATE(2635), + [sym_match_expression] = STATE(1492), + [sym_while_expression] = STATE(1492), + [sym_loop_expression] = STATE(1492), + [sym_for_expression] = STATE(1492), + [sym_const_block] = STATE(1492), + [sym_closure_expression] = STATE(1492), + [sym_closure_parameters] = STATE(221), + [sym_label] = STATE(3689), + [sym_break_expression] = STATE(1492), + [sym_continue_expression] = STATE(1492), + [sym_index_expression] = STATE(1492), + [sym_await_expression] = STATE(1492), + [sym_field_expression] = STATE(1412), + [sym_unsafe_block] = STATE(1492), + [sym_async_block] = STATE(1492), + [sym_gen_block] = STATE(1492), + [sym_try_block] = STATE(1492), + [sym_block] = STATE(1492), + [sym__literal] = STATE(1492), + [sym_string_literal] = STATE(1530), + [sym_raw_string_literal] = STATE(1530), + [sym_boolean_literal] = STATE(1530), [sym_line_comment] = STATE(239), [sym_block_comment] = STATE(239), - [sym_identifier] = ACTIONS(339), + [sym_identifier] = ACTIONS(470), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(348), + [anon_sym_STAR] = ACTIONS(978), + [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(978), + [anon_sym_BANG] = ACTIONS(978), + [anon_sym_AMP] = ACTIONS(980), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(982), + [anon_sym_COLON_COLON] = ACTIONS(476), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(356), + [anon_sym_break] = ACTIONS(510), + [anon_sym_const] = ACTIONS(358), + [anon_sym_continue] = ACTIONS(512), + [anon_sym_default] = ACTIONS(480), + [anon_sym_for] = ACTIONS(362), + [anon_sym_gen] = ACTIONS(514), + [anon_sym_if] = ACTIONS(366), + [anon_sym_let] = ACTIONS(984), + [anon_sym_loop] = ACTIONS(368), + [anon_sym_match] = ACTIONS(370), + [anon_sym_return] = ACTIONS(516), + [anon_sym_static] = ACTIONS(518), + [anon_sym_union] = ACTIONS(480), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [anon_sym_yield] = ACTIONS(520), + [anon_sym_move] = ACTIONS(522), + [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(492), + [sym_super] = ACTIONS(494), + [sym_crate] = ACTIONS(494), + [sym_metavariable] = ACTIONS(496), + [sym__raw_string_literal_start] = ACTIONS(119), + [sym_float_literal] = ACTIONS(99), + }, + [STATE(240)] = { + [sym_bracketed_type] = STATE(3650), + [sym_generic_function] = STATE(1711), + [sym_generic_type_with_turbofish] = STATE(3091), + [sym__expression_except_range] = STATE(1658), + [sym__expression] = STATE(1844), + [sym_macro_invocation] = STATE(1717), + [sym_scoped_identifier] = STATE(1623), + [sym_scoped_type_identifier_in_expression_position] = STATE(3337), + [sym_range_expression] = STATE(1715), + [sym_unary_expression] = STATE(1711), + [sym_try_expression] = STATE(1711), + [sym_reference_expression] = STATE(1711), + [sym_binary_expression] = STATE(1711), + [sym_assignment_expression] = STATE(1711), + [sym_compound_assignment_expr] = STATE(1711), + [sym_type_cast_expression] = STATE(1711), + [sym_return_expression] = STATE(1711), + [sym_yield_expression] = STATE(1711), + [sym_call_expression] = STATE(1711), + [sym_array_expression] = STATE(1711), + [sym_parenthesized_expression] = STATE(1711), + [sym_tuple_expression] = STATE(1711), + [sym_unit_expression] = STATE(1711), + [sym_struct_expression] = STATE(1711), + [sym_if_expression] = STATE(1711), + [sym_match_expression] = STATE(1711), + [sym_while_expression] = STATE(1711), + [sym_loop_expression] = STATE(1711), + [sym_for_expression] = STATE(1711), + [sym_const_block] = STATE(1711), + [sym_closure_expression] = STATE(1711), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3742), + [sym_break_expression] = STATE(1711), + [sym_continue_expression] = STATE(1711), + [sym_index_expression] = STATE(1711), + [sym_await_expression] = STATE(1711), + [sym_field_expression] = STATE(1690), + [sym_unsafe_block] = STATE(1711), + [sym_async_block] = STATE(1711), + [sym_gen_block] = STATE(1711), + [sym_try_block] = STATE(1711), + [sym_block] = STATE(1777), + [sym__literal] = STATE(1711), + [sym_string_literal] = STATE(1831), + [sym_raw_string_literal] = STATE(1831), + [sym_boolean_literal] = STATE(1831), + [sym_line_comment] = STATE(240), + [sym_block_comment] = STATE(240), + [sym_identifier] = ACTIONS(410), + [anon_sym_LPAREN] = ACTIONS(498), + [anon_sym_LBRACK] = ACTIONS(500), + [anon_sym_LBRACE] = ACTIONS(412), + [anon_sym_STAR] = ACTIONS(990), + [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(990), + [anon_sym_AMP] = ACTIONS(992), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1222), + [anon_sym_DOT_DOT] = ACTIONS(1176), + [anon_sym_COLON_COLON] = ACTIONS(420), + [anon_sym_DASH_GT] = ACTIONS(1224), + [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_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(241)] = { + [sym_bracketed_type] = STATE(3752), + [sym_generic_function] = STATE(1492), + [sym_generic_type_with_turbofish] = STATE(3039), + [sym__expression_except_range] = STATE(1409), + [sym__expression] = STATE(1863), + [sym_macro_invocation] = STATE(1529), + [sym_scoped_identifier] = STATE(1540), + [sym_scoped_type_identifier_in_expression_position] = STATE(3335), + [sym_range_expression] = STATE(1505), + [sym_unary_expression] = STATE(1492), + [sym_try_expression] = STATE(1492), + [sym_reference_expression] = STATE(1492), + [sym_binary_expression] = STATE(1492), + [sym_assignment_expression] = STATE(1492), + [sym_compound_assignment_expr] = STATE(1492), + [sym_type_cast_expression] = STATE(1492), + [sym_return_expression] = STATE(1492), + [sym_yield_expression] = STATE(1492), + [sym_call_expression] = STATE(1492), + [sym_array_expression] = STATE(1492), + [sym_parenthesized_expression] = STATE(1492), + [sym_tuple_expression] = STATE(1492), + [sym_unit_expression] = STATE(1492), + [sym_struct_expression] = STATE(1492), + [sym_if_expression] = STATE(1492), + [sym_match_expression] = STATE(1492), + [sym_while_expression] = STATE(1492), + [sym_loop_expression] = STATE(1492), + [sym_for_expression] = STATE(1492), + [sym_const_block] = STATE(1492), + [sym_closure_expression] = STATE(1492), + [sym_closure_parameters] = STATE(229), + [sym_label] = STATE(3689), + [sym_break_expression] = STATE(1492), + [sym_continue_expression] = STATE(1492), + [sym_index_expression] = STATE(1492), + [sym_await_expression] = STATE(1492), + [sym_field_expression] = STATE(1412), + [sym_unsafe_block] = STATE(1492), + [sym_async_block] = STATE(1492), + [sym_gen_block] = STATE(1492), + [sym_try_block] = STATE(1492), + [sym_block] = STATE(1492), + [sym__literal] = STATE(1492), + [sym_string_literal] = STATE(1530), + [sym_raw_string_literal] = STATE(1530), + [sym_boolean_literal] = STATE(1530), + [sym_line_comment] = STATE(241), + [sym_block_comment] = STATE(241), + [aux_sym_tuple_expression_repeat1] = STATE(225), + [sym_identifier] = ACTIONS(344), [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(1226), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(348), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -44470,332 +44831,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(23), [anon_sym_str] = ACTIONS(23), [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(349), + [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(1089), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_DASH_GT] = ACTIONS(1091), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), + [anon_sym_async] = ACTIONS(356), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(358), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), + [anon_sym_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(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(115), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), - }, - [STATE(240)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1916), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1520), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [sym_line_comment] = STATE(240), - [sym_block_comment] = STATE(240), - [aux_sym_tuple_expression_repeat1] = STATE(240), - [sym_identifier] = ACTIONS(1107), - [anon_sym_LPAREN] = ACTIONS(1110), - [anon_sym_RPAREN] = ACTIONS(1113), - [anon_sym_LBRACK] = ACTIONS(1115), - [anon_sym_LBRACE] = ACTIONS(1118), - [anon_sym_STAR] = ACTIONS(1121), - [anon_sym_u8] = ACTIONS(1124), - [anon_sym_i8] = ACTIONS(1124), - [anon_sym_u16] = ACTIONS(1124), - [anon_sym_i16] = ACTIONS(1124), - [anon_sym_u32] = ACTIONS(1124), - [anon_sym_i32] = ACTIONS(1124), - [anon_sym_u64] = ACTIONS(1124), - [anon_sym_i64] = ACTIONS(1124), - [anon_sym_u128] = ACTIONS(1124), - [anon_sym_i128] = ACTIONS(1124), - [anon_sym_isize] = ACTIONS(1124), - [anon_sym_usize] = ACTIONS(1124), - [anon_sym_f32] = ACTIONS(1124), - [anon_sym_f64] = ACTIONS(1124), - [anon_sym_bool] = ACTIONS(1124), - [anon_sym_str] = ACTIONS(1124), - [anon_sym_char] = ACTIONS(1124), - [anon_sym_DASH] = ACTIONS(1121), - [anon_sym_BANG] = ACTIONS(1121), - [anon_sym_AMP] = ACTIONS(1127), - [anon_sym_PIPE] = ACTIONS(1130), - [anon_sym_LT] = ACTIONS(1133), - [anon_sym_DOT_DOT] = ACTIONS(1136), - [anon_sym_COLON_COLON] = ACTIONS(1139), - [anon_sym_SQUOTE] = ACTIONS(1142), - [anon_sym_async] = ACTIONS(1145), - [anon_sym_break] = ACTIONS(1148), - [anon_sym_const] = ACTIONS(1151), - [anon_sym_continue] = ACTIONS(1154), - [anon_sym_default] = ACTIONS(1157), - [anon_sym_for] = ACTIONS(1160), - [anon_sym_gen] = ACTIONS(1163), - [anon_sym_if] = ACTIONS(1166), - [anon_sym_loop] = ACTIONS(1169), - [anon_sym_match] = ACTIONS(1172), - [anon_sym_return] = ACTIONS(1175), - [anon_sym_static] = ACTIONS(1178), - [anon_sym_union] = ACTIONS(1157), - [anon_sym_unsafe] = ACTIONS(1181), - [anon_sym_while] = ACTIONS(1184), - [anon_sym_yield] = ACTIONS(1187), - [anon_sym_move] = ACTIONS(1190), - [anon_sym_try] = ACTIONS(1193), - [sym_integer_literal] = ACTIONS(1196), - [aux_sym_string_literal_token1] = ACTIONS(1199), - [sym_char_literal] = ACTIONS(1196), - [anon_sym_true] = ACTIONS(1202), - [anon_sym_false] = ACTIONS(1202), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1205), - [sym_super] = ACTIONS(1208), - [sym_crate] = ACTIONS(1208), - [sym_metavariable] = ACTIONS(1211), - [sym__raw_string_literal_start] = ACTIONS(1214), - [sym_float_literal] = ACTIONS(1196), - }, - [STATE(241)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3056), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1419), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1591), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(244), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [sym_line_comment] = STATE(241), - [sym_block_comment] = STATE(241), - [sym_identifier] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1073), - [anon_sym_u8] = ACTIONS(469), - [anon_sym_i8] = ACTIONS(469), - [anon_sym_u16] = ACTIONS(469), - [anon_sym_i16] = ACTIONS(469), - [anon_sym_u32] = ACTIONS(469), - [anon_sym_i32] = ACTIONS(469), - [anon_sym_u64] = ACTIONS(469), - [anon_sym_i64] = ACTIONS(469), - [anon_sym_u128] = ACTIONS(469), - [anon_sym_i128] = ACTIONS(469), - [anon_sym_isize] = ACTIONS(469), - [anon_sym_usize] = ACTIONS(469), - [anon_sym_f32] = ACTIONS(469), - [anon_sym_f64] = ACTIONS(469), - [anon_sym_bool] = ACTIONS(469), - [anon_sym_str] = ACTIONS(469), - [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(1073), - [anon_sym_BANG] = ACTIONS(1073), - [anon_sym_AMP] = ACTIONS(1075), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1077), - [anon_sym_COLON_COLON] = ACTIONS(473), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(475), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(477), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(479), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(481), - [anon_sym_static] = ACTIONS(483), - [anon_sym_union] = ACTIONS(477), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [sym_mutable_specifier] = ACTIONS(1217), - [anon_sym_raw] = ACTIONS(1219), - [anon_sym_yield] = ACTIONS(485), - [anon_sym_move] = ACTIONS(487), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(489), - [sym_super] = ACTIONS(491), - [sym_crate] = ACTIONS(491), - [sym_metavariable] = ACTIONS(493), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [anon_sym_static] = ACTIONS(372), + [anon_sym_union] = ACTIONS(360), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [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(242)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1820), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1520), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), + [sym_bracketed_type] = STATE(3752), + [sym_generic_function] = STATE(1492), + [sym_generic_type_with_turbofish] = STATE(3039), + [sym__expression_except_range] = STATE(1409), + [sym__expression] = STATE(1713), + [sym_macro_invocation] = STATE(1529), + [sym_scoped_identifier] = STATE(1540), + [sym_scoped_type_identifier_in_expression_position] = STATE(3335), + [sym_range_expression] = STATE(1505), + [sym_unary_expression] = STATE(1492), + [sym_try_expression] = STATE(1492), + [sym_reference_expression] = STATE(1492), + [sym_binary_expression] = STATE(1492), + [sym_assignment_expression] = STATE(1492), + [sym_compound_assignment_expr] = STATE(1492), + [sym_type_cast_expression] = STATE(1492), + [sym_return_expression] = STATE(1492), + [sym_yield_expression] = STATE(1492), + [sym_call_expression] = STATE(1492), + [sym_array_expression] = STATE(1492), + [sym_parenthesized_expression] = STATE(1492), + [sym_tuple_expression] = STATE(1492), + [sym_unit_expression] = STATE(1492), + [sym_struct_expression] = STATE(1492), + [sym_if_expression] = STATE(1492), + [sym_match_expression] = STATE(1492), + [sym_while_expression] = STATE(1492), + [sym_loop_expression] = STATE(1492), + [sym_for_expression] = STATE(1492), + [sym_const_block] = STATE(1492), + [sym_closure_expression] = STATE(1492), + [sym_closure_parameters] = STATE(229), + [sym_label] = STATE(3689), + [sym_break_expression] = STATE(1492), + [sym_continue_expression] = STATE(1492), + [sym_index_expression] = STATE(1492), + [sym_await_expression] = STATE(1492), + [sym_field_expression] = STATE(1412), + [sym_unsafe_block] = STATE(1492), + [sym_async_block] = STATE(1492), + [sym_gen_block] = STATE(1492), + [sym_try_block] = STATE(1492), + [sym_block] = STATE(1492), + [sym__literal] = STATE(1492), + [sym_string_literal] = STATE(1530), + [sym_raw_string_literal] = STATE(1530), + [sym_boolean_literal] = STATE(1530), [sym_line_comment] = STATE(242), [sym_block_comment] = STATE(242), - [aux_sym_tuple_expression_repeat1] = STATE(234), - [sym_identifier] = ACTIONS(339), + [aux_sym_tuple_expression_repeat1] = STATE(216), + [sym_identifier] = ACTIONS(344), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(1221), + [anon_sym_RPAREN] = ACTIONS(1228), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(348), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -44822,94 +44953,208 @@ 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(351), + [anon_sym_async] = ACTIONS(356), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(358), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), + [anon_sym_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(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(115), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [anon_sym_static] = ACTIONS(372), + [anon_sym_union] = ACTIONS(360), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [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(243)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1723), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1520), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), + [sym_bracketed_type] = STATE(3752), + [sym_generic_function] = STATE(1492), + [sym_generic_type_with_turbofish] = STATE(3085), + [sym__expression_except_range] = STATE(1409), + [sym__expression] = STATE(1761), + [sym_macro_invocation] = STATE(1529), + [sym_scoped_identifier] = STATE(1604), + [sym_scoped_type_identifier_in_expression_position] = STATE(3335), + [sym_range_expression] = STATE(1505), + [sym_unary_expression] = STATE(1492), + [sym_try_expression] = STATE(1492), + [sym_reference_expression] = STATE(1492), + [sym_binary_expression] = STATE(1492), + [sym_assignment_expression] = STATE(1492), + [sym_compound_assignment_expr] = STATE(1492), + [sym_type_cast_expression] = STATE(1492), + [sym_return_expression] = STATE(1492), + [sym_yield_expression] = STATE(1492), + [sym_call_expression] = STATE(1492), + [sym_array_expression] = STATE(1492), + [sym_parenthesized_expression] = STATE(1492), + [sym_tuple_expression] = STATE(1492), + [sym_unit_expression] = STATE(1492), + [sym_struct_expression] = STATE(1492), + [sym_if_expression] = STATE(1492), + [sym_match_expression] = STATE(1492), + [sym_while_expression] = STATE(1492), + [sym_loop_expression] = STATE(1492), + [sym_for_expression] = STATE(1492), + [sym_const_block] = STATE(1492), + [sym_closure_expression] = STATE(1492), + [sym_closure_parameters] = STATE(235), + [sym_label] = STATE(3689), + [sym_break_expression] = STATE(1492), + [sym_continue_expression] = STATE(1492), + [sym_index_expression] = STATE(1492), + [sym_await_expression] = STATE(1492), + [sym_field_expression] = STATE(1412), + [sym_unsafe_block] = STATE(1492), + [sym_async_block] = STATE(1492), + [sym_gen_block] = STATE(1492), + [sym_try_block] = STATE(1492), + [sym_block] = STATE(1482), + [sym__literal] = STATE(1492), + [sym_string_literal] = STATE(1530), + [sym_raw_string_literal] = STATE(1530), + [sym_boolean_literal] = STATE(1530), [sym_line_comment] = STATE(243), [sym_block_comment] = STATE(243), - [aux_sym_tuple_expression_repeat1] = STATE(227), - [sym_identifier] = ACTIONS(339), + [sym_identifier] = ACTIONS(470), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(1223), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(348), + [anon_sym_STAR] = ACTIONS(1196), + [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(1196), + [anon_sym_AMP] = ACTIONS(1198), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1218), + [anon_sym_DOT_DOT] = ACTIONS(1200), + [anon_sym_COLON_COLON] = ACTIONS(476), + [anon_sym_DASH_GT] = ACTIONS(1220), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(356), + [anon_sym_break] = ACTIONS(478), + [anon_sym_const] = ACTIONS(358), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(480), + [anon_sym_for] = ACTIONS(362), + [anon_sym_gen] = ACTIONS(482), + [anon_sym_if] = ACTIONS(366), + [anon_sym_loop] = ACTIONS(368), + [anon_sym_match] = ACTIONS(370), + [anon_sym_return] = ACTIONS(484), + [anon_sym_static] = ACTIONS(486), + [anon_sym_union] = ACTIONS(480), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [anon_sym_yield] = ACTIONS(488), + [anon_sym_move] = ACTIONS(490), + [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(492), + [sym_super] = ACTIONS(494), + [sym_crate] = ACTIONS(494), + [sym_metavariable] = ACTIONS(496), + [sym__raw_string_literal_start] = ACTIONS(119), + [sym_float_literal] = ACTIONS(99), + }, + [STATE(244)] = { + [sym_bracketed_type] = STATE(3752), + [sym_generic_function] = STATE(1492), + [sym_generic_type_with_turbofish] = STATE(3039), + [sym__expression_except_range] = STATE(1409), + [sym__expression] = STATE(1876), + [sym_macro_invocation] = STATE(1529), + [sym_scoped_identifier] = STATE(1540), + [sym_scoped_type_identifier_in_expression_position] = STATE(3335), + [sym_range_expression] = STATE(1505), + [sym_unary_expression] = STATE(1492), + [sym_try_expression] = STATE(1492), + [sym_reference_expression] = STATE(1492), + [sym_binary_expression] = STATE(1492), + [sym_assignment_expression] = STATE(1492), + [sym_compound_assignment_expr] = STATE(1492), + [sym_type_cast_expression] = STATE(1492), + [sym_return_expression] = STATE(1492), + [sym_yield_expression] = STATE(1492), + [sym_call_expression] = STATE(1492), + [sym_array_expression] = STATE(1492), + [sym_parenthesized_expression] = STATE(1492), + [sym_tuple_expression] = STATE(1492), + [sym_unit_expression] = STATE(1492), + [sym_struct_expression] = STATE(1492), + [sym_if_expression] = STATE(1492), + [sym_match_expression] = STATE(1492), + [sym_while_expression] = STATE(1492), + [sym_loop_expression] = STATE(1492), + [sym_for_expression] = STATE(1492), + [sym_const_block] = STATE(1492), + [sym_closure_expression] = STATE(1492), + [sym_closure_parameters] = STATE(229), + [sym_label] = STATE(3689), + [sym_break_expression] = STATE(1492), + [sym_continue_expression] = STATE(1492), + [sym_index_expression] = STATE(1492), + [sym_await_expression] = STATE(1492), + [sym_field_expression] = STATE(1412), + [sym_unsafe_block] = STATE(1492), + [sym_async_block] = STATE(1492), + [sym_gen_block] = STATE(1492), + [sym_try_block] = STATE(1492), + [sym_block] = STATE(1492), + [sym__literal] = STATE(1492), + [sym_string_literal] = STATE(1530), + [sym_raw_string_literal] = STATE(1530), + [sym_boolean_literal] = STATE(1530), + [sym_line_comment] = STATE(244), + [sym_block_comment] = STATE(244), + [aux_sym_tuple_expression_repeat1] = STATE(216), + [sym_identifier] = ACTIONS(344), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(1230), + [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), @@ -44936,208 +45181,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), + [anon_sym_async] = ACTIONS(356), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(358), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), + [anon_sym_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(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(115), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), - }, - [STATE(244)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3056), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1793), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1591), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(244), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1521), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [sym_line_comment] = STATE(244), - [sym_block_comment] = STATE(244), - [sym_identifier] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1073), - [anon_sym_u8] = ACTIONS(469), - [anon_sym_i8] = ACTIONS(469), - [anon_sym_u16] = ACTIONS(469), - [anon_sym_i16] = ACTIONS(469), - [anon_sym_u32] = ACTIONS(469), - [anon_sym_i32] = ACTIONS(469), - [anon_sym_u64] = ACTIONS(469), - [anon_sym_i64] = ACTIONS(469), - [anon_sym_u128] = ACTIONS(469), - [anon_sym_i128] = ACTIONS(469), - [anon_sym_isize] = ACTIONS(469), - [anon_sym_usize] = ACTIONS(469), - [anon_sym_f32] = ACTIONS(469), - [anon_sym_f64] = ACTIONS(469), - [anon_sym_bool] = ACTIONS(469), - [anon_sym_str] = ACTIONS(469), - [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(471), - [anon_sym_BANG] = ACTIONS(1073), - [anon_sym_AMP] = ACTIONS(1075), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1089), - [anon_sym_DOT_DOT] = ACTIONS(1077), - [anon_sym_COLON_COLON] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(1091), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(475), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(477), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(479), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(481), - [anon_sym_static] = ACTIONS(483), - [anon_sym_union] = ACTIONS(477), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(485), - [anon_sym_move] = ACTIONS(487), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(489), - [sym_super] = ACTIONS(491), - [sym_crate] = ACTIONS(491), - [sym_metavariable] = ACTIONS(493), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [anon_sym_static] = ACTIONS(372), + [anon_sym_union] = ACTIONS(360), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [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(245)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1836), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1520), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), + [sym_bracketed_type] = STATE(3752), + [sym_generic_function] = STATE(1492), + [sym_generic_type_with_turbofish] = STATE(3039), + [sym__expression_except_range] = STATE(1409), + [sym__expression] = STATE(1713), + [sym_macro_invocation] = STATE(1529), + [sym_scoped_identifier] = STATE(1540), + [sym_scoped_type_identifier_in_expression_position] = STATE(3335), + [sym_range_expression] = STATE(1505), + [sym_unary_expression] = STATE(1492), + [sym_try_expression] = STATE(1492), + [sym_reference_expression] = STATE(1492), + [sym_binary_expression] = STATE(1492), + [sym_assignment_expression] = STATE(1492), + [sym_compound_assignment_expr] = STATE(1492), + [sym_type_cast_expression] = STATE(1492), + [sym_return_expression] = STATE(1492), + [sym_yield_expression] = STATE(1492), + [sym_call_expression] = STATE(1492), + [sym_array_expression] = STATE(1492), + [sym_parenthesized_expression] = STATE(1492), + [sym_tuple_expression] = STATE(1492), + [sym_unit_expression] = STATE(1492), + [sym_struct_expression] = STATE(1492), + [sym_if_expression] = STATE(1492), + [sym_match_expression] = STATE(1492), + [sym_while_expression] = STATE(1492), + [sym_loop_expression] = STATE(1492), + [sym_for_expression] = STATE(1492), + [sym_const_block] = STATE(1492), + [sym_closure_expression] = STATE(1492), + [sym_closure_parameters] = STATE(229), + [sym_label] = STATE(3689), + [sym_break_expression] = STATE(1492), + [sym_continue_expression] = STATE(1492), + [sym_index_expression] = STATE(1492), + [sym_await_expression] = STATE(1492), + [sym_field_expression] = STATE(1412), + [sym_unsafe_block] = STATE(1492), + [sym_async_block] = STATE(1492), + [sym_gen_block] = STATE(1492), + [sym_try_block] = STATE(1492), + [sym_block] = STATE(1492), + [sym__literal] = STATE(1492), + [sym_string_literal] = STATE(1530), + [sym_raw_string_literal] = STATE(1530), + [sym_boolean_literal] = STATE(1530), [sym_line_comment] = STATE(245), [sym_block_comment] = STATE(245), - [aux_sym_tuple_expression_repeat1] = STATE(240), - [sym_identifier] = ACTIONS(339), + [aux_sym_tuple_expression_repeat1] = STATE(215), + [sym_identifier] = ACTIONS(344), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(1225), + [anon_sym_RPAREN] = ACTIONS(1228), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(348), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -45164,206 +45295,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), + [anon_sym_async] = ACTIONS(356), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(358), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), + [anon_sym_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(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(115), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [anon_sym_static] = ACTIONS(372), + [anon_sym_union] = ACTIONS(360), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [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(246)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3056), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1835), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1591), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(244), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1439), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), + [sym_bracketed_type] = STATE(3752), + [sym_generic_function] = STATE(1492), + [sym_generic_type_with_turbofish] = STATE(3039), + [sym__expression_except_range] = STATE(1409), + [sym__expression] = STATE(1821), + [sym_macro_invocation] = STATE(1529), + [sym_scoped_identifier] = STATE(1540), + [sym_scoped_type_identifier_in_expression_position] = STATE(3335), + [sym_range_expression] = STATE(1505), + [sym_unary_expression] = STATE(1492), + [sym_try_expression] = STATE(1492), + [sym_reference_expression] = STATE(1492), + [sym_binary_expression] = STATE(1492), + [sym_assignment_expression] = STATE(1492), + [sym_compound_assignment_expr] = STATE(1492), + [sym_type_cast_expression] = STATE(1492), + [sym_return_expression] = STATE(1492), + [sym_yield_expression] = STATE(1492), + [sym_call_expression] = STATE(1492), + [sym_array_expression] = STATE(1492), + [sym_parenthesized_expression] = STATE(1492), + [sym_tuple_expression] = STATE(1492), + [sym_unit_expression] = STATE(1492), + [sym_struct_expression] = STATE(1492), + [sym_if_expression] = STATE(1492), + [sym_match_expression] = STATE(1492), + [sym_while_expression] = STATE(1492), + [sym_loop_expression] = STATE(1492), + [sym_for_expression] = STATE(1492), + [sym_const_block] = STATE(1492), + [sym_closure_expression] = STATE(1492), + [sym_closure_parameters] = STATE(229), + [sym_label] = STATE(3689), + [sym_break_expression] = STATE(1492), + [sym_continue_expression] = STATE(1492), + [sym_index_expression] = STATE(1492), + [sym_await_expression] = STATE(1492), + [sym_field_expression] = STATE(1412), + [sym_unsafe_block] = STATE(1492), + [sym_async_block] = STATE(1492), + [sym_gen_block] = STATE(1492), + [sym_try_block] = STATE(1492), + [sym_block] = STATE(1482), + [sym__literal] = STATE(1492), + [sym_string_literal] = STATE(1530), + [sym_raw_string_literal] = STATE(1530), + [sym_boolean_literal] = STATE(1530), [sym_line_comment] = STATE(246), [sym_block_comment] = STATE(246), - [sym_identifier] = ACTIONS(467), + [sym_identifier] = ACTIONS(344), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1073), - [anon_sym_u8] = ACTIONS(469), - [anon_sym_i8] = ACTIONS(469), - [anon_sym_u16] = ACTIONS(469), - [anon_sym_i16] = ACTIONS(469), - [anon_sym_u32] = ACTIONS(469), - [anon_sym_i32] = ACTIONS(469), - [anon_sym_u64] = ACTIONS(469), - [anon_sym_i64] = ACTIONS(469), - [anon_sym_u128] = ACTIONS(469), - [anon_sym_i128] = ACTIONS(469), - [anon_sym_isize] = ACTIONS(469), - [anon_sym_usize] = ACTIONS(469), - [anon_sym_f32] = ACTIONS(469), - [anon_sym_f64] = ACTIONS(469), - [anon_sym_bool] = ACTIONS(469), - [anon_sym_str] = ACTIONS(469), - [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(471), - [anon_sym_BANG] = ACTIONS(1073), - [anon_sym_AMP] = ACTIONS(1075), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1053), - [anon_sym_DOT_DOT] = ACTIONS(1077), - [anon_sym_COLON_COLON] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(1057), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(475), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(477), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(479), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(481), - [anon_sym_static] = ACTIONS(483), - [anon_sym_union] = ACTIONS(477), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(485), - [anon_sym_move] = ACTIONS(487), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(489), - [sym_super] = ACTIONS(491), - [sym_crate] = ACTIONS(491), - [sym_metavariable] = ACTIONS(493), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), - }, - [STATE(247)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1540), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1520), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [sym_line_comment] = STATE(247), - [sym_block_comment] = STATE(247), - [sym_identifier] = ACTIONS(339), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(348), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -45382,100 +45399,893 @@ 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(354), [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(1061), + [anon_sym__] = ACTIONS(1218), + [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_DASH_GT] = ACTIONS(1220), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), + [anon_sym_async] = ACTIONS(356), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(358), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), + [anon_sym_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(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(115), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [anon_sym_static] = ACTIONS(372), + [anon_sym_union] = ACTIONS(360), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [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(247)] = { + [sym_attribute_item] = STATE(424), + [sym_function_modifiers] = STATE(3591), + [sym_removed_trait_bound] = STATE(2069), + [sym_self_parameter] = STATE(2999), + [sym_variadic_parameter] = STATE(2999), + [sym_parameter] = STATE(2999), + [sym_extern_modifier] = STATE(2373), + [sym__type] = STATE(2751), + [sym_bracketed_type] = STATE(3681), + [sym_lifetime] = STATE(3067), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1591), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2022), + [sym_generic_type_with_turbofish] = STATE(3160), + [sym_bounded_type] = STATE(2069), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2548), + [sym_scoped_identifier] = STATE(2208), + [sym_scoped_type_identifier] = STATE(2203), + [sym_const_block] = STATE(2163), + [sym__pattern] = STATE(2536), + [sym_generic_pattern] = STATE(2163), + [sym_tuple_pattern] = STATE(2163), + [sym_slice_pattern] = STATE(2163), + [sym_tuple_struct_pattern] = STATE(2163), + [sym_struct_pattern] = STATE(2163), + [sym_remaining_field_pattern] = STATE(2163), + [sym_mut_pattern] = STATE(2163), + [sym_range_pattern] = STATE(2163), + [sym_ref_pattern] = STATE(2163), + [sym_captured_pattern] = STATE(2163), + [sym_reference_pattern] = STATE(2163), + [sym_or_pattern] = STATE(2163), + [sym__literal_pattern] = STATE(2098), + [sym_negative_literal] = STATE(2095), + [sym_string_literal] = STATE(2095), + [sym_raw_string_literal] = STATE(2095), + [sym_boolean_literal] = STATE(2095), + [sym_line_comment] = STATE(247), + [sym_block_comment] = STATE(247), + [aux_sym_function_modifiers_repeat1] = STATE(2244), + [sym_identifier] = ACTIONS(1232), + [anon_sym_LPAREN] = ACTIONS(1234), + [anon_sym_RPAREN] = ACTIONS(1236), + [anon_sym_LBRACK] = ACTIONS(1238), + [anon_sym_STAR] = ACTIONS(1240), + [anon_sym_QMARK] = ACTIONS(1242), + [anon_sym_u8] = ACTIONS(1244), + [anon_sym_i8] = ACTIONS(1244), + [anon_sym_u16] = ACTIONS(1244), + [anon_sym_i16] = ACTIONS(1244), + [anon_sym_u32] = ACTIONS(1244), + [anon_sym_i32] = ACTIONS(1244), + [anon_sym_u64] = ACTIONS(1244), + [anon_sym_i64] = ACTIONS(1244), + [anon_sym_u128] = ACTIONS(1244), + [anon_sym_i128] = ACTIONS(1244), + [anon_sym_isize] = ACTIONS(1244), + [anon_sym_usize] = ACTIONS(1244), + [anon_sym_f32] = ACTIONS(1244), + [anon_sym_f64] = ACTIONS(1244), + [anon_sym_bool] = ACTIONS(1244), + [anon_sym_str] = ACTIONS(1244), + [anon_sym_char] = ACTIONS(1244), + [anon_sym_DASH] = ACTIONS(1246), + [anon_sym_BANG] = ACTIONS(1248), + [anon_sym_AMP] = ACTIONS(1250), + [anon_sym_PIPE] = ACTIONS(1252), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1254), + [anon_sym_DOT_DOT] = ACTIONS(1256), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1258), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1260), + [anon_sym_COMMA] = ACTIONS(1262), + [anon_sym_COLON_COLON] = ACTIONS(1264), + [anon_sym_POUND] = ACTIONS(1266), + [anon_sym_SQUOTE] = ACTIONS(1268), + [anon_sym_async] = ACTIONS(1270), + [anon_sym_const] = ACTIONS(1272), + [anon_sym_default] = ACTIONS(1274), + [anon_sym_fn] = ACTIONS(1276), + [anon_sym_for] = ACTIONS(1278), + [anon_sym_gen] = ACTIONS(1280), + [anon_sym_impl] = ACTIONS(1282), + [anon_sym_union] = ACTIONS(1280), + [anon_sym_unsafe] = ACTIONS(1270), + [anon_sym_extern] = ACTIONS(1284), + [anon_sym_safe] = ACTIONS(1270), + [anon_sym_ref] = ACTIONS(1286), + [anon_sym_dyn] = ACTIONS(1288), + [sym_mutable_specifier] = ACTIONS(1290), + [sym_integer_literal] = ACTIONS(1292), + [aux_sym_string_literal_token1] = ACTIONS(1294), + [sym_char_literal] = ACTIONS(1292), + [anon_sym_true] = ACTIONS(1296), + [anon_sym_false] = ACTIONS(1296), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1298), + [sym_super] = ACTIONS(1300), + [sym_crate] = ACTIONS(1300), + [sym_metavariable] = ACTIONS(1302), + [sym__raw_string_literal_start] = ACTIONS(1304), + [sym_float_literal] = ACTIONS(1292), }, [STATE(248)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1763), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1520), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), + [sym_attribute_item] = STATE(423), + [sym_function_modifiers] = STATE(3591), + [sym_removed_trait_bound] = STATE(2069), + [sym_self_parameter] = STATE(2868), + [sym_variadic_parameter] = STATE(2868), + [sym_parameter] = STATE(2868), + [sym_extern_modifier] = STATE(2373), + [sym__type] = STATE(2741), + [sym_bracketed_type] = STATE(3673), + [sym_lifetime] = STATE(3067), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1591), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2022), + [sym_generic_type_with_turbofish] = STATE(3329), + [sym_bounded_type] = STATE(2069), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2552), + [sym_scoped_identifier] = STATE(2299), + [sym_scoped_type_identifier] = STATE(2203), + [sym_const_block] = STATE(2163), + [sym__pattern] = STATE(3292), + [sym_generic_pattern] = STATE(2163), + [sym_tuple_pattern] = STATE(2163), + [sym_slice_pattern] = STATE(2163), + [sym_tuple_struct_pattern] = STATE(2163), + [sym_struct_pattern] = STATE(2163), + [sym_remaining_field_pattern] = STATE(2163), + [sym_mut_pattern] = STATE(2163), + [sym_range_pattern] = STATE(2163), + [sym_ref_pattern] = STATE(2163), + [sym_captured_pattern] = STATE(2163), + [sym_reference_pattern] = STATE(2163), + [sym_or_pattern] = STATE(2163), + [sym__literal_pattern] = STATE(2098), + [sym_negative_literal] = STATE(2095), + [sym_string_literal] = STATE(2095), + [sym_raw_string_literal] = STATE(2095), + [sym_boolean_literal] = STATE(2095), [sym_line_comment] = STATE(248), [sym_block_comment] = STATE(248), - [sym_identifier] = ACTIONS(339), + [aux_sym_function_modifiers_repeat1] = STATE(2244), + [sym_identifier] = ACTIONS(1306), + [anon_sym_LPAREN] = ACTIONS(1308), + [anon_sym_RPAREN] = ACTIONS(1310), + [anon_sym_LBRACK] = ACTIONS(1238), + [anon_sym_STAR] = ACTIONS(1240), + [anon_sym_QMARK] = ACTIONS(1242), + [anon_sym_u8] = ACTIONS(1312), + [anon_sym_i8] = ACTIONS(1312), + [anon_sym_u16] = ACTIONS(1312), + [anon_sym_i16] = ACTIONS(1312), + [anon_sym_u32] = ACTIONS(1312), + [anon_sym_i32] = ACTIONS(1312), + [anon_sym_u64] = ACTIONS(1312), + [anon_sym_i64] = ACTIONS(1312), + [anon_sym_u128] = ACTIONS(1312), + [anon_sym_i128] = ACTIONS(1312), + [anon_sym_isize] = ACTIONS(1312), + [anon_sym_usize] = ACTIONS(1312), + [anon_sym_f32] = ACTIONS(1312), + [anon_sym_f64] = ACTIONS(1312), + [anon_sym_bool] = ACTIONS(1312), + [anon_sym_str] = ACTIONS(1312), + [anon_sym_char] = ACTIONS(1312), + [anon_sym_DASH] = ACTIONS(1246), + [anon_sym_BANG] = ACTIONS(1248), + [anon_sym_AMP] = ACTIONS(1314), + [anon_sym_PIPE] = ACTIONS(1252), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1316), + [anon_sym_DOT_DOT] = ACTIONS(1256), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1258), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1260), + [anon_sym_COMMA] = ACTIONS(1318), + [anon_sym_COLON_COLON] = ACTIONS(1320), + [anon_sym_POUND] = ACTIONS(1266), + [anon_sym_SQUOTE] = ACTIONS(1268), + [anon_sym_async] = ACTIONS(1270), + [anon_sym_const] = ACTIONS(1272), + [anon_sym_default] = ACTIONS(1322), + [anon_sym_fn] = ACTIONS(1276), + [anon_sym_for] = ACTIONS(1278), + [anon_sym_gen] = ACTIONS(1324), + [anon_sym_impl] = ACTIONS(1282), + [anon_sym_union] = ACTIONS(1324), + [anon_sym_unsafe] = ACTIONS(1270), + [anon_sym_extern] = ACTIONS(1284), + [anon_sym_safe] = ACTIONS(1270), + [anon_sym_ref] = ACTIONS(1286), + [anon_sym_dyn] = ACTIONS(1288), + [sym_mutable_specifier] = ACTIONS(1290), + [sym_integer_literal] = ACTIONS(1292), + [aux_sym_string_literal_token1] = ACTIONS(1294), + [sym_char_literal] = ACTIONS(1292), + [anon_sym_true] = ACTIONS(1296), + [anon_sym_false] = ACTIONS(1296), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1326), + [sym_super] = ACTIONS(1328), + [sym_crate] = ACTIONS(1328), + [sym_metavariable] = ACTIONS(1330), + [sym__raw_string_literal_start] = ACTIONS(1304), + [sym_float_literal] = ACTIONS(1292), + }, + [STATE(249)] = { + [sym_attribute_item] = STATE(424), + [sym_function_modifiers] = STATE(3591), + [sym_removed_trait_bound] = STATE(2069), + [sym_self_parameter] = STATE(2999), + [sym_variadic_parameter] = STATE(2999), + [sym_parameter] = STATE(2999), + [sym_extern_modifier] = STATE(2373), + [sym__type] = STATE(2751), + [sym_bracketed_type] = STATE(3681), + [sym_lifetime] = STATE(3067), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1591), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2022), + [sym_generic_type_with_turbofish] = STATE(3160), + [sym_bounded_type] = STATE(2069), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2548), + [sym_scoped_identifier] = STATE(2208), + [sym_scoped_type_identifier] = STATE(2203), + [sym_const_block] = STATE(2163), + [sym__pattern] = STATE(2536), + [sym_generic_pattern] = STATE(2163), + [sym_tuple_pattern] = STATE(2163), + [sym_slice_pattern] = STATE(2163), + [sym_tuple_struct_pattern] = STATE(2163), + [sym_struct_pattern] = STATE(2163), + [sym_remaining_field_pattern] = STATE(2163), + [sym_mut_pattern] = STATE(2163), + [sym_range_pattern] = STATE(2163), + [sym_ref_pattern] = STATE(2163), + [sym_captured_pattern] = STATE(2163), + [sym_reference_pattern] = STATE(2163), + [sym_or_pattern] = STATE(2163), + [sym__literal_pattern] = STATE(2098), + [sym_negative_literal] = STATE(2095), + [sym_string_literal] = STATE(2095), + [sym_raw_string_literal] = STATE(2095), + [sym_boolean_literal] = STATE(2095), + [sym_line_comment] = STATE(249), + [sym_block_comment] = STATE(249), + [aux_sym_function_modifiers_repeat1] = STATE(2244), + [sym_identifier] = ACTIONS(1232), + [anon_sym_LPAREN] = ACTIONS(1234), + [anon_sym_RPAREN] = ACTIONS(1332), + [anon_sym_LBRACK] = ACTIONS(1238), + [anon_sym_STAR] = ACTIONS(1240), + [anon_sym_QMARK] = ACTIONS(1242), + [anon_sym_u8] = ACTIONS(1244), + [anon_sym_i8] = ACTIONS(1244), + [anon_sym_u16] = ACTIONS(1244), + [anon_sym_i16] = ACTIONS(1244), + [anon_sym_u32] = ACTIONS(1244), + [anon_sym_i32] = ACTIONS(1244), + [anon_sym_u64] = ACTIONS(1244), + [anon_sym_i64] = ACTIONS(1244), + [anon_sym_u128] = ACTIONS(1244), + [anon_sym_i128] = ACTIONS(1244), + [anon_sym_isize] = ACTIONS(1244), + [anon_sym_usize] = ACTIONS(1244), + [anon_sym_f32] = ACTIONS(1244), + [anon_sym_f64] = ACTIONS(1244), + [anon_sym_bool] = ACTIONS(1244), + [anon_sym_str] = ACTIONS(1244), + [anon_sym_char] = ACTIONS(1244), + [anon_sym_DASH] = ACTIONS(1246), + [anon_sym_BANG] = ACTIONS(1248), + [anon_sym_AMP] = ACTIONS(1250), + [anon_sym_PIPE] = ACTIONS(1252), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1254), + [anon_sym_DOT_DOT] = ACTIONS(1256), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1258), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1260), + [anon_sym_COMMA] = ACTIONS(1334), + [anon_sym_COLON_COLON] = ACTIONS(1264), + [anon_sym_POUND] = ACTIONS(1266), + [anon_sym_SQUOTE] = ACTIONS(1268), + [anon_sym_async] = ACTIONS(1270), + [anon_sym_const] = ACTIONS(1272), + [anon_sym_default] = ACTIONS(1274), + [anon_sym_fn] = ACTIONS(1276), + [anon_sym_for] = ACTIONS(1278), + [anon_sym_gen] = ACTIONS(1280), + [anon_sym_impl] = ACTIONS(1282), + [anon_sym_union] = ACTIONS(1280), + [anon_sym_unsafe] = ACTIONS(1270), + [anon_sym_extern] = ACTIONS(1284), + [anon_sym_safe] = ACTIONS(1270), + [anon_sym_ref] = ACTIONS(1286), + [anon_sym_dyn] = ACTIONS(1288), + [sym_mutable_specifier] = ACTIONS(1290), + [sym_integer_literal] = ACTIONS(1292), + [aux_sym_string_literal_token1] = ACTIONS(1294), + [sym_char_literal] = ACTIONS(1292), + [anon_sym_true] = ACTIONS(1296), + [anon_sym_false] = ACTIONS(1296), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1298), + [sym_super] = ACTIONS(1300), + [sym_crate] = ACTIONS(1300), + [sym_metavariable] = ACTIONS(1302), + [sym__raw_string_literal_start] = ACTIONS(1304), + [sym_float_literal] = ACTIONS(1292), + }, + [STATE(250)] = { + [sym_attribute_item] = STATE(424), + [sym_function_modifiers] = STATE(3591), + [sym_removed_trait_bound] = STATE(2069), + [sym_self_parameter] = STATE(2999), + [sym_variadic_parameter] = STATE(2999), + [sym_parameter] = STATE(2999), + [sym_extern_modifier] = STATE(2373), + [sym__type] = STATE(2751), + [sym_bracketed_type] = STATE(3673), + [sym_lifetime] = STATE(3067), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1591), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2022), + [sym_generic_type_with_turbofish] = STATE(3329), + [sym_bounded_type] = STATE(2069), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2552), + [sym_scoped_identifier] = STATE(2299), + [sym_scoped_type_identifier] = STATE(2203), + [sym_const_block] = STATE(2163), + [sym__pattern] = STATE(3292), + [sym_generic_pattern] = STATE(2163), + [sym_tuple_pattern] = STATE(2163), + [sym_slice_pattern] = STATE(2163), + [sym_tuple_struct_pattern] = STATE(2163), + [sym_struct_pattern] = STATE(2163), + [sym_remaining_field_pattern] = STATE(2163), + [sym_mut_pattern] = STATE(2163), + [sym_range_pattern] = STATE(2163), + [sym_ref_pattern] = STATE(2163), + [sym_captured_pattern] = STATE(2163), + [sym_reference_pattern] = STATE(2163), + [sym_or_pattern] = STATE(2163), + [sym__literal_pattern] = STATE(2098), + [sym_negative_literal] = STATE(2095), + [sym_string_literal] = STATE(2095), + [sym_raw_string_literal] = STATE(2095), + [sym_boolean_literal] = STATE(2095), + [sym_line_comment] = STATE(250), + [sym_block_comment] = STATE(250), + [aux_sym_function_modifiers_repeat1] = STATE(2244), + [sym_identifier] = ACTIONS(1306), + [anon_sym_LPAREN] = ACTIONS(1308), + [anon_sym_RPAREN] = ACTIONS(1336), + [anon_sym_LBRACK] = ACTIONS(1238), + [anon_sym_STAR] = ACTIONS(1240), + [anon_sym_QMARK] = ACTIONS(1242), + [anon_sym_u8] = ACTIONS(1312), + [anon_sym_i8] = ACTIONS(1312), + [anon_sym_u16] = ACTIONS(1312), + [anon_sym_i16] = ACTIONS(1312), + [anon_sym_u32] = ACTIONS(1312), + [anon_sym_i32] = ACTIONS(1312), + [anon_sym_u64] = ACTIONS(1312), + [anon_sym_i64] = ACTIONS(1312), + [anon_sym_u128] = ACTIONS(1312), + [anon_sym_i128] = ACTIONS(1312), + [anon_sym_isize] = ACTIONS(1312), + [anon_sym_usize] = ACTIONS(1312), + [anon_sym_f32] = ACTIONS(1312), + [anon_sym_f64] = ACTIONS(1312), + [anon_sym_bool] = ACTIONS(1312), + [anon_sym_str] = ACTIONS(1312), + [anon_sym_char] = ACTIONS(1312), + [anon_sym_DASH] = ACTIONS(1246), + [anon_sym_BANG] = ACTIONS(1248), + [anon_sym_AMP] = ACTIONS(1314), + [anon_sym_PIPE] = ACTIONS(1252), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1338), + [anon_sym_DOT_DOT] = ACTIONS(1256), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1258), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1260), + [anon_sym_COMMA] = ACTIONS(1340), + [anon_sym_COLON_COLON] = ACTIONS(1320), + [anon_sym_POUND] = ACTIONS(1266), + [anon_sym_SQUOTE] = ACTIONS(1268), + [anon_sym_async] = ACTIONS(1270), + [anon_sym_const] = ACTIONS(1272), + [anon_sym_default] = ACTIONS(1322), + [anon_sym_fn] = ACTIONS(1276), + [anon_sym_for] = ACTIONS(1278), + [anon_sym_gen] = ACTIONS(1324), + [anon_sym_impl] = ACTIONS(1282), + [anon_sym_union] = ACTIONS(1324), + [anon_sym_unsafe] = ACTIONS(1270), + [anon_sym_extern] = ACTIONS(1284), + [anon_sym_safe] = ACTIONS(1270), + [anon_sym_ref] = ACTIONS(1286), + [anon_sym_dyn] = ACTIONS(1288), + [sym_mutable_specifier] = ACTIONS(1290), + [sym_integer_literal] = ACTIONS(1292), + [aux_sym_string_literal_token1] = ACTIONS(1294), + [sym_char_literal] = ACTIONS(1292), + [anon_sym_true] = ACTIONS(1296), + [anon_sym_false] = ACTIONS(1296), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1326), + [sym_super] = ACTIONS(1328), + [sym_crate] = ACTIONS(1328), + [sym_metavariable] = ACTIONS(1330), + [sym__raw_string_literal_start] = ACTIONS(1304), + [sym_float_literal] = ACTIONS(1292), + }, + [STATE(251)] = { + [sym_attribute_item] = STATE(425), + [sym_function_modifiers] = STATE(3591), + [sym_removed_trait_bound] = STATE(2069), + [sym_self_parameter] = STATE(3012), + [sym_variadic_parameter] = STATE(3012), + [sym_parameter] = STATE(3012), + [sym_extern_modifier] = STATE(2373), + [sym__type] = STATE(2594), + [sym_bracketed_type] = STATE(3673), + [sym_lifetime] = STATE(3067), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1591), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2022), + [sym_generic_type_with_turbofish] = STATE(3329), + [sym_bounded_type] = STATE(2069), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2552), + [sym_scoped_identifier] = STATE(2299), + [sym_scoped_type_identifier] = STATE(2203), + [sym_const_block] = STATE(2163), + [sym__pattern] = STATE(3292), + [sym_generic_pattern] = STATE(2163), + [sym_tuple_pattern] = STATE(2163), + [sym_slice_pattern] = STATE(2163), + [sym_tuple_struct_pattern] = STATE(2163), + [sym_struct_pattern] = STATE(2163), + [sym_remaining_field_pattern] = STATE(2163), + [sym_mut_pattern] = STATE(2163), + [sym_range_pattern] = STATE(2163), + [sym_ref_pattern] = STATE(2163), + [sym_captured_pattern] = STATE(2163), + [sym_reference_pattern] = STATE(2163), + [sym_or_pattern] = STATE(2163), + [sym__literal_pattern] = STATE(2098), + [sym_negative_literal] = STATE(2095), + [sym_string_literal] = STATE(2095), + [sym_raw_string_literal] = STATE(2095), + [sym_boolean_literal] = STATE(2095), + [sym_line_comment] = STATE(251), + [sym_block_comment] = STATE(251), + [aux_sym_function_modifiers_repeat1] = STATE(2244), + [sym_identifier] = ACTIONS(1306), + [anon_sym_LPAREN] = ACTIONS(1308), + [anon_sym_RPAREN] = ACTIONS(1342), + [anon_sym_LBRACK] = ACTIONS(1238), + [anon_sym_STAR] = ACTIONS(1240), + [anon_sym_QMARK] = ACTIONS(1242), + [anon_sym_u8] = ACTIONS(1312), + [anon_sym_i8] = ACTIONS(1312), + [anon_sym_u16] = ACTIONS(1312), + [anon_sym_i16] = ACTIONS(1312), + [anon_sym_u32] = ACTIONS(1312), + [anon_sym_i32] = ACTIONS(1312), + [anon_sym_u64] = ACTIONS(1312), + [anon_sym_i64] = ACTIONS(1312), + [anon_sym_u128] = ACTIONS(1312), + [anon_sym_i128] = ACTIONS(1312), + [anon_sym_isize] = ACTIONS(1312), + [anon_sym_usize] = ACTIONS(1312), + [anon_sym_f32] = ACTIONS(1312), + [anon_sym_f64] = ACTIONS(1312), + [anon_sym_bool] = ACTIONS(1312), + [anon_sym_str] = ACTIONS(1312), + [anon_sym_char] = ACTIONS(1312), + [anon_sym_DASH] = ACTIONS(1246), + [anon_sym_BANG] = ACTIONS(1248), + [anon_sym_AMP] = ACTIONS(1314), + [anon_sym_PIPE] = ACTIONS(1252), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1344), + [anon_sym_DOT_DOT] = ACTIONS(1256), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1258), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1260), + [anon_sym_COMMA] = ACTIONS(1346), + [anon_sym_COLON_COLON] = ACTIONS(1320), + [anon_sym_POUND] = ACTIONS(1266), + [anon_sym_SQUOTE] = ACTIONS(1268), + [anon_sym_async] = ACTIONS(1270), + [anon_sym_const] = ACTIONS(1272), + [anon_sym_default] = ACTIONS(1322), + [anon_sym_fn] = ACTIONS(1276), + [anon_sym_for] = ACTIONS(1278), + [anon_sym_gen] = ACTIONS(1324), + [anon_sym_impl] = ACTIONS(1282), + [anon_sym_union] = ACTIONS(1324), + [anon_sym_unsafe] = ACTIONS(1270), + [anon_sym_extern] = ACTIONS(1284), + [anon_sym_safe] = ACTIONS(1270), + [anon_sym_ref] = ACTIONS(1286), + [anon_sym_dyn] = ACTIONS(1288), + [sym_mutable_specifier] = ACTIONS(1290), + [sym_integer_literal] = ACTIONS(1292), + [aux_sym_string_literal_token1] = ACTIONS(1294), + [sym_char_literal] = ACTIONS(1292), + [anon_sym_true] = ACTIONS(1296), + [anon_sym_false] = ACTIONS(1296), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1326), + [sym_super] = ACTIONS(1328), + [sym_crate] = ACTIONS(1328), + [sym_metavariable] = ACTIONS(1330), + [sym__raw_string_literal_start] = ACTIONS(1304), + [sym_float_literal] = ACTIONS(1292), + }, + [STATE(252)] = { + [sym_else_clause] = STATE(406), + [sym_line_comment] = STATE(252), + [sym_block_comment] = STATE(252), + [ts_builtin_sym_end] = ACTIONS(1348), + [sym_identifier] = ACTIONS(1350), + [anon_sym_SEMI] = ACTIONS(1348), + [anon_sym_macro_rules_BANG] = ACTIONS(1348), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACK] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(1348), + [anon_sym_RBRACE] = ACTIONS(1348), + [anon_sym_PLUS] = ACTIONS(1350), + [anon_sym_STAR] = ACTIONS(1350), + [anon_sym_QMARK] = ACTIONS(1348), + [anon_sym_u8] = ACTIONS(1350), + [anon_sym_i8] = ACTIONS(1350), + [anon_sym_u16] = ACTIONS(1350), + [anon_sym_i16] = ACTIONS(1350), + [anon_sym_u32] = ACTIONS(1350), + [anon_sym_i32] = ACTIONS(1350), + [anon_sym_u64] = ACTIONS(1350), + [anon_sym_i64] = ACTIONS(1350), + [anon_sym_u128] = ACTIONS(1350), + [anon_sym_i128] = ACTIONS(1350), + [anon_sym_isize] = ACTIONS(1350), + [anon_sym_usize] = ACTIONS(1350), + [anon_sym_f32] = ACTIONS(1350), + [anon_sym_f64] = ACTIONS(1350), + [anon_sym_bool] = ACTIONS(1350), + [anon_sym_str] = ACTIONS(1350), + [anon_sym_char] = ACTIONS(1350), + [anon_sym_DASH] = ACTIONS(1350), + [anon_sym_SLASH] = ACTIONS(1350), + [anon_sym_PERCENT] = ACTIONS(1350), + [anon_sym_CARET] = ACTIONS(1350), + [anon_sym_BANG] = ACTIONS(1350), + [anon_sym_AMP] = ACTIONS(1350), + [anon_sym_PIPE] = ACTIONS(1350), + [anon_sym_AMP_AMP] = ACTIONS(1348), + [anon_sym_PIPE_PIPE] = ACTIONS(1348), + [anon_sym_LT_LT] = ACTIONS(1350), + [anon_sym_GT_GT] = ACTIONS(1350), + [anon_sym_PLUS_EQ] = ACTIONS(1348), + [anon_sym_DASH_EQ] = ACTIONS(1348), + [anon_sym_STAR_EQ] = ACTIONS(1348), + [anon_sym_SLASH_EQ] = ACTIONS(1348), + [anon_sym_PERCENT_EQ] = ACTIONS(1348), + [anon_sym_CARET_EQ] = ACTIONS(1348), + [anon_sym_AMP_EQ] = ACTIONS(1348), + [anon_sym_PIPE_EQ] = ACTIONS(1348), + [anon_sym_LT_LT_EQ] = ACTIONS(1348), + [anon_sym_GT_GT_EQ] = ACTIONS(1348), + [anon_sym_EQ] = ACTIONS(1350), + [anon_sym_EQ_EQ] = ACTIONS(1348), + [anon_sym_BANG_EQ] = ACTIONS(1348), + [anon_sym_GT] = ACTIONS(1350), + [anon_sym_LT] = ACTIONS(1350), + [anon_sym_GT_EQ] = ACTIONS(1348), + [anon_sym_LT_EQ] = ACTIONS(1348), + [anon_sym_DOT] = ACTIONS(1350), + [anon_sym_DOT_DOT] = ACTIONS(1350), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1348), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1348), + [anon_sym_COLON_COLON] = ACTIONS(1348), + [anon_sym_POUND] = ACTIONS(1348), + [anon_sym_SQUOTE] = ACTIONS(1350), + [anon_sym_as] = ACTIONS(1350), + [anon_sym_async] = ACTIONS(1350), + [anon_sym_break] = ACTIONS(1350), + [anon_sym_const] = ACTIONS(1350), + [anon_sym_continue] = ACTIONS(1350), + [anon_sym_default] = ACTIONS(1350), + [anon_sym_enum] = ACTIONS(1350), + [anon_sym_fn] = ACTIONS(1350), + [anon_sym_for] = ACTIONS(1350), + [anon_sym_gen] = ACTIONS(1350), + [anon_sym_if] = ACTIONS(1350), + [anon_sym_impl] = ACTIONS(1350), + [anon_sym_let] = ACTIONS(1350), + [anon_sym_loop] = ACTIONS(1350), + [anon_sym_match] = ACTIONS(1350), + [anon_sym_mod] = ACTIONS(1350), + [anon_sym_pub] = ACTIONS(1350), + [anon_sym_return] = ACTIONS(1350), + [anon_sym_static] = ACTIONS(1350), + [anon_sym_struct] = ACTIONS(1350), + [anon_sym_trait] = ACTIONS(1350), + [anon_sym_type] = ACTIONS(1350), + [anon_sym_union] = ACTIONS(1350), + [anon_sym_unsafe] = ACTIONS(1350), + [anon_sym_use] = ACTIONS(1350), + [anon_sym_while] = ACTIONS(1350), + [anon_sym_extern] = ACTIONS(1350), + [anon_sym_safe] = ACTIONS(1350), + [anon_sym_else] = ACTIONS(1352), + [anon_sym_yield] = ACTIONS(1350), + [anon_sym_move] = ACTIONS(1350), + [anon_sym_try] = ACTIONS(1350), + [sym_integer_literal] = ACTIONS(1348), + [aux_sym_string_literal_token1] = ACTIONS(1348), + [sym_char_literal] = ACTIONS(1348), + [anon_sym_true] = ACTIONS(1350), + [anon_sym_false] = ACTIONS(1350), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1350), + [sym_super] = ACTIONS(1350), + [sym_crate] = ACTIONS(1350), + [sym_metavariable] = ACTIONS(1348), + [sym__raw_string_literal_start] = ACTIONS(1348), + [sym_float_literal] = ACTIONS(1348), + }, + [STATE(253)] = { + [sym_attribute_item] = STATE(424), + [sym_function_modifiers] = STATE(3591), + [sym_removed_trait_bound] = STATE(2069), + [sym_self_parameter] = STATE(2999), + [sym_variadic_parameter] = STATE(2999), + [sym_parameter] = STATE(2999), + [sym_extern_modifier] = STATE(2373), + [sym__type] = STATE(2751), + [sym_bracketed_type] = STATE(3681), + [sym_lifetime] = STATE(3067), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1591), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2022), + [sym_generic_type_with_turbofish] = STATE(3160), + [sym_bounded_type] = STATE(2069), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2548), + [sym_scoped_identifier] = STATE(2208), + [sym_scoped_type_identifier] = STATE(2203), + [sym_const_block] = STATE(2163), + [sym__pattern] = STATE(2536), + [sym_generic_pattern] = STATE(2163), + [sym_tuple_pattern] = STATE(2163), + [sym_slice_pattern] = STATE(2163), + [sym_tuple_struct_pattern] = STATE(2163), + [sym_struct_pattern] = STATE(2163), + [sym_remaining_field_pattern] = STATE(2163), + [sym_mut_pattern] = STATE(2163), + [sym_range_pattern] = STATE(2163), + [sym_ref_pattern] = STATE(2163), + [sym_captured_pattern] = STATE(2163), + [sym_reference_pattern] = STATE(2163), + [sym_or_pattern] = STATE(2163), + [sym__literal_pattern] = STATE(2098), + [sym_negative_literal] = STATE(2095), + [sym_string_literal] = STATE(2095), + [sym_raw_string_literal] = STATE(2095), + [sym_boolean_literal] = STATE(2095), + [sym_line_comment] = STATE(253), + [sym_block_comment] = STATE(253), + [aux_sym_function_modifiers_repeat1] = STATE(2244), + [sym_identifier] = ACTIONS(1232), + [anon_sym_LPAREN] = ACTIONS(1234), + [anon_sym_RPAREN] = ACTIONS(1354), + [anon_sym_LBRACK] = ACTIONS(1238), + [anon_sym_STAR] = ACTIONS(1240), + [anon_sym_QMARK] = ACTIONS(1242), + [anon_sym_u8] = ACTIONS(1244), + [anon_sym_i8] = ACTIONS(1244), + [anon_sym_u16] = ACTIONS(1244), + [anon_sym_i16] = ACTIONS(1244), + [anon_sym_u32] = ACTIONS(1244), + [anon_sym_i32] = ACTIONS(1244), + [anon_sym_u64] = ACTIONS(1244), + [anon_sym_i64] = ACTIONS(1244), + [anon_sym_u128] = ACTIONS(1244), + [anon_sym_i128] = ACTIONS(1244), + [anon_sym_isize] = ACTIONS(1244), + [anon_sym_usize] = ACTIONS(1244), + [anon_sym_f32] = ACTIONS(1244), + [anon_sym_f64] = ACTIONS(1244), + [anon_sym_bool] = ACTIONS(1244), + [anon_sym_str] = ACTIONS(1244), + [anon_sym_char] = ACTIONS(1244), + [anon_sym_DASH] = ACTIONS(1246), + [anon_sym_BANG] = ACTIONS(1248), + [anon_sym_AMP] = ACTIONS(1250), + [anon_sym_PIPE] = ACTIONS(1252), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1254), + [anon_sym_DOT_DOT] = ACTIONS(1256), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1258), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1260), + [anon_sym_COMMA] = ACTIONS(1356), + [anon_sym_COLON_COLON] = ACTIONS(1264), + [anon_sym_POUND] = ACTIONS(1266), + [anon_sym_SQUOTE] = ACTIONS(1268), + [anon_sym_async] = ACTIONS(1270), + [anon_sym_const] = ACTIONS(1272), + [anon_sym_default] = ACTIONS(1274), + [anon_sym_fn] = ACTIONS(1276), + [anon_sym_for] = ACTIONS(1278), + [anon_sym_gen] = ACTIONS(1280), + [anon_sym_impl] = ACTIONS(1282), + [anon_sym_union] = ACTIONS(1280), + [anon_sym_unsafe] = ACTIONS(1270), + [anon_sym_extern] = ACTIONS(1284), + [anon_sym_safe] = ACTIONS(1270), + [anon_sym_ref] = ACTIONS(1286), + [anon_sym_dyn] = ACTIONS(1288), + [sym_mutable_specifier] = ACTIONS(1290), + [sym_integer_literal] = ACTIONS(1292), + [aux_sym_string_literal_token1] = ACTIONS(1294), + [sym_char_literal] = ACTIONS(1292), + [anon_sym_true] = ACTIONS(1296), + [anon_sym_false] = ACTIONS(1296), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1298), + [sym_super] = ACTIONS(1300), + [sym_crate] = ACTIONS(1300), + [sym_metavariable] = ACTIONS(1302), + [sym__raw_string_literal_start] = ACTIONS(1304), + [sym_float_literal] = ACTIONS(1292), + }, + [STATE(254)] = { + [sym_bracketed_type] = STATE(3752), + [sym_generic_function] = STATE(1492), + [sym_generic_type_with_turbofish] = STATE(3039), + [sym__expression_except_range] = STATE(1409), + [sym__expression] = STATE(1535), + [sym_macro_invocation] = STATE(1529), + [sym_scoped_identifier] = STATE(1540), + [sym_scoped_type_identifier_in_expression_position] = STATE(3335), + [sym_range_expression] = STATE(1505), + [sym_unary_expression] = STATE(1492), + [sym_try_expression] = STATE(1492), + [sym_reference_expression] = STATE(1492), + [sym_binary_expression] = STATE(1492), + [sym_assignment_expression] = STATE(1492), + [sym_compound_assignment_expr] = STATE(1492), + [sym_type_cast_expression] = STATE(1492), + [sym_return_expression] = STATE(1492), + [sym_yield_expression] = STATE(1492), + [sym_call_expression] = STATE(1492), + [sym_array_expression] = STATE(1492), + [sym_parenthesized_expression] = STATE(1492), + [sym_tuple_expression] = STATE(1492), + [sym_unit_expression] = STATE(1492), + [sym_struct_expression] = STATE(1492), + [sym_if_expression] = STATE(1492), + [sym_match_expression] = STATE(1492), + [sym_while_expression] = STATE(1492), + [sym_loop_expression] = STATE(1492), + [sym_for_expression] = STATE(1492), + [sym_const_block] = STATE(1492), + [sym_closure_expression] = STATE(1492), + [sym_closure_parameters] = STATE(229), + [sym_label] = STATE(3689), + [sym_break_expression] = STATE(1492), + [sym_continue_expression] = STATE(1492), + [sym_index_expression] = STATE(1492), + [sym_await_expression] = STATE(1492), + [sym_field_expression] = STATE(1412), + [sym_unsafe_block] = STATE(1492), + [sym_async_block] = STATE(1492), + [sym_gen_block] = STATE(1492), + [sym_try_block] = STATE(1492), + [sym_block] = STATE(1492), + [sym__literal] = STATE(1492), + [sym_string_literal] = STATE(1530), + [sym_raw_string_literal] = STATE(1530), + [sym_boolean_literal] = STATE(1530), + [sym_line_comment] = STATE(254), + [sym_block_comment] = STATE(254), + [sym_identifier] = ACTIONS(344), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(348), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -45499,319 +46309,655 @@ 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(1190), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), + [anon_sym_async] = ACTIONS(356), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(358), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), + [anon_sym_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(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(115), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [anon_sym_static] = ACTIONS(372), + [anon_sym_union] = ACTIONS(360), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [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(249)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1802), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1520), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [sym_line_comment] = STATE(249), - [sym_block_comment] = STATE(249), - [sym_identifier] = ACTIONS(339), + [STATE(255)] = { + [sym_bracketed_type] = STATE(3752), + [sym_generic_function] = STATE(1492), + [sym_generic_type_with_turbofish] = STATE(3085), + [sym__expression_except_range] = STATE(1409), + [sym__expression] = STATE(1630), + [sym_macro_invocation] = STATE(1529), + [sym_scoped_identifier] = STATE(1604), + [sym_scoped_type_identifier_in_expression_position] = STATE(3335), + [sym_range_expression] = STATE(1505), + [sym_unary_expression] = STATE(1492), + [sym_try_expression] = STATE(1492), + [sym_reference_expression] = STATE(1492), + [sym_binary_expression] = STATE(1492), + [sym_assignment_expression] = STATE(1492), + [sym_compound_assignment_expr] = STATE(1492), + [sym_type_cast_expression] = STATE(1492), + [sym_return_expression] = STATE(1492), + [sym_yield_expression] = STATE(1492), + [sym_call_expression] = STATE(1492), + [sym_array_expression] = STATE(1492), + [sym_parenthesized_expression] = STATE(1492), + [sym_tuple_expression] = STATE(1492), + [sym_unit_expression] = STATE(1492), + [sym_struct_expression] = STATE(1492), + [sym_if_expression] = STATE(1492), + [sym_match_expression] = STATE(1492), + [sym_while_expression] = STATE(1492), + [sym_loop_expression] = STATE(1492), + [sym_for_expression] = STATE(1492), + [sym_const_block] = STATE(1492), + [sym_closure_expression] = STATE(1492), + [sym_closure_parameters] = STATE(221), + [sym_label] = STATE(3689), + [sym_break_expression] = STATE(1492), + [sym_continue_expression] = STATE(1492), + [sym_index_expression] = STATE(1492), + [sym_await_expression] = STATE(1492), + [sym_field_expression] = STATE(1412), + [sym_unsafe_block] = STATE(1492), + [sym_async_block] = STATE(1492), + [sym_gen_block] = STATE(1492), + [sym_try_block] = STATE(1492), + [sym_block] = STATE(1492), + [sym__literal] = STATE(1492), + [sym_string_literal] = STATE(1530), + [sym_raw_string_literal] = STATE(1530), + [sym_boolean_literal] = STATE(1530), + [sym_line_comment] = STATE(255), + [sym_block_comment] = STATE(255), + [sym_identifier] = ACTIONS(470), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(348), + [anon_sym_STAR] = ACTIONS(978), + [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(978), + [anon_sym_BANG] = ACTIONS(978), + [anon_sym_AMP] = ACTIONS(980), [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(982), + [anon_sym_COLON_COLON] = ACTIONS(476), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(115), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [anon_sym_async] = ACTIONS(356), + [anon_sym_break] = ACTIONS(510), + [anon_sym_const] = ACTIONS(358), + [anon_sym_continue] = ACTIONS(512), + [anon_sym_default] = ACTIONS(480), + [anon_sym_for] = ACTIONS(362), + [anon_sym_gen] = ACTIONS(514), + [anon_sym_if] = ACTIONS(366), + [anon_sym_loop] = ACTIONS(368), + [anon_sym_match] = ACTIONS(370), + [anon_sym_return] = ACTIONS(516), + [anon_sym_static] = ACTIONS(518), + [anon_sym_union] = ACTIONS(480), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [anon_sym_yield] = ACTIONS(520), + [anon_sym_move] = ACTIONS(522), + [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(492), + [sym_super] = ACTIONS(494), + [sym_crate] = ACTIONS(494), + [sym_metavariable] = ACTIONS(496), + [sym__raw_string_literal_start] = ACTIONS(119), + [sym_float_literal] = ACTIONS(99), }, - [STATE(250)] = { - [sym_attribute_item] = STATE(421), - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_self_parameter] = STATE(2950), - [sym_variadic_parameter] = STATE(2950), - [sym_parameter] = STATE(2950), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2754), - [sym_bracketed_type] = STATE(3652), - [sym_lifetime] = STATE(3011), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3382), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2517), - [sym_scoped_identifier] = STATE(2191), - [sym_scoped_type_identifier] = STATE(2154), - [sym_const_block] = STATE(2150), - [sym__pattern] = STATE(2551), - [sym_generic_pattern] = STATE(2150), - [sym_tuple_pattern] = STATE(2150), - [sym_slice_pattern] = STATE(2150), - [sym_tuple_struct_pattern] = STATE(2150), - [sym_struct_pattern] = STATE(2150), - [sym_remaining_field_pattern] = STATE(2150), - [sym_mut_pattern] = STATE(2150), - [sym_range_pattern] = STATE(2150), - [sym_ref_pattern] = STATE(2150), - [sym_captured_pattern] = STATE(2150), - [sym_reference_pattern] = STATE(2150), - [sym_or_pattern] = STATE(2150), - [sym__literal_pattern] = STATE(2076), - [sym_negative_literal] = STATE(2074), - [sym_string_literal] = STATE(2074), - [sym_raw_string_literal] = STATE(2074), - [sym_boolean_literal] = STATE(2074), - [sym_line_comment] = STATE(250), - [sym_block_comment] = STATE(250), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(1227), - [anon_sym_LPAREN] = ACTIONS(1229), - [anon_sym_RPAREN] = ACTIONS(1231), - [anon_sym_LBRACK] = ACTIONS(1233), - [anon_sym_STAR] = ACTIONS(1235), - [anon_sym_QMARK] = ACTIONS(1237), - [anon_sym_u8] = ACTIONS(1239), - [anon_sym_i8] = ACTIONS(1239), - [anon_sym_u16] = ACTIONS(1239), - [anon_sym_i16] = ACTIONS(1239), - [anon_sym_u32] = ACTIONS(1239), - [anon_sym_i32] = ACTIONS(1239), - [anon_sym_u64] = ACTIONS(1239), - [anon_sym_i64] = ACTIONS(1239), - [anon_sym_u128] = ACTIONS(1239), - [anon_sym_i128] = ACTIONS(1239), - [anon_sym_isize] = ACTIONS(1239), - [anon_sym_usize] = ACTIONS(1239), - [anon_sym_f32] = ACTIONS(1239), - [anon_sym_f64] = ACTIONS(1239), - [anon_sym_bool] = ACTIONS(1239), - [anon_sym_str] = ACTIONS(1239), - [anon_sym_char] = ACTIONS(1239), - [anon_sym_DASH] = ACTIONS(1241), - [anon_sym_BANG] = ACTIONS(1243), - [anon_sym_AMP] = ACTIONS(1245), - [anon_sym_PIPE] = ACTIONS(1247), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1249), - [anon_sym_DOT_DOT] = ACTIONS(1251), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1253), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1255), - [anon_sym_COMMA] = ACTIONS(1257), - [anon_sym_COLON_COLON] = ACTIONS(1259), - [anon_sym_POUND] = ACTIONS(1261), - [anon_sym_SQUOTE] = ACTIONS(1263), - [anon_sym_async] = ACTIONS(1265), - [anon_sym_const] = ACTIONS(1267), - [anon_sym_default] = ACTIONS(1269), - [anon_sym_fn] = ACTIONS(1271), - [anon_sym_for] = ACTIONS(1273), - [anon_sym_gen] = ACTIONS(1275), - [anon_sym_impl] = ACTIONS(1277), - [anon_sym_union] = ACTIONS(1275), - [anon_sym_unsafe] = ACTIONS(1265), - [anon_sym_extern] = ACTIONS(1279), - [anon_sym_ref] = ACTIONS(1281), - [anon_sym_dyn] = ACTIONS(1283), - [sym_mutable_specifier] = ACTIONS(1285), - [sym_integer_literal] = ACTIONS(1287), - [aux_sym_string_literal_token1] = ACTIONS(1289), - [sym_char_literal] = ACTIONS(1287), - [anon_sym_true] = ACTIONS(1291), - [anon_sym_false] = ACTIONS(1291), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1293), - [sym_super] = ACTIONS(1295), - [sym_crate] = ACTIONS(1295), - [sym_metavariable] = ACTIONS(1297), - [sym__raw_string_literal_start] = ACTIONS(1299), - [sym_float_literal] = ACTIONS(1287), + [STATE(256)] = { + [sym_line_comment] = STATE(256), + [sym_block_comment] = STATE(256), + [ts_builtin_sym_end] = ACTIONS(1358), + [sym_identifier] = ACTIONS(1360), + [anon_sym_SEMI] = ACTIONS(1358), + [anon_sym_macro_rules_BANG] = ACTIONS(1358), + [anon_sym_LPAREN] = ACTIONS(1358), + [anon_sym_LBRACK] = ACTIONS(1358), + [anon_sym_LBRACE] = ACTIONS(1358), + [anon_sym_RBRACE] = ACTIONS(1358), + [anon_sym_PLUS] = ACTIONS(1360), + [anon_sym_STAR] = ACTIONS(1360), + [anon_sym_QMARK] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1360), + [anon_sym_i8] = ACTIONS(1360), + [anon_sym_u16] = ACTIONS(1360), + [anon_sym_i16] = ACTIONS(1360), + [anon_sym_u32] = ACTIONS(1360), + [anon_sym_i32] = ACTIONS(1360), + [anon_sym_u64] = ACTIONS(1360), + [anon_sym_i64] = ACTIONS(1360), + [anon_sym_u128] = ACTIONS(1360), + [anon_sym_i128] = ACTIONS(1360), + [anon_sym_isize] = ACTIONS(1360), + [anon_sym_usize] = ACTIONS(1360), + [anon_sym_f32] = ACTIONS(1360), + [anon_sym_f64] = ACTIONS(1360), + [anon_sym_bool] = ACTIONS(1360), + [anon_sym_str] = ACTIONS(1360), + [anon_sym_char] = ACTIONS(1360), + [anon_sym_DASH] = ACTIONS(1360), + [anon_sym_SLASH] = ACTIONS(1360), + [anon_sym_PERCENT] = ACTIONS(1360), + [anon_sym_CARET] = ACTIONS(1360), + [anon_sym_BANG] = ACTIONS(1360), + [anon_sym_AMP] = ACTIONS(1360), + [anon_sym_PIPE] = ACTIONS(1360), + [anon_sym_AMP_AMP] = ACTIONS(1358), + [anon_sym_PIPE_PIPE] = ACTIONS(1358), + [anon_sym_LT_LT] = ACTIONS(1360), + [anon_sym_GT_GT] = ACTIONS(1360), + [anon_sym_PLUS_EQ] = ACTIONS(1358), + [anon_sym_DASH_EQ] = ACTIONS(1358), + [anon_sym_STAR_EQ] = ACTIONS(1358), + [anon_sym_SLASH_EQ] = ACTIONS(1358), + [anon_sym_PERCENT_EQ] = ACTIONS(1358), + [anon_sym_CARET_EQ] = ACTIONS(1358), + [anon_sym_AMP_EQ] = ACTIONS(1358), + [anon_sym_PIPE_EQ] = ACTIONS(1358), + [anon_sym_LT_LT_EQ] = ACTIONS(1358), + [anon_sym_GT_GT_EQ] = ACTIONS(1358), + [anon_sym_EQ] = ACTIONS(1360), + [anon_sym_EQ_EQ] = ACTIONS(1358), + [anon_sym_BANG_EQ] = ACTIONS(1358), + [anon_sym_GT] = ACTIONS(1360), + [anon_sym_LT] = ACTIONS(1360), + [anon_sym_GT_EQ] = ACTIONS(1358), + [anon_sym_LT_EQ] = ACTIONS(1358), + [anon_sym_DOT] = ACTIONS(1360), + [anon_sym_DOT_DOT] = ACTIONS(1360), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1358), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1358), + [anon_sym_COLON_COLON] = ACTIONS(1358), + [anon_sym_POUND] = ACTIONS(1358), + [anon_sym_SQUOTE] = ACTIONS(1360), + [anon_sym_as] = ACTIONS(1360), + [anon_sym_async] = ACTIONS(1360), + [anon_sym_break] = ACTIONS(1360), + [anon_sym_const] = ACTIONS(1360), + [anon_sym_continue] = ACTIONS(1360), + [anon_sym_default] = ACTIONS(1360), + [anon_sym_enum] = ACTIONS(1360), + [anon_sym_fn] = ACTIONS(1360), + [anon_sym_for] = ACTIONS(1360), + [anon_sym_gen] = ACTIONS(1360), + [anon_sym_if] = ACTIONS(1360), + [anon_sym_impl] = ACTIONS(1360), + [anon_sym_let] = ACTIONS(1360), + [anon_sym_loop] = ACTIONS(1360), + [anon_sym_match] = ACTIONS(1360), + [anon_sym_mod] = ACTIONS(1360), + [anon_sym_pub] = ACTIONS(1360), + [anon_sym_return] = ACTIONS(1360), + [anon_sym_static] = ACTIONS(1360), + [anon_sym_struct] = ACTIONS(1360), + [anon_sym_trait] = ACTIONS(1360), + [anon_sym_type] = ACTIONS(1360), + [anon_sym_union] = ACTIONS(1360), + [anon_sym_unsafe] = ACTIONS(1360), + [anon_sym_use] = ACTIONS(1360), + [anon_sym_while] = ACTIONS(1360), + [anon_sym_extern] = ACTIONS(1360), + [anon_sym_safe] = ACTIONS(1360), + [anon_sym_else] = ACTIONS(1360), + [anon_sym_yield] = ACTIONS(1360), + [anon_sym_move] = ACTIONS(1360), + [anon_sym_try] = ACTIONS(1360), + [sym_integer_literal] = ACTIONS(1358), + [aux_sym_string_literal_token1] = ACTIONS(1358), + [sym_char_literal] = ACTIONS(1358), + [anon_sym_true] = ACTIONS(1360), + [anon_sym_false] = ACTIONS(1360), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1360), + [sym_super] = ACTIONS(1360), + [sym_crate] = ACTIONS(1360), + [sym_metavariable] = ACTIONS(1358), + [sym__raw_string_literal_start] = ACTIONS(1358), + [sym_float_literal] = ACTIONS(1358), }, - [STATE(251)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1932), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1520), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [sym_line_comment] = STATE(251), - [sym_block_comment] = STATE(251), - [sym_identifier] = ACTIONS(339), + [STATE(257)] = { + [sym_bracketed_type] = STATE(3752), + [sym_generic_function] = STATE(1492), + [sym_generic_type_with_turbofish] = STATE(3085), + [sym__expression_except_range] = STATE(1409), + [sym__expression] = STATE(1636), + [sym_macro_invocation] = STATE(1529), + [sym_scoped_identifier] = STATE(1604), + [sym_scoped_type_identifier_in_expression_position] = STATE(3335), + [sym_range_expression] = STATE(1505), + [sym_unary_expression] = STATE(1492), + [sym_try_expression] = STATE(1492), + [sym_reference_expression] = STATE(1492), + [sym_binary_expression] = STATE(1492), + [sym_assignment_expression] = STATE(1492), + [sym_compound_assignment_expr] = STATE(1492), + [sym_type_cast_expression] = STATE(1492), + [sym_return_expression] = STATE(1492), + [sym_yield_expression] = STATE(1492), + [sym_call_expression] = STATE(1492), + [sym_array_expression] = STATE(1492), + [sym_parenthesized_expression] = STATE(1492), + [sym_tuple_expression] = STATE(1492), + [sym_unit_expression] = STATE(1492), + [sym_struct_expression] = STATE(1492), + [sym_if_expression] = STATE(1492), + [sym_match_expression] = STATE(1492), + [sym_while_expression] = STATE(1492), + [sym_loop_expression] = STATE(1492), + [sym_for_expression] = STATE(1492), + [sym_const_block] = STATE(1492), + [sym_closure_expression] = STATE(1492), + [sym_closure_parameters] = STATE(221), + [sym_label] = STATE(3689), + [sym_break_expression] = STATE(1492), + [sym_continue_expression] = STATE(1492), + [sym_index_expression] = STATE(1492), + [sym_await_expression] = STATE(1492), + [sym_field_expression] = STATE(1412), + [sym_unsafe_block] = STATE(1492), + [sym_async_block] = STATE(1492), + [sym_gen_block] = STATE(1492), + [sym_try_block] = STATE(1492), + [sym_block] = STATE(1492), + [sym__literal] = STATE(1492), + [sym_string_literal] = STATE(1530), + [sym_raw_string_literal] = STATE(1530), + [sym_boolean_literal] = STATE(1530), + [sym_line_comment] = STATE(257), + [sym_block_comment] = STATE(257), + [sym_identifier] = ACTIONS(470), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(348), + [anon_sym_STAR] = ACTIONS(978), + [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(978), + [anon_sym_BANG] = ACTIONS(978), + [anon_sym_AMP] = ACTIONS(980), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(982), + [anon_sym_COLON_COLON] = ACTIONS(476), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(356), + [anon_sym_break] = ACTIONS(510), + [anon_sym_const] = ACTIONS(358), + [anon_sym_continue] = ACTIONS(512), + [anon_sym_default] = ACTIONS(480), + [anon_sym_for] = ACTIONS(362), + [anon_sym_gen] = ACTIONS(514), + [anon_sym_if] = ACTIONS(366), + [anon_sym_loop] = ACTIONS(368), + [anon_sym_match] = ACTIONS(370), + [anon_sym_return] = ACTIONS(516), + [anon_sym_static] = ACTIONS(518), + [anon_sym_union] = ACTIONS(480), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [anon_sym_yield] = ACTIONS(520), + [anon_sym_move] = ACTIONS(522), + [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(492), + [sym_super] = ACTIONS(494), + [sym_crate] = ACTIONS(494), + [sym_metavariable] = ACTIONS(496), + [sym__raw_string_literal_start] = ACTIONS(119), + [sym_float_literal] = ACTIONS(99), + }, + [STATE(258)] = { + [sym_bracketed_type] = STATE(3752), + [sym_generic_function] = STATE(1492), + [sym_generic_type_with_turbofish] = STATE(3085), + [sym__expression_except_range] = STATE(1409), + [sym__expression] = STATE(1633), + [sym_macro_invocation] = STATE(1529), + [sym_scoped_identifier] = STATE(1604), + [sym_scoped_type_identifier_in_expression_position] = STATE(3335), + [sym_range_expression] = STATE(1505), + [sym_unary_expression] = STATE(1492), + [sym_try_expression] = STATE(1492), + [sym_reference_expression] = STATE(1492), + [sym_binary_expression] = STATE(1492), + [sym_assignment_expression] = STATE(1492), + [sym_compound_assignment_expr] = STATE(1492), + [sym_type_cast_expression] = STATE(1492), + [sym_return_expression] = STATE(1492), + [sym_yield_expression] = STATE(1492), + [sym_call_expression] = STATE(1492), + [sym_array_expression] = STATE(1492), + [sym_parenthesized_expression] = STATE(1492), + [sym_tuple_expression] = STATE(1492), + [sym_unit_expression] = STATE(1492), + [sym_struct_expression] = STATE(1492), + [sym_if_expression] = STATE(1492), + [sym_match_expression] = STATE(1492), + [sym_while_expression] = STATE(1492), + [sym_loop_expression] = STATE(1492), + [sym_for_expression] = STATE(1492), + [sym_const_block] = STATE(1492), + [sym_closure_expression] = STATE(1492), + [sym_closure_parameters] = STATE(221), + [sym_label] = STATE(3689), + [sym_break_expression] = STATE(1492), + [sym_continue_expression] = STATE(1492), + [sym_index_expression] = STATE(1492), + [sym_await_expression] = STATE(1492), + [sym_field_expression] = STATE(1412), + [sym_unsafe_block] = STATE(1492), + [sym_async_block] = STATE(1492), + [sym_gen_block] = STATE(1492), + [sym_try_block] = STATE(1492), + [sym_block] = STATE(1492), + [sym__literal] = STATE(1492), + [sym_string_literal] = STATE(1530), + [sym_raw_string_literal] = STATE(1530), + [sym_boolean_literal] = STATE(1530), + [sym_line_comment] = STATE(258), + [sym_block_comment] = STATE(258), + [sym_identifier] = ACTIONS(470), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(348), + [anon_sym_STAR] = ACTIONS(978), + [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(978), + [anon_sym_BANG] = ACTIONS(978), + [anon_sym_AMP] = ACTIONS(980), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(982), + [anon_sym_COLON_COLON] = ACTIONS(476), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(356), + [anon_sym_break] = ACTIONS(510), + [anon_sym_const] = ACTIONS(358), + [anon_sym_continue] = ACTIONS(512), + [anon_sym_default] = ACTIONS(480), + [anon_sym_for] = ACTIONS(362), + [anon_sym_gen] = ACTIONS(514), + [anon_sym_if] = ACTIONS(366), + [anon_sym_loop] = ACTIONS(368), + [anon_sym_match] = ACTIONS(370), + [anon_sym_return] = ACTIONS(516), + [anon_sym_static] = ACTIONS(518), + [anon_sym_union] = ACTIONS(480), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [anon_sym_yield] = ACTIONS(520), + [anon_sym_move] = ACTIONS(522), + [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(492), + [sym_super] = ACTIONS(494), + [sym_crate] = ACTIONS(494), + [sym_metavariable] = ACTIONS(496), + [sym__raw_string_literal_start] = ACTIONS(119), + [sym_float_literal] = ACTIONS(99), + }, + [STATE(259)] = { + [sym_attribute_item] = STATE(422), + [sym_function_modifiers] = STATE(3591), + [sym_removed_trait_bound] = STATE(2069), + [sym_self_parameter] = STATE(3352), + [sym_variadic_parameter] = STATE(3352), + [sym_parameter] = STATE(3352), + [sym_extern_modifier] = STATE(2373), + [sym__type] = STATE(3096), + [sym_bracketed_type] = STATE(3673), + [sym_lifetime] = STATE(3067), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1591), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2022), + [sym_generic_type_with_turbofish] = STATE(3329), + [sym_bounded_type] = STATE(2069), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2552), + [sym_scoped_identifier] = STATE(2299), + [sym_scoped_type_identifier] = STATE(2203), + [sym_const_block] = STATE(2163), + [sym__pattern] = STATE(3292), + [sym_generic_pattern] = STATE(2163), + [sym_tuple_pattern] = STATE(2163), + [sym_slice_pattern] = STATE(2163), + [sym_tuple_struct_pattern] = STATE(2163), + [sym_struct_pattern] = STATE(2163), + [sym_remaining_field_pattern] = STATE(2163), + [sym_mut_pattern] = STATE(2163), + [sym_range_pattern] = STATE(2163), + [sym_ref_pattern] = STATE(2163), + [sym_captured_pattern] = STATE(2163), + [sym_reference_pattern] = STATE(2163), + [sym_or_pattern] = STATE(2163), + [sym__literal_pattern] = STATE(2098), + [sym_negative_literal] = STATE(2095), + [sym_string_literal] = STATE(2095), + [sym_raw_string_literal] = STATE(2095), + [sym_boolean_literal] = STATE(2095), + [sym_line_comment] = STATE(259), + [sym_block_comment] = STATE(259), + [aux_sym_function_modifiers_repeat1] = STATE(2244), + [sym_identifier] = ACTIONS(1306), + [anon_sym_LPAREN] = ACTIONS(1308), + [anon_sym_RPAREN] = ACTIONS(1362), + [anon_sym_LBRACK] = ACTIONS(1238), + [anon_sym_STAR] = ACTIONS(1240), + [anon_sym_QMARK] = ACTIONS(1242), + [anon_sym_u8] = ACTIONS(1312), + [anon_sym_i8] = ACTIONS(1312), + [anon_sym_u16] = ACTIONS(1312), + [anon_sym_i16] = ACTIONS(1312), + [anon_sym_u32] = ACTIONS(1312), + [anon_sym_i32] = ACTIONS(1312), + [anon_sym_u64] = ACTIONS(1312), + [anon_sym_i64] = ACTIONS(1312), + [anon_sym_u128] = ACTIONS(1312), + [anon_sym_i128] = ACTIONS(1312), + [anon_sym_isize] = ACTIONS(1312), + [anon_sym_usize] = ACTIONS(1312), + [anon_sym_f32] = ACTIONS(1312), + [anon_sym_f64] = ACTIONS(1312), + [anon_sym_bool] = ACTIONS(1312), + [anon_sym_str] = ACTIONS(1312), + [anon_sym_char] = ACTIONS(1312), + [anon_sym_DASH] = ACTIONS(1246), + [anon_sym_BANG] = ACTIONS(1248), + [anon_sym_AMP] = ACTIONS(1314), + [anon_sym_PIPE] = ACTIONS(1252), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1364), + [anon_sym_DOT_DOT] = ACTIONS(1256), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1258), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1260), + [anon_sym_COLON_COLON] = ACTIONS(1320), + [anon_sym_POUND] = ACTIONS(1266), + [anon_sym_SQUOTE] = ACTIONS(1268), + [anon_sym_async] = ACTIONS(1270), + [anon_sym_const] = ACTIONS(1272), + [anon_sym_default] = ACTIONS(1322), + [anon_sym_fn] = ACTIONS(1276), + [anon_sym_for] = ACTIONS(1278), + [anon_sym_gen] = ACTIONS(1324), + [anon_sym_impl] = ACTIONS(1282), + [anon_sym_union] = ACTIONS(1324), + [anon_sym_unsafe] = ACTIONS(1270), + [anon_sym_extern] = ACTIONS(1284), + [anon_sym_safe] = ACTIONS(1270), + [anon_sym_ref] = ACTIONS(1286), + [anon_sym_dyn] = ACTIONS(1288), + [sym_mutable_specifier] = ACTIONS(1290), + [sym_integer_literal] = ACTIONS(1292), + [aux_sym_string_literal_token1] = ACTIONS(1294), + [sym_char_literal] = ACTIONS(1292), + [anon_sym_true] = ACTIONS(1296), + [anon_sym_false] = ACTIONS(1296), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1326), + [sym_super] = ACTIONS(1328), + [sym_crate] = ACTIONS(1328), + [sym_metavariable] = ACTIONS(1330), + [sym__raw_string_literal_start] = ACTIONS(1304), + [sym_float_literal] = ACTIONS(1292), + }, + [STATE(260)] = { + [sym_bracketed_type] = STATE(3752), + [sym_generic_function] = STATE(1492), + [sym_generic_type_with_turbofish] = STATE(3039), + [sym__expression_except_range] = STATE(1409), + [sym__expression] = STATE(1759), + [sym_macro_invocation] = STATE(1529), + [sym_scoped_identifier] = STATE(1540), + [sym_scoped_type_identifier_in_expression_position] = STATE(3335), + [sym_range_expression] = STATE(1505), + [sym_unary_expression] = STATE(1492), + [sym_try_expression] = STATE(1492), + [sym_reference_expression] = STATE(1492), + [sym_binary_expression] = STATE(1492), + [sym_assignment_expression] = STATE(1492), + [sym_compound_assignment_expr] = STATE(1492), + [sym_type_cast_expression] = STATE(1492), + [sym_return_expression] = STATE(1492), + [sym_yield_expression] = STATE(1492), + [sym_call_expression] = STATE(1492), + [sym_array_expression] = STATE(1492), + [sym_parenthesized_expression] = STATE(1492), + [sym_tuple_expression] = STATE(1492), + [sym_unit_expression] = STATE(1492), + [sym_struct_expression] = STATE(1492), + [sym_if_expression] = STATE(1492), + [sym_match_expression] = STATE(1492), + [sym_while_expression] = STATE(1492), + [sym_loop_expression] = STATE(1492), + [sym_for_expression] = STATE(1492), + [sym_const_block] = STATE(1492), + [sym_closure_expression] = STATE(1492), + [sym_closure_parameters] = STATE(229), + [sym_label] = STATE(3689), + [sym_break_expression] = STATE(1492), + [sym_continue_expression] = STATE(1492), + [sym_index_expression] = STATE(1492), + [sym_await_expression] = STATE(1492), + [sym_field_expression] = STATE(1412), + [sym_unsafe_block] = STATE(1492), + [sym_async_block] = STATE(1492), + [sym_gen_block] = STATE(1492), + [sym_try_block] = STATE(1492), + [sym_block] = STATE(1492), + [sym__literal] = STATE(1492), + [sym_string_literal] = STATE(1530), + [sym_raw_string_literal] = STATE(1530), + [sym_boolean_literal] = STATE(1530), + [sym_line_comment] = STATE(260), + [sym_block_comment] = STATE(260), + [sym_identifier] = ACTIONS(344), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(348), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -45838,92 +46984,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), + [anon_sym_async] = ACTIONS(356), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(358), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), + [anon_sym_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(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(115), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [anon_sym_static] = ACTIONS(372), + [anon_sym_union] = ACTIONS(360), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [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(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1808), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1520), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [sym_line_comment] = STATE(252), - [sym_block_comment] = STATE(252), - [sym_identifier] = ACTIONS(339), + [STATE(261)] = { + [sym_bracketed_type] = STATE(3752), + [sym_generic_function] = STATE(1492), + [sym_generic_type_with_turbofish] = STATE(3039), + [sym__expression_except_range] = STATE(1409), + [sym__expression] = STATE(1767), + [sym_macro_invocation] = STATE(1529), + [sym_scoped_identifier] = STATE(1540), + [sym_scoped_type_identifier_in_expression_position] = STATE(3335), + [sym_range_expression] = STATE(1505), + [sym_unary_expression] = STATE(1492), + [sym_try_expression] = STATE(1492), + [sym_reference_expression] = STATE(1492), + [sym_binary_expression] = STATE(1492), + [sym_assignment_expression] = STATE(1492), + [sym_compound_assignment_expr] = STATE(1492), + [sym_type_cast_expression] = STATE(1492), + [sym_return_expression] = STATE(1492), + [sym_yield_expression] = STATE(1492), + [sym_call_expression] = STATE(1492), + [sym_array_expression] = STATE(1492), + [sym_parenthesized_expression] = STATE(1492), + [sym_tuple_expression] = STATE(1492), + [sym_unit_expression] = STATE(1492), + [sym_struct_expression] = STATE(1492), + [sym_if_expression] = STATE(1492), + [sym_match_expression] = STATE(1492), + [sym_while_expression] = STATE(1492), + [sym_loop_expression] = STATE(1492), + [sym_for_expression] = STATE(1492), + [sym_const_block] = STATE(1492), + [sym_closure_expression] = STATE(1492), + [sym_closure_parameters] = STATE(229), + [sym_label] = STATE(3689), + [sym_break_expression] = STATE(1492), + [sym_continue_expression] = STATE(1492), + [sym_index_expression] = STATE(1492), + [sym_await_expression] = STATE(1492), + [sym_field_expression] = STATE(1412), + [sym_unsafe_block] = STATE(1492), + [sym_async_block] = STATE(1492), + [sym_gen_block] = STATE(1492), + [sym_try_block] = STATE(1492), + [sym_block] = STATE(1492), + [sym__literal] = STATE(1492), + [sym_string_literal] = STATE(1530), + [sym_raw_string_literal] = STATE(1530), + [sym_boolean_literal] = STATE(1530), + [sym_line_comment] = STATE(261), + [sym_block_comment] = STATE(261), + [sym_identifier] = ACTIONS(344), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(348), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -45950,92 +47096,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), + [anon_sym_async] = ACTIONS(356), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(358), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), + [anon_sym_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(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(115), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [anon_sym_static] = ACTIONS(372), + [anon_sym_union] = ACTIONS(360), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [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(253)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1901), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1520), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [sym_line_comment] = STATE(253), - [sym_block_comment] = STATE(253), - [sym_identifier] = ACTIONS(339), + [STATE(262)] = { + [sym_bracketed_type] = STATE(3752), + [sym_generic_function] = STATE(1492), + [sym_generic_type_with_turbofish] = STATE(3039), + [sym__expression_except_range] = STATE(1409), + [sym__expression] = STATE(1858), + [sym_macro_invocation] = STATE(1529), + [sym_scoped_identifier] = STATE(1540), + [sym_scoped_type_identifier_in_expression_position] = STATE(3335), + [sym_range_expression] = STATE(1505), + [sym_unary_expression] = STATE(1492), + [sym_try_expression] = STATE(1492), + [sym_reference_expression] = STATE(1492), + [sym_binary_expression] = STATE(1492), + [sym_assignment_expression] = STATE(1492), + [sym_compound_assignment_expr] = STATE(1492), + [sym_type_cast_expression] = STATE(1492), + [sym_return_expression] = STATE(1492), + [sym_yield_expression] = STATE(1492), + [sym_call_expression] = STATE(1492), + [sym_array_expression] = STATE(1492), + [sym_parenthesized_expression] = STATE(1492), + [sym_tuple_expression] = STATE(1492), + [sym_unit_expression] = STATE(1492), + [sym_struct_expression] = STATE(1492), + [sym_if_expression] = STATE(1492), + [sym_match_expression] = STATE(1492), + [sym_while_expression] = STATE(1492), + [sym_loop_expression] = STATE(1492), + [sym_for_expression] = STATE(1492), + [sym_const_block] = STATE(1492), + [sym_closure_expression] = STATE(1492), + [sym_closure_parameters] = STATE(229), + [sym_label] = STATE(3689), + [sym_break_expression] = STATE(1492), + [sym_continue_expression] = STATE(1492), + [sym_index_expression] = STATE(1492), + [sym_await_expression] = STATE(1492), + [sym_field_expression] = STATE(1412), + [sym_unsafe_block] = STATE(1492), + [sym_async_block] = STATE(1492), + [sym_gen_block] = STATE(1492), + [sym_try_block] = STATE(1492), + [sym_block] = STATE(1492), + [sym__literal] = STATE(1492), + [sym_string_literal] = STATE(1530), + [sym_raw_string_literal] = STATE(1530), + [sym_boolean_literal] = STATE(1530), + [sym_line_comment] = STATE(262), + [sym_block_comment] = STATE(262), + [sym_identifier] = ACTIONS(344), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(348), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -46062,92 +47208,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), + [anon_sym_async] = ACTIONS(356), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(358), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), + [anon_sym_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(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(115), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [anon_sym_static] = ACTIONS(372), + [anon_sym_union] = ACTIONS(360), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [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(254)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1807), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1520), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(470), - [sym_match_expression] = STATE(470), - [sym_while_expression] = STATE(470), - [sym_loop_expression] = STATE(470), - [sym_for_expression] = STATE(470), - [sym_const_block] = STATE(470), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(470), - [sym_async_block] = STATE(470), - [sym_gen_block] = STATE(470), - [sym_try_block] = STATE(470), - [sym_block] = STATE(470), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [sym_line_comment] = STATE(254), - [sym_block_comment] = STATE(254), - [sym_identifier] = ACTIONS(339), + [STATE(263)] = { + [sym_bracketed_type] = STATE(3752), + [sym_generic_function] = STATE(1492), + [sym_generic_type_with_turbofish] = STATE(3039), + [sym__expression_except_range] = STATE(1409), + [sym__expression] = STATE(1880), + [sym_macro_invocation] = STATE(1529), + [sym_scoped_identifier] = STATE(1540), + [sym_scoped_type_identifier_in_expression_position] = STATE(3335), + [sym_range_expression] = STATE(1505), + [sym_unary_expression] = STATE(1492), + [sym_try_expression] = STATE(1492), + [sym_reference_expression] = STATE(1492), + [sym_binary_expression] = STATE(1492), + [sym_assignment_expression] = STATE(1492), + [sym_compound_assignment_expr] = STATE(1492), + [sym_type_cast_expression] = STATE(1492), + [sym_return_expression] = STATE(1492), + [sym_yield_expression] = STATE(1492), + [sym_call_expression] = STATE(1492), + [sym_array_expression] = STATE(1492), + [sym_parenthesized_expression] = STATE(1492), + [sym_tuple_expression] = STATE(1492), + [sym_unit_expression] = STATE(1492), + [sym_struct_expression] = STATE(1492), + [sym_if_expression] = STATE(478), + [sym_match_expression] = STATE(478), + [sym_while_expression] = STATE(478), + [sym_loop_expression] = STATE(478), + [sym_for_expression] = STATE(478), + [sym_const_block] = STATE(478), + [sym_closure_expression] = STATE(1492), + [sym_closure_parameters] = STATE(229), + [sym_label] = STATE(3736), + [sym_break_expression] = STATE(1492), + [sym_continue_expression] = STATE(1492), + [sym_index_expression] = STATE(1492), + [sym_await_expression] = STATE(1492), + [sym_field_expression] = STATE(1412), + [sym_unsafe_block] = STATE(478), + [sym_async_block] = STATE(478), + [sym_gen_block] = STATE(478), + [sym_try_block] = STATE(478), + [sym_block] = STATE(478), + [sym__literal] = STATE(1492), + [sym_string_literal] = STATE(1530), + [sym_raw_string_literal] = STATE(1530), + [sym_boolean_literal] = STATE(1530), + [sym_line_comment] = STATE(263), + [sym_block_comment] = STATE(263), + [sym_identifier] = ACTIONS(344), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(1301), + [anon_sym_LBRACE] = ACTIONS(1366), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -46174,92 +47320,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(1303), + [anon_sym_async] = ACTIONS(1368), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(1305), + [anon_sym_const] = ACTIONS(1370), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(1307), - [anon_sym_gen] = ACTIONS(1309), - [anon_sym_if] = ACTIONS(1311), - [anon_sym_loop] = ACTIONS(1313), - [anon_sym_match] = ACTIONS(1315), + [anon_sym_default] = ACTIONS(360), + [anon_sym_for] = ACTIONS(1372), + [anon_sym_gen] = ACTIONS(1374), + [anon_sym_if] = ACTIONS(1376), + [anon_sym_loop] = ACTIONS(1378), + [anon_sym_match] = ACTIONS(1380), [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_while] = ACTIONS(1319), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(1321), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(115), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [anon_sym_static] = ACTIONS(372), + [anon_sym_union] = ACTIONS(360), + [anon_sym_unsafe] = ACTIONS(1382), + [anon_sym_while] = ACTIONS(1384), + [anon_sym_yield] = ACTIONS(93), + [anon_sym_move] = ACTIONS(95), + [anon_sym_try] = ACTIONS(1386), + [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(255)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1930), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1520), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [sym_line_comment] = STATE(255), - [sym_block_comment] = STATE(255), - [sym_identifier] = ACTIONS(339), + [STATE(264)] = { + [sym_bracketed_type] = STATE(3752), + [sym_generic_function] = STATE(1492), + [sym_generic_type_with_turbofish] = STATE(3039), + [sym__expression_except_range] = STATE(1409), + [sym__expression] = STATE(1941), + [sym_macro_invocation] = STATE(1529), + [sym_scoped_identifier] = STATE(1540), + [sym_scoped_type_identifier_in_expression_position] = STATE(3335), + [sym_range_expression] = STATE(1505), + [sym_unary_expression] = STATE(1492), + [sym_try_expression] = STATE(1492), + [sym_reference_expression] = STATE(1492), + [sym_binary_expression] = STATE(1492), + [sym_assignment_expression] = STATE(1492), + [sym_compound_assignment_expr] = STATE(1492), + [sym_type_cast_expression] = STATE(1492), + [sym_return_expression] = STATE(1492), + [sym_yield_expression] = STATE(1492), + [sym_call_expression] = STATE(1492), + [sym_array_expression] = STATE(1492), + [sym_parenthesized_expression] = STATE(1492), + [sym_tuple_expression] = STATE(1492), + [sym_unit_expression] = STATE(1492), + [sym_struct_expression] = STATE(1492), + [sym_if_expression] = STATE(1492), + [sym_match_expression] = STATE(1492), + [sym_while_expression] = STATE(1492), + [sym_loop_expression] = STATE(1492), + [sym_for_expression] = STATE(1492), + [sym_const_block] = STATE(1492), + [sym_closure_expression] = STATE(1492), + [sym_closure_parameters] = STATE(229), + [sym_label] = STATE(3689), + [sym_break_expression] = STATE(1492), + [sym_continue_expression] = STATE(1492), + [sym_index_expression] = STATE(1492), + [sym_await_expression] = STATE(1492), + [sym_field_expression] = STATE(1412), + [sym_unsafe_block] = STATE(1492), + [sym_async_block] = STATE(1492), + [sym_gen_block] = STATE(1492), + [sym_try_block] = STATE(1492), + [sym_block] = STATE(1492), + [sym__literal] = STATE(1492), + [sym_string_literal] = STATE(1530), + [sym_raw_string_literal] = STATE(1530), + [sym_boolean_literal] = STATE(1530), + [sym_line_comment] = STATE(264), + [sym_block_comment] = STATE(264), + [sym_identifier] = ACTIONS(344), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(348), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -46286,92 +47432,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), + [anon_sym_async] = ACTIONS(356), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(358), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), + [anon_sym_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(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(115), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [anon_sym_static] = ACTIONS(372), + [anon_sym_union] = ACTIONS(360), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [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(256)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1941), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1520), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [sym_line_comment] = STATE(256), - [sym_block_comment] = STATE(256), - [sym_identifier] = ACTIONS(339), + [STATE(265)] = { + [sym_bracketed_type] = STATE(3752), + [sym_generic_function] = STATE(1492), + [sym_generic_type_with_turbofish] = STATE(3039), + [sym__expression_except_range] = STATE(1409), + [sym__expression] = STATE(1945), + [sym_macro_invocation] = STATE(1529), + [sym_scoped_identifier] = STATE(1540), + [sym_scoped_type_identifier_in_expression_position] = STATE(3335), + [sym_range_expression] = STATE(1505), + [sym_unary_expression] = STATE(1492), + [sym_try_expression] = STATE(1492), + [sym_reference_expression] = STATE(1492), + [sym_binary_expression] = STATE(1492), + [sym_assignment_expression] = STATE(1492), + [sym_compound_assignment_expr] = STATE(1492), + [sym_type_cast_expression] = STATE(1492), + [sym_return_expression] = STATE(1492), + [sym_yield_expression] = STATE(1492), + [sym_call_expression] = STATE(1492), + [sym_array_expression] = STATE(1492), + [sym_parenthesized_expression] = STATE(1492), + [sym_tuple_expression] = STATE(1492), + [sym_unit_expression] = STATE(1492), + [sym_struct_expression] = STATE(1492), + [sym_if_expression] = STATE(1492), + [sym_match_expression] = STATE(1492), + [sym_while_expression] = STATE(1492), + [sym_loop_expression] = STATE(1492), + [sym_for_expression] = STATE(1492), + [sym_const_block] = STATE(1492), + [sym_closure_expression] = STATE(1492), + [sym_closure_parameters] = STATE(229), + [sym_label] = STATE(3689), + [sym_break_expression] = STATE(1492), + [sym_continue_expression] = STATE(1492), + [sym_index_expression] = STATE(1492), + [sym_await_expression] = STATE(1492), + [sym_field_expression] = STATE(1412), + [sym_unsafe_block] = STATE(1492), + [sym_async_block] = STATE(1492), + [sym_gen_block] = STATE(1492), + [sym_try_block] = STATE(1492), + [sym_block] = STATE(1492), + [sym__literal] = STATE(1492), + [sym_string_literal] = STATE(1530), + [sym_raw_string_literal] = STATE(1530), + [sym_boolean_literal] = STATE(1530), + [sym_line_comment] = STATE(265), + [sym_block_comment] = STATE(265), + [sym_identifier] = ACTIONS(344), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(348), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -46398,92 +47544,204 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), + [anon_sym_async] = ACTIONS(356), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(358), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), + [anon_sym_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(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(115), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [anon_sym_static] = ACTIONS(372), + [anon_sym_union] = ACTIONS(360), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [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(257)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1801), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1520), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [sym_line_comment] = STATE(257), - [sym_block_comment] = STATE(257), - [sym_identifier] = ACTIONS(339), + [STATE(266)] = { + [sym_line_comment] = STATE(266), + [sym_block_comment] = STATE(266), + [ts_builtin_sym_end] = ACTIONS(1388), + [sym_identifier] = ACTIONS(1390), + [anon_sym_SEMI] = ACTIONS(1388), + [anon_sym_macro_rules_BANG] = ACTIONS(1388), + [anon_sym_LPAREN] = ACTIONS(1388), + [anon_sym_LBRACK] = ACTIONS(1388), + [anon_sym_LBRACE] = ACTIONS(1388), + [anon_sym_RBRACE] = ACTIONS(1388), + [anon_sym_PLUS] = ACTIONS(1390), + [anon_sym_STAR] = ACTIONS(1390), + [anon_sym_QMARK] = ACTIONS(1388), + [anon_sym_u8] = ACTIONS(1390), + [anon_sym_i8] = ACTIONS(1390), + [anon_sym_u16] = ACTIONS(1390), + [anon_sym_i16] = ACTIONS(1390), + [anon_sym_u32] = ACTIONS(1390), + [anon_sym_i32] = ACTIONS(1390), + [anon_sym_u64] = ACTIONS(1390), + [anon_sym_i64] = ACTIONS(1390), + [anon_sym_u128] = ACTIONS(1390), + [anon_sym_i128] = ACTIONS(1390), + [anon_sym_isize] = ACTIONS(1390), + [anon_sym_usize] = ACTIONS(1390), + [anon_sym_f32] = ACTIONS(1390), + [anon_sym_f64] = ACTIONS(1390), + [anon_sym_bool] = ACTIONS(1390), + [anon_sym_str] = ACTIONS(1390), + [anon_sym_char] = ACTIONS(1390), + [anon_sym_DASH] = ACTIONS(1390), + [anon_sym_SLASH] = ACTIONS(1390), + [anon_sym_PERCENT] = ACTIONS(1390), + [anon_sym_CARET] = ACTIONS(1390), + [anon_sym_BANG] = ACTIONS(1390), + [anon_sym_AMP] = ACTIONS(1390), + [anon_sym_PIPE] = ACTIONS(1390), + [anon_sym_AMP_AMP] = ACTIONS(1388), + [anon_sym_PIPE_PIPE] = ACTIONS(1388), + [anon_sym_LT_LT] = ACTIONS(1390), + [anon_sym_GT_GT] = ACTIONS(1390), + [anon_sym_PLUS_EQ] = ACTIONS(1388), + [anon_sym_DASH_EQ] = ACTIONS(1388), + [anon_sym_STAR_EQ] = ACTIONS(1388), + [anon_sym_SLASH_EQ] = ACTIONS(1388), + [anon_sym_PERCENT_EQ] = ACTIONS(1388), + [anon_sym_CARET_EQ] = ACTIONS(1388), + [anon_sym_AMP_EQ] = ACTIONS(1388), + [anon_sym_PIPE_EQ] = ACTIONS(1388), + [anon_sym_LT_LT_EQ] = ACTIONS(1388), + [anon_sym_GT_GT_EQ] = ACTIONS(1388), + [anon_sym_EQ] = ACTIONS(1390), + [anon_sym_EQ_EQ] = ACTIONS(1388), + [anon_sym_BANG_EQ] = ACTIONS(1388), + [anon_sym_GT] = ACTIONS(1390), + [anon_sym_LT] = ACTIONS(1390), + [anon_sym_GT_EQ] = ACTIONS(1388), + [anon_sym_LT_EQ] = ACTIONS(1388), + [anon_sym_DOT] = ACTIONS(1390), + [anon_sym_DOT_DOT] = ACTIONS(1390), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1388), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1388), + [anon_sym_COLON_COLON] = ACTIONS(1388), + [anon_sym_POUND] = ACTIONS(1388), + [anon_sym_SQUOTE] = ACTIONS(1390), + [anon_sym_as] = ACTIONS(1390), + [anon_sym_async] = ACTIONS(1390), + [anon_sym_break] = ACTIONS(1390), + [anon_sym_const] = ACTIONS(1390), + [anon_sym_continue] = ACTIONS(1390), + [anon_sym_default] = ACTIONS(1390), + [anon_sym_enum] = ACTIONS(1390), + [anon_sym_fn] = ACTIONS(1390), + [anon_sym_for] = ACTIONS(1390), + [anon_sym_gen] = ACTIONS(1390), + [anon_sym_if] = ACTIONS(1390), + [anon_sym_impl] = ACTIONS(1390), + [anon_sym_let] = ACTIONS(1390), + [anon_sym_loop] = ACTIONS(1390), + [anon_sym_match] = ACTIONS(1390), + [anon_sym_mod] = ACTIONS(1390), + [anon_sym_pub] = ACTIONS(1390), + [anon_sym_return] = ACTIONS(1390), + [anon_sym_static] = ACTIONS(1390), + [anon_sym_struct] = ACTIONS(1390), + [anon_sym_trait] = ACTIONS(1390), + [anon_sym_type] = ACTIONS(1390), + [anon_sym_union] = ACTIONS(1390), + [anon_sym_unsafe] = ACTIONS(1390), + [anon_sym_use] = ACTIONS(1390), + [anon_sym_while] = ACTIONS(1390), + [anon_sym_extern] = ACTIONS(1390), + [anon_sym_safe] = ACTIONS(1390), + [anon_sym_else] = ACTIONS(1390), + [anon_sym_yield] = ACTIONS(1390), + [anon_sym_move] = ACTIONS(1390), + [anon_sym_try] = ACTIONS(1390), + [sym_integer_literal] = ACTIONS(1388), + [aux_sym_string_literal_token1] = ACTIONS(1388), + [sym_char_literal] = ACTIONS(1388), + [anon_sym_true] = ACTIONS(1390), + [anon_sym_false] = ACTIONS(1390), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1390), + [sym_super] = ACTIONS(1390), + [sym_crate] = ACTIONS(1390), + [sym_metavariable] = ACTIONS(1388), + [sym__raw_string_literal_start] = ACTIONS(1388), + [sym_float_literal] = ACTIONS(1388), + }, + [STATE(267)] = { + [sym_bracketed_type] = STATE(3752), + [sym_generic_function] = STATE(1492), + [sym_generic_type_with_turbofish] = STATE(3039), + [sym__expression_except_range] = STATE(1409), + [sym__expression] = STATE(1868), + [sym_macro_invocation] = STATE(1529), + [sym_scoped_identifier] = STATE(1540), + [sym_scoped_type_identifier_in_expression_position] = STATE(3335), + [sym_range_expression] = STATE(1505), + [sym_unary_expression] = STATE(1492), + [sym_try_expression] = STATE(1492), + [sym_reference_expression] = STATE(1492), + [sym_binary_expression] = STATE(1492), + [sym_assignment_expression] = STATE(1492), + [sym_compound_assignment_expr] = STATE(1492), + [sym_type_cast_expression] = STATE(1492), + [sym_return_expression] = STATE(1492), + [sym_yield_expression] = STATE(1492), + [sym_call_expression] = STATE(1492), + [sym_array_expression] = STATE(1492), + [sym_parenthesized_expression] = STATE(1492), + [sym_tuple_expression] = STATE(1492), + [sym_unit_expression] = STATE(1492), + [sym_struct_expression] = STATE(1492), + [sym_if_expression] = STATE(1492), + [sym_match_expression] = STATE(1492), + [sym_while_expression] = STATE(1492), + [sym_loop_expression] = STATE(1492), + [sym_for_expression] = STATE(1492), + [sym_const_block] = STATE(1492), + [sym_closure_expression] = STATE(1492), + [sym_closure_parameters] = STATE(229), + [sym_label] = STATE(3689), + [sym_break_expression] = STATE(1492), + [sym_continue_expression] = STATE(1492), + [sym_index_expression] = STATE(1492), + [sym_await_expression] = STATE(1492), + [sym_field_expression] = STATE(1412), + [sym_unsafe_block] = STATE(1492), + [sym_async_block] = STATE(1492), + [sym_gen_block] = STATE(1492), + [sym_try_block] = STATE(1492), + [sym_block] = STATE(1492), + [sym__literal] = STATE(1492), + [sym_string_literal] = STATE(1530), + [sym_raw_string_literal] = STATE(1530), + [sym_boolean_literal] = STATE(1530), + [sym_line_comment] = STATE(267), + [sym_block_comment] = STATE(267), + [sym_identifier] = ACTIONS(344), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(348), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -46510,92 +47768,204 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), + [anon_sym_async] = ACTIONS(356), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(358), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), + [anon_sym_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(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(115), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [anon_sym_static] = ACTIONS(372), + [anon_sym_union] = ACTIONS(360), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [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(258)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1818), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1520), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [sym_line_comment] = STATE(258), - [sym_block_comment] = STATE(258), - [sym_identifier] = ACTIONS(339), + [STATE(268)] = { + [sym_attribute_item] = STATE(422), + [sym_function_modifiers] = STATE(3591), + [sym_removed_trait_bound] = STATE(2069), + [sym_self_parameter] = STATE(3352), + [sym_variadic_parameter] = STATE(3352), + [sym_parameter] = STATE(3352), + [sym_extern_modifier] = STATE(2373), + [sym__type] = STATE(3096), + [sym_bracketed_type] = STATE(3673), + [sym_lifetime] = STATE(3067), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1591), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2022), + [sym_generic_type_with_turbofish] = STATE(3329), + [sym_bounded_type] = STATE(2069), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2552), + [sym_scoped_identifier] = STATE(2299), + [sym_scoped_type_identifier] = STATE(2203), + [sym_const_block] = STATE(2163), + [sym__pattern] = STATE(3292), + [sym_generic_pattern] = STATE(2163), + [sym_tuple_pattern] = STATE(2163), + [sym_slice_pattern] = STATE(2163), + [sym_tuple_struct_pattern] = STATE(2163), + [sym_struct_pattern] = STATE(2163), + [sym_remaining_field_pattern] = STATE(2163), + [sym_mut_pattern] = STATE(2163), + [sym_range_pattern] = STATE(2163), + [sym_ref_pattern] = STATE(2163), + [sym_captured_pattern] = STATE(2163), + [sym_reference_pattern] = STATE(2163), + [sym_or_pattern] = STATE(2163), + [sym__literal_pattern] = STATE(2098), + [sym_negative_literal] = STATE(2095), + [sym_string_literal] = STATE(2095), + [sym_raw_string_literal] = STATE(2095), + [sym_boolean_literal] = STATE(2095), + [sym_line_comment] = STATE(268), + [sym_block_comment] = STATE(268), + [aux_sym_function_modifiers_repeat1] = STATE(2244), + [sym_identifier] = ACTIONS(1306), + [anon_sym_LPAREN] = ACTIONS(1308), + [anon_sym_RPAREN] = ACTIONS(1392), + [anon_sym_LBRACK] = ACTIONS(1238), + [anon_sym_STAR] = ACTIONS(1240), + [anon_sym_QMARK] = ACTIONS(1242), + [anon_sym_u8] = ACTIONS(1312), + [anon_sym_i8] = ACTIONS(1312), + [anon_sym_u16] = ACTIONS(1312), + [anon_sym_i16] = ACTIONS(1312), + [anon_sym_u32] = ACTIONS(1312), + [anon_sym_i32] = ACTIONS(1312), + [anon_sym_u64] = ACTIONS(1312), + [anon_sym_i64] = ACTIONS(1312), + [anon_sym_u128] = ACTIONS(1312), + [anon_sym_i128] = ACTIONS(1312), + [anon_sym_isize] = ACTIONS(1312), + [anon_sym_usize] = ACTIONS(1312), + [anon_sym_f32] = ACTIONS(1312), + [anon_sym_f64] = ACTIONS(1312), + [anon_sym_bool] = ACTIONS(1312), + [anon_sym_str] = ACTIONS(1312), + [anon_sym_char] = ACTIONS(1312), + [anon_sym_DASH] = ACTIONS(1246), + [anon_sym_BANG] = ACTIONS(1248), + [anon_sym_AMP] = ACTIONS(1314), + [anon_sym_PIPE] = ACTIONS(1252), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1364), + [anon_sym_DOT_DOT] = ACTIONS(1256), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1258), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1260), + [anon_sym_COLON_COLON] = ACTIONS(1320), + [anon_sym_POUND] = ACTIONS(1266), + [anon_sym_SQUOTE] = ACTIONS(1268), + [anon_sym_async] = ACTIONS(1270), + [anon_sym_const] = ACTIONS(1272), + [anon_sym_default] = ACTIONS(1322), + [anon_sym_fn] = ACTIONS(1276), + [anon_sym_for] = ACTIONS(1278), + [anon_sym_gen] = ACTIONS(1324), + [anon_sym_impl] = ACTIONS(1282), + [anon_sym_union] = ACTIONS(1324), + [anon_sym_unsafe] = ACTIONS(1270), + [anon_sym_extern] = ACTIONS(1284), + [anon_sym_safe] = ACTIONS(1270), + [anon_sym_ref] = ACTIONS(1286), + [anon_sym_dyn] = ACTIONS(1288), + [sym_mutable_specifier] = ACTIONS(1290), + [sym_integer_literal] = ACTIONS(1292), + [aux_sym_string_literal_token1] = ACTIONS(1294), + [sym_char_literal] = ACTIONS(1292), + [anon_sym_true] = ACTIONS(1296), + [anon_sym_false] = ACTIONS(1296), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1326), + [sym_super] = ACTIONS(1328), + [sym_crate] = ACTIONS(1328), + [sym_metavariable] = ACTIONS(1330), + [sym__raw_string_literal_start] = ACTIONS(1304), + [sym_float_literal] = ACTIONS(1292), + }, + [STATE(269)] = { + [sym_bracketed_type] = STATE(3752), + [sym_generic_function] = STATE(1492), + [sym_generic_type_with_turbofish] = STATE(3039), + [sym__expression_except_range] = STATE(1409), + [sym__expression] = STATE(1720), + [sym_macro_invocation] = STATE(1529), + [sym_scoped_identifier] = STATE(1540), + [sym_scoped_type_identifier_in_expression_position] = STATE(3335), + [sym_range_expression] = STATE(1505), + [sym_unary_expression] = STATE(1492), + [sym_try_expression] = STATE(1492), + [sym_reference_expression] = STATE(1492), + [sym_binary_expression] = STATE(1492), + [sym_assignment_expression] = STATE(1492), + [sym_compound_assignment_expr] = STATE(1492), + [sym_type_cast_expression] = STATE(1492), + [sym_return_expression] = STATE(1492), + [sym_yield_expression] = STATE(1492), + [sym_call_expression] = STATE(1492), + [sym_array_expression] = STATE(1492), + [sym_parenthesized_expression] = STATE(1492), + [sym_tuple_expression] = STATE(1492), + [sym_unit_expression] = STATE(1492), + [sym_struct_expression] = STATE(1492), + [sym_if_expression] = STATE(1492), + [sym_match_expression] = STATE(1492), + [sym_while_expression] = STATE(1492), + [sym_loop_expression] = STATE(1492), + [sym_for_expression] = STATE(1492), + [sym_const_block] = STATE(1492), + [sym_closure_expression] = STATE(1492), + [sym_closure_parameters] = STATE(229), + [sym_label] = STATE(3689), + [sym_break_expression] = STATE(1492), + [sym_continue_expression] = STATE(1492), + [sym_index_expression] = STATE(1492), + [sym_await_expression] = STATE(1492), + [sym_field_expression] = STATE(1412), + [sym_unsafe_block] = STATE(1492), + [sym_async_block] = STATE(1492), + [sym_gen_block] = STATE(1492), + [sym_try_block] = STATE(1492), + [sym_block] = STATE(1492), + [sym__literal] = STATE(1492), + [sym_string_literal] = STATE(1530), + [sym_raw_string_literal] = STATE(1530), + [sym_boolean_literal] = STATE(1530), + [sym_line_comment] = STATE(269), + [sym_block_comment] = STATE(269), + [sym_identifier] = ACTIONS(344), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(348), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -46622,92 +47992,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), + [anon_sym_async] = ACTIONS(356), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(358), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), + [anon_sym_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(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(115), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [anon_sym_static] = ACTIONS(372), + [anon_sym_union] = ACTIONS(360), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [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(259)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1537), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1520), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [sym_line_comment] = STATE(259), - [sym_block_comment] = STATE(259), - [sym_identifier] = ACTIONS(339), + [STATE(270)] = { + [sym_bracketed_type] = STATE(3752), + [sym_generic_function] = STATE(1492), + [sym_generic_type_with_turbofish] = STATE(3039), + [sym__expression_except_range] = STATE(1409), + [sym__expression] = STATE(1939), + [sym_macro_invocation] = STATE(1529), + [sym_scoped_identifier] = STATE(1540), + [sym_scoped_type_identifier_in_expression_position] = STATE(3335), + [sym_range_expression] = STATE(1505), + [sym_unary_expression] = STATE(1492), + [sym_try_expression] = STATE(1492), + [sym_reference_expression] = STATE(1492), + [sym_binary_expression] = STATE(1492), + [sym_assignment_expression] = STATE(1492), + [sym_compound_assignment_expr] = STATE(1492), + [sym_type_cast_expression] = STATE(1492), + [sym_return_expression] = STATE(1492), + [sym_yield_expression] = STATE(1492), + [sym_call_expression] = STATE(1492), + [sym_array_expression] = STATE(1492), + [sym_parenthesized_expression] = STATE(1492), + [sym_tuple_expression] = STATE(1492), + [sym_unit_expression] = STATE(1492), + [sym_struct_expression] = STATE(1492), + [sym_if_expression] = STATE(481), + [sym_match_expression] = STATE(481), + [sym_while_expression] = STATE(481), + [sym_loop_expression] = STATE(481), + [sym_for_expression] = STATE(481), + [sym_const_block] = STATE(481), + [sym_closure_expression] = STATE(1492), + [sym_closure_parameters] = STATE(229), + [sym_label] = STATE(3736), + [sym_break_expression] = STATE(1492), + [sym_continue_expression] = STATE(1492), + [sym_index_expression] = STATE(1492), + [sym_await_expression] = STATE(1492), + [sym_field_expression] = STATE(1412), + [sym_unsafe_block] = STATE(481), + [sym_async_block] = STATE(481), + [sym_gen_block] = STATE(481), + [sym_try_block] = STATE(481), + [sym_block] = STATE(481), + [sym__literal] = STATE(1492), + [sym_string_literal] = STATE(1530), + [sym_raw_string_literal] = STATE(1530), + [sym_boolean_literal] = STATE(1530), + [sym_line_comment] = STATE(270), + [sym_block_comment] = STATE(270), + [sym_identifier] = ACTIONS(344), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(1366), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -46731,207 +48101,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1061), + [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), + [anon_sym_async] = ACTIONS(1368), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(1370), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), + [anon_sym_default] = ACTIONS(360), + [anon_sym_for] = ACTIONS(1372), + [anon_sym_gen] = ACTIONS(1374), + [anon_sym_if] = ACTIONS(1376), + [anon_sym_loop] = ACTIONS(1378), + [anon_sym_match] = ACTIONS(1380), [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(115), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), - }, - [STATE(260)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3056), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1609), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1591), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [sym_line_comment] = STATE(260), - [sym_block_comment] = STATE(260), - [sym_identifier] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(901), - [anon_sym_u8] = ACTIONS(469), - [anon_sym_i8] = ACTIONS(469), - [anon_sym_u16] = ACTIONS(469), - [anon_sym_i16] = ACTIONS(469), - [anon_sym_u32] = ACTIONS(469), - [anon_sym_i32] = ACTIONS(469), - [anon_sym_u64] = ACTIONS(469), - [anon_sym_i64] = ACTIONS(469), - [anon_sym_u128] = ACTIONS(469), - [anon_sym_i128] = ACTIONS(469), - [anon_sym_isize] = ACTIONS(469), - [anon_sym_usize] = ACTIONS(469), - [anon_sym_f32] = ACTIONS(469), - [anon_sym_f64] = ACTIONS(469), - [anon_sym_bool] = ACTIONS(469), - [anon_sym_str] = ACTIONS(469), - [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(901), - [anon_sym_BANG] = ACTIONS(901), - [anon_sym_AMP] = ACTIONS(903), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(905), - [anon_sym_COLON_COLON] = ACTIONS(473), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(477), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(477), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(489), - [sym_super] = ACTIONS(491), - [sym_crate] = ACTIONS(491), - [sym_metavariable] = ACTIONS(493), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [anon_sym_static] = ACTIONS(372), + [anon_sym_union] = ACTIONS(360), + [anon_sym_unsafe] = ACTIONS(1382), + [anon_sym_while] = ACTIONS(1384), + [anon_sym_yield] = ACTIONS(93), + [anon_sym_move] = ACTIONS(95), + [anon_sym_try] = ACTIONS(1386), + [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(261)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1467), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1520), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [sym_line_comment] = STATE(261), - [sym_block_comment] = STATE(261), - [sym_identifier] = ACTIONS(339), + [STATE(271)] = { + [sym_bracketed_type] = STATE(3752), + [sym_generic_function] = STATE(1492), + [sym_generic_type_with_turbofish] = STATE(3039), + [sym__expression_except_range] = STATE(1409), + [sym__expression] = STATE(1921), + [sym_macro_invocation] = STATE(1529), + [sym_scoped_identifier] = STATE(1540), + [sym_scoped_type_identifier_in_expression_position] = STATE(3335), + [sym_range_expression] = STATE(1505), + [sym_unary_expression] = STATE(1492), + [sym_try_expression] = STATE(1492), + [sym_reference_expression] = STATE(1492), + [sym_binary_expression] = STATE(1492), + [sym_assignment_expression] = STATE(1492), + [sym_compound_assignment_expr] = STATE(1492), + [sym_type_cast_expression] = STATE(1492), + [sym_return_expression] = STATE(1492), + [sym_yield_expression] = STATE(1492), + [sym_call_expression] = STATE(1492), + [sym_array_expression] = STATE(1492), + [sym_parenthesized_expression] = STATE(1492), + [sym_tuple_expression] = STATE(1492), + [sym_unit_expression] = STATE(1492), + [sym_struct_expression] = STATE(1492), + [sym_if_expression] = STATE(1492), + [sym_match_expression] = STATE(1492), + [sym_while_expression] = STATE(1492), + [sym_loop_expression] = STATE(1492), + [sym_for_expression] = STATE(1492), + [sym_const_block] = STATE(1492), + [sym_closure_expression] = STATE(1492), + [sym_closure_parameters] = STATE(229), + [sym_label] = STATE(3689), + [sym_break_expression] = STATE(1492), + [sym_continue_expression] = STATE(1492), + [sym_index_expression] = STATE(1492), + [sym_await_expression] = STATE(1492), + [sym_field_expression] = STATE(1412), + [sym_unsafe_block] = STATE(1492), + [sym_async_block] = STATE(1492), + [sym_gen_block] = STATE(1492), + [sym_try_block] = STATE(1492), + [sym_block] = STATE(1492), + [sym__literal] = STATE(1492), + [sym_string_literal] = STATE(1530), + [sym_raw_string_literal] = STATE(1530), + [sym_boolean_literal] = STATE(1530), + [sym_line_comment] = STATE(271), + [sym_block_comment] = STATE(271), + [sym_identifier] = ACTIONS(344), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(348), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -46955,95 +48213,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1061), + [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), + [anon_sym_async] = ACTIONS(356), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(358), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), + [anon_sym_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(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(115), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [anon_sym_static] = ACTIONS(372), + [anon_sym_union] = ACTIONS(360), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [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(262)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1539), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1520), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [sym_line_comment] = STATE(262), - [sym_block_comment] = STATE(262), - [sym_identifier] = ACTIONS(339), + [STATE(272)] = { + [sym_bracketed_type] = STATE(3752), + [sym_generic_function] = STATE(1492), + [sym_generic_type_with_turbofish] = STATE(3039), + [sym__expression_except_range] = STATE(1409), + [sym__expression] = STATE(1947), + [sym_macro_invocation] = STATE(1529), + [sym_scoped_identifier] = STATE(1540), + [sym_scoped_type_identifier_in_expression_position] = STATE(3335), + [sym_range_expression] = STATE(1505), + [sym_unary_expression] = STATE(1492), + [sym_try_expression] = STATE(1492), + [sym_reference_expression] = STATE(1492), + [sym_binary_expression] = STATE(1492), + [sym_assignment_expression] = STATE(1492), + [sym_compound_assignment_expr] = STATE(1492), + [sym_type_cast_expression] = STATE(1492), + [sym_return_expression] = STATE(1492), + [sym_yield_expression] = STATE(1492), + [sym_call_expression] = STATE(1492), + [sym_array_expression] = STATE(1492), + [sym_parenthesized_expression] = STATE(1492), + [sym_tuple_expression] = STATE(1492), + [sym_unit_expression] = STATE(1492), + [sym_struct_expression] = STATE(1492), + [sym_if_expression] = STATE(478), + [sym_match_expression] = STATE(478), + [sym_while_expression] = STATE(478), + [sym_loop_expression] = STATE(478), + [sym_for_expression] = STATE(478), + [sym_const_block] = STATE(478), + [sym_closure_expression] = STATE(1492), + [sym_closure_parameters] = STATE(229), + [sym_label] = STATE(3736), + [sym_break_expression] = STATE(1492), + [sym_continue_expression] = STATE(1492), + [sym_index_expression] = STATE(1492), + [sym_await_expression] = STATE(1492), + [sym_field_expression] = STATE(1412), + [sym_unsafe_block] = STATE(478), + [sym_async_block] = STATE(478), + [sym_gen_block] = STATE(478), + [sym_try_block] = STATE(478), + [sym_block] = STATE(478), + [sym__literal] = STATE(1492), + [sym_string_literal] = STATE(1530), + [sym_raw_string_literal] = STATE(1530), + [sym_boolean_literal] = STATE(1530), + [sym_line_comment] = STATE(272), + [sym_block_comment] = STATE(272), + [sym_identifier] = ACTIONS(344), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(1366), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -47067,95 +48325,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1061), + [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), + [anon_sym_async] = ACTIONS(1368), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(1370), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), + [anon_sym_default] = ACTIONS(360), + [anon_sym_for] = ACTIONS(1372), + [anon_sym_gen] = ACTIONS(1374), + [anon_sym_if] = ACTIONS(1376), + [anon_sym_loop] = ACTIONS(1378), + [anon_sym_match] = ACTIONS(1380), [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(115), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [anon_sym_static] = ACTIONS(372), + [anon_sym_union] = ACTIONS(360), + [anon_sym_unsafe] = ACTIONS(1382), + [anon_sym_while] = ACTIONS(1384), + [anon_sym_yield] = ACTIONS(93), + [anon_sym_move] = ACTIONS(95), + [anon_sym_try] = ACTIONS(1386), + [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(263)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1541), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1520), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [sym_line_comment] = STATE(263), - [sym_block_comment] = STATE(263), - [sym_identifier] = ACTIONS(339), + [STATE(273)] = { + [sym_bracketed_type] = STATE(3752), + [sym_generic_function] = STATE(1492), + [sym_generic_type_with_turbofish] = STATE(3039), + [sym__expression_except_range] = STATE(1409), + [sym__expression] = STATE(1954), + [sym_macro_invocation] = STATE(1529), + [sym_scoped_identifier] = STATE(1540), + [sym_scoped_type_identifier_in_expression_position] = STATE(3335), + [sym_range_expression] = STATE(1505), + [sym_unary_expression] = STATE(1492), + [sym_try_expression] = STATE(1492), + [sym_reference_expression] = STATE(1492), + [sym_binary_expression] = STATE(1492), + [sym_assignment_expression] = STATE(1492), + [sym_compound_assignment_expr] = STATE(1492), + [sym_type_cast_expression] = STATE(1492), + [sym_return_expression] = STATE(1492), + [sym_yield_expression] = STATE(1492), + [sym_call_expression] = STATE(1492), + [sym_array_expression] = STATE(1492), + [sym_parenthesized_expression] = STATE(1492), + [sym_tuple_expression] = STATE(1492), + [sym_unit_expression] = STATE(1492), + [sym_struct_expression] = STATE(1492), + [sym_if_expression] = STATE(1492), + [sym_match_expression] = STATE(1492), + [sym_while_expression] = STATE(1492), + [sym_loop_expression] = STATE(1492), + [sym_for_expression] = STATE(1492), + [sym_const_block] = STATE(1492), + [sym_closure_expression] = STATE(1492), + [sym_closure_parameters] = STATE(229), + [sym_label] = STATE(3689), + [sym_break_expression] = STATE(1492), + [sym_continue_expression] = STATE(1492), + [sym_index_expression] = STATE(1492), + [sym_await_expression] = STATE(1492), + [sym_field_expression] = STATE(1412), + [sym_unsafe_block] = STATE(1492), + [sym_async_block] = STATE(1492), + [sym_gen_block] = STATE(1492), + [sym_try_block] = STATE(1492), + [sym_block] = STATE(1492), + [sym__literal] = STATE(1492), + [sym_string_literal] = STATE(1530), + [sym_raw_string_literal] = STATE(1530), + [sym_boolean_literal] = STATE(1530), + [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(343), + [anon_sym_LBRACE] = ACTIONS(348), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -47179,95 +48437,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1061), + [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), + [anon_sym_async] = ACTIONS(356), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(358), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), + [anon_sym_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(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(115), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [anon_sym_static] = ACTIONS(372), + [anon_sym_union] = ACTIONS(360), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [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(264)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1542), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1520), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [sym_line_comment] = STATE(264), - [sym_block_comment] = STATE(264), - [sym_identifier] = ACTIONS(339), + [STATE(274)] = { + [sym_bracketed_type] = STATE(3752), + [sym_generic_function] = STATE(1492), + [sym_generic_type_with_turbofish] = STATE(3039), + [sym__expression_except_range] = STATE(1409), + [sym__expression] = STATE(1919), + [sym_macro_invocation] = STATE(1529), + [sym_scoped_identifier] = STATE(1540), + [sym_scoped_type_identifier_in_expression_position] = STATE(3335), + [sym_range_expression] = STATE(1505), + [sym_unary_expression] = STATE(1492), + [sym_try_expression] = STATE(1492), + [sym_reference_expression] = STATE(1492), + [sym_binary_expression] = STATE(1492), + [sym_assignment_expression] = STATE(1492), + [sym_compound_assignment_expr] = STATE(1492), + [sym_type_cast_expression] = STATE(1492), + [sym_return_expression] = STATE(1492), + [sym_yield_expression] = STATE(1492), + [sym_call_expression] = STATE(1492), + [sym_array_expression] = STATE(1492), + [sym_parenthesized_expression] = STATE(1492), + [sym_tuple_expression] = STATE(1492), + [sym_unit_expression] = STATE(1492), + [sym_struct_expression] = STATE(1492), + [sym_if_expression] = STATE(1492), + [sym_match_expression] = STATE(1492), + [sym_while_expression] = STATE(1492), + [sym_loop_expression] = STATE(1492), + [sym_for_expression] = STATE(1492), + [sym_const_block] = STATE(1492), + [sym_closure_expression] = STATE(1492), + [sym_closure_parameters] = STATE(229), + [sym_label] = STATE(3689), + [sym_break_expression] = STATE(1492), + [sym_continue_expression] = STATE(1492), + [sym_index_expression] = STATE(1492), + [sym_await_expression] = STATE(1492), + [sym_field_expression] = STATE(1412), + [sym_unsafe_block] = STATE(1492), + [sym_async_block] = STATE(1492), + [sym_gen_block] = STATE(1492), + [sym_try_block] = STATE(1492), + [sym_block] = STATE(1492), + [sym__literal] = STATE(1492), + [sym_string_literal] = STATE(1530), + [sym_raw_string_literal] = STATE(1530), + [sym_boolean_literal] = STATE(1530), + [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(343), + [anon_sym_LBRACE] = ACTIONS(348), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -47291,95 +48549,207 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1061), + [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), + [anon_sym_async] = ACTIONS(356), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(358), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), + [anon_sym_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(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(115), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [anon_sym_static] = ACTIONS(372), + [anon_sym_union] = ACTIONS(360), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [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(265)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1543), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1520), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), + [STATE(275)] = { + [sym_bracketed_type] = STATE(3650), + [sym_generic_function] = STATE(1711), + [sym_generic_type_with_turbofish] = STATE(3091), + [sym__expression_except_range] = STATE(1658), + [sym__expression] = STATE(1722), + [sym_macro_invocation] = STATE(1717), + [sym_scoped_identifier] = STATE(1623), + [sym_scoped_type_identifier_in_expression_position] = STATE(3337), + [sym_range_expression] = STATE(1715), + [sym_unary_expression] = STATE(1711), + [sym_try_expression] = STATE(1711), + [sym_reference_expression] = STATE(1711), + [sym_binary_expression] = STATE(1711), + [sym_assignment_expression] = STATE(1711), + [sym_compound_assignment_expr] = STATE(1711), + [sym_type_cast_expression] = STATE(1711), + [sym_return_expression] = STATE(1711), + [sym_yield_expression] = STATE(1711), + [sym_call_expression] = STATE(1711), + [sym_array_expression] = STATE(1711), + [sym_parenthesized_expression] = STATE(1711), + [sym_tuple_expression] = STATE(1711), + [sym_unit_expression] = STATE(1711), + [sym_struct_expression] = STATE(1711), + [sym_if_expression] = STATE(1711), + [sym_match_expression] = STATE(1711), + [sym_while_expression] = STATE(1711), + [sym_loop_expression] = STATE(1711), + [sym_for_expression] = STATE(1711), + [sym_const_block] = STATE(1711), + [sym_closure_expression] = STATE(1711), [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [sym_line_comment] = STATE(265), - [sym_block_comment] = STATE(265), - [sym_identifier] = ACTIONS(339), + [sym_label] = STATE(3742), + [sym_break_expression] = STATE(1711), + [sym_continue_expression] = STATE(1711), + [sym_index_expression] = STATE(1711), + [sym_await_expression] = STATE(1711), + [sym_field_expression] = STATE(1690), + [sym_unsafe_block] = STATE(1711), + [sym_async_block] = STATE(1711), + [sym_gen_block] = STATE(1711), + [sym_try_block] = STATE(1711), + [sym_block] = STATE(1711), + [sym__literal] = STATE(1711), + [sym_string_literal] = STATE(1831), + [sym_raw_string_literal] = STATE(1831), + [sym_boolean_literal] = STATE(1831), + [sym_line_comment] = STATE(275), + [sym_block_comment] = STATE(275), + [sym_identifier] = ACTIONS(410), + [anon_sym_LPAREN] = ACTIONS(498), + [anon_sym_LBRACK] = ACTIONS(500), + [anon_sym_LBRACE] = ACTIONS(412), + [anon_sym_STAR] = ACTIONS(990), + [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(990), + [anon_sym_BANG] = ACTIONS(990), + [anon_sym_AMP] = ACTIONS(992), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1176), + [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_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(276)] = { + [sym_bracketed_type] = STATE(3752), + [sym_generic_function] = STATE(1492), + [sym_generic_type_with_turbofish] = STATE(3039), + [sym__expression_except_range] = STATE(1409), + [sym__expression] = STATE(1706), + [sym_macro_invocation] = STATE(1529), + [sym_scoped_identifier] = STATE(1540), + [sym_scoped_type_identifier_in_expression_position] = STATE(3335), + [sym_range_expression] = STATE(1505), + [sym_unary_expression] = STATE(1492), + [sym_try_expression] = STATE(1492), + [sym_reference_expression] = STATE(1492), + [sym_binary_expression] = STATE(1492), + [sym_assignment_expression] = STATE(1492), + [sym_compound_assignment_expr] = STATE(1492), + [sym_type_cast_expression] = STATE(1492), + [sym_return_expression] = STATE(1492), + [sym_yield_expression] = STATE(1492), + [sym_call_expression] = STATE(1492), + [sym_array_expression] = STATE(1492), + [sym_parenthesized_expression] = STATE(1492), + [sym_tuple_expression] = STATE(1492), + [sym_unit_expression] = STATE(1492), + [sym_struct_expression] = STATE(1492), + [sym_if_expression] = STATE(1492), + [sym_match_expression] = STATE(1492), + [sym_while_expression] = STATE(1492), + [sym_loop_expression] = STATE(1492), + [sym_for_expression] = STATE(1492), + [sym_const_block] = STATE(1492), + [sym_closure_expression] = STATE(1492), + [sym_closure_parameters] = STATE(229), + [sym_label] = STATE(3689), + [sym_break_expression] = STATE(1492), + [sym_continue_expression] = STATE(1492), + [sym_index_expression] = STATE(1492), + [sym_await_expression] = STATE(1492), + [sym_field_expression] = STATE(1412), + [sym_unsafe_block] = STATE(1492), + [sym_async_block] = STATE(1492), + [sym_gen_block] = STATE(1492), + [sym_try_block] = STATE(1492), + [sym_block] = STATE(1492), + [sym__literal] = STATE(1492), + [sym_string_literal] = STATE(1530), + [sym_raw_string_literal] = STATE(1530), + [sym_boolean_literal] = STATE(1530), + [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(343), + [anon_sym_LBRACE] = ACTIONS(348), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -47403,95 +48773,1439 @@ 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(1061), + [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), + [anon_sym_async] = ACTIONS(356), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(358), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), + [anon_sym_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(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(115), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [anon_sym_static] = ACTIONS(372), + [anon_sym_union] = ACTIONS(360), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [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(266)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1821), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1520), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [sym_line_comment] = STATE(266), - [sym_block_comment] = STATE(266), - [sym_identifier] = ACTIONS(339), + [STATE(277)] = { + [sym_bracketed_type] = STATE(3752), + [sym_generic_function] = STATE(1492), + [sym_generic_type_with_turbofish] = STATE(3085), + [sym__expression_except_range] = STATE(1409), + [sym__expression] = STATE(1523), + [sym_macro_invocation] = STATE(1529), + [sym_scoped_identifier] = STATE(1604), + [sym_scoped_type_identifier_in_expression_position] = STATE(3335), + [sym_range_expression] = STATE(1505), + [sym_unary_expression] = STATE(1492), + [sym_try_expression] = STATE(1492), + [sym_reference_expression] = STATE(1492), + [sym_binary_expression] = STATE(1492), + [sym_assignment_expression] = STATE(1492), + [sym_compound_assignment_expr] = STATE(1492), + [sym_type_cast_expression] = STATE(1492), + [sym_return_expression] = STATE(1492), + [sym_yield_expression] = STATE(1492), + [sym_call_expression] = STATE(1492), + [sym_array_expression] = STATE(1492), + [sym_parenthesized_expression] = STATE(1492), + [sym_tuple_expression] = STATE(1492), + [sym_unit_expression] = STATE(1492), + [sym_struct_expression] = STATE(1492), + [sym_if_expression] = STATE(1492), + [sym_match_expression] = STATE(1492), + [sym_while_expression] = STATE(1492), + [sym_loop_expression] = STATE(1492), + [sym_for_expression] = STATE(1492), + [sym_const_block] = STATE(1492), + [sym_closure_expression] = STATE(1492), + [sym_closure_parameters] = STATE(221), + [sym_label] = STATE(3689), + [sym_break_expression] = STATE(1492), + [sym_continue_expression] = STATE(1492), + [sym_index_expression] = STATE(1492), + [sym_await_expression] = STATE(1492), + [sym_field_expression] = STATE(1412), + [sym_unsafe_block] = STATE(1492), + [sym_async_block] = STATE(1492), + [sym_gen_block] = STATE(1492), + [sym_try_block] = STATE(1492), + [sym_block] = STATE(1492), + [sym__literal] = STATE(1492), + [sym_string_literal] = STATE(1530), + [sym_raw_string_literal] = STATE(1530), + [sym_boolean_literal] = STATE(1530), + [sym_line_comment] = STATE(277), + [sym_block_comment] = STATE(277), + [sym_identifier] = ACTIONS(470), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(348), + [anon_sym_STAR] = ACTIONS(978), + [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(978), + [anon_sym_BANG] = ACTIONS(978), + [anon_sym_AMP] = ACTIONS(980), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1170), + [anon_sym_COLON_COLON] = ACTIONS(476), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(356), + [anon_sym_break] = ACTIONS(510), + [anon_sym_const] = ACTIONS(358), + [anon_sym_continue] = ACTIONS(512), + [anon_sym_default] = ACTIONS(480), + [anon_sym_for] = ACTIONS(362), + [anon_sym_gen] = ACTIONS(514), + [anon_sym_if] = ACTIONS(366), + [anon_sym_loop] = ACTIONS(368), + [anon_sym_match] = ACTIONS(370), + [anon_sym_return] = ACTIONS(516), + [anon_sym_static] = ACTIONS(518), + [anon_sym_union] = ACTIONS(480), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [anon_sym_yield] = ACTIONS(520), + [anon_sym_move] = ACTIONS(522), + [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(492), + [sym_super] = ACTIONS(494), + [sym_crate] = ACTIONS(494), + [sym_metavariable] = ACTIONS(496), + [sym__raw_string_literal_start] = ACTIONS(119), + [sym_float_literal] = ACTIONS(99), + }, + [STATE(278)] = { + [sym_bracketed_type] = STATE(3752), + [sym_generic_function] = STATE(1492), + [sym_generic_type_with_turbofish] = STATE(3085), + [sym__expression_except_range] = STATE(1409), + [sym__expression] = STATE(1686), + [sym_macro_invocation] = STATE(1529), + [sym_scoped_identifier] = STATE(1604), + [sym_scoped_type_identifier_in_expression_position] = STATE(3335), + [sym_range_expression] = STATE(1505), + [sym_unary_expression] = STATE(1492), + [sym_try_expression] = STATE(1492), + [sym_reference_expression] = STATE(1492), + [sym_binary_expression] = STATE(1492), + [sym_assignment_expression] = STATE(1492), + [sym_compound_assignment_expr] = STATE(1492), + [sym_type_cast_expression] = STATE(1492), + [sym_return_expression] = STATE(1492), + [sym_yield_expression] = STATE(1492), + [sym_call_expression] = STATE(1492), + [sym_array_expression] = STATE(1492), + [sym_parenthesized_expression] = STATE(1492), + [sym_tuple_expression] = STATE(1492), + [sym_unit_expression] = STATE(1492), + [sym_struct_expression] = STATE(1492), + [sym_if_expression] = STATE(1492), + [sym_match_expression] = STATE(1492), + [sym_while_expression] = STATE(1492), + [sym_loop_expression] = STATE(1492), + [sym_for_expression] = STATE(1492), + [sym_const_block] = STATE(1492), + [sym_closure_expression] = STATE(1492), + [sym_closure_parameters] = STATE(221), + [sym_label] = STATE(3689), + [sym_break_expression] = STATE(1492), + [sym_continue_expression] = STATE(1492), + [sym_index_expression] = STATE(1492), + [sym_await_expression] = STATE(1492), + [sym_field_expression] = STATE(1412), + [sym_unsafe_block] = STATE(1492), + [sym_async_block] = STATE(1492), + [sym_gen_block] = STATE(1492), + [sym_try_block] = STATE(1492), + [sym_block] = STATE(1492), + [sym__literal] = STATE(1492), + [sym_string_literal] = STATE(1530), + [sym_raw_string_literal] = STATE(1530), + [sym_boolean_literal] = STATE(1530), + [sym_line_comment] = STATE(278), + [sym_block_comment] = STATE(278), + [sym_identifier] = ACTIONS(470), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(348), + [anon_sym_STAR] = ACTIONS(978), + [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(978), + [anon_sym_BANG] = ACTIONS(978), + [anon_sym_AMP] = ACTIONS(980), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1170), + [anon_sym_COLON_COLON] = ACTIONS(476), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(356), + [anon_sym_break] = ACTIONS(510), + [anon_sym_const] = ACTIONS(358), + [anon_sym_continue] = ACTIONS(512), + [anon_sym_default] = ACTIONS(480), + [anon_sym_for] = ACTIONS(362), + [anon_sym_gen] = ACTIONS(514), + [anon_sym_if] = ACTIONS(366), + [anon_sym_loop] = ACTIONS(368), + [anon_sym_match] = ACTIONS(370), + [anon_sym_return] = ACTIONS(516), + [anon_sym_static] = ACTIONS(518), + [anon_sym_union] = ACTIONS(480), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [anon_sym_yield] = ACTIONS(520), + [anon_sym_move] = ACTIONS(522), + [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(492), + [sym_super] = ACTIONS(494), + [sym_crate] = ACTIONS(494), + [sym_metavariable] = ACTIONS(496), + [sym__raw_string_literal_start] = ACTIONS(119), + [sym_float_literal] = ACTIONS(99), + }, + [STATE(279)] = { + [sym_bracketed_type] = STATE(3752), + [sym_generic_function] = STATE(1492), + [sym_generic_type_with_turbofish] = STATE(3085), + [sym__expression_except_range] = STATE(1409), + [sym__expression] = STATE(1517), + [sym_macro_invocation] = STATE(1529), + [sym_scoped_identifier] = STATE(1604), + [sym_scoped_type_identifier_in_expression_position] = STATE(3335), + [sym_range_expression] = STATE(1505), + [sym_unary_expression] = STATE(1492), + [sym_try_expression] = STATE(1492), + [sym_reference_expression] = STATE(1492), + [sym_binary_expression] = STATE(1492), + [sym_assignment_expression] = STATE(1492), + [sym_compound_assignment_expr] = STATE(1492), + [sym_type_cast_expression] = STATE(1492), + [sym_return_expression] = STATE(1492), + [sym_yield_expression] = STATE(1492), + [sym_call_expression] = STATE(1492), + [sym_array_expression] = STATE(1492), + [sym_parenthesized_expression] = STATE(1492), + [sym_tuple_expression] = STATE(1492), + [sym_unit_expression] = STATE(1492), + [sym_struct_expression] = STATE(1492), + [sym_if_expression] = STATE(1492), + [sym_match_expression] = STATE(1492), + [sym_while_expression] = STATE(1492), + [sym_loop_expression] = STATE(1492), + [sym_for_expression] = STATE(1492), + [sym_const_block] = STATE(1492), + [sym_closure_expression] = STATE(1492), + [sym_closure_parameters] = STATE(221), + [sym_label] = STATE(3689), + [sym_break_expression] = STATE(1492), + [sym_continue_expression] = STATE(1492), + [sym_index_expression] = STATE(1492), + [sym_await_expression] = STATE(1492), + [sym_field_expression] = STATE(1412), + [sym_unsafe_block] = STATE(1492), + [sym_async_block] = STATE(1492), + [sym_gen_block] = STATE(1492), + [sym_try_block] = STATE(1492), + [sym_block] = STATE(1492), + [sym__literal] = STATE(1492), + [sym_string_literal] = STATE(1530), + [sym_raw_string_literal] = STATE(1530), + [sym_boolean_literal] = STATE(1530), + [sym_line_comment] = STATE(279), + [sym_block_comment] = STATE(279), + [sym_identifier] = ACTIONS(470), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(348), + [anon_sym_STAR] = ACTIONS(978), + [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(978), + [anon_sym_BANG] = ACTIONS(978), + [anon_sym_AMP] = ACTIONS(980), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1170), + [anon_sym_COLON_COLON] = ACTIONS(476), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(356), + [anon_sym_break] = ACTIONS(510), + [anon_sym_const] = ACTIONS(358), + [anon_sym_continue] = ACTIONS(512), + [anon_sym_default] = ACTIONS(480), + [anon_sym_for] = ACTIONS(362), + [anon_sym_gen] = ACTIONS(514), + [anon_sym_if] = ACTIONS(366), + [anon_sym_loop] = ACTIONS(368), + [anon_sym_match] = ACTIONS(370), + [anon_sym_return] = ACTIONS(516), + [anon_sym_static] = ACTIONS(518), + [anon_sym_union] = ACTIONS(480), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [anon_sym_yield] = ACTIONS(520), + [anon_sym_move] = ACTIONS(522), + [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(492), + [sym_super] = ACTIONS(494), + [sym_crate] = ACTIONS(494), + [sym_metavariable] = ACTIONS(496), + [sym__raw_string_literal_start] = ACTIONS(119), + [sym_float_literal] = ACTIONS(99), + }, + [STATE(280)] = { + [sym_bracketed_type] = STATE(3752), + [sym_generic_function] = STATE(1492), + [sym_generic_type_with_turbofish] = STATE(3085), + [sym__expression_except_range] = STATE(1409), + [sym__expression] = STATE(1687), + [sym_macro_invocation] = STATE(1529), + [sym_scoped_identifier] = STATE(1604), + [sym_scoped_type_identifier_in_expression_position] = STATE(3335), + [sym_range_expression] = STATE(1505), + [sym_unary_expression] = STATE(1492), + [sym_try_expression] = STATE(1492), + [sym_reference_expression] = STATE(1492), + [sym_binary_expression] = STATE(1492), + [sym_assignment_expression] = STATE(1492), + [sym_compound_assignment_expr] = STATE(1492), + [sym_type_cast_expression] = STATE(1492), + [sym_return_expression] = STATE(1492), + [sym_yield_expression] = STATE(1492), + [sym_call_expression] = STATE(1492), + [sym_array_expression] = STATE(1492), + [sym_parenthesized_expression] = STATE(1492), + [sym_tuple_expression] = STATE(1492), + [sym_unit_expression] = STATE(1492), + [sym_struct_expression] = STATE(1492), + [sym_if_expression] = STATE(1492), + [sym_match_expression] = STATE(1492), + [sym_while_expression] = STATE(1492), + [sym_loop_expression] = STATE(1492), + [sym_for_expression] = STATE(1492), + [sym_const_block] = STATE(1492), + [sym_closure_expression] = STATE(1492), + [sym_closure_parameters] = STATE(221), + [sym_label] = STATE(3689), + [sym_break_expression] = STATE(1492), + [sym_continue_expression] = STATE(1492), + [sym_index_expression] = STATE(1492), + [sym_await_expression] = STATE(1492), + [sym_field_expression] = STATE(1412), + [sym_unsafe_block] = STATE(1492), + [sym_async_block] = STATE(1492), + [sym_gen_block] = STATE(1492), + [sym_try_block] = STATE(1492), + [sym_block] = STATE(1492), + [sym__literal] = STATE(1492), + [sym_string_literal] = STATE(1530), + [sym_raw_string_literal] = STATE(1530), + [sym_boolean_literal] = STATE(1530), + [sym_line_comment] = STATE(280), + [sym_block_comment] = STATE(280), + [sym_identifier] = ACTIONS(470), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(348), + [anon_sym_STAR] = ACTIONS(978), + [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(978), + [anon_sym_BANG] = ACTIONS(978), + [anon_sym_AMP] = ACTIONS(980), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1170), + [anon_sym_COLON_COLON] = ACTIONS(476), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(356), + [anon_sym_break] = ACTIONS(510), + [anon_sym_const] = ACTIONS(358), + [anon_sym_continue] = ACTIONS(512), + [anon_sym_default] = ACTIONS(480), + [anon_sym_for] = ACTIONS(362), + [anon_sym_gen] = ACTIONS(514), + [anon_sym_if] = ACTIONS(366), + [anon_sym_loop] = ACTIONS(368), + [anon_sym_match] = ACTIONS(370), + [anon_sym_return] = ACTIONS(516), + [anon_sym_static] = ACTIONS(518), + [anon_sym_union] = ACTIONS(480), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [anon_sym_yield] = ACTIONS(520), + [anon_sym_move] = ACTIONS(522), + [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(492), + [sym_super] = ACTIONS(494), + [sym_crate] = ACTIONS(494), + [sym_metavariable] = ACTIONS(496), + [sym__raw_string_literal_start] = ACTIONS(119), + [sym_float_literal] = ACTIONS(99), + }, + [STATE(281)] = { + [sym_bracketed_type] = STATE(3752), + [sym_generic_function] = STATE(1492), + [sym_generic_type_with_turbofish] = STATE(3085), + [sym__expression_except_range] = STATE(1409), + [sym__expression] = STATE(1688), + [sym_macro_invocation] = STATE(1529), + [sym_scoped_identifier] = STATE(1604), + [sym_scoped_type_identifier_in_expression_position] = STATE(3335), + [sym_range_expression] = STATE(1505), + [sym_unary_expression] = STATE(1492), + [sym_try_expression] = STATE(1492), + [sym_reference_expression] = STATE(1492), + [sym_binary_expression] = STATE(1492), + [sym_assignment_expression] = STATE(1492), + [sym_compound_assignment_expr] = STATE(1492), + [sym_type_cast_expression] = STATE(1492), + [sym_return_expression] = STATE(1492), + [sym_yield_expression] = STATE(1492), + [sym_call_expression] = STATE(1492), + [sym_array_expression] = STATE(1492), + [sym_parenthesized_expression] = STATE(1492), + [sym_tuple_expression] = STATE(1492), + [sym_unit_expression] = STATE(1492), + [sym_struct_expression] = STATE(1492), + [sym_if_expression] = STATE(1492), + [sym_match_expression] = STATE(1492), + [sym_while_expression] = STATE(1492), + [sym_loop_expression] = STATE(1492), + [sym_for_expression] = STATE(1492), + [sym_const_block] = STATE(1492), + [sym_closure_expression] = STATE(1492), + [sym_closure_parameters] = STATE(221), + [sym_label] = STATE(3689), + [sym_break_expression] = STATE(1492), + [sym_continue_expression] = STATE(1492), + [sym_index_expression] = STATE(1492), + [sym_await_expression] = STATE(1492), + [sym_field_expression] = STATE(1412), + [sym_unsafe_block] = STATE(1492), + [sym_async_block] = STATE(1492), + [sym_gen_block] = STATE(1492), + [sym_try_block] = STATE(1492), + [sym_block] = STATE(1492), + [sym__literal] = STATE(1492), + [sym_string_literal] = STATE(1530), + [sym_raw_string_literal] = STATE(1530), + [sym_boolean_literal] = STATE(1530), + [sym_line_comment] = STATE(281), + [sym_block_comment] = STATE(281), + [sym_identifier] = ACTIONS(470), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(348), + [anon_sym_STAR] = ACTIONS(978), + [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(978), + [anon_sym_BANG] = ACTIONS(978), + [anon_sym_AMP] = ACTIONS(980), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1170), + [anon_sym_COLON_COLON] = ACTIONS(476), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(356), + [anon_sym_break] = ACTIONS(510), + [anon_sym_const] = ACTIONS(358), + [anon_sym_continue] = ACTIONS(512), + [anon_sym_default] = ACTIONS(480), + [anon_sym_for] = ACTIONS(362), + [anon_sym_gen] = ACTIONS(514), + [anon_sym_if] = ACTIONS(366), + [anon_sym_loop] = ACTIONS(368), + [anon_sym_match] = ACTIONS(370), + [anon_sym_return] = ACTIONS(516), + [anon_sym_static] = ACTIONS(518), + [anon_sym_union] = ACTIONS(480), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [anon_sym_yield] = ACTIONS(520), + [anon_sym_move] = ACTIONS(522), + [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(492), + [sym_super] = ACTIONS(494), + [sym_crate] = ACTIONS(494), + [sym_metavariable] = ACTIONS(496), + [sym__raw_string_literal_start] = ACTIONS(119), + [sym_float_literal] = ACTIONS(99), + }, + [STATE(282)] = { + [sym_bracketed_type] = STATE(3752), + [sym_generic_function] = STATE(1492), + [sym_generic_type_with_turbofish] = STATE(3085), + [sym__expression_except_range] = STATE(1409), + [sym__expression] = STATE(1691), + [sym_macro_invocation] = STATE(1529), + [sym_scoped_identifier] = STATE(1604), + [sym_scoped_type_identifier_in_expression_position] = STATE(3335), + [sym_range_expression] = STATE(1505), + [sym_unary_expression] = STATE(1492), + [sym_try_expression] = STATE(1492), + [sym_reference_expression] = STATE(1492), + [sym_binary_expression] = STATE(1492), + [sym_assignment_expression] = STATE(1492), + [sym_compound_assignment_expr] = STATE(1492), + [sym_type_cast_expression] = STATE(1492), + [sym_return_expression] = STATE(1492), + [sym_yield_expression] = STATE(1492), + [sym_call_expression] = STATE(1492), + [sym_array_expression] = STATE(1492), + [sym_parenthesized_expression] = STATE(1492), + [sym_tuple_expression] = STATE(1492), + [sym_unit_expression] = STATE(1492), + [sym_struct_expression] = STATE(1492), + [sym_if_expression] = STATE(1492), + [sym_match_expression] = STATE(1492), + [sym_while_expression] = STATE(1492), + [sym_loop_expression] = STATE(1492), + [sym_for_expression] = STATE(1492), + [sym_const_block] = STATE(1492), + [sym_closure_expression] = STATE(1492), + [sym_closure_parameters] = STATE(221), + [sym_label] = STATE(3689), + [sym_break_expression] = STATE(1492), + [sym_continue_expression] = STATE(1492), + [sym_index_expression] = STATE(1492), + [sym_await_expression] = STATE(1492), + [sym_field_expression] = STATE(1412), + [sym_unsafe_block] = STATE(1492), + [sym_async_block] = STATE(1492), + [sym_gen_block] = STATE(1492), + [sym_try_block] = STATE(1492), + [sym_block] = STATE(1492), + [sym__literal] = STATE(1492), + [sym_string_literal] = STATE(1530), + [sym_raw_string_literal] = STATE(1530), + [sym_boolean_literal] = STATE(1530), + [sym_line_comment] = STATE(282), + [sym_block_comment] = STATE(282), + [sym_identifier] = ACTIONS(470), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(348), + [anon_sym_STAR] = ACTIONS(978), + [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(978), + [anon_sym_BANG] = ACTIONS(978), + [anon_sym_AMP] = ACTIONS(980), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1170), + [anon_sym_COLON_COLON] = ACTIONS(476), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(356), + [anon_sym_break] = ACTIONS(510), + [anon_sym_const] = ACTIONS(358), + [anon_sym_continue] = ACTIONS(512), + [anon_sym_default] = ACTIONS(480), + [anon_sym_for] = ACTIONS(362), + [anon_sym_gen] = ACTIONS(514), + [anon_sym_if] = ACTIONS(366), + [anon_sym_loop] = ACTIONS(368), + [anon_sym_match] = ACTIONS(370), + [anon_sym_return] = ACTIONS(516), + [anon_sym_static] = ACTIONS(518), + [anon_sym_union] = ACTIONS(480), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [anon_sym_yield] = ACTIONS(520), + [anon_sym_move] = ACTIONS(522), + [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(492), + [sym_super] = ACTIONS(494), + [sym_crate] = ACTIONS(494), + [sym_metavariable] = ACTIONS(496), + [sym__raw_string_literal_start] = ACTIONS(119), + [sym_float_literal] = ACTIONS(99), + }, + [STATE(283)] = { + [sym_bracketed_type] = STATE(3752), + [sym_generic_function] = STATE(1492), + [sym_generic_type_with_turbofish] = STATE(3085), + [sym__expression_except_range] = STATE(1409), + [sym__expression] = STATE(1746), + [sym_macro_invocation] = STATE(1529), + [sym_scoped_identifier] = STATE(1604), + [sym_scoped_type_identifier_in_expression_position] = STATE(3335), + [sym_range_expression] = STATE(1505), + [sym_unary_expression] = STATE(1492), + [sym_try_expression] = STATE(1492), + [sym_reference_expression] = STATE(1492), + [sym_binary_expression] = STATE(1492), + [sym_assignment_expression] = STATE(1492), + [sym_compound_assignment_expr] = STATE(1492), + [sym_type_cast_expression] = STATE(1492), + [sym_return_expression] = STATE(1492), + [sym_yield_expression] = STATE(1492), + [sym_call_expression] = STATE(1492), + [sym_array_expression] = STATE(1492), + [sym_parenthesized_expression] = STATE(1492), + [sym_tuple_expression] = STATE(1492), + [sym_unit_expression] = STATE(1492), + [sym_struct_expression] = STATE(1492), + [sym_if_expression] = STATE(1492), + [sym_match_expression] = STATE(1492), + [sym_while_expression] = STATE(1492), + [sym_loop_expression] = STATE(1492), + [sym_for_expression] = STATE(1492), + [sym_const_block] = STATE(1492), + [sym_closure_expression] = STATE(1492), + [sym_closure_parameters] = STATE(235), + [sym_label] = STATE(3689), + [sym_break_expression] = STATE(1492), + [sym_continue_expression] = STATE(1492), + [sym_index_expression] = STATE(1492), + [sym_await_expression] = STATE(1492), + [sym_field_expression] = STATE(1412), + [sym_unsafe_block] = STATE(1492), + [sym_async_block] = STATE(1492), + [sym_gen_block] = STATE(1492), + [sym_try_block] = STATE(1492), + [sym_block] = STATE(1492), + [sym__literal] = STATE(1492), + [sym_string_literal] = STATE(1530), + [sym_raw_string_literal] = STATE(1530), + [sym_boolean_literal] = STATE(1530), + [sym_line_comment] = STATE(283), + [sym_block_comment] = STATE(283), + [sym_identifier] = ACTIONS(470), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(348), + [anon_sym_STAR] = ACTIONS(1196), + [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(1196), + [anon_sym_BANG] = ACTIONS(1196), + [anon_sym_AMP] = ACTIONS(1198), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1200), + [anon_sym_COLON_COLON] = ACTIONS(476), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(356), + [anon_sym_break] = ACTIONS(478), + [anon_sym_const] = ACTIONS(358), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(480), + [anon_sym_for] = ACTIONS(362), + [anon_sym_gen] = ACTIONS(482), + [anon_sym_if] = ACTIONS(366), + [anon_sym_loop] = ACTIONS(368), + [anon_sym_match] = ACTIONS(370), + [anon_sym_return] = ACTIONS(484), + [anon_sym_static] = ACTIONS(486), + [anon_sym_union] = ACTIONS(480), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [anon_sym_yield] = ACTIONS(488), + [anon_sym_move] = ACTIONS(490), + [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(492), + [sym_super] = ACTIONS(494), + [sym_crate] = ACTIONS(494), + [sym_metavariable] = ACTIONS(496), + [sym__raw_string_literal_start] = ACTIONS(119), + [sym_float_literal] = ACTIONS(99), + }, + [STATE(284)] = { + [sym_bracketed_type] = STATE(3752), + [sym_generic_function] = STATE(1492), + [sym_generic_type_with_turbofish] = STATE(3085), + [sym__expression_except_range] = STATE(1409), + [sym__expression] = STATE(1682), + [sym_macro_invocation] = STATE(1529), + [sym_scoped_identifier] = STATE(1604), + [sym_scoped_type_identifier_in_expression_position] = STATE(3335), + [sym_range_expression] = STATE(1505), + [sym_unary_expression] = STATE(1492), + [sym_try_expression] = STATE(1492), + [sym_reference_expression] = STATE(1492), + [sym_binary_expression] = STATE(1492), + [sym_assignment_expression] = STATE(1492), + [sym_compound_assignment_expr] = STATE(1492), + [sym_type_cast_expression] = STATE(1492), + [sym_return_expression] = STATE(1492), + [sym_yield_expression] = STATE(1492), + [sym_call_expression] = STATE(1492), + [sym_array_expression] = STATE(1492), + [sym_parenthesized_expression] = STATE(1492), + [sym_tuple_expression] = STATE(1492), + [sym_unit_expression] = STATE(1492), + [sym_struct_expression] = STATE(1492), + [sym_if_expression] = STATE(1492), + [sym_match_expression] = STATE(1492), + [sym_while_expression] = STATE(1492), + [sym_loop_expression] = STATE(1492), + [sym_for_expression] = STATE(1492), + [sym_const_block] = STATE(1492), + [sym_closure_expression] = STATE(1492), + [sym_closure_parameters] = STATE(221), + [sym_label] = STATE(3689), + [sym_break_expression] = STATE(1492), + [sym_continue_expression] = STATE(1492), + [sym_index_expression] = STATE(1492), + [sym_await_expression] = STATE(1492), + [sym_field_expression] = STATE(1412), + [sym_unsafe_block] = STATE(1492), + [sym_async_block] = STATE(1492), + [sym_gen_block] = STATE(1492), + [sym_try_block] = STATE(1492), + [sym_block] = STATE(1492), + [sym__literal] = STATE(1492), + [sym_string_literal] = STATE(1530), + [sym_raw_string_literal] = STATE(1530), + [sym_boolean_literal] = STATE(1530), + [sym_line_comment] = STATE(284), + [sym_block_comment] = STATE(284), + [sym_identifier] = ACTIONS(470), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(348), + [anon_sym_STAR] = ACTIONS(978), + [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(978), + [anon_sym_BANG] = ACTIONS(978), + [anon_sym_AMP] = ACTIONS(980), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1170), + [anon_sym_COLON_COLON] = ACTIONS(476), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(356), + [anon_sym_break] = ACTIONS(510), + [anon_sym_const] = ACTIONS(358), + [anon_sym_continue] = ACTIONS(512), + [anon_sym_default] = ACTIONS(480), + [anon_sym_for] = ACTIONS(362), + [anon_sym_gen] = ACTIONS(514), + [anon_sym_if] = ACTIONS(366), + [anon_sym_loop] = ACTIONS(368), + [anon_sym_match] = ACTIONS(370), + [anon_sym_return] = ACTIONS(516), + [anon_sym_static] = ACTIONS(518), + [anon_sym_union] = ACTIONS(480), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [anon_sym_yield] = ACTIONS(520), + [anon_sym_move] = ACTIONS(522), + [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(492), + [sym_super] = ACTIONS(494), + [sym_crate] = ACTIONS(494), + [sym_metavariable] = ACTIONS(496), + [sym__raw_string_literal_start] = ACTIONS(119), + [sym_float_literal] = ACTIONS(99), + }, + [STATE(285)] = { + [sym_bracketed_type] = STATE(3752), + [sym_generic_function] = STATE(1492), + [sym_generic_type_with_turbofish] = STATE(3085), + [sym__expression_except_range] = STATE(1409), + [sym__expression] = STATE(1659), + [sym_macro_invocation] = STATE(1529), + [sym_scoped_identifier] = STATE(1604), + [sym_scoped_type_identifier_in_expression_position] = STATE(3335), + [sym_range_expression] = STATE(1505), + [sym_unary_expression] = STATE(1492), + [sym_try_expression] = STATE(1492), + [sym_reference_expression] = STATE(1492), + [sym_binary_expression] = STATE(1492), + [sym_assignment_expression] = STATE(1492), + [sym_compound_assignment_expr] = STATE(1492), + [sym_type_cast_expression] = STATE(1492), + [sym_return_expression] = STATE(1492), + [sym_yield_expression] = STATE(1492), + [sym_call_expression] = STATE(1492), + [sym_array_expression] = STATE(1492), + [sym_parenthesized_expression] = STATE(1492), + [sym_tuple_expression] = STATE(1492), + [sym_unit_expression] = STATE(1492), + [sym_struct_expression] = STATE(1492), + [sym_if_expression] = STATE(1492), + [sym_match_expression] = STATE(1492), + [sym_while_expression] = STATE(1492), + [sym_loop_expression] = STATE(1492), + [sym_for_expression] = STATE(1492), + [sym_const_block] = STATE(1492), + [sym_closure_expression] = STATE(1492), + [sym_closure_parameters] = STATE(221), + [sym_label] = STATE(3689), + [sym_break_expression] = STATE(1492), + [sym_continue_expression] = STATE(1492), + [sym_index_expression] = STATE(1492), + [sym_await_expression] = STATE(1492), + [sym_field_expression] = STATE(1412), + [sym_unsafe_block] = STATE(1492), + [sym_async_block] = STATE(1492), + [sym_gen_block] = STATE(1492), + [sym_try_block] = STATE(1492), + [sym_block] = STATE(1492), + [sym__literal] = STATE(1492), + [sym_string_literal] = STATE(1530), + [sym_raw_string_literal] = STATE(1530), + [sym_boolean_literal] = STATE(1530), + [sym_line_comment] = STATE(285), + [sym_block_comment] = STATE(285), + [sym_identifier] = ACTIONS(470), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(348), + [anon_sym_STAR] = ACTIONS(978), + [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(978), + [anon_sym_BANG] = ACTIONS(978), + [anon_sym_AMP] = ACTIONS(980), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1170), + [anon_sym_COLON_COLON] = ACTIONS(476), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(356), + [anon_sym_break] = ACTIONS(510), + [anon_sym_const] = ACTIONS(358), + [anon_sym_continue] = ACTIONS(512), + [anon_sym_default] = ACTIONS(480), + [anon_sym_for] = ACTIONS(362), + [anon_sym_gen] = ACTIONS(514), + [anon_sym_if] = ACTIONS(366), + [anon_sym_loop] = ACTIONS(368), + [anon_sym_match] = ACTIONS(370), + [anon_sym_return] = ACTIONS(516), + [anon_sym_static] = ACTIONS(518), + [anon_sym_union] = ACTIONS(480), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [anon_sym_yield] = ACTIONS(520), + [anon_sym_move] = ACTIONS(522), + [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(492), + [sym_super] = ACTIONS(494), + [sym_crate] = ACTIONS(494), + [sym_metavariable] = ACTIONS(496), + [sym__raw_string_literal_start] = ACTIONS(119), + [sym_float_literal] = ACTIONS(99), + }, + [STATE(286)] = { + [sym_bracketed_type] = STATE(3752), + [sym_generic_function] = STATE(1492), + [sym_generic_type_with_turbofish] = STATE(3085), + [sym__expression_except_range] = STATE(1409), + [sym__expression] = STATE(1650), + [sym_macro_invocation] = STATE(1529), + [sym_scoped_identifier] = STATE(1604), + [sym_scoped_type_identifier_in_expression_position] = STATE(3335), + [sym_range_expression] = STATE(1505), + [sym_unary_expression] = STATE(1492), + [sym_try_expression] = STATE(1492), + [sym_reference_expression] = STATE(1492), + [sym_binary_expression] = STATE(1492), + [sym_assignment_expression] = STATE(1492), + [sym_compound_assignment_expr] = STATE(1492), + [sym_type_cast_expression] = STATE(1492), + [sym_return_expression] = STATE(1492), + [sym_yield_expression] = STATE(1492), + [sym_call_expression] = STATE(1492), + [sym_array_expression] = STATE(1492), + [sym_parenthesized_expression] = STATE(1492), + [sym_tuple_expression] = STATE(1492), + [sym_unit_expression] = STATE(1492), + [sym_struct_expression] = STATE(1492), + [sym_if_expression] = STATE(1492), + [sym_match_expression] = STATE(1492), + [sym_while_expression] = STATE(1492), + [sym_loop_expression] = STATE(1492), + [sym_for_expression] = STATE(1492), + [sym_const_block] = STATE(1492), + [sym_closure_expression] = STATE(1492), + [sym_closure_parameters] = STATE(221), + [sym_label] = STATE(3689), + [sym_break_expression] = STATE(1492), + [sym_continue_expression] = STATE(1492), + [sym_index_expression] = STATE(1492), + [sym_await_expression] = STATE(1492), + [sym_field_expression] = STATE(1412), + [sym_unsafe_block] = STATE(1492), + [sym_async_block] = STATE(1492), + [sym_gen_block] = STATE(1492), + [sym_try_block] = STATE(1492), + [sym_block] = STATE(1492), + [sym__literal] = STATE(1492), + [sym_string_literal] = STATE(1530), + [sym_raw_string_literal] = STATE(1530), + [sym_boolean_literal] = STATE(1530), + [sym_line_comment] = STATE(286), + [sym_block_comment] = STATE(286), + [sym_identifier] = ACTIONS(470), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(348), + [anon_sym_STAR] = ACTIONS(978), + [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(978), + [anon_sym_BANG] = ACTIONS(978), + [anon_sym_AMP] = ACTIONS(980), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1170), + [anon_sym_COLON_COLON] = ACTIONS(476), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(356), + [anon_sym_break] = ACTIONS(510), + [anon_sym_const] = ACTIONS(358), + [anon_sym_continue] = ACTIONS(512), + [anon_sym_default] = ACTIONS(480), + [anon_sym_for] = ACTIONS(362), + [anon_sym_gen] = ACTIONS(514), + [anon_sym_if] = ACTIONS(366), + [anon_sym_loop] = ACTIONS(368), + [anon_sym_match] = ACTIONS(370), + [anon_sym_return] = ACTIONS(516), + [anon_sym_static] = ACTIONS(518), + [anon_sym_union] = ACTIONS(480), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [anon_sym_yield] = ACTIONS(520), + [anon_sym_move] = ACTIONS(522), + [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(492), + [sym_super] = ACTIONS(494), + [sym_crate] = ACTIONS(494), + [sym_metavariable] = ACTIONS(496), + [sym__raw_string_literal_start] = ACTIONS(119), + [sym_float_literal] = ACTIONS(99), + }, + [STATE(287)] = { + [sym_bracketed_type] = STATE(3752), + [sym_generic_function] = STATE(1492), + [sym_generic_type_with_turbofish] = STATE(3085), + [sym__expression_except_range] = STATE(1409), + [sym__expression] = STATE(1660), + [sym_macro_invocation] = STATE(1529), + [sym_scoped_identifier] = STATE(1604), + [sym_scoped_type_identifier_in_expression_position] = STATE(3335), + [sym_range_expression] = STATE(1505), + [sym_unary_expression] = STATE(1492), + [sym_try_expression] = STATE(1492), + [sym_reference_expression] = STATE(1492), + [sym_binary_expression] = STATE(1492), + [sym_assignment_expression] = STATE(1492), + [sym_compound_assignment_expr] = STATE(1492), + [sym_type_cast_expression] = STATE(1492), + [sym_return_expression] = STATE(1492), + [sym_yield_expression] = STATE(1492), + [sym_call_expression] = STATE(1492), + [sym_array_expression] = STATE(1492), + [sym_parenthesized_expression] = STATE(1492), + [sym_tuple_expression] = STATE(1492), + [sym_unit_expression] = STATE(1492), + [sym_struct_expression] = STATE(1492), + [sym_if_expression] = STATE(1492), + [sym_match_expression] = STATE(1492), + [sym_while_expression] = STATE(1492), + [sym_loop_expression] = STATE(1492), + [sym_for_expression] = STATE(1492), + [sym_const_block] = STATE(1492), + [sym_closure_expression] = STATE(1492), + [sym_closure_parameters] = STATE(221), + [sym_label] = STATE(3689), + [sym_break_expression] = STATE(1492), + [sym_continue_expression] = STATE(1492), + [sym_index_expression] = STATE(1492), + [sym_await_expression] = STATE(1492), + [sym_field_expression] = STATE(1412), + [sym_unsafe_block] = STATE(1492), + [sym_async_block] = STATE(1492), + [sym_gen_block] = STATE(1492), + [sym_try_block] = STATE(1492), + [sym_block] = STATE(1492), + [sym__literal] = STATE(1492), + [sym_string_literal] = STATE(1530), + [sym_raw_string_literal] = STATE(1530), + [sym_boolean_literal] = STATE(1530), + [sym_line_comment] = STATE(287), + [sym_block_comment] = STATE(287), + [sym_identifier] = ACTIONS(470), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(348), + [anon_sym_STAR] = ACTIONS(978), + [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(978), + [anon_sym_BANG] = ACTIONS(978), + [anon_sym_AMP] = ACTIONS(980), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1170), + [anon_sym_COLON_COLON] = ACTIONS(476), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(356), + [anon_sym_break] = ACTIONS(510), + [anon_sym_const] = ACTIONS(358), + [anon_sym_continue] = ACTIONS(512), + [anon_sym_default] = ACTIONS(480), + [anon_sym_for] = ACTIONS(362), + [anon_sym_gen] = ACTIONS(514), + [anon_sym_if] = ACTIONS(366), + [anon_sym_loop] = ACTIONS(368), + [anon_sym_match] = ACTIONS(370), + [anon_sym_return] = ACTIONS(516), + [anon_sym_static] = ACTIONS(518), + [anon_sym_union] = ACTIONS(480), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [anon_sym_yield] = ACTIONS(520), + [anon_sym_move] = ACTIONS(522), + [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(492), + [sym_super] = ACTIONS(494), + [sym_crate] = ACTIONS(494), + [sym_metavariable] = ACTIONS(496), + [sym__raw_string_literal_start] = ACTIONS(119), + [sym_float_literal] = ACTIONS(99), + }, + [STATE(288)] = { + [sym_bracketed_type] = STATE(3752), + [sym_generic_function] = STATE(1492), + [sym_generic_type_with_turbofish] = STATE(3085), + [sym__expression_except_range] = STATE(1409), + [sym__expression] = STATE(1668), + [sym_macro_invocation] = STATE(1529), + [sym_scoped_identifier] = STATE(1604), + [sym_scoped_type_identifier_in_expression_position] = STATE(3335), + [sym_range_expression] = STATE(1505), + [sym_unary_expression] = STATE(1492), + [sym_try_expression] = STATE(1492), + [sym_reference_expression] = STATE(1492), + [sym_binary_expression] = STATE(1492), + [sym_assignment_expression] = STATE(1492), + [sym_compound_assignment_expr] = STATE(1492), + [sym_type_cast_expression] = STATE(1492), + [sym_return_expression] = STATE(1492), + [sym_yield_expression] = STATE(1492), + [sym_call_expression] = STATE(1492), + [sym_array_expression] = STATE(1492), + [sym_parenthesized_expression] = STATE(1492), + [sym_tuple_expression] = STATE(1492), + [sym_unit_expression] = STATE(1492), + [sym_struct_expression] = STATE(1492), + [sym_if_expression] = STATE(1492), + [sym_match_expression] = STATE(1492), + [sym_while_expression] = STATE(1492), + [sym_loop_expression] = STATE(1492), + [sym_for_expression] = STATE(1492), + [sym_const_block] = STATE(1492), + [sym_closure_expression] = STATE(1492), + [sym_closure_parameters] = STATE(221), + [sym_label] = STATE(3689), + [sym_break_expression] = STATE(1492), + [sym_continue_expression] = STATE(1492), + [sym_index_expression] = STATE(1492), + [sym_await_expression] = STATE(1492), + [sym_field_expression] = STATE(1412), + [sym_unsafe_block] = STATE(1492), + [sym_async_block] = STATE(1492), + [sym_gen_block] = STATE(1492), + [sym_try_block] = STATE(1492), + [sym_block] = STATE(1492), + [sym__literal] = STATE(1492), + [sym_string_literal] = STATE(1530), + [sym_raw_string_literal] = STATE(1530), + [sym_boolean_literal] = STATE(1530), + [sym_line_comment] = STATE(288), + [sym_block_comment] = STATE(288), + [sym_identifier] = ACTIONS(470), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(348), + [anon_sym_STAR] = ACTIONS(978), + [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(978), + [anon_sym_BANG] = ACTIONS(978), + [anon_sym_AMP] = ACTIONS(980), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1170), + [anon_sym_COLON_COLON] = ACTIONS(476), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(356), + [anon_sym_break] = ACTIONS(510), + [anon_sym_const] = ACTIONS(358), + [anon_sym_continue] = ACTIONS(512), + [anon_sym_default] = ACTIONS(480), + [anon_sym_for] = ACTIONS(362), + [anon_sym_gen] = ACTIONS(514), + [anon_sym_if] = ACTIONS(366), + [anon_sym_loop] = ACTIONS(368), + [anon_sym_match] = ACTIONS(370), + [anon_sym_return] = ACTIONS(516), + [anon_sym_static] = ACTIONS(518), + [anon_sym_union] = ACTIONS(480), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [anon_sym_yield] = ACTIONS(520), + [anon_sym_move] = ACTIONS(522), + [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(492), + [sym_super] = ACTIONS(494), + [sym_crate] = ACTIONS(494), + [sym_metavariable] = ACTIONS(496), + [sym__raw_string_literal_start] = ACTIONS(119), + [sym_float_literal] = ACTIONS(99), + }, + [STATE(289)] = { + [sym_bracketed_type] = STATE(3752), + [sym_generic_function] = STATE(1492), + [sym_generic_type_with_turbofish] = STATE(3039), + [sym__expression_except_range] = STATE(1409), + [sym__expression] = STATE(1547), + [sym_macro_invocation] = STATE(1529), + [sym_scoped_identifier] = STATE(1540), + [sym_scoped_type_identifier_in_expression_position] = STATE(3335), + [sym_range_expression] = STATE(1505), + [sym_unary_expression] = STATE(1492), + [sym_try_expression] = STATE(1492), + [sym_reference_expression] = STATE(1492), + [sym_binary_expression] = STATE(1492), + [sym_assignment_expression] = STATE(1492), + [sym_compound_assignment_expr] = STATE(1492), + [sym_type_cast_expression] = STATE(1492), + [sym_return_expression] = STATE(1492), + [sym_yield_expression] = STATE(1492), + [sym_call_expression] = STATE(1492), + [sym_array_expression] = STATE(1492), + [sym_parenthesized_expression] = STATE(1492), + [sym_tuple_expression] = STATE(1492), + [sym_unit_expression] = STATE(1492), + [sym_struct_expression] = STATE(1492), + [sym_if_expression] = STATE(1492), + [sym_match_expression] = STATE(1492), + [sym_while_expression] = STATE(1492), + [sym_loop_expression] = STATE(1492), + [sym_for_expression] = STATE(1492), + [sym_const_block] = STATE(1492), + [sym_closure_expression] = STATE(1492), + [sym_closure_parameters] = STATE(229), + [sym_label] = STATE(3689), + [sym_break_expression] = STATE(1492), + [sym_continue_expression] = STATE(1492), + [sym_index_expression] = STATE(1492), + [sym_await_expression] = STATE(1492), + [sym_field_expression] = STATE(1412), + [sym_unsafe_block] = STATE(1492), + [sym_async_block] = STATE(1492), + [sym_gen_block] = STATE(1492), + [sym_try_block] = STATE(1492), + [sym_block] = STATE(1492), + [sym__literal] = STATE(1492), + [sym_string_literal] = STATE(1530), + [sym_raw_string_literal] = STATE(1530), + [sym_boolean_literal] = STATE(1530), + [sym_line_comment] = STATE(289), + [sym_block_comment] = STATE(289), + [sym_identifier] = ACTIONS(344), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(348), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -47515,95 +50229,431 @@ 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(1190), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), + [anon_sym_async] = ACTIONS(356), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(358), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), + [anon_sym_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(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(115), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [anon_sym_static] = ACTIONS(372), + [anon_sym_union] = ACTIONS(360), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [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(267)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1823), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1520), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), + [STATE(290)] = { + [sym_bracketed_type] = STATE(3752), + [sym_generic_function] = STATE(1492), + [sym_generic_type_with_turbofish] = STATE(3085), + [sym__expression_except_range] = STATE(1409), + [sym__expression] = STATE(1444), + [sym_macro_invocation] = STATE(1529), + [sym_scoped_identifier] = STATE(1604), + [sym_scoped_type_identifier_in_expression_position] = STATE(3335), + [sym_range_expression] = STATE(1505), + [sym_unary_expression] = STATE(1492), + [sym_try_expression] = STATE(1492), + [sym_reference_expression] = STATE(1492), + [sym_binary_expression] = STATE(1492), + [sym_assignment_expression] = STATE(1492), + [sym_compound_assignment_expr] = STATE(1492), + [sym_type_cast_expression] = STATE(1492), + [sym_return_expression] = STATE(1492), + [sym_yield_expression] = STATE(1492), + [sym_call_expression] = STATE(1492), + [sym_array_expression] = STATE(1492), + [sym_parenthesized_expression] = STATE(1492), + [sym_tuple_expression] = STATE(1492), + [sym_unit_expression] = STATE(1492), + [sym_struct_expression] = STATE(1492), + [sym_if_expression] = STATE(1492), + [sym_match_expression] = STATE(1492), + [sym_while_expression] = STATE(1492), + [sym_loop_expression] = STATE(1492), + [sym_for_expression] = STATE(1492), + [sym_const_block] = STATE(1492), + [sym_closure_expression] = STATE(1492), + [sym_closure_parameters] = STATE(221), + [sym_label] = STATE(3689), + [sym_break_expression] = STATE(1492), + [sym_continue_expression] = STATE(1492), + [sym_index_expression] = STATE(1492), + [sym_await_expression] = STATE(1492), + [sym_field_expression] = STATE(1412), + [sym_unsafe_block] = STATE(1492), + [sym_async_block] = STATE(1492), + [sym_gen_block] = STATE(1492), + [sym_try_block] = STATE(1492), + [sym_block] = STATE(1492), + [sym__literal] = STATE(1492), + [sym_string_literal] = STATE(1530), + [sym_raw_string_literal] = STATE(1530), + [sym_boolean_literal] = STATE(1530), + [sym_line_comment] = STATE(290), + [sym_block_comment] = STATE(290), + [sym_identifier] = ACTIONS(470), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(348), + [anon_sym_STAR] = ACTIONS(978), + [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(978), + [anon_sym_BANG] = ACTIONS(978), + [anon_sym_AMP] = ACTIONS(980), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1170), + [anon_sym_COLON_COLON] = ACTIONS(476), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(356), + [anon_sym_break] = ACTIONS(510), + [anon_sym_const] = ACTIONS(358), + [anon_sym_continue] = ACTIONS(512), + [anon_sym_default] = ACTIONS(480), + [anon_sym_for] = ACTIONS(362), + [anon_sym_gen] = ACTIONS(514), + [anon_sym_if] = ACTIONS(366), + [anon_sym_loop] = ACTIONS(368), + [anon_sym_match] = ACTIONS(370), + [anon_sym_return] = ACTIONS(516), + [anon_sym_static] = ACTIONS(518), + [anon_sym_union] = ACTIONS(480), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [anon_sym_yield] = ACTIONS(520), + [anon_sym_move] = ACTIONS(522), + [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(492), + [sym_super] = ACTIONS(494), + [sym_crate] = ACTIONS(494), + [sym_metavariable] = ACTIONS(496), + [sym__raw_string_literal_start] = ACTIONS(119), + [sym_float_literal] = ACTIONS(99), + }, + [STATE(291)] = { + [sym_bracketed_type] = STATE(3752), + [sym_generic_function] = STATE(1492), + [sym_generic_type_with_turbofish] = STATE(3085), + [sym__expression_except_range] = STATE(1409), + [sym__expression] = STATE(1786), + [sym_macro_invocation] = STATE(1529), + [sym_scoped_identifier] = STATE(1604), + [sym_scoped_type_identifier_in_expression_position] = STATE(3335), + [sym_range_expression] = STATE(1505), + [sym_unary_expression] = STATE(1492), + [sym_try_expression] = STATE(1492), + [sym_reference_expression] = STATE(1492), + [sym_binary_expression] = STATE(1492), + [sym_assignment_expression] = STATE(1492), + [sym_compound_assignment_expr] = STATE(1492), + [sym_type_cast_expression] = STATE(1492), + [sym_return_expression] = STATE(1492), + [sym_yield_expression] = STATE(1492), + [sym_call_expression] = STATE(1492), + [sym_array_expression] = STATE(1492), + [sym_parenthesized_expression] = STATE(1492), + [sym_tuple_expression] = STATE(1492), + [sym_unit_expression] = STATE(1492), + [sym_struct_expression] = STATE(1492), + [sym_if_expression] = STATE(1492), + [sym_match_expression] = STATE(1492), + [sym_while_expression] = STATE(1492), + [sym_loop_expression] = STATE(1492), + [sym_for_expression] = STATE(1492), + [sym_const_block] = STATE(1492), + [sym_closure_expression] = STATE(1492), + [sym_closure_parameters] = STATE(235), + [sym_label] = STATE(3689), + [sym_break_expression] = STATE(1492), + [sym_continue_expression] = STATE(1492), + [sym_index_expression] = STATE(1492), + [sym_await_expression] = STATE(1492), + [sym_field_expression] = STATE(1412), + [sym_unsafe_block] = STATE(1492), + [sym_async_block] = STATE(1492), + [sym_gen_block] = STATE(1492), + [sym_try_block] = STATE(1492), + [sym_block] = STATE(1492), + [sym__literal] = STATE(1492), + [sym_string_literal] = STATE(1530), + [sym_raw_string_literal] = STATE(1530), + [sym_boolean_literal] = STATE(1530), + [sym_line_comment] = STATE(291), + [sym_block_comment] = STATE(291), + [sym_identifier] = ACTIONS(470), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(348), + [anon_sym_STAR] = ACTIONS(1196), + [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(1196), + [anon_sym_BANG] = ACTIONS(1196), + [anon_sym_AMP] = ACTIONS(1198), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1394), + [anon_sym_COLON_COLON] = ACTIONS(476), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(356), + [anon_sym_break] = ACTIONS(478), + [anon_sym_const] = ACTIONS(358), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(480), + [anon_sym_for] = ACTIONS(362), + [anon_sym_gen] = ACTIONS(482), + [anon_sym_if] = ACTIONS(366), + [anon_sym_loop] = ACTIONS(368), + [anon_sym_match] = ACTIONS(370), + [anon_sym_return] = ACTIONS(484), + [anon_sym_static] = ACTIONS(486), + [anon_sym_union] = ACTIONS(480), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [anon_sym_yield] = ACTIONS(488), + [anon_sym_move] = ACTIONS(490), + [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(492), + [sym_super] = ACTIONS(494), + [sym_crate] = ACTIONS(494), + [sym_metavariable] = ACTIONS(496), + [sym__raw_string_literal_start] = ACTIONS(119), + [sym_float_literal] = ACTIONS(99), + }, + [STATE(292)] = { + [sym_bracketed_type] = STATE(3650), + [sym_generic_function] = STATE(1711), + [sym_generic_type_with_turbofish] = STATE(3091), + [sym__expression_except_range] = STATE(1658), + [sym__expression] = STATE(1923), + [sym_macro_invocation] = STATE(1717), + [sym_scoped_identifier] = STATE(1623), + [sym_scoped_type_identifier_in_expression_position] = STATE(3337), + [sym_range_expression] = STATE(1715), + [sym_unary_expression] = STATE(1711), + [sym_try_expression] = STATE(1711), + [sym_reference_expression] = STATE(1711), + [sym_binary_expression] = STATE(1711), + [sym_assignment_expression] = STATE(1711), + [sym_compound_assignment_expr] = STATE(1711), + [sym_type_cast_expression] = STATE(1711), + [sym_return_expression] = STATE(1711), + [sym_yield_expression] = STATE(1711), + [sym_call_expression] = STATE(1711), + [sym_array_expression] = STATE(1711), + [sym_parenthesized_expression] = STATE(1711), + [sym_tuple_expression] = STATE(1711), + [sym_unit_expression] = STATE(1711), + [sym_struct_expression] = STATE(1711), + [sym_if_expression] = STATE(1711), + [sym_match_expression] = STATE(1711), + [sym_while_expression] = STATE(1711), + [sym_loop_expression] = STATE(1711), + [sym_for_expression] = STATE(1711), + [sym_const_block] = STATE(1711), + [sym_closure_expression] = STATE(1711), [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [sym_line_comment] = STATE(267), - [sym_block_comment] = STATE(267), - [sym_identifier] = ACTIONS(339), + [sym_label] = STATE(3742), + [sym_break_expression] = STATE(1711), + [sym_continue_expression] = STATE(1711), + [sym_index_expression] = STATE(1711), + [sym_await_expression] = STATE(1711), + [sym_field_expression] = STATE(1690), + [sym_unsafe_block] = STATE(1711), + [sym_async_block] = STATE(1711), + [sym_gen_block] = STATE(1711), + [sym_try_block] = STATE(1711), + [sym_block] = STATE(1711), + [sym__literal] = STATE(1711), + [sym_string_literal] = STATE(1831), + [sym_raw_string_literal] = STATE(1831), + [sym_boolean_literal] = STATE(1831), + [sym_line_comment] = STATE(292), + [sym_block_comment] = STATE(292), + [sym_identifier] = ACTIONS(410), + [anon_sym_LPAREN] = ACTIONS(498), + [anon_sym_LBRACK] = ACTIONS(500), + [anon_sym_LBRACE] = ACTIONS(412), + [anon_sym_STAR] = ACTIONS(990), + [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(990), + [anon_sym_BANG] = ACTIONS(990), + [anon_sym_AMP] = ACTIONS(992), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(994), + [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_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(293)] = { + [sym_bracketed_type] = STATE(3752), + [sym_generic_function] = STATE(1492), + [sym_generic_type_with_turbofish] = STATE(3039), + [sym__expression_except_range] = STATE(1409), + [sym__expression] = STATE(1920), + [sym_macro_invocation] = STATE(1529), + [sym_scoped_identifier] = STATE(1540), + [sym_scoped_type_identifier_in_expression_position] = STATE(3335), + [sym_range_expression] = STATE(1505), + [sym_unary_expression] = STATE(1492), + [sym_try_expression] = STATE(1492), + [sym_reference_expression] = STATE(1492), + [sym_binary_expression] = STATE(1492), + [sym_assignment_expression] = STATE(1492), + [sym_compound_assignment_expr] = STATE(1492), + [sym_type_cast_expression] = STATE(1492), + [sym_return_expression] = STATE(1492), + [sym_yield_expression] = STATE(1492), + [sym_call_expression] = STATE(1492), + [sym_array_expression] = STATE(1492), + [sym_parenthesized_expression] = STATE(1492), + [sym_tuple_expression] = STATE(1492), + [sym_unit_expression] = STATE(1492), + [sym_struct_expression] = STATE(1492), + [sym_if_expression] = STATE(1492), + [sym_match_expression] = STATE(1492), + [sym_while_expression] = STATE(1492), + [sym_loop_expression] = STATE(1492), + [sym_for_expression] = STATE(1492), + [sym_const_block] = STATE(1492), + [sym_closure_expression] = STATE(1492), + [sym_closure_parameters] = STATE(229), + [sym_label] = STATE(3689), + [sym_break_expression] = STATE(1492), + [sym_continue_expression] = STATE(1492), + [sym_index_expression] = STATE(1492), + [sym_await_expression] = STATE(1492), + [sym_field_expression] = STATE(1412), + [sym_unsafe_block] = STATE(1492), + [sym_async_block] = STATE(1492), + [sym_gen_block] = STATE(1492), + [sym_try_block] = STATE(1492), + [sym_block] = STATE(1492), + [sym__literal] = STATE(1492), + [sym_string_literal] = STATE(1530), + [sym_raw_string_literal] = STATE(1530), + [sym_boolean_literal] = STATE(1530), + [sym_line_comment] = STATE(293), + [sym_block_comment] = STATE(293), + [sym_identifier] = ACTIONS(344), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(348), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -47630,92 +50680,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), + [anon_sym_async] = ACTIONS(356), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(358), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), + [anon_sym_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(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(115), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [anon_sym_static] = ACTIONS(372), + [anon_sym_union] = ACTIONS(360), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [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(268)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1701), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1520), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [sym_line_comment] = STATE(268), - [sym_block_comment] = STATE(268), - [sym_identifier] = ACTIONS(339), + [STATE(294)] = { + [sym_bracketed_type] = STATE(3752), + [sym_generic_function] = STATE(1492), + [sym_generic_type_with_turbofish] = STATE(3039), + [sym__expression_except_range] = STATE(1409), + [sym__expression] = STATE(1936), + [sym_macro_invocation] = STATE(1529), + [sym_scoped_identifier] = STATE(1540), + [sym_scoped_type_identifier_in_expression_position] = STATE(3335), + [sym_range_expression] = STATE(1505), + [sym_unary_expression] = STATE(1492), + [sym_try_expression] = STATE(1492), + [sym_reference_expression] = STATE(1492), + [sym_binary_expression] = STATE(1492), + [sym_assignment_expression] = STATE(1492), + [sym_compound_assignment_expr] = STATE(1492), + [sym_type_cast_expression] = STATE(1492), + [sym_return_expression] = STATE(1492), + [sym_yield_expression] = STATE(1492), + [sym_call_expression] = STATE(1492), + [sym_array_expression] = STATE(1492), + [sym_parenthesized_expression] = STATE(1492), + [sym_tuple_expression] = STATE(1492), + [sym_unit_expression] = STATE(1492), + [sym_struct_expression] = STATE(1492), + [sym_if_expression] = STATE(1492), + [sym_match_expression] = STATE(1492), + [sym_while_expression] = STATE(1492), + [sym_loop_expression] = STATE(1492), + [sym_for_expression] = STATE(1492), + [sym_const_block] = STATE(1492), + [sym_closure_expression] = STATE(1492), + [sym_closure_parameters] = STATE(229), + [sym_label] = STATE(3689), + [sym_break_expression] = STATE(1492), + [sym_continue_expression] = STATE(1492), + [sym_index_expression] = STATE(1492), + [sym_await_expression] = STATE(1492), + [sym_field_expression] = STATE(1412), + [sym_unsafe_block] = STATE(1492), + [sym_async_block] = STATE(1492), + [sym_gen_block] = STATE(1492), + [sym_try_block] = STATE(1492), + [sym_block] = STATE(1492), + [sym__literal] = STATE(1492), + [sym_string_literal] = STATE(1530), + [sym_raw_string_literal] = STATE(1530), + [sym_boolean_literal] = STATE(1530), + [sym_line_comment] = STATE(294), + [sym_block_comment] = STATE(294), + [sym_identifier] = ACTIONS(344), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(348), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -47742,92 +50792,204 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), + [anon_sym_async] = ACTIONS(356), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(358), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), + [anon_sym_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(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(115), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [anon_sym_static] = ACTIONS(372), + [anon_sym_union] = ACTIONS(360), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [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(269)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1864), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1520), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(480), - [sym_match_expression] = STATE(480), - [sym_while_expression] = STATE(480), - [sym_loop_expression] = STATE(480), - [sym_for_expression] = STATE(480), - [sym_const_block] = STATE(480), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(480), - [sym_async_block] = STATE(480), - [sym_gen_block] = STATE(480), - [sym_try_block] = STATE(480), - [sym_block] = STATE(480), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [sym_line_comment] = STATE(269), - [sym_block_comment] = STATE(269), - [sym_identifier] = ACTIONS(339), + [STATE(295)] = { + [sym_line_comment] = STATE(295), + [sym_block_comment] = STATE(295), + [ts_builtin_sym_end] = ACTIONS(1396), + [sym_identifier] = ACTIONS(1398), + [anon_sym_SEMI] = ACTIONS(1396), + [anon_sym_macro_rules_BANG] = ACTIONS(1396), + [anon_sym_LPAREN] = ACTIONS(1396), + [anon_sym_LBRACK] = ACTIONS(1396), + [anon_sym_LBRACE] = ACTIONS(1396), + [anon_sym_RBRACE] = ACTIONS(1396), + [anon_sym_PLUS] = ACTIONS(1398), + [anon_sym_STAR] = ACTIONS(1398), + [anon_sym_QMARK] = ACTIONS(1396), + [anon_sym_u8] = ACTIONS(1398), + [anon_sym_i8] = ACTIONS(1398), + [anon_sym_u16] = ACTIONS(1398), + [anon_sym_i16] = ACTIONS(1398), + [anon_sym_u32] = ACTIONS(1398), + [anon_sym_i32] = ACTIONS(1398), + [anon_sym_u64] = ACTIONS(1398), + [anon_sym_i64] = ACTIONS(1398), + [anon_sym_u128] = ACTIONS(1398), + [anon_sym_i128] = ACTIONS(1398), + [anon_sym_isize] = ACTIONS(1398), + [anon_sym_usize] = ACTIONS(1398), + [anon_sym_f32] = ACTIONS(1398), + [anon_sym_f64] = ACTIONS(1398), + [anon_sym_bool] = ACTIONS(1398), + [anon_sym_str] = ACTIONS(1398), + [anon_sym_char] = ACTIONS(1398), + [anon_sym_DASH] = ACTIONS(1398), + [anon_sym_SLASH] = ACTIONS(1398), + [anon_sym_PERCENT] = ACTIONS(1398), + [anon_sym_CARET] = ACTIONS(1398), + [anon_sym_BANG] = ACTIONS(1398), + [anon_sym_AMP] = ACTIONS(1398), + [anon_sym_PIPE] = ACTIONS(1398), + [anon_sym_AMP_AMP] = ACTIONS(1396), + [anon_sym_PIPE_PIPE] = ACTIONS(1396), + [anon_sym_LT_LT] = ACTIONS(1398), + [anon_sym_GT_GT] = ACTIONS(1398), + [anon_sym_PLUS_EQ] = ACTIONS(1396), + [anon_sym_DASH_EQ] = ACTIONS(1396), + [anon_sym_STAR_EQ] = ACTIONS(1396), + [anon_sym_SLASH_EQ] = ACTIONS(1396), + [anon_sym_PERCENT_EQ] = ACTIONS(1396), + [anon_sym_CARET_EQ] = ACTIONS(1396), + [anon_sym_AMP_EQ] = ACTIONS(1396), + [anon_sym_PIPE_EQ] = ACTIONS(1396), + [anon_sym_LT_LT_EQ] = ACTIONS(1396), + [anon_sym_GT_GT_EQ] = ACTIONS(1396), + [anon_sym_EQ] = ACTIONS(1398), + [anon_sym_EQ_EQ] = ACTIONS(1396), + [anon_sym_BANG_EQ] = ACTIONS(1396), + [anon_sym_GT] = ACTIONS(1398), + [anon_sym_LT] = ACTIONS(1398), + [anon_sym_GT_EQ] = ACTIONS(1396), + [anon_sym_LT_EQ] = ACTIONS(1396), + [anon_sym_DOT] = ACTIONS(1398), + [anon_sym_DOT_DOT] = ACTIONS(1398), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1396), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1396), + [anon_sym_COLON_COLON] = ACTIONS(1396), + [anon_sym_POUND] = ACTIONS(1396), + [anon_sym_SQUOTE] = ACTIONS(1398), + [anon_sym_as] = ACTIONS(1398), + [anon_sym_async] = ACTIONS(1398), + [anon_sym_break] = ACTIONS(1398), + [anon_sym_const] = ACTIONS(1398), + [anon_sym_continue] = ACTIONS(1398), + [anon_sym_default] = ACTIONS(1398), + [anon_sym_enum] = ACTIONS(1398), + [anon_sym_fn] = ACTIONS(1398), + [anon_sym_for] = ACTIONS(1398), + [anon_sym_gen] = ACTIONS(1398), + [anon_sym_if] = ACTIONS(1398), + [anon_sym_impl] = ACTIONS(1398), + [anon_sym_let] = ACTIONS(1398), + [anon_sym_loop] = ACTIONS(1398), + [anon_sym_match] = ACTIONS(1398), + [anon_sym_mod] = ACTIONS(1398), + [anon_sym_pub] = ACTIONS(1398), + [anon_sym_return] = ACTIONS(1398), + [anon_sym_static] = ACTIONS(1398), + [anon_sym_struct] = ACTIONS(1398), + [anon_sym_trait] = ACTIONS(1398), + [anon_sym_type] = ACTIONS(1398), + [anon_sym_union] = ACTIONS(1398), + [anon_sym_unsafe] = ACTIONS(1398), + [anon_sym_use] = ACTIONS(1398), + [anon_sym_while] = ACTIONS(1398), + [anon_sym_extern] = ACTIONS(1398), + [anon_sym_safe] = ACTIONS(1398), + [anon_sym_else] = ACTIONS(1398), + [anon_sym_yield] = ACTIONS(1398), + [anon_sym_move] = ACTIONS(1398), + [anon_sym_try] = ACTIONS(1398), + [sym_integer_literal] = ACTIONS(1396), + [aux_sym_string_literal_token1] = ACTIONS(1396), + [sym_char_literal] = ACTIONS(1396), + [anon_sym_true] = ACTIONS(1398), + [anon_sym_false] = ACTIONS(1398), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1398), + [sym_super] = ACTIONS(1398), + [sym_crate] = ACTIONS(1398), + [sym_metavariable] = ACTIONS(1396), + [sym__raw_string_literal_start] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1396), + }, + [STATE(296)] = { + [sym_bracketed_type] = STATE(3752), + [sym_generic_function] = STATE(1492), + [sym_generic_type_with_turbofish] = STATE(3039), + [sym__expression_except_range] = STATE(1409), + [sym__expression] = STATE(1917), + [sym_macro_invocation] = STATE(1529), + [sym_scoped_identifier] = STATE(1540), + [sym_scoped_type_identifier_in_expression_position] = STATE(3335), + [sym_range_expression] = STATE(1505), + [sym_unary_expression] = STATE(1492), + [sym_try_expression] = STATE(1492), + [sym_reference_expression] = STATE(1492), + [sym_binary_expression] = STATE(1492), + [sym_assignment_expression] = STATE(1492), + [sym_compound_assignment_expr] = STATE(1492), + [sym_type_cast_expression] = STATE(1492), + [sym_return_expression] = STATE(1492), + [sym_yield_expression] = STATE(1492), + [sym_call_expression] = STATE(1492), + [sym_array_expression] = STATE(1492), + [sym_parenthesized_expression] = STATE(1492), + [sym_tuple_expression] = STATE(1492), + [sym_unit_expression] = STATE(1492), + [sym_struct_expression] = STATE(1492), + [sym_if_expression] = STATE(1492), + [sym_match_expression] = STATE(1492), + [sym_while_expression] = STATE(1492), + [sym_loop_expression] = STATE(1492), + [sym_for_expression] = STATE(1492), + [sym_const_block] = STATE(1492), + [sym_closure_expression] = STATE(1492), + [sym_closure_parameters] = STATE(229), + [sym_label] = STATE(3689), + [sym_break_expression] = STATE(1492), + [sym_continue_expression] = STATE(1492), + [sym_index_expression] = STATE(1492), + [sym_await_expression] = STATE(1492), + [sym_field_expression] = STATE(1412), + [sym_unsafe_block] = STATE(1492), + [sym_async_block] = STATE(1492), + [sym_gen_block] = STATE(1492), + [sym_try_block] = STATE(1492), + [sym_block] = STATE(1492), + [sym__literal] = STATE(1492), + [sym_string_literal] = STATE(1530), + [sym_raw_string_literal] = STATE(1530), + [sym_boolean_literal] = STATE(1530), + [sym_line_comment] = STATE(296), + [sym_block_comment] = STATE(296), + [sym_identifier] = ACTIONS(344), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(1301), + [anon_sym_LBRACE] = ACTIONS(348), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -47854,92 +51016,1548 @@ 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(1303), + [anon_sym_async] = ACTIONS(356), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(1305), + [anon_sym_const] = ACTIONS(358), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(1307), - [anon_sym_gen] = ACTIONS(1309), - [anon_sym_if] = ACTIONS(1311), - [anon_sym_loop] = ACTIONS(1313), - [anon_sym_match] = ACTIONS(1315), + [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(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_while] = ACTIONS(1319), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(1321), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(115), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [anon_sym_static] = ACTIONS(372), + [anon_sym_union] = ACTIONS(360), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [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(270)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1920), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1520), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [sym_line_comment] = STATE(270), - [sym_block_comment] = STATE(270), - [sym_identifier] = ACTIONS(339), + [STATE(297)] = { + [sym_bracketed_type] = STATE(3752), + [sym_generic_function] = STATE(1492), + [sym_generic_type_with_turbofish] = STATE(3085), + [sym__expression_except_range] = STATE(1409), + [sym__expression] = STATE(1523), + [sym_macro_invocation] = STATE(1529), + [sym_scoped_identifier] = STATE(1604), + [sym_scoped_type_identifier_in_expression_position] = STATE(3335), + [sym_range_expression] = STATE(1505), + [sym_unary_expression] = STATE(1492), + [sym_try_expression] = STATE(1492), + [sym_reference_expression] = STATE(1492), + [sym_binary_expression] = STATE(1492), + [sym_assignment_expression] = STATE(1492), + [sym_compound_assignment_expr] = STATE(1492), + [sym_type_cast_expression] = STATE(1492), + [sym_return_expression] = STATE(1492), + [sym_yield_expression] = STATE(1492), + [sym_call_expression] = STATE(1492), + [sym_array_expression] = STATE(1492), + [sym_parenthesized_expression] = STATE(1492), + [sym_tuple_expression] = STATE(1492), + [sym_unit_expression] = STATE(1492), + [sym_struct_expression] = STATE(1492), + [sym_if_expression] = STATE(1492), + [sym_match_expression] = STATE(1492), + [sym_while_expression] = STATE(1492), + [sym_loop_expression] = STATE(1492), + [sym_for_expression] = STATE(1492), + [sym_const_block] = STATE(1492), + [sym_closure_expression] = STATE(1492), + [sym_closure_parameters] = STATE(235), + [sym_label] = STATE(3689), + [sym_break_expression] = STATE(1492), + [sym_continue_expression] = STATE(1492), + [sym_index_expression] = STATE(1492), + [sym_await_expression] = STATE(1492), + [sym_field_expression] = STATE(1412), + [sym_unsafe_block] = STATE(1492), + [sym_async_block] = STATE(1492), + [sym_gen_block] = STATE(1492), + [sym_try_block] = STATE(1492), + [sym_block] = STATE(1492), + [sym__literal] = STATE(1492), + [sym_string_literal] = STATE(1530), + [sym_raw_string_literal] = STATE(1530), + [sym_boolean_literal] = STATE(1530), + [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(1196), + [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(1196), + [anon_sym_BANG] = ACTIONS(1196), + [anon_sym_AMP] = ACTIONS(1198), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1200), + [anon_sym_COLON_COLON] = ACTIONS(476), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(356), + [anon_sym_break] = ACTIONS(478), + [anon_sym_const] = ACTIONS(358), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(480), + [anon_sym_for] = ACTIONS(362), + [anon_sym_gen] = ACTIONS(482), + [anon_sym_if] = ACTIONS(366), + [anon_sym_loop] = ACTIONS(368), + [anon_sym_match] = ACTIONS(370), + [anon_sym_return] = ACTIONS(484), + [anon_sym_static] = ACTIONS(486), + [anon_sym_union] = ACTIONS(480), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [anon_sym_yield] = ACTIONS(488), + [anon_sym_move] = ACTIONS(490), + [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(492), + [sym_super] = ACTIONS(494), + [sym_crate] = ACTIONS(494), + [sym_metavariable] = ACTIONS(496), + [sym__raw_string_literal_start] = ACTIONS(119), + [sym_float_literal] = ACTIONS(99), + }, + [STATE(298)] = { + [sym_bracketed_type] = STATE(3752), + [sym_generic_function] = STATE(1492), + [sym_generic_type_with_turbofish] = STATE(3085), + [sym__expression_except_range] = STATE(1409), + [sym__expression] = STATE(1742), + [sym_macro_invocation] = STATE(1529), + [sym_scoped_identifier] = STATE(1604), + [sym_scoped_type_identifier_in_expression_position] = STATE(3335), + [sym_range_expression] = STATE(1505), + [sym_unary_expression] = STATE(1492), + [sym_try_expression] = STATE(1492), + [sym_reference_expression] = STATE(1492), + [sym_binary_expression] = STATE(1492), + [sym_assignment_expression] = STATE(1492), + [sym_compound_assignment_expr] = STATE(1492), + [sym_type_cast_expression] = STATE(1492), + [sym_return_expression] = STATE(1492), + [sym_yield_expression] = STATE(1492), + [sym_call_expression] = STATE(1492), + [sym_array_expression] = STATE(1492), + [sym_parenthesized_expression] = STATE(1492), + [sym_tuple_expression] = STATE(1492), + [sym_unit_expression] = STATE(1492), + [sym_struct_expression] = STATE(1492), + [sym_if_expression] = STATE(1492), + [sym_match_expression] = STATE(1492), + [sym_while_expression] = STATE(1492), + [sym_loop_expression] = STATE(1492), + [sym_for_expression] = STATE(1492), + [sym_const_block] = STATE(1492), + [sym_closure_expression] = STATE(1492), + [sym_closure_parameters] = STATE(235), + [sym_label] = STATE(3689), + [sym_break_expression] = STATE(1492), + [sym_continue_expression] = STATE(1492), + [sym_index_expression] = STATE(1492), + [sym_await_expression] = STATE(1492), + [sym_field_expression] = STATE(1412), + [sym_unsafe_block] = STATE(1492), + [sym_async_block] = STATE(1492), + [sym_gen_block] = STATE(1492), + [sym_try_block] = STATE(1492), + [sym_block] = STATE(1492), + [sym__literal] = STATE(1492), + [sym_string_literal] = STATE(1530), + [sym_raw_string_literal] = STATE(1530), + [sym_boolean_literal] = STATE(1530), + [sym_line_comment] = STATE(298), + [sym_block_comment] = STATE(298), + [sym_identifier] = ACTIONS(470), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(348), + [anon_sym_STAR] = ACTIONS(1196), + [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(1196), + [anon_sym_BANG] = ACTIONS(1196), + [anon_sym_AMP] = ACTIONS(1198), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1200), + [anon_sym_COLON_COLON] = ACTIONS(476), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(356), + [anon_sym_break] = ACTIONS(478), + [anon_sym_const] = ACTIONS(358), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(480), + [anon_sym_for] = ACTIONS(362), + [anon_sym_gen] = ACTIONS(482), + [anon_sym_if] = ACTIONS(366), + [anon_sym_loop] = ACTIONS(368), + [anon_sym_match] = ACTIONS(370), + [anon_sym_return] = ACTIONS(484), + [anon_sym_static] = ACTIONS(486), + [anon_sym_union] = ACTIONS(480), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [anon_sym_yield] = ACTIONS(488), + [anon_sym_move] = ACTIONS(490), + [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(492), + [sym_super] = ACTIONS(494), + [sym_crate] = ACTIONS(494), + [sym_metavariable] = ACTIONS(496), + [sym__raw_string_literal_start] = ACTIONS(119), + [sym_float_literal] = ACTIONS(99), + }, + [STATE(299)] = { + [sym_bracketed_type] = STATE(3752), + [sym_generic_function] = STATE(1492), + [sym_generic_type_with_turbofish] = STATE(3085), + [sym__expression_except_range] = STATE(1409), + [sym__expression] = STATE(1517), + [sym_macro_invocation] = STATE(1529), + [sym_scoped_identifier] = STATE(1604), + [sym_scoped_type_identifier_in_expression_position] = STATE(3335), + [sym_range_expression] = STATE(1505), + [sym_unary_expression] = STATE(1492), + [sym_try_expression] = STATE(1492), + [sym_reference_expression] = STATE(1492), + [sym_binary_expression] = STATE(1492), + [sym_assignment_expression] = STATE(1492), + [sym_compound_assignment_expr] = STATE(1492), + [sym_type_cast_expression] = STATE(1492), + [sym_return_expression] = STATE(1492), + [sym_yield_expression] = STATE(1492), + [sym_call_expression] = STATE(1492), + [sym_array_expression] = STATE(1492), + [sym_parenthesized_expression] = STATE(1492), + [sym_tuple_expression] = STATE(1492), + [sym_unit_expression] = STATE(1492), + [sym_struct_expression] = STATE(1492), + [sym_if_expression] = STATE(1492), + [sym_match_expression] = STATE(1492), + [sym_while_expression] = STATE(1492), + [sym_loop_expression] = STATE(1492), + [sym_for_expression] = STATE(1492), + [sym_const_block] = STATE(1492), + [sym_closure_expression] = STATE(1492), + [sym_closure_parameters] = STATE(235), + [sym_label] = STATE(3689), + [sym_break_expression] = STATE(1492), + [sym_continue_expression] = STATE(1492), + [sym_index_expression] = STATE(1492), + [sym_await_expression] = STATE(1492), + [sym_field_expression] = STATE(1412), + [sym_unsafe_block] = STATE(1492), + [sym_async_block] = STATE(1492), + [sym_gen_block] = STATE(1492), + [sym_try_block] = STATE(1492), + [sym_block] = STATE(1492), + [sym__literal] = STATE(1492), + [sym_string_literal] = STATE(1530), + [sym_raw_string_literal] = STATE(1530), + [sym_boolean_literal] = STATE(1530), + [sym_line_comment] = STATE(299), + [sym_block_comment] = STATE(299), + [sym_identifier] = ACTIONS(470), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(348), + [anon_sym_STAR] = ACTIONS(1196), + [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(1196), + [anon_sym_BANG] = ACTIONS(1196), + [anon_sym_AMP] = ACTIONS(1198), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1200), + [anon_sym_COLON_COLON] = ACTIONS(476), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(356), + [anon_sym_break] = ACTIONS(478), + [anon_sym_const] = ACTIONS(358), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(480), + [anon_sym_for] = ACTIONS(362), + [anon_sym_gen] = ACTIONS(482), + [anon_sym_if] = ACTIONS(366), + [anon_sym_loop] = ACTIONS(368), + [anon_sym_match] = ACTIONS(370), + [anon_sym_return] = ACTIONS(484), + [anon_sym_static] = ACTIONS(486), + [anon_sym_union] = ACTIONS(480), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [anon_sym_yield] = ACTIONS(488), + [anon_sym_move] = ACTIONS(490), + [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(492), + [sym_super] = ACTIONS(494), + [sym_crate] = ACTIONS(494), + [sym_metavariable] = ACTIONS(496), + [sym__raw_string_literal_start] = ACTIONS(119), + [sym_float_literal] = ACTIONS(99), + }, + [STATE(300)] = { + [sym_bracketed_type] = STATE(3752), + [sym_generic_function] = STATE(1492), + [sym_generic_type_with_turbofish] = STATE(3085), + [sym__expression_except_range] = STATE(1409), + [sym__expression] = STATE(1743), + [sym_macro_invocation] = STATE(1529), + [sym_scoped_identifier] = STATE(1604), + [sym_scoped_type_identifier_in_expression_position] = STATE(3335), + [sym_range_expression] = STATE(1505), + [sym_unary_expression] = STATE(1492), + [sym_try_expression] = STATE(1492), + [sym_reference_expression] = STATE(1492), + [sym_binary_expression] = STATE(1492), + [sym_assignment_expression] = STATE(1492), + [sym_compound_assignment_expr] = STATE(1492), + [sym_type_cast_expression] = STATE(1492), + [sym_return_expression] = STATE(1492), + [sym_yield_expression] = STATE(1492), + [sym_call_expression] = STATE(1492), + [sym_array_expression] = STATE(1492), + [sym_parenthesized_expression] = STATE(1492), + [sym_tuple_expression] = STATE(1492), + [sym_unit_expression] = STATE(1492), + [sym_struct_expression] = STATE(1492), + [sym_if_expression] = STATE(1492), + [sym_match_expression] = STATE(1492), + [sym_while_expression] = STATE(1492), + [sym_loop_expression] = STATE(1492), + [sym_for_expression] = STATE(1492), + [sym_const_block] = STATE(1492), + [sym_closure_expression] = STATE(1492), + [sym_closure_parameters] = STATE(235), + [sym_label] = STATE(3689), + [sym_break_expression] = STATE(1492), + [sym_continue_expression] = STATE(1492), + [sym_index_expression] = STATE(1492), + [sym_await_expression] = STATE(1492), + [sym_field_expression] = STATE(1412), + [sym_unsafe_block] = STATE(1492), + [sym_async_block] = STATE(1492), + [sym_gen_block] = STATE(1492), + [sym_try_block] = STATE(1492), + [sym_block] = STATE(1492), + [sym__literal] = STATE(1492), + [sym_string_literal] = STATE(1530), + [sym_raw_string_literal] = STATE(1530), + [sym_boolean_literal] = STATE(1530), + [sym_line_comment] = STATE(300), + [sym_block_comment] = STATE(300), + [sym_identifier] = ACTIONS(470), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(348), + [anon_sym_STAR] = ACTIONS(1196), + [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(1196), + [anon_sym_BANG] = ACTIONS(1196), + [anon_sym_AMP] = ACTIONS(1198), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1200), + [anon_sym_COLON_COLON] = ACTIONS(476), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(356), + [anon_sym_break] = ACTIONS(478), + [anon_sym_const] = ACTIONS(358), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(480), + [anon_sym_for] = ACTIONS(362), + [anon_sym_gen] = ACTIONS(482), + [anon_sym_if] = ACTIONS(366), + [anon_sym_loop] = ACTIONS(368), + [anon_sym_match] = ACTIONS(370), + [anon_sym_return] = ACTIONS(484), + [anon_sym_static] = ACTIONS(486), + [anon_sym_union] = ACTIONS(480), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [anon_sym_yield] = ACTIONS(488), + [anon_sym_move] = ACTIONS(490), + [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(492), + [sym_super] = ACTIONS(494), + [sym_crate] = ACTIONS(494), + [sym_metavariable] = ACTIONS(496), + [sym__raw_string_literal_start] = ACTIONS(119), + [sym_float_literal] = ACTIONS(99), + }, + [STATE(301)] = { + [sym_bracketed_type] = STATE(3752), + [sym_generic_function] = STATE(1492), + [sym_generic_type_with_turbofish] = STATE(3085), + [sym__expression_except_range] = STATE(1409), + [sym__expression] = STATE(1744), + [sym_macro_invocation] = STATE(1529), + [sym_scoped_identifier] = STATE(1604), + [sym_scoped_type_identifier_in_expression_position] = STATE(3335), + [sym_range_expression] = STATE(1505), + [sym_unary_expression] = STATE(1492), + [sym_try_expression] = STATE(1492), + [sym_reference_expression] = STATE(1492), + [sym_binary_expression] = STATE(1492), + [sym_assignment_expression] = STATE(1492), + [sym_compound_assignment_expr] = STATE(1492), + [sym_type_cast_expression] = STATE(1492), + [sym_return_expression] = STATE(1492), + [sym_yield_expression] = STATE(1492), + [sym_call_expression] = STATE(1492), + [sym_array_expression] = STATE(1492), + [sym_parenthesized_expression] = STATE(1492), + [sym_tuple_expression] = STATE(1492), + [sym_unit_expression] = STATE(1492), + [sym_struct_expression] = STATE(1492), + [sym_if_expression] = STATE(1492), + [sym_match_expression] = STATE(1492), + [sym_while_expression] = STATE(1492), + [sym_loop_expression] = STATE(1492), + [sym_for_expression] = STATE(1492), + [sym_const_block] = STATE(1492), + [sym_closure_expression] = STATE(1492), + [sym_closure_parameters] = STATE(235), + [sym_label] = STATE(3689), + [sym_break_expression] = STATE(1492), + [sym_continue_expression] = STATE(1492), + [sym_index_expression] = STATE(1492), + [sym_await_expression] = STATE(1492), + [sym_field_expression] = STATE(1412), + [sym_unsafe_block] = STATE(1492), + [sym_async_block] = STATE(1492), + [sym_gen_block] = STATE(1492), + [sym_try_block] = STATE(1492), + [sym_block] = STATE(1492), + [sym__literal] = STATE(1492), + [sym_string_literal] = STATE(1530), + [sym_raw_string_literal] = STATE(1530), + [sym_boolean_literal] = STATE(1530), + [sym_line_comment] = STATE(301), + [sym_block_comment] = STATE(301), + [sym_identifier] = ACTIONS(470), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(348), + [anon_sym_STAR] = ACTIONS(1196), + [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(1196), + [anon_sym_BANG] = ACTIONS(1196), + [anon_sym_AMP] = ACTIONS(1198), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1200), + [anon_sym_COLON_COLON] = ACTIONS(476), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(356), + [anon_sym_break] = ACTIONS(478), + [anon_sym_const] = ACTIONS(358), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(480), + [anon_sym_for] = ACTIONS(362), + [anon_sym_gen] = ACTIONS(482), + [anon_sym_if] = ACTIONS(366), + [anon_sym_loop] = ACTIONS(368), + [anon_sym_match] = ACTIONS(370), + [anon_sym_return] = ACTIONS(484), + [anon_sym_static] = ACTIONS(486), + [anon_sym_union] = ACTIONS(480), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [anon_sym_yield] = ACTIONS(488), + [anon_sym_move] = ACTIONS(490), + [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(492), + [sym_super] = ACTIONS(494), + [sym_crate] = ACTIONS(494), + [sym_metavariable] = ACTIONS(496), + [sym__raw_string_literal_start] = ACTIONS(119), + [sym_float_literal] = ACTIONS(99), + }, + [STATE(302)] = { + [sym_bracketed_type] = STATE(3752), + [sym_generic_function] = STATE(1492), + [sym_generic_type_with_turbofish] = STATE(3085), + [sym__expression_except_range] = STATE(1409), + [sym__expression] = STATE(1745), + [sym_macro_invocation] = STATE(1529), + [sym_scoped_identifier] = STATE(1604), + [sym_scoped_type_identifier_in_expression_position] = STATE(3335), + [sym_range_expression] = STATE(1505), + [sym_unary_expression] = STATE(1492), + [sym_try_expression] = STATE(1492), + [sym_reference_expression] = STATE(1492), + [sym_binary_expression] = STATE(1492), + [sym_assignment_expression] = STATE(1492), + [sym_compound_assignment_expr] = STATE(1492), + [sym_type_cast_expression] = STATE(1492), + [sym_return_expression] = STATE(1492), + [sym_yield_expression] = STATE(1492), + [sym_call_expression] = STATE(1492), + [sym_array_expression] = STATE(1492), + [sym_parenthesized_expression] = STATE(1492), + [sym_tuple_expression] = STATE(1492), + [sym_unit_expression] = STATE(1492), + [sym_struct_expression] = STATE(1492), + [sym_if_expression] = STATE(1492), + [sym_match_expression] = STATE(1492), + [sym_while_expression] = STATE(1492), + [sym_loop_expression] = STATE(1492), + [sym_for_expression] = STATE(1492), + [sym_const_block] = STATE(1492), + [sym_closure_expression] = STATE(1492), + [sym_closure_parameters] = STATE(235), + [sym_label] = STATE(3689), + [sym_break_expression] = STATE(1492), + [sym_continue_expression] = STATE(1492), + [sym_index_expression] = STATE(1492), + [sym_await_expression] = STATE(1492), + [sym_field_expression] = STATE(1412), + [sym_unsafe_block] = STATE(1492), + [sym_async_block] = STATE(1492), + [sym_gen_block] = STATE(1492), + [sym_try_block] = STATE(1492), + [sym_block] = STATE(1492), + [sym__literal] = STATE(1492), + [sym_string_literal] = STATE(1530), + [sym_raw_string_literal] = STATE(1530), + [sym_boolean_literal] = STATE(1530), + [sym_line_comment] = STATE(302), + [sym_block_comment] = STATE(302), + [sym_identifier] = ACTIONS(470), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(348), + [anon_sym_STAR] = ACTIONS(1196), + [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(1196), + [anon_sym_BANG] = ACTIONS(1196), + [anon_sym_AMP] = ACTIONS(1198), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1200), + [anon_sym_COLON_COLON] = ACTIONS(476), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(356), + [anon_sym_break] = ACTIONS(478), + [anon_sym_const] = ACTIONS(358), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(480), + [anon_sym_for] = ACTIONS(362), + [anon_sym_gen] = ACTIONS(482), + [anon_sym_if] = ACTIONS(366), + [anon_sym_loop] = ACTIONS(368), + [anon_sym_match] = ACTIONS(370), + [anon_sym_return] = ACTIONS(484), + [anon_sym_static] = ACTIONS(486), + [anon_sym_union] = ACTIONS(480), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [anon_sym_yield] = ACTIONS(488), + [anon_sym_move] = ACTIONS(490), + [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(492), + [sym_super] = ACTIONS(494), + [sym_crate] = ACTIONS(494), + [sym_metavariable] = ACTIONS(496), + [sym__raw_string_literal_start] = ACTIONS(119), + [sym_float_literal] = ACTIONS(99), + }, + [STATE(303)] = { + [sym_bracketed_type] = STATE(3752), + [sym_generic_function] = STATE(1492), + [sym_generic_type_with_turbofish] = STATE(3085), + [sym__expression_except_range] = STATE(1409), + [sym__expression] = STATE(1694), + [sym_macro_invocation] = STATE(1529), + [sym_scoped_identifier] = STATE(1604), + [sym_scoped_type_identifier_in_expression_position] = STATE(3335), + [sym_range_expression] = STATE(1505), + [sym_unary_expression] = STATE(1492), + [sym_try_expression] = STATE(1492), + [sym_reference_expression] = STATE(1492), + [sym_binary_expression] = STATE(1492), + [sym_assignment_expression] = STATE(1492), + [sym_compound_assignment_expr] = STATE(1492), + [sym_type_cast_expression] = STATE(1492), + [sym_return_expression] = STATE(1492), + [sym_yield_expression] = STATE(1492), + [sym_call_expression] = STATE(1492), + [sym_array_expression] = STATE(1492), + [sym_parenthesized_expression] = STATE(1492), + [sym_tuple_expression] = STATE(1492), + [sym_unit_expression] = STATE(1492), + [sym_struct_expression] = STATE(1492), + [sym_if_expression] = STATE(1492), + [sym_match_expression] = STATE(1492), + [sym_while_expression] = STATE(1492), + [sym_loop_expression] = STATE(1492), + [sym_for_expression] = STATE(1492), + [sym_const_block] = STATE(1492), + [sym_closure_expression] = STATE(1492), + [sym_closure_parameters] = STATE(221), + [sym_label] = STATE(3689), + [sym_break_expression] = STATE(1492), + [sym_continue_expression] = STATE(1492), + [sym_index_expression] = STATE(1492), + [sym_await_expression] = STATE(1492), + [sym_field_expression] = STATE(1412), + [sym_unsafe_block] = STATE(1492), + [sym_async_block] = STATE(1492), + [sym_gen_block] = STATE(1492), + [sym_try_block] = STATE(1492), + [sym_block] = STATE(1492), + [sym__literal] = STATE(1492), + [sym_string_literal] = STATE(1530), + [sym_raw_string_literal] = STATE(1530), + [sym_boolean_literal] = STATE(1530), + [sym_line_comment] = STATE(303), + [sym_block_comment] = STATE(303), + [sym_identifier] = ACTIONS(470), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(348), + [anon_sym_STAR] = ACTIONS(978), + [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(978), + [anon_sym_BANG] = ACTIONS(978), + [anon_sym_AMP] = ACTIONS(980), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1170), + [anon_sym_COLON_COLON] = ACTIONS(476), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(356), + [anon_sym_break] = ACTIONS(510), + [anon_sym_const] = ACTIONS(358), + [anon_sym_continue] = ACTIONS(512), + [anon_sym_default] = ACTIONS(480), + [anon_sym_for] = ACTIONS(362), + [anon_sym_gen] = ACTIONS(514), + [anon_sym_if] = ACTIONS(366), + [anon_sym_loop] = ACTIONS(368), + [anon_sym_match] = ACTIONS(370), + [anon_sym_return] = ACTIONS(516), + [anon_sym_static] = ACTIONS(518), + [anon_sym_union] = ACTIONS(480), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [anon_sym_yield] = ACTIONS(520), + [anon_sym_move] = ACTIONS(522), + [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(492), + [sym_super] = ACTIONS(494), + [sym_crate] = ACTIONS(494), + [sym_metavariable] = ACTIONS(496), + [sym__raw_string_literal_start] = ACTIONS(119), + [sym_float_literal] = ACTIONS(99), + }, + [STATE(304)] = { + [sym_bracketed_type] = STATE(3752), + [sym_generic_function] = STATE(1492), + [sym_generic_type_with_turbofish] = STATE(3085), + [sym__expression_except_range] = STATE(1409), + [sym__expression] = STATE(1747), + [sym_macro_invocation] = STATE(1529), + [sym_scoped_identifier] = STATE(1604), + [sym_scoped_type_identifier_in_expression_position] = STATE(3335), + [sym_range_expression] = STATE(1505), + [sym_unary_expression] = STATE(1492), + [sym_try_expression] = STATE(1492), + [sym_reference_expression] = STATE(1492), + [sym_binary_expression] = STATE(1492), + [sym_assignment_expression] = STATE(1492), + [sym_compound_assignment_expr] = STATE(1492), + [sym_type_cast_expression] = STATE(1492), + [sym_return_expression] = STATE(1492), + [sym_yield_expression] = STATE(1492), + [sym_call_expression] = STATE(1492), + [sym_array_expression] = STATE(1492), + [sym_parenthesized_expression] = STATE(1492), + [sym_tuple_expression] = STATE(1492), + [sym_unit_expression] = STATE(1492), + [sym_struct_expression] = STATE(1492), + [sym_if_expression] = STATE(1492), + [sym_match_expression] = STATE(1492), + [sym_while_expression] = STATE(1492), + [sym_loop_expression] = STATE(1492), + [sym_for_expression] = STATE(1492), + [sym_const_block] = STATE(1492), + [sym_closure_expression] = STATE(1492), + [sym_closure_parameters] = STATE(235), + [sym_label] = STATE(3689), + [sym_break_expression] = STATE(1492), + [sym_continue_expression] = STATE(1492), + [sym_index_expression] = STATE(1492), + [sym_await_expression] = STATE(1492), + [sym_field_expression] = STATE(1412), + [sym_unsafe_block] = STATE(1492), + [sym_async_block] = STATE(1492), + [sym_gen_block] = STATE(1492), + [sym_try_block] = STATE(1492), + [sym_block] = STATE(1492), + [sym__literal] = STATE(1492), + [sym_string_literal] = STATE(1530), + [sym_raw_string_literal] = STATE(1530), + [sym_boolean_literal] = STATE(1530), + [sym_line_comment] = STATE(304), + [sym_block_comment] = STATE(304), + [sym_identifier] = ACTIONS(470), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(348), + [anon_sym_STAR] = ACTIONS(1196), + [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(1196), + [anon_sym_BANG] = ACTIONS(1196), + [anon_sym_AMP] = ACTIONS(1198), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1200), + [anon_sym_COLON_COLON] = ACTIONS(476), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(356), + [anon_sym_break] = ACTIONS(478), + [anon_sym_const] = ACTIONS(358), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(480), + [anon_sym_for] = ACTIONS(362), + [anon_sym_gen] = ACTIONS(482), + [anon_sym_if] = ACTIONS(366), + [anon_sym_loop] = ACTIONS(368), + [anon_sym_match] = ACTIONS(370), + [anon_sym_return] = ACTIONS(484), + [anon_sym_static] = ACTIONS(486), + [anon_sym_union] = ACTIONS(480), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [anon_sym_yield] = ACTIONS(488), + [anon_sym_move] = ACTIONS(490), + [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(492), + [sym_super] = ACTIONS(494), + [sym_crate] = ACTIONS(494), + [sym_metavariable] = ACTIONS(496), + [sym__raw_string_literal_start] = ACTIONS(119), + [sym_float_literal] = ACTIONS(99), + }, + [STATE(305)] = { + [sym_bracketed_type] = STATE(3752), + [sym_generic_function] = STATE(1492), + [sym_generic_type_with_turbofish] = STATE(3085), + [sym__expression_except_range] = STATE(1409), + [sym__expression] = STATE(1748), + [sym_macro_invocation] = STATE(1529), + [sym_scoped_identifier] = STATE(1604), + [sym_scoped_type_identifier_in_expression_position] = STATE(3335), + [sym_range_expression] = STATE(1505), + [sym_unary_expression] = STATE(1492), + [sym_try_expression] = STATE(1492), + [sym_reference_expression] = STATE(1492), + [sym_binary_expression] = STATE(1492), + [sym_assignment_expression] = STATE(1492), + [sym_compound_assignment_expr] = STATE(1492), + [sym_type_cast_expression] = STATE(1492), + [sym_return_expression] = STATE(1492), + [sym_yield_expression] = STATE(1492), + [sym_call_expression] = STATE(1492), + [sym_array_expression] = STATE(1492), + [sym_parenthesized_expression] = STATE(1492), + [sym_tuple_expression] = STATE(1492), + [sym_unit_expression] = STATE(1492), + [sym_struct_expression] = STATE(1492), + [sym_if_expression] = STATE(1492), + [sym_match_expression] = STATE(1492), + [sym_while_expression] = STATE(1492), + [sym_loop_expression] = STATE(1492), + [sym_for_expression] = STATE(1492), + [sym_const_block] = STATE(1492), + [sym_closure_expression] = STATE(1492), + [sym_closure_parameters] = STATE(235), + [sym_label] = STATE(3689), + [sym_break_expression] = STATE(1492), + [sym_continue_expression] = STATE(1492), + [sym_index_expression] = STATE(1492), + [sym_await_expression] = STATE(1492), + [sym_field_expression] = STATE(1412), + [sym_unsafe_block] = STATE(1492), + [sym_async_block] = STATE(1492), + [sym_gen_block] = STATE(1492), + [sym_try_block] = STATE(1492), + [sym_block] = STATE(1492), + [sym__literal] = STATE(1492), + [sym_string_literal] = STATE(1530), + [sym_raw_string_literal] = STATE(1530), + [sym_boolean_literal] = STATE(1530), + [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(1196), + [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(1196), + [anon_sym_BANG] = ACTIONS(1196), + [anon_sym_AMP] = ACTIONS(1198), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1200), + [anon_sym_COLON_COLON] = ACTIONS(476), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(356), + [anon_sym_break] = ACTIONS(478), + [anon_sym_const] = ACTIONS(358), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(480), + [anon_sym_for] = ACTIONS(362), + [anon_sym_gen] = ACTIONS(482), + [anon_sym_if] = ACTIONS(366), + [anon_sym_loop] = ACTIONS(368), + [anon_sym_match] = ACTIONS(370), + [anon_sym_return] = ACTIONS(484), + [anon_sym_static] = ACTIONS(486), + [anon_sym_union] = ACTIONS(480), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [anon_sym_yield] = ACTIONS(488), + [anon_sym_move] = ACTIONS(490), + [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(492), + [sym_super] = ACTIONS(494), + [sym_crate] = ACTIONS(494), + [sym_metavariable] = ACTIONS(496), + [sym__raw_string_literal_start] = ACTIONS(119), + [sym_float_literal] = ACTIONS(99), + }, + [STATE(306)] = { + [sym_bracketed_type] = STATE(3752), + [sym_generic_function] = STATE(1492), + [sym_generic_type_with_turbofish] = STATE(3085), + [sym__expression_except_range] = STATE(1409), + [sym__expression] = STATE(1749), + [sym_macro_invocation] = STATE(1529), + [sym_scoped_identifier] = STATE(1604), + [sym_scoped_type_identifier_in_expression_position] = STATE(3335), + [sym_range_expression] = STATE(1505), + [sym_unary_expression] = STATE(1492), + [sym_try_expression] = STATE(1492), + [sym_reference_expression] = STATE(1492), + [sym_binary_expression] = STATE(1492), + [sym_assignment_expression] = STATE(1492), + [sym_compound_assignment_expr] = STATE(1492), + [sym_type_cast_expression] = STATE(1492), + [sym_return_expression] = STATE(1492), + [sym_yield_expression] = STATE(1492), + [sym_call_expression] = STATE(1492), + [sym_array_expression] = STATE(1492), + [sym_parenthesized_expression] = STATE(1492), + [sym_tuple_expression] = STATE(1492), + [sym_unit_expression] = STATE(1492), + [sym_struct_expression] = STATE(1492), + [sym_if_expression] = STATE(1492), + [sym_match_expression] = STATE(1492), + [sym_while_expression] = STATE(1492), + [sym_loop_expression] = STATE(1492), + [sym_for_expression] = STATE(1492), + [sym_const_block] = STATE(1492), + [sym_closure_expression] = STATE(1492), + [sym_closure_parameters] = STATE(235), + [sym_label] = STATE(3689), + [sym_break_expression] = STATE(1492), + [sym_continue_expression] = STATE(1492), + [sym_index_expression] = STATE(1492), + [sym_await_expression] = STATE(1492), + [sym_field_expression] = STATE(1412), + [sym_unsafe_block] = STATE(1492), + [sym_async_block] = STATE(1492), + [sym_gen_block] = STATE(1492), + [sym_try_block] = STATE(1492), + [sym_block] = STATE(1492), + [sym__literal] = STATE(1492), + [sym_string_literal] = STATE(1530), + [sym_raw_string_literal] = STATE(1530), + [sym_boolean_literal] = STATE(1530), + [sym_line_comment] = STATE(306), + [sym_block_comment] = STATE(306), + [sym_identifier] = ACTIONS(470), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(348), + [anon_sym_STAR] = ACTIONS(1196), + [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(1196), + [anon_sym_BANG] = ACTIONS(1196), + [anon_sym_AMP] = ACTIONS(1198), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1200), + [anon_sym_COLON_COLON] = ACTIONS(476), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(356), + [anon_sym_break] = ACTIONS(478), + [anon_sym_const] = ACTIONS(358), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(480), + [anon_sym_for] = ACTIONS(362), + [anon_sym_gen] = ACTIONS(482), + [anon_sym_if] = ACTIONS(366), + [anon_sym_loop] = ACTIONS(368), + [anon_sym_match] = ACTIONS(370), + [anon_sym_return] = ACTIONS(484), + [anon_sym_static] = ACTIONS(486), + [anon_sym_union] = ACTIONS(480), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [anon_sym_yield] = ACTIONS(488), + [anon_sym_move] = ACTIONS(490), + [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(492), + [sym_super] = ACTIONS(494), + [sym_crate] = ACTIONS(494), + [sym_metavariable] = ACTIONS(496), + [sym__raw_string_literal_start] = ACTIONS(119), + [sym_float_literal] = ACTIONS(99), + }, + [STATE(307)] = { + [sym_bracketed_type] = STATE(3752), + [sym_generic_function] = STATE(1492), + [sym_generic_type_with_turbofish] = STATE(3085), + [sym__expression_except_range] = STATE(1409), + [sym__expression] = STATE(1750), + [sym_macro_invocation] = STATE(1529), + [sym_scoped_identifier] = STATE(1604), + [sym_scoped_type_identifier_in_expression_position] = STATE(3335), + [sym_range_expression] = STATE(1505), + [sym_unary_expression] = STATE(1492), + [sym_try_expression] = STATE(1492), + [sym_reference_expression] = STATE(1492), + [sym_binary_expression] = STATE(1492), + [sym_assignment_expression] = STATE(1492), + [sym_compound_assignment_expr] = STATE(1492), + [sym_type_cast_expression] = STATE(1492), + [sym_return_expression] = STATE(1492), + [sym_yield_expression] = STATE(1492), + [sym_call_expression] = STATE(1492), + [sym_array_expression] = STATE(1492), + [sym_parenthesized_expression] = STATE(1492), + [sym_tuple_expression] = STATE(1492), + [sym_unit_expression] = STATE(1492), + [sym_struct_expression] = STATE(1492), + [sym_if_expression] = STATE(1492), + [sym_match_expression] = STATE(1492), + [sym_while_expression] = STATE(1492), + [sym_loop_expression] = STATE(1492), + [sym_for_expression] = STATE(1492), + [sym_const_block] = STATE(1492), + [sym_closure_expression] = STATE(1492), + [sym_closure_parameters] = STATE(235), + [sym_label] = STATE(3689), + [sym_break_expression] = STATE(1492), + [sym_continue_expression] = STATE(1492), + [sym_index_expression] = STATE(1492), + [sym_await_expression] = STATE(1492), + [sym_field_expression] = STATE(1412), + [sym_unsafe_block] = STATE(1492), + [sym_async_block] = STATE(1492), + [sym_gen_block] = STATE(1492), + [sym_try_block] = STATE(1492), + [sym_block] = STATE(1492), + [sym__literal] = STATE(1492), + [sym_string_literal] = STATE(1530), + [sym_raw_string_literal] = STATE(1530), + [sym_boolean_literal] = STATE(1530), + [sym_line_comment] = STATE(307), + [sym_block_comment] = STATE(307), + [sym_identifier] = ACTIONS(470), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(348), + [anon_sym_STAR] = ACTIONS(1196), + [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(1196), + [anon_sym_BANG] = ACTIONS(1196), + [anon_sym_AMP] = ACTIONS(1198), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1200), + [anon_sym_COLON_COLON] = ACTIONS(476), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(356), + [anon_sym_break] = ACTIONS(478), + [anon_sym_const] = ACTIONS(358), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(480), + [anon_sym_for] = ACTIONS(362), + [anon_sym_gen] = ACTIONS(482), + [anon_sym_if] = ACTIONS(366), + [anon_sym_loop] = ACTIONS(368), + [anon_sym_match] = ACTIONS(370), + [anon_sym_return] = ACTIONS(484), + [anon_sym_static] = ACTIONS(486), + [anon_sym_union] = ACTIONS(480), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [anon_sym_yield] = ACTIONS(488), + [anon_sym_move] = ACTIONS(490), + [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(492), + [sym_super] = ACTIONS(494), + [sym_crate] = ACTIONS(494), + [sym_metavariable] = ACTIONS(496), + [sym__raw_string_literal_start] = ACTIONS(119), + [sym_float_literal] = ACTIONS(99), + }, + [STATE(308)] = { + [sym_bracketed_type] = STATE(3752), + [sym_generic_function] = STATE(1492), + [sym_generic_type_with_turbofish] = STATE(3085), + [sym__expression_except_range] = STATE(1409), + [sym__expression] = STATE(1751), + [sym_macro_invocation] = STATE(1529), + [sym_scoped_identifier] = STATE(1604), + [sym_scoped_type_identifier_in_expression_position] = STATE(3335), + [sym_range_expression] = STATE(1505), + [sym_unary_expression] = STATE(1492), + [sym_try_expression] = STATE(1492), + [sym_reference_expression] = STATE(1492), + [sym_binary_expression] = STATE(1492), + [sym_assignment_expression] = STATE(1492), + [sym_compound_assignment_expr] = STATE(1492), + [sym_type_cast_expression] = STATE(1492), + [sym_return_expression] = STATE(1492), + [sym_yield_expression] = STATE(1492), + [sym_call_expression] = STATE(1492), + [sym_array_expression] = STATE(1492), + [sym_parenthesized_expression] = STATE(1492), + [sym_tuple_expression] = STATE(1492), + [sym_unit_expression] = STATE(1492), + [sym_struct_expression] = STATE(1492), + [sym_if_expression] = STATE(1492), + [sym_match_expression] = STATE(1492), + [sym_while_expression] = STATE(1492), + [sym_loop_expression] = STATE(1492), + [sym_for_expression] = STATE(1492), + [sym_const_block] = STATE(1492), + [sym_closure_expression] = STATE(1492), + [sym_closure_parameters] = STATE(235), + [sym_label] = STATE(3689), + [sym_break_expression] = STATE(1492), + [sym_continue_expression] = STATE(1492), + [sym_index_expression] = STATE(1492), + [sym_await_expression] = STATE(1492), + [sym_field_expression] = STATE(1412), + [sym_unsafe_block] = STATE(1492), + [sym_async_block] = STATE(1492), + [sym_gen_block] = STATE(1492), + [sym_try_block] = STATE(1492), + [sym_block] = STATE(1492), + [sym__literal] = STATE(1492), + [sym_string_literal] = STATE(1530), + [sym_raw_string_literal] = STATE(1530), + [sym_boolean_literal] = STATE(1530), + [sym_line_comment] = STATE(308), + [sym_block_comment] = STATE(308), + [sym_identifier] = ACTIONS(470), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(348), + [anon_sym_STAR] = ACTIONS(1196), + [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(1196), + [anon_sym_BANG] = ACTIONS(1196), + [anon_sym_AMP] = ACTIONS(1198), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1200), + [anon_sym_COLON_COLON] = ACTIONS(476), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(356), + [anon_sym_break] = ACTIONS(478), + [anon_sym_const] = ACTIONS(358), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(480), + [anon_sym_for] = ACTIONS(362), + [anon_sym_gen] = ACTIONS(482), + [anon_sym_if] = ACTIONS(366), + [anon_sym_loop] = ACTIONS(368), + [anon_sym_match] = ACTIONS(370), + [anon_sym_return] = ACTIONS(484), + [anon_sym_static] = ACTIONS(486), + [anon_sym_union] = ACTIONS(480), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [anon_sym_yield] = ACTIONS(488), + [anon_sym_move] = ACTIONS(490), + [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(492), + [sym_super] = ACTIONS(494), + [sym_crate] = ACTIONS(494), + [sym_metavariable] = ACTIONS(496), + [sym__raw_string_literal_start] = ACTIONS(119), + [sym_float_literal] = ACTIONS(99), + }, + [STATE(309)] = { + [sym_bracketed_type] = STATE(3752), + [sym_generic_function] = STATE(1492), + [sym_generic_type_with_turbofish] = STATE(3085), + [sym__expression_except_range] = STATE(1409), + [sym__expression] = STATE(1666), + [sym_macro_invocation] = STATE(1529), + [sym_scoped_identifier] = STATE(1604), + [sym_scoped_type_identifier_in_expression_position] = STATE(3335), + [sym_range_expression] = STATE(1505), + [sym_unary_expression] = STATE(1492), + [sym_try_expression] = STATE(1492), + [sym_reference_expression] = STATE(1492), + [sym_binary_expression] = STATE(1492), + [sym_assignment_expression] = STATE(1492), + [sym_compound_assignment_expr] = STATE(1492), + [sym_type_cast_expression] = STATE(1492), + [sym_return_expression] = STATE(1492), + [sym_yield_expression] = STATE(1492), + [sym_call_expression] = STATE(1492), + [sym_array_expression] = STATE(1492), + [sym_parenthesized_expression] = STATE(1492), + [sym_tuple_expression] = STATE(1492), + [sym_unit_expression] = STATE(1492), + [sym_struct_expression] = STATE(1492), + [sym_if_expression] = STATE(1492), + [sym_match_expression] = STATE(1492), + [sym_while_expression] = STATE(1492), + [sym_loop_expression] = STATE(1492), + [sym_for_expression] = STATE(1492), + [sym_const_block] = STATE(1492), + [sym_closure_expression] = STATE(1492), + [sym_closure_parameters] = STATE(221), + [sym_label] = STATE(3689), + [sym_break_expression] = STATE(1492), + [sym_continue_expression] = STATE(1492), + [sym_index_expression] = STATE(1492), + [sym_await_expression] = STATE(1492), + [sym_field_expression] = STATE(1412), + [sym_unsafe_block] = STATE(1492), + [sym_async_block] = STATE(1492), + [sym_gen_block] = STATE(1492), + [sym_try_block] = STATE(1492), + [sym_block] = STATE(1492), + [sym__literal] = STATE(1492), + [sym_string_literal] = STATE(1530), + [sym_raw_string_literal] = STATE(1530), + [sym_boolean_literal] = STATE(1530), + [sym_line_comment] = STATE(309), + [sym_block_comment] = STATE(309), + [sym_identifier] = ACTIONS(470), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(348), + [anon_sym_STAR] = ACTIONS(978), + [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(978), + [anon_sym_BANG] = ACTIONS(978), + [anon_sym_AMP] = ACTIONS(980), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(982), + [anon_sym_COLON_COLON] = ACTIONS(476), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(356), + [anon_sym_break] = ACTIONS(510), + [anon_sym_const] = ACTIONS(358), + [anon_sym_continue] = ACTIONS(512), + [anon_sym_default] = ACTIONS(480), + [anon_sym_for] = ACTIONS(362), + [anon_sym_gen] = ACTIONS(514), + [anon_sym_if] = ACTIONS(366), + [anon_sym_loop] = ACTIONS(368), + [anon_sym_match] = ACTIONS(370), + [anon_sym_return] = ACTIONS(516), + [anon_sym_static] = ACTIONS(518), + [anon_sym_union] = ACTIONS(480), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [anon_sym_yield] = ACTIONS(520), + [anon_sym_move] = ACTIONS(522), + [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(492), + [sym_super] = ACTIONS(494), + [sym_crate] = ACTIONS(494), + [sym_metavariable] = ACTIONS(496), + [sym__raw_string_literal_start] = ACTIONS(119), + [sym_float_literal] = ACTIONS(99), + }, + [STATE(310)] = { + [sym_bracketed_type] = STATE(3752), + [sym_generic_function] = STATE(1492), + [sym_generic_type_with_turbofish] = STATE(3039), + [sym__expression_except_range] = STATE(1409), + [sym__expression] = STATE(1922), + [sym_macro_invocation] = STATE(1529), + [sym_scoped_identifier] = STATE(1540), + [sym_scoped_type_identifier_in_expression_position] = STATE(3335), + [sym_range_expression] = STATE(1505), + [sym_unary_expression] = STATE(1492), + [sym_try_expression] = STATE(1492), + [sym_reference_expression] = STATE(1492), + [sym_binary_expression] = STATE(1492), + [sym_assignment_expression] = STATE(1492), + [sym_compound_assignment_expr] = STATE(1492), + [sym_type_cast_expression] = STATE(1492), + [sym_return_expression] = STATE(1492), + [sym_yield_expression] = STATE(1492), + [sym_call_expression] = STATE(1492), + [sym_array_expression] = STATE(1492), + [sym_parenthesized_expression] = STATE(1492), + [sym_tuple_expression] = STATE(1492), + [sym_unit_expression] = STATE(1492), + [sym_struct_expression] = STATE(1492), + [sym_if_expression] = STATE(1492), + [sym_match_expression] = STATE(1492), + [sym_while_expression] = STATE(1492), + [sym_loop_expression] = STATE(1492), + [sym_for_expression] = STATE(1492), + [sym_const_block] = STATE(1492), + [sym_closure_expression] = STATE(1492), + [sym_closure_parameters] = STATE(229), + [sym_label] = STATE(3689), + [sym_break_expression] = STATE(1492), + [sym_continue_expression] = STATE(1492), + [sym_index_expression] = STATE(1492), + [sym_await_expression] = STATE(1492), + [sym_field_expression] = STATE(1412), + [sym_unsafe_block] = STATE(1492), + [sym_async_block] = STATE(1492), + [sym_gen_block] = STATE(1492), + [sym_try_block] = STATE(1492), + [sym_block] = STATE(1492), + [sym__literal] = STATE(1492), + [sym_string_literal] = STATE(1530), + [sym_raw_string_literal] = STATE(1530), + [sym_boolean_literal] = STATE(1530), + [sym_line_comment] = STATE(310), + [sym_block_comment] = STATE(310), + [sym_identifier] = ACTIONS(344), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(348), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -47966,92 +52584,204 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), + [anon_sym_async] = ACTIONS(356), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(358), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), + [anon_sym_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(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(115), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [anon_sym_static] = ACTIONS(372), + [anon_sym_union] = ACTIONS(360), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [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(271)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1927), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1520), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [sym_line_comment] = STATE(271), - [sym_block_comment] = STATE(271), - [sym_identifier] = ACTIONS(339), + [STATE(311)] = { + [sym_bracketed_type] = STATE(3752), + [sym_generic_function] = STATE(1492), + [sym_generic_type_with_turbofish] = STATE(3085), + [sym__expression_except_range] = STATE(1409), + [sym__expression] = STATE(1444), + [sym_macro_invocation] = STATE(1529), + [sym_scoped_identifier] = STATE(1604), + [sym_scoped_type_identifier_in_expression_position] = STATE(3335), + [sym_range_expression] = STATE(1505), + [sym_unary_expression] = STATE(1492), + [sym_try_expression] = STATE(1492), + [sym_reference_expression] = STATE(1492), + [sym_binary_expression] = STATE(1492), + [sym_assignment_expression] = STATE(1492), + [sym_compound_assignment_expr] = STATE(1492), + [sym_type_cast_expression] = STATE(1492), + [sym_return_expression] = STATE(1492), + [sym_yield_expression] = STATE(1492), + [sym_call_expression] = STATE(1492), + [sym_array_expression] = STATE(1492), + [sym_parenthesized_expression] = STATE(1492), + [sym_tuple_expression] = STATE(1492), + [sym_unit_expression] = STATE(1492), + [sym_struct_expression] = STATE(1492), + [sym_if_expression] = STATE(1492), + [sym_match_expression] = STATE(1492), + [sym_while_expression] = STATE(1492), + [sym_loop_expression] = STATE(1492), + [sym_for_expression] = STATE(1492), + [sym_const_block] = STATE(1492), + [sym_closure_expression] = STATE(1492), + [sym_closure_parameters] = STATE(235), + [sym_label] = STATE(3689), + [sym_break_expression] = STATE(1492), + [sym_continue_expression] = STATE(1492), + [sym_index_expression] = STATE(1492), + [sym_await_expression] = STATE(1492), + [sym_field_expression] = STATE(1412), + [sym_unsafe_block] = STATE(1492), + [sym_async_block] = STATE(1492), + [sym_gen_block] = STATE(1492), + [sym_try_block] = STATE(1492), + [sym_block] = STATE(1492), + [sym__literal] = STATE(1492), + [sym_string_literal] = STATE(1530), + [sym_raw_string_literal] = STATE(1530), + [sym_boolean_literal] = STATE(1530), + [sym_line_comment] = STATE(311), + [sym_block_comment] = STATE(311), + [sym_identifier] = ACTIONS(470), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(348), + [anon_sym_STAR] = ACTIONS(1196), + [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(1196), + [anon_sym_BANG] = ACTIONS(1196), + [anon_sym_AMP] = ACTIONS(1198), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1200), + [anon_sym_COLON_COLON] = ACTIONS(476), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(356), + [anon_sym_break] = ACTIONS(478), + [anon_sym_const] = ACTIONS(358), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(480), + [anon_sym_for] = ACTIONS(362), + [anon_sym_gen] = ACTIONS(482), + [anon_sym_if] = ACTIONS(366), + [anon_sym_loop] = ACTIONS(368), + [anon_sym_match] = ACTIONS(370), + [anon_sym_return] = ACTIONS(484), + [anon_sym_static] = ACTIONS(486), + [anon_sym_union] = ACTIONS(480), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [anon_sym_yield] = ACTIONS(488), + [anon_sym_move] = ACTIONS(490), + [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(492), + [sym_super] = ACTIONS(494), + [sym_crate] = ACTIONS(494), + [sym_metavariable] = ACTIONS(496), + [sym__raw_string_literal_start] = ACTIONS(119), + [sym_float_literal] = ACTIONS(99), + }, + [STATE(312)] = { + [sym_bracketed_type] = STATE(3752), + [sym_generic_function] = STATE(1492), + [sym_generic_type_with_turbofish] = STATE(3039), + [sym__expression_except_range] = STATE(1409), + [sym__expression] = STATE(1926), + [sym_macro_invocation] = STATE(1529), + [sym_scoped_identifier] = STATE(1540), + [sym_scoped_type_identifier_in_expression_position] = STATE(3335), + [sym_range_expression] = STATE(1505), + [sym_unary_expression] = STATE(1492), + [sym_try_expression] = STATE(1492), + [sym_reference_expression] = STATE(1492), + [sym_binary_expression] = STATE(1492), + [sym_assignment_expression] = STATE(1492), + [sym_compound_assignment_expr] = STATE(1492), + [sym_type_cast_expression] = STATE(1492), + [sym_return_expression] = STATE(1492), + [sym_yield_expression] = STATE(1492), + [sym_call_expression] = STATE(1492), + [sym_array_expression] = STATE(1492), + [sym_parenthesized_expression] = STATE(1492), + [sym_tuple_expression] = STATE(1492), + [sym_unit_expression] = STATE(1492), + [sym_struct_expression] = STATE(1492), + [sym_if_expression] = STATE(1492), + [sym_match_expression] = STATE(1492), + [sym_while_expression] = STATE(1492), + [sym_loop_expression] = STATE(1492), + [sym_for_expression] = STATE(1492), + [sym_const_block] = STATE(1492), + [sym_closure_expression] = STATE(1492), + [sym_closure_parameters] = STATE(229), + [sym_label] = STATE(3689), + [sym_break_expression] = STATE(1492), + [sym_continue_expression] = STATE(1492), + [sym_index_expression] = STATE(1492), + [sym_await_expression] = STATE(1492), + [sym_field_expression] = STATE(1412), + [sym_unsafe_block] = STATE(1492), + [sym_async_block] = STATE(1492), + [sym_gen_block] = STATE(1492), + [sym_try_block] = STATE(1492), + [sym_block] = STATE(1492), + [sym__literal] = STATE(1492), + [sym_string_literal] = STATE(1530), + [sym_raw_string_literal] = STATE(1530), + [sym_boolean_literal] = STATE(1530), + [sym_line_comment] = STATE(312), + [sym_block_comment] = STATE(312), + [sym_identifier] = ACTIONS(344), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(348), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -48078,92 +52808,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), + [anon_sym_async] = ACTIONS(356), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(358), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), + [anon_sym_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(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(115), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [anon_sym_static] = ACTIONS(372), + [anon_sym_union] = ACTIONS(360), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [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(272)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1544), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1520), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [sym_line_comment] = STATE(272), - [sym_block_comment] = STATE(272), - [sym_identifier] = ACTIONS(339), + [STATE(313)] = { + [sym_bracketed_type] = STATE(3752), + [sym_generic_function] = STATE(1492), + [sym_generic_type_with_turbofish] = STATE(3039), + [sym__expression_except_range] = STATE(1409), + [sym__expression] = STATE(1570), + [sym_macro_invocation] = STATE(1529), + [sym_scoped_identifier] = STATE(1540), + [sym_scoped_type_identifier_in_expression_position] = STATE(3335), + [sym_range_expression] = STATE(1505), + [sym_unary_expression] = STATE(1492), + [sym_try_expression] = STATE(1492), + [sym_reference_expression] = STATE(1492), + [sym_binary_expression] = STATE(1492), + [sym_assignment_expression] = STATE(1492), + [sym_compound_assignment_expr] = STATE(1492), + [sym_type_cast_expression] = STATE(1492), + [sym_return_expression] = STATE(1492), + [sym_yield_expression] = STATE(1492), + [sym_call_expression] = STATE(1492), + [sym_array_expression] = STATE(1492), + [sym_parenthesized_expression] = STATE(1492), + [sym_tuple_expression] = STATE(1492), + [sym_unit_expression] = STATE(1492), + [sym_struct_expression] = STATE(1492), + [sym_if_expression] = STATE(1492), + [sym_match_expression] = STATE(1492), + [sym_while_expression] = STATE(1492), + [sym_loop_expression] = STATE(1492), + [sym_for_expression] = STATE(1492), + [sym_const_block] = STATE(1492), + [sym_closure_expression] = STATE(1492), + [sym_closure_parameters] = STATE(229), + [sym_label] = STATE(3689), + [sym_break_expression] = STATE(1492), + [sym_continue_expression] = STATE(1492), + [sym_index_expression] = STATE(1492), + [sym_await_expression] = STATE(1492), + [sym_field_expression] = STATE(1412), + [sym_unsafe_block] = STATE(1492), + [sym_async_block] = STATE(1492), + [sym_gen_block] = STATE(1492), + [sym_try_block] = STATE(1492), + [sym_block] = STATE(1492), + [sym__literal] = STATE(1492), + [sym_string_literal] = STATE(1530), + [sym_raw_string_literal] = STATE(1530), + [sym_boolean_literal] = STATE(1530), + [sym_line_comment] = STATE(313), + [sym_block_comment] = STATE(313), + [sym_identifier] = ACTIONS(344), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(348), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -48187,95 +52917,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1061), + [anon_sym_DOT_DOT] = ACTIONS(1190), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), + [anon_sym_async] = ACTIONS(356), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(358), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), + [anon_sym_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(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(115), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [anon_sym_static] = ACTIONS(372), + [anon_sym_union] = ACTIONS(360), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [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(273)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1545), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1520), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [sym_line_comment] = STATE(273), - [sym_block_comment] = STATE(273), - [sym_identifier] = ACTIONS(339), + [STATE(314)] = { + [sym_bracketed_type] = STATE(3752), + [sym_generic_function] = STATE(1492), + [sym_generic_type_with_turbofish] = STATE(3039), + [sym__expression_except_range] = STATE(1409), + [sym__expression] = STATE(1517), + [sym_macro_invocation] = STATE(1529), + [sym_scoped_identifier] = STATE(1540), + [sym_scoped_type_identifier_in_expression_position] = STATE(3335), + [sym_range_expression] = STATE(1505), + [sym_unary_expression] = STATE(1492), + [sym_try_expression] = STATE(1492), + [sym_reference_expression] = STATE(1492), + [sym_binary_expression] = STATE(1492), + [sym_assignment_expression] = STATE(1492), + [sym_compound_assignment_expr] = STATE(1492), + [sym_type_cast_expression] = STATE(1492), + [sym_return_expression] = STATE(1492), + [sym_yield_expression] = STATE(1492), + [sym_call_expression] = STATE(1492), + [sym_array_expression] = STATE(1492), + [sym_parenthesized_expression] = STATE(1492), + [sym_tuple_expression] = STATE(1492), + [sym_unit_expression] = STATE(1492), + [sym_struct_expression] = STATE(1492), + [sym_if_expression] = STATE(1492), + [sym_match_expression] = STATE(1492), + [sym_while_expression] = STATE(1492), + [sym_loop_expression] = STATE(1492), + [sym_for_expression] = STATE(1492), + [sym_const_block] = STATE(1492), + [sym_closure_expression] = STATE(1492), + [sym_closure_parameters] = STATE(229), + [sym_label] = STATE(3689), + [sym_break_expression] = STATE(1492), + [sym_continue_expression] = STATE(1492), + [sym_index_expression] = STATE(1492), + [sym_await_expression] = STATE(1492), + [sym_field_expression] = STATE(1412), + [sym_unsafe_block] = STATE(1492), + [sym_async_block] = STATE(1492), + [sym_gen_block] = STATE(1492), + [sym_try_block] = STATE(1492), + [sym_block] = STATE(1492), + [sym__literal] = STATE(1492), + [sym_string_literal] = STATE(1530), + [sym_raw_string_literal] = STATE(1530), + [sym_boolean_literal] = STATE(1530), + [sym_line_comment] = STATE(314), + [sym_block_comment] = STATE(314), + [sym_identifier] = ACTIONS(344), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(348), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -48299,95 +53029,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1061), + [anon_sym_DOT_DOT] = ACTIONS(1190), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), + [anon_sym_async] = ACTIONS(356), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(358), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), + [anon_sym_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(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(115), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [anon_sym_static] = ACTIONS(372), + [anon_sym_union] = ACTIONS(360), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [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(274)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1546), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1520), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [sym_line_comment] = STATE(274), - [sym_block_comment] = STATE(274), - [sym_identifier] = ACTIONS(339), + [STATE(315)] = { + [sym_bracketed_type] = STATE(3752), + [sym_generic_function] = STATE(1492), + [sym_generic_type_with_turbofish] = STATE(3039), + [sym__expression_except_range] = STATE(1409), + [sym__expression] = STATE(1572), + [sym_macro_invocation] = STATE(1529), + [sym_scoped_identifier] = STATE(1540), + [sym_scoped_type_identifier_in_expression_position] = STATE(3335), + [sym_range_expression] = STATE(1505), + [sym_unary_expression] = STATE(1492), + [sym_try_expression] = STATE(1492), + [sym_reference_expression] = STATE(1492), + [sym_binary_expression] = STATE(1492), + [sym_assignment_expression] = STATE(1492), + [sym_compound_assignment_expr] = STATE(1492), + [sym_type_cast_expression] = STATE(1492), + [sym_return_expression] = STATE(1492), + [sym_yield_expression] = STATE(1492), + [sym_call_expression] = STATE(1492), + [sym_array_expression] = STATE(1492), + [sym_parenthesized_expression] = STATE(1492), + [sym_tuple_expression] = STATE(1492), + [sym_unit_expression] = STATE(1492), + [sym_struct_expression] = STATE(1492), + [sym_if_expression] = STATE(1492), + [sym_match_expression] = STATE(1492), + [sym_while_expression] = STATE(1492), + [sym_loop_expression] = STATE(1492), + [sym_for_expression] = STATE(1492), + [sym_const_block] = STATE(1492), + [sym_closure_expression] = STATE(1492), + [sym_closure_parameters] = STATE(229), + [sym_label] = STATE(3689), + [sym_break_expression] = STATE(1492), + [sym_continue_expression] = STATE(1492), + [sym_index_expression] = STATE(1492), + [sym_await_expression] = STATE(1492), + [sym_field_expression] = STATE(1412), + [sym_unsafe_block] = STATE(1492), + [sym_async_block] = STATE(1492), + [sym_gen_block] = STATE(1492), + [sym_try_block] = STATE(1492), + [sym_block] = STATE(1492), + [sym__literal] = STATE(1492), + [sym_string_literal] = STATE(1530), + [sym_raw_string_literal] = STATE(1530), + [sym_boolean_literal] = STATE(1530), + [sym_line_comment] = STATE(315), + [sym_block_comment] = STATE(315), + [sym_identifier] = ACTIONS(344), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(348), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -48411,95 +53141,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1061), + [anon_sym_DOT_DOT] = ACTIONS(1190), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), + [anon_sym_async] = ACTIONS(356), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(358), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), + [anon_sym_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(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(115), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [anon_sym_static] = ACTIONS(372), + [anon_sym_union] = ACTIONS(360), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [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(275)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1547), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1520), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [sym_line_comment] = STATE(275), - [sym_block_comment] = STATE(275), - [sym_identifier] = ACTIONS(339), + [STATE(316)] = { + [sym_bracketed_type] = STATE(3752), + [sym_generic_function] = STATE(1492), + [sym_generic_type_with_turbofish] = STATE(3039), + [sym__expression_except_range] = STATE(1409), + [sym__expression] = STATE(1550), + [sym_macro_invocation] = STATE(1529), + [sym_scoped_identifier] = STATE(1540), + [sym_scoped_type_identifier_in_expression_position] = STATE(3335), + [sym_range_expression] = STATE(1505), + [sym_unary_expression] = STATE(1492), + [sym_try_expression] = STATE(1492), + [sym_reference_expression] = STATE(1492), + [sym_binary_expression] = STATE(1492), + [sym_assignment_expression] = STATE(1492), + [sym_compound_assignment_expr] = STATE(1492), + [sym_type_cast_expression] = STATE(1492), + [sym_return_expression] = STATE(1492), + [sym_yield_expression] = STATE(1492), + [sym_call_expression] = STATE(1492), + [sym_array_expression] = STATE(1492), + [sym_parenthesized_expression] = STATE(1492), + [sym_tuple_expression] = STATE(1492), + [sym_unit_expression] = STATE(1492), + [sym_struct_expression] = STATE(1492), + [sym_if_expression] = STATE(1492), + [sym_match_expression] = STATE(1492), + [sym_while_expression] = STATE(1492), + [sym_loop_expression] = STATE(1492), + [sym_for_expression] = STATE(1492), + [sym_const_block] = STATE(1492), + [sym_closure_expression] = STATE(1492), + [sym_closure_parameters] = STATE(229), + [sym_label] = STATE(3689), + [sym_break_expression] = STATE(1492), + [sym_continue_expression] = STATE(1492), + [sym_index_expression] = STATE(1492), + [sym_await_expression] = STATE(1492), + [sym_field_expression] = STATE(1412), + [sym_unsafe_block] = STATE(1492), + [sym_async_block] = STATE(1492), + [sym_gen_block] = STATE(1492), + [sym_try_block] = STATE(1492), + [sym_block] = STATE(1492), + [sym__literal] = STATE(1492), + [sym_string_literal] = STATE(1530), + [sym_raw_string_literal] = STATE(1530), + [sym_boolean_literal] = STATE(1530), + [sym_line_comment] = STATE(316), + [sym_block_comment] = STATE(316), + [sym_identifier] = ACTIONS(344), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(348), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -48523,95 +53253,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1061), + [anon_sym_DOT_DOT] = ACTIONS(1190), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), + [anon_sym_async] = ACTIONS(356), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(358), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), + [anon_sym_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(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(115), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [anon_sym_static] = ACTIONS(372), + [anon_sym_union] = ACTIONS(360), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [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(276)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1549), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1520), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [sym_line_comment] = STATE(276), - [sym_block_comment] = STATE(276), - [sym_identifier] = ACTIONS(339), + [STATE(317)] = { + [sym_bracketed_type] = STATE(3752), + [sym_generic_function] = STATE(1492), + [sym_generic_type_with_turbofish] = STATE(3039), + [sym__expression_except_range] = STATE(1409), + [sym__expression] = STATE(1551), + [sym_macro_invocation] = STATE(1529), + [sym_scoped_identifier] = STATE(1540), + [sym_scoped_type_identifier_in_expression_position] = STATE(3335), + [sym_range_expression] = STATE(1505), + [sym_unary_expression] = STATE(1492), + [sym_try_expression] = STATE(1492), + [sym_reference_expression] = STATE(1492), + [sym_binary_expression] = STATE(1492), + [sym_assignment_expression] = STATE(1492), + [sym_compound_assignment_expr] = STATE(1492), + [sym_type_cast_expression] = STATE(1492), + [sym_return_expression] = STATE(1492), + [sym_yield_expression] = STATE(1492), + [sym_call_expression] = STATE(1492), + [sym_array_expression] = STATE(1492), + [sym_parenthesized_expression] = STATE(1492), + [sym_tuple_expression] = STATE(1492), + [sym_unit_expression] = STATE(1492), + [sym_struct_expression] = STATE(1492), + [sym_if_expression] = STATE(1492), + [sym_match_expression] = STATE(1492), + [sym_while_expression] = STATE(1492), + [sym_loop_expression] = STATE(1492), + [sym_for_expression] = STATE(1492), + [sym_const_block] = STATE(1492), + [sym_closure_expression] = STATE(1492), + [sym_closure_parameters] = STATE(229), + [sym_label] = STATE(3689), + [sym_break_expression] = STATE(1492), + [sym_continue_expression] = STATE(1492), + [sym_index_expression] = STATE(1492), + [sym_await_expression] = STATE(1492), + [sym_field_expression] = STATE(1412), + [sym_unsafe_block] = STATE(1492), + [sym_async_block] = STATE(1492), + [sym_gen_block] = STATE(1492), + [sym_try_block] = STATE(1492), + [sym_block] = STATE(1492), + [sym__literal] = STATE(1492), + [sym_string_literal] = STATE(1530), + [sym_raw_string_literal] = STATE(1530), + [sym_boolean_literal] = STATE(1530), + [sym_line_comment] = STATE(317), + [sym_block_comment] = STATE(317), + [sym_identifier] = ACTIONS(344), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(348), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -48635,95 +53365,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(1190), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), + [anon_sym_async] = ACTIONS(356), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(358), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), + [anon_sym_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(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(115), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [anon_sym_static] = ACTIONS(372), + [anon_sym_union] = ACTIONS(360), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [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(277)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1746), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1520), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [sym_line_comment] = STATE(277), - [sym_block_comment] = STATE(277), - [sym_identifier] = ACTIONS(339), + [STATE(318)] = { + [sym_bracketed_type] = STATE(3752), + [sym_generic_function] = STATE(1492), + [sym_generic_type_with_turbofish] = STATE(3039), + [sym__expression_except_range] = STATE(1409), + [sym__expression] = STATE(1552), + [sym_macro_invocation] = STATE(1529), + [sym_scoped_identifier] = STATE(1540), + [sym_scoped_type_identifier_in_expression_position] = STATE(3335), + [sym_range_expression] = STATE(1505), + [sym_unary_expression] = STATE(1492), + [sym_try_expression] = STATE(1492), + [sym_reference_expression] = STATE(1492), + [sym_binary_expression] = STATE(1492), + [sym_assignment_expression] = STATE(1492), + [sym_compound_assignment_expr] = STATE(1492), + [sym_type_cast_expression] = STATE(1492), + [sym_return_expression] = STATE(1492), + [sym_yield_expression] = STATE(1492), + [sym_call_expression] = STATE(1492), + [sym_array_expression] = STATE(1492), + [sym_parenthesized_expression] = STATE(1492), + [sym_tuple_expression] = STATE(1492), + [sym_unit_expression] = STATE(1492), + [sym_struct_expression] = STATE(1492), + [sym_if_expression] = STATE(1492), + [sym_match_expression] = STATE(1492), + [sym_while_expression] = STATE(1492), + [sym_loop_expression] = STATE(1492), + [sym_for_expression] = STATE(1492), + [sym_const_block] = STATE(1492), + [sym_closure_expression] = STATE(1492), + [sym_closure_parameters] = STATE(229), + [sym_label] = STATE(3689), + [sym_break_expression] = STATE(1492), + [sym_continue_expression] = STATE(1492), + [sym_index_expression] = STATE(1492), + [sym_await_expression] = STATE(1492), + [sym_field_expression] = STATE(1412), + [sym_unsafe_block] = STATE(1492), + [sym_async_block] = STATE(1492), + [sym_gen_block] = STATE(1492), + [sym_try_block] = STATE(1492), + [sym_block] = STATE(1492), + [sym__literal] = STATE(1492), + [sym_string_literal] = STATE(1530), + [sym_raw_string_literal] = STATE(1530), + [sym_boolean_literal] = STATE(1530), + [sym_line_comment] = STATE(318), + [sym_block_comment] = STATE(318), + [sym_identifier] = ACTIONS(344), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(348), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -48747,95 +53477,207 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(1190), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), + [anon_sym_async] = ACTIONS(356), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(358), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), + [anon_sym_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(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(115), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [anon_sym_static] = ACTIONS(372), + [anon_sym_union] = ACTIONS(360), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [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(278)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1934), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1520), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(470), - [sym_match_expression] = STATE(470), - [sym_while_expression] = STATE(470), - [sym_loop_expression] = STATE(470), - [sym_for_expression] = STATE(470), - [sym_const_block] = STATE(470), - [sym_closure_expression] = STATE(1504), + [STATE(319)] = { + [sym_bracketed_type] = STATE(3650), + [sym_generic_function] = STATE(1711), + [sym_generic_type_with_turbofish] = STATE(3091), + [sym__expression_except_range] = STATE(1658), + [sym__expression] = STATE(1861), + [sym_macro_invocation] = STATE(1717), + [sym_scoped_identifier] = STATE(1623), + [sym_scoped_type_identifier_in_expression_position] = STATE(3337), + [sym_range_expression] = STATE(1715), + [sym_unary_expression] = STATE(1711), + [sym_try_expression] = STATE(1711), + [sym_reference_expression] = STATE(1711), + [sym_binary_expression] = STATE(1711), + [sym_assignment_expression] = STATE(1711), + [sym_compound_assignment_expr] = STATE(1711), + [sym_type_cast_expression] = STATE(1711), + [sym_return_expression] = STATE(1711), + [sym_yield_expression] = STATE(1711), + [sym_call_expression] = STATE(1711), + [sym_array_expression] = STATE(1711), + [sym_parenthesized_expression] = STATE(1711), + [sym_tuple_expression] = STATE(1711), + [sym_unit_expression] = STATE(1711), + [sym_struct_expression] = STATE(1711), + [sym_if_expression] = STATE(1711), + [sym_match_expression] = STATE(1711), + [sym_while_expression] = STATE(1711), + [sym_loop_expression] = STATE(1711), + [sym_for_expression] = STATE(1711), + [sym_const_block] = STATE(1711), + [sym_closure_expression] = STATE(1711), [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(470), - [sym_async_block] = STATE(470), - [sym_gen_block] = STATE(470), - [sym_try_block] = STATE(470), - [sym_block] = STATE(470), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [sym_line_comment] = STATE(278), - [sym_block_comment] = STATE(278), - [sym_identifier] = ACTIONS(339), + [sym_label] = STATE(3742), + [sym_break_expression] = STATE(1711), + [sym_continue_expression] = STATE(1711), + [sym_index_expression] = STATE(1711), + [sym_await_expression] = STATE(1711), + [sym_field_expression] = STATE(1690), + [sym_unsafe_block] = STATE(1711), + [sym_async_block] = STATE(1711), + [sym_gen_block] = STATE(1711), + [sym_try_block] = STATE(1711), + [sym_block] = STATE(1711), + [sym__literal] = STATE(1711), + [sym_string_literal] = STATE(1831), + [sym_raw_string_literal] = STATE(1831), + [sym_boolean_literal] = STATE(1831), + [sym_line_comment] = STATE(319), + [sym_block_comment] = STATE(319), + [sym_identifier] = ACTIONS(410), + [anon_sym_LPAREN] = ACTIONS(498), + [anon_sym_LBRACK] = ACTIONS(500), + [anon_sym_LBRACE] = ACTIONS(412), + [anon_sym_STAR] = ACTIONS(990), + [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(990), + [anon_sym_BANG] = ACTIONS(990), + [anon_sym_AMP] = ACTIONS(992), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1176), + [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_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(320)] = { + [sym_bracketed_type] = STATE(3752), + [sym_generic_function] = STATE(1492), + [sym_generic_type_with_turbofish] = STATE(3039), + [sym__expression_except_range] = STATE(1409), + [sym__expression] = STATE(1553), + [sym_macro_invocation] = STATE(1529), + [sym_scoped_identifier] = STATE(1540), + [sym_scoped_type_identifier_in_expression_position] = STATE(3335), + [sym_range_expression] = STATE(1505), + [sym_unary_expression] = STATE(1492), + [sym_try_expression] = STATE(1492), + [sym_reference_expression] = STATE(1492), + [sym_binary_expression] = STATE(1492), + [sym_assignment_expression] = STATE(1492), + [sym_compound_assignment_expr] = STATE(1492), + [sym_type_cast_expression] = STATE(1492), + [sym_return_expression] = STATE(1492), + [sym_yield_expression] = STATE(1492), + [sym_call_expression] = STATE(1492), + [sym_array_expression] = STATE(1492), + [sym_parenthesized_expression] = STATE(1492), + [sym_tuple_expression] = STATE(1492), + [sym_unit_expression] = STATE(1492), + [sym_struct_expression] = STATE(1492), + [sym_if_expression] = STATE(1492), + [sym_match_expression] = STATE(1492), + [sym_while_expression] = STATE(1492), + [sym_loop_expression] = STATE(1492), + [sym_for_expression] = STATE(1492), + [sym_const_block] = STATE(1492), + [sym_closure_expression] = STATE(1492), + [sym_closure_parameters] = STATE(229), + [sym_label] = STATE(3689), + [sym_break_expression] = STATE(1492), + [sym_continue_expression] = STATE(1492), + [sym_index_expression] = STATE(1492), + [sym_await_expression] = STATE(1492), + [sym_field_expression] = STATE(1412), + [sym_unsafe_block] = STATE(1492), + [sym_async_block] = STATE(1492), + [sym_gen_block] = STATE(1492), + [sym_try_block] = STATE(1492), + [sym_block] = STATE(1492), + [sym__literal] = STATE(1492), + [sym_string_literal] = STATE(1530), + [sym_raw_string_literal] = STATE(1530), + [sym_boolean_literal] = STATE(1530), + [sym_line_comment] = STATE(320), + [sym_block_comment] = STATE(320), + [sym_identifier] = ACTIONS(344), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(1301), + [anon_sym_LBRACE] = ACTIONS(348), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -48859,95 +53701,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(1190), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(1303), + [anon_sym_async] = ACTIONS(356), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(1305), + [anon_sym_const] = ACTIONS(358), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(1307), - [anon_sym_gen] = ACTIONS(1309), - [anon_sym_if] = ACTIONS(1311), - [anon_sym_loop] = ACTIONS(1313), - [anon_sym_match] = ACTIONS(1315), + [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(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_while] = ACTIONS(1319), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(1321), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(115), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [anon_sym_static] = ACTIONS(372), + [anon_sym_union] = ACTIONS(360), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [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(279)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1940), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1520), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [sym_line_comment] = STATE(279), - [sym_block_comment] = STATE(279), - [sym_identifier] = ACTIONS(339), + [STATE(321)] = { + [sym_bracketed_type] = STATE(3752), + [sym_generic_function] = STATE(1492), + [sym_generic_type_with_turbofish] = STATE(3039), + [sym__expression_except_range] = STATE(1409), + [sym__expression] = STATE(1554), + [sym_macro_invocation] = STATE(1529), + [sym_scoped_identifier] = STATE(1540), + [sym_scoped_type_identifier_in_expression_position] = STATE(3335), + [sym_range_expression] = STATE(1505), + [sym_unary_expression] = STATE(1492), + [sym_try_expression] = STATE(1492), + [sym_reference_expression] = STATE(1492), + [sym_binary_expression] = STATE(1492), + [sym_assignment_expression] = STATE(1492), + [sym_compound_assignment_expr] = STATE(1492), + [sym_type_cast_expression] = STATE(1492), + [sym_return_expression] = STATE(1492), + [sym_yield_expression] = STATE(1492), + [sym_call_expression] = STATE(1492), + [sym_array_expression] = STATE(1492), + [sym_parenthesized_expression] = STATE(1492), + [sym_tuple_expression] = STATE(1492), + [sym_unit_expression] = STATE(1492), + [sym_struct_expression] = STATE(1492), + [sym_if_expression] = STATE(1492), + [sym_match_expression] = STATE(1492), + [sym_while_expression] = STATE(1492), + [sym_loop_expression] = STATE(1492), + [sym_for_expression] = STATE(1492), + [sym_const_block] = STATE(1492), + [sym_closure_expression] = STATE(1492), + [sym_closure_parameters] = STATE(229), + [sym_label] = STATE(3689), + [sym_break_expression] = STATE(1492), + [sym_continue_expression] = STATE(1492), + [sym_index_expression] = STATE(1492), + [sym_await_expression] = STATE(1492), + [sym_field_expression] = STATE(1412), + [sym_unsafe_block] = STATE(1492), + [sym_async_block] = STATE(1492), + [sym_gen_block] = STATE(1492), + [sym_try_block] = STATE(1492), + [sym_block] = STATE(1492), + [sym__literal] = STATE(1492), + [sym_string_literal] = STATE(1530), + [sym_raw_string_literal] = STATE(1530), + [sym_boolean_literal] = STATE(1530), + [sym_line_comment] = STATE(321), + [sym_block_comment] = STATE(321), + [sym_identifier] = ACTIONS(344), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(348), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -48971,95 +53813,431 @@ 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(1190), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), + [anon_sym_async] = ACTIONS(356), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(358), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), + [anon_sym_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(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(115), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [anon_sym_static] = ACTIONS(372), + [anon_sym_union] = ACTIONS(360), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [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(280)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1505), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1520), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), + [STATE(322)] = { + [sym_bracketed_type] = STATE(3650), + [sym_generic_function] = STATE(1711), + [sym_generic_type_with_turbofish] = STATE(3091), + [sym__expression_except_range] = STATE(1658), + [sym__expression] = STATE(1805), + [sym_macro_invocation] = STATE(1717), + [sym_scoped_identifier] = STATE(1623), + [sym_scoped_type_identifier_in_expression_position] = STATE(3337), + [sym_range_expression] = STATE(1715), + [sym_unary_expression] = STATE(1711), + [sym_try_expression] = STATE(1711), + [sym_reference_expression] = STATE(1711), + [sym_binary_expression] = STATE(1711), + [sym_assignment_expression] = STATE(1711), + [sym_compound_assignment_expr] = STATE(1711), + [sym_type_cast_expression] = STATE(1711), + [sym_return_expression] = STATE(1711), + [sym_yield_expression] = STATE(1711), + [sym_call_expression] = STATE(1711), + [sym_array_expression] = STATE(1711), + [sym_parenthesized_expression] = STATE(1711), + [sym_tuple_expression] = STATE(1711), + [sym_unit_expression] = STATE(1711), + [sym_struct_expression] = STATE(1711), + [sym_if_expression] = STATE(1711), + [sym_match_expression] = STATE(1711), + [sym_while_expression] = STATE(1711), + [sym_loop_expression] = STATE(1711), + [sym_for_expression] = STATE(1711), + [sym_const_block] = STATE(1711), + [sym_closure_expression] = STATE(1711), [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [sym_line_comment] = STATE(280), - [sym_block_comment] = STATE(280), - [sym_identifier] = ACTIONS(339), + [sym_label] = STATE(3742), + [sym_break_expression] = STATE(1711), + [sym_continue_expression] = STATE(1711), + [sym_index_expression] = STATE(1711), + [sym_await_expression] = STATE(1711), + [sym_field_expression] = STATE(1690), + [sym_unsafe_block] = STATE(1711), + [sym_async_block] = STATE(1711), + [sym_gen_block] = STATE(1711), + [sym_try_block] = STATE(1711), + [sym_block] = STATE(1711), + [sym__literal] = STATE(1711), + [sym_string_literal] = STATE(1831), + [sym_raw_string_literal] = STATE(1831), + [sym_boolean_literal] = STATE(1831), + [sym_line_comment] = STATE(322), + [sym_block_comment] = STATE(322), + [sym_identifier] = ACTIONS(410), + [anon_sym_LPAREN] = ACTIONS(498), + [anon_sym_LBRACK] = ACTIONS(500), + [anon_sym_LBRACE] = ACTIONS(412), + [anon_sym_STAR] = ACTIONS(990), + [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(990), + [anon_sym_BANG] = ACTIONS(990), + [anon_sym_AMP] = ACTIONS(992), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1176), + [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_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(323)] = { + [sym_bracketed_type] = STATE(3650), + [sym_generic_function] = STATE(1711), + [sym_generic_type_with_turbofish] = STATE(3091), + [sym__expression_except_range] = STATE(1658), + [sym__expression] = STATE(1714), + [sym_macro_invocation] = STATE(1717), + [sym_scoped_identifier] = STATE(1623), + [sym_scoped_type_identifier_in_expression_position] = STATE(3337), + [sym_range_expression] = STATE(1715), + [sym_unary_expression] = STATE(1711), + [sym_try_expression] = STATE(1711), + [sym_reference_expression] = STATE(1711), + [sym_binary_expression] = STATE(1711), + [sym_assignment_expression] = STATE(1711), + [sym_compound_assignment_expr] = STATE(1711), + [sym_type_cast_expression] = STATE(1711), + [sym_return_expression] = STATE(1711), + [sym_yield_expression] = STATE(1711), + [sym_call_expression] = STATE(1711), + [sym_array_expression] = STATE(1711), + [sym_parenthesized_expression] = STATE(1711), + [sym_tuple_expression] = STATE(1711), + [sym_unit_expression] = STATE(1711), + [sym_struct_expression] = STATE(1711), + [sym_if_expression] = STATE(1711), + [sym_match_expression] = STATE(1711), + [sym_while_expression] = STATE(1711), + [sym_loop_expression] = STATE(1711), + [sym_for_expression] = STATE(1711), + [sym_const_block] = STATE(1711), + [sym_closure_expression] = STATE(1711), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3742), + [sym_break_expression] = STATE(1711), + [sym_continue_expression] = STATE(1711), + [sym_index_expression] = STATE(1711), + [sym_await_expression] = STATE(1711), + [sym_field_expression] = STATE(1690), + [sym_unsafe_block] = STATE(1711), + [sym_async_block] = STATE(1711), + [sym_gen_block] = STATE(1711), + [sym_try_block] = STATE(1711), + [sym_block] = STATE(1711), + [sym__literal] = STATE(1711), + [sym_string_literal] = STATE(1831), + [sym_raw_string_literal] = STATE(1831), + [sym_boolean_literal] = STATE(1831), + [sym_line_comment] = STATE(323), + [sym_block_comment] = STATE(323), + [sym_identifier] = ACTIONS(410), + [anon_sym_LPAREN] = ACTIONS(498), + [anon_sym_LBRACK] = ACTIONS(500), + [anon_sym_LBRACE] = ACTIONS(412), + [anon_sym_STAR] = ACTIONS(990), + [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(990), + [anon_sym_BANG] = ACTIONS(990), + [anon_sym_AMP] = ACTIONS(992), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1176), + [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_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(324)] = { + [sym_bracketed_type] = STATE(3650), + [sym_generic_function] = STATE(1711), + [sym_generic_type_with_turbofish] = STATE(3091), + [sym__expression_except_range] = STATE(1658), + [sym__expression] = STATE(1806), + [sym_macro_invocation] = STATE(1717), + [sym_scoped_identifier] = STATE(1623), + [sym_scoped_type_identifier_in_expression_position] = STATE(3337), + [sym_range_expression] = STATE(1715), + [sym_unary_expression] = STATE(1711), + [sym_try_expression] = STATE(1711), + [sym_reference_expression] = STATE(1711), + [sym_binary_expression] = STATE(1711), + [sym_assignment_expression] = STATE(1711), + [sym_compound_assignment_expr] = STATE(1711), + [sym_type_cast_expression] = STATE(1711), + [sym_return_expression] = STATE(1711), + [sym_yield_expression] = STATE(1711), + [sym_call_expression] = STATE(1711), + [sym_array_expression] = STATE(1711), + [sym_parenthesized_expression] = STATE(1711), + [sym_tuple_expression] = STATE(1711), + [sym_unit_expression] = STATE(1711), + [sym_struct_expression] = STATE(1711), + [sym_if_expression] = STATE(1711), + [sym_match_expression] = STATE(1711), + [sym_while_expression] = STATE(1711), + [sym_loop_expression] = STATE(1711), + [sym_for_expression] = STATE(1711), + [sym_const_block] = STATE(1711), + [sym_closure_expression] = STATE(1711), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3742), + [sym_break_expression] = STATE(1711), + [sym_continue_expression] = STATE(1711), + [sym_index_expression] = STATE(1711), + [sym_await_expression] = STATE(1711), + [sym_field_expression] = STATE(1690), + [sym_unsafe_block] = STATE(1711), + [sym_async_block] = STATE(1711), + [sym_gen_block] = STATE(1711), + [sym_try_block] = STATE(1711), + [sym_block] = STATE(1711), + [sym__literal] = STATE(1711), + [sym_string_literal] = STATE(1831), + [sym_raw_string_literal] = STATE(1831), + [sym_boolean_literal] = STATE(1831), + [sym_line_comment] = STATE(324), + [sym_block_comment] = STATE(324), + [sym_identifier] = ACTIONS(410), + [anon_sym_LPAREN] = ACTIONS(498), + [anon_sym_LBRACK] = ACTIONS(500), + [anon_sym_LBRACE] = ACTIONS(412), + [anon_sym_STAR] = ACTIONS(990), + [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(990), + [anon_sym_BANG] = ACTIONS(990), + [anon_sym_AMP] = ACTIONS(992), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1176), + [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_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(325)] = { + [sym_bracketed_type] = STATE(3752), + [sym_generic_function] = STATE(1492), + [sym_generic_type_with_turbofish] = STATE(3039), + [sym__expression_except_range] = STATE(1409), + [sym__expression] = STATE(1731), + [sym_macro_invocation] = STATE(1529), + [sym_scoped_identifier] = STATE(1540), + [sym_scoped_type_identifier_in_expression_position] = STATE(3335), + [sym_range_expression] = STATE(1505), + [sym_unary_expression] = STATE(1492), + [sym_try_expression] = STATE(1492), + [sym_reference_expression] = STATE(1492), + [sym_binary_expression] = STATE(1492), + [sym_assignment_expression] = STATE(1492), + [sym_compound_assignment_expr] = STATE(1492), + [sym_type_cast_expression] = STATE(1492), + [sym_return_expression] = STATE(1492), + [sym_yield_expression] = STATE(1492), + [sym_call_expression] = STATE(1492), + [sym_array_expression] = STATE(1492), + [sym_parenthesized_expression] = STATE(1492), + [sym_tuple_expression] = STATE(1492), + [sym_unit_expression] = STATE(1492), + [sym_struct_expression] = STATE(1492), + [sym_if_expression] = STATE(1492), + [sym_match_expression] = STATE(1492), + [sym_while_expression] = STATE(1492), + [sym_loop_expression] = STATE(1492), + [sym_for_expression] = STATE(1492), + [sym_const_block] = STATE(1492), + [sym_closure_expression] = STATE(1492), + [sym_closure_parameters] = STATE(229), + [sym_label] = STATE(3689), + [sym_break_expression] = STATE(1492), + [sym_continue_expression] = STATE(1492), + [sym_index_expression] = STATE(1492), + [sym_await_expression] = STATE(1492), + [sym_field_expression] = STATE(1412), + [sym_unsafe_block] = STATE(1492), + [sym_async_block] = STATE(1492), + [sym_gen_block] = STATE(1492), + [sym_try_block] = STATE(1492), + [sym_block] = STATE(1492), + [sym__literal] = STATE(1492), + [sym_string_literal] = STATE(1530), + [sym_raw_string_literal] = STATE(1530), + [sym_boolean_literal] = STATE(1530), + [sym_line_comment] = STATE(325), + [sym_block_comment] = STATE(325), + [sym_identifier] = ACTIONS(344), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(348), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -49083,95 +54261,1327 @@ 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(1061), + [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), + [anon_sym_async] = ACTIONS(356), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(358), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), + [anon_sym_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(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(115), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [anon_sym_static] = ACTIONS(372), + [anon_sym_union] = ACTIONS(360), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [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(281)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1908), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1520), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), + [STATE(326)] = { + [sym_bracketed_type] = STATE(3650), + [sym_generic_function] = STATE(1711), + [sym_generic_type_with_turbofish] = STATE(3091), + [sym__expression_except_range] = STATE(1658), + [sym__expression] = STATE(1808), + [sym_macro_invocation] = STATE(1717), + [sym_scoped_identifier] = STATE(1623), + [sym_scoped_type_identifier_in_expression_position] = STATE(3337), + [sym_range_expression] = STATE(1715), + [sym_unary_expression] = STATE(1711), + [sym_try_expression] = STATE(1711), + [sym_reference_expression] = STATE(1711), + [sym_binary_expression] = STATE(1711), + [sym_assignment_expression] = STATE(1711), + [sym_compound_assignment_expr] = STATE(1711), + [sym_type_cast_expression] = STATE(1711), + [sym_return_expression] = STATE(1711), + [sym_yield_expression] = STATE(1711), + [sym_call_expression] = STATE(1711), + [sym_array_expression] = STATE(1711), + [sym_parenthesized_expression] = STATE(1711), + [sym_tuple_expression] = STATE(1711), + [sym_unit_expression] = STATE(1711), + [sym_struct_expression] = STATE(1711), + [sym_if_expression] = STATE(1711), + [sym_match_expression] = STATE(1711), + [sym_while_expression] = STATE(1711), + [sym_loop_expression] = STATE(1711), + [sym_for_expression] = STATE(1711), + [sym_const_block] = STATE(1711), + [sym_closure_expression] = STATE(1711), [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [sym_line_comment] = STATE(281), - [sym_block_comment] = STATE(281), - [sym_identifier] = ACTIONS(339), - [anon_sym_LPAREN] = ACTIONS(15), + [sym_label] = STATE(3742), + [sym_break_expression] = STATE(1711), + [sym_continue_expression] = STATE(1711), + [sym_index_expression] = STATE(1711), + [sym_await_expression] = STATE(1711), + [sym_field_expression] = STATE(1690), + [sym_unsafe_block] = STATE(1711), + [sym_async_block] = STATE(1711), + [sym_gen_block] = STATE(1711), + [sym_try_block] = STATE(1711), + [sym_block] = STATE(1711), + [sym__literal] = STATE(1711), + [sym_string_literal] = STATE(1831), + [sym_raw_string_literal] = STATE(1831), + [sym_boolean_literal] = STATE(1831), + [sym_line_comment] = STATE(326), + [sym_block_comment] = STATE(326), + [sym_identifier] = ACTIONS(410), + [anon_sym_LPAREN] = ACTIONS(498), + [anon_sym_LBRACK] = ACTIONS(500), + [anon_sym_LBRACE] = ACTIONS(412), + [anon_sym_STAR] = ACTIONS(990), + [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(990), + [anon_sym_BANG] = ACTIONS(990), + [anon_sym_AMP] = ACTIONS(992), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1176), + [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_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(327)] = { + [sym_bracketed_type] = STATE(3650), + [sym_generic_function] = STATE(1711), + [sym_generic_type_with_turbofish] = STATE(3091), + [sym__expression_except_range] = STATE(1658), + [sym__expression] = STATE(1809), + [sym_macro_invocation] = STATE(1717), + [sym_scoped_identifier] = STATE(1623), + [sym_scoped_type_identifier_in_expression_position] = STATE(3337), + [sym_range_expression] = STATE(1715), + [sym_unary_expression] = STATE(1711), + [sym_try_expression] = STATE(1711), + [sym_reference_expression] = STATE(1711), + [sym_binary_expression] = STATE(1711), + [sym_assignment_expression] = STATE(1711), + [sym_compound_assignment_expr] = STATE(1711), + [sym_type_cast_expression] = STATE(1711), + [sym_return_expression] = STATE(1711), + [sym_yield_expression] = STATE(1711), + [sym_call_expression] = STATE(1711), + [sym_array_expression] = STATE(1711), + [sym_parenthesized_expression] = STATE(1711), + [sym_tuple_expression] = STATE(1711), + [sym_unit_expression] = STATE(1711), + [sym_struct_expression] = STATE(1711), + [sym_if_expression] = STATE(1711), + [sym_match_expression] = STATE(1711), + [sym_while_expression] = STATE(1711), + [sym_loop_expression] = STATE(1711), + [sym_for_expression] = STATE(1711), + [sym_const_block] = STATE(1711), + [sym_closure_expression] = STATE(1711), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3742), + [sym_break_expression] = STATE(1711), + [sym_continue_expression] = STATE(1711), + [sym_index_expression] = STATE(1711), + [sym_await_expression] = STATE(1711), + [sym_field_expression] = STATE(1690), + [sym_unsafe_block] = STATE(1711), + [sym_async_block] = STATE(1711), + [sym_gen_block] = STATE(1711), + [sym_try_block] = STATE(1711), + [sym_block] = STATE(1711), + [sym__literal] = STATE(1711), + [sym_string_literal] = STATE(1831), + [sym_raw_string_literal] = STATE(1831), + [sym_boolean_literal] = STATE(1831), + [sym_line_comment] = STATE(327), + [sym_block_comment] = STATE(327), + [sym_identifier] = ACTIONS(410), + [anon_sym_LPAREN] = ACTIONS(498), + [anon_sym_LBRACK] = ACTIONS(500), + [anon_sym_LBRACE] = ACTIONS(412), + [anon_sym_STAR] = ACTIONS(990), + [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(990), + [anon_sym_BANG] = ACTIONS(990), + [anon_sym_AMP] = ACTIONS(992), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1176), + [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_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(328)] = { + [sym_bracketed_type] = STATE(3650), + [sym_generic_function] = STATE(1711), + [sym_generic_type_with_turbofish] = STATE(3091), + [sym__expression_except_range] = STATE(1658), + [sym__expression] = STATE(1810), + [sym_macro_invocation] = STATE(1717), + [sym_scoped_identifier] = STATE(1623), + [sym_scoped_type_identifier_in_expression_position] = STATE(3337), + [sym_range_expression] = STATE(1715), + [sym_unary_expression] = STATE(1711), + [sym_try_expression] = STATE(1711), + [sym_reference_expression] = STATE(1711), + [sym_binary_expression] = STATE(1711), + [sym_assignment_expression] = STATE(1711), + [sym_compound_assignment_expr] = STATE(1711), + [sym_type_cast_expression] = STATE(1711), + [sym_return_expression] = STATE(1711), + [sym_yield_expression] = STATE(1711), + [sym_call_expression] = STATE(1711), + [sym_array_expression] = STATE(1711), + [sym_parenthesized_expression] = STATE(1711), + [sym_tuple_expression] = STATE(1711), + [sym_unit_expression] = STATE(1711), + [sym_struct_expression] = STATE(1711), + [sym_if_expression] = STATE(1711), + [sym_match_expression] = STATE(1711), + [sym_while_expression] = STATE(1711), + [sym_loop_expression] = STATE(1711), + [sym_for_expression] = STATE(1711), + [sym_const_block] = STATE(1711), + [sym_closure_expression] = STATE(1711), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3742), + [sym_break_expression] = STATE(1711), + [sym_continue_expression] = STATE(1711), + [sym_index_expression] = STATE(1711), + [sym_await_expression] = STATE(1711), + [sym_field_expression] = STATE(1690), + [sym_unsafe_block] = STATE(1711), + [sym_async_block] = STATE(1711), + [sym_gen_block] = STATE(1711), + [sym_try_block] = STATE(1711), + [sym_block] = STATE(1711), + [sym__literal] = STATE(1711), + [sym_string_literal] = STATE(1831), + [sym_raw_string_literal] = STATE(1831), + [sym_boolean_literal] = STATE(1831), + [sym_line_comment] = STATE(328), + [sym_block_comment] = STATE(328), + [sym_identifier] = ACTIONS(410), + [anon_sym_LPAREN] = ACTIONS(498), + [anon_sym_LBRACK] = ACTIONS(500), + [anon_sym_LBRACE] = ACTIONS(412), + [anon_sym_STAR] = ACTIONS(990), + [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(990), + [anon_sym_BANG] = ACTIONS(990), + [anon_sym_AMP] = ACTIONS(992), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1176), + [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_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(329)] = { + [sym_bracketed_type] = STATE(3650), + [sym_generic_function] = STATE(1711), + [sym_generic_type_with_turbofish] = STATE(3091), + [sym__expression_except_range] = STATE(1658), + [sym__expression] = STATE(1811), + [sym_macro_invocation] = STATE(1717), + [sym_scoped_identifier] = STATE(1623), + [sym_scoped_type_identifier_in_expression_position] = STATE(3337), + [sym_range_expression] = STATE(1715), + [sym_unary_expression] = STATE(1711), + [sym_try_expression] = STATE(1711), + [sym_reference_expression] = STATE(1711), + [sym_binary_expression] = STATE(1711), + [sym_assignment_expression] = STATE(1711), + [sym_compound_assignment_expr] = STATE(1711), + [sym_type_cast_expression] = STATE(1711), + [sym_return_expression] = STATE(1711), + [sym_yield_expression] = STATE(1711), + [sym_call_expression] = STATE(1711), + [sym_array_expression] = STATE(1711), + [sym_parenthesized_expression] = STATE(1711), + [sym_tuple_expression] = STATE(1711), + [sym_unit_expression] = STATE(1711), + [sym_struct_expression] = STATE(1711), + [sym_if_expression] = STATE(1711), + [sym_match_expression] = STATE(1711), + [sym_while_expression] = STATE(1711), + [sym_loop_expression] = STATE(1711), + [sym_for_expression] = STATE(1711), + [sym_const_block] = STATE(1711), + [sym_closure_expression] = STATE(1711), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3742), + [sym_break_expression] = STATE(1711), + [sym_continue_expression] = STATE(1711), + [sym_index_expression] = STATE(1711), + [sym_await_expression] = STATE(1711), + [sym_field_expression] = STATE(1690), + [sym_unsafe_block] = STATE(1711), + [sym_async_block] = STATE(1711), + [sym_gen_block] = STATE(1711), + [sym_try_block] = STATE(1711), + [sym_block] = STATE(1711), + [sym__literal] = STATE(1711), + [sym_string_literal] = STATE(1831), + [sym_raw_string_literal] = STATE(1831), + [sym_boolean_literal] = STATE(1831), + [sym_line_comment] = STATE(329), + [sym_block_comment] = STATE(329), + [sym_identifier] = ACTIONS(410), + [anon_sym_LPAREN] = ACTIONS(498), + [anon_sym_LBRACK] = ACTIONS(500), + [anon_sym_LBRACE] = ACTIONS(412), + [anon_sym_STAR] = ACTIONS(990), + [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(990), + [anon_sym_BANG] = ACTIONS(990), + [anon_sym_AMP] = ACTIONS(992), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1176), + [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_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(330)] = { + [sym_bracketed_type] = STATE(3650), + [sym_generic_function] = STATE(1711), + [sym_generic_type_with_turbofish] = STATE(3091), + [sym__expression_except_range] = STATE(1658), + [sym__expression] = STATE(1812), + [sym_macro_invocation] = STATE(1717), + [sym_scoped_identifier] = STATE(1623), + [sym_scoped_type_identifier_in_expression_position] = STATE(3337), + [sym_range_expression] = STATE(1715), + [sym_unary_expression] = STATE(1711), + [sym_try_expression] = STATE(1711), + [sym_reference_expression] = STATE(1711), + [sym_binary_expression] = STATE(1711), + [sym_assignment_expression] = STATE(1711), + [sym_compound_assignment_expr] = STATE(1711), + [sym_type_cast_expression] = STATE(1711), + [sym_return_expression] = STATE(1711), + [sym_yield_expression] = STATE(1711), + [sym_call_expression] = STATE(1711), + [sym_array_expression] = STATE(1711), + [sym_parenthesized_expression] = STATE(1711), + [sym_tuple_expression] = STATE(1711), + [sym_unit_expression] = STATE(1711), + [sym_struct_expression] = STATE(1711), + [sym_if_expression] = STATE(1711), + [sym_match_expression] = STATE(1711), + [sym_while_expression] = STATE(1711), + [sym_loop_expression] = STATE(1711), + [sym_for_expression] = STATE(1711), + [sym_const_block] = STATE(1711), + [sym_closure_expression] = STATE(1711), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3742), + [sym_break_expression] = STATE(1711), + [sym_continue_expression] = STATE(1711), + [sym_index_expression] = STATE(1711), + [sym_await_expression] = STATE(1711), + [sym_field_expression] = STATE(1690), + [sym_unsafe_block] = STATE(1711), + [sym_async_block] = STATE(1711), + [sym_gen_block] = STATE(1711), + [sym_try_block] = STATE(1711), + [sym_block] = STATE(1711), + [sym__literal] = STATE(1711), + [sym_string_literal] = STATE(1831), + [sym_raw_string_literal] = STATE(1831), + [sym_boolean_literal] = STATE(1831), + [sym_line_comment] = STATE(330), + [sym_block_comment] = STATE(330), + [sym_identifier] = ACTIONS(410), + [anon_sym_LPAREN] = ACTIONS(498), + [anon_sym_LBRACK] = ACTIONS(500), + [anon_sym_LBRACE] = ACTIONS(412), + [anon_sym_STAR] = ACTIONS(990), + [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(990), + [anon_sym_BANG] = ACTIONS(990), + [anon_sym_AMP] = ACTIONS(992), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1176), + [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_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(331)] = { + [sym_bracketed_type] = STATE(3650), + [sym_generic_function] = STATE(1711), + [sym_generic_type_with_turbofish] = STATE(3091), + [sym__expression_except_range] = STATE(1658), + [sym__expression] = STATE(1813), + [sym_macro_invocation] = STATE(1717), + [sym_scoped_identifier] = STATE(1623), + [sym_scoped_type_identifier_in_expression_position] = STATE(3337), + [sym_range_expression] = STATE(1715), + [sym_unary_expression] = STATE(1711), + [sym_try_expression] = STATE(1711), + [sym_reference_expression] = STATE(1711), + [sym_binary_expression] = STATE(1711), + [sym_assignment_expression] = STATE(1711), + [sym_compound_assignment_expr] = STATE(1711), + [sym_type_cast_expression] = STATE(1711), + [sym_return_expression] = STATE(1711), + [sym_yield_expression] = STATE(1711), + [sym_call_expression] = STATE(1711), + [sym_array_expression] = STATE(1711), + [sym_parenthesized_expression] = STATE(1711), + [sym_tuple_expression] = STATE(1711), + [sym_unit_expression] = STATE(1711), + [sym_struct_expression] = STATE(1711), + [sym_if_expression] = STATE(1711), + [sym_match_expression] = STATE(1711), + [sym_while_expression] = STATE(1711), + [sym_loop_expression] = STATE(1711), + [sym_for_expression] = STATE(1711), + [sym_const_block] = STATE(1711), + [sym_closure_expression] = STATE(1711), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3742), + [sym_break_expression] = STATE(1711), + [sym_continue_expression] = STATE(1711), + [sym_index_expression] = STATE(1711), + [sym_await_expression] = STATE(1711), + [sym_field_expression] = STATE(1690), + [sym_unsafe_block] = STATE(1711), + [sym_async_block] = STATE(1711), + [sym_gen_block] = STATE(1711), + [sym_try_block] = STATE(1711), + [sym_block] = STATE(1711), + [sym__literal] = STATE(1711), + [sym_string_literal] = STATE(1831), + [sym_raw_string_literal] = STATE(1831), + [sym_boolean_literal] = STATE(1831), + [sym_line_comment] = STATE(331), + [sym_block_comment] = STATE(331), + [sym_identifier] = ACTIONS(410), + [anon_sym_LPAREN] = ACTIONS(498), + [anon_sym_LBRACK] = ACTIONS(500), + [anon_sym_LBRACE] = ACTIONS(412), + [anon_sym_STAR] = ACTIONS(990), + [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(990), + [anon_sym_BANG] = ACTIONS(990), + [anon_sym_AMP] = ACTIONS(992), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1176), + [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_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(332)] = { + [sym_bracketed_type] = STATE(3650), + [sym_generic_function] = STATE(1711), + [sym_generic_type_with_turbofish] = STATE(3091), + [sym__expression_except_range] = STATE(1658), + [sym__expression] = STATE(1814), + [sym_macro_invocation] = STATE(1717), + [sym_scoped_identifier] = STATE(1623), + [sym_scoped_type_identifier_in_expression_position] = STATE(3337), + [sym_range_expression] = STATE(1715), + [sym_unary_expression] = STATE(1711), + [sym_try_expression] = STATE(1711), + [sym_reference_expression] = STATE(1711), + [sym_binary_expression] = STATE(1711), + [sym_assignment_expression] = STATE(1711), + [sym_compound_assignment_expr] = STATE(1711), + [sym_type_cast_expression] = STATE(1711), + [sym_return_expression] = STATE(1711), + [sym_yield_expression] = STATE(1711), + [sym_call_expression] = STATE(1711), + [sym_array_expression] = STATE(1711), + [sym_parenthesized_expression] = STATE(1711), + [sym_tuple_expression] = STATE(1711), + [sym_unit_expression] = STATE(1711), + [sym_struct_expression] = STATE(1711), + [sym_if_expression] = STATE(1711), + [sym_match_expression] = STATE(1711), + [sym_while_expression] = STATE(1711), + [sym_loop_expression] = STATE(1711), + [sym_for_expression] = STATE(1711), + [sym_const_block] = STATE(1711), + [sym_closure_expression] = STATE(1711), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3742), + [sym_break_expression] = STATE(1711), + [sym_continue_expression] = STATE(1711), + [sym_index_expression] = STATE(1711), + [sym_await_expression] = STATE(1711), + [sym_field_expression] = STATE(1690), + [sym_unsafe_block] = STATE(1711), + [sym_async_block] = STATE(1711), + [sym_gen_block] = STATE(1711), + [sym_try_block] = STATE(1711), + [sym_block] = STATE(1711), + [sym__literal] = STATE(1711), + [sym_string_literal] = STATE(1831), + [sym_raw_string_literal] = STATE(1831), + [sym_boolean_literal] = STATE(1831), + [sym_line_comment] = STATE(332), + [sym_block_comment] = STATE(332), + [sym_identifier] = ACTIONS(410), + [anon_sym_LPAREN] = ACTIONS(498), + [anon_sym_LBRACK] = ACTIONS(500), + [anon_sym_LBRACE] = ACTIONS(412), + [anon_sym_STAR] = ACTIONS(990), + [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(990), + [anon_sym_BANG] = ACTIONS(990), + [anon_sym_AMP] = ACTIONS(992), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1176), + [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_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(333)] = { + [sym_bracketed_type] = STATE(3752), + [sym_generic_function] = STATE(1492), + [sym_generic_type_with_turbofish] = STATE(3085), + [sym__expression_except_range] = STATE(1409), + [sym__expression] = STATE(1752), + [sym_macro_invocation] = STATE(1529), + [sym_scoped_identifier] = STATE(1604), + [sym_scoped_type_identifier_in_expression_position] = STATE(3335), + [sym_range_expression] = STATE(1505), + [sym_unary_expression] = STATE(1492), + [sym_try_expression] = STATE(1492), + [sym_reference_expression] = STATE(1492), + [sym_binary_expression] = STATE(1492), + [sym_assignment_expression] = STATE(1492), + [sym_compound_assignment_expr] = STATE(1492), + [sym_type_cast_expression] = STATE(1492), + [sym_return_expression] = STATE(1492), + [sym_yield_expression] = STATE(1492), + [sym_call_expression] = STATE(1492), + [sym_array_expression] = STATE(1492), + [sym_parenthesized_expression] = STATE(1492), + [sym_tuple_expression] = STATE(1492), + [sym_unit_expression] = STATE(1492), + [sym_struct_expression] = STATE(1492), + [sym_if_expression] = STATE(1492), + [sym_match_expression] = STATE(1492), + [sym_while_expression] = STATE(1492), + [sym_loop_expression] = STATE(1492), + [sym_for_expression] = STATE(1492), + [sym_const_block] = STATE(1492), + [sym_closure_expression] = STATE(1492), + [sym_closure_parameters] = STATE(235), + [sym_label] = STATE(3689), + [sym_break_expression] = STATE(1492), + [sym_continue_expression] = STATE(1492), + [sym_index_expression] = STATE(1492), + [sym_await_expression] = STATE(1492), + [sym_field_expression] = STATE(1412), + [sym_unsafe_block] = STATE(1492), + [sym_async_block] = STATE(1492), + [sym_gen_block] = STATE(1492), + [sym_try_block] = STATE(1492), + [sym_block] = STATE(1492), + [sym__literal] = STATE(1492), + [sym_string_literal] = STATE(1530), + [sym_raw_string_literal] = STATE(1530), + [sym_boolean_literal] = STATE(1530), + [sym_line_comment] = STATE(333), + [sym_block_comment] = STATE(333), + [sym_identifier] = ACTIONS(470), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(348), + [anon_sym_STAR] = ACTIONS(1196), + [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(1196), + [anon_sym_BANG] = ACTIONS(1196), + [anon_sym_AMP] = ACTIONS(1198), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1394), + [anon_sym_COLON_COLON] = ACTIONS(476), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(356), + [anon_sym_break] = ACTIONS(478), + [anon_sym_const] = ACTIONS(358), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(480), + [anon_sym_for] = ACTIONS(362), + [anon_sym_gen] = ACTIONS(482), + [anon_sym_if] = ACTIONS(366), + [anon_sym_loop] = ACTIONS(368), + [anon_sym_match] = ACTIONS(370), + [anon_sym_return] = ACTIONS(484), + [anon_sym_static] = ACTIONS(486), + [anon_sym_union] = ACTIONS(480), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [anon_sym_yield] = ACTIONS(488), + [anon_sym_move] = ACTIONS(490), + [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(492), + [sym_super] = ACTIONS(494), + [sym_crate] = ACTIONS(494), + [sym_metavariable] = ACTIONS(496), + [sym__raw_string_literal_start] = ACTIONS(119), + [sym_float_literal] = ACTIONS(99), + }, + [STATE(334)] = { + [sym_bracketed_type] = STATE(3650), + [sym_generic_function] = STATE(1711), + [sym_generic_type_with_turbofish] = STATE(3091), + [sym__expression_except_range] = STATE(1658), + [sym__expression] = STATE(1732), + [sym_macro_invocation] = STATE(1717), + [sym_scoped_identifier] = STATE(1623), + [sym_scoped_type_identifier_in_expression_position] = STATE(3337), + [sym_range_expression] = STATE(1715), + [sym_unary_expression] = STATE(1711), + [sym_try_expression] = STATE(1711), + [sym_reference_expression] = STATE(1711), + [sym_binary_expression] = STATE(1711), + [sym_assignment_expression] = STATE(1711), + [sym_compound_assignment_expr] = STATE(1711), + [sym_type_cast_expression] = STATE(1711), + [sym_return_expression] = STATE(1711), + [sym_yield_expression] = STATE(1711), + [sym_call_expression] = STATE(1711), + [sym_array_expression] = STATE(1711), + [sym_parenthesized_expression] = STATE(1711), + [sym_tuple_expression] = STATE(1711), + [sym_unit_expression] = STATE(1711), + [sym_struct_expression] = STATE(1711), + [sym_if_expression] = STATE(1711), + [sym_match_expression] = STATE(1711), + [sym_while_expression] = STATE(1711), + [sym_loop_expression] = STATE(1711), + [sym_for_expression] = STATE(1711), + [sym_const_block] = STATE(1711), + [sym_closure_expression] = STATE(1711), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3742), + [sym_break_expression] = STATE(1711), + [sym_continue_expression] = STATE(1711), + [sym_index_expression] = STATE(1711), + [sym_await_expression] = STATE(1711), + [sym_field_expression] = STATE(1690), + [sym_unsafe_block] = STATE(1711), + [sym_async_block] = STATE(1711), + [sym_gen_block] = STATE(1711), + [sym_try_block] = STATE(1711), + [sym_block] = STATE(1711), + [sym__literal] = STATE(1711), + [sym_string_literal] = STATE(1831), + [sym_raw_string_literal] = STATE(1831), + [sym_boolean_literal] = STATE(1831), + [sym_line_comment] = STATE(334), + [sym_block_comment] = STATE(334), + [sym_identifier] = ACTIONS(410), + [anon_sym_LPAREN] = ACTIONS(498), + [anon_sym_LBRACK] = ACTIONS(500), + [anon_sym_LBRACE] = ACTIONS(412), + [anon_sym_STAR] = ACTIONS(990), + [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(990), + [anon_sym_BANG] = ACTIONS(990), + [anon_sym_AMP] = ACTIONS(992), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1176), + [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_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(335)] = { + [sym_bracketed_type] = STATE(3752), + [sym_generic_function] = STATE(1492), + [sym_generic_type_with_turbofish] = STATE(3085), + [sym__expression_except_range] = STATE(1409), + [sym__expression] = STATE(1795), + [sym_macro_invocation] = STATE(1529), + [sym_scoped_identifier] = STATE(1604), + [sym_scoped_type_identifier_in_expression_position] = STATE(3335), + [sym_range_expression] = STATE(1505), + [sym_unary_expression] = STATE(1492), + [sym_try_expression] = STATE(1492), + [sym_reference_expression] = STATE(1492), + [sym_binary_expression] = STATE(1492), + [sym_assignment_expression] = STATE(1492), + [sym_compound_assignment_expr] = STATE(1492), + [sym_type_cast_expression] = STATE(1492), + [sym_return_expression] = STATE(1492), + [sym_yield_expression] = STATE(1492), + [sym_call_expression] = STATE(1492), + [sym_array_expression] = STATE(1492), + [sym_parenthesized_expression] = STATE(1492), + [sym_tuple_expression] = STATE(1492), + [sym_unit_expression] = STATE(1492), + [sym_struct_expression] = STATE(1492), + [sym_if_expression] = STATE(1492), + [sym_match_expression] = STATE(1492), + [sym_while_expression] = STATE(1492), + [sym_loop_expression] = STATE(1492), + [sym_for_expression] = STATE(1492), + [sym_const_block] = STATE(1492), + [sym_closure_expression] = STATE(1492), + [sym_closure_parameters] = STATE(221), + [sym_label] = STATE(3689), + [sym_break_expression] = STATE(1492), + [sym_continue_expression] = STATE(1492), + [sym_index_expression] = STATE(1492), + [sym_await_expression] = STATE(1492), + [sym_field_expression] = STATE(1412), + [sym_unsafe_block] = STATE(1492), + [sym_async_block] = STATE(1492), + [sym_gen_block] = STATE(1492), + [sym_try_block] = STATE(1492), + [sym_block] = STATE(1492), + [sym__literal] = STATE(1492), + [sym_string_literal] = STATE(1530), + [sym_raw_string_literal] = STATE(1530), + [sym_boolean_literal] = STATE(1530), + [sym_line_comment] = STATE(335), + [sym_block_comment] = STATE(335), + [sym_identifier] = ACTIONS(470), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(348), + [anon_sym_STAR] = ACTIONS(978), + [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(978), + [anon_sym_BANG] = ACTIONS(978), + [anon_sym_AMP] = ACTIONS(980), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(982), + [anon_sym_COLON_COLON] = ACTIONS(476), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(356), + [anon_sym_break] = ACTIONS(510), + [anon_sym_const] = ACTIONS(358), + [anon_sym_continue] = ACTIONS(512), + [anon_sym_default] = ACTIONS(480), + [anon_sym_for] = ACTIONS(362), + [anon_sym_gen] = ACTIONS(514), + [anon_sym_if] = ACTIONS(366), + [anon_sym_loop] = ACTIONS(368), + [anon_sym_match] = ACTIONS(370), + [anon_sym_return] = ACTIONS(516), + [anon_sym_static] = ACTIONS(518), + [anon_sym_union] = ACTIONS(480), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [anon_sym_yield] = ACTIONS(520), + [anon_sym_move] = ACTIONS(522), + [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(492), + [sym_super] = ACTIONS(494), + [sym_crate] = ACTIONS(494), + [sym_metavariable] = ACTIONS(496), + [sym__raw_string_literal_start] = ACTIONS(119), + [sym_float_literal] = ACTIONS(99), + }, + [STATE(336)] = { + [sym_bracketed_type] = STATE(3752), + [sym_generic_function] = STATE(1492), + [sym_generic_type_with_turbofish] = STATE(3085), + [sym__expression_except_range] = STATE(1409), + [sym__expression] = STATE(1666), + [sym_macro_invocation] = STATE(1529), + [sym_scoped_identifier] = STATE(1604), + [sym_scoped_type_identifier_in_expression_position] = STATE(3335), + [sym_range_expression] = STATE(1505), + [sym_unary_expression] = STATE(1492), + [sym_try_expression] = STATE(1492), + [sym_reference_expression] = STATE(1492), + [sym_binary_expression] = STATE(1492), + [sym_assignment_expression] = STATE(1492), + [sym_compound_assignment_expr] = STATE(1492), + [sym_type_cast_expression] = STATE(1492), + [sym_return_expression] = STATE(1492), + [sym_yield_expression] = STATE(1492), + [sym_call_expression] = STATE(1492), + [sym_array_expression] = STATE(1492), + [sym_parenthesized_expression] = STATE(1492), + [sym_tuple_expression] = STATE(1492), + [sym_unit_expression] = STATE(1492), + [sym_struct_expression] = STATE(1492), + [sym_if_expression] = STATE(1492), + [sym_match_expression] = STATE(1492), + [sym_while_expression] = STATE(1492), + [sym_loop_expression] = STATE(1492), + [sym_for_expression] = STATE(1492), + [sym_const_block] = STATE(1492), + [sym_closure_expression] = STATE(1492), + [sym_closure_parameters] = STATE(221), + [sym_label] = STATE(3689), + [sym_break_expression] = STATE(1492), + [sym_continue_expression] = STATE(1492), + [sym_index_expression] = STATE(1492), + [sym_await_expression] = STATE(1492), + [sym_field_expression] = STATE(1412), + [sym_unsafe_block] = STATE(1492), + [sym_async_block] = STATE(1492), + [sym_gen_block] = STATE(1492), + [sym_try_block] = STATE(1492), + [sym_block] = STATE(1492), + [sym__literal] = STATE(1492), + [sym_string_literal] = STATE(1530), + [sym_raw_string_literal] = STATE(1530), + [sym_boolean_literal] = STATE(1530), + [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(978), + [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(978), + [anon_sym_BANG] = ACTIONS(978), + [anon_sym_AMP] = ACTIONS(980), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1170), + [anon_sym_COLON_COLON] = ACTIONS(476), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(356), + [anon_sym_break] = ACTIONS(510), + [anon_sym_const] = ACTIONS(358), + [anon_sym_continue] = ACTIONS(512), + [anon_sym_default] = ACTIONS(480), + [anon_sym_for] = ACTIONS(362), + [anon_sym_gen] = ACTIONS(514), + [anon_sym_if] = ACTIONS(366), + [anon_sym_loop] = ACTIONS(368), + [anon_sym_match] = ACTIONS(370), + [anon_sym_return] = ACTIONS(516), + [anon_sym_static] = ACTIONS(518), + [anon_sym_union] = ACTIONS(480), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [anon_sym_yield] = ACTIONS(520), + [anon_sym_move] = ACTIONS(522), + [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(492), + [sym_super] = ACTIONS(494), + [sym_crate] = ACTIONS(494), + [sym_metavariable] = ACTIONS(496), + [sym__raw_string_literal_start] = ACTIONS(119), + [sym_float_literal] = ACTIONS(99), + }, + [STATE(337)] = { + [sym_bracketed_type] = STATE(3752), + [sym_generic_function] = STATE(1492), + [sym_generic_type_with_turbofish] = STATE(3039), + [sym__expression_except_range] = STATE(1409), + [sym__expression] = STATE(1845), + [sym_macro_invocation] = STATE(1529), + [sym_scoped_identifier] = STATE(1540), + [sym_scoped_type_identifier_in_expression_position] = STATE(3335), + [sym_range_expression] = STATE(1505), + [sym_unary_expression] = STATE(1492), + [sym_try_expression] = STATE(1492), + [sym_reference_expression] = STATE(1492), + [sym_binary_expression] = STATE(1492), + [sym_assignment_expression] = STATE(1492), + [sym_compound_assignment_expr] = STATE(1492), + [sym_type_cast_expression] = STATE(1492), + [sym_return_expression] = STATE(1492), + [sym_yield_expression] = STATE(1492), + [sym_call_expression] = STATE(1492), + [sym_array_expression] = STATE(1492), + [sym_parenthesized_expression] = STATE(1492), + [sym_tuple_expression] = STATE(1492), + [sym_unit_expression] = STATE(1492), + [sym_struct_expression] = STATE(1492), + [sym_if_expression] = STATE(1492), + [sym_match_expression] = STATE(1492), + [sym_while_expression] = STATE(1492), + [sym_loop_expression] = STATE(1492), + [sym_for_expression] = STATE(1492), + [sym_const_block] = STATE(1492), + [sym_closure_expression] = STATE(1492), + [sym_closure_parameters] = STATE(229), + [sym_label] = STATE(3689), + [sym_break_expression] = STATE(1492), + [sym_continue_expression] = STATE(1492), + [sym_index_expression] = STATE(1492), + [sym_await_expression] = STATE(1492), + [sym_field_expression] = STATE(1412), + [sym_unsafe_block] = STATE(1492), + [sym_async_block] = STATE(1492), + [sym_gen_block] = STATE(1492), + [sym_try_block] = STATE(1492), + [sym_block] = STATE(1492), + [sym__literal] = STATE(1492), + [sym_string_literal] = STATE(1530), + [sym_raw_string_literal] = STATE(1530), + [sym_boolean_literal] = STATE(1530), + [sym_line_comment] = STATE(337), + [sym_block_comment] = STATE(337), + [sym_identifier] = ACTIONS(344), + [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(348), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -49198,92 +55608,540 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), + [anon_sym_async] = ACTIONS(356), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(358), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), + [anon_sym_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(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(115), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [anon_sym_static] = ACTIONS(372), + [anon_sym_union] = ACTIONS(360), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [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(282)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1907), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1520), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(480), - [sym_match_expression] = STATE(480), - [sym_while_expression] = STATE(480), - [sym_loop_expression] = STATE(480), - [sym_for_expression] = STATE(480), - [sym_const_block] = STATE(480), - [sym_closure_expression] = STATE(1504), + [STATE(338)] = { + [sym_bracketed_type] = STATE(3752), + [sym_generic_function] = STATE(1492), + [sym_generic_type_with_turbofish] = STATE(3085), + [sym__expression_except_range] = STATE(1409), + [sym__expression] = STATE(1752), + [sym_macro_invocation] = STATE(1529), + [sym_scoped_identifier] = STATE(1604), + [sym_scoped_type_identifier_in_expression_position] = STATE(3335), + [sym_range_expression] = STATE(1505), + [sym_unary_expression] = STATE(1492), + [sym_try_expression] = STATE(1492), + [sym_reference_expression] = STATE(1492), + [sym_binary_expression] = STATE(1492), + [sym_assignment_expression] = STATE(1492), + [sym_compound_assignment_expr] = STATE(1492), + [sym_type_cast_expression] = STATE(1492), + [sym_return_expression] = STATE(1492), + [sym_yield_expression] = STATE(1492), + [sym_call_expression] = STATE(1492), + [sym_array_expression] = STATE(1492), + [sym_parenthesized_expression] = STATE(1492), + [sym_tuple_expression] = STATE(1492), + [sym_unit_expression] = STATE(1492), + [sym_struct_expression] = STATE(1492), + [sym_if_expression] = STATE(1492), + [sym_match_expression] = STATE(1492), + [sym_while_expression] = STATE(1492), + [sym_loop_expression] = STATE(1492), + [sym_for_expression] = STATE(1492), + [sym_const_block] = STATE(1492), + [sym_closure_expression] = STATE(1492), + [sym_closure_parameters] = STATE(235), + [sym_label] = STATE(3689), + [sym_break_expression] = STATE(1492), + [sym_continue_expression] = STATE(1492), + [sym_index_expression] = STATE(1492), + [sym_await_expression] = STATE(1492), + [sym_field_expression] = STATE(1412), + [sym_unsafe_block] = STATE(1492), + [sym_async_block] = STATE(1492), + [sym_gen_block] = STATE(1492), + [sym_try_block] = STATE(1492), + [sym_block] = STATE(1492), + [sym__literal] = STATE(1492), + [sym_string_literal] = STATE(1530), + [sym_raw_string_literal] = STATE(1530), + [sym_boolean_literal] = STATE(1530), + [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(1196), + [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(1196), + [anon_sym_BANG] = ACTIONS(1196), + [anon_sym_AMP] = ACTIONS(1198), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1200), + [anon_sym_COLON_COLON] = ACTIONS(476), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(356), + [anon_sym_break] = ACTIONS(478), + [anon_sym_const] = ACTIONS(358), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(480), + [anon_sym_for] = ACTIONS(362), + [anon_sym_gen] = ACTIONS(482), + [anon_sym_if] = ACTIONS(366), + [anon_sym_loop] = ACTIONS(368), + [anon_sym_match] = ACTIONS(370), + [anon_sym_return] = ACTIONS(484), + [anon_sym_static] = ACTIONS(486), + [anon_sym_union] = ACTIONS(480), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [anon_sym_yield] = ACTIONS(488), + [anon_sym_move] = ACTIONS(490), + [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(492), + [sym_super] = ACTIONS(494), + [sym_crate] = ACTIONS(494), + [sym_metavariable] = ACTIONS(496), + [sym__raw_string_literal_start] = ACTIONS(119), + [sym_float_literal] = ACTIONS(99), + }, + [STATE(339)] = { + [sym_bracketed_type] = STATE(3650), + [sym_generic_function] = STATE(1711), + [sym_generic_type_with_turbofish] = STATE(3091), + [sym__expression_except_range] = STATE(1658), + [sym__expression] = STATE(1815), + [sym_macro_invocation] = STATE(1717), + [sym_scoped_identifier] = STATE(1623), + [sym_scoped_type_identifier_in_expression_position] = STATE(3337), + [sym_range_expression] = STATE(1715), + [sym_unary_expression] = STATE(1711), + [sym_try_expression] = STATE(1711), + [sym_reference_expression] = STATE(1711), + [sym_binary_expression] = STATE(1711), + [sym_assignment_expression] = STATE(1711), + [sym_compound_assignment_expr] = STATE(1711), + [sym_type_cast_expression] = STATE(1711), + [sym_return_expression] = STATE(1711), + [sym_yield_expression] = STATE(1711), + [sym_call_expression] = STATE(1711), + [sym_array_expression] = STATE(1711), + [sym_parenthesized_expression] = STATE(1711), + [sym_tuple_expression] = STATE(1711), + [sym_unit_expression] = STATE(1711), + [sym_struct_expression] = STATE(1711), + [sym_if_expression] = STATE(1711), + [sym_match_expression] = STATE(1711), + [sym_while_expression] = STATE(1711), + [sym_loop_expression] = STATE(1711), + [sym_for_expression] = STATE(1711), + [sym_const_block] = STATE(1711), + [sym_closure_expression] = STATE(1711), [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(480), - [sym_async_block] = STATE(480), - [sym_gen_block] = STATE(480), - [sym_try_block] = STATE(480), - [sym_block] = STATE(480), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [sym_line_comment] = STATE(282), - [sym_block_comment] = STATE(282), - [sym_identifier] = ACTIONS(339), + [sym_label] = STATE(3742), + [sym_break_expression] = STATE(1711), + [sym_continue_expression] = STATE(1711), + [sym_index_expression] = STATE(1711), + [sym_await_expression] = STATE(1711), + [sym_field_expression] = STATE(1690), + [sym_unsafe_block] = STATE(1711), + [sym_async_block] = STATE(1711), + [sym_gen_block] = STATE(1711), + [sym_try_block] = STATE(1711), + [sym_block] = STATE(1711), + [sym__literal] = STATE(1711), + [sym_string_literal] = STATE(1831), + [sym_raw_string_literal] = STATE(1831), + [sym_boolean_literal] = STATE(1831), + [sym_line_comment] = STATE(339), + [sym_block_comment] = STATE(339), + [sym_identifier] = ACTIONS(410), + [anon_sym_LPAREN] = ACTIONS(498), + [anon_sym_LBRACK] = ACTIONS(500), + [anon_sym_LBRACE] = ACTIONS(412), + [anon_sym_STAR] = ACTIONS(990), + [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(990), + [anon_sym_BANG] = ACTIONS(990), + [anon_sym_AMP] = ACTIONS(992), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(994), + [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_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(340)] = { + [sym_bracketed_type] = STATE(3650), + [sym_generic_function] = STATE(1711), + [sym_generic_type_with_turbofish] = STATE(3091), + [sym__expression_except_range] = STATE(1658), + [sym__expression] = STATE(1815), + [sym_macro_invocation] = STATE(1717), + [sym_scoped_identifier] = STATE(1623), + [sym_scoped_type_identifier_in_expression_position] = STATE(3337), + [sym_range_expression] = STATE(1715), + [sym_unary_expression] = STATE(1711), + [sym_try_expression] = STATE(1711), + [sym_reference_expression] = STATE(1711), + [sym_binary_expression] = STATE(1711), + [sym_assignment_expression] = STATE(1711), + [sym_compound_assignment_expr] = STATE(1711), + [sym_type_cast_expression] = STATE(1711), + [sym_return_expression] = STATE(1711), + [sym_yield_expression] = STATE(1711), + [sym_call_expression] = STATE(1711), + [sym_array_expression] = STATE(1711), + [sym_parenthesized_expression] = STATE(1711), + [sym_tuple_expression] = STATE(1711), + [sym_unit_expression] = STATE(1711), + [sym_struct_expression] = STATE(1711), + [sym_if_expression] = STATE(1711), + [sym_match_expression] = STATE(1711), + [sym_while_expression] = STATE(1711), + [sym_loop_expression] = STATE(1711), + [sym_for_expression] = STATE(1711), + [sym_const_block] = STATE(1711), + [sym_closure_expression] = STATE(1711), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3742), + [sym_break_expression] = STATE(1711), + [sym_continue_expression] = STATE(1711), + [sym_index_expression] = STATE(1711), + [sym_await_expression] = STATE(1711), + [sym_field_expression] = STATE(1690), + [sym_unsafe_block] = STATE(1711), + [sym_async_block] = STATE(1711), + [sym_gen_block] = STATE(1711), + [sym_try_block] = STATE(1711), + [sym_block] = STATE(1711), + [sym__literal] = STATE(1711), + [sym_string_literal] = STATE(1831), + [sym_raw_string_literal] = STATE(1831), + [sym_boolean_literal] = STATE(1831), + [sym_line_comment] = STATE(340), + [sym_block_comment] = STATE(340), + [sym_identifier] = ACTIONS(410), + [anon_sym_LPAREN] = ACTIONS(498), + [anon_sym_LBRACK] = ACTIONS(500), + [anon_sym_LBRACE] = ACTIONS(412), + [anon_sym_STAR] = ACTIONS(990), + [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(990), + [anon_sym_BANG] = ACTIONS(990), + [anon_sym_AMP] = ACTIONS(992), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1176), + [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_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(341)] = { + [sym_bracketed_type] = STATE(3752), + [sym_generic_function] = STATE(1492), + [sym_generic_type_with_turbofish] = STATE(3085), + [sym__expression_except_range] = STATE(1409), + [sym__expression] = STATE(1535), + [sym_macro_invocation] = STATE(1529), + [sym_scoped_identifier] = STATE(1604), + [sym_scoped_type_identifier_in_expression_position] = STATE(3335), + [sym_range_expression] = STATE(1505), + [sym_unary_expression] = STATE(1492), + [sym_try_expression] = STATE(1492), + [sym_reference_expression] = STATE(1492), + [sym_binary_expression] = STATE(1492), + [sym_assignment_expression] = STATE(1492), + [sym_compound_assignment_expr] = STATE(1492), + [sym_type_cast_expression] = STATE(1492), + [sym_return_expression] = STATE(1492), + [sym_yield_expression] = STATE(1492), + [sym_call_expression] = STATE(1492), + [sym_array_expression] = STATE(1492), + [sym_parenthesized_expression] = STATE(1492), + [sym_tuple_expression] = STATE(1492), + [sym_unit_expression] = STATE(1492), + [sym_struct_expression] = STATE(1492), + [sym_if_expression] = STATE(1492), + [sym_match_expression] = STATE(1492), + [sym_while_expression] = STATE(1492), + [sym_loop_expression] = STATE(1492), + [sym_for_expression] = STATE(1492), + [sym_const_block] = STATE(1492), + [sym_closure_expression] = STATE(1492), + [sym_closure_parameters] = STATE(221), + [sym_label] = STATE(3689), + [sym_break_expression] = STATE(1492), + [sym_continue_expression] = STATE(1492), + [sym_index_expression] = STATE(1492), + [sym_await_expression] = STATE(1492), + [sym_field_expression] = STATE(1412), + [sym_unsafe_block] = STATE(1492), + [sym_async_block] = STATE(1492), + [sym_gen_block] = STATE(1492), + [sym_try_block] = STATE(1492), + [sym_block] = STATE(1492), + [sym__literal] = STATE(1492), + [sym_string_literal] = STATE(1530), + [sym_raw_string_literal] = STATE(1530), + [sym_boolean_literal] = STATE(1530), + [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(978), + [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(978), + [anon_sym_BANG] = ACTIONS(978), + [anon_sym_AMP] = ACTIONS(980), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1170), + [anon_sym_COLON_COLON] = ACTIONS(476), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(356), + [anon_sym_break] = ACTIONS(510), + [anon_sym_const] = ACTIONS(358), + [anon_sym_continue] = ACTIONS(512), + [anon_sym_default] = ACTIONS(480), + [anon_sym_for] = ACTIONS(362), + [anon_sym_gen] = ACTIONS(514), + [anon_sym_if] = ACTIONS(366), + [anon_sym_loop] = ACTIONS(368), + [anon_sym_match] = ACTIONS(370), + [anon_sym_return] = ACTIONS(516), + [anon_sym_static] = ACTIONS(518), + [anon_sym_union] = ACTIONS(480), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [anon_sym_yield] = ACTIONS(520), + [anon_sym_move] = ACTIONS(522), + [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(492), + [sym_super] = ACTIONS(494), + [sym_crate] = ACTIONS(494), + [sym_metavariable] = ACTIONS(496), + [sym__raw_string_literal_start] = ACTIONS(119), + [sym_float_literal] = ACTIONS(99), + }, + [STATE(342)] = { + [sym_bracketed_type] = STATE(3752), + [sym_generic_function] = STATE(1492), + [sym_generic_type_with_turbofish] = STATE(3039), + [sym__expression_except_range] = STATE(1409), + [sym__expression] = STATE(1874), + [sym_macro_invocation] = STATE(1529), + [sym_scoped_identifier] = STATE(1540), + [sym_scoped_type_identifier_in_expression_position] = STATE(3335), + [sym_range_expression] = STATE(1505), + [sym_unary_expression] = STATE(1492), + [sym_try_expression] = STATE(1492), + [sym_reference_expression] = STATE(1492), + [sym_binary_expression] = STATE(1492), + [sym_assignment_expression] = STATE(1492), + [sym_compound_assignment_expr] = STATE(1492), + [sym_type_cast_expression] = STATE(1492), + [sym_return_expression] = STATE(1492), + [sym_yield_expression] = STATE(1492), + [sym_call_expression] = STATE(1492), + [sym_array_expression] = STATE(1492), + [sym_parenthesized_expression] = STATE(1492), + [sym_tuple_expression] = STATE(1492), + [sym_unit_expression] = STATE(1492), + [sym_struct_expression] = STATE(1492), + [sym_if_expression] = STATE(1492), + [sym_match_expression] = STATE(1492), + [sym_while_expression] = STATE(1492), + [sym_loop_expression] = STATE(1492), + [sym_for_expression] = STATE(1492), + [sym_const_block] = STATE(1492), + [sym_closure_expression] = STATE(1492), + [sym_closure_parameters] = STATE(229), + [sym_label] = STATE(3689), + [sym_break_expression] = STATE(1492), + [sym_continue_expression] = STATE(1492), + [sym_index_expression] = STATE(1492), + [sym_await_expression] = STATE(1492), + [sym_field_expression] = STATE(1412), + [sym_unsafe_block] = STATE(1492), + [sym_async_block] = STATE(1492), + [sym_gen_block] = STATE(1492), + [sym_try_block] = STATE(1492), + [sym_block] = STATE(1492), + [sym__literal] = STATE(1492), + [sym_string_literal] = STATE(1530), + [sym_raw_string_literal] = STATE(1530), + [sym_boolean_literal] = STATE(1530), + [sym_line_comment] = STATE(342), + [sym_block_comment] = STATE(342), + [sym_identifier] = ACTIONS(344), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(1301), + [anon_sym_LBRACE] = ACTIONS(348), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -49310,92 +56168,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(1303), + [anon_sym_async] = ACTIONS(356), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(1305), + [anon_sym_const] = ACTIONS(358), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(1307), - [anon_sym_gen] = ACTIONS(1309), - [anon_sym_if] = ACTIONS(1311), - [anon_sym_loop] = ACTIONS(1313), - [anon_sym_match] = ACTIONS(1315), + [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(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_while] = ACTIONS(1319), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(1321), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(115), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [anon_sym_static] = ACTIONS(372), + [anon_sym_union] = ACTIONS(360), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [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(283)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1910), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1520), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [sym_line_comment] = STATE(283), - [sym_block_comment] = STATE(283), - [sym_identifier] = ACTIONS(339), + [STATE(343)] = { + [sym_bracketed_type] = STATE(3752), + [sym_generic_function] = STATE(1492), + [sym_generic_type_with_turbofish] = STATE(3039), + [sym__expression_except_range] = STATE(1409), + [sym__expression] = STATE(1875), + [sym_macro_invocation] = STATE(1529), + [sym_scoped_identifier] = STATE(1540), + [sym_scoped_type_identifier_in_expression_position] = STATE(3335), + [sym_range_expression] = STATE(1505), + [sym_unary_expression] = STATE(1492), + [sym_try_expression] = STATE(1492), + [sym_reference_expression] = STATE(1492), + [sym_binary_expression] = STATE(1492), + [sym_assignment_expression] = STATE(1492), + [sym_compound_assignment_expr] = STATE(1492), + [sym_type_cast_expression] = STATE(1492), + [sym_return_expression] = STATE(1492), + [sym_yield_expression] = STATE(1492), + [sym_call_expression] = STATE(1492), + [sym_array_expression] = STATE(1492), + [sym_parenthesized_expression] = STATE(1492), + [sym_tuple_expression] = STATE(1492), + [sym_unit_expression] = STATE(1492), + [sym_struct_expression] = STATE(1492), + [sym_if_expression] = STATE(1492), + [sym_match_expression] = STATE(1492), + [sym_while_expression] = STATE(1492), + [sym_loop_expression] = STATE(1492), + [sym_for_expression] = STATE(1492), + [sym_const_block] = STATE(1492), + [sym_closure_expression] = STATE(1492), + [sym_closure_parameters] = STATE(229), + [sym_label] = STATE(3689), + [sym_break_expression] = STATE(1492), + [sym_continue_expression] = STATE(1492), + [sym_index_expression] = STATE(1492), + [sym_await_expression] = STATE(1492), + [sym_field_expression] = STATE(1412), + [sym_unsafe_block] = STATE(1492), + [sym_async_block] = STATE(1492), + [sym_gen_block] = STATE(1492), + [sym_try_block] = STATE(1492), + [sym_block] = STATE(1492), + [sym__literal] = STATE(1492), + [sym_string_literal] = STATE(1530), + [sym_raw_string_literal] = STATE(1530), + [sym_boolean_literal] = STATE(1530), + [sym_line_comment] = STATE(343), + [sym_block_comment] = STATE(343), + [sym_identifier] = ACTIONS(344), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(348), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -49422,92 +56280,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), + [anon_sym_async] = ACTIONS(356), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(358), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), + [anon_sym_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(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(115), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [anon_sym_static] = ACTIONS(372), + [anon_sym_union] = ACTIONS(360), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [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(284)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1480), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1520), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [sym_line_comment] = STATE(284), - [sym_block_comment] = STATE(284), - [sym_identifier] = ACTIONS(339), + [STATE(344)] = { + [sym_bracketed_type] = STATE(3752), + [sym_generic_function] = STATE(1492), + [sym_generic_type_with_turbofish] = STATE(3039), + [sym__expression_except_range] = STATE(1409), + [sym__expression] = STATE(1556), + [sym_macro_invocation] = STATE(1529), + [sym_scoped_identifier] = STATE(1540), + [sym_scoped_type_identifier_in_expression_position] = STATE(3335), + [sym_range_expression] = STATE(1505), + [sym_unary_expression] = STATE(1492), + [sym_try_expression] = STATE(1492), + [sym_reference_expression] = STATE(1492), + [sym_binary_expression] = STATE(1492), + [sym_assignment_expression] = STATE(1492), + [sym_compound_assignment_expr] = STATE(1492), + [sym_type_cast_expression] = STATE(1492), + [sym_return_expression] = STATE(1492), + [sym_yield_expression] = STATE(1492), + [sym_call_expression] = STATE(1492), + [sym_array_expression] = STATE(1492), + [sym_parenthesized_expression] = STATE(1492), + [sym_tuple_expression] = STATE(1492), + [sym_unit_expression] = STATE(1492), + [sym_struct_expression] = STATE(1492), + [sym_if_expression] = STATE(1492), + [sym_match_expression] = STATE(1492), + [sym_while_expression] = STATE(1492), + [sym_loop_expression] = STATE(1492), + [sym_for_expression] = STATE(1492), + [sym_const_block] = STATE(1492), + [sym_closure_expression] = STATE(1492), + [sym_closure_parameters] = STATE(229), + [sym_label] = STATE(3689), + [sym_break_expression] = STATE(1492), + [sym_continue_expression] = STATE(1492), + [sym_index_expression] = STATE(1492), + [sym_await_expression] = STATE(1492), + [sym_field_expression] = STATE(1412), + [sym_unsafe_block] = STATE(1492), + [sym_async_block] = STATE(1492), + [sym_gen_block] = STATE(1492), + [sym_try_block] = STATE(1492), + [sym_block] = STATE(1492), + [sym__literal] = STATE(1492), + [sym_string_literal] = STATE(1530), + [sym_raw_string_literal] = STATE(1530), + [sym_boolean_literal] = STATE(1530), + [sym_line_comment] = STATE(344), + [sym_block_comment] = STATE(344), + [sym_identifier] = ACTIONS(344), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(348), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -49531,1551 +56389,1551 @@ 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(1061), + [anon_sym_DOT_DOT] = ACTIONS(1190), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), + [anon_sym_async] = ACTIONS(356), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(358), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), + [anon_sym_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(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(115), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [anon_sym_static] = ACTIONS(372), + [anon_sym_union] = ACTIONS(360), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [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(285)] = { - [sym_bracketed_type] = STATE(3621), - [sym_generic_function] = STATE(1691), - [sym_generic_type_with_turbofish] = STATE(3063), - [sym__expression_except_range] = STATE(1659), - [sym__expression] = STATE(1794), - [sym_macro_invocation] = STATE(1708), - [sym_scoped_identifier] = STATE(1599), - [sym_scoped_type_identifier_in_expression_position] = STATE(3307), - [sym_range_expression] = STATE(1695), - [sym_unary_expression] = STATE(1691), - [sym_try_expression] = STATE(1691), - [sym_reference_expression] = STATE(1691), - [sym_binary_expression] = STATE(1691), - [sym_assignment_expression] = STATE(1691), - [sym_compound_assignment_expr] = STATE(1691), - [sym_type_cast_expression] = STATE(1691), - [sym_return_expression] = STATE(1691), - [sym_yield_expression] = STATE(1691), - [sym_call_expression] = STATE(1691), - [sym_array_expression] = STATE(1691), - [sym_parenthesized_expression] = STATE(1691), - [sym_tuple_expression] = STATE(1691), - [sym_unit_expression] = STATE(1691), - [sym_struct_expression] = STATE(1691), - [sym_if_expression] = STATE(1691), - [sym_match_expression] = STATE(1691), - [sym_while_expression] = STATE(1691), - [sym_loop_expression] = STATE(1691), - [sym_for_expression] = STATE(1691), - [sym_const_block] = STATE(1691), - [sym_closure_expression] = STATE(1691), + [STATE(345)] = { + [sym_bracketed_type] = STATE(3752), + [sym_generic_function] = STATE(1492), + [sym_generic_type_with_turbofish] = STATE(3039), + [sym__expression_except_range] = STATE(1409), + [sym__expression] = STATE(1559), + [sym_macro_invocation] = STATE(1529), + [sym_scoped_identifier] = STATE(1540), + [sym_scoped_type_identifier_in_expression_position] = STATE(3335), + [sym_range_expression] = STATE(1505), + [sym_unary_expression] = STATE(1492), + [sym_try_expression] = STATE(1492), + [sym_reference_expression] = STATE(1492), + [sym_binary_expression] = STATE(1492), + [sym_assignment_expression] = STATE(1492), + [sym_compound_assignment_expr] = STATE(1492), + [sym_type_cast_expression] = STATE(1492), + [sym_return_expression] = STATE(1492), + [sym_yield_expression] = STATE(1492), + [sym_call_expression] = STATE(1492), + [sym_array_expression] = STATE(1492), + [sym_parenthesized_expression] = STATE(1492), + [sym_tuple_expression] = STATE(1492), + [sym_unit_expression] = STATE(1492), + [sym_struct_expression] = STATE(1492), + [sym_if_expression] = STATE(1492), + [sym_match_expression] = STATE(1492), + [sym_while_expression] = STATE(1492), + [sym_loop_expression] = STATE(1492), + [sym_for_expression] = STATE(1492), + [sym_const_block] = STATE(1492), + [sym_closure_expression] = STATE(1492), [sym_closure_parameters] = STATE(229), - [sym_label] = STATE(3712), - [sym_break_expression] = STATE(1691), - [sym_continue_expression] = STATE(1691), - [sym_index_expression] = STATE(1691), - [sym_await_expression] = STATE(1691), - [sym_field_expression] = STATE(1671), - [sym_unsafe_block] = STATE(1691), - [sym_async_block] = STATE(1691), - [sym_gen_block] = STATE(1691), - [sym_try_block] = STATE(1691), - [sym_block] = STATE(1691), - [sym__literal] = STATE(1691), - [sym_string_literal] = STATE(1776), - [sym_raw_string_literal] = STATE(1776), - [sym_boolean_literal] = STATE(1776), - [sym_line_comment] = STATE(285), - [sym_block_comment] = STATE(285), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(495), - [anon_sym_LBRACK] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(979), - [anon_sym_u8] = ACTIONS(411), - [anon_sym_i8] = ACTIONS(411), - [anon_sym_u16] = ACTIONS(411), - [anon_sym_i16] = ACTIONS(411), - [anon_sym_u32] = ACTIONS(411), - [anon_sym_i32] = ACTIONS(411), - [anon_sym_u64] = ACTIONS(411), - [anon_sym_i64] = ACTIONS(411), - [anon_sym_u128] = ACTIONS(411), - [anon_sym_i128] = ACTIONS(411), - [anon_sym_isize] = ACTIONS(411), - [anon_sym_usize] = ACTIONS(411), - [anon_sym_f32] = ACTIONS(411), - [anon_sym_f64] = ACTIONS(411), - [anon_sym_bool] = ACTIONS(411), - [anon_sym_str] = ACTIONS(411), - [anon_sym_char] = ACTIONS(411), - [anon_sym_DASH] = ACTIONS(979), - [anon_sym_BANG] = ACTIONS(979), - [anon_sym_AMP] = ACTIONS(981), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1079), - [anon_sym_COLON_COLON] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(417), - [anon_sym_break] = ACTIONS(419), - [anon_sym_const] = ACTIONS(421), - [anon_sym_continue] = ACTIONS(423), - [anon_sym_default] = ACTIONS(425), - [anon_sym_for] = ACTIONS(427), - [anon_sym_gen] = ACTIONS(429), - [anon_sym_if] = ACTIONS(431), - [anon_sym_loop] = ACTIONS(433), - [anon_sym_match] = ACTIONS(435), - [anon_sym_return] = ACTIONS(437), - [anon_sym_static] = ACTIONS(439), - [anon_sym_union] = ACTIONS(425), - [anon_sym_unsafe] = ACTIONS(441), - [anon_sym_while] = ACTIONS(443), - [anon_sym_yield] = ACTIONS(445), - [anon_sym_move] = ACTIONS(447), - [anon_sym_try] = ACTIONS(449), - [sym_integer_literal] = ACTIONS(451), - [aux_sym_string_literal_token1] = ACTIONS(453), - [sym_char_literal] = ACTIONS(451), - [anon_sym_true] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(457), - [sym_super] = ACTIONS(459), - [sym_crate] = ACTIONS(459), - [sym_metavariable] = ACTIONS(461), - [sym__raw_string_literal_start] = ACTIONS(463), - [sym_float_literal] = ACTIONS(451), - }, - [STATE(286)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3056), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1507), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1591), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [sym_line_comment] = STATE(286), - [sym_block_comment] = STATE(286), - [sym_identifier] = ACTIONS(467), + [sym_label] = STATE(3689), + [sym_break_expression] = STATE(1492), + [sym_continue_expression] = STATE(1492), + [sym_index_expression] = STATE(1492), + [sym_await_expression] = STATE(1492), + [sym_field_expression] = STATE(1412), + [sym_unsafe_block] = STATE(1492), + [sym_async_block] = STATE(1492), + [sym_gen_block] = STATE(1492), + [sym_try_block] = STATE(1492), + [sym_block] = STATE(1492), + [sym__literal] = STATE(1492), + [sym_string_literal] = STATE(1530), + [sym_raw_string_literal] = STATE(1530), + [sym_boolean_literal] = STATE(1530), + [sym_line_comment] = STATE(345), + [sym_block_comment] = STATE(345), + [sym_identifier] = ACTIONS(344), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(901), - [anon_sym_u8] = ACTIONS(469), - [anon_sym_i8] = ACTIONS(469), - [anon_sym_u16] = ACTIONS(469), - [anon_sym_i16] = ACTIONS(469), - [anon_sym_u32] = ACTIONS(469), - [anon_sym_i32] = ACTIONS(469), - [anon_sym_u64] = ACTIONS(469), - [anon_sym_i64] = ACTIONS(469), - [anon_sym_u128] = ACTIONS(469), - [anon_sym_i128] = ACTIONS(469), - [anon_sym_isize] = ACTIONS(469), - [anon_sym_usize] = ACTIONS(469), - [anon_sym_f32] = ACTIONS(469), - [anon_sym_f64] = ACTIONS(469), - [anon_sym_bool] = ACTIONS(469), - [anon_sym_str] = ACTIONS(469), - [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(901), - [anon_sym_BANG] = ACTIONS(901), - [anon_sym_AMP] = ACTIONS(903), + [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(1055), - [anon_sym_COLON_COLON] = ACTIONS(473), + [anon_sym_DOT_DOT] = ACTIONS(1190), + [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(477), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(477), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(489), - [sym_super] = ACTIONS(491), - [sym_crate] = ACTIONS(491), - [sym_metavariable] = ACTIONS(493), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [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_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(287)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3056), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1633), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1591), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [sym_line_comment] = STATE(287), - [sym_block_comment] = STATE(287), - [sym_identifier] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(901), - [anon_sym_u8] = ACTIONS(469), - [anon_sym_i8] = ACTIONS(469), - [anon_sym_u16] = ACTIONS(469), - [anon_sym_i16] = ACTIONS(469), - [anon_sym_u32] = ACTIONS(469), - [anon_sym_i32] = ACTIONS(469), - [anon_sym_u64] = ACTIONS(469), - [anon_sym_i64] = ACTIONS(469), - [anon_sym_u128] = ACTIONS(469), - [anon_sym_i128] = ACTIONS(469), - [anon_sym_isize] = ACTIONS(469), - [anon_sym_usize] = ACTIONS(469), - [anon_sym_f32] = ACTIONS(469), - [anon_sym_f64] = ACTIONS(469), - [anon_sym_bool] = ACTIONS(469), - [anon_sym_str] = ACTIONS(469), - [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(901), - [anon_sym_BANG] = ACTIONS(901), - [anon_sym_AMP] = ACTIONS(903), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1055), - [anon_sym_COLON_COLON] = ACTIONS(473), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(477), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(477), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(489), - [sym_super] = ACTIONS(491), - [sym_crate] = ACTIONS(491), - [sym_metavariable] = ACTIONS(493), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [STATE(346)] = { + [sym_attribute_item] = STATE(422), + [sym_function_modifiers] = STATE(3591), + [sym_removed_trait_bound] = STATE(2069), + [sym_self_parameter] = STATE(3352), + [sym_variadic_parameter] = STATE(3352), + [sym_parameter] = STATE(3352), + [sym_extern_modifier] = STATE(2373), + [sym__type] = STATE(3096), + [sym_bracketed_type] = STATE(3673), + [sym_lifetime] = STATE(3067), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1591), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2022), + [sym_generic_type_with_turbofish] = STATE(3329), + [sym_bounded_type] = STATE(2069), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2552), + [sym_scoped_identifier] = STATE(2299), + [sym_scoped_type_identifier] = STATE(2203), + [sym_const_block] = STATE(2163), + [sym__pattern] = STATE(3292), + [sym_generic_pattern] = STATE(2163), + [sym_tuple_pattern] = STATE(2163), + [sym_slice_pattern] = STATE(2163), + [sym_tuple_struct_pattern] = STATE(2163), + [sym_struct_pattern] = STATE(2163), + [sym_remaining_field_pattern] = STATE(2163), + [sym_mut_pattern] = STATE(2163), + [sym_range_pattern] = STATE(2163), + [sym_ref_pattern] = STATE(2163), + [sym_captured_pattern] = STATE(2163), + [sym_reference_pattern] = STATE(2163), + [sym_or_pattern] = STATE(2163), + [sym__literal_pattern] = STATE(2098), + [sym_negative_literal] = STATE(2095), + [sym_string_literal] = STATE(2095), + [sym_raw_string_literal] = STATE(2095), + [sym_boolean_literal] = STATE(2095), + [sym_line_comment] = STATE(346), + [sym_block_comment] = STATE(346), + [aux_sym_function_modifiers_repeat1] = STATE(2244), + [sym_identifier] = ACTIONS(1306), + [anon_sym_LPAREN] = ACTIONS(1308), + [anon_sym_RPAREN] = ACTIONS(1400), + [anon_sym_LBRACK] = ACTIONS(1238), + [anon_sym_STAR] = ACTIONS(1240), + [anon_sym_QMARK] = ACTIONS(1242), + [anon_sym_u8] = ACTIONS(1312), + [anon_sym_i8] = ACTIONS(1312), + [anon_sym_u16] = ACTIONS(1312), + [anon_sym_i16] = ACTIONS(1312), + [anon_sym_u32] = ACTIONS(1312), + [anon_sym_i32] = ACTIONS(1312), + [anon_sym_u64] = ACTIONS(1312), + [anon_sym_i64] = ACTIONS(1312), + [anon_sym_u128] = ACTIONS(1312), + [anon_sym_i128] = ACTIONS(1312), + [anon_sym_isize] = ACTIONS(1312), + [anon_sym_usize] = ACTIONS(1312), + [anon_sym_f32] = ACTIONS(1312), + [anon_sym_f64] = ACTIONS(1312), + [anon_sym_bool] = ACTIONS(1312), + [anon_sym_str] = ACTIONS(1312), + [anon_sym_char] = ACTIONS(1312), + [anon_sym_DASH] = ACTIONS(1246), + [anon_sym_BANG] = ACTIONS(1248), + [anon_sym_AMP] = ACTIONS(1314), + [anon_sym_PIPE] = ACTIONS(1252), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1364), + [anon_sym_DOT_DOT] = ACTIONS(1256), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1258), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1260), + [anon_sym_COLON_COLON] = ACTIONS(1320), + [anon_sym_POUND] = ACTIONS(1266), + [anon_sym_SQUOTE] = ACTIONS(1268), + [anon_sym_async] = ACTIONS(1270), + [anon_sym_const] = ACTIONS(1272), + [anon_sym_default] = ACTIONS(1322), + [anon_sym_fn] = ACTIONS(1276), + [anon_sym_for] = ACTIONS(1278), + [anon_sym_gen] = ACTIONS(1324), + [anon_sym_impl] = ACTIONS(1282), + [anon_sym_union] = ACTIONS(1324), + [anon_sym_unsafe] = ACTIONS(1270), + [anon_sym_extern] = ACTIONS(1284), + [anon_sym_safe] = ACTIONS(1270), + [anon_sym_ref] = ACTIONS(1286), + [anon_sym_dyn] = ACTIONS(1288), + [sym_mutable_specifier] = ACTIONS(1290), + [sym_integer_literal] = ACTIONS(1292), + [aux_sym_string_literal_token1] = ACTIONS(1294), + [sym_char_literal] = ACTIONS(1292), + [anon_sym_true] = ACTIONS(1296), + [anon_sym_false] = ACTIONS(1296), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1326), + [sym_super] = ACTIONS(1328), + [sym_crate] = ACTIONS(1328), + [sym_metavariable] = ACTIONS(1330), + [sym__raw_string_literal_start] = ACTIONS(1304), + [sym_float_literal] = ACTIONS(1292), }, - [STATE(288)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3056), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1467), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1591), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [sym_line_comment] = STATE(288), - [sym_block_comment] = STATE(288), - [sym_identifier] = ACTIONS(467), + [STATE(347)] = { + [sym_bracketed_type] = STATE(3752), + [sym_generic_function] = STATE(1492), + [sym_generic_type_with_turbofish] = STATE(3039), + [sym__expression_except_range] = STATE(1409), + [sym__expression] = STATE(1560), + [sym_macro_invocation] = STATE(1529), + [sym_scoped_identifier] = STATE(1540), + [sym_scoped_type_identifier_in_expression_position] = STATE(3335), + [sym_range_expression] = STATE(1505), + [sym_unary_expression] = STATE(1492), + [sym_try_expression] = STATE(1492), + [sym_reference_expression] = STATE(1492), + [sym_binary_expression] = STATE(1492), + [sym_assignment_expression] = STATE(1492), + [sym_compound_assignment_expr] = STATE(1492), + [sym_type_cast_expression] = STATE(1492), + [sym_return_expression] = STATE(1492), + [sym_yield_expression] = STATE(1492), + [sym_call_expression] = STATE(1492), + [sym_array_expression] = STATE(1492), + [sym_parenthesized_expression] = STATE(1492), + [sym_tuple_expression] = STATE(1492), + [sym_unit_expression] = STATE(1492), + [sym_struct_expression] = STATE(1492), + [sym_if_expression] = STATE(1492), + [sym_match_expression] = STATE(1492), + [sym_while_expression] = STATE(1492), + [sym_loop_expression] = STATE(1492), + [sym_for_expression] = STATE(1492), + [sym_const_block] = STATE(1492), + [sym_closure_expression] = STATE(1492), + [sym_closure_parameters] = STATE(229), + [sym_label] = STATE(3689), + [sym_break_expression] = STATE(1492), + [sym_continue_expression] = STATE(1492), + [sym_index_expression] = STATE(1492), + [sym_await_expression] = STATE(1492), + [sym_field_expression] = STATE(1412), + [sym_unsafe_block] = STATE(1492), + [sym_async_block] = STATE(1492), + [sym_gen_block] = STATE(1492), + [sym_try_block] = STATE(1492), + [sym_block] = STATE(1492), + [sym__literal] = STATE(1492), + [sym_string_literal] = STATE(1530), + [sym_raw_string_literal] = STATE(1530), + [sym_boolean_literal] = STATE(1530), + [sym_line_comment] = STATE(347), + [sym_block_comment] = STATE(347), + [sym_identifier] = ACTIONS(344), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(901), - [anon_sym_u8] = ACTIONS(469), - [anon_sym_i8] = ACTIONS(469), - [anon_sym_u16] = ACTIONS(469), - [anon_sym_i16] = ACTIONS(469), - [anon_sym_u32] = ACTIONS(469), - [anon_sym_i32] = ACTIONS(469), - [anon_sym_u64] = ACTIONS(469), - [anon_sym_i64] = ACTIONS(469), - [anon_sym_u128] = ACTIONS(469), - [anon_sym_i128] = ACTIONS(469), - [anon_sym_isize] = ACTIONS(469), - [anon_sym_usize] = ACTIONS(469), - [anon_sym_f32] = ACTIONS(469), - [anon_sym_f64] = ACTIONS(469), - [anon_sym_bool] = ACTIONS(469), - [anon_sym_str] = ACTIONS(469), - [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(901), - [anon_sym_BANG] = ACTIONS(901), - [anon_sym_AMP] = ACTIONS(903), + [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(1055), - [anon_sym_COLON_COLON] = ACTIONS(473), + [anon_sym_DOT_DOT] = ACTIONS(1190), + [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(477), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(477), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(489), - [sym_super] = ACTIONS(491), - [sym_crate] = ACTIONS(491), - [sym_metavariable] = ACTIONS(493), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [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_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(289)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3056), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1636), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1591), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [sym_line_comment] = STATE(289), - [sym_block_comment] = STATE(289), - [sym_identifier] = ACTIONS(467), + [STATE(348)] = { + [sym_bracketed_type] = STATE(3752), + [sym_generic_function] = STATE(1492), + [sym_generic_type_with_turbofish] = STATE(3039), + [sym__expression_except_range] = STATE(1409), + [sym__expression] = STATE(1547), + [sym_macro_invocation] = STATE(1529), + [sym_scoped_identifier] = STATE(1540), + [sym_scoped_type_identifier_in_expression_position] = STATE(3335), + [sym_range_expression] = STATE(1505), + [sym_unary_expression] = STATE(1492), + [sym_try_expression] = STATE(1492), + [sym_reference_expression] = STATE(1492), + [sym_binary_expression] = STATE(1492), + [sym_assignment_expression] = STATE(1492), + [sym_compound_assignment_expr] = STATE(1492), + [sym_type_cast_expression] = STATE(1492), + [sym_return_expression] = STATE(1492), + [sym_yield_expression] = STATE(1492), + [sym_call_expression] = STATE(1492), + [sym_array_expression] = STATE(1492), + [sym_parenthesized_expression] = STATE(1492), + [sym_tuple_expression] = STATE(1492), + [sym_unit_expression] = STATE(1492), + [sym_struct_expression] = STATE(1492), + [sym_if_expression] = STATE(1492), + [sym_match_expression] = STATE(1492), + [sym_while_expression] = STATE(1492), + [sym_loop_expression] = STATE(1492), + [sym_for_expression] = STATE(1492), + [sym_const_block] = STATE(1492), + [sym_closure_expression] = STATE(1492), + [sym_closure_parameters] = STATE(229), + [sym_label] = STATE(3689), + [sym_break_expression] = STATE(1492), + [sym_continue_expression] = STATE(1492), + [sym_index_expression] = STATE(1492), + [sym_await_expression] = STATE(1492), + [sym_field_expression] = STATE(1412), + [sym_unsafe_block] = STATE(1492), + [sym_async_block] = STATE(1492), + [sym_gen_block] = STATE(1492), + [sym_try_block] = STATE(1492), + [sym_block] = STATE(1492), + [sym__literal] = STATE(1492), + [sym_string_literal] = STATE(1530), + [sym_raw_string_literal] = STATE(1530), + [sym_boolean_literal] = STATE(1530), + [sym_line_comment] = STATE(348), + [sym_block_comment] = STATE(348), + [sym_identifier] = ACTIONS(344), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(901), - [anon_sym_u8] = ACTIONS(469), - [anon_sym_i8] = ACTIONS(469), - [anon_sym_u16] = ACTIONS(469), - [anon_sym_i16] = ACTIONS(469), - [anon_sym_u32] = ACTIONS(469), - [anon_sym_i32] = ACTIONS(469), - [anon_sym_u64] = ACTIONS(469), - [anon_sym_i64] = ACTIONS(469), - [anon_sym_u128] = ACTIONS(469), - [anon_sym_i128] = ACTIONS(469), - [anon_sym_isize] = ACTIONS(469), - [anon_sym_usize] = ACTIONS(469), - [anon_sym_f32] = ACTIONS(469), - [anon_sym_f64] = ACTIONS(469), - [anon_sym_bool] = ACTIONS(469), - [anon_sym_str] = ACTIONS(469), - [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(901), - [anon_sym_BANG] = ACTIONS(901), - [anon_sym_AMP] = ACTIONS(903), + [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(1055), - [anon_sym_COLON_COLON] = ACTIONS(473), + [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(477), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(477), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(489), - [sym_super] = ACTIONS(491), - [sym_crate] = ACTIONS(491), - [sym_metavariable] = ACTIONS(493), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [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_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(290)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3056), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1676), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1591), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [sym_line_comment] = STATE(290), - [sym_block_comment] = STATE(290), - [sym_identifier] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(901), - [anon_sym_u8] = ACTIONS(469), - [anon_sym_i8] = ACTIONS(469), - [anon_sym_u16] = ACTIONS(469), - [anon_sym_i16] = ACTIONS(469), - [anon_sym_u32] = ACTIONS(469), - [anon_sym_i32] = ACTIONS(469), - [anon_sym_u64] = ACTIONS(469), - [anon_sym_i64] = ACTIONS(469), - [anon_sym_u128] = ACTIONS(469), - [anon_sym_i128] = ACTIONS(469), - [anon_sym_isize] = ACTIONS(469), - [anon_sym_usize] = ACTIONS(469), - [anon_sym_f32] = ACTIONS(469), - [anon_sym_f64] = ACTIONS(469), - [anon_sym_bool] = ACTIONS(469), - [anon_sym_str] = ACTIONS(469), - [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(901), - [anon_sym_BANG] = ACTIONS(901), - [anon_sym_AMP] = ACTIONS(903), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1055), - [anon_sym_COLON_COLON] = ACTIONS(473), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(477), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(477), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(489), - [sym_super] = ACTIONS(491), - [sym_crate] = ACTIONS(491), - [sym_metavariable] = ACTIONS(493), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [STATE(349)] = { + [sym_line_comment] = STATE(349), + [sym_block_comment] = STATE(349), + [ts_builtin_sym_end] = ACTIONS(1402), + [sym_identifier] = ACTIONS(1404), + [anon_sym_SEMI] = ACTIONS(1402), + [anon_sym_macro_rules_BANG] = ACTIONS(1402), + [anon_sym_LPAREN] = ACTIONS(1402), + [anon_sym_LBRACK] = ACTIONS(1402), + [anon_sym_LBRACE] = ACTIONS(1402), + [anon_sym_RBRACE] = ACTIONS(1402), + [anon_sym_PLUS] = ACTIONS(1404), + [anon_sym_STAR] = ACTIONS(1404), + [anon_sym_QMARK] = ACTIONS(1402), + [anon_sym_u8] = ACTIONS(1404), + [anon_sym_i8] = ACTIONS(1404), + [anon_sym_u16] = ACTIONS(1404), + [anon_sym_i16] = ACTIONS(1404), + [anon_sym_u32] = ACTIONS(1404), + [anon_sym_i32] = ACTIONS(1404), + [anon_sym_u64] = ACTIONS(1404), + [anon_sym_i64] = ACTIONS(1404), + [anon_sym_u128] = ACTIONS(1404), + [anon_sym_i128] = ACTIONS(1404), + [anon_sym_isize] = ACTIONS(1404), + [anon_sym_usize] = ACTIONS(1404), + [anon_sym_f32] = ACTIONS(1404), + [anon_sym_f64] = ACTIONS(1404), + [anon_sym_bool] = ACTIONS(1404), + [anon_sym_str] = ACTIONS(1404), + [anon_sym_char] = ACTIONS(1404), + [anon_sym_DASH] = ACTIONS(1404), + [anon_sym_SLASH] = ACTIONS(1404), + [anon_sym_PERCENT] = ACTIONS(1404), + [anon_sym_CARET] = ACTIONS(1404), + [anon_sym_BANG] = ACTIONS(1404), + [anon_sym_AMP] = ACTIONS(1404), + [anon_sym_PIPE] = ACTIONS(1404), + [anon_sym_AMP_AMP] = ACTIONS(1402), + [anon_sym_PIPE_PIPE] = ACTIONS(1402), + [anon_sym_LT_LT] = ACTIONS(1404), + [anon_sym_GT_GT] = ACTIONS(1404), + [anon_sym_PLUS_EQ] = ACTIONS(1402), + [anon_sym_DASH_EQ] = ACTIONS(1402), + [anon_sym_STAR_EQ] = ACTIONS(1402), + [anon_sym_SLASH_EQ] = ACTIONS(1402), + [anon_sym_PERCENT_EQ] = ACTIONS(1402), + [anon_sym_CARET_EQ] = ACTIONS(1402), + [anon_sym_AMP_EQ] = ACTIONS(1402), + [anon_sym_PIPE_EQ] = ACTIONS(1402), + [anon_sym_LT_LT_EQ] = ACTIONS(1402), + [anon_sym_GT_GT_EQ] = ACTIONS(1402), + [anon_sym_EQ] = ACTIONS(1404), + [anon_sym_EQ_EQ] = ACTIONS(1402), + [anon_sym_BANG_EQ] = ACTIONS(1402), + [anon_sym_GT] = ACTIONS(1404), + [anon_sym_LT] = ACTIONS(1404), + [anon_sym_GT_EQ] = ACTIONS(1402), + [anon_sym_LT_EQ] = ACTIONS(1402), + [anon_sym_DOT] = ACTIONS(1404), + [anon_sym_DOT_DOT] = ACTIONS(1404), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1402), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1402), + [anon_sym_COLON_COLON] = ACTIONS(1402), + [anon_sym_POUND] = ACTIONS(1402), + [anon_sym_SQUOTE] = ACTIONS(1404), + [anon_sym_as] = ACTIONS(1404), + [anon_sym_async] = ACTIONS(1404), + [anon_sym_break] = ACTIONS(1404), + [anon_sym_const] = ACTIONS(1404), + [anon_sym_continue] = ACTIONS(1404), + [anon_sym_default] = ACTIONS(1404), + [anon_sym_enum] = ACTIONS(1404), + [anon_sym_fn] = ACTIONS(1404), + [anon_sym_for] = ACTIONS(1404), + [anon_sym_gen] = ACTIONS(1404), + [anon_sym_if] = ACTIONS(1404), + [anon_sym_impl] = ACTIONS(1404), + [anon_sym_let] = ACTIONS(1404), + [anon_sym_loop] = ACTIONS(1404), + [anon_sym_match] = ACTIONS(1404), + [anon_sym_mod] = ACTIONS(1404), + [anon_sym_pub] = ACTIONS(1404), + [anon_sym_return] = ACTIONS(1404), + [anon_sym_static] = ACTIONS(1404), + [anon_sym_struct] = ACTIONS(1404), + [anon_sym_trait] = ACTIONS(1404), + [anon_sym_type] = ACTIONS(1404), + [anon_sym_union] = ACTIONS(1404), + [anon_sym_unsafe] = ACTIONS(1404), + [anon_sym_use] = ACTIONS(1404), + [anon_sym_while] = ACTIONS(1404), + [anon_sym_extern] = ACTIONS(1404), + [anon_sym_safe] = ACTIONS(1404), + [anon_sym_else] = ACTIONS(1404), + [anon_sym_yield] = ACTIONS(1404), + [anon_sym_move] = ACTIONS(1404), + [anon_sym_try] = ACTIONS(1404), + [sym_integer_literal] = ACTIONS(1402), + [aux_sym_string_literal_token1] = ACTIONS(1402), + [sym_char_literal] = ACTIONS(1402), + [anon_sym_true] = ACTIONS(1404), + [anon_sym_false] = ACTIONS(1404), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1404), + [sym_super] = ACTIONS(1404), + [sym_crate] = ACTIONS(1404), + [sym_metavariable] = ACTIONS(1402), + [sym__raw_string_literal_start] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1402), }, - [STATE(291)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3056), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1629), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1591), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [sym_line_comment] = STATE(291), - [sym_block_comment] = STATE(291), - [sym_identifier] = ACTIONS(467), + [STATE(350)] = { + [sym_bracketed_type] = STATE(3752), + [sym_generic_function] = STATE(1492), + [sym_generic_type_with_turbofish] = STATE(3039), + [sym__expression_except_range] = STATE(1409), + [sym__expression] = STATE(1948), + [sym_macro_invocation] = STATE(1529), + [sym_scoped_identifier] = STATE(1540), + [sym_scoped_type_identifier_in_expression_position] = STATE(3335), + [sym_range_expression] = STATE(1505), + [sym_unary_expression] = STATE(1492), + [sym_try_expression] = STATE(1492), + [sym_reference_expression] = STATE(1492), + [sym_binary_expression] = STATE(1492), + [sym_assignment_expression] = STATE(1492), + [sym_compound_assignment_expr] = STATE(1492), + [sym_type_cast_expression] = STATE(1492), + [sym_return_expression] = STATE(1492), + [sym_yield_expression] = STATE(1492), + [sym_call_expression] = STATE(1492), + [sym_array_expression] = STATE(1492), + [sym_parenthesized_expression] = STATE(1492), + [sym_tuple_expression] = STATE(1492), + [sym_unit_expression] = STATE(1492), + [sym_struct_expression] = STATE(1492), + [sym_if_expression] = STATE(1492), + [sym_match_expression] = STATE(1492), + [sym_while_expression] = STATE(1492), + [sym_loop_expression] = STATE(1492), + [sym_for_expression] = STATE(1492), + [sym_const_block] = STATE(1492), + [sym_closure_expression] = STATE(1492), + [sym_closure_parameters] = STATE(229), + [sym_label] = STATE(3689), + [sym_break_expression] = STATE(1492), + [sym_continue_expression] = STATE(1492), + [sym_index_expression] = STATE(1492), + [sym_await_expression] = STATE(1492), + [sym_field_expression] = STATE(1412), + [sym_unsafe_block] = STATE(1492), + [sym_async_block] = STATE(1492), + [sym_gen_block] = STATE(1492), + [sym_try_block] = STATE(1492), + [sym_block] = STATE(1492), + [sym__literal] = STATE(1492), + [sym_string_literal] = STATE(1530), + [sym_raw_string_literal] = STATE(1530), + [sym_boolean_literal] = STATE(1530), + [sym_line_comment] = STATE(350), + [sym_block_comment] = STATE(350), + [sym_identifier] = ACTIONS(344), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(901), - [anon_sym_u8] = ACTIONS(469), - [anon_sym_i8] = ACTIONS(469), - [anon_sym_u16] = ACTIONS(469), - [anon_sym_i16] = ACTIONS(469), - [anon_sym_u32] = ACTIONS(469), - [anon_sym_i32] = ACTIONS(469), - [anon_sym_u64] = ACTIONS(469), - [anon_sym_i64] = ACTIONS(469), - [anon_sym_u128] = ACTIONS(469), - [anon_sym_i128] = ACTIONS(469), - [anon_sym_isize] = ACTIONS(469), - [anon_sym_usize] = ACTIONS(469), - [anon_sym_f32] = ACTIONS(469), - [anon_sym_f64] = ACTIONS(469), - [anon_sym_bool] = ACTIONS(469), - [anon_sym_str] = ACTIONS(469), - [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(901), - [anon_sym_BANG] = ACTIONS(901), - [anon_sym_AMP] = ACTIONS(903), + [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(1055), - [anon_sym_COLON_COLON] = ACTIONS(473), + [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(477), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(477), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(489), - [sym_super] = ACTIONS(491), - [sym_crate] = ACTIONS(491), - [sym_metavariable] = ACTIONS(493), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [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_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(292)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3056), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1860), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1591), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(244), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [sym_line_comment] = STATE(292), - [sym_block_comment] = STATE(292), - [sym_identifier] = ACTIONS(467), + [STATE(351)] = { + [sym_attribute_item] = STATE(422), + [sym_function_modifiers] = STATE(3591), + [sym_removed_trait_bound] = STATE(2069), + [sym_self_parameter] = STATE(3352), + [sym_variadic_parameter] = STATE(3352), + [sym_parameter] = STATE(3352), + [sym_extern_modifier] = STATE(2373), + [sym__type] = STATE(3096), + [sym_bracketed_type] = STATE(3673), + [sym_lifetime] = STATE(3067), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1591), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2022), + [sym_generic_type_with_turbofish] = STATE(3329), + [sym_bounded_type] = STATE(2069), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2552), + [sym_scoped_identifier] = STATE(2299), + [sym_scoped_type_identifier] = STATE(2203), + [sym_const_block] = STATE(2163), + [sym__pattern] = STATE(3292), + [sym_generic_pattern] = STATE(2163), + [sym_tuple_pattern] = STATE(2163), + [sym_slice_pattern] = STATE(2163), + [sym_tuple_struct_pattern] = STATE(2163), + [sym_struct_pattern] = STATE(2163), + [sym_remaining_field_pattern] = STATE(2163), + [sym_mut_pattern] = STATE(2163), + [sym_range_pattern] = STATE(2163), + [sym_ref_pattern] = STATE(2163), + [sym_captured_pattern] = STATE(2163), + [sym_reference_pattern] = STATE(2163), + [sym_or_pattern] = STATE(2163), + [sym__literal_pattern] = STATE(2098), + [sym_negative_literal] = STATE(2095), + [sym_string_literal] = STATE(2095), + [sym_raw_string_literal] = STATE(2095), + [sym_boolean_literal] = STATE(2095), + [sym_line_comment] = STATE(351), + [sym_block_comment] = STATE(351), + [aux_sym_function_modifiers_repeat1] = STATE(2244), + [sym_identifier] = ACTIONS(1306), + [anon_sym_LPAREN] = ACTIONS(1308), + [anon_sym_RPAREN] = ACTIONS(1406), + [anon_sym_LBRACK] = ACTIONS(1238), + [anon_sym_STAR] = ACTIONS(1240), + [anon_sym_QMARK] = ACTIONS(1242), + [anon_sym_u8] = ACTIONS(1312), + [anon_sym_i8] = ACTIONS(1312), + [anon_sym_u16] = ACTIONS(1312), + [anon_sym_i16] = ACTIONS(1312), + [anon_sym_u32] = ACTIONS(1312), + [anon_sym_i32] = ACTIONS(1312), + [anon_sym_u64] = ACTIONS(1312), + [anon_sym_i64] = ACTIONS(1312), + [anon_sym_u128] = ACTIONS(1312), + [anon_sym_i128] = ACTIONS(1312), + [anon_sym_isize] = ACTIONS(1312), + [anon_sym_usize] = ACTIONS(1312), + [anon_sym_f32] = ACTIONS(1312), + [anon_sym_f64] = ACTIONS(1312), + [anon_sym_bool] = ACTIONS(1312), + [anon_sym_str] = ACTIONS(1312), + [anon_sym_char] = ACTIONS(1312), + [anon_sym_DASH] = ACTIONS(1246), + [anon_sym_BANG] = ACTIONS(1248), + [anon_sym_AMP] = ACTIONS(1314), + [anon_sym_PIPE] = ACTIONS(1252), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1364), + [anon_sym_DOT_DOT] = ACTIONS(1256), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1258), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1260), + [anon_sym_COLON_COLON] = ACTIONS(1320), + [anon_sym_POUND] = ACTIONS(1266), + [anon_sym_SQUOTE] = ACTIONS(1268), + [anon_sym_async] = ACTIONS(1270), + [anon_sym_const] = ACTIONS(1272), + [anon_sym_default] = ACTIONS(1322), + [anon_sym_fn] = ACTIONS(1276), + [anon_sym_for] = ACTIONS(1278), + [anon_sym_gen] = ACTIONS(1324), + [anon_sym_impl] = ACTIONS(1282), + [anon_sym_union] = ACTIONS(1324), + [anon_sym_unsafe] = ACTIONS(1270), + [anon_sym_extern] = ACTIONS(1284), + [anon_sym_safe] = ACTIONS(1270), + [anon_sym_ref] = ACTIONS(1286), + [anon_sym_dyn] = ACTIONS(1288), + [sym_mutable_specifier] = ACTIONS(1290), + [sym_integer_literal] = ACTIONS(1292), + [aux_sym_string_literal_token1] = ACTIONS(1294), + [sym_char_literal] = ACTIONS(1292), + [anon_sym_true] = ACTIONS(1296), + [anon_sym_false] = ACTIONS(1296), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1326), + [sym_super] = ACTIONS(1328), + [sym_crate] = ACTIONS(1328), + [sym_metavariable] = ACTIONS(1330), + [sym__raw_string_literal_start] = ACTIONS(1304), + [sym_float_literal] = ACTIONS(1292), + }, + [STATE(352)] = { + [sym_bracketed_type] = STATE(3752), + [sym_generic_function] = STATE(1492), + [sym_generic_type_with_turbofish] = STATE(3039), + [sym__expression_except_range] = STATE(1409), + [sym__expression] = STATE(1523), + [sym_macro_invocation] = STATE(1529), + [sym_scoped_identifier] = STATE(1540), + [sym_scoped_type_identifier_in_expression_position] = STATE(3335), + [sym_range_expression] = STATE(1505), + [sym_unary_expression] = STATE(1492), + [sym_try_expression] = STATE(1492), + [sym_reference_expression] = STATE(1492), + [sym_binary_expression] = STATE(1492), + [sym_assignment_expression] = STATE(1492), + [sym_compound_assignment_expr] = STATE(1492), + [sym_type_cast_expression] = STATE(1492), + [sym_return_expression] = STATE(1492), + [sym_yield_expression] = STATE(1492), + [sym_call_expression] = STATE(1492), + [sym_array_expression] = STATE(1492), + [sym_parenthesized_expression] = STATE(1492), + [sym_tuple_expression] = STATE(1492), + [sym_unit_expression] = STATE(1492), + [sym_struct_expression] = STATE(1492), + [sym_if_expression] = STATE(1492), + [sym_match_expression] = STATE(1492), + [sym_while_expression] = STATE(1492), + [sym_loop_expression] = STATE(1492), + [sym_for_expression] = STATE(1492), + [sym_const_block] = STATE(1492), + [sym_closure_expression] = STATE(1492), + [sym_closure_parameters] = STATE(229), + [sym_label] = STATE(3689), + [sym_break_expression] = STATE(1492), + [sym_continue_expression] = STATE(1492), + [sym_index_expression] = STATE(1492), + [sym_await_expression] = STATE(1492), + [sym_field_expression] = STATE(1412), + [sym_unsafe_block] = STATE(1492), + [sym_async_block] = STATE(1492), + [sym_gen_block] = STATE(1492), + [sym_try_block] = STATE(1492), + [sym_block] = STATE(1492), + [sym__literal] = STATE(1492), + [sym_string_literal] = STATE(1530), + [sym_raw_string_literal] = STATE(1530), + [sym_boolean_literal] = STATE(1530), + [sym_line_comment] = STATE(352), + [sym_block_comment] = STATE(352), + [sym_identifier] = ACTIONS(344), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1073), - [anon_sym_u8] = ACTIONS(469), - [anon_sym_i8] = ACTIONS(469), - [anon_sym_u16] = ACTIONS(469), - [anon_sym_i16] = ACTIONS(469), - [anon_sym_u32] = ACTIONS(469), - [anon_sym_i32] = ACTIONS(469), - [anon_sym_u64] = ACTIONS(469), - [anon_sym_i64] = ACTIONS(469), - [anon_sym_u128] = ACTIONS(469), - [anon_sym_i128] = ACTIONS(469), - [anon_sym_isize] = ACTIONS(469), - [anon_sym_usize] = ACTIONS(469), - [anon_sym_f32] = ACTIONS(469), - [anon_sym_f64] = ACTIONS(469), - [anon_sym_bool] = ACTIONS(469), - [anon_sym_str] = ACTIONS(469), - [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(1073), - [anon_sym_BANG] = ACTIONS(1073), - [anon_sym_AMP] = ACTIONS(1075), + [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(1077), - [anon_sym_COLON_COLON] = ACTIONS(473), + [anon_sym_DOT_DOT] = ACTIONS(1190), + [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(475), - [anon_sym_const] = ACTIONS(353), + [anon_sym_async] = ACTIONS(356), + [anon_sym_break] = ACTIONS(41), + [anon_sym_const] = ACTIONS(358), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(477), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(479), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(481), - [anon_sym_static] = ACTIONS(483), - [anon_sym_union] = ACTIONS(477), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(485), - [anon_sym_move] = ACTIONS(487), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(489), - [sym_super] = ACTIONS(491), - [sym_crate] = ACTIONS(491), - [sym_metavariable] = ACTIONS(493), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [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_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(293)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3056), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1648), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1591), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [sym_line_comment] = STATE(293), - [sym_block_comment] = STATE(293), - [sym_identifier] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(901), - [anon_sym_u8] = ACTIONS(469), - [anon_sym_i8] = ACTIONS(469), - [anon_sym_u16] = ACTIONS(469), - [anon_sym_i16] = ACTIONS(469), - [anon_sym_u32] = ACTIONS(469), - [anon_sym_i32] = ACTIONS(469), - [anon_sym_u64] = ACTIONS(469), - [anon_sym_i64] = ACTIONS(469), - [anon_sym_u128] = ACTIONS(469), - [anon_sym_i128] = ACTIONS(469), - [anon_sym_isize] = ACTIONS(469), - [anon_sym_usize] = ACTIONS(469), - [anon_sym_f32] = ACTIONS(469), - [anon_sym_f64] = ACTIONS(469), - [anon_sym_bool] = ACTIONS(469), - [anon_sym_str] = ACTIONS(469), - [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(901), - [anon_sym_BANG] = ACTIONS(901), - [anon_sym_AMP] = ACTIONS(903), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1055), - [anon_sym_COLON_COLON] = ACTIONS(473), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(477), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(477), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(489), - [sym_super] = ACTIONS(491), - [sym_crate] = ACTIONS(491), - [sym_metavariable] = ACTIONS(493), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [STATE(353)] = { + [sym_line_comment] = STATE(353), + [sym_block_comment] = STATE(353), + [ts_builtin_sym_end] = ACTIONS(1408), + [sym_identifier] = ACTIONS(1410), + [anon_sym_SEMI] = ACTIONS(1408), + [anon_sym_macro_rules_BANG] = ACTIONS(1408), + [anon_sym_LPAREN] = ACTIONS(1408), + [anon_sym_LBRACK] = ACTIONS(1408), + [anon_sym_LBRACE] = ACTIONS(1408), + [anon_sym_RBRACE] = ACTIONS(1408), + [anon_sym_PLUS] = ACTIONS(1410), + [anon_sym_STAR] = ACTIONS(1410), + [anon_sym_QMARK] = ACTIONS(1408), + [anon_sym_u8] = ACTIONS(1410), + [anon_sym_i8] = ACTIONS(1410), + [anon_sym_u16] = ACTIONS(1410), + [anon_sym_i16] = ACTIONS(1410), + [anon_sym_u32] = ACTIONS(1410), + [anon_sym_i32] = ACTIONS(1410), + [anon_sym_u64] = ACTIONS(1410), + [anon_sym_i64] = ACTIONS(1410), + [anon_sym_u128] = ACTIONS(1410), + [anon_sym_i128] = ACTIONS(1410), + [anon_sym_isize] = ACTIONS(1410), + [anon_sym_usize] = ACTIONS(1410), + [anon_sym_f32] = ACTIONS(1410), + [anon_sym_f64] = ACTIONS(1410), + [anon_sym_bool] = ACTIONS(1410), + [anon_sym_str] = ACTIONS(1410), + [anon_sym_char] = ACTIONS(1410), + [anon_sym_DASH] = ACTIONS(1410), + [anon_sym_SLASH] = ACTIONS(1410), + [anon_sym_PERCENT] = ACTIONS(1410), + [anon_sym_CARET] = ACTIONS(1410), + [anon_sym_BANG] = ACTIONS(1410), + [anon_sym_AMP] = ACTIONS(1410), + [anon_sym_PIPE] = ACTIONS(1410), + [anon_sym_AMP_AMP] = ACTIONS(1408), + [anon_sym_PIPE_PIPE] = ACTIONS(1408), + [anon_sym_LT_LT] = ACTIONS(1410), + [anon_sym_GT_GT] = ACTIONS(1410), + [anon_sym_PLUS_EQ] = ACTIONS(1408), + [anon_sym_DASH_EQ] = ACTIONS(1408), + [anon_sym_STAR_EQ] = ACTIONS(1408), + [anon_sym_SLASH_EQ] = ACTIONS(1408), + [anon_sym_PERCENT_EQ] = ACTIONS(1408), + [anon_sym_CARET_EQ] = ACTIONS(1408), + [anon_sym_AMP_EQ] = ACTIONS(1408), + [anon_sym_PIPE_EQ] = ACTIONS(1408), + [anon_sym_LT_LT_EQ] = ACTIONS(1408), + [anon_sym_GT_GT_EQ] = ACTIONS(1408), + [anon_sym_EQ] = ACTIONS(1410), + [anon_sym_EQ_EQ] = ACTIONS(1408), + [anon_sym_BANG_EQ] = ACTIONS(1408), + [anon_sym_GT] = ACTIONS(1410), + [anon_sym_LT] = ACTIONS(1410), + [anon_sym_GT_EQ] = ACTIONS(1408), + [anon_sym_LT_EQ] = ACTIONS(1408), + [anon_sym_DOT] = ACTIONS(1410), + [anon_sym_DOT_DOT] = ACTIONS(1410), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1408), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1408), + [anon_sym_COLON_COLON] = ACTIONS(1408), + [anon_sym_POUND] = ACTIONS(1408), + [anon_sym_SQUOTE] = ACTIONS(1410), + [anon_sym_as] = ACTIONS(1410), + [anon_sym_async] = ACTIONS(1410), + [anon_sym_break] = ACTIONS(1410), + [anon_sym_const] = ACTIONS(1410), + [anon_sym_continue] = ACTIONS(1410), + [anon_sym_default] = ACTIONS(1410), + [anon_sym_enum] = ACTIONS(1410), + [anon_sym_fn] = ACTIONS(1410), + [anon_sym_for] = ACTIONS(1410), + [anon_sym_gen] = ACTIONS(1410), + [anon_sym_if] = ACTIONS(1410), + [anon_sym_impl] = ACTIONS(1410), + [anon_sym_let] = ACTIONS(1410), + [anon_sym_loop] = ACTIONS(1410), + [anon_sym_match] = ACTIONS(1410), + [anon_sym_mod] = ACTIONS(1410), + [anon_sym_pub] = ACTIONS(1410), + [anon_sym_return] = ACTIONS(1410), + [anon_sym_static] = ACTIONS(1410), + [anon_sym_struct] = ACTIONS(1410), + [anon_sym_trait] = ACTIONS(1410), + [anon_sym_type] = ACTIONS(1410), + [anon_sym_union] = ACTIONS(1410), + [anon_sym_unsafe] = ACTIONS(1410), + [anon_sym_use] = ACTIONS(1410), + [anon_sym_while] = ACTIONS(1410), + [anon_sym_extern] = ACTIONS(1410), + [anon_sym_safe] = ACTIONS(1410), + [anon_sym_else] = ACTIONS(1410), + [anon_sym_yield] = ACTIONS(1410), + [anon_sym_move] = ACTIONS(1410), + [anon_sym_try] = ACTIONS(1410), + [sym_integer_literal] = ACTIONS(1408), + [aux_sym_string_literal_token1] = ACTIONS(1408), + [sym_char_literal] = ACTIONS(1408), + [anon_sym_true] = ACTIONS(1410), + [anon_sym_false] = ACTIONS(1410), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1410), + [sym_super] = ACTIONS(1410), + [sym_crate] = ACTIONS(1410), + [sym_metavariable] = ACTIONS(1408), + [sym__raw_string_literal_start] = ACTIONS(1408), + [sym_float_literal] = ACTIONS(1408), }, - [STATE(294)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3056), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1656), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1591), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [sym_line_comment] = STATE(294), - [sym_block_comment] = STATE(294), - [sym_identifier] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(901), - [anon_sym_u8] = ACTIONS(469), - [anon_sym_i8] = ACTIONS(469), - [anon_sym_u16] = ACTIONS(469), - [anon_sym_i16] = ACTIONS(469), - [anon_sym_u32] = ACTIONS(469), - [anon_sym_i32] = ACTIONS(469), - [anon_sym_u64] = ACTIONS(469), - [anon_sym_i64] = ACTIONS(469), - [anon_sym_u128] = ACTIONS(469), - [anon_sym_i128] = ACTIONS(469), - [anon_sym_isize] = ACTIONS(469), - [anon_sym_usize] = ACTIONS(469), - [anon_sym_f32] = ACTIONS(469), - [anon_sym_f64] = ACTIONS(469), - [anon_sym_bool] = ACTIONS(469), - [anon_sym_str] = ACTIONS(469), - [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(901), - [anon_sym_BANG] = ACTIONS(901), - [anon_sym_AMP] = ACTIONS(903), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1055), - [anon_sym_COLON_COLON] = ACTIONS(473), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(477), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(477), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(489), - [sym_super] = ACTIONS(491), - [sym_crate] = ACTIONS(491), - [sym_metavariable] = ACTIONS(493), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [STATE(354)] = { + [sym_attribute_item] = STATE(422), + [sym_function_modifiers] = STATE(3591), + [sym_removed_trait_bound] = STATE(2069), + [sym_self_parameter] = STATE(3352), + [sym_variadic_parameter] = STATE(3352), + [sym_parameter] = STATE(3352), + [sym_extern_modifier] = STATE(2373), + [sym__type] = STATE(3096), + [sym_bracketed_type] = STATE(3673), + [sym_lifetime] = STATE(3067), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1591), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2022), + [sym_generic_type_with_turbofish] = STATE(3329), + [sym_bounded_type] = STATE(2069), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2552), + [sym_scoped_identifier] = STATE(2299), + [sym_scoped_type_identifier] = STATE(2203), + [sym_const_block] = STATE(2163), + [sym__pattern] = STATE(3292), + [sym_generic_pattern] = STATE(2163), + [sym_tuple_pattern] = STATE(2163), + [sym_slice_pattern] = STATE(2163), + [sym_tuple_struct_pattern] = STATE(2163), + [sym_struct_pattern] = STATE(2163), + [sym_remaining_field_pattern] = STATE(2163), + [sym_mut_pattern] = STATE(2163), + [sym_range_pattern] = STATE(2163), + [sym_ref_pattern] = STATE(2163), + [sym_captured_pattern] = STATE(2163), + [sym_reference_pattern] = STATE(2163), + [sym_or_pattern] = STATE(2163), + [sym__literal_pattern] = STATE(2098), + [sym_negative_literal] = STATE(2095), + [sym_string_literal] = STATE(2095), + [sym_raw_string_literal] = STATE(2095), + [sym_boolean_literal] = STATE(2095), + [sym_line_comment] = STATE(354), + [sym_block_comment] = STATE(354), + [aux_sym_function_modifiers_repeat1] = STATE(2244), + [sym_identifier] = ACTIONS(1306), + [anon_sym_LPAREN] = ACTIONS(1308), + [anon_sym_RPAREN] = ACTIONS(1412), + [anon_sym_LBRACK] = ACTIONS(1238), + [anon_sym_STAR] = ACTIONS(1240), + [anon_sym_QMARK] = ACTIONS(1242), + [anon_sym_u8] = ACTIONS(1312), + [anon_sym_i8] = ACTIONS(1312), + [anon_sym_u16] = ACTIONS(1312), + [anon_sym_i16] = ACTIONS(1312), + [anon_sym_u32] = ACTIONS(1312), + [anon_sym_i32] = ACTIONS(1312), + [anon_sym_u64] = ACTIONS(1312), + [anon_sym_i64] = ACTIONS(1312), + [anon_sym_u128] = ACTIONS(1312), + [anon_sym_i128] = ACTIONS(1312), + [anon_sym_isize] = ACTIONS(1312), + [anon_sym_usize] = ACTIONS(1312), + [anon_sym_f32] = ACTIONS(1312), + [anon_sym_f64] = ACTIONS(1312), + [anon_sym_bool] = ACTIONS(1312), + [anon_sym_str] = ACTIONS(1312), + [anon_sym_char] = ACTIONS(1312), + [anon_sym_DASH] = ACTIONS(1246), + [anon_sym_BANG] = ACTIONS(1248), + [anon_sym_AMP] = ACTIONS(1314), + [anon_sym_PIPE] = ACTIONS(1252), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1364), + [anon_sym_DOT_DOT] = ACTIONS(1256), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1258), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1260), + [anon_sym_COLON_COLON] = ACTIONS(1320), + [anon_sym_POUND] = ACTIONS(1266), + [anon_sym_SQUOTE] = ACTIONS(1268), + [anon_sym_async] = ACTIONS(1270), + [anon_sym_const] = ACTIONS(1272), + [anon_sym_default] = ACTIONS(1322), + [anon_sym_fn] = ACTIONS(1276), + [anon_sym_for] = ACTIONS(1278), + [anon_sym_gen] = ACTIONS(1324), + [anon_sym_impl] = ACTIONS(1282), + [anon_sym_union] = ACTIONS(1324), + [anon_sym_unsafe] = ACTIONS(1270), + [anon_sym_extern] = ACTIONS(1284), + [anon_sym_safe] = ACTIONS(1270), + [anon_sym_ref] = ACTIONS(1286), + [anon_sym_dyn] = ACTIONS(1288), + [sym_mutable_specifier] = ACTIONS(1290), + [sym_integer_literal] = ACTIONS(1292), + [aux_sym_string_literal_token1] = ACTIONS(1294), + [sym_char_literal] = ACTIONS(1292), + [anon_sym_true] = ACTIONS(1296), + [anon_sym_false] = ACTIONS(1296), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1326), + [sym_super] = ACTIONS(1328), + [sym_crate] = ACTIONS(1328), + [sym_metavariable] = ACTIONS(1330), + [sym__raw_string_literal_start] = ACTIONS(1304), + [sym_float_literal] = ACTIONS(1292), }, - [STATE(295)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3056), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1661), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1591), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [sym_line_comment] = STATE(295), - [sym_block_comment] = STATE(295), - [sym_identifier] = ACTIONS(467), + [STATE(355)] = { + [sym_bracketed_type] = STATE(3752), + [sym_generic_function] = STATE(1492), + [sym_generic_type_with_turbofish] = STATE(3039), + [sym__expression_except_range] = STATE(1409), + [sym__expression] = STATE(1444), + [sym_macro_invocation] = STATE(1529), + [sym_scoped_identifier] = STATE(1540), + [sym_scoped_type_identifier_in_expression_position] = STATE(3335), + [sym_range_expression] = STATE(1505), + [sym_unary_expression] = STATE(1492), + [sym_try_expression] = STATE(1492), + [sym_reference_expression] = STATE(1492), + [sym_binary_expression] = STATE(1492), + [sym_assignment_expression] = STATE(1492), + [sym_compound_assignment_expr] = STATE(1492), + [sym_type_cast_expression] = STATE(1492), + [sym_return_expression] = STATE(1492), + [sym_yield_expression] = STATE(1492), + [sym_call_expression] = STATE(1492), + [sym_array_expression] = STATE(1492), + [sym_parenthesized_expression] = STATE(1492), + [sym_tuple_expression] = STATE(1492), + [sym_unit_expression] = STATE(1492), + [sym_struct_expression] = STATE(1492), + [sym_if_expression] = STATE(1492), + [sym_match_expression] = STATE(1492), + [sym_while_expression] = STATE(1492), + [sym_loop_expression] = STATE(1492), + [sym_for_expression] = STATE(1492), + [sym_const_block] = STATE(1492), + [sym_closure_expression] = STATE(1492), + [sym_closure_parameters] = STATE(229), + [sym_label] = STATE(3689), + [sym_break_expression] = STATE(1492), + [sym_continue_expression] = STATE(1492), + [sym_index_expression] = STATE(1492), + [sym_await_expression] = STATE(1492), + [sym_field_expression] = STATE(1412), + [sym_unsafe_block] = STATE(1492), + [sym_async_block] = STATE(1492), + [sym_gen_block] = STATE(1492), + [sym_try_block] = STATE(1492), + [sym_block] = STATE(1492), + [sym__literal] = STATE(1492), + [sym_string_literal] = STATE(1530), + [sym_raw_string_literal] = STATE(1530), + [sym_boolean_literal] = STATE(1530), + [sym_line_comment] = STATE(355), + [sym_block_comment] = STATE(355), + [sym_identifier] = ACTIONS(344), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(901), - [anon_sym_u8] = ACTIONS(469), - [anon_sym_i8] = ACTIONS(469), - [anon_sym_u16] = ACTIONS(469), - [anon_sym_i16] = ACTIONS(469), - [anon_sym_u32] = ACTIONS(469), - [anon_sym_i32] = ACTIONS(469), - [anon_sym_u64] = ACTIONS(469), - [anon_sym_i64] = ACTIONS(469), - [anon_sym_u128] = ACTIONS(469), - [anon_sym_i128] = ACTIONS(469), - [anon_sym_isize] = ACTIONS(469), - [anon_sym_usize] = ACTIONS(469), - [anon_sym_f32] = ACTIONS(469), - [anon_sym_f64] = ACTIONS(469), - [anon_sym_bool] = ACTIONS(469), - [anon_sym_str] = ACTIONS(469), - [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(901), - [anon_sym_BANG] = ACTIONS(901), - [anon_sym_AMP] = ACTIONS(903), + [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(1055), - [anon_sym_COLON_COLON] = ACTIONS(473), + [anon_sym_DOT_DOT] = ACTIONS(1190), + [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(477), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(477), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(489), - [sym_super] = ACTIONS(491), - [sym_crate] = ACTIONS(491), - [sym_metavariable] = ACTIONS(493), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [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_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(296)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3056), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1662), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1591), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [sym_line_comment] = STATE(296), - [sym_block_comment] = STATE(296), - [sym_identifier] = ACTIONS(467), + [STATE(356)] = { + [sym_bracketed_type] = STATE(3752), + [sym_generic_function] = STATE(1492), + [sym_generic_type_with_turbofish] = STATE(3085), + [sym__expression_except_range] = STATE(1409), + [sym__expression] = STATE(1535), + [sym_macro_invocation] = STATE(1529), + [sym_scoped_identifier] = STATE(1604), + [sym_scoped_type_identifier_in_expression_position] = STATE(3335), + [sym_range_expression] = STATE(1505), + [sym_unary_expression] = STATE(1492), + [sym_try_expression] = STATE(1492), + [sym_reference_expression] = STATE(1492), + [sym_binary_expression] = STATE(1492), + [sym_assignment_expression] = STATE(1492), + [sym_compound_assignment_expr] = STATE(1492), + [sym_type_cast_expression] = STATE(1492), + [sym_return_expression] = STATE(1492), + [sym_yield_expression] = STATE(1492), + [sym_call_expression] = STATE(1492), + [sym_array_expression] = STATE(1492), + [sym_parenthesized_expression] = STATE(1492), + [sym_tuple_expression] = STATE(1492), + [sym_unit_expression] = STATE(1492), + [sym_struct_expression] = STATE(1492), + [sym_if_expression] = STATE(1492), + [sym_match_expression] = STATE(1492), + [sym_while_expression] = STATE(1492), + [sym_loop_expression] = STATE(1492), + [sym_for_expression] = STATE(1492), + [sym_const_block] = STATE(1492), + [sym_closure_expression] = STATE(1492), + [sym_closure_parameters] = STATE(235), + [sym_label] = STATE(3689), + [sym_break_expression] = STATE(1492), + [sym_continue_expression] = STATE(1492), + [sym_index_expression] = STATE(1492), + [sym_await_expression] = STATE(1492), + [sym_field_expression] = STATE(1412), + [sym_unsafe_block] = STATE(1492), + [sym_async_block] = STATE(1492), + [sym_gen_block] = STATE(1492), + [sym_try_block] = STATE(1492), + [sym_block] = STATE(1492), + [sym__literal] = STATE(1492), + [sym_string_literal] = STATE(1530), + [sym_raw_string_literal] = STATE(1530), + [sym_boolean_literal] = STATE(1530), + [sym_line_comment] = STATE(356), + [sym_block_comment] = STATE(356), + [sym_identifier] = ACTIONS(470), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(901), - [anon_sym_u8] = ACTIONS(469), - [anon_sym_i8] = ACTIONS(469), - [anon_sym_u16] = ACTIONS(469), - [anon_sym_i16] = ACTIONS(469), - [anon_sym_u32] = ACTIONS(469), - [anon_sym_i32] = ACTIONS(469), - [anon_sym_u64] = ACTIONS(469), - [anon_sym_i64] = ACTIONS(469), - [anon_sym_u128] = ACTIONS(469), - [anon_sym_i128] = ACTIONS(469), - [anon_sym_isize] = ACTIONS(469), - [anon_sym_usize] = ACTIONS(469), - [anon_sym_f32] = ACTIONS(469), - [anon_sym_f64] = ACTIONS(469), - [anon_sym_bool] = ACTIONS(469), - [anon_sym_str] = ACTIONS(469), - [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(901), - [anon_sym_BANG] = ACTIONS(901), - [anon_sym_AMP] = ACTIONS(903), + [anon_sym_LBRACE] = ACTIONS(348), + [anon_sym_STAR] = ACTIONS(1196), + [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(1196), + [anon_sym_BANG] = ACTIONS(1196), + [anon_sym_AMP] = ACTIONS(1198), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1055), - [anon_sym_COLON_COLON] = ACTIONS(473), + [anon_sym_DOT_DOT] = ACTIONS(1200), + [anon_sym_COLON_COLON] = ACTIONS(476), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(477), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(477), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(489), - [sym_super] = ACTIONS(491), - [sym_crate] = ACTIONS(491), - [sym_metavariable] = ACTIONS(493), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [anon_sym_async] = ACTIONS(356), + [anon_sym_break] = ACTIONS(478), + [anon_sym_const] = ACTIONS(358), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(480), + [anon_sym_for] = ACTIONS(362), + [anon_sym_gen] = ACTIONS(482), + [anon_sym_if] = ACTIONS(366), + [anon_sym_loop] = ACTIONS(368), + [anon_sym_match] = ACTIONS(370), + [anon_sym_return] = ACTIONS(484), + [anon_sym_static] = ACTIONS(486), + [anon_sym_union] = ACTIONS(480), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [anon_sym_yield] = ACTIONS(488), + [anon_sym_move] = ACTIONS(490), + [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(492), + [sym_super] = ACTIONS(494), + [sym_crate] = ACTIONS(494), + [sym_metavariable] = ACTIONS(496), + [sym__raw_string_literal_start] = ACTIONS(119), + [sym_float_literal] = ACTIONS(99), }, - [STATE(297)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3056), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1664), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1591), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [sym_line_comment] = STATE(297), - [sym_block_comment] = STATE(297), - [sym_identifier] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(901), - [anon_sym_u8] = ACTIONS(469), - [anon_sym_i8] = ACTIONS(469), - [anon_sym_u16] = ACTIONS(469), - [anon_sym_i16] = ACTIONS(469), - [anon_sym_u32] = ACTIONS(469), - [anon_sym_i32] = ACTIONS(469), - [anon_sym_u64] = ACTIONS(469), - [anon_sym_i64] = ACTIONS(469), - [anon_sym_u128] = ACTIONS(469), - [anon_sym_i128] = ACTIONS(469), - [anon_sym_isize] = ACTIONS(469), - [anon_sym_usize] = ACTIONS(469), - [anon_sym_f32] = ACTIONS(469), - [anon_sym_f64] = ACTIONS(469), - [anon_sym_bool] = ACTIONS(469), - [anon_sym_str] = ACTIONS(469), - [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(901), - [anon_sym_BANG] = ACTIONS(901), - [anon_sym_AMP] = ACTIONS(903), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1055), - [anon_sym_COLON_COLON] = ACTIONS(473), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(477), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(477), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(489), - [sym_super] = ACTIONS(491), - [sym_crate] = ACTIONS(491), - [sym_metavariable] = ACTIONS(493), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [STATE(357)] = { + [sym_attribute_item] = STATE(422), + [sym_function_modifiers] = STATE(3591), + [sym_removed_trait_bound] = STATE(2069), + [sym_self_parameter] = STATE(3352), + [sym_variadic_parameter] = STATE(3352), + [sym_parameter] = STATE(3352), + [sym_extern_modifier] = STATE(2373), + [sym__type] = STATE(3096), + [sym_bracketed_type] = STATE(3673), + [sym_lifetime] = STATE(3067), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1591), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2022), + [sym_generic_type_with_turbofish] = STATE(3329), + [sym_bounded_type] = STATE(2069), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2552), + [sym_scoped_identifier] = STATE(2299), + [sym_scoped_type_identifier] = STATE(2203), + [sym_const_block] = STATE(2163), + [sym__pattern] = STATE(3292), + [sym_generic_pattern] = STATE(2163), + [sym_tuple_pattern] = STATE(2163), + [sym_slice_pattern] = STATE(2163), + [sym_tuple_struct_pattern] = STATE(2163), + [sym_struct_pattern] = STATE(2163), + [sym_remaining_field_pattern] = STATE(2163), + [sym_mut_pattern] = STATE(2163), + [sym_range_pattern] = STATE(2163), + [sym_ref_pattern] = STATE(2163), + [sym_captured_pattern] = STATE(2163), + [sym_reference_pattern] = STATE(2163), + [sym_or_pattern] = STATE(2163), + [sym__literal_pattern] = STATE(2098), + [sym_negative_literal] = STATE(2095), + [sym_string_literal] = STATE(2095), + [sym_raw_string_literal] = STATE(2095), + [sym_boolean_literal] = STATE(2095), + [sym_line_comment] = STATE(357), + [sym_block_comment] = STATE(357), + [aux_sym_function_modifiers_repeat1] = STATE(2244), + [sym_identifier] = ACTIONS(1306), + [anon_sym_LPAREN] = ACTIONS(1308), + [anon_sym_RPAREN] = ACTIONS(1414), + [anon_sym_LBRACK] = ACTIONS(1238), + [anon_sym_STAR] = ACTIONS(1240), + [anon_sym_QMARK] = ACTIONS(1242), + [anon_sym_u8] = ACTIONS(1312), + [anon_sym_i8] = ACTIONS(1312), + [anon_sym_u16] = ACTIONS(1312), + [anon_sym_i16] = ACTIONS(1312), + [anon_sym_u32] = ACTIONS(1312), + [anon_sym_i32] = ACTIONS(1312), + [anon_sym_u64] = ACTIONS(1312), + [anon_sym_i64] = ACTIONS(1312), + [anon_sym_u128] = ACTIONS(1312), + [anon_sym_i128] = ACTIONS(1312), + [anon_sym_isize] = ACTIONS(1312), + [anon_sym_usize] = ACTIONS(1312), + [anon_sym_f32] = ACTIONS(1312), + [anon_sym_f64] = ACTIONS(1312), + [anon_sym_bool] = ACTIONS(1312), + [anon_sym_str] = ACTIONS(1312), + [anon_sym_char] = ACTIONS(1312), + [anon_sym_DASH] = ACTIONS(1246), + [anon_sym_BANG] = ACTIONS(1248), + [anon_sym_AMP] = ACTIONS(1314), + [anon_sym_PIPE] = ACTIONS(1252), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1364), + [anon_sym_DOT_DOT] = ACTIONS(1256), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1258), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1260), + [anon_sym_COLON_COLON] = ACTIONS(1320), + [anon_sym_POUND] = ACTIONS(1266), + [anon_sym_SQUOTE] = ACTIONS(1268), + [anon_sym_async] = ACTIONS(1270), + [anon_sym_const] = ACTIONS(1272), + [anon_sym_default] = ACTIONS(1322), + [anon_sym_fn] = ACTIONS(1276), + [anon_sym_for] = ACTIONS(1278), + [anon_sym_gen] = ACTIONS(1324), + [anon_sym_impl] = ACTIONS(1282), + [anon_sym_union] = ACTIONS(1324), + [anon_sym_unsafe] = ACTIONS(1270), + [anon_sym_extern] = ACTIONS(1284), + [anon_sym_safe] = ACTIONS(1270), + [anon_sym_ref] = ACTIONS(1286), + [anon_sym_dyn] = ACTIONS(1288), + [sym_mutable_specifier] = ACTIONS(1290), + [sym_integer_literal] = ACTIONS(1292), + [aux_sym_string_literal_token1] = ACTIONS(1294), + [sym_char_literal] = ACTIONS(1292), + [anon_sym_true] = ACTIONS(1296), + [anon_sym_false] = ACTIONS(1296), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1326), + [sym_super] = ACTIONS(1328), + [sym_crate] = ACTIONS(1328), + [sym_metavariable] = ACTIONS(1330), + [sym__raw_string_literal_start] = ACTIONS(1304), + [sym_float_literal] = ACTIONS(1292), }, - [STATE(298)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1549), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1520), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [sym_line_comment] = STATE(298), - [sym_block_comment] = STATE(298), - [sym_identifier] = ACTIONS(339), + [STATE(358)] = { + [sym_bracketed_type] = STATE(3752), + [sym_generic_function] = STATE(1492), + [sym_generic_type_with_turbofish] = STATE(3039), + [sym__expression_except_range] = STATE(1409), + [sym__expression] = STATE(1952), + [sym_macro_invocation] = STATE(1529), + [sym_scoped_identifier] = STATE(1540), + [sym_scoped_type_identifier_in_expression_position] = STATE(3335), + [sym_range_expression] = STATE(1505), + [sym_unary_expression] = STATE(1492), + [sym_try_expression] = STATE(1492), + [sym_reference_expression] = STATE(1492), + [sym_binary_expression] = STATE(1492), + [sym_assignment_expression] = STATE(1492), + [sym_compound_assignment_expr] = STATE(1492), + [sym_type_cast_expression] = STATE(1492), + [sym_return_expression] = STATE(1492), + [sym_yield_expression] = STATE(1492), + [sym_call_expression] = STATE(1492), + [sym_array_expression] = STATE(1492), + [sym_parenthesized_expression] = STATE(1492), + [sym_tuple_expression] = STATE(1492), + [sym_unit_expression] = STATE(1492), + [sym_struct_expression] = STATE(1492), + [sym_if_expression] = STATE(1492), + [sym_match_expression] = STATE(1492), + [sym_while_expression] = STATE(1492), + [sym_loop_expression] = STATE(1492), + [sym_for_expression] = STATE(1492), + [sym_const_block] = STATE(1492), + [sym_closure_expression] = STATE(1492), + [sym_closure_parameters] = STATE(229), + [sym_label] = STATE(3689), + [sym_break_expression] = STATE(1492), + [sym_continue_expression] = STATE(1492), + [sym_index_expression] = STATE(1492), + [sym_await_expression] = STATE(1492), + [sym_field_expression] = STATE(1412), + [sym_unsafe_block] = STATE(1492), + [sym_async_block] = STATE(1492), + [sym_gen_block] = STATE(1492), + [sym_try_block] = STATE(1492), + [sym_block] = STATE(1492), + [sym__literal] = STATE(1492), + [sym_string_literal] = STATE(1530), + [sym_raw_string_literal] = STATE(1530), + [sym_boolean_literal] = STATE(1530), + [sym_line_comment] = STATE(358), + [sym_block_comment] = STATE(358), + [sym_identifier] = ACTIONS(344), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(348), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -51099,2223 +57957,543 @@ 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(1061), + [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), + [anon_sym_async] = ACTIONS(356), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(358), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), + [anon_sym_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(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(115), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [anon_sym_static] = ACTIONS(372), + [anon_sym_union] = ACTIONS(360), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [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(299)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3056), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1480), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1591), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [sym_line_comment] = STATE(299), - [sym_block_comment] = STATE(299), - [sym_identifier] = ACTIONS(467), + [STATE(359)] = { + [sym_attribute_item] = STATE(422), + [sym_function_modifiers] = STATE(3591), + [sym_removed_trait_bound] = STATE(2069), + [sym_self_parameter] = STATE(3352), + [sym_variadic_parameter] = STATE(3352), + [sym_parameter] = STATE(3352), + [sym_extern_modifier] = STATE(2373), + [sym__type] = STATE(3096), + [sym_bracketed_type] = STATE(3673), + [sym_lifetime] = STATE(3067), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1591), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2022), + [sym_generic_type_with_turbofish] = STATE(3329), + [sym_bounded_type] = STATE(2069), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2552), + [sym_scoped_identifier] = STATE(2299), + [sym_scoped_type_identifier] = STATE(2203), + [sym_const_block] = STATE(2163), + [sym__pattern] = STATE(3292), + [sym_generic_pattern] = STATE(2163), + [sym_tuple_pattern] = STATE(2163), + [sym_slice_pattern] = STATE(2163), + [sym_tuple_struct_pattern] = STATE(2163), + [sym_struct_pattern] = STATE(2163), + [sym_remaining_field_pattern] = STATE(2163), + [sym_mut_pattern] = STATE(2163), + [sym_range_pattern] = STATE(2163), + [sym_ref_pattern] = STATE(2163), + [sym_captured_pattern] = STATE(2163), + [sym_reference_pattern] = STATE(2163), + [sym_or_pattern] = STATE(2163), + [sym__literal_pattern] = STATE(2098), + [sym_negative_literal] = STATE(2095), + [sym_string_literal] = STATE(2095), + [sym_raw_string_literal] = STATE(2095), + [sym_boolean_literal] = STATE(2095), + [sym_line_comment] = STATE(359), + [sym_block_comment] = STATE(359), + [aux_sym_function_modifiers_repeat1] = STATE(2244), + [sym_identifier] = ACTIONS(1306), + [anon_sym_LPAREN] = ACTIONS(1308), + [anon_sym_RPAREN] = ACTIONS(1416), + [anon_sym_LBRACK] = ACTIONS(1238), + [anon_sym_STAR] = ACTIONS(1240), + [anon_sym_QMARK] = ACTIONS(1242), + [anon_sym_u8] = ACTIONS(1312), + [anon_sym_i8] = ACTIONS(1312), + [anon_sym_u16] = ACTIONS(1312), + [anon_sym_i16] = ACTIONS(1312), + [anon_sym_u32] = ACTIONS(1312), + [anon_sym_i32] = ACTIONS(1312), + [anon_sym_u64] = ACTIONS(1312), + [anon_sym_i64] = ACTIONS(1312), + [anon_sym_u128] = ACTIONS(1312), + [anon_sym_i128] = ACTIONS(1312), + [anon_sym_isize] = ACTIONS(1312), + [anon_sym_usize] = ACTIONS(1312), + [anon_sym_f32] = ACTIONS(1312), + [anon_sym_f64] = ACTIONS(1312), + [anon_sym_bool] = ACTIONS(1312), + [anon_sym_str] = ACTIONS(1312), + [anon_sym_char] = ACTIONS(1312), + [anon_sym_DASH] = ACTIONS(1246), + [anon_sym_BANG] = ACTIONS(1248), + [anon_sym_AMP] = ACTIONS(1314), + [anon_sym_PIPE] = ACTIONS(1252), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1364), + [anon_sym_DOT_DOT] = ACTIONS(1256), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1258), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1260), + [anon_sym_COLON_COLON] = ACTIONS(1320), + [anon_sym_POUND] = ACTIONS(1266), + [anon_sym_SQUOTE] = ACTIONS(1268), + [anon_sym_async] = ACTIONS(1270), + [anon_sym_const] = ACTIONS(1272), + [anon_sym_default] = ACTIONS(1322), + [anon_sym_fn] = ACTIONS(1276), + [anon_sym_for] = ACTIONS(1278), + [anon_sym_gen] = ACTIONS(1324), + [anon_sym_impl] = ACTIONS(1282), + [anon_sym_union] = ACTIONS(1324), + [anon_sym_unsafe] = ACTIONS(1270), + [anon_sym_extern] = ACTIONS(1284), + [anon_sym_safe] = ACTIONS(1270), + [anon_sym_ref] = ACTIONS(1286), + [anon_sym_dyn] = ACTIONS(1288), + [sym_mutable_specifier] = ACTIONS(1290), + [sym_integer_literal] = ACTIONS(1292), + [aux_sym_string_literal_token1] = ACTIONS(1294), + [sym_char_literal] = ACTIONS(1292), + [anon_sym_true] = ACTIONS(1296), + [anon_sym_false] = ACTIONS(1296), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1326), + [sym_super] = ACTIONS(1328), + [sym_crate] = ACTIONS(1328), + [sym_metavariable] = ACTIONS(1330), + [sym__raw_string_literal_start] = ACTIONS(1304), + [sym_float_literal] = ACTIONS(1292), + }, + [STATE(360)] = { + [sym_attribute_item] = STATE(422), + [sym_function_modifiers] = STATE(3591), + [sym_removed_trait_bound] = STATE(2069), + [sym_self_parameter] = STATE(3352), + [sym_variadic_parameter] = STATE(3352), + [sym_parameter] = STATE(3352), + [sym_extern_modifier] = STATE(2373), + [sym__type] = STATE(3096), + [sym_bracketed_type] = STATE(3673), + [sym_lifetime] = STATE(3067), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1591), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2022), + [sym_generic_type_with_turbofish] = STATE(3329), + [sym_bounded_type] = STATE(2069), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2552), + [sym_scoped_identifier] = STATE(2299), + [sym_scoped_type_identifier] = STATE(2203), + [sym_const_block] = STATE(2163), + [sym__pattern] = STATE(3292), + [sym_generic_pattern] = STATE(2163), + [sym_tuple_pattern] = STATE(2163), + [sym_slice_pattern] = STATE(2163), + [sym_tuple_struct_pattern] = STATE(2163), + [sym_struct_pattern] = STATE(2163), + [sym_remaining_field_pattern] = STATE(2163), + [sym_mut_pattern] = STATE(2163), + [sym_range_pattern] = STATE(2163), + [sym_ref_pattern] = STATE(2163), + [sym_captured_pattern] = STATE(2163), + [sym_reference_pattern] = STATE(2163), + [sym_or_pattern] = STATE(2163), + [sym__literal_pattern] = STATE(2098), + [sym_negative_literal] = STATE(2095), + [sym_string_literal] = STATE(2095), + [sym_raw_string_literal] = STATE(2095), + [sym_boolean_literal] = STATE(2095), + [sym_line_comment] = STATE(360), + [sym_block_comment] = STATE(360), + [aux_sym_function_modifiers_repeat1] = STATE(2244), + [sym_identifier] = ACTIONS(1306), + [anon_sym_LPAREN] = ACTIONS(1308), + [anon_sym_RPAREN] = ACTIONS(1418), + [anon_sym_LBRACK] = ACTIONS(1238), + [anon_sym_STAR] = ACTIONS(1240), + [anon_sym_QMARK] = ACTIONS(1242), + [anon_sym_u8] = ACTIONS(1312), + [anon_sym_i8] = ACTIONS(1312), + [anon_sym_u16] = ACTIONS(1312), + [anon_sym_i16] = ACTIONS(1312), + [anon_sym_u32] = ACTIONS(1312), + [anon_sym_i32] = ACTIONS(1312), + [anon_sym_u64] = ACTIONS(1312), + [anon_sym_i64] = ACTIONS(1312), + [anon_sym_u128] = ACTIONS(1312), + [anon_sym_i128] = ACTIONS(1312), + [anon_sym_isize] = ACTIONS(1312), + [anon_sym_usize] = ACTIONS(1312), + [anon_sym_f32] = ACTIONS(1312), + [anon_sym_f64] = ACTIONS(1312), + [anon_sym_bool] = ACTIONS(1312), + [anon_sym_str] = ACTIONS(1312), + [anon_sym_char] = ACTIONS(1312), + [anon_sym_DASH] = ACTIONS(1246), + [anon_sym_BANG] = ACTIONS(1248), + [anon_sym_AMP] = ACTIONS(1314), + [anon_sym_PIPE] = ACTIONS(1252), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1364), + [anon_sym_DOT_DOT] = ACTIONS(1256), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1258), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1260), + [anon_sym_COLON_COLON] = ACTIONS(1320), + [anon_sym_POUND] = ACTIONS(1266), + [anon_sym_SQUOTE] = ACTIONS(1268), + [anon_sym_async] = ACTIONS(1270), + [anon_sym_const] = ACTIONS(1272), + [anon_sym_default] = ACTIONS(1322), + [anon_sym_fn] = ACTIONS(1276), + [anon_sym_for] = ACTIONS(1278), + [anon_sym_gen] = ACTIONS(1324), + [anon_sym_impl] = ACTIONS(1282), + [anon_sym_union] = ACTIONS(1324), + [anon_sym_unsafe] = ACTIONS(1270), + [anon_sym_extern] = ACTIONS(1284), + [anon_sym_safe] = ACTIONS(1270), + [anon_sym_ref] = ACTIONS(1286), + [anon_sym_dyn] = ACTIONS(1288), + [sym_mutable_specifier] = ACTIONS(1290), + [sym_integer_literal] = ACTIONS(1292), + [aux_sym_string_literal_token1] = ACTIONS(1294), + [sym_char_literal] = ACTIONS(1292), + [anon_sym_true] = ACTIONS(1296), + [anon_sym_false] = ACTIONS(1296), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1326), + [sym_super] = ACTIONS(1328), + [sym_crate] = ACTIONS(1328), + [sym_metavariable] = ACTIONS(1330), + [sym__raw_string_literal_start] = ACTIONS(1304), + [sym_float_literal] = ACTIONS(1292), + }, + [STATE(361)] = { + [sym_attribute_item] = STATE(422), + [sym_function_modifiers] = STATE(3591), + [sym_removed_trait_bound] = STATE(2069), + [sym_self_parameter] = STATE(3352), + [sym_variadic_parameter] = STATE(3352), + [sym_parameter] = STATE(3352), + [sym_extern_modifier] = STATE(2373), + [sym__type] = STATE(3096), + [sym_bracketed_type] = STATE(3673), + [sym_lifetime] = STATE(3067), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1591), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2022), + [sym_generic_type_with_turbofish] = STATE(3329), + [sym_bounded_type] = STATE(2069), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2552), + [sym_scoped_identifier] = STATE(2299), + [sym_scoped_type_identifier] = STATE(2203), + [sym_const_block] = STATE(2163), + [sym__pattern] = STATE(3292), + [sym_generic_pattern] = STATE(2163), + [sym_tuple_pattern] = STATE(2163), + [sym_slice_pattern] = STATE(2163), + [sym_tuple_struct_pattern] = STATE(2163), + [sym_struct_pattern] = STATE(2163), + [sym_remaining_field_pattern] = STATE(2163), + [sym_mut_pattern] = STATE(2163), + [sym_range_pattern] = STATE(2163), + [sym_ref_pattern] = STATE(2163), + [sym_captured_pattern] = STATE(2163), + [sym_reference_pattern] = STATE(2163), + [sym_or_pattern] = STATE(2163), + [sym__literal_pattern] = STATE(2098), + [sym_negative_literal] = STATE(2095), + [sym_string_literal] = STATE(2095), + [sym_raw_string_literal] = STATE(2095), + [sym_boolean_literal] = STATE(2095), + [sym_line_comment] = STATE(361), + [sym_block_comment] = STATE(361), + [aux_sym_function_modifiers_repeat1] = STATE(2244), + [sym_identifier] = ACTIONS(1306), + [anon_sym_LPAREN] = ACTIONS(1308), + [anon_sym_RPAREN] = ACTIONS(1420), + [anon_sym_LBRACK] = ACTIONS(1238), + [anon_sym_STAR] = ACTIONS(1240), + [anon_sym_QMARK] = ACTIONS(1242), + [anon_sym_u8] = ACTIONS(1312), + [anon_sym_i8] = ACTIONS(1312), + [anon_sym_u16] = ACTIONS(1312), + [anon_sym_i16] = ACTIONS(1312), + [anon_sym_u32] = ACTIONS(1312), + [anon_sym_i32] = ACTIONS(1312), + [anon_sym_u64] = ACTIONS(1312), + [anon_sym_i64] = ACTIONS(1312), + [anon_sym_u128] = ACTIONS(1312), + [anon_sym_i128] = ACTIONS(1312), + [anon_sym_isize] = ACTIONS(1312), + [anon_sym_usize] = ACTIONS(1312), + [anon_sym_f32] = ACTIONS(1312), + [anon_sym_f64] = ACTIONS(1312), + [anon_sym_bool] = ACTIONS(1312), + [anon_sym_str] = ACTIONS(1312), + [anon_sym_char] = ACTIONS(1312), + [anon_sym_DASH] = ACTIONS(1246), + [anon_sym_BANG] = ACTIONS(1248), + [anon_sym_AMP] = ACTIONS(1314), + [anon_sym_PIPE] = ACTIONS(1252), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1364), + [anon_sym_DOT_DOT] = ACTIONS(1256), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1258), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1260), + [anon_sym_COLON_COLON] = ACTIONS(1320), + [anon_sym_POUND] = ACTIONS(1266), + [anon_sym_SQUOTE] = ACTIONS(1268), + [anon_sym_async] = ACTIONS(1270), + [anon_sym_const] = ACTIONS(1272), + [anon_sym_default] = ACTIONS(1322), + [anon_sym_fn] = ACTIONS(1276), + [anon_sym_for] = ACTIONS(1278), + [anon_sym_gen] = ACTIONS(1324), + [anon_sym_impl] = ACTIONS(1282), + [anon_sym_union] = ACTIONS(1324), + [anon_sym_unsafe] = ACTIONS(1270), + [anon_sym_extern] = ACTIONS(1284), + [anon_sym_safe] = ACTIONS(1270), + [anon_sym_ref] = ACTIONS(1286), + [anon_sym_dyn] = ACTIONS(1288), + [sym_mutable_specifier] = ACTIONS(1290), + [sym_integer_literal] = ACTIONS(1292), + [aux_sym_string_literal_token1] = ACTIONS(1294), + [sym_char_literal] = ACTIONS(1292), + [anon_sym_true] = ACTIONS(1296), + [anon_sym_false] = ACTIONS(1296), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1326), + [sym_super] = ACTIONS(1328), + [sym_crate] = ACTIONS(1328), + [sym_metavariable] = ACTIONS(1330), + [sym__raw_string_literal_start] = ACTIONS(1304), + [sym_float_literal] = ACTIONS(1292), + }, + [STATE(362)] = { + [sym_bracketed_type] = STATE(3752), + [sym_generic_function] = STATE(1492), + [sym_generic_type_with_turbofish] = STATE(3039), + [sym__expression_except_range] = STATE(1409), + [sym__expression] = STATE(1913), + [sym_macro_invocation] = STATE(1529), + [sym_scoped_identifier] = STATE(1540), + [sym_scoped_type_identifier_in_expression_position] = STATE(3335), + [sym_range_expression] = STATE(1505), + [sym_unary_expression] = STATE(1492), + [sym_try_expression] = STATE(1492), + [sym_reference_expression] = STATE(1492), + [sym_binary_expression] = STATE(1492), + [sym_assignment_expression] = STATE(1492), + [sym_compound_assignment_expr] = STATE(1492), + [sym_type_cast_expression] = STATE(1492), + [sym_return_expression] = STATE(1492), + [sym_yield_expression] = STATE(1492), + [sym_call_expression] = STATE(1492), + [sym_array_expression] = STATE(1492), + [sym_parenthesized_expression] = STATE(1492), + [sym_tuple_expression] = STATE(1492), + [sym_unit_expression] = STATE(1492), + [sym_struct_expression] = STATE(1492), + [sym_if_expression] = STATE(1492), + [sym_match_expression] = STATE(1492), + [sym_while_expression] = STATE(1492), + [sym_loop_expression] = STATE(1492), + [sym_for_expression] = STATE(1492), + [sym_const_block] = STATE(1492), + [sym_closure_expression] = STATE(1492), + [sym_closure_parameters] = STATE(229), + [sym_label] = STATE(3689), + [sym_break_expression] = STATE(1492), + [sym_continue_expression] = STATE(1492), + [sym_index_expression] = STATE(1492), + [sym_await_expression] = STATE(1492), + [sym_field_expression] = STATE(1412), + [sym_unsafe_block] = STATE(1492), + [sym_async_block] = STATE(1492), + [sym_gen_block] = STATE(1492), + [sym_try_block] = STATE(1492), + [sym_block] = STATE(1492), + [sym__literal] = STATE(1492), + [sym_string_literal] = STATE(1530), + [sym_raw_string_literal] = STATE(1530), + [sym_boolean_literal] = STATE(1530), + [sym_line_comment] = STATE(362), + [sym_block_comment] = STATE(362), + [sym_identifier] = ACTIONS(344), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(901), - [anon_sym_u8] = ACTIONS(469), - [anon_sym_i8] = ACTIONS(469), - [anon_sym_u16] = ACTIONS(469), - [anon_sym_i16] = ACTIONS(469), - [anon_sym_u32] = ACTIONS(469), - [anon_sym_i32] = ACTIONS(469), - [anon_sym_u64] = ACTIONS(469), - [anon_sym_i64] = ACTIONS(469), - [anon_sym_u128] = ACTIONS(469), - [anon_sym_i128] = ACTIONS(469), - [anon_sym_isize] = ACTIONS(469), - [anon_sym_usize] = ACTIONS(469), - [anon_sym_f32] = ACTIONS(469), - [anon_sym_f64] = ACTIONS(469), - [anon_sym_bool] = ACTIONS(469), - [anon_sym_str] = ACTIONS(469), - [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(901), - [anon_sym_BANG] = ACTIONS(901), - [anon_sym_AMP] = ACTIONS(903), + [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(1055), - [anon_sym_COLON_COLON] = ACTIONS(473), + [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(477), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(477), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(489), - [sym_super] = ACTIONS(491), - [sym_crate] = ACTIONS(491), - [sym_metavariable] = ACTIONS(493), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [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_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(300)] = { - [sym_bracketed_type] = STATE(3621), - [sym_generic_function] = STATE(1691), - [sym_generic_type_with_turbofish] = STATE(3063), - [sym__expression_except_range] = STATE(1659), - [sym__expression] = STATE(1912), - [sym_macro_invocation] = STATE(1708), - [sym_scoped_identifier] = STATE(1599), - [sym_scoped_type_identifier_in_expression_position] = STATE(3307), - [sym_range_expression] = STATE(1695), - [sym_unary_expression] = STATE(1691), - [sym_try_expression] = STATE(1691), - [sym_reference_expression] = STATE(1691), - [sym_binary_expression] = STATE(1691), - [sym_assignment_expression] = STATE(1691), - [sym_compound_assignment_expr] = STATE(1691), - [sym_type_cast_expression] = STATE(1691), - [sym_return_expression] = STATE(1691), - [sym_yield_expression] = STATE(1691), - [sym_call_expression] = STATE(1691), - [sym_array_expression] = STATE(1691), - [sym_parenthesized_expression] = STATE(1691), - [sym_tuple_expression] = STATE(1691), - [sym_unit_expression] = STATE(1691), - [sym_struct_expression] = STATE(1691), - [sym_if_expression] = STATE(1691), - [sym_match_expression] = STATE(1691), - [sym_while_expression] = STATE(1691), - [sym_loop_expression] = STATE(1691), - [sym_for_expression] = STATE(1691), - [sym_const_block] = STATE(1691), - [sym_closure_expression] = STATE(1691), + [STATE(363)] = { + [sym_bracketed_type] = STATE(3752), + [sym_generic_function] = STATE(1492), + [sym_generic_type_with_turbofish] = STATE(3039), + [sym__expression_except_range] = STATE(1409), + [sym__expression] = STATE(1915), + [sym_macro_invocation] = STATE(1529), + [sym_scoped_identifier] = STATE(1540), + [sym_scoped_type_identifier_in_expression_position] = STATE(3335), + [sym_range_expression] = STATE(1505), + [sym_unary_expression] = STATE(1492), + [sym_try_expression] = STATE(1492), + [sym_reference_expression] = STATE(1492), + [sym_binary_expression] = STATE(1492), + [sym_assignment_expression] = STATE(1492), + [sym_compound_assignment_expr] = STATE(1492), + [sym_type_cast_expression] = STATE(1492), + [sym_return_expression] = STATE(1492), + [sym_yield_expression] = STATE(1492), + [sym_call_expression] = STATE(1492), + [sym_array_expression] = STATE(1492), + [sym_parenthesized_expression] = STATE(1492), + [sym_tuple_expression] = STATE(1492), + [sym_unit_expression] = STATE(1492), + [sym_struct_expression] = STATE(1492), + [sym_if_expression] = STATE(1492), + [sym_match_expression] = STATE(1492), + [sym_while_expression] = STATE(1492), + [sym_loop_expression] = STATE(1492), + [sym_for_expression] = STATE(1492), + [sym_const_block] = STATE(1492), + [sym_closure_expression] = STATE(1492), [sym_closure_parameters] = STATE(229), - [sym_label] = STATE(3712), - [sym_break_expression] = STATE(1691), - [sym_continue_expression] = STATE(1691), - [sym_index_expression] = STATE(1691), - [sym_await_expression] = STATE(1691), - [sym_field_expression] = STATE(1671), - [sym_unsafe_block] = STATE(1691), - [sym_async_block] = STATE(1691), - [sym_gen_block] = STATE(1691), - [sym_try_block] = STATE(1691), - [sym_block] = STATE(1691), - [sym__literal] = STATE(1691), - [sym_string_literal] = STATE(1776), - [sym_raw_string_literal] = STATE(1776), - [sym_boolean_literal] = STATE(1776), - [sym_line_comment] = STATE(300), - [sym_block_comment] = STATE(300), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(495), - [anon_sym_LBRACK] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(979), - [anon_sym_u8] = ACTIONS(411), - [anon_sym_i8] = ACTIONS(411), - [anon_sym_u16] = ACTIONS(411), - [anon_sym_i16] = ACTIONS(411), - [anon_sym_u32] = ACTIONS(411), - [anon_sym_i32] = ACTIONS(411), - [anon_sym_u64] = ACTIONS(411), - [anon_sym_i64] = ACTIONS(411), - [anon_sym_u128] = ACTIONS(411), - [anon_sym_i128] = ACTIONS(411), - [anon_sym_isize] = ACTIONS(411), - [anon_sym_usize] = ACTIONS(411), - [anon_sym_f32] = ACTIONS(411), - [anon_sym_f64] = ACTIONS(411), - [anon_sym_bool] = ACTIONS(411), - [anon_sym_str] = ACTIONS(411), - [anon_sym_char] = ACTIONS(411), - [anon_sym_DASH] = ACTIONS(979), - [anon_sym_BANG] = ACTIONS(979), - [anon_sym_AMP] = ACTIONS(981), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(983), - [anon_sym_COLON_COLON] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(417), - [anon_sym_break] = ACTIONS(419), - [anon_sym_const] = ACTIONS(421), - [anon_sym_continue] = ACTIONS(423), - [anon_sym_default] = ACTIONS(425), - [anon_sym_for] = ACTIONS(427), - [anon_sym_gen] = ACTIONS(429), - [anon_sym_if] = ACTIONS(431), - [anon_sym_loop] = ACTIONS(433), - [anon_sym_match] = ACTIONS(435), - [anon_sym_return] = ACTIONS(437), - [anon_sym_static] = ACTIONS(439), - [anon_sym_union] = ACTIONS(425), - [anon_sym_unsafe] = ACTIONS(441), - [anon_sym_while] = ACTIONS(443), - [anon_sym_yield] = ACTIONS(445), - [anon_sym_move] = ACTIONS(447), - [anon_sym_try] = ACTIONS(449), - [sym_integer_literal] = ACTIONS(451), - [aux_sym_string_literal_token1] = ACTIONS(453), - [sym_char_literal] = ACTIONS(451), - [anon_sym_true] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(457), - [sym_super] = ACTIONS(459), - [sym_crate] = ACTIONS(459), - [sym_metavariable] = ACTIONS(461), - [sym__raw_string_literal_start] = ACTIONS(463), - [sym_float_literal] = ACTIONS(451), - }, - [STATE(301)] = { - [sym_attribute_item] = STATE(421), - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_self_parameter] = STATE(2950), - [sym_variadic_parameter] = STATE(2950), - [sym_parameter] = STATE(2950), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2754), - [sym_bracketed_type] = STATE(3644), - [sym_lifetime] = STATE(3011), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3299), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2550), - [sym_scoped_identifier] = STATE(2273), - [sym_scoped_type_identifier] = STATE(2154), - [sym_const_block] = STATE(2150), - [sym__pattern] = STATE(3345), - [sym_generic_pattern] = STATE(2150), - [sym_tuple_pattern] = STATE(2150), - [sym_slice_pattern] = STATE(2150), - [sym_tuple_struct_pattern] = STATE(2150), - [sym_struct_pattern] = STATE(2150), - [sym_remaining_field_pattern] = STATE(2150), - [sym_mut_pattern] = STATE(2150), - [sym_range_pattern] = STATE(2150), - [sym_ref_pattern] = STATE(2150), - [sym_captured_pattern] = STATE(2150), - [sym_reference_pattern] = STATE(2150), - [sym_or_pattern] = STATE(2150), - [sym__literal_pattern] = STATE(2076), - [sym_negative_literal] = STATE(2074), - [sym_string_literal] = STATE(2074), - [sym_raw_string_literal] = STATE(2074), - [sym_boolean_literal] = STATE(2074), - [sym_line_comment] = STATE(301), - [sym_block_comment] = STATE(301), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(1323), - [anon_sym_LPAREN] = ACTIONS(1325), - [anon_sym_RPAREN] = ACTIONS(1327), - [anon_sym_LBRACK] = ACTIONS(1233), - [anon_sym_STAR] = ACTIONS(1235), - [anon_sym_QMARK] = ACTIONS(1237), - [anon_sym_u8] = ACTIONS(1329), - [anon_sym_i8] = ACTIONS(1329), - [anon_sym_u16] = ACTIONS(1329), - [anon_sym_i16] = ACTIONS(1329), - [anon_sym_u32] = ACTIONS(1329), - [anon_sym_i32] = ACTIONS(1329), - [anon_sym_u64] = ACTIONS(1329), - [anon_sym_i64] = ACTIONS(1329), - [anon_sym_u128] = ACTIONS(1329), - [anon_sym_i128] = ACTIONS(1329), - [anon_sym_isize] = ACTIONS(1329), - [anon_sym_usize] = ACTIONS(1329), - [anon_sym_f32] = ACTIONS(1329), - [anon_sym_f64] = ACTIONS(1329), - [anon_sym_bool] = ACTIONS(1329), - [anon_sym_str] = ACTIONS(1329), - [anon_sym_char] = ACTIONS(1329), - [anon_sym_DASH] = ACTIONS(1241), - [anon_sym_BANG] = ACTIONS(1243), - [anon_sym_AMP] = ACTIONS(1331), - [anon_sym_PIPE] = ACTIONS(1247), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1333), - [anon_sym_DOT_DOT] = ACTIONS(1251), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1253), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1255), - [anon_sym_COMMA] = ACTIONS(1335), - [anon_sym_COLON_COLON] = ACTIONS(1337), - [anon_sym_POUND] = ACTIONS(1261), - [anon_sym_SQUOTE] = ACTIONS(1263), - [anon_sym_async] = ACTIONS(1265), - [anon_sym_const] = ACTIONS(1267), - [anon_sym_default] = ACTIONS(1339), - [anon_sym_fn] = ACTIONS(1271), - [anon_sym_for] = ACTIONS(1273), - [anon_sym_gen] = ACTIONS(1341), - [anon_sym_impl] = ACTIONS(1277), - [anon_sym_union] = ACTIONS(1341), - [anon_sym_unsafe] = ACTIONS(1265), - [anon_sym_extern] = ACTIONS(1279), - [anon_sym_ref] = ACTIONS(1281), - [anon_sym_dyn] = ACTIONS(1283), - [sym_mutable_specifier] = ACTIONS(1285), - [sym_integer_literal] = ACTIONS(1287), - [aux_sym_string_literal_token1] = ACTIONS(1289), - [sym_char_literal] = ACTIONS(1287), - [anon_sym_true] = ACTIONS(1291), - [anon_sym_false] = ACTIONS(1291), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1343), - [sym_super] = ACTIONS(1345), - [sym_crate] = ACTIONS(1345), - [sym_metavariable] = ACTIONS(1347), - [sym__raw_string_literal_start] = ACTIONS(1299), - [sym_float_literal] = ACTIONS(1287), - }, - [STATE(302)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3056), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1804), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1591), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(244), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [sym_line_comment] = STATE(302), - [sym_block_comment] = STATE(302), - [sym_identifier] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1073), - [anon_sym_u8] = ACTIONS(469), - [anon_sym_i8] = ACTIONS(469), - [anon_sym_u16] = ACTIONS(469), - [anon_sym_i16] = ACTIONS(469), - [anon_sym_u32] = ACTIONS(469), - [anon_sym_i32] = ACTIONS(469), - [anon_sym_u64] = ACTIONS(469), - [anon_sym_i64] = ACTIONS(469), - [anon_sym_u128] = ACTIONS(469), - [anon_sym_i128] = ACTIONS(469), - [anon_sym_isize] = ACTIONS(469), - [anon_sym_usize] = ACTIONS(469), - [anon_sym_f32] = ACTIONS(469), - [anon_sym_f64] = ACTIONS(469), - [anon_sym_bool] = ACTIONS(469), - [anon_sym_str] = ACTIONS(469), - [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(1073), - [anon_sym_BANG] = ACTIONS(1073), - [anon_sym_AMP] = ACTIONS(1075), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1349), - [anon_sym_COLON_COLON] = ACTIONS(473), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(475), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(477), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(479), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(481), - [anon_sym_static] = ACTIONS(483), - [anon_sym_union] = ACTIONS(477), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(485), - [anon_sym_move] = ACTIONS(487), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(489), - [sym_super] = ACTIONS(491), - [sym_crate] = ACTIONS(491), - [sym_metavariable] = ACTIONS(493), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), - }, - [STATE(303)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3056), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1507), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1591), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(244), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [sym_line_comment] = STATE(303), - [sym_block_comment] = STATE(303), - [sym_identifier] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1073), - [anon_sym_u8] = ACTIONS(469), - [anon_sym_i8] = ACTIONS(469), - [anon_sym_u16] = ACTIONS(469), - [anon_sym_i16] = ACTIONS(469), - [anon_sym_u32] = ACTIONS(469), - [anon_sym_i32] = ACTIONS(469), - [anon_sym_u64] = ACTIONS(469), - [anon_sym_i64] = ACTIONS(469), - [anon_sym_u128] = ACTIONS(469), - [anon_sym_i128] = ACTIONS(469), - [anon_sym_isize] = ACTIONS(469), - [anon_sym_usize] = ACTIONS(469), - [anon_sym_f32] = ACTIONS(469), - [anon_sym_f64] = ACTIONS(469), - [anon_sym_bool] = ACTIONS(469), - [anon_sym_str] = ACTIONS(469), - [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(1073), - [anon_sym_BANG] = ACTIONS(1073), - [anon_sym_AMP] = ACTIONS(1075), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1077), - [anon_sym_COLON_COLON] = ACTIONS(473), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(475), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(477), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(479), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(481), - [anon_sym_static] = ACTIONS(483), - [anon_sym_union] = ACTIONS(477), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(485), - [anon_sym_move] = ACTIONS(487), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(489), - [sym_super] = ACTIONS(491), - [sym_crate] = ACTIONS(491), - [sym_metavariable] = ACTIONS(493), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), - }, - [STATE(304)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3056), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1853), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1591), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(244), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [sym_line_comment] = STATE(304), - [sym_block_comment] = STATE(304), - [sym_identifier] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1073), - [anon_sym_u8] = ACTIONS(469), - [anon_sym_i8] = ACTIONS(469), - [anon_sym_u16] = ACTIONS(469), - [anon_sym_i16] = ACTIONS(469), - [anon_sym_u32] = ACTIONS(469), - [anon_sym_i32] = ACTIONS(469), - [anon_sym_u64] = ACTIONS(469), - [anon_sym_i64] = ACTIONS(469), - [anon_sym_u128] = ACTIONS(469), - [anon_sym_i128] = ACTIONS(469), - [anon_sym_isize] = ACTIONS(469), - [anon_sym_usize] = ACTIONS(469), - [anon_sym_f32] = ACTIONS(469), - [anon_sym_f64] = ACTIONS(469), - [anon_sym_bool] = ACTIONS(469), - [anon_sym_str] = ACTIONS(469), - [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(1073), - [anon_sym_BANG] = ACTIONS(1073), - [anon_sym_AMP] = ACTIONS(1075), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1077), - [anon_sym_COLON_COLON] = ACTIONS(473), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(475), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(477), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(479), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(481), - [anon_sym_static] = ACTIONS(483), - [anon_sym_union] = ACTIONS(477), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(485), - [anon_sym_move] = ACTIONS(487), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(489), - [sym_super] = ACTIONS(491), - [sym_crate] = ACTIONS(491), - [sym_metavariable] = ACTIONS(493), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), - }, - [STATE(305)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3056), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1467), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1591), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(244), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [sym_line_comment] = STATE(305), - [sym_block_comment] = STATE(305), - [sym_identifier] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1073), - [anon_sym_u8] = ACTIONS(469), - [anon_sym_i8] = ACTIONS(469), - [anon_sym_u16] = ACTIONS(469), - [anon_sym_i16] = ACTIONS(469), - [anon_sym_u32] = ACTIONS(469), - [anon_sym_i32] = ACTIONS(469), - [anon_sym_u64] = ACTIONS(469), - [anon_sym_i64] = ACTIONS(469), - [anon_sym_u128] = ACTIONS(469), - [anon_sym_i128] = ACTIONS(469), - [anon_sym_isize] = ACTIONS(469), - [anon_sym_usize] = ACTIONS(469), - [anon_sym_f32] = ACTIONS(469), - [anon_sym_f64] = ACTIONS(469), - [anon_sym_bool] = ACTIONS(469), - [anon_sym_str] = ACTIONS(469), - [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(1073), - [anon_sym_BANG] = ACTIONS(1073), - [anon_sym_AMP] = ACTIONS(1075), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1077), - [anon_sym_COLON_COLON] = ACTIONS(473), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(475), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(477), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(479), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(481), - [anon_sym_static] = ACTIONS(483), - [anon_sym_union] = ACTIONS(477), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(485), - [anon_sym_move] = ACTIONS(487), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(489), - [sym_super] = ACTIONS(491), - [sym_crate] = ACTIONS(491), - [sym_metavariable] = ACTIONS(493), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), - }, - [STATE(306)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3056), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1854), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1591), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(244), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [sym_line_comment] = STATE(306), - [sym_block_comment] = STATE(306), - [sym_identifier] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1073), - [anon_sym_u8] = ACTIONS(469), - [anon_sym_i8] = ACTIONS(469), - [anon_sym_u16] = ACTIONS(469), - [anon_sym_i16] = ACTIONS(469), - [anon_sym_u32] = ACTIONS(469), - [anon_sym_i32] = ACTIONS(469), - [anon_sym_u64] = ACTIONS(469), - [anon_sym_i64] = ACTIONS(469), - [anon_sym_u128] = ACTIONS(469), - [anon_sym_i128] = ACTIONS(469), - [anon_sym_isize] = ACTIONS(469), - [anon_sym_usize] = ACTIONS(469), - [anon_sym_f32] = ACTIONS(469), - [anon_sym_f64] = ACTIONS(469), - [anon_sym_bool] = ACTIONS(469), - [anon_sym_str] = ACTIONS(469), - [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(1073), - [anon_sym_BANG] = ACTIONS(1073), - [anon_sym_AMP] = ACTIONS(1075), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1077), - [anon_sym_COLON_COLON] = ACTIONS(473), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(475), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(477), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(479), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(481), - [anon_sym_static] = ACTIONS(483), - [anon_sym_union] = ACTIONS(477), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(485), - [anon_sym_move] = ACTIONS(487), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(489), - [sym_super] = ACTIONS(491), - [sym_crate] = ACTIONS(491), - [sym_metavariable] = ACTIONS(493), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), - }, - [STATE(307)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3056), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1856), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1591), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(244), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [sym_line_comment] = STATE(307), - [sym_block_comment] = STATE(307), - [sym_identifier] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1073), - [anon_sym_u8] = ACTIONS(469), - [anon_sym_i8] = ACTIONS(469), - [anon_sym_u16] = ACTIONS(469), - [anon_sym_i16] = ACTIONS(469), - [anon_sym_u32] = ACTIONS(469), - [anon_sym_i32] = ACTIONS(469), - [anon_sym_u64] = ACTIONS(469), - [anon_sym_i64] = ACTIONS(469), - [anon_sym_u128] = ACTIONS(469), - [anon_sym_i128] = ACTIONS(469), - [anon_sym_isize] = ACTIONS(469), - [anon_sym_usize] = ACTIONS(469), - [anon_sym_f32] = ACTIONS(469), - [anon_sym_f64] = ACTIONS(469), - [anon_sym_bool] = ACTIONS(469), - [anon_sym_str] = ACTIONS(469), - [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(1073), - [anon_sym_BANG] = ACTIONS(1073), - [anon_sym_AMP] = ACTIONS(1075), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1077), - [anon_sym_COLON_COLON] = ACTIONS(473), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(475), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(477), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(479), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(481), - [anon_sym_static] = ACTIONS(483), - [anon_sym_union] = ACTIONS(477), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(485), - [anon_sym_move] = ACTIONS(487), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(489), - [sym_super] = ACTIONS(491), - [sym_crate] = ACTIONS(491), - [sym_metavariable] = ACTIONS(493), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), - }, - [STATE(308)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3056), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1858), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1591), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(244), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [sym_line_comment] = STATE(308), - [sym_block_comment] = STATE(308), - [sym_identifier] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1073), - [anon_sym_u8] = ACTIONS(469), - [anon_sym_i8] = ACTIONS(469), - [anon_sym_u16] = ACTIONS(469), - [anon_sym_i16] = ACTIONS(469), - [anon_sym_u32] = ACTIONS(469), - [anon_sym_i32] = ACTIONS(469), - [anon_sym_u64] = ACTIONS(469), - [anon_sym_i64] = ACTIONS(469), - [anon_sym_u128] = ACTIONS(469), - [anon_sym_i128] = ACTIONS(469), - [anon_sym_isize] = ACTIONS(469), - [anon_sym_usize] = ACTIONS(469), - [anon_sym_f32] = ACTIONS(469), - [anon_sym_f64] = ACTIONS(469), - [anon_sym_bool] = ACTIONS(469), - [anon_sym_str] = ACTIONS(469), - [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(1073), - [anon_sym_BANG] = ACTIONS(1073), - [anon_sym_AMP] = ACTIONS(1075), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1077), - [anon_sym_COLON_COLON] = ACTIONS(473), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(475), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(477), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(479), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(481), - [anon_sym_static] = ACTIONS(483), - [anon_sym_union] = ACTIONS(477), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(485), - [anon_sym_move] = ACTIONS(487), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(489), - [sym_super] = ACTIONS(491), - [sym_crate] = ACTIONS(491), - [sym_metavariable] = ACTIONS(493), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), - }, - [STATE(309)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3056), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1635), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1591), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [sym_line_comment] = STATE(309), - [sym_block_comment] = STATE(309), - [sym_identifier] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(901), - [anon_sym_u8] = ACTIONS(469), - [anon_sym_i8] = ACTIONS(469), - [anon_sym_u16] = ACTIONS(469), - [anon_sym_i16] = ACTIONS(469), - [anon_sym_u32] = ACTIONS(469), - [anon_sym_i32] = ACTIONS(469), - [anon_sym_u64] = ACTIONS(469), - [anon_sym_i64] = ACTIONS(469), - [anon_sym_u128] = ACTIONS(469), - [anon_sym_i128] = ACTIONS(469), - [anon_sym_isize] = ACTIONS(469), - [anon_sym_usize] = ACTIONS(469), - [anon_sym_f32] = ACTIONS(469), - [anon_sym_f64] = ACTIONS(469), - [anon_sym_bool] = ACTIONS(469), - [anon_sym_str] = ACTIONS(469), - [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(901), - [anon_sym_BANG] = ACTIONS(901), - [anon_sym_AMP] = ACTIONS(903), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1055), - [anon_sym_COLON_COLON] = ACTIONS(473), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(477), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(477), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(489), - [sym_super] = ACTIONS(491), - [sym_crate] = ACTIONS(491), - [sym_metavariable] = ACTIONS(493), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), - }, - [STATE(310)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3056), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1866), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1591), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(244), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [sym_line_comment] = STATE(310), - [sym_block_comment] = STATE(310), - [sym_identifier] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1073), - [anon_sym_u8] = ACTIONS(469), - [anon_sym_i8] = ACTIONS(469), - [anon_sym_u16] = ACTIONS(469), - [anon_sym_i16] = ACTIONS(469), - [anon_sym_u32] = ACTIONS(469), - [anon_sym_i32] = ACTIONS(469), - [anon_sym_u64] = ACTIONS(469), - [anon_sym_i64] = ACTIONS(469), - [anon_sym_u128] = ACTIONS(469), - [anon_sym_i128] = ACTIONS(469), - [anon_sym_isize] = ACTIONS(469), - [anon_sym_usize] = ACTIONS(469), - [anon_sym_f32] = ACTIONS(469), - [anon_sym_f64] = ACTIONS(469), - [anon_sym_bool] = ACTIONS(469), - [anon_sym_str] = ACTIONS(469), - [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(1073), - [anon_sym_BANG] = ACTIONS(1073), - [anon_sym_AMP] = ACTIONS(1075), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1077), - [anon_sym_COLON_COLON] = ACTIONS(473), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(475), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(477), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(479), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(481), - [anon_sym_static] = ACTIONS(483), - [anon_sym_union] = ACTIONS(477), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(485), - [anon_sym_move] = ACTIONS(487), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(489), - [sym_super] = ACTIONS(491), - [sym_crate] = ACTIONS(491), - [sym_metavariable] = ACTIONS(493), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), - }, - [STATE(311)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3056), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1870), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1591), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(244), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [sym_line_comment] = STATE(311), - [sym_block_comment] = STATE(311), - [sym_identifier] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1073), - [anon_sym_u8] = ACTIONS(469), - [anon_sym_i8] = ACTIONS(469), - [anon_sym_u16] = ACTIONS(469), - [anon_sym_i16] = ACTIONS(469), - [anon_sym_u32] = ACTIONS(469), - [anon_sym_i32] = ACTIONS(469), - [anon_sym_u64] = ACTIONS(469), - [anon_sym_i64] = ACTIONS(469), - [anon_sym_u128] = ACTIONS(469), - [anon_sym_i128] = ACTIONS(469), - [anon_sym_isize] = ACTIONS(469), - [anon_sym_usize] = ACTIONS(469), - [anon_sym_f32] = ACTIONS(469), - [anon_sym_f64] = ACTIONS(469), - [anon_sym_bool] = ACTIONS(469), - [anon_sym_str] = ACTIONS(469), - [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(1073), - [anon_sym_BANG] = ACTIONS(1073), - [anon_sym_AMP] = ACTIONS(1075), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1077), - [anon_sym_COLON_COLON] = ACTIONS(473), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(475), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(477), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(479), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(481), - [anon_sym_static] = ACTIONS(483), - [anon_sym_union] = ACTIONS(477), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(485), - [anon_sym_move] = ACTIONS(487), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(489), - [sym_super] = ACTIONS(491), - [sym_crate] = ACTIONS(491), - [sym_metavariable] = ACTIONS(493), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), - }, - [STATE(312)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3056), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1871), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1591), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(244), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [sym_line_comment] = STATE(312), - [sym_block_comment] = STATE(312), - [sym_identifier] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1073), - [anon_sym_u8] = ACTIONS(469), - [anon_sym_i8] = ACTIONS(469), - [anon_sym_u16] = ACTIONS(469), - [anon_sym_i16] = ACTIONS(469), - [anon_sym_u32] = ACTIONS(469), - [anon_sym_i32] = ACTIONS(469), - [anon_sym_u64] = ACTIONS(469), - [anon_sym_i64] = ACTIONS(469), - [anon_sym_u128] = ACTIONS(469), - [anon_sym_i128] = ACTIONS(469), - [anon_sym_isize] = ACTIONS(469), - [anon_sym_usize] = ACTIONS(469), - [anon_sym_f32] = ACTIONS(469), - [anon_sym_f64] = ACTIONS(469), - [anon_sym_bool] = ACTIONS(469), - [anon_sym_str] = ACTIONS(469), - [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(1073), - [anon_sym_BANG] = ACTIONS(1073), - [anon_sym_AMP] = ACTIONS(1075), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1077), - [anon_sym_COLON_COLON] = ACTIONS(473), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(475), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(477), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(479), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(481), - [anon_sym_static] = ACTIONS(483), - [anon_sym_union] = ACTIONS(477), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(485), - [anon_sym_move] = ACTIONS(487), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(489), - [sym_super] = ACTIONS(491), - [sym_crate] = ACTIONS(491), - [sym_metavariable] = ACTIONS(493), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), - }, - [STATE(313)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3056), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1886), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1591), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(244), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [sym_line_comment] = STATE(313), - [sym_block_comment] = STATE(313), - [sym_identifier] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1073), - [anon_sym_u8] = ACTIONS(469), - [anon_sym_i8] = ACTIONS(469), - [anon_sym_u16] = ACTIONS(469), - [anon_sym_i16] = ACTIONS(469), - [anon_sym_u32] = ACTIONS(469), - [anon_sym_i32] = ACTIONS(469), - [anon_sym_u64] = ACTIONS(469), - [anon_sym_i64] = ACTIONS(469), - [anon_sym_u128] = ACTIONS(469), - [anon_sym_i128] = ACTIONS(469), - [anon_sym_isize] = ACTIONS(469), - [anon_sym_usize] = ACTIONS(469), - [anon_sym_f32] = ACTIONS(469), - [anon_sym_f64] = ACTIONS(469), - [anon_sym_bool] = ACTIONS(469), - [anon_sym_str] = ACTIONS(469), - [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(1073), - [anon_sym_BANG] = ACTIONS(1073), - [anon_sym_AMP] = ACTIONS(1075), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1077), - [anon_sym_COLON_COLON] = ACTIONS(473), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(475), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(477), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(479), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(481), - [anon_sym_static] = ACTIONS(483), - [anon_sym_union] = ACTIONS(477), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(485), - [anon_sym_move] = ACTIONS(487), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(489), - [sym_super] = ACTIONS(491), - [sym_crate] = ACTIONS(491), - [sym_metavariable] = ACTIONS(493), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), - }, - [STATE(314)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3056), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1887), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1591), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(244), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [sym_line_comment] = STATE(314), - [sym_block_comment] = STATE(314), - [sym_identifier] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1073), - [anon_sym_u8] = ACTIONS(469), - [anon_sym_i8] = ACTIONS(469), - [anon_sym_u16] = ACTIONS(469), - [anon_sym_i16] = ACTIONS(469), - [anon_sym_u32] = ACTIONS(469), - [anon_sym_i32] = ACTIONS(469), - [anon_sym_u64] = ACTIONS(469), - [anon_sym_i64] = ACTIONS(469), - [anon_sym_u128] = ACTIONS(469), - [anon_sym_i128] = ACTIONS(469), - [anon_sym_isize] = ACTIONS(469), - [anon_sym_usize] = ACTIONS(469), - [anon_sym_f32] = ACTIONS(469), - [anon_sym_f64] = ACTIONS(469), - [anon_sym_bool] = ACTIONS(469), - [anon_sym_str] = ACTIONS(469), - [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(1073), - [anon_sym_BANG] = ACTIONS(1073), - [anon_sym_AMP] = ACTIONS(1075), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1077), - [anon_sym_COLON_COLON] = ACTIONS(473), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(475), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(477), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(479), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(481), - [anon_sym_static] = ACTIONS(483), - [anon_sym_union] = ACTIONS(477), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(485), - [anon_sym_move] = ACTIONS(487), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(489), - [sym_super] = ACTIONS(491), - [sym_crate] = ACTIONS(491), - [sym_metavariable] = ACTIONS(493), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), - }, - [STATE(315)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3056), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1668), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1591), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [sym_line_comment] = STATE(315), - [sym_block_comment] = STATE(315), - [sym_identifier] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(901), - [anon_sym_u8] = ACTIONS(469), - [anon_sym_i8] = ACTIONS(469), - [anon_sym_u16] = ACTIONS(469), - [anon_sym_i16] = ACTIONS(469), - [anon_sym_u32] = ACTIONS(469), - [anon_sym_i32] = ACTIONS(469), - [anon_sym_u64] = ACTIONS(469), - [anon_sym_i64] = ACTIONS(469), - [anon_sym_u128] = ACTIONS(469), - [anon_sym_i128] = ACTIONS(469), - [anon_sym_isize] = ACTIONS(469), - [anon_sym_usize] = ACTIONS(469), - [anon_sym_f32] = ACTIONS(469), - [anon_sym_f64] = ACTIONS(469), - [anon_sym_bool] = ACTIONS(469), - [anon_sym_str] = ACTIONS(469), - [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(901), - [anon_sym_BANG] = ACTIONS(901), - [anon_sym_AMP] = ACTIONS(903), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(905), - [anon_sym_COLON_COLON] = ACTIONS(473), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(477), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(477), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(489), - [sym_super] = ACTIONS(491), - [sym_crate] = ACTIONS(491), - [sym_metavariable] = ACTIONS(493), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), - }, - [STATE(316)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3056), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1602), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1591), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [sym_line_comment] = STATE(316), - [sym_block_comment] = STATE(316), - [sym_identifier] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(901), - [anon_sym_u8] = ACTIONS(469), - [anon_sym_i8] = ACTIONS(469), - [anon_sym_u16] = ACTIONS(469), - [anon_sym_i16] = ACTIONS(469), - [anon_sym_u32] = ACTIONS(469), - [anon_sym_i32] = ACTIONS(469), - [anon_sym_u64] = ACTIONS(469), - [anon_sym_i64] = ACTIONS(469), - [anon_sym_u128] = ACTIONS(469), - [anon_sym_i128] = ACTIONS(469), - [anon_sym_isize] = ACTIONS(469), - [anon_sym_usize] = ACTIONS(469), - [anon_sym_f32] = ACTIONS(469), - [anon_sym_f64] = ACTIONS(469), - [anon_sym_bool] = ACTIONS(469), - [anon_sym_str] = ACTIONS(469), - [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(901), - [anon_sym_BANG] = ACTIONS(901), - [anon_sym_AMP] = ACTIONS(903), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(905), - [anon_sym_COLON_COLON] = ACTIONS(473), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(477), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(477), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(489), - [sym_super] = ACTIONS(491), - [sym_crate] = ACTIONS(491), - [sym_metavariable] = ACTIONS(493), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), - }, - [STATE(317)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3056), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1480), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1591), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(244), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [sym_line_comment] = STATE(317), - [sym_block_comment] = STATE(317), - [sym_identifier] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1073), - [anon_sym_u8] = ACTIONS(469), - [anon_sym_i8] = ACTIONS(469), - [anon_sym_u16] = ACTIONS(469), - [anon_sym_i16] = ACTIONS(469), - [anon_sym_u32] = ACTIONS(469), - [anon_sym_i32] = ACTIONS(469), - [anon_sym_u64] = ACTIONS(469), - [anon_sym_i64] = ACTIONS(469), - [anon_sym_u128] = ACTIONS(469), - [anon_sym_i128] = ACTIONS(469), - [anon_sym_isize] = ACTIONS(469), - [anon_sym_usize] = ACTIONS(469), - [anon_sym_f32] = ACTIONS(469), - [anon_sym_f64] = ACTIONS(469), - [anon_sym_bool] = ACTIONS(469), - [anon_sym_str] = ACTIONS(469), - [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(1073), - [anon_sym_BANG] = ACTIONS(1073), - [anon_sym_AMP] = ACTIONS(1075), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1077), - [anon_sym_COLON_COLON] = ACTIONS(473), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(475), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(477), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(479), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(481), - [anon_sym_static] = ACTIONS(483), - [anon_sym_union] = ACTIONS(477), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(485), - [anon_sym_move] = ACTIONS(487), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(489), - [sym_super] = ACTIONS(491), - [sym_crate] = ACTIONS(491), - [sym_metavariable] = ACTIONS(493), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), - }, - [STATE(318)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1507), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1520), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [sym_line_comment] = STATE(318), - [sym_block_comment] = STATE(318), - [sym_identifier] = ACTIONS(339), + [sym_label] = STATE(3689), + [sym_break_expression] = STATE(1492), + [sym_continue_expression] = STATE(1492), + [sym_index_expression] = STATE(1492), + [sym_await_expression] = STATE(1492), + [sym_field_expression] = STATE(1412), + [sym_unsafe_block] = STATE(1492), + [sym_async_block] = STATE(1492), + [sym_gen_block] = STATE(1492), + [sym_try_block] = STATE(1492), + [sym_block] = STATE(1492), + [sym__literal] = STATE(1492), + [sym_string_literal] = STATE(1530), + [sym_raw_string_literal] = STATE(1530), + [sym_boolean_literal] = STATE(1530), + [sym_line_comment] = STATE(363), + [sym_block_comment] = STATE(363), + [sym_identifier] = ACTIONS(344), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(348), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -53339,319 +58517,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1061), + [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), + [anon_sym_async] = ACTIONS(356), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(358), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), + [anon_sym_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(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(115), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), - }, - [STATE(319)] = { - [sym_else_clause] = STATE(390), - [sym_line_comment] = STATE(319), - [sym_block_comment] = STATE(319), - [ts_builtin_sym_end] = ACTIONS(1351), - [sym_identifier] = ACTIONS(1353), - [anon_sym_SEMI] = ACTIONS(1351), - [anon_sym_macro_rules_BANG] = ACTIONS(1351), - [anon_sym_LPAREN] = ACTIONS(1351), - [anon_sym_LBRACK] = ACTIONS(1351), - [anon_sym_LBRACE] = ACTIONS(1351), - [anon_sym_RBRACE] = ACTIONS(1351), - [anon_sym_PLUS] = ACTIONS(1353), - [anon_sym_STAR] = ACTIONS(1353), - [anon_sym_QMARK] = ACTIONS(1351), - [anon_sym_u8] = ACTIONS(1353), - [anon_sym_i8] = ACTIONS(1353), - [anon_sym_u16] = ACTIONS(1353), - [anon_sym_i16] = ACTIONS(1353), - [anon_sym_u32] = ACTIONS(1353), - [anon_sym_i32] = ACTIONS(1353), - [anon_sym_u64] = ACTIONS(1353), - [anon_sym_i64] = ACTIONS(1353), - [anon_sym_u128] = ACTIONS(1353), - [anon_sym_i128] = ACTIONS(1353), - [anon_sym_isize] = ACTIONS(1353), - [anon_sym_usize] = ACTIONS(1353), - [anon_sym_f32] = ACTIONS(1353), - [anon_sym_f64] = ACTIONS(1353), - [anon_sym_bool] = ACTIONS(1353), - [anon_sym_str] = ACTIONS(1353), - [anon_sym_char] = ACTIONS(1353), - [anon_sym_DASH] = ACTIONS(1353), - [anon_sym_SLASH] = ACTIONS(1353), - [anon_sym_PERCENT] = ACTIONS(1353), - [anon_sym_CARET] = ACTIONS(1353), - [anon_sym_BANG] = ACTIONS(1353), - [anon_sym_AMP] = ACTIONS(1353), - [anon_sym_PIPE] = ACTIONS(1353), - [anon_sym_AMP_AMP] = ACTIONS(1351), - [anon_sym_PIPE_PIPE] = ACTIONS(1351), - [anon_sym_LT_LT] = ACTIONS(1353), - [anon_sym_GT_GT] = ACTIONS(1353), - [anon_sym_PLUS_EQ] = ACTIONS(1351), - [anon_sym_DASH_EQ] = ACTIONS(1351), - [anon_sym_STAR_EQ] = ACTIONS(1351), - [anon_sym_SLASH_EQ] = ACTIONS(1351), - [anon_sym_PERCENT_EQ] = ACTIONS(1351), - [anon_sym_CARET_EQ] = ACTIONS(1351), - [anon_sym_AMP_EQ] = ACTIONS(1351), - [anon_sym_PIPE_EQ] = ACTIONS(1351), - [anon_sym_LT_LT_EQ] = ACTIONS(1351), - [anon_sym_GT_GT_EQ] = ACTIONS(1351), - [anon_sym_EQ] = ACTIONS(1353), - [anon_sym_EQ_EQ] = ACTIONS(1351), - [anon_sym_BANG_EQ] = ACTIONS(1351), - [anon_sym_GT] = ACTIONS(1353), - [anon_sym_LT] = ACTIONS(1353), - [anon_sym_GT_EQ] = ACTIONS(1351), - [anon_sym_LT_EQ] = ACTIONS(1351), - [anon_sym_DOT] = ACTIONS(1353), - [anon_sym_DOT_DOT] = ACTIONS(1353), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1351), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1351), - [anon_sym_COLON_COLON] = ACTIONS(1351), - [anon_sym_POUND] = ACTIONS(1351), - [anon_sym_SQUOTE] = ACTIONS(1353), - [anon_sym_as] = ACTIONS(1353), - [anon_sym_async] = ACTIONS(1353), - [anon_sym_break] = ACTIONS(1353), - [anon_sym_const] = ACTIONS(1353), - [anon_sym_continue] = ACTIONS(1353), - [anon_sym_default] = ACTIONS(1353), - [anon_sym_enum] = ACTIONS(1353), - [anon_sym_fn] = ACTIONS(1353), - [anon_sym_for] = ACTIONS(1353), - [anon_sym_gen] = ACTIONS(1353), - [anon_sym_if] = ACTIONS(1353), - [anon_sym_impl] = ACTIONS(1353), - [anon_sym_let] = ACTIONS(1353), - [anon_sym_loop] = ACTIONS(1353), - [anon_sym_match] = ACTIONS(1353), - [anon_sym_mod] = ACTIONS(1353), - [anon_sym_pub] = ACTIONS(1353), - [anon_sym_return] = ACTIONS(1353), - [anon_sym_static] = ACTIONS(1353), - [anon_sym_struct] = ACTIONS(1353), - [anon_sym_trait] = ACTIONS(1353), - [anon_sym_type] = ACTIONS(1353), - [anon_sym_union] = ACTIONS(1353), - [anon_sym_unsafe] = ACTIONS(1353), - [anon_sym_use] = ACTIONS(1353), - [anon_sym_while] = ACTIONS(1353), - [anon_sym_extern] = ACTIONS(1353), - [anon_sym_else] = ACTIONS(1355), - [anon_sym_yield] = ACTIONS(1353), - [anon_sym_move] = ACTIONS(1353), - [anon_sym_try] = ACTIONS(1353), - [sym_integer_literal] = ACTIONS(1351), - [aux_sym_string_literal_token1] = ACTIONS(1351), - [sym_char_literal] = ACTIONS(1351), - [anon_sym_true] = ACTIONS(1353), - [anon_sym_false] = ACTIONS(1353), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1353), - [sym_super] = ACTIONS(1353), - [sym_crate] = ACTIONS(1353), - [sym_metavariable] = ACTIONS(1351), - [sym__raw_string_literal_start] = ACTIONS(1351), - [sym_float_literal] = ACTIONS(1351), + [anon_sym_static] = ACTIONS(372), + [anon_sym_union] = ACTIONS(360), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [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(320)] = { - [sym_bracketed_type] = STATE(3621), - [sym_generic_function] = STATE(1691), - [sym_generic_type_with_turbofish] = STATE(3063), - [sym__expression_except_range] = STATE(1659), - [sym__expression] = STATE(1693), - [sym_macro_invocation] = STATE(1708), - [sym_scoped_identifier] = STATE(1599), - [sym_scoped_type_identifier_in_expression_position] = STATE(3307), - [sym_range_expression] = STATE(1695), - [sym_unary_expression] = STATE(1691), - [sym_try_expression] = STATE(1691), - [sym_reference_expression] = STATE(1691), - [sym_binary_expression] = STATE(1691), - [sym_assignment_expression] = STATE(1691), - [sym_compound_assignment_expr] = STATE(1691), - [sym_type_cast_expression] = STATE(1691), - [sym_return_expression] = STATE(1691), - [sym_yield_expression] = STATE(1691), - [sym_call_expression] = STATE(1691), - [sym_array_expression] = STATE(1691), - [sym_parenthesized_expression] = STATE(1691), - [sym_tuple_expression] = STATE(1691), - [sym_unit_expression] = STATE(1691), - [sym_struct_expression] = STATE(1691), - [sym_if_expression] = STATE(1691), - [sym_match_expression] = STATE(1691), - [sym_while_expression] = STATE(1691), - [sym_loop_expression] = STATE(1691), - [sym_for_expression] = STATE(1691), - [sym_const_block] = STATE(1691), - [sym_closure_expression] = STATE(1691), + [STATE(364)] = { + [sym_bracketed_type] = STATE(3752), + [sym_generic_function] = STATE(1492), + [sym_generic_type_with_turbofish] = STATE(3039), + [sym__expression_except_range] = STATE(1409), + [sym__expression] = STATE(1700), + [sym_macro_invocation] = STATE(1529), + [sym_scoped_identifier] = STATE(1540), + [sym_scoped_type_identifier_in_expression_position] = STATE(3335), + [sym_range_expression] = STATE(1505), + [sym_unary_expression] = STATE(1492), + [sym_try_expression] = STATE(1492), + [sym_reference_expression] = STATE(1492), + [sym_binary_expression] = STATE(1492), + [sym_assignment_expression] = STATE(1492), + [sym_compound_assignment_expr] = STATE(1492), + [sym_type_cast_expression] = STATE(1492), + [sym_return_expression] = STATE(1492), + [sym_yield_expression] = STATE(1492), + [sym_call_expression] = STATE(1492), + [sym_array_expression] = STATE(1492), + [sym_parenthesized_expression] = STATE(1492), + [sym_tuple_expression] = STATE(1492), + [sym_unit_expression] = STATE(1492), + [sym_struct_expression] = STATE(1492), + [sym_if_expression] = STATE(481), + [sym_match_expression] = STATE(481), + [sym_while_expression] = STATE(481), + [sym_loop_expression] = STATE(481), + [sym_for_expression] = STATE(481), + [sym_const_block] = STATE(481), + [sym_closure_expression] = STATE(1492), [sym_closure_parameters] = STATE(229), - [sym_label] = STATE(3712), - [sym_break_expression] = STATE(1691), - [sym_continue_expression] = STATE(1691), - [sym_index_expression] = STATE(1691), - [sym_await_expression] = STATE(1691), - [sym_field_expression] = STATE(1671), - [sym_unsafe_block] = STATE(1691), - [sym_async_block] = STATE(1691), - [sym_gen_block] = STATE(1691), - [sym_try_block] = STATE(1691), - [sym_block] = STATE(1691), - [sym__literal] = STATE(1691), - [sym_string_literal] = STATE(1776), - [sym_raw_string_literal] = STATE(1776), - [sym_boolean_literal] = STATE(1776), - [sym_line_comment] = STATE(320), - [sym_block_comment] = STATE(320), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(495), - [anon_sym_LBRACK] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(979), - [anon_sym_u8] = ACTIONS(411), - [anon_sym_i8] = ACTIONS(411), - [anon_sym_u16] = ACTIONS(411), - [anon_sym_i16] = ACTIONS(411), - [anon_sym_u32] = ACTIONS(411), - [anon_sym_i32] = ACTIONS(411), - [anon_sym_u64] = ACTIONS(411), - [anon_sym_i64] = ACTIONS(411), - [anon_sym_u128] = ACTIONS(411), - [anon_sym_i128] = ACTIONS(411), - [anon_sym_isize] = ACTIONS(411), - [anon_sym_usize] = ACTIONS(411), - [anon_sym_f32] = ACTIONS(411), - [anon_sym_f64] = ACTIONS(411), - [anon_sym_bool] = ACTIONS(411), - [anon_sym_str] = ACTIONS(411), - [anon_sym_char] = ACTIONS(411), - [anon_sym_DASH] = ACTIONS(979), - [anon_sym_BANG] = ACTIONS(979), - [anon_sym_AMP] = ACTIONS(981), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1079), - [anon_sym_COLON_COLON] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(417), - [anon_sym_break] = ACTIONS(419), - [anon_sym_const] = ACTIONS(421), - [anon_sym_continue] = ACTIONS(423), - [anon_sym_default] = ACTIONS(425), - [anon_sym_for] = ACTIONS(427), - [anon_sym_gen] = ACTIONS(429), - [anon_sym_if] = ACTIONS(431), - [anon_sym_loop] = ACTIONS(433), - [anon_sym_match] = ACTIONS(435), - [anon_sym_return] = ACTIONS(437), - [anon_sym_static] = ACTIONS(439), - [anon_sym_union] = ACTIONS(425), - [anon_sym_unsafe] = ACTIONS(441), - [anon_sym_while] = ACTIONS(443), - [anon_sym_yield] = ACTIONS(445), - [anon_sym_move] = ACTIONS(447), - [anon_sym_try] = ACTIONS(449), - [sym_integer_literal] = ACTIONS(451), - [aux_sym_string_literal_token1] = ACTIONS(453), - [sym_char_literal] = ACTIONS(451), - [anon_sym_true] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(457), - [sym_super] = ACTIONS(459), - [sym_crate] = ACTIONS(459), - [sym_metavariable] = ACTIONS(461), - [sym__raw_string_literal_start] = ACTIONS(463), - [sym_float_literal] = ACTIONS(451), - }, - [STATE(321)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1739), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1520), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [sym_line_comment] = STATE(321), - [sym_block_comment] = STATE(321), - [sym_identifier] = ACTIONS(339), + [sym_label] = STATE(3736), + [sym_break_expression] = STATE(1492), + [sym_continue_expression] = STATE(1492), + [sym_index_expression] = STATE(1492), + [sym_await_expression] = STATE(1492), + [sym_field_expression] = STATE(1412), + [sym_unsafe_block] = STATE(481), + [sym_async_block] = STATE(481), + [sym_gen_block] = STATE(481), + [sym_try_block] = STATE(481), + [sym_block] = STATE(481), + [sym__literal] = STATE(1492), + [sym_string_literal] = STATE(1530), + [sym_raw_string_literal] = STATE(1530), + [sym_boolean_literal] = STATE(1530), + [sym_line_comment] = STATE(364), + [sym_block_comment] = STATE(364), + [sym_identifier] = ACTIONS(344), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(1366), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -53678,1996 +58632,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), + [anon_sym_async] = ACTIONS(1368), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(1370), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), + [anon_sym_default] = ACTIONS(360), + [anon_sym_for] = ACTIONS(1372), + [anon_sym_gen] = ACTIONS(1374), + [anon_sym_if] = ACTIONS(1376), + [anon_sym_loop] = ACTIONS(1378), + [anon_sym_match] = ACTIONS(1380), [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(115), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), - }, - [STATE(322)] = { - [sym_bracketed_type] = STATE(3621), - [sym_generic_function] = STATE(1691), - [sym_generic_type_with_turbofish] = STATE(3063), - [sym__expression_except_range] = STATE(1659), - [sym__expression] = STATE(1750), - [sym_macro_invocation] = STATE(1708), - [sym_scoped_identifier] = STATE(1599), - [sym_scoped_type_identifier_in_expression_position] = STATE(3307), - [sym_range_expression] = STATE(1695), - [sym_unary_expression] = STATE(1691), - [sym_try_expression] = STATE(1691), - [sym_reference_expression] = STATE(1691), - [sym_binary_expression] = STATE(1691), - [sym_assignment_expression] = STATE(1691), - [sym_compound_assignment_expr] = STATE(1691), - [sym_type_cast_expression] = STATE(1691), - [sym_return_expression] = STATE(1691), - [sym_yield_expression] = STATE(1691), - [sym_call_expression] = STATE(1691), - [sym_array_expression] = STATE(1691), - [sym_parenthesized_expression] = STATE(1691), - [sym_tuple_expression] = STATE(1691), - [sym_unit_expression] = STATE(1691), - [sym_struct_expression] = STATE(1691), - [sym_if_expression] = STATE(1691), - [sym_match_expression] = STATE(1691), - [sym_while_expression] = STATE(1691), - [sym_loop_expression] = STATE(1691), - [sym_for_expression] = STATE(1691), - [sym_const_block] = STATE(1691), - [sym_closure_expression] = STATE(1691), - [sym_closure_parameters] = STATE(229), - [sym_label] = STATE(3712), - [sym_break_expression] = STATE(1691), - [sym_continue_expression] = STATE(1691), - [sym_index_expression] = STATE(1691), - [sym_await_expression] = STATE(1691), - [sym_field_expression] = STATE(1671), - [sym_unsafe_block] = STATE(1691), - [sym_async_block] = STATE(1691), - [sym_gen_block] = STATE(1691), - [sym_try_block] = STATE(1691), - [sym_block] = STATE(1691), - [sym__literal] = STATE(1691), - [sym_string_literal] = STATE(1776), - [sym_raw_string_literal] = STATE(1776), - [sym_boolean_literal] = STATE(1776), - [sym_line_comment] = STATE(322), - [sym_block_comment] = STATE(322), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(495), - [anon_sym_LBRACK] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(979), - [anon_sym_u8] = ACTIONS(411), - [anon_sym_i8] = ACTIONS(411), - [anon_sym_u16] = ACTIONS(411), - [anon_sym_i16] = ACTIONS(411), - [anon_sym_u32] = ACTIONS(411), - [anon_sym_i32] = ACTIONS(411), - [anon_sym_u64] = ACTIONS(411), - [anon_sym_i64] = ACTIONS(411), - [anon_sym_u128] = ACTIONS(411), - [anon_sym_i128] = ACTIONS(411), - [anon_sym_isize] = ACTIONS(411), - [anon_sym_usize] = ACTIONS(411), - [anon_sym_f32] = ACTIONS(411), - [anon_sym_f64] = ACTIONS(411), - [anon_sym_bool] = ACTIONS(411), - [anon_sym_str] = ACTIONS(411), - [anon_sym_char] = ACTIONS(411), - [anon_sym_DASH] = ACTIONS(979), - [anon_sym_BANG] = ACTIONS(979), - [anon_sym_AMP] = ACTIONS(981), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1079), - [anon_sym_COLON_COLON] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(417), - [anon_sym_break] = ACTIONS(419), - [anon_sym_const] = ACTIONS(421), - [anon_sym_continue] = ACTIONS(423), - [anon_sym_default] = ACTIONS(425), - [anon_sym_for] = ACTIONS(427), - [anon_sym_gen] = ACTIONS(429), - [anon_sym_if] = ACTIONS(431), - [anon_sym_loop] = ACTIONS(433), - [anon_sym_match] = ACTIONS(435), - [anon_sym_return] = ACTIONS(437), - [anon_sym_static] = ACTIONS(439), - [anon_sym_union] = ACTIONS(425), - [anon_sym_unsafe] = ACTIONS(441), - [anon_sym_while] = ACTIONS(443), - [anon_sym_yield] = ACTIONS(445), - [anon_sym_move] = ACTIONS(447), - [anon_sym_try] = ACTIONS(449), - [sym_integer_literal] = ACTIONS(451), - [aux_sym_string_literal_token1] = ACTIONS(453), - [sym_char_literal] = ACTIONS(451), - [anon_sym_true] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(457), - [sym_super] = ACTIONS(459), - [sym_crate] = ACTIONS(459), - [sym_metavariable] = ACTIONS(461), - [sym__raw_string_literal_start] = ACTIONS(463), - [sym_float_literal] = ACTIONS(451), - }, - [STATE(323)] = { - [sym_bracketed_type] = STATE(3621), - [sym_generic_function] = STATE(1691), - [sym_generic_type_with_turbofish] = STATE(3063), - [sym__expression_except_range] = STATE(1659), - [sym__expression] = STATE(1718), - [sym_macro_invocation] = STATE(1708), - [sym_scoped_identifier] = STATE(1599), - [sym_scoped_type_identifier_in_expression_position] = STATE(3307), - [sym_range_expression] = STATE(1695), - [sym_unary_expression] = STATE(1691), - [sym_try_expression] = STATE(1691), - [sym_reference_expression] = STATE(1691), - [sym_binary_expression] = STATE(1691), - [sym_assignment_expression] = STATE(1691), - [sym_compound_assignment_expr] = STATE(1691), - [sym_type_cast_expression] = STATE(1691), - [sym_return_expression] = STATE(1691), - [sym_yield_expression] = STATE(1691), - [sym_call_expression] = STATE(1691), - [sym_array_expression] = STATE(1691), - [sym_parenthesized_expression] = STATE(1691), - [sym_tuple_expression] = STATE(1691), - [sym_unit_expression] = STATE(1691), - [sym_struct_expression] = STATE(1691), - [sym_if_expression] = STATE(1691), - [sym_match_expression] = STATE(1691), - [sym_while_expression] = STATE(1691), - [sym_loop_expression] = STATE(1691), - [sym_for_expression] = STATE(1691), - [sym_const_block] = STATE(1691), - [sym_closure_expression] = STATE(1691), - [sym_closure_parameters] = STATE(229), - [sym_label] = STATE(3712), - [sym_break_expression] = STATE(1691), - [sym_continue_expression] = STATE(1691), - [sym_index_expression] = STATE(1691), - [sym_await_expression] = STATE(1691), - [sym_field_expression] = STATE(1671), - [sym_unsafe_block] = STATE(1691), - [sym_async_block] = STATE(1691), - [sym_gen_block] = STATE(1691), - [sym_try_block] = STATE(1691), - [sym_block] = STATE(1691), - [sym__literal] = STATE(1691), - [sym_string_literal] = STATE(1776), - [sym_raw_string_literal] = STATE(1776), - [sym_boolean_literal] = STATE(1776), - [sym_line_comment] = STATE(323), - [sym_block_comment] = STATE(323), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(495), - [anon_sym_LBRACK] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(979), - [anon_sym_u8] = ACTIONS(411), - [anon_sym_i8] = ACTIONS(411), - [anon_sym_u16] = ACTIONS(411), - [anon_sym_i16] = ACTIONS(411), - [anon_sym_u32] = ACTIONS(411), - [anon_sym_i32] = ACTIONS(411), - [anon_sym_u64] = ACTIONS(411), - [anon_sym_i64] = ACTIONS(411), - [anon_sym_u128] = ACTIONS(411), - [anon_sym_i128] = ACTIONS(411), - [anon_sym_isize] = ACTIONS(411), - [anon_sym_usize] = ACTIONS(411), - [anon_sym_f32] = ACTIONS(411), - [anon_sym_f64] = ACTIONS(411), - [anon_sym_bool] = ACTIONS(411), - [anon_sym_str] = ACTIONS(411), - [anon_sym_char] = ACTIONS(411), - [anon_sym_DASH] = ACTIONS(979), - [anon_sym_BANG] = ACTIONS(979), - [anon_sym_AMP] = ACTIONS(981), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1079), - [anon_sym_COLON_COLON] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(417), - [anon_sym_break] = ACTIONS(419), - [anon_sym_const] = ACTIONS(421), - [anon_sym_continue] = ACTIONS(423), - [anon_sym_default] = ACTIONS(425), - [anon_sym_for] = ACTIONS(427), - [anon_sym_gen] = ACTIONS(429), - [anon_sym_if] = ACTIONS(431), - [anon_sym_loop] = ACTIONS(433), - [anon_sym_match] = ACTIONS(435), - [anon_sym_return] = ACTIONS(437), - [anon_sym_static] = ACTIONS(439), - [anon_sym_union] = ACTIONS(425), - [anon_sym_unsafe] = ACTIONS(441), - [anon_sym_while] = ACTIONS(443), - [anon_sym_yield] = ACTIONS(445), - [anon_sym_move] = ACTIONS(447), - [anon_sym_try] = ACTIONS(449), - [sym_integer_literal] = ACTIONS(451), - [aux_sym_string_literal_token1] = ACTIONS(453), - [sym_char_literal] = ACTIONS(451), - [anon_sym_true] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(457), - [sym_super] = ACTIONS(459), - [sym_crate] = ACTIONS(459), - [sym_metavariable] = ACTIONS(461), - [sym__raw_string_literal_start] = ACTIONS(463), - [sym_float_literal] = ACTIONS(451), - }, - [STATE(324)] = { - [sym_bracketed_type] = STATE(3621), - [sym_generic_function] = STATE(1691), - [sym_generic_type_with_turbofish] = STATE(3063), - [sym__expression_except_range] = STATE(1659), - [sym__expression] = STATE(1751), - [sym_macro_invocation] = STATE(1708), - [sym_scoped_identifier] = STATE(1599), - [sym_scoped_type_identifier_in_expression_position] = STATE(3307), - [sym_range_expression] = STATE(1695), - [sym_unary_expression] = STATE(1691), - [sym_try_expression] = STATE(1691), - [sym_reference_expression] = STATE(1691), - [sym_binary_expression] = STATE(1691), - [sym_assignment_expression] = STATE(1691), - [sym_compound_assignment_expr] = STATE(1691), - [sym_type_cast_expression] = STATE(1691), - [sym_return_expression] = STATE(1691), - [sym_yield_expression] = STATE(1691), - [sym_call_expression] = STATE(1691), - [sym_array_expression] = STATE(1691), - [sym_parenthesized_expression] = STATE(1691), - [sym_tuple_expression] = STATE(1691), - [sym_unit_expression] = STATE(1691), - [sym_struct_expression] = STATE(1691), - [sym_if_expression] = STATE(1691), - [sym_match_expression] = STATE(1691), - [sym_while_expression] = STATE(1691), - [sym_loop_expression] = STATE(1691), - [sym_for_expression] = STATE(1691), - [sym_const_block] = STATE(1691), - [sym_closure_expression] = STATE(1691), - [sym_closure_parameters] = STATE(229), - [sym_label] = STATE(3712), - [sym_break_expression] = STATE(1691), - [sym_continue_expression] = STATE(1691), - [sym_index_expression] = STATE(1691), - [sym_await_expression] = STATE(1691), - [sym_field_expression] = STATE(1671), - [sym_unsafe_block] = STATE(1691), - [sym_async_block] = STATE(1691), - [sym_gen_block] = STATE(1691), - [sym_try_block] = STATE(1691), - [sym_block] = STATE(1691), - [sym__literal] = STATE(1691), - [sym_string_literal] = STATE(1776), - [sym_raw_string_literal] = STATE(1776), - [sym_boolean_literal] = STATE(1776), - [sym_line_comment] = STATE(324), - [sym_block_comment] = STATE(324), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(495), - [anon_sym_LBRACK] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(979), - [anon_sym_u8] = ACTIONS(411), - [anon_sym_i8] = ACTIONS(411), - [anon_sym_u16] = ACTIONS(411), - [anon_sym_i16] = ACTIONS(411), - [anon_sym_u32] = ACTIONS(411), - [anon_sym_i32] = ACTIONS(411), - [anon_sym_u64] = ACTIONS(411), - [anon_sym_i64] = ACTIONS(411), - [anon_sym_u128] = ACTIONS(411), - [anon_sym_i128] = ACTIONS(411), - [anon_sym_isize] = ACTIONS(411), - [anon_sym_usize] = ACTIONS(411), - [anon_sym_f32] = ACTIONS(411), - [anon_sym_f64] = ACTIONS(411), - [anon_sym_bool] = ACTIONS(411), - [anon_sym_str] = ACTIONS(411), - [anon_sym_char] = ACTIONS(411), - [anon_sym_DASH] = ACTIONS(979), - [anon_sym_BANG] = ACTIONS(979), - [anon_sym_AMP] = ACTIONS(981), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1079), - [anon_sym_COLON_COLON] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(417), - [anon_sym_break] = ACTIONS(419), - [anon_sym_const] = ACTIONS(421), - [anon_sym_continue] = ACTIONS(423), - [anon_sym_default] = ACTIONS(425), - [anon_sym_for] = ACTIONS(427), - [anon_sym_gen] = ACTIONS(429), - [anon_sym_if] = ACTIONS(431), - [anon_sym_loop] = ACTIONS(433), - [anon_sym_match] = ACTIONS(435), - [anon_sym_return] = ACTIONS(437), - [anon_sym_static] = ACTIONS(439), - [anon_sym_union] = ACTIONS(425), - [anon_sym_unsafe] = ACTIONS(441), - [anon_sym_while] = ACTIONS(443), - [anon_sym_yield] = ACTIONS(445), - [anon_sym_move] = ACTIONS(447), - [anon_sym_try] = ACTIONS(449), - [sym_integer_literal] = ACTIONS(451), - [aux_sym_string_literal_token1] = ACTIONS(453), - [sym_char_literal] = ACTIONS(451), - [anon_sym_true] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(457), - [sym_super] = ACTIONS(459), - [sym_crate] = ACTIONS(459), - [sym_metavariable] = ACTIONS(461), - [sym__raw_string_literal_start] = ACTIONS(463), - [sym_float_literal] = ACTIONS(451), - }, - [STATE(325)] = { - [sym_bracketed_type] = STATE(3621), - [sym_generic_function] = STATE(1691), - [sym_generic_type_with_turbofish] = STATE(3063), - [sym__expression_except_range] = STATE(1659), - [sym__expression] = STATE(1752), - [sym_macro_invocation] = STATE(1708), - [sym_scoped_identifier] = STATE(1599), - [sym_scoped_type_identifier_in_expression_position] = STATE(3307), - [sym_range_expression] = STATE(1695), - [sym_unary_expression] = STATE(1691), - [sym_try_expression] = STATE(1691), - [sym_reference_expression] = STATE(1691), - [sym_binary_expression] = STATE(1691), - [sym_assignment_expression] = STATE(1691), - [sym_compound_assignment_expr] = STATE(1691), - [sym_type_cast_expression] = STATE(1691), - [sym_return_expression] = STATE(1691), - [sym_yield_expression] = STATE(1691), - [sym_call_expression] = STATE(1691), - [sym_array_expression] = STATE(1691), - [sym_parenthesized_expression] = STATE(1691), - [sym_tuple_expression] = STATE(1691), - [sym_unit_expression] = STATE(1691), - [sym_struct_expression] = STATE(1691), - [sym_if_expression] = STATE(1691), - [sym_match_expression] = STATE(1691), - [sym_while_expression] = STATE(1691), - [sym_loop_expression] = STATE(1691), - [sym_for_expression] = STATE(1691), - [sym_const_block] = STATE(1691), - [sym_closure_expression] = STATE(1691), - [sym_closure_parameters] = STATE(229), - [sym_label] = STATE(3712), - [sym_break_expression] = STATE(1691), - [sym_continue_expression] = STATE(1691), - [sym_index_expression] = STATE(1691), - [sym_await_expression] = STATE(1691), - [sym_field_expression] = STATE(1671), - [sym_unsafe_block] = STATE(1691), - [sym_async_block] = STATE(1691), - [sym_gen_block] = STATE(1691), - [sym_try_block] = STATE(1691), - [sym_block] = STATE(1691), - [sym__literal] = STATE(1691), - [sym_string_literal] = STATE(1776), - [sym_raw_string_literal] = STATE(1776), - [sym_boolean_literal] = STATE(1776), - [sym_line_comment] = STATE(325), - [sym_block_comment] = STATE(325), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(495), - [anon_sym_LBRACK] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(979), - [anon_sym_u8] = ACTIONS(411), - [anon_sym_i8] = ACTIONS(411), - [anon_sym_u16] = ACTIONS(411), - [anon_sym_i16] = ACTIONS(411), - [anon_sym_u32] = ACTIONS(411), - [anon_sym_i32] = ACTIONS(411), - [anon_sym_u64] = ACTIONS(411), - [anon_sym_i64] = ACTIONS(411), - [anon_sym_u128] = ACTIONS(411), - [anon_sym_i128] = ACTIONS(411), - [anon_sym_isize] = ACTIONS(411), - [anon_sym_usize] = ACTIONS(411), - [anon_sym_f32] = ACTIONS(411), - [anon_sym_f64] = ACTIONS(411), - [anon_sym_bool] = ACTIONS(411), - [anon_sym_str] = ACTIONS(411), - [anon_sym_char] = ACTIONS(411), - [anon_sym_DASH] = ACTIONS(979), - [anon_sym_BANG] = ACTIONS(979), - [anon_sym_AMP] = ACTIONS(981), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1079), - [anon_sym_COLON_COLON] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(417), - [anon_sym_break] = ACTIONS(419), - [anon_sym_const] = ACTIONS(421), - [anon_sym_continue] = ACTIONS(423), - [anon_sym_default] = ACTIONS(425), - [anon_sym_for] = ACTIONS(427), - [anon_sym_gen] = ACTIONS(429), - [anon_sym_if] = ACTIONS(431), - [anon_sym_loop] = ACTIONS(433), - [anon_sym_match] = ACTIONS(435), - [anon_sym_return] = ACTIONS(437), - [anon_sym_static] = ACTIONS(439), - [anon_sym_union] = ACTIONS(425), - [anon_sym_unsafe] = ACTIONS(441), - [anon_sym_while] = ACTIONS(443), - [anon_sym_yield] = ACTIONS(445), - [anon_sym_move] = ACTIONS(447), - [anon_sym_try] = ACTIONS(449), - [sym_integer_literal] = ACTIONS(451), - [aux_sym_string_literal_token1] = ACTIONS(453), - [sym_char_literal] = ACTIONS(451), - [anon_sym_true] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(457), - [sym_super] = ACTIONS(459), - [sym_crate] = ACTIONS(459), - [sym_metavariable] = ACTIONS(461), - [sym__raw_string_literal_start] = ACTIONS(463), - [sym_float_literal] = ACTIONS(451), - }, - [STATE(326)] = { - [sym_bracketed_type] = STATE(3621), - [sym_generic_function] = STATE(1691), - [sym_generic_type_with_turbofish] = STATE(3063), - [sym__expression_except_range] = STATE(1659), - [sym__expression] = STATE(1753), - [sym_macro_invocation] = STATE(1708), - [sym_scoped_identifier] = STATE(1599), - [sym_scoped_type_identifier_in_expression_position] = STATE(3307), - [sym_range_expression] = STATE(1695), - [sym_unary_expression] = STATE(1691), - [sym_try_expression] = STATE(1691), - [sym_reference_expression] = STATE(1691), - [sym_binary_expression] = STATE(1691), - [sym_assignment_expression] = STATE(1691), - [sym_compound_assignment_expr] = STATE(1691), - [sym_type_cast_expression] = STATE(1691), - [sym_return_expression] = STATE(1691), - [sym_yield_expression] = STATE(1691), - [sym_call_expression] = STATE(1691), - [sym_array_expression] = STATE(1691), - [sym_parenthesized_expression] = STATE(1691), - [sym_tuple_expression] = STATE(1691), - [sym_unit_expression] = STATE(1691), - [sym_struct_expression] = STATE(1691), - [sym_if_expression] = STATE(1691), - [sym_match_expression] = STATE(1691), - [sym_while_expression] = STATE(1691), - [sym_loop_expression] = STATE(1691), - [sym_for_expression] = STATE(1691), - [sym_const_block] = STATE(1691), - [sym_closure_expression] = STATE(1691), - [sym_closure_parameters] = STATE(229), - [sym_label] = STATE(3712), - [sym_break_expression] = STATE(1691), - [sym_continue_expression] = STATE(1691), - [sym_index_expression] = STATE(1691), - [sym_await_expression] = STATE(1691), - [sym_field_expression] = STATE(1671), - [sym_unsafe_block] = STATE(1691), - [sym_async_block] = STATE(1691), - [sym_gen_block] = STATE(1691), - [sym_try_block] = STATE(1691), - [sym_block] = STATE(1691), - [sym__literal] = STATE(1691), - [sym_string_literal] = STATE(1776), - [sym_raw_string_literal] = STATE(1776), - [sym_boolean_literal] = STATE(1776), - [sym_line_comment] = STATE(326), - [sym_block_comment] = STATE(326), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(495), - [anon_sym_LBRACK] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(979), - [anon_sym_u8] = ACTIONS(411), - [anon_sym_i8] = ACTIONS(411), - [anon_sym_u16] = ACTIONS(411), - [anon_sym_i16] = ACTIONS(411), - [anon_sym_u32] = ACTIONS(411), - [anon_sym_i32] = ACTIONS(411), - [anon_sym_u64] = ACTIONS(411), - [anon_sym_i64] = ACTIONS(411), - [anon_sym_u128] = ACTIONS(411), - [anon_sym_i128] = ACTIONS(411), - [anon_sym_isize] = ACTIONS(411), - [anon_sym_usize] = ACTIONS(411), - [anon_sym_f32] = ACTIONS(411), - [anon_sym_f64] = ACTIONS(411), - [anon_sym_bool] = ACTIONS(411), - [anon_sym_str] = ACTIONS(411), - [anon_sym_char] = ACTIONS(411), - [anon_sym_DASH] = ACTIONS(979), - [anon_sym_BANG] = ACTIONS(979), - [anon_sym_AMP] = ACTIONS(981), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1079), - [anon_sym_COLON_COLON] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(417), - [anon_sym_break] = ACTIONS(419), - [anon_sym_const] = ACTIONS(421), - [anon_sym_continue] = ACTIONS(423), - [anon_sym_default] = ACTIONS(425), - [anon_sym_for] = ACTIONS(427), - [anon_sym_gen] = ACTIONS(429), - [anon_sym_if] = ACTIONS(431), - [anon_sym_loop] = ACTIONS(433), - [anon_sym_match] = ACTIONS(435), - [anon_sym_return] = ACTIONS(437), - [anon_sym_static] = ACTIONS(439), - [anon_sym_union] = ACTIONS(425), - [anon_sym_unsafe] = ACTIONS(441), - [anon_sym_while] = ACTIONS(443), - [anon_sym_yield] = ACTIONS(445), - [anon_sym_move] = ACTIONS(447), - [anon_sym_try] = ACTIONS(449), - [sym_integer_literal] = ACTIONS(451), - [aux_sym_string_literal_token1] = ACTIONS(453), - [sym_char_literal] = ACTIONS(451), - [anon_sym_true] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(457), - [sym_super] = ACTIONS(459), - [sym_crate] = ACTIONS(459), - [sym_metavariable] = ACTIONS(461), - [sym__raw_string_literal_start] = ACTIONS(463), - [sym_float_literal] = ACTIONS(451), - }, - [STATE(327)] = { - [sym_bracketed_type] = STATE(3621), - [sym_generic_function] = STATE(1691), - [sym_generic_type_with_turbofish] = STATE(3063), - [sym__expression_except_range] = STATE(1659), - [sym__expression] = STATE(1687), - [sym_macro_invocation] = STATE(1708), - [sym_scoped_identifier] = STATE(1599), - [sym_scoped_type_identifier_in_expression_position] = STATE(3307), - [sym_range_expression] = STATE(1695), - [sym_unary_expression] = STATE(1691), - [sym_try_expression] = STATE(1691), - [sym_reference_expression] = STATE(1691), - [sym_binary_expression] = STATE(1691), - [sym_assignment_expression] = STATE(1691), - [sym_compound_assignment_expr] = STATE(1691), - [sym_type_cast_expression] = STATE(1691), - [sym_return_expression] = STATE(1691), - [sym_yield_expression] = STATE(1691), - [sym_call_expression] = STATE(1691), - [sym_array_expression] = STATE(1691), - [sym_parenthesized_expression] = STATE(1691), - [sym_tuple_expression] = STATE(1691), - [sym_unit_expression] = STATE(1691), - [sym_struct_expression] = STATE(1691), - [sym_if_expression] = STATE(1691), - [sym_match_expression] = STATE(1691), - [sym_while_expression] = STATE(1691), - [sym_loop_expression] = STATE(1691), - [sym_for_expression] = STATE(1691), - [sym_const_block] = STATE(1691), - [sym_closure_expression] = STATE(1691), - [sym_closure_parameters] = STATE(229), - [sym_label] = STATE(3712), - [sym_break_expression] = STATE(1691), - [sym_continue_expression] = STATE(1691), - [sym_index_expression] = STATE(1691), - [sym_await_expression] = STATE(1691), - [sym_field_expression] = STATE(1671), - [sym_unsafe_block] = STATE(1691), - [sym_async_block] = STATE(1691), - [sym_gen_block] = STATE(1691), - [sym_try_block] = STATE(1691), - [sym_block] = STATE(1691), - [sym__literal] = STATE(1691), - [sym_string_literal] = STATE(1776), - [sym_raw_string_literal] = STATE(1776), - [sym_boolean_literal] = STATE(1776), - [sym_line_comment] = STATE(327), - [sym_block_comment] = STATE(327), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(495), - [anon_sym_LBRACK] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(979), - [anon_sym_u8] = ACTIONS(411), - [anon_sym_i8] = ACTIONS(411), - [anon_sym_u16] = ACTIONS(411), - [anon_sym_i16] = ACTIONS(411), - [anon_sym_u32] = ACTIONS(411), - [anon_sym_i32] = ACTIONS(411), - [anon_sym_u64] = ACTIONS(411), - [anon_sym_i64] = ACTIONS(411), - [anon_sym_u128] = ACTIONS(411), - [anon_sym_i128] = ACTIONS(411), - [anon_sym_isize] = ACTIONS(411), - [anon_sym_usize] = ACTIONS(411), - [anon_sym_f32] = ACTIONS(411), - [anon_sym_f64] = ACTIONS(411), - [anon_sym_bool] = ACTIONS(411), - [anon_sym_str] = ACTIONS(411), - [anon_sym_char] = ACTIONS(411), - [anon_sym_DASH] = ACTIONS(979), - [anon_sym_BANG] = ACTIONS(979), - [anon_sym_AMP] = ACTIONS(981), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1079), - [anon_sym_COLON_COLON] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(417), - [anon_sym_break] = ACTIONS(419), - [anon_sym_const] = ACTIONS(421), - [anon_sym_continue] = ACTIONS(423), - [anon_sym_default] = ACTIONS(425), - [anon_sym_for] = ACTIONS(427), - [anon_sym_gen] = ACTIONS(429), - [anon_sym_if] = ACTIONS(431), - [anon_sym_loop] = ACTIONS(433), - [anon_sym_match] = ACTIONS(435), - [anon_sym_return] = ACTIONS(437), - [anon_sym_static] = ACTIONS(439), - [anon_sym_union] = ACTIONS(425), - [anon_sym_unsafe] = ACTIONS(441), - [anon_sym_while] = ACTIONS(443), - [anon_sym_yield] = ACTIONS(445), - [anon_sym_move] = ACTIONS(447), - [anon_sym_try] = ACTIONS(449), - [sym_integer_literal] = ACTIONS(451), - [aux_sym_string_literal_token1] = ACTIONS(453), - [sym_char_literal] = ACTIONS(451), - [anon_sym_true] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(457), - [sym_super] = ACTIONS(459), - [sym_crate] = ACTIONS(459), - [sym_metavariable] = ACTIONS(461), - [sym__raw_string_literal_start] = ACTIONS(463), - [sym_float_literal] = ACTIONS(451), - }, - [STATE(328)] = { - [sym_bracketed_type] = STATE(3621), - [sym_generic_function] = STATE(1691), - [sym_generic_type_with_turbofish] = STATE(3063), - [sym__expression_except_range] = STATE(1659), - [sym__expression] = STATE(1755), - [sym_macro_invocation] = STATE(1708), - [sym_scoped_identifier] = STATE(1599), - [sym_scoped_type_identifier_in_expression_position] = STATE(3307), - [sym_range_expression] = STATE(1695), - [sym_unary_expression] = STATE(1691), - [sym_try_expression] = STATE(1691), - [sym_reference_expression] = STATE(1691), - [sym_binary_expression] = STATE(1691), - [sym_assignment_expression] = STATE(1691), - [sym_compound_assignment_expr] = STATE(1691), - [sym_type_cast_expression] = STATE(1691), - [sym_return_expression] = STATE(1691), - [sym_yield_expression] = STATE(1691), - [sym_call_expression] = STATE(1691), - [sym_array_expression] = STATE(1691), - [sym_parenthesized_expression] = STATE(1691), - [sym_tuple_expression] = STATE(1691), - [sym_unit_expression] = STATE(1691), - [sym_struct_expression] = STATE(1691), - [sym_if_expression] = STATE(1691), - [sym_match_expression] = STATE(1691), - [sym_while_expression] = STATE(1691), - [sym_loop_expression] = STATE(1691), - [sym_for_expression] = STATE(1691), - [sym_const_block] = STATE(1691), - [sym_closure_expression] = STATE(1691), - [sym_closure_parameters] = STATE(229), - [sym_label] = STATE(3712), - [sym_break_expression] = STATE(1691), - [sym_continue_expression] = STATE(1691), - [sym_index_expression] = STATE(1691), - [sym_await_expression] = STATE(1691), - [sym_field_expression] = STATE(1671), - [sym_unsafe_block] = STATE(1691), - [sym_async_block] = STATE(1691), - [sym_gen_block] = STATE(1691), - [sym_try_block] = STATE(1691), - [sym_block] = STATE(1691), - [sym__literal] = STATE(1691), - [sym_string_literal] = STATE(1776), - [sym_raw_string_literal] = STATE(1776), - [sym_boolean_literal] = STATE(1776), - [sym_line_comment] = STATE(328), - [sym_block_comment] = STATE(328), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(495), - [anon_sym_LBRACK] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(979), - [anon_sym_u8] = ACTIONS(411), - [anon_sym_i8] = ACTIONS(411), - [anon_sym_u16] = ACTIONS(411), - [anon_sym_i16] = ACTIONS(411), - [anon_sym_u32] = ACTIONS(411), - [anon_sym_i32] = ACTIONS(411), - [anon_sym_u64] = ACTIONS(411), - [anon_sym_i64] = ACTIONS(411), - [anon_sym_u128] = ACTIONS(411), - [anon_sym_i128] = ACTIONS(411), - [anon_sym_isize] = ACTIONS(411), - [anon_sym_usize] = ACTIONS(411), - [anon_sym_f32] = ACTIONS(411), - [anon_sym_f64] = ACTIONS(411), - [anon_sym_bool] = ACTIONS(411), - [anon_sym_str] = ACTIONS(411), - [anon_sym_char] = ACTIONS(411), - [anon_sym_DASH] = ACTIONS(979), - [anon_sym_BANG] = ACTIONS(979), - [anon_sym_AMP] = ACTIONS(981), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1079), - [anon_sym_COLON_COLON] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(417), - [anon_sym_break] = ACTIONS(419), - [anon_sym_const] = ACTIONS(421), - [anon_sym_continue] = ACTIONS(423), - [anon_sym_default] = ACTIONS(425), - [anon_sym_for] = ACTIONS(427), - [anon_sym_gen] = ACTIONS(429), - [anon_sym_if] = ACTIONS(431), - [anon_sym_loop] = ACTIONS(433), - [anon_sym_match] = ACTIONS(435), - [anon_sym_return] = ACTIONS(437), - [anon_sym_static] = ACTIONS(439), - [anon_sym_union] = ACTIONS(425), - [anon_sym_unsafe] = ACTIONS(441), - [anon_sym_while] = ACTIONS(443), - [anon_sym_yield] = ACTIONS(445), - [anon_sym_move] = ACTIONS(447), - [anon_sym_try] = ACTIONS(449), - [sym_integer_literal] = ACTIONS(451), - [aux_sym_string_literal_token1] = ACTIONS(453), - [sym_char_literal] = ACTIONS(451), - [anon_sym_true] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(457), - [sym_super] = ACTIONS(459), - [sym_crate] = ACTIONS(459), - [sym_metavariable] = ACTIONS(461), - [sym__raw_string_literal_start] = ACTIONS(463), - [sym_float_literal] = ACTIONS(451), - }, - [STATE(329)] = { - [sym_bracketed_type] = STATE(3621), - [sym_generic_function] = STATE(1691), - [sym_generic_type_with_turbofish] = STATE(3063), - [sym__expression_except_range] = STATE(1659), - [sym__expression] = STATE(1756), - [sym_macro_invocation] = STATE(1708), - [sym_scoped_identifier] = STATE(1599), - [sym_scoped_type_identifier_in_expression_position] = STATE(3307), - [sym_range_expression] = STATE(1695), - [sym_unary_expression] = STATE(1691), - [sym_try_expression] = STATE(1691), - [sym_reference_expression] = STATE(1691), - [sym_binary_expression] = STATE(1691), - [sym_assignment_expression] = STATE(1691), - [sym_compound_assignment_expr] = STATE(1691), - [sym_type_cast_expression] = STATE(1691), - [sym_return_expression] = STATE(1691), - [sym_yield_expression] = STATE(1691), - [sym_call_expression] = STATE(1691), - [sym_array_expression] = STATE(1691), - [sym_parenthesized_expression] = STATE(1691), - [sym_tuple_expression] = STATE(1691), - [sym_unit_expression] = STATE(1691), - [sym_struct_expression] = STATE(1691), - [sym_if_expression] = STATE(1691), - [sym_match_expression] = STATE(1691), - [sym_while_expression] = STATE(1691), - [sym_loop_expression] = STATE(1691), - [sym_for_expression] = STATE(1691), - [sym_const_block] = STATE(1691), - [sym_closure_expression] = STATE(1691), - [sym_closure_parameters] = STATE(229), - [sym_label] = STATE(3712), - [sym_break_expression] = STATE(1691), - [sym_continue_expression] = STATE(1691), - [sym_index_expression] = STATE(1691), - [sym_await_expression] = STATE(1691), - [sym_field_expression] = STATE(1671), - [sym_unsafe_block] = STATE(1691), - [sym_async_block] = STATE(1691), - [sym_gen_block] = STATE(1691), - [sym_try_block] = STATE(1691), - [sym_block] = STATE(1691), - [sym__literal] = STATE(1691), - [sym_string_literal] = STATE(1776), - [sym_raw_string_literal] = STATE(1776), - [sym_boolean_literal] = STATE(1776), - [sym_line_comment] = STATE(329), - [sym_block_comment] = STATE(329), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(495), - [anon_sym_LBRACK] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(979), - [anon_sym_u8] = ACTIONS(411), - [anon_sym_i8] = ACTIONS(411), - [anon_sym_u16] = ACTIONS(411), - [anon_sym_i16] = ACTIONS(411), - [anon_sym_u32] = ACTIONS(411), - [anon_sym_i32] = ACTIONS(411), - [anon_sym_u64] = ACTIONS(411), - [anon_sym_i64] = ACTIONS(411), - [anon_sym_u128] = ACTIONS(411), - [anon_sym_i128] = ACTIONS(411), - [anon_sym_isize] = ACTIONS(411), - [anon_sym_usize] = ACTIONS(411), - [anon_sym_f32] = ACTIONS(411), - [anon_sym_f64] = ACTIONS(411), - [anon_sym_bool] = ACTIONS(411), - [anon_sym_str] = ACTIONS(411), - [anon_sym_char] = ACTIONS(411), - [anon_sym_DASH] = ACTIONS(979), - [anon_sym_BANG] = ACTIONS(979), - [anon_sym_AMP] = ACTIONS(981), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1079), - [anon_sym_COLON_COLON] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(417), - [anon_sym_break] = ACTIONS(419), - [anon_sym_const] = ACTIONS(421), - [anon_sym_continue] = ACTIONS(423), - [anon_sym_default] = ACTIONS(425), - [anon_sym_for] = ACTIONS(427), - [anon_sym_gen] = ACTIONS(429), - [anon_sym_if] = ACTIONS(431), - [anon_sym_loop] = ACTIONS(433), - [anon_sym_match] = ACTIONS(435), - [anon_sym_return] = ACTIONS(437), - [anon_sym_static] = ACTIONS(439), - [anon_sym_union] = ACTIONS(425), - [anon_sym_unsafe] = ACTIONS(441), - [anon_sym_while] = ACTIONS(443), - [anon_sym_yield] = ACTIONS(445), - [anon_sym_move] = ACTIONS(447), - [anon_sym_try] = ACTIONS(449), - [sym_integer_literal] = ACTIONS(451), - [aux_sym_string_literal_token1] = ACTIONS(453), - [sym_char_literal] = ACTIONS(451), - [anon_sym_true] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(457), - [sym_super] = ACTIONS(459), - [sym_crate] = ACTIONS(459), - [sym_metavariable] = ACTIONS(461), - [sym__raw_string_literal_start] = ACTIONS(463), - [sym_float_literal] = ACTIONS(451), - }, - [STATE(330)] = { - [sym_bracketed_type] = STATE(3621), - [sym_generic_function] = STATE(1691), - [sym_generic_type_with_turbofish] = STATE(3063), - [sym__expression_except_range] = STATE(1659), - [sym__expression] = STATE(1757), - [sym_macro_invocation] = STATE(1708), - [sym_scoped_identifier] = STATE(1599), - [sym_scoped_type_identifier_in_expression_position] = STATE(3307), - [sym_range_expression] = STATE(1695), - [sym_unary_expression] = STATE(1691), - [sym_try_expression] = STATE(1691), - [sym_reference_expression] = STATE(1691), - [sym_binary_expression] = STATE(1691), - [sym_assignment_expression] = STATE(1691), - [sym_compound_assignment_expr] = STATE(1691), - [sym_type_cast_expression] = STATE(1691), - [sym_return_expression] = STATE(1691), - [sym_yield_expression] = STATE(1691), - [sym_call_expression] = STATE(1691), - [sym_array_expression] = STATE(1691), - [sym_parenthesized_expression] = STATE(1691), - [sym_tuple_expression] = STATE(1691), - [sym_unit_expression] = STATE(1691), - [sym_struct_expression] = STATE(1691), - [sym_if_expression] = STATE(1691), - [sym_match_expression] = STATE(1691), - [sym_while_expression] = STATE(1691), - [sym_loop_expression] = STATE(1691), - [sym_for_expression] = STATE(1691), - [sym_const_block] = STATE(1691), - [sym_closure_expression] = STATE(1691), - [sym_closure_parameters] = STATE(229), - [sym_label] = STATE(3712), - [sym_break_expression] = STATE(1691), - [sym_continue_expression] = STATE(1691), - [sym_index_expression] = STATE(1691), - [sym_await_expression] = STATE(1691), - [sym_field_expression] = STATE(1671), - [sym_unsafe_block] = STATE(1691), - [sym_async_block] = STATE(1691), - [sym_gen_block] = STATE(1691), - [sym_try_block] = STATE(1691), - [sym_block] = STATE(1691), - [sym__literal] = STATE(1691), - [sym_string_literal] = STATE(1776), - [sym_raw_string_literal] = STATE(1776), - [sym_boolean_literal] = STATE(1776), - [sym_line_comment] = STATE(330), - [sym_block_comment] = STATE(330), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(495), - [anon_sym_LBRACK] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(979), - [anon_sym_u8] = ACTIONS(411), - [anon_sym_i8] = ACTIONS(411), - [anon_sym_u16] = ACTIONS(411), - [anon_sym_i16] = ACTIONS(411), - [anon_sym_u32] = ACTIONS(411), - [anon_sym_i32] = ACTIONS(411), - [anon_sym_u64] = ACTIONS(411), - [anon_sym_i64] = ACTIONS(411), - [anon_sym_u128] = ACTIONS(411), - [anon_sym_i128] = ACTIONS(411), - [anon_sym_isize] = ACTIONS(411), - [anon_sym_usize] = ACTIONS(411), - [anon_sym_f32] = ACTIONS(411), - [anon_sym_f64] = ACTIONS(411), - [anon_sym_bool] = ACTIONS(411), - [anon_sym_str] = ACTIONS(411), - [anon_sym_char] = ACTIONS(411), - [anon_sym_DASH] = ACTIONS(979), - [anon_sym_BANG] = ACTIONS(979), - [anon_sym_AMP] = ACTIONS(981), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1079), - [anon_sym_COLON_COLON] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(417), - [anon_sym_break] = ACTIONS(419), - [anon_sym_const] = ACTIONS(421), - [anon_sym_continue] = ACTIONS(423), - [anon_sym_default] = ACTIONS(425), - [anon_sym_for] = ACTIONS(427), - [anon_sym_gen] = ACTIONS(429), - [anon_sym_if] = ACTIONS(431), - [anon_sym_loop] = ACTIONS(433), - [anon_sym_match] = ACTIONS(435), - [anon_sym_return] = ACTIONS(437), - [anon_sym_static] = ACTIONS(439), - [anon_sym_union] = ACTIONS(425), - [anon_sym_unsafe] = ACTIONS(441), - [anon_sym_while] = ACTIONS(443), - [anon_sym_yield] = ACTIONS(445), - [anon_sym_move] = ACTIONS(447), - [anon_sym_try] = ACTIONS(449), - [sym_integer_literal] = ACTIONS(451), - [aux_sym_string_literal_token1] = ACTIONS(453), - [sym_char_literal] = ACTIONS(451), - [anon_sym_true] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(457), - [sym_super] = ACTIONS(459), - [sym_crate] = ACTIONS(459), - [sym_metavariable] = ACTIONS(461), - [sym__raw_string_literal_start] = ACTIONS(463), - [sym_float_literal] = ACTIONS(451), - }, - [STATE(331)] = { - [sym_bracketed_type] = STATE(3621), - [sym_generic_function] = STATE(1691), - [sym_generic_type_with_turbofish] = STATE(3063), - [sym__expression_except_range] = STATE(1659), - [sym__expression] = STATE(1758), - [sym_macro_invocation] = STATE(1708), - [sym_scoped_identifier] = STATE(1599), - [sym_scoped_type_identifier_in_expression_position] = STATE(3307), - [sym_range_expression] = STATE(1695), - [sym_unary_expression] = STATE(1691), - [sym_try_expression] = STATE(1691), - [sym_reference_expression] = STATE(1691), - [sym_binary_expression] = STATE(1691), - [sym_assignment_expression] = STATE(1691), - [sym_compound_assignment_expr] = STATE(1691), - [sym_type_cast_expression] = STATE(1691), - [sym_return_expression] = STATE(1691), - [sym_yield_expression] = STATE(1691), - [sym_call_expression] = STATE(1691), - [sym_array_expression] = STATE(1691), - [sym_parenthesized_expression] = STATE(1691), - [sym_tuple_expression] = STATE(1691), - [sym_unit_expression] = STATE(1691), - [sym_struct_expression] = STATE(1691), - [sym_if_expression] = STATE(1691), - [sym_match_expression] = STATE(1691), - [sym_while_expression] = STATE(1691), - [sym_loop_expression] = STATE(1691), - [sym_for_expression] = STATE(1691), - [sym_const_block] = STATE(1691), - [sym_closure_expression] = STATE(1691), - [sym_closure_parameters] = STATE(229), - [sym_label] = STATE(3712), - [sym_break_expression] = STATE(1691), - [sym_continue_expression] = STATE(1691), - [sym_index_expression] = STATE(1691), - [sym_await_expression] = STATE(1691), - [sym_field_expression] = STATE(1671), - [sym_unsafe_block] = STATE(1691), - [sym_async_block] = STATE(1691), - [sym_gen_block] = STATE(1691), - [sym_try_block] = STATE(1691), - [sym_block] = STATE(1691), - [sym__literal] = STATE(1691), - [sym_string_literal] = STATE(1776), - [sym_raw_string_literal] = STATE(1776), - [sym_boolean_literal] = STATE(1776), - [sym_line_comment] = STATE(331), - [sym_block_comment] = STATE(331), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(495), - [anon_sym_LBRACK] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(979), - [anon_sym_u8] = ACTIONS(411), - [anon_sym_i8] = ACTIONS(411), - [anon_sym_u16] = ACTIONS(411), - [anon_sym_i16] = ACTIONS(411), - [anon_sym_u32] = ACTIONS(411), - [anon_sym_i32] = ACTIONS(411), - [anon_sym_u64] = ACTIONS(411), - [anon_sym_i64] = ACTIONS(411), - [anon_sym_u128] = ACTIONS(411), - [anon_sym_i128] = ACTIONS(411), - [anon_sym_isize] = ACTIONS(411), - [anon_sym_usize] = ACTIONS(411), - [anon_sym_f32] = ACTIONS(411), - [anon_sym_f64] = ACTIONS(411), - [anon_sym_bool] = ACTIONS(411), - [anon_sym_str] = ACTIONS(411), - [anon_sym_char] = ACTIONS(411), - [anon_sym_DASH] = ACTIONS(979), - [anon_sym_BANG] = ACTIONS(979), - [anon_sym_AMP] = ACTIONS(981), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1079), - [anon_sym_COLON_COLON] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(417), - [anon_sym_break] = ACTIONS(419), - [anon_sym_const] = ACTIONS(421), - [anon_sym_continue] = ACTIONS(423), - [anon_sym_default] = ACTIONS(425), - [anon_sym_for] = ACTIONS(427), - [anon_sym_gen] = ACTIONS(429), - [anon_sym_if] = ACTIONS(431), - [anon_sym_loop] = ACTIONS(433), - [anon_sym_match] = ACTIONS(435), - [anon_sym_return] = ACTIONS(437), - [anon_sym_static] = ACTIONS(439), - [anon_sym_union] = ACTIONS(425), - [anon_sym_unsafe] = ACTIONS(441), - [anon_sym_while] = ACTIONS(443), - [anon_sym_yield] = ACTIONS(445), - [anon_sym_move] = ACTIONS(447), - [anon_sym_try] = ACTIONS(449), - [sym_integer_literal] = ACTIONS(451), - [aux_sym_string_literal_token1] = ACTIONS(453), - [sym_char_literal] = ACTIONS(451), - [anon_sym_true] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(457), - [sym_super] = ACTIONS(459), - [sym_crate] = ACTIONS(459), - [sym_metavariable] = ACTIONS(461), - [sym__raw_string_literal_start] = ACTIONS(463), - [sym_float_literal] = ACTIONS(451), - }, - [STATE(332)] = { - [sym_bracketed_type] = STATE(3621), - [sym_generic_function] = STATE(1691), - [sym_generic_type_with_turbofish] = STATE(3063), - [sym__expression_except_range] = STATE(1659), - [sym__expression] = STATE(1759), - [sym_macro_invocation] = STATE(1708), - [sym_scoped_identifier] = STATE(1599), - [sym_scoped_type_identifier_in_expression_position] = STATE(3307), - [sym_range_expression] = STATE(1695), - [sym_unary_expression] = STATE(1691), - [sym_try_expression] = STATE(1691), - [sym_reference_expression] = STATE(1691), - [sym_binary_expression] = STATE(1691), - [sym_assignment_expression] = STATE(1691), - [sym_compound_assignment_expr] = STATE(1691), - [sym_type_cast_expression] = STATE(1691), - [sym_return_expression] = STATE(1691), - [sym_yield_expression] = STATE(1691), - [sym_call_expression] = STATE(1691), - [sym_array_expression] = STATE(1691), - [sym_parenthesized_expression] = STATE(1691), - [sym_tuple_expression] = STATE(1691), - [sym_unit_expression] = STATE(1691), - [sym_struct_expression] = STATE(1691), - [sym_if_expression] = STATE(1691), - [sym_match_expression] = STATE(1691), - [sym_while_expression] = STATE(1691), - [sym_loop_expression] = STATE(1691), - [sym_for_expression] = STATE(1691), - [sym_const_block] = STATE(1691), - [sym_closure_expression] = STATE(1691), - [sym_closure_parameters] = STATE(229), - [sym_label] = STATE(3712), - [sym_break_expression] = STATE(1691), - [sym_continue_expression] = STATE(1691), - [sym_index_expression] = STATE(1691), - [sym_await_expression] = STATE(1691), - [sym_field_expression] = STATE(1671), - [sym_unsafe_block] = STATE(1691), - [sym_async_block] = STATE(1691), - [sym_gen_block] = STATE(1691), - [sym_try_block] = STATE(1691), - [sym_block] = STATE(1691), - [sym__literal] = STATE(1691), - [sym_string_literal] = STATE(1776), - [sym_raw_string_literal] = STATE(1776), - [sym_boolean_literal] = STATE(1776), - [sym_line_comment] = STATE(332), - [sym_block_comment] = STATE(332), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(495), - [anon_sym_LBRACK] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(979), - [anon_sym_u8] = ACTIONS(411), - [anon_sym_i8] = ACTIONS(411), - [anon_sym_u16] = ACTIONS(411), - [anon_sym_i16] = ACTIONS(411), - [anon_sym_u32] = ACTIONS(411), - [anon_sym_i32] = ACTIONS(411), - [anon_sym_u64] = ACTIONS(411), - [anon_sym_i64] = ACTIONS(411), - [anon_sym_u128] = ACTIONS(411), - [anon_sym_i128] = ACTIONS(411), - [anon_sym_isize] = ACTIONS(411), - [anon_sym_usize] = ACTIONS(411), - [anon_sym_f32] = ACTIONS(411), - [anon_sym_f64] = ACTIONS(411), - [anon_sym_bool] = ACTIONS(411), - [anon_sym_str] = ACTIONS(411), - [anon_sym_char] = ACTIONS(411), - [anon_sym_DASH] = ACTIONS(979), - [anon_sym_BANG] = ACTIONS(979), - [anon_sym_AMP] = ACTIONS(981), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1079), - [anon_sym_COLON_COLON] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(417), - [anon_sym_break] = ACTIONS(419), - [anon_sym_const] = ACTIONS(421), - [anon_sym_continue] = ACTIONS(423), - [anon_sym_default] = ACTIONS(425), - [anon_sym_for] = ACTIONS(427), - [anon_sym_gen] = ACTIONS(429), - [anon_sym_if] = ACTIONS(431), - [anon_sym_loop] = ACTIONS(433), - [anon_sym_match] = ACTIONS(435), - [anon_sym_return] = ACTIONS(437), - [anon_sym_static] = ACTIONS(439), - [anon_sym_union] = ACTIONS(425), - [anon_sym_unsafe] = ACTIONS(441), - [anon_sym_while] = ACTIONS(443), - [anon_sym_yield] = ACTIONS(445), - [anon_sym_move] = ACTIONS(447), - [anon_sym_try] = ACTIONS(449), - [sym_integer_literal] = ACTIONS(451), - [aux_sym_string_literal_token1] = ACTIONS(453), - [sym_char_literal] = ACTIONS(451), - [anon_sym_true] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(457), - [sym_super] = ACTIONS(459), - [sym_crate] = ACTIONS(459), - [sym_metavariable] = ACTIONS(461), - [sym__raw_string_literal_start] = ACTIONS(463), - [sym_float_literal] = ACTIONS(451), - }, - [STATE(333)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3056), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1888), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1591), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(244), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [sym_line_comment] = STATE(333), - [sym_block_comment] = STATE(333), - [sym_identifier] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1073), - [anon_sym_u8] = ACTIONS(469), - [anon_sym_i8] = ACTIONS(469), - [anon_sym_u16] = ACTIONS(469), - [anon_sym_i16] = ACTIONS(469), - [anon_sym_u32] = ACTIONS(469), - [anon_sym_i32] = ACTIONS(469), - [anon_sym_u64] = ACTIONS(469), - [anon_sym_i64] = ACTIONS(469), - [anon_sym_u128] = ACTIONS(469), - [anon_sym_i128] = ACTIONS(469), - [anon_sym_isize] = ACTIONS(469), - [anon_sym_usize] = ACTIONS(469), - [anon_sym_f32] = ACTIONS(469), - [anon_sym_f64] = ACTIONS(469), - [anon_sym_bool] = ACTIONS(469), - [anon_sym_str] = ACTIONS(469), - [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(1073), - [anon_sym_BANG] = ACTIONS(1073), - [anon_sym_AMP] = ACTIONS(1075), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1349), - [anon_sym_COLON_COLON] = ACTIONS(473), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(475), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(477), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(479), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(481), - [anon_sym_static] = ACTIONS(483), - [anon_sym_union] = ACTIONS(477), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(485), - [anon_sym_move] = ACTIONS(487), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(489), - [sym_super] = ACTIONS(491), - [sym_crate] = ACTIONS(491), - [sym_metavariable] = ACTIONS(493), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), - }, - [STATE(334)] = { - [sym_bracketed_type] = STATE(3621), - [sym_generic_function] = STATE(1691), - [sym_generic_type_with_turbofish] = STATE(3063), - [sym__expression_except_range] = STATE(1659), - [sym__expression] = STATE(1889), - [sym_macro_invocation] = STATE(1708), - [sym_scoped_identifier] = STATE(1599), - [sym_scoped_type_identifier_in_expression_position] = STATE(3307), - [sym_range_expression] = STATE(1695), - [sym_unary_expression] = STATE(1691), - [sym_try_expression] = STATE(1691), - [sym_reference_expression] = STATE(1691), - [sym_binary_expression] = STATE(1691), - [sym_assignment_expression] = STATE(1691), - [sym_compound_assignment_expr] = STATE(1691), - [sym_type_cast_expression] = STATE(1691), - [sym_return_expression] = STATE(1691), - [sym_yield_expression] = STATE(1691), - [sym_call_expression] = STATE(1691), - [sym_array_expression] = STATE(1691), - [sym_parenthesized_expression] = STATE(1691), - [sym_tuple_expression] = STATE(1691), - [sym_unit_expression] = STATE(1691), - [sym_struct_expression] = STATE(1691), - [sym_if_expression] = STATE(1691), - [sym_match_expression] = STATE(1691), - [sym_while_expression] = STATE(1691), - [sym_loop_expression] = STATE(1691), - [sym_for_expression] = STATE(1691), - [sym_const_block] = STATE(1691), - [sym_closure_expression] = STATE(1691), - [sym_closure_parameters] = STATE(229), - [sym_label] = STATE(3712), - [sym_break_expression] = STATE(1691), - [sym_continue_expression] = STATE(1691), - [sym_index_expression] = STATE(1691), - [sym_await_expression] = STATE(1691), - [sym_field_expression] = STATE(1671), - [sym_unsafe_block] = STATE(1691), - [sym_async_block] = STATE(1691), - [sym_gen_block] = STATE(1691), - [sym_try_block] = STATE(1691), - [sym_block] = STATE(1691), - [sym__literal] = STATE(1691), - [sym_string_literal] = STATE(1776), - [sym_raw_string_literal] = STATE(1776), - [sym_boolean_literal] = STATE(1776), - [sym_line_comment] = STATE(334), - [sym_block_comment] = STATE(334), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(495), - [anon_sym_LBRACK] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(979), - [anon_sym_u8] = ACTIONS(411), - [anon_sym_i8] = ACTIONS(411), - [anon_sym_u16] = ACTIONS(411), - [anon_sym_i16] = ACTIONS(411), - [anon_sym_u32] = ACTIONS(411), - [anon_sym_i32] = ACTIONS(411), - [anon_sym_u64] = ACTIONS(411), - [anon_sym_i64] = ACTIONS(411), - [anon_sym_u128] = ACTIONS(411), - [anon_sym_i128] = ACTIONS(411), - [anon_sym_isize] = ACTIONS(411), - [anon_sym_usize] = ACTIONS(411), - [anon_sym_f32] = ACTIONS(411), - [anon_sym_f64] = ACTIONS(411), - [anon_sym_bool] = ACTIONS(411), - [anon_sym_str] = ACTIONS(411), - [anon_sym_char] = ACTIONS(411), - [anon_sym_DASH] = ACTIONS(979), - [anon_sym_BANG] = ACTIONS(979), - [anon_sym_AMP] = ACTIONS(981), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1079), - [anon_sym_COLON_COLON] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(417), - [anon_sym_break] = ACTIONS(419), - [anon_sym_const] = ACTIONS(421), - [anon_sym_continue] = ACTIONS(423), - [anon_sym_default] = ACTIONS(425), - [anon_sym_for] = ACTIONS(427), - [anon_sym_gen] = ACTIONS(429), - [anon_sym_if] = ACTIONS(431), - [anon_sym_loop] = ACTIONS(433), - [anon_sym_match] = ACTIONS(435), - [anon_sym_return] = ACTIONS(437), - [anon_sym_static] = ACTIONS(439), - [anon_sym_union] = ACTIONS(425), - [anon_sym_unsafe] = ACTIONS(441), - [anon_sym_while] = ACTIONS(443), - [anon_sym_yield] = ACTIONS(445), - [anon_sym_move] = ACTIONS(447), - [anon_sym_try] = ACTIONS(449), - [sym_integer_literal] = ACTIONS(451), - [aux_sym_string_literal_token1] = ACTIONS(453), - [sym_char_literal] = ACTIONS(451), - [anon_sym_true] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(457), - [sym_super] = ACTIONS(459), - [sym_crate] = ACTIONS(459), - [sym_metavariable] = ACTIONS(461), - [sym__raw_string_literal_start] = ACTIONS(463), - [sym_float_literal] = ACTIONS(451), - }, - [STATE(335)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3056), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1668), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1591), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [sym_line_comment] = STATE(335), - [sym_block_comment] = STATE(335), - [sym_identifier] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(901), - [anon_sym_u8] = ACTIONS(469), - [anon_sym_i8] = ACTIONS(469), - [anon_sym_u16] = ACTIONS(469), - [anon_sym_i16] = ACTIONS(469), - [anon_sym_u32] = ACTIONS(469), - [anon_sym_i32] = ACTIONS(469), - [anon_sym_u64] = ACTIONS(469), - [anon_sym_i64] = ACTIONS(469), - [anon_sym_u128] = ACTIONS(469), - [anon_sym_i128] = ACTIONS(469), - [anon_sym_isize] = ACTIONS(469), - [anon_sym_usize] = ACTIONS(469), - [anon_sym_f32] = ACTIONS(469), - [anon_sym_f64] = ACTIONS(469), - [anon_sym_bool] = ACTIONS(469), - [anon_sym_str] = ACTIONS(469), - [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(901), - [anon_sym_BANG] = ACTIONS(901), - [anon_sym_AMP] = ACTIONS(903), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1055), - [anon_sym_COLON_COLON] = ACTIONS(473), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(477), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(477), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(489), - [sym_super] = ACTIONS(491), - [sym_crate] = ACTIONS(491), - [sym_metavariable] = ACTIONS(493), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), - }, - [STATE(336)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3056), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1888), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1591), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(244), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [sym_line_comment] = STATE(336), - [sym_block_comment] = STATE(336), - [sym_identifier] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1073), - [anon_sym_u8] = ACTIONS(469), - [anon_sym_i8] = ACTIONS(469), - [anon_sym_u16] = ACTIONS(469), - [anon_sym_i16] = ACTIONS(469), - [anon_sym_u32] = ACTIONS(469), - [anon_sym_i32] = ACTIONS(469), - [anon_sym_u64] = ACTIONS(469), - [anon_sym_i64] = ACTIONS(469), - [anon_sym_u128] = ACTIONS(469), - [anon_sym_i128] = ACTIONS(469), - [anon_sym_isize] = ACTIONS(469), - [anon_sym_usize] = ACTIONS(469), - [anon_sym_f32] = ACTIONS(469), - [anon_sym_f64] = ACTIONS(469), - [anon_sym_bool] = ACTIONS(469), - [anon_sym_str] = ACTIONS(469), - [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(1073), - [anon_sym_BANG] = ACTIONS(1073), - [anon_sym_AMP] = ACTIONS(1075), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1077), - [anon_sym_COLON_COLON] = ACTIONS(473), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(475), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(477), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(479), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(481), - [anon_sym_static] = ACTIONS(483), - [anon_sym_union] = ACTIONS(477), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(485), - [anon_sym_move] = ACTIONS(487), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(489), - [sym_super] = ACTIONS(491), - [sym_crate] = ACTIONS(491), - [sym_metavariable] = ACTIONS(493), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), - }, - [STATE(337)] = { - [sym_bracketed_type] = STATE(3621), - [sym_generic_function] = STATE(1691), - [sym_generic_type_with_turbofish] = STATE(3063), - [sym__expression_except_range] = STATE(1659), - [sym__expression] = STATE(1760), - [sym_macro_invocation] = STATE(1708), - [sym_scoped_identifier] = STATE(1599), - [sym_scoped_type_identifier_in_expression_position] = STATE(3307), - [sym_range_expression] = STATE(1695), - [sym_unary_expression] = STATE(1691), - [sym_try_expression] = STATE(1691), - [sym_reference_expression] = STATE(1691), - [sym_binary_expression] = STATE(1691), - [sym_assignment_expression] = STATE(1691), - [sym_compound_assignment_expr] = STATE(1691), - [sym_type_cast_expression] = STATE(1691), - [sym_return_expression] = STATE(1691), - [sym_yield_expression] = STATE(1691), - [sym_call_expression] = STATE(1691), - [sym_array_expression] = STATE(1691), - [sym_parenthesized_expression] = STATE(1691), - [sym_tuple_expression] = STATE(1691), - [sym_unit_expression] = STATE(1691), - [sym_struct_expression] = STATE(1691), - [sym_if_expression] = STATE(1691), - [sym_match_expression] = STATE(1691), - [sym_while_expression] = STATE(1691), - [sym_loop_expression] = STATE(1691), - [sym_for_expression] = STATE(1691), - [sym_const_block] = STATE(1691), - [sym_closure_expression] = STATE(1691), - [sym_closure_parameters] = STATE(229), - [sym_label] = STATE(3712), - [sym_break_expression] = STATE(1691), - [sym_continue_expression] = STATE(1691), - [sym_index_expression] = STATE(1691), - [sym_await_expression] = STATE(1691), - [sym_field_expression] = STATE(1671), - [sym_unsafe_block] = STATE(1691), - [sym_async_block] = STATE(1691), - [sym_gen_block] = STATE(1691), - [sym_try_block] = STATE(1691), - [sym_block] = STATE(1691), - [sym__literal] = STATE(1691), - [sym_string_literal] = STATE(1776), - [sym_raw_string_literal] = STATE(1776), - [sym_boolean_literal] = STATE(1776), - [sym_line_comment] = STATE(337), - [sym_block_comment] = STATE(337), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(495), - [anon_sym_LBRACK] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(979), - [anon_sym_u8] = ACTIONS(411), - [anon_sym_i8] = ACTIONS(411), - [anon_sym_u16] = ACTIONS(411), - [anon_sym_i16] = ACTIONS(411), - [anon_sym_u32] = ACTIONS(411), - [anon_sym_i32] = ACTIONS(411), - [anon_sym_u64] = ACTIONS(411), - [anon_sym_i64] = ACTIONS(411), - [anon_sym_u128] = ACTIONS(411), - [anon_sym_i128] = ACTIONS(411), - [anon_sym_isize] = ACTIONS(411), - [anon_sym_usize] = ACTIONS(411), - [anon_sym_f32] = ACTIONS(411), - [anon_sym_f64] = ACTIONS(411), - [anon_sym_bool] = ACTIONS(411), - [anon_sym_str] = ACTIONS(411), - [anon_sym_char] = ACTIONS(411), - [anon_sym_DASH] = ACTIONS(979), - [anon_sym_BANG] = ACTIONS(979), - [anon_sym_AMP] = ACTIONS(981), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(983), - [anon_sym_COLON_COLON] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(417), - [anon_sym_break] = ACTIONS(419), - [anon_sym_const] = ACTIONS(421), - [anon_sym_continue] = ACTIONS(423), - [anon_sym_default] = ACTIONS(425), - [anon_sym_for] = ACTIONS(427), - [anon_sym_gen] = ACTIONS(429), - [anon_sym_if] = ACTIONS(431), - [anon_sym_loop] = ACTIONS(433), - [anon_sym_match] = ACTIONS(435), - [anon_sym_return] = ACTIONS(437), - [anon_sym_static] = ACTIONS(439), - [anon_sym_union] = ACTIONS(425), - [anon_sym_unsafe] = ACTIONS(441), - [anon_sym_while] = ACTIONS(443), - [anon_sym_yield] = ACTIONS(445), - [anon_sym_move] = ACTIONS(447), - [anon_sym_try] = ACTIONS(449), - [sym_integer_literal] = ACTIONS(451), - [aux_sym_string_literal_token1] = ACTIONS(453), - [sym_char_literal] = ACTIONS(451), - [anon_sym_true] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(457), - [sym_super] = ACTIONS(459), - [sym_crate] = ACTIONS(459), - [sym_metavariable] = ACTIONS(461), - [sym__raw_string_literal_start] = ACTIONS(463), - [sym_float_literal] = ACTIONS(451), + [anon_sym_static] = ACTIONS(372), + [anon_sym_union] = ACTIONS(360), + [anon_sym_unsafe] = ACTIONS(1382), + [anon_sym_while] = ACTIONS(1384), + [anon_sym_yield] = ACTIONS(93), + [anon_sym_move] = ACTIONS(95), + [anon_sym_try] = ACTIONS(1386), + [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(3621), - [sym_generic_function] = STATE(1691), - [sym_generic_type_with_turbofish] = STATE(3063), - [sym__expression_except_range] = STATE(1659), - [sym__expression] = STATE(1760), - [sym_macro_invocation] = STATE(1708), - [sym_scoped_identifier] = STATE(1599), - [sym_scoped_type_identifier_in_expression_position] = STATE(3307), - [sym_range_expression] = STATE(1695), - [sym_unary_expression] = STATE(1691), - [sym_try_expression] = STATE(1691), - [sym_reference_expression] = STATE(1691), - [sym_binary_expression] = STATE(1691), - [sym_assignment_expression] = STATE(1691), - [sym_compound_assignment_expr] = STATE(1691), - [sym_type_cast_expression] = STATE(1691), - [sym_return_expression] = STATE(1691), - [sym_yield_expression] = STATE(1691), - [sym_call_expression] = STATE(1691), - [sym_array_expression] = STATE(1691), - [sym_parenthesized_expression] = STATE(1691), - [sym_tuple_expression] = STATE(1691), - [sym_unit_expression] = STATE(1691), - [sym_struct_expression] = STATE(1691), - [sym_if_expression] = STATE(1691), - [sym_match_expression] = STATE(1691), - [sym_while_expression] = STATE(1691), - [sym_loop_expression] = STATE(1691), - [sym_for_expression] = STATE(1691), - [sym_const_block] = STATE(1691), - [sym_closure_expression] = STATE(1691), + [STATE(365)] = { + [sym_bracketed_type] = STATE(3752), + [sym_generic_function] = STATE(1492), + [sym_generic_type_with_turbofish] = STATE(3039), + [sym__expression_except_range] = STATE(1409), + [sym__expression] = STATE(1944), + [sym_macro_invocation] = STATE(1529), + [sym_scoped_identifier] = STATE(1540), + [sym_scoped_type_identifier_in_expression_position] = STATE(3335), + [sym_range_expression] = STATE(1505), + [sym_unary_expression] = STATE(1492), + [sym_try_expression] = STATE(1492), + [sym_reference_expression] = STATE(1492), + [sym_binary_expression] = STATE(1492), + [sym_assignment_expression] = STATE(1492), + [sym_compound_assignment_expr] = STATE(1492), + [sym_type_cast_expression] = STATE(1492), + [sym_return_expression] = STATE(1492), + [sym_yield_expression] = STATE(1492), + [sym_call_expression] = STATE(1492), + [sym_array_expression] = STATE(1492), + [sym_parenthesized_expression] = STATE(1492), + [sym_tuple_expression] = STATE(1492), + [sym_unit_expression] = STATE(1492), + [sym_struct_expression] = STATE(1492), + [sym_if_expression] = STATE(1492), + [sym_match_expression] = STATE(1492), + [sym_while_expression] = STATE(1492), + [sym_loop_expression] = STATE(1492), + [sym_for_expression] = STATE(1492), + [sym_const_block] = STATE(1492), + [sym_closure_expression] = STATE(1492), [sym_closure_parameters] = STATE(229), - [sym_label] = STATE(3712), - [sym_break_expression] = STATE(1691), - [sym_continue_expression] = STATE(1691), - [sym_index_expression] = STATE(1691), - [sym_await_expression] = STATE(1691), - [sym_field_expression] = STATE(1671), - [sym_unsafe_block] = STATE(1691), - [sym_async_block] = STATE(1691), - [sym_gen_block] = STATE(1691), - [sym_try_block] = STATE(1691), - [sym_block] = STATE(1691), - [sym__literal] = STATE(1691), - [sym_string_literal] = STATE(1776), - [sym_raw_string_literal] = STATE(1776), - [sym_boolean_literal] = STATE(1776), - [sym_line_comment] = STATE(338), - [sym_block_comment] = STATE(338), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(495), - [anon_sym_LBRACK] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(979), - [anon_sym_u8] = ACTIONS(411), - [anon_sym_i8] = ACTIONS(411), - [anon_sym_u16] = ACTIONS(411), - [anon_sym_i16] = ACTIONS(411), - [anon_sym_u32] = ACTIONS(411), - [anon_sym_i32] = ACTIONS(411), - [anon_sym_u64] = ACTIONS(411), - [anon_sym_i64] = ACTIONS(411), - [anon_sym_u128] = ACTIONS(411), - [anon_sym_i128] = ACTIONS(411), - [anon_sym_isize] = ACTIONS(411), - [anon_sym_usize] = ACTIONS(411), - [anon_sym_f32] = ACTIONS(411), - [anon_sym_f64] = ACTIONS(411), - [anon_sym_bool] = ACTIONS(411), - [anon_sym_str] = ACTIONS(411), - [anon_sym_char] = ACTIONS(411), - [anon_sym_DASH] = ACTIONS(979), - [anon_sym_BANG] = ACTIONS(979), - [anon_sym_AMP] = ACTIONS(981), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1079), - [anon_sym_COLON_COLON] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(417), - [anon_sym_break] = ACTIONS(419), - [anon_sym_const] = ACTIONS(421), - [anon_sym_continue] = ACTIONS(423), - [anon_sym_default] = ACTIONS(425), - [anon_sym_for] = ACTIONS(427), - [anon_sym_gen] = ACTIONS(429), - [anon_sym_if] = ACTIONS(431), - [anon_sym_loop] = ACTIONS(433), - [anon_sym_match] = ACTIONS(435), - [anon_sym_return] = ACTIONS(437), - [anon_sym_static] = ACTIONS(439), - [anon_sym_union] = ACTIONS(425), - [anon_sym_unsafe] = ACTIONS(441), - [anon_sym_while] = ACTIONS(443), - [anon_sym_yield] = ACTIONS(445), - [anon_sym_move] = ACTIONS(447), - [anon_sym_try] = ACTIONS(449), - [sym_integer_literal] = ACTIONS(451), - [aux_sym_string_literal_token1] = ACTIONS(453), - [sym_char_literal] = ACTIONS(451), - [anon_sym_true] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(457), - [sym_super] = ACTIONS(459), - [sym_crate] = ACTIONS(459), - [sym_metavariable] = ACTIONS(461), - [sym__raw_string_literal_start] = ACTIONS(463), - [sym_float_literal] = ACTIONS(451), - }, - [STATE(339)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1825), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1520), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [sym_line_comment] = STATE(339), - [sym_block_comment] = STATE(339), - [sym_identifier] = ACTIONS(339), + [sym_label] = STATE(3689), + [sym_break_expression] = STATE(1492), + [sym_continue_expression] = STATE(1492), + [sym_index_expression] = STATE(1492), + [sym_await_expression] = STATE(1492), + [sym_field_expression] = STATE(1412), + [sym_unsafe_block] = STATE(1492), + [sym_async_block] = STATE(1492), + [sym_gen_block] = STATE(1492), + [sym_try_block] = STATE(1492), + [sym_block] = STATE(1492), + [sym__literal] = STATE(1492), + [sym_string_literal] = STATE(1530), + [sym_raw_string_literal] = STATE(1530), + [sym_boolean_literal] = STATE(1530), + [sym_line_comment] = STATE(365), + [sym_block_comment] = STATE(365), + [sym_identifier] = ACTIONS(344), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(348), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -55694,316 +58744,204 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), + [anon_sym_async] = ACTIONS(356), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(358), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), + [anon_sym_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(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(115), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [anon_sym_static] = ACTIONS(372), + [anon_sym_union] = ACTIONS(360), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [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(340)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3056), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1505), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1591), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [sym_line_comment] = STATE(340), - [sym_block_comment] = STATE(340), - [sym_identifier] = ACTIONS(467), + [STATE(366)] = { + [sym_bracketed_type] = STATE(3752), + [sym_generic_function] = STATE(1492), + [sym_generic_type_with_turbofish] = STATE(3085), + [sym__expression_except_range] = STATE(1409), + [sym__expression] = STATE(1859), + [sym_macro_invocation] = STATE(1529), + [sym_scoped_identifier] = STATE(1604), + [sym_scoped_type_identifier_in_expression_position] = STATE(3335), + [sym_range_expression] = STATE(1505), + [sym_unary_expression] = STATE(1492), + [sym_try_expression] = STATE(1492), + [sym_reference_expression] = STATE(1492), + [sym_binary_expression] = STATE(1492), + [sym_assignment_expression] = STATE(1492), + [sym_compound_assignment_expr] = STATE(1492), + [sym_type_cast_expression] = STATE(1492), + [sym_return_expression] = STATE(1492), + [sym_yield_expression] = STATE(1492), + [sym_call_expression] = STATE(1492), + [sym_array_expression] = STATE(1492), + [sym_parenthesized_expression] = STATE(1492), + [sym_tuple_expression] = STATE(1492), + [sym_unit_expression] = STATE(1492), + [sym_struct_expression] = STATE(1492), + [sym_if_expression] = STATE(1492), + [sym_match_expression] = STATE(1492), + [sym_while_expression] = STATE(1492), + [sym_loop_expression] = STATE(1492), + [sym_for_expression] = STATE(1492), + [sym_const_block] = STATE(1492), + [sym_closure_expression] = STATE(1492), + [sym_closure_parameters] = STATE(235), + [sym_label] = STATE(3689), + [sym_break_expression] = STATE(1492), + [sym_continue_expression] = STATE(1492), + [sym_index_expression] = STATE(1492), + [sym_await_expression] = STATE(1492), + [sym_field_expression] = STATE(1412), + [sym_unsafe_block] = STATE(1492), + [sym_async_block] = STATE(1492), + [sym_gen_block] = STATE(1492), + [sym_try_block] = STATE(1492), + [sym_block] = STATE(1492), + [sym__literal] = STATE(1492), + [sym_string_literal] = STATE(1530), + [sym_raw_string_literal] = STATE(1530), + [sym_boolean_literal] = STATE(1530), + [sym_line_comment] = STATE(366), + [sym_block_comment] = STATE(366), + [sym_identifier] = ACTIONS(470), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(901), - [anon_sym_u8] = ACTIONS(469), - [anon_sym_i8] = ACTIONS(469), - [anon_sym_u16] = ACTIONS(469), - [anon_sym_i16] = ACTIONS(469), - [anon_sym_u32] = ACTIONS(469), - [anon_sym_i32] = ACTIONS(469), - [anon_sym_u64] = ACTIONS(469), - [anon_sym_i64] = ACTIONS(469), - [anon_sym_u128] = ACTIONS(469), - [anon_sym_i128] = ACTIONS(469), - [anon_sym_isize] = ACTIONS(469), - [anon_sym_usize] = ACTIONS(469), - [anon_sym_f32] = ACTIONS(469), - [anon_sym_f64] = ACTIONS(469), - [anon_sym_bool] = ACTIONS(469), - [anon_sym_str] = ACTIONS(469), - [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(901), - [anon_sym_BANG] = ACTIONS(901), - [anon_sym_AMP] = ACTIONS(903), + [anon_sym_LBRACE] = ACTIONS(348), + [anon_sym_STAR] = ACTIONS(1196), + [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(1196), + [anon_sym_BANG] = ACTIONS(1196), + [anon_sym_AMP] = ACTIONS(1198), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1055), - [anon_sym_COLON_COLON] = ACTIONS(473), + [anon_sym_DOT_DOT] = ACTIONS(1394), + [anon_sym_COLON_COLON] = ACTIONS(476), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(477), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(477), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(489), - [sym_super] = ACTIONS(491), - [sym_crate] = ACTIONS(491), - [sym_metavariable] = ACTIONS(493), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), - }, - [STATE(341)] = { - [sym_attribute_item] = STATE(420), - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_self_parameter] = STATE(2843), - [sym_variadic_parameter] = STATE(2843), - [sym_parameter] = STATE(2843), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2734), - [sym_bracketed_type] = STATE(3644), - [sym_lifetime] = STATE(3011), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3299), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2550), - [sym_scoped_identifier] = STATE(2273), - [sym_scoped_type_identifier] = STATE(2154), - [sym_const_block] = STATE(2150), - [sym__pattern] = STATE(3345), - [sym_generic_pattern] = STATE(2150), - [sym_tuple_pattern] = STATE(2150), - [sym_slice_pattern] = STATE(2150), - [sym_tuple_struct_pattern] = STATE(2150), - [sym_struct_pattern] = STATE(2150), - [sym_remaining_field_pattern] = STATE(2150), - [sym_mut_pattern] = STATE(2150), - [sym_range_pattern] = STATE(2150), - [sym_ref_pattern] = STATE(2150), - [sym_captured_pattern] = STATE(2150), - [sym_reference_pattern] = STATE(2150), - [sym_or_pattern] = STATE(2150), - [sym__literal_pattern] = STATE(2076), - [sym_negative_literal] = STATE(2074), - [sym_string_literal] = STATE(2074), - [sym_raw_string_literal] = STATE(2074), - [sym_boolean_literal] = STATE(2074), - [sym_line_comment] = STATE(341), - [sym_block_comment] = STATE(341), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(1323), - [anon_sym_LPAREN] = ACTIONS(1325), - [anon_sym_RPAREN] = ACTIONS(1357), - [anon_sym_LBRACK] = ACTIONS(1233), - [anon_sym_STAR] = ACTIONS(1235), - [anon_sym_QMARK] = ACTIONS(1237), - [anon_sym_u8] = ACTIONS(1329), - [anon_sym_i8] = ACTIONS(1329), - [anon_sym_u16] = ACTIONS(1329), - [anon_sym_i16] = ACTIONS(1329), - [anon_sym_u32] = ACTIONS(1329), - [anon_sym_i32] = ACTIONS(1329), - [anon_sym_u64] = ACTIONS(1329), - [anon_sym_i64] = ACTIONS(1329), - [anon_sym_u128] = ACTIONS(1329), - [anon_sym_i128] = ACTIONS(1329), - [anon_sym_isize] = ACTIONS(1329), - [anon_sym_usize] = ACTIONS(1329), - [anon_sym_f32] = ACTIONS(1329), - [anon_sym_f64] = ACTIONS(1329), - [anon_sym_bool] = ACTIONS(1329), - [anon_sym_str] = ACTIONS(1329), - [anon_sym_char] = ACTIONS(1329), - [anon_sym_DASH] = ACTIONS(1241), - [anon_sym_BANG] = ACTIONS(1243), - [anon_sym_AMP] = ACTIONS(1331), - [anon_sym_PIPE] = ACTIONS(1247), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1359), - [anon_sym_DOT_DOT] = ACTIONS(1251), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1253), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1255), - [anon_sym_COMMA] = ACTIONS(1361), - [anon_sym_COLON_COLON] = ACTIONS(1337), - [anon_sym_POUND] = ACTIONS(1261), - [anon_sym_SQUOTE] = ACTIONS(1263), - [anon_sym_async] = ACTIONS(1265), - [anon_sym_const] = ACTIONS(1267), - [anon_sym_default] = ACTIONS(1339), - [anon_sym_fn] = ACTIONS(1271), - [anon_sym_for] = ACTIONS(1273), - [anon_sym_gen] = ACTIONS(1341), - [anon_sym_impl] = ACTIONS(1277), - [anon_sym_union] = ACTIONS(1341), - [anon_sym_unsafe] = ACTIONS(1265), - [anon_sym_extern] = ACTIONS(1279), - [anon_sym_ref] = ACTIONS(1281), - [anon_sym_dyn] = ACTIONS(1283), - [sym_mutable_specifier] = ACTIONS(1285), - [sym_integer_literal] = ACTIONS(1287), - [aux_sym_string_literal_token1] = ACTIONS(1289), - [sym_char_literal] = ACTIONS(1287), - [anon_sym_true] = ACTIONS(1291), - [anon_sym_false] = ACTIONS(1291), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1343), - [sym_super] = ACTIONS(1345), - [sym_crate] = ACTIONS(1345), - [sym_metavariable] = ACTIONS(1347), - [sym__raw_string_literal_start] = ACTIONS(1299), - [sym_float_literal] = ACTIONS(1287), + [anon_sym_async] = ACTIONS(356), + [anon_sym_break] = ACTIONS(478), + [anon_sym_const] = ACTIONS(358), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(480), + [anon_sym_for] = ACTIONS(362), + [anon_sym_gen] = ACTIONS(482), + [anon_sym_if] = ACTIONS(366), + [anon_sym_loop] = ACTIONS(368), + [anon_sym_match] = ACTIONS(370), + [anon_sym_return] = ACTIONS(484), + [anon_sym_static] = ACTIONS(486), + [anon_sym_union] = ACTIONS(480), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [anon_sym_yield] = ACTIONS(488), + [anon_sym_move] = ACTIONS(490), + [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(492), + [sym_super] = ACTIONS(494), + [sym_crate] = ACTIONS(494), + [sym_metavariable] = ACTIONS(496), + [sym__raw_string_literal_start] = ACTIONS(119), + [sym_float_literal] = ACTIONS(99), }, - [STATE(342)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1931), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1520), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [sym_line_comment] = STATE(342), - [sym_block_comment] = STATE(342), - [sym_identifier] = ACTIONS(339), + [STATE(367)] = { + [sym_bracketed_type] = STATE(3752), + [sym_generic_function] = STATE(1492), + [sym_generic_type_with_turbofish] = STATE(3039), + [sym__expression_except_range] = STATE(1409), + [sym__expression] = STATE(1924), + [sym_macro_invocation] = STATE(1529), + [sym_scoped_identifier] = STATE(1540), + [sym_scoped_type_identifier_in_expression_position] = STATE(3335), + [sym_range_expression] = STATE(1505), + [sym_unary_expression] = STATE(1492), + [sym_try_expression] = STATE(1492), + [sym_reference_expression] = STATE(1492), + [sym_binary_expression] = STATE(1492), + [sym_assignment_expression] = STATE(1492), + [sym_compound_assignment_expr] = STATE(1492), + [sym_type_cast_expression] = STATE(1492), + [sym_return_expression] = STATE(1492), + [sym_yield_expression] = STATE(1492), + [sym_call_expression] = STATE(1492), + [sym_array_expression] = STATE(1492), + [sym_parenthesized_expression] = STATE(1492), + [sym_tuple_expression] = STATE(1492), + [sym_unit_expression] = STATE(1492), + [sym_struct_expression] = STATE(1492), + [sym_if_expression] = STATE(1492), + [sym_match_expression] = STATE(1492), + [sym_while_expression] = STATE(1492), + [sym_loop_expression] = STATE(1492), + [sym_for_expression] = STATE(1492), + [sym_const_block] = STATE(1492), + [sym_closure_expression] = STATE(1492), + [sym_closure_parameters] = STATE(229), + [sym_label] = STATE(3689), + [sym_break_expression] = STATE(1492), + [sym_continue_expression] = STATE(1492), + [sym_index_expression] = STATE(1492), + [sym_await_expression] = STATE(1492), + [sym_field_expression] = STATE(1412), + [sym_unsafe_block] = STATE(1492), + [sym_async_block] = STATE(1492), + [sym_gen_block] = STATE(1492), + [sym_try_block] = STATE(1492), + [sym_block] = STATE(1492), + [sym__literal] = STATE(1492), + [sym_string_literal] = STATE(1530), + [sym_raw_string_literal] = STATE(1530), + [sym_boolean_literal] = STATE(1530), + [sym_line_comment] = STATE(367), + [sym_block_comment] = STATE(367), + [sym_identifier] = ACTIONS(344), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(348), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -56030,92 +58968,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), + [anon_sym_async] = ACTIONS(356), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(358), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), + [anon_sym_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(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(115), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [anon_sym_static] = ACTIONS(372), + [anon_sym_union] = ACTIONS(360), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [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(343)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1937), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1520), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [sym_line_comment] = STATE(343), - [sym_block_comment] = STATE(343), - [sym_identifier] = ACTIONS(339), + [STATE(368)] = { + [sym_bracketed_type] = STATE(3752), + [sym_generic_function] = STATE(1492), + [sym_generic_type_with_turbofish] = STATE(3039), + [sym__expression_except_range] = STATE(1409), + [sym__expression] = STATE(1925), + [sym_macro_invocation] = STATE(1529), + [sym_scoped_identifier] = STATE(1540), + [sym_scoped_type_identifier_in_expression_position] = STATE(3335), + [sym_range_expression] = STATE(1505), + [sym_unary_expression] = STATE(1492), + [sym_try_expression] = STATE(1492), + [sym_reference_expression] = STATE(1492), + [sym_binary_expression] = STATE(1492), + [sym_assignment_expression] = STATE(1492), + [sym_compound_assignment_expr] = STATE(1492), + [sym_type_cast_expression] = STATE(1492), + [sym_return_expression] = STATE(1492), + [sym_yield_expression] = STATE(1492), + [sym_call_expression] = STATE(1492), + [sym_array_expression] = STATE(1492), + [sym_parenthesized_expression] = STATE(1492), + [sym_tuple_expression] = STATE(1492), + [sym_unit_expression] = STATE(1492), + [sym_struct_expression] = STATE(1492), + [sym_if_expression] = STATE(1492), + [sym_match_expression] = STATE(1492), + [sym_while_expression] = STATE(1492), + [sym_loop_expression] = STATE(1492), + [sym_for_expression] = STATE(1492), + [sym_const_block] = STATE(1492), + [sym_closure_expression] = STATE(1492), + [sym_closure_parameters] = STATE(229), + [sym_label] = STATE(3689), + [sym_break_expression] = STATE(1492), + [sym_continue_expression] = STATE(1492), + [sym_index_expression] = STATE(1492), + [sym_await_expression] = STATE(1492), + [sym_field_expression] = STATE(1412), + [sym_unsafe_block] = STATE(1492), + [sym_async_block] = STATE(1492), + [sym_gen_block] = STATE(1492), + [sym_try_block] = STATE(1492), + [sym_block] = STATE(1492), + [sym__literal] = STATE(1492), + [sym_string_literal] = STATE(1530), + [sym_raw_string_literal] = STATE(1530), + [sym_boolean_literal] = STATE(1530), + [sym_line_comment] = STATE(368), + [sym_block_comment] = STATE(368), + [sym_identifier] = ACTIONS(344), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(348), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -56142,316 +59080,204 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), + [anon_sym_async] = ACTIONS(356), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(358), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), + [anon_sym_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(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(115), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), - }, - [STATE(344)] = { - [sym_attribute_item] = STATE(421), - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_self_parameter] = STATE(2950), - [sym_variadic_parameter] = STATE(2950), - [sym_parameter] = STATE(2950), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2754), - [sym_bracketed_type] = STATE(3652), - [sym_lifetime] = STATE(3011), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3382), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2517), - [sym_scoped_identifier] = STATE(2191), - [sym_scoped_type_identifier] = STATE(2154), - [sym_const_block] = STATE(2150), - [sym__pattern] = STATE(2551), - [sym_generic_pattern] = STATE(2150), - [sym_tuple_pattern] = STATE(2150), - [sym_slice_pattern] = STATE(2150), - [sym_tuple_struct_pattern] = STATE(2150), - [sym_struct_pattern] = STATE(2150), - [sym_remaining_field_pattern] = STATE(2150), - [sym_mut_pattern] = STATE(2150), - [sym_range_pattern] = STATE(2150), - [sym_ref_pattern] = STATE(2150), - [sym_captured_pattern] = STATE(2150), - [sym_reference_pattern] = STATE(2150), - [sym_or_pattern] = STATE(2150), - [sym__literal_pattern] = STATE(2076), - [sym_negative_literal] = STATE(2074), - [sym_string_literal] = STATE(2074), - [sym_raw_string_literal] = STATE(2074), - [sym_boolean_literal] = STATE(2074), - [sym_line_comment] = STATE(344), - [sym_block_comment] = STATE(344), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(1227), - [anon_sym_LPAREN] = ACTIONS(1229), - [anon_sym_RPAREN] = ACTIONS(1363), - [anon_sym_LBRACK] = ACTIONS(1233), - [anon_sym_STAR] = ACTIONS(1235), - [anon_sym_QMARK] = ACTIONS(1237), - [anon_sym_u8] = ACTIONS(1239), - [anon_sym_i8] = ACTIONS(1239), - [anon_sym_u16] = ACTIONS(1239), - [anon_sym_i16] = ACTIONS(1239), - [anon_sym_u32] = ACTIONS(1239), - [anon_sym_i32] = ACTIONS(1239), - [anon_sym_u64] = ACTIONS(1239), - [anon_sym_i64] = ACTIONS(1239), - [anon_sym_u128] = ACTIONS(1239), - [anon_sym_i128] = ACTIONS(1239), - [anon_sym_isize] = ACTIONS(1239), - [anon_sym_usize] = ACTIONS(1239), - [anon_sym_f32] = ACTIONS(1239), - [anon_sym_f64] = ACTIONS(1239), - [anon_sym_bool] = ACTIONS(1239), - [anon_sym_str] = ACTIONS(1239), - [anon_sym_char] = ACTIONS(1239), - [anon_sym_DASH] = ACTIONS(1241), - [anon_sym_BANG] = ACTIONS(1243), - [anon_sym_AMP] = ACTIONS(1245), - [anon_sym_PIPE] = ACTIONS(1247), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1249), - [anon_sym_DOT_DOT] = ACTIONS(1251), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1253), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1255), - [anon_sym_COMMA] = ACTIONS(1365), - [anon_sym_COLON_COLON] = ACTIONS(1259), - [anon_sym_POUND] = ACTIONS(1261), - [anon_sym_SQUOTE] = ACTIONS(1263), - [anon_sym_async] = ACTIONS(1265), - [anon_sym_const] = ACTIONS(1267), - [anon_sym_default] = ACTIONS(1269), - [anon_sym_fn] = ACTIONS(1271), - [anon_sym_for] = ACTIONS(1273), - [anon_sym_gen] = ACTIONS(1275), - [anon_sym_impl] = ACTIONS(1277), - [anon_sym_union] = ACTIONS(1275), - [anon_sym_unsafe] = ACTIONS(1265), - [anon_sym_extern] = ACTIONS(1279), - [anon_sym_ref] = ACTIONS(1281), - [anon_sym_dyn] = ACTIONS(1283), - [sym_mutable_specifier] = ACTIONS(1285), - [sym_integer_literal] = ACTIONS(1287), - [aux_sym_string_literal_token1] = ACTIONS(1289), - [sym_char_literal] = ACTIONS(1287), - [anon_sym_true] = ACTIONS(1291), - [anon_sym_false] = ACTIONS(1291), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1293), - [sym_super] = ACTIONS(1295), - [sym_crate] = ACTIONS(1295), - [sym_metavariable] = ACTIONS(1297), - [sym__raw_string_literal_start] = ACTIONS(1299), - [sym_float_literal] = ACTIONS(1287), + [anon_sym_static] = ACTIONS(372), + [anon_sym_union] = ACTIONS(360), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [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(345)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3056), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1505), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1591), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(244), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [sym_line_comment] = STATE(345), - [sym_block_comment] = STATE(345), - [sym_identifier] = ACTIONS(467), + [STATE(369)] = { + [sym_bracketed_type] = STATE(3752), + [sym_generic_function] = STATE(1492), + [sym_generic_type_with_turbofish] = STATE(3085), + [sym__expression_except_range] = STATE(1409), + [sym__expression] = STATE(1619), + [sym_macro_invocation] = STATE(1529), + [sym_scoped_identifier] = STATE(1604), + [sym_scoped_type_identifier_in_expression_position] = STATE(3335), + [sym_range_expression] = STATE(1505), + [sym_unary_expression] = STATE(1492), + [sym_try_expression] = STATE(1492), + [sym_reference_expression] = STATE(1492), + [sym_binary_expression] = STATE(1492), + [sym_assignment_expression] = STATE(1492), + [sym_compound_assignment_expr] = STATE(1492), + [sym_type_cast_expression] = STATE(1492), + [sym_return_expression] = STATE(1492), + [sym_yield_expression] = STATE(1492), + [sym_call_expression] = STATE(1492), + [sym_array_expression] = STATE(1492), + [sym_parenthesized_expression] = STATE(1492), + [sym_tuple_expression] = STATE(1492), + [sym_unit_expression] = STATE(1492), + [sym_struct_expression] = STATE(1492), + [sym_if_expression] = STATE(1492), + [sym_match_expression] = STATE(1492), + [sym_while_expression] = STATE(1492), + [sym_loop_expression] = STATE(1492), + [sym_for_expression] = STATE(1492), + [sym_const_block] = STATE(1492), + [sym_closure_expression] = STATE(1492), + [sym_closure_parameters] = STATE(221), + [sym_label] = STATE(3689), + [sym_break_expression] = STATE(1492), + [sym_continue_expression] = STATE(1492), + [sym_index_expression] = STATE(1492), + [sym_await_expression] = STATE(1492), + [sym_field_expression] = STATE(1412), + [sym_unsafe_block] = STATE(1492), + [sym_async_block] = STATE(1492), + [sym_gen_block] = STATE(1492), + [sym_try_block] = STATE(1492), + [sym_block] = STATE(1492), + [sym__literal] = STATE(1492), + [sym_string_literal] = STATE(1530), + [sym_raw_string_literal] = STATE(1530), + [sym_boolean_literal] = STATE(1530), + [sym_line_comment] = STATE(369), + [sym_block_comment] = STATE(369), + [sym_identifier] = ACTIONS(470), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1073), - [anon_sym_u8] = ACTIONS(469), - [anon_sym_i8] = ACTIONS(469), - [anon_sym_u16] = ACTIONS(469), - [anon_sym_i16] = ACTIONS(469), - [anon_sym_u32] = ACTIONS(469), - [anon_sym_i32] = ACTIONS(469), - [anon_sym_u64] = ACTIONS(469), - [anon_sym_i64] = ACTIONS(469), - [anon_sym_u128] = ACTIONS(469), - [anon_sym_i128] = ACTIONS(469), - [anon_sym_isize] = ACTIONS(469), - [anon_sym_usize] = ACTIONS(469), - [anon_sym_f32] = ACTIONS(469), - [anon_sym_f64] = ACTIONS(469), - [anon_sym_bool] = ACTIONS(469), - [anon_sym_str] = ACTIONS(469), - [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(1073), - [anon_sym_BANG] = ACTIONS(1073), - [anon_sym_AMP] = ACTIONS(1075), + [anon_sym_LBRACE] = ACTIONS(348), + [anon_sym_STAR] = ACTIONS(978), + [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(978), + [anon_sym_BANG] = ACTIONS(978), + [anon_sym_AMP] = ACTIONS(980), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1077), - [anon_sym_COLON_COLON] = ACTIONS(473), + [anon_sym_DOT_DOT] = ACTIONS(982), + [anon_sym_COLON_COLON] = ACTIONS(476), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(475), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(477), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(479), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(481), - [anon_sym_static] = ACTIONS(483), - [anon_sym_union] = ACTIONS(477), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(485), - [anon_sym_move] = ACTIONS(487), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(489), - [sym_super] = ACTIONS(491), - [sym_crate] = ACTIONS(491), - [sym_metavariable] = ACTIONS(493), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [anon_sym_async] = ACTIONS(356), + [anon_sym_break] = ACTIONS(510), + [anon_sym_const] = ACTIONS(358), + [anon_sym_continue] = ACTIONS(512), + [anon_sym_default] = ACTIONS(480), + [anon_sym_for] = ACTIONS(362), + [anon_sym_gen] = ACTIONS(514), + [anon_sym_if] = ACTIONS(366), + [anon_sym_loop] = ACTIONS(368), + [anon_sym_match] = ACTIONS(370), + [anon_sym_return] = ACTIONS(516), + [anon_sym_static] = ACTIONS(518), + [anon_sym_union] = ACTIONS(480), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [anon_sym_yield] = ACTIONS(520), + [anon_sym_move] = ACTIONS(522), + [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(492), + [sym_super] = ACTIONS(494), + [sym_crate] = ACTIONS(494), + [sym_metavariable] = ACTIONS(496), + [sym__raw_string_literal_start] = ACTIONS(119), + [sym_float_literal] = ACTIONS(99), }, - [STATE(346)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1938), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1520), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [sym_line_comment] = STATE(346), - [sym_block_comment] = STATE(346), - [sym_identifier] = ACTIONS(339), + [STATE(370)] = { + [sym_bracketed_type] = STATE(3752), + [sym_generic_function] = STATE(1492), + [sym_generic_type_with_turbofish] = STATE(3039), + [sym__expression_except_range] = STATE(1409), + [sym__expression] = STATE(1867), + [sym_macro_invocation] = STATE(1529), + [sym_scoped_identifier] = STATE(1540), + [sym_scoped_type_identifier_in_expression_position] = STATE(3335), + [sym_range_expression] = STATE(1505), + [sym_unary_expression] = STATE(1492), + [sym_try_expression] = STATE(1492), + [sym_reference_expression] = STATE(1492), + [sym_binary_expression] = STATE(1492), + [sym_assignment_expression] = STATE(1492), + [sym_compound_assignment_expr] = STATE(1492), + [sym_type_cast_expression] = STATE(1492), + [sym_return_expression] = STATE(1492), + [sym_yield_expression] = STATE(1492), + [sym_call_expression] = STATE(1492), + [sym_array_expression] = STATE(1492), + [sym_parenthesized_expression] = STATE(1492), + [sym_tuple_expression] = STATE(1492), + [sym_unit_expression] = STATE(1492), + [sym_struct_expression] = STATE(1492), + [sym_if_expression] = STATE(1492), + [sym_match_expression] = STATE(1492), + [sym_while_expression] = STATE(1492), + [sym_loop_expression] = STATE(1492), + [sym_for_expression] = STATE(1492), + [sym_const_block] = STATE(1492), + [sym_closure_expression] = STATE(1492), + [sym_closure_parameters] = STATE(229), + [sym_label] = STATE(3689), + [sym_break_expression] = STATE(1492), + [sym_continue_expression] = STATE(1492), + [sym_index_expression] = STATE(1492), + [sym_await_expression] = STATE(1492), + [sym_field_expression] = STATE(1412), + [sym_unsafe_block] = STATE(1492), + [sym_async_block] = STATE(1492), + [sym_gen_block] = STATE(1492), + [sym_try_block] = STATE(1492), + [sym_block] = STATE(1492), + [sym__literal] = STATE(1492), + [sym_string_literal] = STATE(1530), + [sym_raw_string_literal] = STATE(1530), + [sym_boolean_literal] = STATE(1530), + [sym_line_comment] = STATE(370), + [sym_block_comment] = STATE(370), + [sym_identifier] = ACTIONS(344), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(348), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -56478,92 +59304,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), + [anon_sym_async] = ACTIONS(356), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(358), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), + [anon_sym_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(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(115), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [anon_sym_static] = ACTIONS(372), + [anon_sym_union] = ACTIONS(360), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [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(347)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1939), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1520), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [sym_line_comment] = STATE(347), - [sym_block_comment] = STATE(347), - [sym_identifier] = ACTIONS(339), + [STATE(371)] = { + [sym_bracketed_type] = STATE(3752), + [sym_generic_function] = STATE(1492), + [sym_generic_type_with_turbofish] = STATE(3039), + [sym__expression_except_range] = STATE(1409), + [sym__expression] = STATE(1725), + [sym_macro_invocation] = STATE(1529), + [sym_scoped_identifier] = STATE(1540), + [sym_scoped_type_identifier_in_expression_position] = STATE(3335), + [sym_range_expression] = STATE(1505), + [sym_unary_expression] = STATE(1492), + [sym_try_expression] = STATE(1492), + [sym_reference_expression] = STATE(1492), + [sym_binary_expression] = STATE(1492), + [sym_assignment_expression] = STATE(1492), + [sym_compound_assignment_expr] = STATE(1492), + [sym_type_cast_expression] = STATE(1492), + [sym_return_expression] = STATE(1492), + [sym_yield_expression] = STATE(1492), + [sym_call_expression] = STATE(1492), + [sym_array_expression] = STATE(1492), + [sym_parenthesized_expression] = STATE(1492), + [sym_tuple_expression] = STATE(1492), + [sym_unit_expression] = STATE(1492), + [sym_struct_expression] = STATE(1492), + [sym_if_expression] = STATE(1492), + [sym_match_expression] = STATE(1492), + [sym_while_expression] = STATE(1492), + [sym_loop_expression] = STATE(1492), + [sym_for_expression] = STATE(1492), + [sym_const_block] = STATE(1492), + [sym_closure_expression] = STATE(1492), + [sym_closure_parameters] = STATE(229), + [sym_label] = STATE(3689), + [sym_break_expression] = STATE(1492), + [sym_continue_expression] = STATE(1492), + [sym_index_expression] = STATE(1492), + [sym_await_expression] = STATE(1492), + [sym_field_expression] = STATE(1412), + [sym_unsafe_block] = STATE(1492), + [sym_async_block] = STATE(1492), + [sym_gen_block] = STATE(1492), + [sym_try_block] = STATE(1492), + [sym_block] = STATE(1492), + [sym__literal] = STATE(1492), + [sym_string_literal] = STATE(1530), + [sym_raw_string_literal] = STATE(1530), + [sym_boolean_literal] = STATE(1530), + [sym_line_comment] = STATE(371), + [sym_block_comment] = STATE(371), + [sym_identifier] = ACTIONS(344), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(348), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -56590,428 +59416,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), + [anon_sym_async] = ACTIONS(356), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(358), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), + [anon_sym_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(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(115), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), - }, - [STATE(348)] = { - [sym_attribute_item] = STATE(422), - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_self_parameter] = STATE(2993), - [sym_variadic_parameter] = STATE(2993), - [sym_parameter] = STATE(2993), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2577), - [sym_bracketed_type] = STATE(3644), - [sym_lifetime] = STATE(3011), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3299), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2550), - [sym_scoped_identifier] = STATE(2273), - [sym_scoped_type_identifier] = STATE(2154), - [sym_const_block] = STATE(2150), - [sym__pattern] = STATE(3345), - [sym_generic_pattern] = STATE(2150), - [sym_tuple_pattern] = STATE(2150), - [sym_slice_pattern] = STATE(2150), - [sym_tuple_struct_pattern] = STATE(2150), - [sym_struct_pattern] = STATE(2150), - [sym_remaining_field_pattern] = STATE(2150), - [sym_mut_pattern] = STATE(2150), - [sym_range_pattern] = STATE(2150), - [sym_ref_pattern] = STATE(2150), - [sym_captured_pattern] = STATE(2150), - [sym_reference_pattern] = STATE(2150), - [sym_or_pattern] = STATE(2150), - [sym__literal_pattern] = STATE(2076), - [sym_negative_literal] = STATE(2074), - [sym_string_literal] = STATE(2074), - [sym_raw_string_literal] = STATE(2074), - [sym_boolean_literal] = STATE(2074), - [sym_line_comment] = STATE(348), - [sym_block_comment] = STATE(348), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(1323), - [anon_sym_LPAREN] = ACTIONS(1325), - [anon_sym_RPAREN] = ACTIONS(1367), - [anon_sym_LBRACK] = ACTIONS(1233), - [anon_sym_STAR] = ACTIONS(1235), - [anon_sym_QMARK] = ACTIONS(1237), - [anon_sym_u8] = ACTIONS(1329), - [anon_sym_i8] = ACTIONS(1329), - [anon_sym_u16] = ACTIONS(1329), - [anon_sym_i16] = ACTIONS(1329), - [anon_sym_u32] = ACTIONS(1329), - [anon_sym_i32] = ACTIONS(1329), - [anon_sym_u64] = ACTIONS(1329), - [anon_sym_i64] = ACTIONS(1329), - [anon_sym_u128] = ACTIONS(1329), - [anon_sym_i128] = ACTIONS(1329), - [anon_sym_isize] = ACTIONS(1329), - [anon_sym_usize] = ACTIONS(1329), - [anon_sym_f32] = ACTIONS(1329), - [anon_sym_f64] = ACTIONS(1329), - [anon_sym_bool] = ACTIONS(1329), - [anon_sym_str] = ACTIONS(1329), - [anon_sym_char] = ACTIONS(1329), - [anon_sym_DASH] = ACTIONS(1241), - [anon_sym_BANG] = ACTIONS(1243), - [anon_sym_AMP] = ACTIONS(1331), - [anon_sym_PIPE] = ACTIONS(1247), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1369), - [anon_sym_DOT_DOT] = ACTIONS(1251), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1253), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1255), - [anon_sym_COMMA] = ACTIONS(1371), - [anon_sym_COLON_COLON] = ACTIONS(1337), - [anon_sym_POUND] = ACTIONS(1261), - [anon_sym_SQUOTE] = ACTIONS(1263), - [anon_sym_async] = ACTIONS(1265), - [anon_sym_const] = ACTIONS(1267), - [anon_sym_default] = ACTIONS(1339), - [anon_sym_fn] = ACTIONS(1271), - [anon_sym_for] = ACTIONS(1273), - [anon_sym_gen] = ACTIONS(1341), - [anon_sym_impl] = ACTIONS(1277), - [anon_sym_union] = ACTIONS(1341), - [anon_sym_unsafe] = ACTIONS(1265), - [anon_sym_extern] = ACTIONS(1279), - [anon_sym_ref] = ACTIONS(1281), - [anon_sym_dyn] = ACTIONS(1283), - [sym_mutable_specifier] = ACTIONS(1285), - [sym_integer_literal] = ACTIONS(1287), - [aux_sym_string_literal_token1] = ACTIONS(1289), - [sym_char_literal] = ACTIONS(1287), - [anon_sym_true] = ACTIONS(1291), - [anon_sym_false] = ACTIONS(1291), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1343), - [sym_super] = ACTIONS(1345), - [sym_crate] = ACTIONS(1345), - [sym_metavariable] = ACTIONS(1347), - [sym__raw_string_literal_start] = ACTIONS(1299), - [sym_float_literal] = ACTIONS(1287), - }, - [STATE(349)] = { - [sym_attribute_item] = STATE(421), - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_self_parameter] = STATE(2950), - [sym_variadic_parameter] = STATE(2950), - [sym_parameter] = STATE(2950), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2754), - [sym_bracketed_type] = STATE(3652), - [sym_lifetime] = STATE(3011), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3382), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2517), - [sym_scoped_identifier] = STATE(2191), - [sym_scoped_type_identifier] = STATE(2154), - [sym_const_block] = STATE(2150), - [sym__pattern] = STATE(2551), - [sym_generic_pattern] = STATE(2150), - [sym_tuple_pattern] = STATE(2150), - [sym_slice_pattern] = STATE(2150), - [sym_tuple_struct_pattern] = STATE(2150), - [sym_struct_pattern] = STATE(2150), - [sym_remaining_field_pattern] = STATE(2150), - [sym_mut_pattern] = STATE(2150), - [sym_range_pattern] = STATE(2150), - [sym_ref_pattern] = STATE(2150), - [sym_captured_pattern] = STATE(2150), - [sym_reference_pattern] = STATE(2150), - [sym_or_pattern] = STATE(2150), - [sym__literal_pattern] = STATE(2076), - [sym_negative_literal] = STATE(2074), - [sym_string_literal] = STATE(2074), - [sym_raw_string_literal] = STATE(2074), - [sym_boolean_literal] = STATE(2074), - [sym_line_comment] = STATE(349), - [sym_block_comment] = STATE(349), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(1227), - [anon_sym_LPAREN] = ACTIONS(1229), - [anon_sym_RPAREN] = ACTIONS(1373), - [anon_sym_LBRACK] = ACTIONS(1233), - [anon_sym_STAR] = ACTIONS(1235), - [anon_sym_QMARK] = ACTIONS(1237), - [anon_sym_u8] = ACTIONS(1239), - [anon_sym_i8] = ACTIONS(1239), - [anon_sym_u16] = ACTIONS(1239), - [anon_sym_i16] = ACTIONS(1239), - [anon_sym_u32] = ACTIONS(1239), - [anon_sym_i32] = ACTIONS(1239), - [anon_sym_u64] = ACTIONS(1239), - [anon_sym_i64] = ACTIONS(1239), - [anon_sym_u128] = ACTIONS(1239), - [anon_sym_i128] = ACTIONS(1239), - [anon_sym_isize] = ACTIONS(1239), - [anon_sym_usize] = ACTIONS(1239), - [anon_sym_f32] = ACTIONS(1239), - [anon_sym_f64] = ACTIONS(1239), - [anon_sym_bool] = ACTIONS(1239), - [anon_sym_str] = ACTIONS(1239), - [anon_sym_char] = ACTIONS(1239), - [anon_sym_DASH] = ACTIONS(1241), - [anon_sym_BANG] = ACTIONS(1243), - [anon_sym_AMP] = ACTIONS(1245), - [anon_sym_PIPE] = ACTIONS(1247), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1249), - [anon_sym_DOT_DOT] = ACTIONS(1251), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1253), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1255), - [anon_sym_COMMA] = ACTIONS(1375), - [anon_sym_COLON_COLON] = ACTIONS(1259), - [anon_sym_POUND] = ACTIONS(1261), - [anon_sym_SQUOTE] = ACTIONS(1263), - [anon_sym_async] = ACTIONS(1265), - [anon_sym_const] = ACTIONS(1267), - [anon_sym_default] = ACTIONS(1269), - [anon_sym_fn] = ACTIONS(1271), - [anon_sym_for] = ACTIONS(1273), - [anon_sym_gen] = ACTIONS(1275), - [anon_sym_impl] = ACTIONS(1277), - [anon_sym_union] = ACTIONS(1275), - [anon_sym_unsafe] = ACTIONS(1265), - [anon_sym_extern] = ACTIONS(1279), - [anon_sym_ref] = ACTIONS(1281), - [anon_sym_dyn] = ACTIONS(1283), - [sym_mutable_specifier] = ACTIONS(1285), - [sym_integer_literal] = ACTIONS(1287), - [aux_sym_string_literal_token1] = ACTIONS(1289), - [sym_char_literal] = ACTIONS(1287), - [anon_sym_true] = ACTIONS(1291), - [anon_sym_false] = ACTIONS(1291), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1293), - [sym_super] = ACTIONS(1295), - [sym_crate] = ACTIONS(1295), - [sym_metavariable] = ACTIONS(1297), - [sym__raw_string_literal_start] = ACTIONS(1299), - [sym_float_literal] = ACTIONS(1287), - }, - [STATE(350)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3056), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1899), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1591), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [sym_line_comment] = STATE(350), - [sym_block_comment] = STATE(350), - [sym_identifier] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(901), - [anon_sym_u8] = ACTIONS(469), - [anon_sym_i8] = ACTIONS(469), - [anon_sym_u16] = ACTIONS(469), - [anon_sym_i16] = ACTIONS(469), - [anon_sym_u32] = ACTIONS(469), - [anon_sym_i32] = ACTIONS(469), - [anon_sym_u64] = ACTIONS(469), - [anon_sym_i64] = ACTIONS(469), - [anon_sym_u128] = ACTIONS(469), - [anon_sym_i128] = ACTIONS(469), - [anon_sym_isize] = ACTIONS(469), - [anon_sym_usize] = ACTIONS(469), - [anon_sym_f32] = ACTIONS(469), - [anon_sym_f64] = ACTIONS(469), - [anon_sym_bool] = ACTIONS(469), - [anon_sym_str] = ACTIONS(469), - [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(901), - [anon_sym_BANG] = ACTIONS(901), - [anon_sym_AMP] = ACTIONS(903), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(905), - [anon_sym_COLON_COLON] = ACTIONS(473), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(477), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(477), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(489), - [sym_super] = ACTIONS(491), - [sym_crate] = ACTIONS(491), - [sym_metavariable] = ACTIONS(493), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [anon_sym_static] = ACTIONS(372), + [anon_sym_union] = ACTIONS(360), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [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(351)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1702), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1520), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [sym_line_comment] = STATE(351), - [sym_block_comment] = STATE(351), - [sym_identifier] = ACTIONS(339), + [STATE(372)] = { + [sym_bracketed_type] = STATE(3752), + [sym_generic_function] = STATE(1492), + [sym_generic_type_with_turbofish] = STATE(3039), + [sym__expression_except_range] = STATE(1409), + [sym__expression] = STATE(1927), + [sym_macro_invocation] = STATE(1529), + [sym_scoped_identifier] = STATE(1540), + [sym_scoped_type_identifier_in_expression_position] = STATE(3335), + [sym_range_expression] = STATE(1505), + [sym_unary_expression] = STATE(1492), + [sym_try_expression] = STATE(1492), + [sym_reference_expression] = STATE(1492), + [sym_binary_expression] = STATE(1492), + [sym_assignment_expression] = STATE(1492), + [sym_compound_assignment_expr] = STATE(1492), + [sym_type_cast_expression] = STATE(1492), + [sym_return_expression] = STATE(1492), + [sym_yield_expression] = STATE(1492), + [sym_call_expression] = STATE(1492), + [sym_array_expression] = STATE(1492), + [sym_parenthesized_expression] = STATE(1492), + [sym_tuple_expression] = STATE(1492), + [sym_unit_expression] = STATE(1492), + [sym_struct_expression] = STATE(1492), + [sym_if_expression] = STATE(1492), + [sym_match_expression] = STATE(1492), + [sym_while_expression] = STATE(1492), + [sym_loop_expression] = STATE(1492), + [sym_for_expression] = STATE(1492), + [sym_const_block] = STATE(1492), + [sym_closure_expression] = STATE(1492), + [sym_closure_parameters] = STATE(229), + [sym_label] = STATE(3689), + [sym_break_expression] = STATE(1492), + [sym_continue_expression] = STATE(1492), + [sym_index_expression] = STATE(1492), + [sym_await_expression] = STATE(1492), + [sym_field_expression] = STATE(1412), + [sym_unsafe_block] = STATE(1492), + [sym_async_block] = STATE(1492), + [sym_gen_block] = STATE(1492), + [sym_try_block] = STATE(1492), + [sym_block] = STATE(1492), + [sym__literal] = STATE(1492), + [sym_string_literal] = STATE(1530), + [sym_raw_string_literal] = STATE(1530), + [sym_boolean_literal] = STATE(1530), + [sym_line_comment] = STATE(372), + [sym_block_comment] = STATE(372), + [sym_identifier] = ACTIONS(344), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(348), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -57038,204 +59528,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), + [anon_sym_async] = ACTIONS(356), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(358), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), + [anon_sym_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(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(115), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), - }, - [STATE(352)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3056), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1811), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1591), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(244), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [sym_line_comment] = STATE(352), - [sym_block_comment] = STATE(352), - [sym_identifier] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1073), - [anon_sym_u8] = ACTIONS(469), - [anon_sym_i8] = ACTIONS(469), - [anon_sym_u16] = ACTIONS(469), - [anon_sym_i16] = ACTIONS(469), - [anon_sym_u32] = ACTIONS(469), - [anon_sym_i32] = ACTIONS(469), - [anon_sym_u64] = ACTIONS(469), - [anon_sym_i64] = ACTIONS(469), - [anon_sym_u128] = ACTIONS(469), - [anon_sym_i128] = ACTIONS(469), - [anon_sym_isize] = ACTIONS(469), - [anon_sym_usize] = ACTIONS(469), - [anon_sym_f32] = ACTIONS(469), - [anon_sym_f64] = ACTIONS(469), - [anon_sym_bool] = ACTIONS(469), - [anon_sym_str] = ACTIONS(469), - [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(1073), - [anon_sym_BANG] = ACTIONS(1073), - [anon_sym_AMP] = ACTIONS(1075), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1349), - [anon_sym_COLON_COLON] = ACTIONS(473), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(475), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(477), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(479), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(481), - [anon_sym_static] = ACTIONS(483), - [anon_sym_union] = ACTIONS(477), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(485), - [anon_sym_move] = ACTIONS(487), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(489), - [sym_super] = ACTIONS(491), - [sym_crate] = ACTIONS(491), - [sym_metavariable] = ACTIONS(493), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [anon_sym_static] = ACTIONS(372), + [anon_sym_union] = ACTIONS(360), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [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(353)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1914), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1520), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [sym_line_comment] = STATE(353), - [sym_block_comment] = STATE(353), - [sym_identifier] = ACTIONS(339), + [STATE(373)] = { + [sym_bracketed_type] = STATE(3752), + [sym_generic_function] = STATE(1492), + [sym_generic_type_with_turbofish] = STATE(3039), + [sym__expression_except_range] = STATE(1409), + [sym__expression] = STATE(1928), + [sym_macro_invocation] = STATE(1529), + [sym_scoped_identifier] = STATE(1540), + [sym_scoped_type_identifier_in_expression_position] = STATE(3335), + [sym_range_expression] = STATE(1505), + [sym_unary_expression] = STATE(1492), + [sym_try_expression] = STATE(1492), + [sym_reference_expression] = STATE(1492), + [sym_binary_expression] = STATE(1492), + [sym_assignment_expression] = STATE(1492), + [sym_compound_assignment_expr] = STATE(1492), + [sym_type_cast_expression] = STATE(1492), + [sym_return_expression] = STATE(1492), + [sym_yield_expression] = STATE(1492), + [sym_call_expression] = STATE(1492), + [sym_array_expression] = STATE(1492), + [sym_parenthesized_expression] = STATE(1492), + [sym_tuple_expression] = STATE(1492), + [sym_unit_expression] = STATE(1492), + [sym_struct_expression] = STATE(1492), + [sym_if_expression] = STATE(1492), + [sym_match_expression] = STATE(1492), + [sym_while_expression] = STATE(1492), + [sym_loop_expression] = STATE(1492), + [sym_for_expression] = STATE(1492), + [sym_const_block] = STATE(1492), + [sym_closure_expression] = STATE(1492), + [sym_closure_parameters] = STATE(229), + [sym_label] = STATE(3689), + [sym_break_expression] = STATE(1492), + [sym_continue_expression] = STATE(1492), + [sym_index_expression] = STATE(1492), + [sym_await_expression] = STATE(1492), + [sym_field_expression] = STATE(1412), + [sym_unsafe_block] = STATE(1492), + [sym_async_block] = STATE(1492), + [sym_gen_block] = STATE(1492), + [sym_try_block] = STATE(1492), + [sym_block] = STATE(1492), + [sym__literal] = STATE(1492), + [sym_string_literal] = STATE(1530), + [sym_raw_string_literal] = STATE(1530), + [sym_boolean_literal] = STATE(1530), + [sym_line_comment] = STATE(373), + [sym_block_comment] = STATE(373), + [sym_identifier] = ACTIONS(344), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(348), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -57262,92 +59640,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), + [anon_sym_async] = ACTIONS(356), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(358), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), + [anon_sym_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(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(115), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [anon_sym_static] = ACTIONS(372), + [anon_sym_union] = ACTIONS(360), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [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(354)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1915), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1520), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [sym_line_comment] = STATE(354), - [sym_block_comment] = STATE(354), - [sym_identifier] = ACTIONS(339), + [STATE(374)] = { + [sym_bracketed_type] = STATE(3752), + [sym_generic_function] = STATE(1492), + [sym_generic_type_with_turbofish] = STATE(3039), + [sym__expression_except_range] = STATE(1409), + [sym__expression] = STATE(1872), + [sym_macro_invocation] = STATE(1529), + [sym_scoped_identifier] = STATE(1540), + [sym_scoped_type_identifier_in_expression_position] = STATE(3335), + [sym_range_expression] = STATE(1505), + [sym_unary_expression] = STATE(1492), + [sym_try_expression] = STATE(1492), + [sym_reference_expression] = STATE(1492), + [sym_binary_expression] = STATE(1492), + [sym_assignment_expression] = STATE(1492), + [sym_compound_assignment_expr] = STATE(1492), + [sym_type_cast_expression] = STATE(1492), + [sym_return_expression] = STATE(1492), + [sym_yield_expression] = STATE(1492), + [sym_call_expression] = STATE(1492), + [sym_array_expression] = STATE(1492), + [sym_parenthesized_expression] = STATE(1492), + [sym_tuple_expression] = STATE(1492), + [sym_unit_expression] = STATE(1492), + [sym_struct_expression] = STATE(1492), + [sym_if_expression] = STATE(1492), + [sym_match_expression] = STATE(1492), + [sym_while_expression] = STATE(1492), + [sym_loop_expression] = STATE(1492), + [sym_for_expression] = STATE(1492), + [sym_const_block] = STATE(1492), + [sym_closure_expression] = STATE(1492), + [sym_closure_parameters] = STATE(229), + [sym_label] = STATE(3689), + [sym_break_expression] = STATE(1492), + [sym_continue_expression] = STATE(1492), + [sym_index_expression] = STATE(1492), + [sym_await_expression] = STATE(1492), + [sym_field_expression] = STATE(1412), + [sym_unsafe_block] = STATE(1492), + [sym_async_block] = STATE(1492), + [sym_gen_block] = STATE(1492), + [sym_try_block] = STATE(1492), + [sym_block] = STATE(1492), + [sym__literal] = STATE(1492), + [sym_string_literal] = STATE(1530), + [sym_raw_string_literal] = STATE(1530), + [sym_boolean_literal] = STATE(1530), + [sym_line_comment] = STATE(374), + [sym_block_comment] = STATE(374), + [sym_identifier] = ACTIONS(344), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(348), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -57374,204 +59752,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), + [anon_sym_async] = ACTIONS(356), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(358), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), + [anon_sym_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(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(115), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), - }, - [STATE(355)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3056), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1612), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1591), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [sym_line_comment] = STATE(355), - [sym_block_comment] = STATE(355), - [sym_identifier] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(901), - [anon_sym_u8] = ACTIONS(469), - [anon_sym_i8] = ACTIONS(469), - [anon_sym_u16] = ACTIONS(469), - [anon_sym_i16] = ACTIONS(469), - [anon_sym_u32] = ACTIONS(469), - [anon_sym_i32] = ACTIONS(469), - [anon_sym_u64] = ACTIONS(469), - [anon_sym_i64] = ACTIONS(469), - [anon_sym_u128] = ACTIONS(469), - [anon_sym_i128] = ACTIONS(469), - [anon_sym_isize] = ACTIONS(469), - [anon_sym_usize] = ACTIONS(469), - [anon_sym_f32] = ACTIONS(469), - [anon_sym_f64] = ACTIONS(469), - [anon_sym_bool] = ACTIONS(469), - [anon_sym_str] = ACTIONS(469), - [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(901), - [anon_sym_BANG] = ACTIONS(901), - [anon_sym_AMP] = ACTIONS(903), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(905), - [anon_sym_COLON_COLON] = ACTIONS(473), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(477), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(477), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(489), - [sym_super] = ACTIONS(491), - [sym_crate] = ACTIONS(491), - [sym_metavariable] = ACTIONS(493), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [anon_sym_static] = ACTIONS(372), + [anon_sym_union] = ACTIONS(360), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [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(356)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1824), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1520), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [sym_line_comment] = STATE(356), - [sym_block_comment] = STATE(356), - [sym_identifier] = ACTIONS(339), + [STATE(375)] = { + [sym_bracketed_type] = STATE(3752), + [sym_generic_function] = STATE(1492), + [sym_generic_type_with_turbofish] = STATE(3039), + [sym__expression_except_range] = STATE(1409), + [sym__expression] = STATE(1930), + [sym_macro_invocation] = STATE(1529), + [sym_scoped_identifier] = STATE(1540), + [sym_scoped_type_identifier_in_expression_position] = STATE(3335), + [sym_range_expression] = STATE(1505), + [sym_unary_expression] = STATE(1492), + [sym_try_expression] = STATE(1492), + [sym_reference_expression] = STATE(1492), + [sym_binary_expression] = STATE(1492), + [sym_assignment_expression] = STATE(1492), + [sym_compound_assignment_expr] = STATE(1492), + [sym_type_cast_expression] = STATE(1492), + [sym_return_expression] = STATE(1492), + [sym_yield_expression] = STATE(1492), + [sym_call_expression] = STATE(1492), + [sym_array_expression] = STATE(1492), + [sym_parenthesized_expression] = STATE(1492), + [sym_tuple_expression] = STATE(1492), + [sym_unit_expression] = STATE(1492), + [sym_struct_expression] = STATE(1492), + [sym_if_expression] = STATE(1492), + [sym_match_expression] = STATE(1492), + [sym_while_expression] = STATE(1492), + [sym_loop_expression] = STATE(1492), + [sym_for_expression] = STATE(1492), + [sym_const_block] = STATE(1492), + [sym_closure_expression] = STATE(1492), + [sym_closure_parameters] = STATE(229), + [sym_label] = STATE(3689), + [sym_break_expression] = STATE(1492), + [sym_continue_expression] = STATE(1492), + [sym_index_expression] = STATE(1492), + [sym_await_expression] = STATE(1492), + [sym_field_expression] = STATE(1412), + [sym_unsafe_block] = STATE(1492), + [sym_async_block] = STATE(1492), + [sym_gen_block] = STATE(1492), + [sym_try_block] = STATE(1492), + [sym_block] = STATE(1492), + [sym__literal] = STATE(1492), + [sym_string_literal] = STATE(1530), + [sym_raw_string_literal] = STATE(1530), + [sym_boolean_literal] = STATE(1530), + [sym_line_comment] = STATE(375), + [sym_block_comment] = STATE(375), + [sym_identifier] = ACTIONS(344), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(348), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -57598,316 +59864,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), + [anon_sym_async] = ACTIONS(356), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(358), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), + [anon_sym_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(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(115), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [anon_sym_static] = ACTIONS(372), + [anon_sym_union] = ACTIONS(360), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [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(357)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1917), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1520), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [sym_line_comment] = STATE(357), - [sym_block_comment] = STATE(357), - [sym_identifier] = ACTIONS(339), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(115), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), - }, - [STATE(358)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1905), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1520), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [sym_line_comment] = STATE(358), - [sym_block_comment] = STATE(358), - [sym_identifier] = ACTIONS(339), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(115), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), - }, - [STATE(359)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1831), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1520), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [sym_line_comment] = STATE(359), - [sym_block_comment] = STATE(359), - [sym_identifier] = ACTIONS(339), + [STATE(376)] = { + [sym_bracketed_type] = STATE(3752), + [sym_generic_function] = STATE(1492), + [sym_generic_type_with_turbofish] = STATE(3039), + [sym__expression_except_range] = STATE(1409), + [sym__expression] = STATE(1877), + [sym_macro_invocation] = STATE(1529), + [sym_scoped_identifier] = STATE(1540), + [sym_scoped_type_identifier_in_expression_position] = STATE(3335), + [sym_range_expression] = STATE(1505), + [sym_unary_expression] = STATE(1492), + [sym_try_expression] = STATE(1492), + [sym_reference_expression] = STATE(1492), + [sym_binary_expression] = STATE(1492), + [sym_assignment_expression] = STATE(1492), + [sym_compound_assignment_expr] = STATE(1492), + [sym_type_cast_expression] = STATE(1492), + [sym_return_expression] = STATE(1492), + [sym_yield_expression] = STATE(1492), + [sym_call_expression] = STATE(1492), + [sym_array_expression] = STATE(1492), + [sym_parenthesized_expression] = STATE(1492), + [sym_tuple_expression] = STATE(1492), + [sym_unit_expression] = STATE(1492), + [sym_struct_expression] = STATE(1492), + [sym_if_expression] = STATE(1492), + [sym_match_expression] = STATE(1492), + [sym_while_expression] = STATE(1492), + [sym_loop_expression] = STATE(1492), + [sym_for_expression] = STATE(1492), + [sym_const_block] = STATE(1492), + [sym_closure_expression] = STATE(1492), + [sym_closure_parameters] = STATE(229), + [sym_label] = STATE(3689), + [sym_break_expression] = STATE(1492), + [sym_continue_expression] = STATE(1492), + [sym_index_expression] = STATE(1492), + [sym_await_expression] = STATE(1492), + [sym_field_expression] = STATE(1412), + [sym_unsafe_block] = STATE(1492), + [sym_async_block] = STATE(1492), + [sym_gen_block] = STATE(1492), + [sym_try_block] = STATE(1492), + [sym_block] = STATE(1492), + [sym__literal] = STATE(1492), + [sym_string_literal] = STATE(1530), + [sym_raw_string_literal] = STATE(1530), + [sym_boolean_literal] = STATE(1530), + [sym_line_comment] = STATE(376), + [sym_block_comment] = STATE(376), + [sym_identifier] = ACTIONS(344), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(348), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -57934,92 +59976,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), + [anon_sym_async] = ACTIONS(356), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(358), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), + [anon_sym_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(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(115), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [anon_sym_static] = ACTIONS(372), + [anon_sym_union] = ACTIONS(360), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [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(360)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1919), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1520), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [sym_line_comment] = STATE(360), - [sym_block_comment] = STATE(360), - [sym_identifier] = ACTIONS(339), + [STATE(377)] = { + [sym_bracketed_type] = STATE(3752), + [sym_generic_function] = STATE(1492), + [sym_generic_type_with_turbofish] = STATE(3039), + [sym__expression_except_range] = STATE(1409), + [sym__expression] = STATE(1931), + [sym_macro_invocation] = STATE(1529), + [sym_scoped_identifier] = STATE(1540), + [sym_scoped_type_identifier_in_expression_position] = STATE(3335), + [sym_range_expression] = STATE(1505), + [sym_unary_expression] = STATE(1492), + [sym_try_expression] = STATE(1492), + [sym_reference_expression] = STATE(1492), + [sym_binary_expression] = STATE(1492), + [sym_assignment_expression] = STATE(1492), + [sym_compound_assignment_expr] = STATE(1492), + [sym_type_cast_expression] = STATE(1492), + [sym_return_expression] = STATE(1492), + [sym_yield_expression] = STATE(1492), + [sym_call_expression] = STATE(1492), + [sym_array_expression] = STATE(1492), + [sym_parenthesized_expression] = STATE(1492), + [sym_tuple_expression] = STATE(1492), + [sym_unit_expression] = STATE(1492), + [sym_struct_expression] = STATE(1492), + [sym_if_expression] = STATE(1492), + [sym_match_expression] = STATE(1492), + [sym_while_expression] = STATE(1492), + [sym_loop_expression] = STATE(1492), + [sym_for_expression] = STATE(1492), + [sym_const_block] = STATE(1492), + [sym_closure_expression] = STATE(1492), + [sym_closure_parameters] = STATE(229), + [sym_label] = STATE(3689), + [sym_break_expression] = STATE(1492), + [sym_continue_expression] = STATE(1492), + [sym_index_expression] = STATE(1492), + [sym_await_expression] = STATE(1492), + [sym_field_expression] = STATE(1412), + [sym_unsafe_block] = STATE(1492), + [sym_async_block] = STATE(1492), + [sym_gen_block] = STATE(1492), + [sym_try_block] = STATE(1492), + [sym_block] = STATE(1492), + [sym__literal] = STATE(1492), + [sym_string_literal] = STATE(1530), + [sym_raw_string_literal] = STATE(1530), + [sym_boolean_literal] = STATE(1530), + [sym_line_comment] = STATE(377), + [sym_block_comment] = STATE(377), + [sym_identifier] = ACTIONS(344), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(348), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -58046,204 +60088,204 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), + [anon_sym_async] = ACTIONS(356), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(358), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), + [anon_sym_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(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(115), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [anon_sym_static] = ACTIONS(372), + [anon_sym_union] = ACTIONS(360), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [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(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1834), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1520), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [sym_line_comment] = STATE(361), - [sym_block_comment] = STATE(361), - [sym_identifier] = ACTIONS(339), + [STATE(378)] = { + [sym_bracketed_type] = STATE(3752), + [sym_generic_function] = STATE(1492), + [sym_generic_type_with_turbofish] = STATE(3085), + [sym__expression_except_range] = STATE(1409), + [sym__expression] = STATE(1621), + [sym_macro_invocation] = STATE(1529), + [sym_scoped_identifier] = STATE(1604), + [sym_scoped_type_identifier_in_expression_position] = STATE(3335), + [sym_range_expression] = STATE(1505), + [sym_unary_expression] = STATE(1492), + [sym_try_expression] = STATE(1492), + [sym_reference_expression] = STATE(1492), + [sym_binary_expression] = STATE(1492), + [sym_assignment_expression] = STATE(1492), + [sym_compound_assignment_expr] = STATE(1492), + [sym_type_cast_expression] = STATE(1492), + [sym_return_expression] = STATE(1492), + [sym_yield_expression] = STATE(1492), + [sym_call_expression] = STATE(1492), + [sym_array_expression] = STATE(1492), + [sym_parenthesized_expression] = STATE(1492), + [sym_tuple_expression] = STATE(1492), + [sym_unit_expression] = STATE(1492), + [sym_struct_expression] = STATE(1492), + [sym_if_expression] = STATE(1492), + [sym_match_expression] = STATE(1492), + [sym_while_expression] = STATE(1492), + [sym_loop_expression] = STATE(1492), + [sym_for_expression] = STATE(1492), + [sym_const_block] = STATE(1492), + [sym_closure_expression] = STATE(1492), + [sym_closure_parameters] = STATE(221), + [sym_label] = STATE(3689), + [sym_break_expression] = STATE(1492), + [sym_continue_expression] = STATE(1492), + [sym_index_expression] = STATE(1492), + [sym_await_expression] = STATE(1492), + [sym_field_expression] = STATE(1412), + [sym_unsafe_block] = STATE(1492), + [sym_async_block] = STATE(1492), + [sym_gen_block] = STATE(1492), + [sym_try_block] = STATE(1492), + [sym_block] = STATE(1492), + [sym__literal] = STATE(1492), + [sym_string_literal] = STATE(1530), + [sym_raw_string_literal] = STATE(1530), + [sym_boolean_literal] = STATE(1530), + [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(343), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(348), + [anon_sym_STAR] = ACTIONS(978), + [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(978), + [anon_sym_BANG] = ACTIONS(978), + [anon_sym_AMP] = ACTIONS(980), [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(982), + [anon_sym_COLON_COLON] = ACTIONS(476), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(115), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [anon_sym_async] = ACTIONS(356), + [anon_sym_break] = ACTIONS(510), + [anon_sym_const] = ACTIONS(358), + [anon_sym_continue] = ACTIONS(512), + [anon_sym_default] = ACTIONS(480), + [anon_sym_for] = ACTIONS(362), + [anon_sym_gen] = ACTIONS(514), + [anon_sym_if] = ACTIONS(366), + [anon_sym_loop] = ACTIONS(368), + [anon_sym_match] = ACTIONS(370), + [anon_sym_return] = ACTIONS(516), + [anon_sym_static] = ACTIONS(518), + [anon_sym_union] = ACTIONS(480), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [anon_sym_yield] = ACTIONS(520), + [anon_sym_move] = ACTIONS(522), + [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(492), + [sym_super] = ACTIONS(494), + [sym_crate] = ACTIONS(494), + [sym_metavariable] = ACTIONS(496), + [sym__raw_string_literal_start] = ACTIONS(119), + [sym_float_literal] = ACTIONS(99), }, - [STATE(362)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1921), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1520), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [sym_line_comment] = STATE(362), - [sym_block_comment] = STATE(362), - [sym_identifier] = ACTIONS(339), + [STATE(379)] = { + [sym_bracketed_type] = STATE(3752), + [sym_generic_function] = STATE(1492), + [sym_generic_type_with_turbofish] = STATE(3039), + [sym__expression_except_range] = STATE(1409), + [sym__expression] = STATE(1879), + [sym_macro_invocation] = STATE(1529), + [sym_scoped_identifier] = STATE(1540), + [sym_scoped_type_identifier_in_expression_position] = STATE(3335), + [sym_range_expression] = STATE(1505), + [sym_unary_expression] = STATE(1492), + [sym_try_expression] = STATE(1492), + [sym_reference_expression] = STATE(1492), + [sym_binary_expression] = STATE(1492), + [sym_assignment_expression] = STATE(1492), + [sym_compound_assignment_expr] = STATE(1492), + [sym_type_cast_expression] = STATE(1492), + [sym_return_expression] = STATE(1492), + [sym_yield_expression] = STATE(1492), + [sym_call_expression] = STATE(1492), + [sym_array_expression] = STATE(1492), + [sym_parenthesized_expression] = STATE(1492), + [sym_tuple_expression] = STATE(1492), + [sym_unit_expression] = STATE(1492), + [sym_struct_expression] = STATE(1492), + [sym_if_expression] = STATE(1492), + [sym_match_expression] = STATE(1492), + [sym_while_expression] = STATE(1492), + [sym_loop_expression] = STATE(1492), + [sym_for_expression] = STATE(1492), + [sym_const_block] = STATE(1492), + [sym_closure_expression] = STATE(1492), + [sym_closure_parameters] = STATE(229), + [sym_label] = STATE(3689), + [sym_break_expression] = STATE(1492), + [sym_continue_expression] = STATE(1492), + [sym_index_expression] = STATE(1492), + [sym_await_expression] = STATE(1492), + [sym_field_expression] = STATE(1412), + [sym_unsafe_block] = STATE(1492), + [sym_async_block] = STATE(1492), + [sym_gen_block] = STATE(1492), + [sym_try_block] = STATE(1492), + [sym_block] = STATE(1492), + [sym__literal] = STATE(1492), + [sym_string_literal] = STATE(1530), + [sym_raw_string_literal] = STATE(1530), + [sym_boolean_literal] = STATE(1530), + [sym_line_comment] = STATE(379), + [sym_block_comment] = STATE(379), + [sym_identifier] = ACTIONS(344), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(348), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -58270,204 +60312,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), + [anon_sym_async] = ACTIONS(356), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(358), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), + [anon_sym_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(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(115), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), - }, - [STATE(363)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3056), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1613), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1591), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [sym_line_comment] = STATE(363), - [sym_block_comment] = STATE(363), - [sym_identifier] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(901), - [anon_sym_u8] = ACTIONS(469), - [anon_sym_i8] = ACTIONS(469), - [anon_sym_u16] = ACTIONS(469), - [anon_sym_i16] = ACTIONS(469), - [anon_sym_u32] = ACTIONS(469), - [anon_sym_i32] = ACTIONS(469), - [anon_sym_u64] = ACTIONS(469), - [anon_sym_i64] = ACTIONS(469), - [anon_sym_u128] = ACTIONS(469), - [anon_sym_i128] = ACTIONS(469), - [anon_sym_isize] = ACTIONS(469), - [anon_sym_usize] = ACTIONS(469), - [anon_sym_f32] = ACTIONS(469), - [anon_sym_f64] = ACTIONS(469), - [anon_sym_bool] = ACTIONS(469), - [anon_sym_str] = ACTIONS(469), - [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(901), - [anon_sym_BANG] = ACTIONS(901), - [anon_sym_AMP] = ACTIONS(903), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(905), - [anon_sym_COLON_COLON] = ACTIONS(473), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(477), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(477), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(489), - [sym_super] = ACTIONS(491), - [sym_crate] = ACTIONS(491), - [sym_metavariable] = ACTIONS(493), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [anon_sym_static] = ACTIONS(372), + [anon_sym_union] = ACTIONS(360), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [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(364)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1837), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1520), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [sym_line_comment] = STATE(364), - [sym_block_comment] = STATE(364), - [sym_identifier] = ACTIONS(339), + [STATE(380)] = { + [sym_bracketed_type] = STATE(3752), + [sym_generic_function] = STATE(1492), + [sym_generic_type_with_turbofish] = STATE(3039), + [sym__expression_except_range] = STATE(1409), + [sym__expression] = STATE(1932), + [sym_macro_invocation] = STATE(1529), + [sym_scoped_identifier] = STATE(1540), + [sym_scoped_type_identifier_in_expression_position] = STATE(3335), + [sym_range_expression] = STATE(1505), + [sym_unary_expression] = STATE(1492), + [sym_try_expression] = STATE(1492), + [sym_reference_expression] = STATE(1492), + [sym_binary_expression] = STATE(1492), + [sym_assignment_expression] = STATE(1492), + [sym_compound_assignment_expr] = STATE(1492), + [sym_type_cast_expression] = STATE(1492), + [sym_return_expression] = STATE(1492), + [sym_yield_expression] = STATE(1492), + [sym_call_expression] = STATE(1492), + [sym_array_expression] = STATE(1492), + [sym_parenthesized_expression] = STATE(1492), + [sym_tuple_expression] = STATE(1492), + [sym_unit_expression] = STATE(1492), + [sym_struct_expression] = STATE(1492), + [sym_if_expression] = STATE(1492), + [sym_match_expression] = STATE(1492), + [sym_while_expression] = STATE(1492), + [sym_loop_expression] = STATE(1492), + [sym_for_expression] = STATE(1492), + [sym_const_block] = STATE(1492), + [sym_closure_expression] = STATE(1492), + [sym_closure_parameters] = STATE(229), + [sym_label] = STATE(3689), + [sym_break_expression] = STATE(1492), + [sym_continue_expression] = STATE(1492), + [sym_index_expression] = STATE(1492), + [sym_await_expression] = STATE(1492), + [sym_field_expression] = STATE(1412), + [sym_unsafe_block] = STATE(1492), + [sym_async_block] = STATE(1492), + [sym_gen_block] = STATE(1492), + [sym_try_block] = STATE(1492), + [sym_block] = STATE(1492), + [sym__literal] = STATE(1492), + [sym_string_literal] = STATE(1530), + [sym_raw_string_literal] = STATE(1530), + [sym_boolean_literal] = STATE(1530), + [sym_line_comment] = STATE(380), + [sym_block_comment] = STATE(380), + [sym_identifier] = ACTIONS(344), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(348), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -58494,92 +60424,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), + [anon_sym_async] = ACTIONS(356), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(358), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), + [anon_sym_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(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(115), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [anon_sym_static] = ACTIONS(372), + [anon_sym_union] = ACTIONS(360), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [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(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1922), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1520), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [sym_line_comment] = STATE(365), - [sym_block_comment] = STATE(365), - [sym_identifier] = ACTIONS(339), + [STATE(381)] = { + [sym_bracketed_type] = STATE(3752), + [sym_generic_function] = STATE(1492), + [sym_generic_type_with_turbofish] = STATE(3039), + [sym__expression_except_range] = STATE(1409), + [sym__expression] = STATE(1933), + [sym_macro_invocation] = STATE(1529), + [sym_scoped_identifier] = STATE(1540), + [sym_scoped_type_identifier_in_expression_position] = STATE(3335), + [sym_range_expression] = STATE(1505), + [sym_unary_expression] = STATE(1492), + [sym_try_expression] = STATE(1492), + [sym_reference_expression] = STATE(1492), + [sym_binary_expression] = STATE(1492), + [sym_assignment_expression] = STATE(1492), + [sym_compound_assignment_expr] = STATE(1492), + [sym_type_cast_expression] = STATE(1492), + [sym_return_expression] = STATE(1492), + [sym_yield_expression] = STATE(1492), + [sym_call_expression] = STATE(1492), + [sym_array_expression] = STATE(1492), + [sym_parenthesized_expression] = STATE(1492), + [sym_tuple_expression] = STATE(1492), + [sym_unit_expression] = STATE(1492), + [sym_struct_expression] = STATE(1492), + [sym_if_expression] = STATE(1492), + [sym_match_expression] = STATE(1492), + [sym_while_expression] = STATE(1492), + [sym_loop_expression] = STATE(1492), + [sym_for_expression] = STATE(1492), + [sym_const_block] = STATE(1492), + [sym_closure_expression] = STATE(1492), + [sym_closure_parameters] = STATE(229), + [sym_label] = STATE(3689), + [sym_break_expression] = STATE(1492), + [sym_continue_expression] = STATE(1492), + [sym_index_expression] = STATE(1492), + [sym_await_expression] = STATE(1492), + [sym_field_expression] = STATE(1412), + [sym_unsafe_block] = STATE(1492), + [sym_async_block] = STATE(1492), + [sym_gen_block] = STATE(1492), + [sym_try_block] = STATE(1492), + [sym_block] = STATE(1492), + [sym__literal] = STATE(1492), + [sym_string_literal] = STATE(1530), + [sym_raw_string_literal] = STATE(1530), + [sym_boolean_literal] = STATE(1530), + [sym_line_comment] = STATE(381), + [sym_block_comment] = STATE(381), + [sym_identifier] = ACTIONS(344), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(348), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -58606,92 +60536,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), + [anon_sym_async] = ACTIONS(356), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(358), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), + [anon_sym_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(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(115), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [anon_sym_static] = ACTIONS(372), + [anon_sym_union] = ACTIONS(360), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [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(366)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1923), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1520), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [sym_line_comment] = STATE(366), - [sym_block_comment] = STATE(366), - [sym_identifier] = ACTIONS(339), + [STATE(382)] = { + [sym_bracketed_type] = STATE(3752), + [sym_generic_function] = STATE(1492), + [sym_generic_type_with_turbofish] = STATE(3039), + [sym__expression_except_range] = STATE(1409), + [sym__expression] = STATE(1934), + [sym_macro_invocation] = STATE(1529), + [sym_scoped_identifier] = STATE(1540), + [sym_scoped_type_identifier_in_expression_position] = STATE(3335), + [sym_range_expression] = STATE(1505), + [sym_unary_expression] = STATE(1492), + [sym_try_expression] = STATE(1492), + [sym_reference_expression] = STATE(1492), + [sym_binary_expression] = STATE(1492), + [sym_assignment_expression] = STATE(1492), + [sym_compound_assignment_expr] = STATE(1492), + [sym_type_cast_expression] = STATE(1492), + [sym_return_expression] = STATE(1492), + [sym_yield_expression] = STATE(1492), + [sym_call_expression] = STATE(1492), + [sym_array_expression] = STATE(1492), + [sym_parenthesized_expression] = STATE(1492), + [sym_tuple_expression] = STATE(1492), + [sym_unit_expression] = STATE(1492), + [sym_struct_expression] = STATE(1492), + [sym_if_expression] = STATE(1492), + [sym_match_expression] = STATE(1492), + [sym_while_expression] = STATE(1492), + [sym_loop_expression] = STATE(1492), + [sym_for_expression] = STATE(1492), + [sym_const_block] = STATE(1492), + [sym_closure_expression] = STATE(1492), + [sym_closure_parameters] = STATE(229), + [sym_label] = STATE(3689), + [sym_break_expression] = STATE(1492), + [sym_continue_expression] = STATE(1492), + [sym_index_expression] = STATE(1492), + [sym_await_expression] = STATE(1492), + [sym_field_expression] = STATE(1412), + [sym_unsafe_block] = STATE(1492), + [sym_async_block] = STATE(1492), + [sym_gen_block] = STATE(1492), + [sym_try_block] = STATE(1492), + [sym_block] = STATE(1492), + [sym__literal] = STATE(1492), + [sym_string_literal] = STATE(1530), + [sym_raw_string_literal] = STATE(1530), + [sym_boolean_literal] = STATE(1530), + [sym_line_comment] = STATE(382), + [sym_block_comment] = STATE(382), + [sym_identifier] = ACTIONS(344), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(348), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -58718,92 +60648,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), + [anon_sym_async] = ACTIONS(356), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(358), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), + [anon_sym_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(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(115), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [anon_sym_static] = ACTIONS(372), + [anon_sym_union] = ACTIONS(360), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [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(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1924), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1520), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [sym_line_comment] = STATE(367), - [sym_block_comment] = STATE(367), - [sym_identifier] = ACTIONS(339), + [STATE(383)] = { + [sym_bracketed_type] = STATE(3752), + [sym_generic_function] = STATE(1492), + [sym_generic_type_with_turbofish] = STATE(3039), + [sym__expression_except_range] = STATE(1409), + [sym__expression] = STATE(1935), + [sym_macro_invocation] = STATE(1529), + [sym_scoped_identifier] = STATE(1540), + [sym_scoped_type_identifier_in_expression_position] = STATE(3335), + [sym_range_expression] = STATE(1505), + [sym_unary_expression] = STATE(1492), + [sym_try_expression] = STATE(1492), + [sym_reference_expression] = STATE(1492), + [sym_binary_expression] = STATE(1492), + [sym_assignment_expression] = STATE(1492), + [sym_compound_assignment_expr] = STATE(1492), + [sym_type_cast_expression] = STATE(1492), + [sym_return_expression] = STATE(1492), + [sym_yield_expression] = STATE(1492), + [sym_call_expression] = STATE(1492), + [sym_array_expression] = STATE(1492), + [sym_parenthesized_expression] = STATE(1492), + [sym_tuple_expression] = STATE(1492), + [sym_unit_expression] = STATE(1492), + [sym_struct_expression] = STATE(1492), + [sym_if_expression] = STATE(1492), + [sym_match_expression] = STATE(1492), + [sym_while_expression] = STATE(1492), + [sym_loop_expression] = STATE(1492), + [sym_for_expression] = STATE(1492), + [sym_const_block] = STATE(1492), + [sym_closure_expression] = STATE(1492), + [sym_closure_parameters] = STATE(229), + [sym_label] = STATE(3689), + [sym_break_expression] = STATE(1492), + [sym_continue_expression] = STATE(1492), + [sym_index_expression] = STATE(1492), + [sym_await_expression] = STATE(1492), + [sym_field_expression] = STATE(1412), + [sym_unsafe_block] = STATE(1492), + [sym_async_block] = STATE(1492), + [sym_gen_block] = STATE(1492), + [sym_try_block] = STATE(1492), + [sym_block] = STATE(1492), + [sym__literal] = STATE(1492), + [sym_string_literal] = STATE(1530), + [sym_raw_string_literal] = STATE(1530), + [sym_boolean_literal] = STATE(1530), + [sym_line_comment] = STATE(383), + [sym_block_comment] = STATE(383), + [sym_identifier] = ACTIONS(344), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(348), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -58830,92 +60760,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), + [anon_sym_async] = ACTIONS(356), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(358), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), + [anon_sym_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(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(115), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [anon_sym_static] = ACTIONS(372), + [anon_sym_union] = ACTIONS(360), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [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(368)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1925), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1520), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [sym_line_comment] = STATE(368), - [sym_block_comment] = STATE(368), - [sym_identifier] = ACTIONS(339), + [STATE(384)] = { + [sym_bracketed_type] = STATE(3752), + [sym_generic_function] = STATE(1492), + [sym_generic_type_with_turbofish] = STATE(3039), + [sym__expression_except_range] = STATE(1409), + [sym__expression] = STATE(1955), + [sym_macro_invocation] = STATE(1529), + [sym_scoped_identifier] = STATE(1540), + [sym_scoped_type_identifier_in_expression_position] = STATE(3335), + [sym_range_expression] = STATE(1505), + [sym_unary_expression] = STATE(1492), + [sym_try_expression] = STATE(1492), + [sym_reference_expression] = STATE(1492), + [sym_binary_expression] = STATE(1492), + [sym_assignment_expression] = STATE(1492), + [sym_compound_assignment_expr] = STATE(1492), + [sym_type_cast_expression] = STATE(1492), + [sym_return_expression] = STATE(1492), + [sym_yield_expression] = STATE(1492), + [sym_call_expression] = STATE(1492), + [sym_array_expression] = STATE(1492), + [sym_parenthesized_expression] = STATE(1492), + [sym_tuple_expression] = STATE(1492), + [sym_unit_expression] = STATE(1492), + [sym_struct_expression] = STATE(1492), + [sym_if_expression] = STATE(1492), + [sym_match_expression] = STATE(1492), + [sym_while_expression] = STATE(1492), + [sym_loop_expression] = STATE(1492), + [sym_for_expression] = STATE(1492), + [sym_const_block] = STATE(1492), + [sym_closure_expression] = STATE(1492), + [sym_closure_parameters] = STATE(229), + [sym_label] = STATE(3689), + [sym_break_expression] = STATE(1492), + [sym_continue_expression] = STATE(1492), + [sym_index_expression] = STATE(1492), + [sym_await_expression] = STATE(1492), + [sym_field_expression] = STATE(1412), + [sym_unsafe_block] = STATE(1492), + [sym_async_block] = STATE(1492), + [sym_gen_block] = STATE(1492), + [sym_try_block] = STATE(1492), + [sym_block] = STATE(1492), + [sym__literal] = STATE(1492), + [sym_string_literal] = STATE(1530), + [sym_raw_string_literal] = STATE(1530), + [sym_boolean_literal] = STATE(1530), + [sym_line_comment] = STATE(384), + [sym_block_comment] = STATE(384), + [sym_identifier] = ACTIONS(344), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(348), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -58942,316 +60872,316 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), + [anon_sym_async] = ACTIONS(356), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(358), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), + [anon_sym_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(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(115), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [anon_sym_static] = ACTIONS(372), + [anon_sym_union] = ACTIONS(360), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [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(369)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3056), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1847), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1591), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(244), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [sym_line_comment] = STATE(369), - [sym_block_comment] = STATE(369), - [sym_identifier] = ACTIONS(467), + [STATE(385)] = { + [sym_bracketed_type] = STATE(3752), + [sym_generic_function] = STATE(1492), + [sym_generic_type_with_turbofish] = STATE(3085), + [sym__expression_except_range] = STATE(1409), + [sym__expression] = STATE(1886), + [sym_macro_invocation] = STATE(1529), + [sym_scoped_identifier] = STATE(1604), + [sym_scoped_type_identifier_in_expression_position] = STATE(3335), + [sym_range_expression] = STATE(1505), + [sym_unary_expression] = STATE(1492), + [sym_try_expression] = STATE(1492), + [sym_reference_expression] = STATE(1492), + [sym_binary_expression] = STATE(1492), + [sym_assignment_expression] = STATE(1492), + [sym_compound_assignment_expr] = STATE(1492), + [sym_type_cast_expression] = STATE(1492), + [sym_return_expression] = STATE(1492), + [sym_yield_expression] = STATE(1492), + [sym_call_expression] = STATE(1492), + [sym_array_expression] = STATE(1492), + [sym_parenthesized_expression] = STATE(1492), + [sym_tuple_expression] = STATE(1492), + [sym_unit_expression] = STATE(1492), + [sym_struct_expression] = STATE(1492), + [sym_if_expression] = STATE(1492), + [sym_match_expression] = STATE(1492), + [sym_while_expression] = STATE(1492), + [sym_loop_expression] = STATE(1492), + [sym_for_expression] = STATE(1492), + [sym_const_block] = STATE(1492), + [sym_closure_expression] = STATE(1492), + [sym_closure_parameters] = STATE(235), + [sym_label] = STATE(3689), + [sym_break_expression] = STATE(1492), + [sym_continue_expression] = STATE(1492), + [sym_index_expression] = STATE(1492), + [sym_await_expression] = STATE(1492), + [sym_field_expression] = STATE(1412), + [sym_unsafe_block] = STATE(1492), + [sym_async_block] = STATE(1492), + [sym_gen_block] = STATE(1492), + [sym_try_block] = STATE(1492), + [sym_block] = STATE(1492), + [sym__literal] = STATE(1492), + [sym_string_literal] = STATE(1530), + [sym_raw_string_literal] = STATE(1530), + [sym_boolean_literal] = STATE(1530), + [sym_line_comment] = STATE(385), + [sym_block_comment] = STATE(385), + [sym_identifier] = ACTIONS(470), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1073), - [anon_sym_u8] = ACTIONS(469), - [anon_sym_i8] = ACTIONS(469), - [anon_sym_u16] = ACTIONS(469), - [anon_sym_i16] = ACTIONS(469), - [anon_sym_u32] = ACTIONS(469), - [anon_sym_i32] = ACTIONS(469), - [anon_sym_u64] = ACTIONS(469), - [anon_sym_i64] = ACTIONS(469), - [anon_sym_u128] = ACTIONS(469), - [anon_sym_i128] = ACTIONS(469), - [anon_sym_isize] = ACTIONS(469), - [anon_sym_usize] = ACTIONS(469), - [anon_sym_f32] = ACTIONS(469), - [anon_sym_f64] = ACTIONS(469), - [anon_sym_bool] = ACTIONS(469), - [anon_sym_str] = ACTIONS(469), - [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(1073), - [anon_sym_BANG] = ACTIONS(1073), - [anon_sym_AMP] = ACTIONS(1075), + [anon_sym_LBRACE] = ACTIONS(348), + [anon_sym_STAR] = ACTIONS(1196), + [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(1196), + [anon_sym_BANG] = ACTIONS(1196), + [anon_sym_AMP] = ACTIONS(1198), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1349), - [anon_sym_COLON_COLON] = ACTIONS(473), + [anon_sym_DOT_DOT] = ACTIONS(1394), + [anon_sym_COLON_COLON] = ACTIONS(476), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(475), - [anon_sym_const] = ACTIONS(353), + [anon_sym_async] = ACTIONS(356), + [anon_sym_break] = ACTIONS(478), + [anon_sym_const] = ACTIONS(358), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(477), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(479), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(481), - [anon_sym_static] = ACTIONS(483), - [anon_sym_union] = ACTIONS(477), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(485), - [anon_sym_move] = ACTIONS(487), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(489), - [sym_super] = ACTIONS(491), - [sym_crate] = ACTIONS(491), - [sym_metavariable] = ACTIONS(493), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [anon_sym_default] = ACTIONS(480), + [anon_sym_for] = ACTIONS(362), + [anon_sym_gen] = ACTIONS(482), + [anon_sym_if] = ACTIONS(366), + [anon_sym_loop] = ACTIONS(368), + [anon_sym_match] = ACTIONS(370), + [anon_sym_return] = ACTIONS(484), + [anon_sym_static] = ACTIONS(486), + [anon_sym_union] = ACTIONS(480), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [anon_sym_yield] = ACTIONS(488), + [anon_sym_move] = ACTIONS(490), + [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(492), + [sym_super] = ACTIONS(494), + [sym_crate] = ACTIONS(494), + [sym_metavariable] = ACTIONS(496), + [sym__raw_string_literal_start] = ACTIONS(119), + [sym_float_literal] = ACTIONS(99), }, - [STATE(370)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3056), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1616), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1591), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [sym_line_comment] = STATE(370), - [sym_block_comment] = STATE(370), - [sym_identifier] = ACTIONS(467), + [STATE(386)] = { + [sym_bracketed_type] = STATE(3752), + [sym_generic_function] = STATE(1492), + [sym_generic_type_with_turbofish] = STATE(3085), + [sym__expression_except_range] = STATE(1409), + [sym__expression] = STATE(1626), + [sym_macro_invocation] = STATE(1529), + [sym_scoped_identifier] = STATE(1604), + [sym_scoped_type_identifier_in_expression_position] = STATE(3335), + [sym_range_expression] = STATE(1505), + [sym_unary_expression] = STATE(1492), + [sym_try_expression] = STATE(1492), + [sym_reference_expression] = STATE(1492), + [sym_binary_expression] = STATE(1492), + [sym_assignment_expression] = STATE(1492), + [sym_compound_assignment_expr] = STATE(1492), + [sym_type_cast_expression] = STATE(1492), + [sym_return_expression] = STATE(1492), + [sym_yield_expression] = STATE(1492), + [sym_call_expression] = STATE(1492), + [sym_array_expression] = STATE(1492), + [sym_parenthesized_expression] = STATE(1492), + [sym_tuple_expression] = STATE(1492), + [sym_unit_expression] = STATE(1492), + [sym_struct_expression] = STATE(1492), + [sym_if_expression] = STATE(1492), + [sym_match_expression] = STATE(1492), + [sym_while_expression] = STATE(1492), + [sym_loop_expression] = STATE(1492), + [sym_for_expression] = STATE(1492), + [sym_const_block] = STATE(1492), + [sym_closure_expression] = STATE(1492), + [sym_closure_parameters] = STATE(221), + [sym_label] = STATE(3689), + [sym_break_expression] = STATE(1492), + [sym_continue_expression] = STATE(1492), + [sym_index_expression] = STATE(1492), + [sym_await_expression] = STATE(1492), + [sym_field_expression] = STATE(1412), + [sym_unsafe_block] = STATE(1492), + [sym_async_block] = STATE(1492), + [sym_gen_block] = STATE(1492), + [sym_try_block] = STATE(1492), + [sym_block] = STATE(1492), + [sym__literal] = STATE(1492), + [sym_string_literal] = STATE(1530), + [sym_raw_string_literal] = STATE(1530), + [sym_boolean_literal] = STATE(1530), + [sym_line_comment] = STATE(386), + [sym_block_comment] = STATE(386), + [sym_identifier] = ACTIONS(470), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(901), - [anon_sym_u8] = ACTIONS(469), - [anon_sym_i8] = ACTIONS(469), - [anon_sym_u16] = ACTIONS(469), - [anon_sym_i16] = ACTIONS(469), - [anon_sym_u32] = ACTIONS(469), - [anon_sym_i32] = ACTIONS(469), - [anon_sym_u64] = ACTIONS(469), - [anon_sym_i64] = ACTIONS(469), - [anon_sym_u128] = ACTIONS(469), - [anon_sym_i128] = ACTIONS(469), - [anon_sym_isize] = ACTIONS(469), - [anon_sym_usize] = ACTIONS(469), - [anon_sym_f32] = ACTIONS(469), - [anon_sym_f64] = ACTIONS(469), - [anon_sym_bool] = ACTIONS(469), - [anon_sym_str] = ACTIONS(469), - [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(901), - [anon_sym_BANG] = ACTIONS(901), - [anon_sym_AMP] = ACTIONS(903), + [anon_sym_LBRACE] = ACTIONS(348), + [anon_sym_STAR] = ACTIONS(978), + [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(978), + [anon_sym_BANG] = ACTIONS(978), + [anon_sym_AMP] = ACTIONS(980), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(905), - [anon_sym_COLON_COLON] = ACTIONS(473), + [anon_sym_DOT_DOT] = ACTIONS(982), + [anon_sym_COLON_COLON] = ACTIONS(476), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(477), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(477), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(489), - [sym_super] = ACTIONS(491), - [sym_crate] = ACTIONS(491), - [sym_metavariable] = ACTIONS(493), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [anon_sym_async] = ACTIONS(356), + [anon_sym_break] = ACTIONS(510), + [anon_sym_const] = ACTIONS(358), + [anon_sym_continue] = ACTIONS(512), + [anon_sym_default] = ACTIONS(480), + [anon_sym_for] = ACTIONS(362), + [anon_sym_gen] = ACTIONS(514), + [anon_sym_if] = ACTIONS(366), + [anon_sym_loop] = ACTIONS(368), + [anon_sym_match] = ACTIONS(370), + [anon_sym_return] = ACTIONS(516), + [anon_sym_static] = ACTIONS(518), + [anon_sym_union] = ACTIONS(480), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [anon_sym_yield] = ACTIONS(520), + [anon_sym_move] = ACTIONS(522), + [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(492), + [sym_super] = ACTIONS(494), + [sym_crate] = ACTIONS(494), + [sym_metavariable] = ACTIONS(496), + [sym__raw_string_literal_start] = ACTIONS(119), + [sym_float_literal] = ACTIONS(99), }, - [STATE(371)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1929), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1520), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [sym_line_comment] = STATE(371), - [sym_block_comment] = STATE(371), - [sym_identifier] = ACTIONS(339), + [STATE(387)] = { + [sym_bracketed_type] = STATE(3752), + [sym_generic_function] = STATE(1492), + [sym_generic_type_with_turbofish] = STATE(3039), + [sym__expression_except_range] = STATE(1409), + [sym__expression] = STATE(1940), + [sym_macro_invocation] = STATE(1529), + [sym_scoped_identifier] = STATE(1540), + [sym_scoped_type_identifier_in_expression_position] = STATE(3335), + [sym_range_expression] = STATE(1505), + [sym_unary_expression] = STATE(1492), + [sym_try_expression] = STATE(1492), + [sym_reference_expression] = STATE(1492), + [sym_binary_expression] = STATE(1492), + [sym_assignment_expression] = STATE(1492), + [sym_compound_assignment_expr] = STATE(1492), + [sym_type_cast_expression] = STATE(1492), + [sym_return_expression] = STATE(1492), + [sym_yield_expression] = STATE(1492), + [sym_call_expression] = STATE(1492), + [sym_array_expression] = STATE(1492), + [sym_parenthesized_expression] = STATE(1492), + [sym_tuple_expression] = STATE(1492), + [sym_unit_expression] = STATE(1492), + [sym_struct_expression] = STATE(1492), + [sym_if_expression] = STATE(1492), + [sym_match_expression] = STATE(1492), + [sym_while_expression] = STATE(1492), + [sym_loop_expression] = STATE(1492), + [sym_for_expression] = STATE(1492), + [sym_const_block] = STATE(1492), + [sym_closure_expression] = STATE(1492), + [sym_closure_parameters] = STATE(229), + [sym_label] = STATE(3689), + [sym_break_expression] = STATE(1492), + [sym_continue_expression] = STATE(1492), + [sym_index_expression] = STATE(1492), + [sym_await_expression] = STATE(1492), + [sym_field_expression] = STATE(1412), + [sym_unsafe_block] = STATE(1492), + [sym_async_block] = STATE(1492), + [sym_gen_block] = STATE(1492), + [sym_try_block] = STATE(1492), + [sym_block] = STATE(1492), + [sym__literal] = STATE(1492), + [sym_string_literal] = STATE(1530), + [sym_raw_string_literal] = STATE(1530), + [sym_boolean_literal] = STATE(1530), + [sym_line_comment] = STATE(387), + [sym_block_comment] = STATE(387), + [sym_identifier] = ACTIONS(344), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(348), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -59278,23892 +61208,22031 @@ 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(351), + [anon_sym_async] = ACTIONS(356), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(358), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), + [anon_sym_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(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(115), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [anon_sym_static] = ACTIONS(372), + [anon_sym_union] = ACTIONS(360), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [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(372)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3056), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1617), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1591), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [sym_line_comment] = STATE(372), - [sym_block_comment] = STATE(372), - [sym_identifier] = ACTIONS(467), + [STATE(388)] = { + [sym_bracketed_type] = STATE(3752), + [sym_generic_function] = STATE(1492), + [sym_generic_type_with_turbofish] = STATE(3085), + [sym__expression_except_range] = STATE(1409), + [sym__expression] = STATE(1628), + [sym_macro_invocation] = STATE(1529), + [sym_scoped_identifier] = STATE(1604), + [sym_scoped_type_identifier_in_expression_position] = STATE(3335), + [sym_range_expression] = STATE(1505), + [sym_unary_expression] = STATE(1492), + [sym_try_expression] = STATE(1492), + [sym_reference_expression] = STATE(1492), + [sym_binary_expression] = STATE(1492), + [sym_assignment_expression] = STATE(1492), + [sym_compound_assignment_expr] = STATE(1492), + [sym_type_cast_expression] = STATE(1492), + [sym_return_expression] = STATE(1492), + [sym_yield_expression] = STATE(1492), + [sym_call_expression] = STATE(1492), + [sym_array_expression] = STATE(1492), + [sym_parenthesized_expression] = STATE(1492), + [sym_tuple_expression] = STATE(1492), + [sym_unit_expression] = STATE(1492), + [sym_struct_expression] = STATE(1492), + [sym_if_expression] = STATE(1492), + [sym_match_expression] = STATE(1492), + [sym_while_expression] = STATE(1492), + [sym_loop_expression] = STATE(1492), + [sym_for_expression] = STATE(1492), + [sym_const_block] = STATE(1492), + [sym_closure_expression] = STATE(1492), + [sym_closure_parameters] = STATE(221), + [sym_label] = STATE(3689), + [sym_break_expression] = STATE(1492), + [sym_continue_expression] = STATE(1492), + [sym_index_expression] = STATE(1492), + [sym_await_expression] = STATE(1492), + [sym_field_expression] = STATE(1412), + [sym_unsafe_block] = STATE(1492), + [sym_async_block] = STATE(1492), + [sym_gen_block] = STATE(1492), + [sym_try_block] = STATE(1492), + [sym_block] = STATE(1492), + [sym__literal] = STATE(1492), + [sym_string_literal] = STATE(1530), + [sym_raw_string_literal] = STATE(1530), + [sym_boolean_literal] = STATE(1530), + [sym_line_comment] = STATE(388), + [sym_block_comment] = STATE(388), + [sym_identifier] = ACTIONS(470), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(901), - [anon_sym_u8] = ACTIONS(469), - [anon_sym_i8] = ACTIONS(469), - [anon_sym_u16] = ACTIONS(469), - [anon_sym_i16] = ACTIONS(469), - [anon_sym_u32] = ACTIONS(469), - [anon_sym_i32] = ACTIONS(469), - [anon_sym_u64] = ACTIONS(469), - [anon_sym_i64] = ACTIONS(469), - [anon_sym_u128] = ACTIONS(469), - [anon_sym_i128] = ACTIONS(469), - [anon_sym_isize] = ACTIONS(469), - [anon_sym_usize] = ACTIONS(469), - [anon_sym_f32] = ACTIONS(469), - [anon_sym_f64] = ACTIONS(469), - [anon_sym_bool] = ACTIONS(469), - [anon_sym_str] = ACTIONS(469), - [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(901), - [anon_sym_BANG] = ACTIONS(901), - [anon_sym_AMP] = ACTIONS(903), + [anon_sym_LBRACE] = ACTIONS(348), + [anon_sym_STAR] = ACTIONS(978), + [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(978), + [anon_sym_BANG] = ACTIONS(978), + [anon_sym_AMP] = ACTIONS(980), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(905), - [anon_sym_COLON_COLON] = ACTIONS(473), + [anon_sym_DOT_DOT] = ACTIONS(982), + [anon_sym_COLON_COLON] = ACTIONS(476), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(477), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(477), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(489), - [sym_super] = ACTIONS(491), - [sym_crate] = ACTIONS(491), - [sym_metavariable] = ACTIONS(493), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [anon_sym_async] = ACTIONS(356), + [anon_sym_break] = ACTIONS(510), + [anon_sym_const] = ACTIONS(358), + [anon_sym_continue] = ACTIONS(512), + [anon_sym_default] = ACTIONS(480), + [anon_sym_for] = ACTIONS(362), + [anon_sym_gen] = ACTIONS(514), + [anon_sym_if] = ACTIONS(366), + [anon_sym_loop] = ACTIONS(368), + [anon_sym_match] = ACTIONS(370), + [anon_sym_return] = ACTIONS(516), + [anon_sym_static] = ACTIONS(518), + [anon_sym_union] = ACTIONS(480), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [anon_sym_yield] = ACTIONS(520), + [anon_sym_move] = ACTIONS(522), + [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(492), + [sym_super] = ACTIONS(494), + [sym_crate] = ACTIONS(494), + [sym_metavariable] = ACTIONS(496), + [sym__raw_string_literal_start] = ACTIONS(119), + [sym_float_literal] = ACTIONS(99), }, - [STATE(373)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3056), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1862), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1591), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(244), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [sym_line_comment] = STATE(373), - [sym_block_comment] = STATE(373), - [sym_identifier] = ACTIONS(467), + [STATE(389)] = { + [sym_bracketed_type] = STATE(3752), + [sym_generic_function] = STATE(1492), + [sym_generic_type_with_turbofish] = STATE(3085), + [sym__expression_except_range] = STATE(1409), + [sym__expression] = STATE(1897), + [sym_macro_invocation] = STATE(1529), + [sym_scoped_identifier] = STATE(1604), + [sym_scoped_type_identifier_in_expression_position] = STATE(3335), + [sym_range_expression] = STATE(1505), + [sym_unary_expression] = STATE(1492), + [sym_try_expression] = STATE(1492), + [sym_reference_expression] = STATE(1492), + [sym_binary_expression] = STATE(1492), + [sym_assignment_expression] = STATE(1492), + [sym_compound_assignment_expr] = STATE(1492), + [sym_type_cast_expression] = STATE(1492), + [sym_return_expression] = STATE(1492), + [sym_yield_expression] = STATE(1492), + [sym_call_expression] = STATE(1492), + [sym_array_expression] = STATE(1492), + [sym_parenthesized_expression] = STATE(1492), + [sym_tuple_expression] = STATE(1492), + [sym_unit_expression] = STATE(1492), + [sym_struct_expression] = STATE(1492), + [sym_if_expression] = STATE(1492), + [sym_match_expression] = STATE(1492), + [sym_while_expression] = STATE(1492), + [sym_loop_expression] = STATE(1492), + [sym_for_expression] = STATE(1492), + [sym_const_block] = STATE(1492), + [sym_closure_expression] = STATE(1492), + [sym_closure_parameters] = STATE(235), + [sym_label] = STATE(3689), + [sym_break_expression] = STATE(1492), + [sym_continue_expression] = STATE(1492), + [sym_index_expression] = STATE(1492), + [sym_await_expression] = STATE(1492), + [sym_field_expression] = STATE(1412), + [sym_unsafe_block] = STATE(1492), + [sym_async_block] = STATE(1492), + [sym_gen_block] = STATE(1492), + [sym_try_block] = STATE(1492), + [sym_block] = STATE(1492), + [sym__literal] = STATE(1492), + [sym_string_literal] = STATE(1530), + [sym_raw_string_literal] = STATE(1530), + [sym_boolean_literal] = STATE(1530), + [sym_line_comment] = STATE(389), + [sym_block_comment] = STATE(389), + [sym_identifier] = ACTIONS(470), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1073), - [anon_sym_u8] = ACTIONS(469), - [anon_sym_i8] = ACTIONS(469), - [anon_sym_u16] = ACTIONS(469), - [anon_sym_i16] = ACTIONS(469), - [anon_sym_u32] = ACTIONS(469), - [anon_sym_i32] = ACTIONS(469), - [anon_sym_u64] = ACTIONS(469), - [anon_sym_i64] = ACTIONS(469), - [anon_sym_u128] = ACTIONS(469), - [anon_sym_i128] = ACTIONS(469), - [anon_sym_isize] = ACTIONS(469), - [anon_sym_usize] = ACTIONS(469), - [anon_sym_f32] = ACTIONS(469), - [anon_sym_f64] = ACTIONS(469), - [anon_sym_bool] = ACTIONS(469), - [anon_sym_str] = ACTIONS(469), - [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(1073), - [anon_sym_BANG] = ACTIONS(1073), - [anon_sym_AMP] = ACTIONS(1075), + [anon_sym_LBRACE] = ACTIONS(348), + [anon_sym_STAR] = ACTIONS(1196), + [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(1196), + [anon_sym_BANG] = ACTIONS(1196), + [anon_sym_AMP] = ACTIONS(1198), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1349), - [anon_sym_COLON_COLON] = ACTIONS(473), + [anon_sym_DOT_DOT] = ACTIONS(1394), + [anon_sym_COLON_COLON] = ACTIONS(476), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(475), - [anon_sym_const] = ACTIONS(353), + [anon_sym_async] = ACTIONS(356), + [anon_sym_break] = ACTIONS(478), + [anon_sym_const] = ACTIONS(358), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(477), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(479), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(481), - [anon_sym_static] = ACTIONS(483), - [anon_sym_union] = ACTIONS(477), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(485), - [anon_sym_move] = ACTIONS(487), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(489), - [sym_super] = ACTIONS(491), - [sym_crate] = ACTIONS(491), - [sym_metavariable] = ACTIONS(493), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), - }, - [STATE(374)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3056), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1618), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1591), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [sym_line_comment] = STATE(374), - [sym_block_comment] = STATE(374), - [sym_identifier] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(901), - [anon_sym_u8] = ACTIONS(469), - [anon_sym_i8] = ACTIONS(469), - [anon_sym_u16] = ACTIONS(469), - [anon_sym_i16] = ACTIONS(469), - [anon_sym_u32] = ACTIONS(469), - [anon_sym_i32] = ACTIONS(469), - [anon_sym_u64] = ACTIONS(469), - [anon_sym_i64] = ACTIONS(469), - [anon_sym_u128] = ACTIONS(469), - [anon_sym_i128] = ACTIONS(469), - [anon_sym_isize] = ACTIONS(469), - [anon_sym_usize] = ACTIONS(469), - [anon_sym_f32] = ACTIONS(469), - [anon_sym_f64] = ACTIONS(469), - [anon_sym_bool] = ACTIONS(469), - [anon_sym_str] = ACTIONS(469), - [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(901), - [anon_sym_BANG] = ACTIONS(901), - [anon_sym_AMP] = ACTIONS(903), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(905), - [anon_sym_COLON_COLON] = ACTIONS(473), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(477), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(477), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(489), - [sym_super] = ACTIONS(491), - [sym_crate] = ACTIONS(491), - [sym_metavariable] = ACTIONS(493), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [anon_sym_default] = ACTIONS(480), + [anon_sym_for] = ACTIONS(362), + [anon_sym_gen] = ACTIONS(482), + [anon_sym_if] = ACTIONS(366), + [anon_sym_loop] = ACTIONS(368), + [anon_sym_match] = ACTIONS(370), + [anon_sym_return] = ACTIONS(484), + [anon_sym_static] = ACTIONS(486), + [anon_sym_union] = ACTIONS(480), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [anon_sym_yield] = ACTIONS(488), + [anon_sym_move] = ACTIONS(490), + [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(492), + [sym_super] = ACTIONS(494), + [sym_crate] = ACTIONS(494), + [sym_metavariable] = ACTIONS(496), + [sym__raw_string_literal_start] = ACTIONS(119), + [sym_float_literal] = ACTIONS(99), }, - [STATE(375)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3056), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1619), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1591), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [sym_line_comment] = STATE(375), - [sym_block_comment] = STATE(375), - [sym_identifier] = ACTIONS(467), + [STATE(390)] = { + [sym_bracketed_type] = STATE(3752), + [sym_generic_function] = STATE(1492), + [sym_generic_type_with_turbofish] = STATE(3085), + [sym__expression_except_range] = STATE(1409), + [sym__expression] = STATE(1629), + [sym_macro_invocation] = STATE(1529), + [sym_scoped_identifier] = STATE(1604), + [sym_scoped_type_identifier_in_expression_position] = STATE(3335), + [sym_range_expression] = STATE(1505), + [sym_unary_expression] = STATE(1492), + [sym_try_expression] = STATE(1492), + [sym_reference_expression] = STATE(1492), + [sym_binary_expression] = STATE(1492), + [sym_assignment_expression] = STATE(1492), + [sym_compound_assignment_expr] = STATE(1492), + [sym_type_cast_expression] = STATE(1492), + [sym_return_expression] = STATE(1492), + [sym_yield_expression] = STATE(1492), + [sym_call_expression] = STATE(1492), + [sym_array_expression] = STATE(1492), + [sym_parenthesized_expression] = STATE(1492), + [sym_tuple_expression] = STATE(1492), + [sym_unit_expression] = STATE(1492), + [sym_struct_expression] = STATE(1492), + [sym_if_expression] = STATE(1492), + [sym_match_expression] = STATE(1492), + [sym_while_expression] = STATE(1492), + [sym_loop_expression] = STATE(1492), + [sym_for_expression] = STATE(1492), + [sym_const_block] = STATE(1492), + [sym_closure_expression] = STATE(1492), + [sym_closure_parameters] = STATE(221), + [sym_label] = STATE(3689), + [sym_break_expression] = STATE(1492), + [sym_continue_expression] = STATE(1492), + [sym_index_expression] = STATE(1492), + [sym_await_expression] = STATE(1492), + [sym_field_expression] = STATE(1412), + [sym_unsafe_block] = STATE(1492), + [sym_async_block] = STATE(1492), + [sym_gen_block] = STATE(1492), + [sym_try_block] = STATE(1492), + [sym_block] = STATE(1492), + [sym__literal] = STATE(1492), + [sym_string_literal] = STATE(1530), + [sym_raw_string_literal] = STATE(1530), + [sym_boolean_literal] = STATE(1530), + [sym_line_comment] = STATE(390), + [sym_block_comment] = STATE(390), + [sym_identifier] = ACTIONS(470), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(901), - [anon_sym_u8] = ACTIONS(469), - [anon_sym_i8] = ACTIONS(469), - [anon_sym_u16] = ACTIONS(469), - [anon_sym_i16] = ACTIONS(469), - [anon_sym_u32] = ACTIONS(469), - [anon_sym_i32] = ACTIONS(469), - [anon_sym_u64] = ACTIONS(469), - [anon_sym_i64] = ACTIONS(469), - [anon_sym_u128] = ACTIONS(469), - [anon_sym_i128] = ACTIONS(469), - [anon_sym_isize] = ACTIONS(469), - [anon_sym_usize] = ACTIONS(469), - [anon_sym_f32] = ACTIONS(469), - [anon_sym_f64] = ACTIONS(469), - [anon_sym_bool] = ACTIONS(469), - [anon_sym_str] = ACTIONS(469), - [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(901), - [anon_sym_BANG] = ACTIONS(901), - [anon_sym_AMP] = ACTIONS(903), + [anon_sym_LBRACE] = ACTIONS(348), + [anon_sym_STAR] = ACTIONS(978), + [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(978), + [anon_sym_BANG] = ACTIONS(978), + [anon_sym_AMP] = ACTIONS(980), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(905), - [anon_sym_COLON_COLON] = ACTIONS(473), + [anon_sym_DOT_DOT] = ACTIONS(982), + [anon_sym_COLON_COLON] = ACTIONS(476), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(477), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(477), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(489), - [sym_super] = ACTIONS(491), - [sym_crate] = ACTIONS(491), - [sym_metavariable] = ACTIONS(493), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), - }, - [STATE(376)] = { - [sym_attribute_item] = STATE(423), - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_self_parameter] = STATE(3147), - [sym_variadic_parameter] = STATE(3147), - [sym_parameter] = STATE(3147), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2975), - [sym_bracketed_type] = STATE(3644), - [sym_lifetime] = STATE(3011), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3299), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2550), - [sym_scoped_identifier] = STATE(2273), - [sym_scoped_type_identifier] = STATE(2154), - [sym_const_block] = STATE(2150), - [sym__pattern] = STATE(3345), - [sym_generic_pattern] = STATE(2150), - [sym_tuple_pattern] = STATE(2150), - [sym_slice_pattern] = STATE(2150), - [sym_tuple_struct_pattern] = STATE(2150), - [sym_struct_pattern] = STATE(2150), - [sym_remaining_field_pattern] = STATE(2150), - [sym_mut_pattern] = STATE(2150), - [sym_range_pattern] = STATE(2150), - [sym_ref_pattern] = STATE(2150), - [sym_captured_pattern] = STATE(2150), - [sym_reference_pattern] = STATE(2150), - [sym_or_pattern] = STATE(2150), - [sym__literal_pattern] = STATE(2076), - [sym_negative_literal] = STATE(2074), - [sym_string_literal] = STATE(2074), - [sym_raw_string_literal] = STATE(2074), - [sym_boolean_literal] = STATE(2074), - [sym_line_comment] = STATE(376), - [sym_block_comment] = STATE(376), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(1323), - [anon_sym_LPAREN] = ACTIONS(1325), - [anon_sym_RPAREN] = ACTIONS(1377), - [anon_sym_LBRACK] = ACTIONS(1233), - [anon_sym_STAR] = ACTIONS(1235), - [anon_sym_QMARK] = ACTIONS(1237), - [anon_sym_u8] = ACTIONS(1329), - [anon_sym_i8] = ACTIONS(1329), - [anon_sym_u16] = ACTIONS(1329), - [anon_sym_i16] = ACTIONS(1329), - [anon_sym_u32] = ACTIONS(1329), - [anon_sym_i32] = ACTIONS(1329), - [anon_sym_u64] = ACTIONS(1329), - [anon_sym_i64] = ACTIONS(1329), - [anon_sym_u128] = ACTIONS(1329), - [anon_sym_i128] = ACTIONS(1329), - [anon_sym_isize] = ACTIONS(1329), - [anon_sym_usize] = ACTIONS(1329), - [anon_sym_f32] = ACTIONS(1329), - [anon_sym_f64] = ACTIONS(1329), - [anon_sym_bool] = ACTIONS(1329), - [anon_sym_str] = ACTIONS(1329), - [anon_sym_char] = ACTIONS(1329), - [anon_sym_DASH] = ACTIONS(1241), - [anon_sym_BANG] = ACTIONS(1243), - [anon_sym_AMP] = ACTIONS(1331), - [anon_sym_PIPE] = ACTIONS(1247), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1379), - [anon_sym_DOT_DOT] = ACTIONS(1251), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1253), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1255), - [anon_sym_COLON_COLON] = ACTIONS(1337), - [anon_sym_POUND] = ACTIONS(1261), - [anon_sym_SQUOTE] = ACTIONS(1263), - [anon_sym_async] = ACTIONS(1265), - [anon_sym_const] = ACTIONS(1267), - [anon_sym_default] = ACTIONS(1339), - [anon_sym_fn] = ACTIONS(1271), - [anon_sym_for] = ACTIONS(1273), - [anon_sym_gen] = ACTIONS(1341), - [anon_sym_impl] = ACTIONS(1277), - [anon_sym_union] = ACTIONS(1341), - [anon_sym_unsafe] = ACTIONS(1265), - [anon_sym_extern] = ACTIONS(1279), - [anon_sym_ref] = ACTIONS(1281), - [anon_sym_dyn] = ACTIONS(1283), - [sym_mutable_specifier] = ACTIONS(1285), - [sym_integer_literal] = ACTIONS(1287), - [aux_sym_string_literal_token1] = ACTIONS(1289), - [sym_char_literal] = ACTIONS(1287), - [anon_sym_true] = ACTIONS(1291), - [anon_sym_false] = ACTIONS(1291), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1343), - [sym_super] = ACTIONS(1345), - [sym_crate] = ACTIONS(1345), - [sym_metavariable] = ACTIONS(1347), - [sym__raw_string_literal_start] = ACTIONS(1299), - [sym_float_literal] = ACTIONS(1287), - }, - [STATE(377)] = { - [sym_attribute_item] = STATE(423), - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_self_parameter] = STATE(3147), - [sym_variadic_parameter] = STATE(3147), - [sym_parameter] = STATE(3147), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2975), - [sym_bracketed_type] = STATE(3644), - [sym_lifetime] = STATE(3011), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3299), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2550), - [sym_scoped_identifier] = STATE(2273), - [sym_scoped_type_identifier] = STATE(2154), - [sym_const_block] = STATE(2150), - [sym__pattern] = STATE(3345), - [sym_generic_pattern] = STATE(2150), - [sym_tuple_pattern] = STATE(2150), - [sym_slice_pattern] = STATE(2150), - [sym_tuple_struct_pattern] = STATE(2150), - [sym_struct_pattern] = STATE(2150), - [sym_remaining_field_pattern] = STATE(2150), - [sym_mut_pattern] = STATE(2150), - [sym_range_pattern] = STATE(2150), - [sym_ref_pattern] = STATE(2150), - [sym_captured_pattern] = STATE(2150), - [sym_reference_pattern] = STATE(2150), - [sym_or_pattern] = STATE(2150), - [sym__literal_pattern] = STATE(2076), - [sym_negative_literal] = STATE(2074), - [sym_string_literal] = STATE(2074), - [sym_raw_string_literal] = STATE(2074), - [sym_boolean_literal] = STATE(2074), - [sym_line_comment] = STATE(377), - [sym_block_comment] = STATE(377), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(1323), - [anon_sym_LPAREN] = ACTIONS(1325), - [anon_sym_RPAREN] = ACTIONS(1381), - [anon_sym_LBRACK] = ACTIONS(1233), - [anon_sym_STAR] = ACTIONS(1235), - [anon_sym_QMARK] = ACTIONS(1237), - [anon_sym_u8] = ACTIONS(1329), - [anon_sym_i8] = ACTIONS(1329), - [anon_sym_u16] = ACTIONS(1329), - [anon_sym_i16] = ACTIONS(1329), - [anon_sym_u32] = ACTIONS(1329), - [anon_sym_i32] = ACTIONS(1329), - [anon_sym_u64] = ACTIONS(1329), - [anon_sym_i64] = ACTIONS(1329), - [anon_sym_u128] = ACTIONS(1329), - [anon_sym_i128] = ACTIONS(1329), - [anon_sym_isize] = ACTIONS(1329), - [anon_sym_usize] = ACTIONS(1329), - [anon_sym_f32] = ACTIONS(1329), - [anon_sym_f64] = ACTIONS(1329), - [anon_sym_bool] = ACTIONS(1329), - [anon_sym_str] = ACTIONS(1329), - [anon_sym_char] = ACTIONS(1329), - [anon_sym_DASH] = ACTIONS(1241), - [anon_sym_BANG] = ACTIONS(1243), - [anon_sym_AMP] = ACTIONS(1331), - [anon_sym_PIPE] = ACTIONS(1247), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1379), - [anon_sym_DOT_DOT] = ACTIONS(1251), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1253), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1255), - [anon_sym_COLON_COLON] = ACTIONS(1337), - [anon_sym_POUND] = ACTIONS(1261), - [anon_sym_SQUOTE] = ACTIONS(1263), - [anon_sym_async] = ACTIONS(1265), - [anon_sym_const] = ACTIONS(1267), - [anon_sym_default] = ACTIONS(1339), - [anon_sym_fn] = ACTIONS(1271), - [anon_sym_for] = ACTIONS(1273), - [anon_sym_gen] = ACTIONS(1341), - [anon_sym_impl] = ACTIONS(1277), - [anon_sym_union] = ACTIONS(1341), - [anon_sym_unsafe] = ACTIONS(1265), - [anon_sym_extern] = ACTIONS(1279), - [anon_sym_ref] = ACTIONS(1281), - [anon_sym_dyn] = ACTIONS(1283), - [sym_mutable_specifier] = ACTIONS(1285), - [sym_integer_literal] = ACTIONS(1287), - [aux_sym_string_literal_token1] = ACTIONS(1289), - [sym_char_literal] = ACTIONS(1287), - [anon_sym_true] = ACTIONS(1291), - [anon_sym_false] = ACTIONS(1291), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1343), - [sym_super] = ACTIONS(1345), - [sym_crate] = ACTIONS(1345), - [sym_metavariable] = ACTIONS(1347), - [sym__raw_string_literal_start] = ACTIONS(1299), - [sym_float_literal] = ACTIONS(1287), - }, - [STATE(378)] = { - [sym_line_comment] = STATE(378), - [sym_block_comment] = STATE(378), - [ts_builtin_sym_end] = ACTIONS(1383), - [sym_identifier] = ACTIONS(1385), - [anon_sym_SEMI] = ACTIONS(1383), - [anon_sym_macro_rules_BANG] = ACTIONS(1383), - [anon_sym_LPAREN] = ACTIONS(1383), - [anon_sym_LBRACK] = ACTIONS(1383), - [anon_sym_LBRACE] = ACTIONS(1383), - [anon_sym_RBRACE] = ACTIONS(1383), - [anon_sym_PLUS] = ACTIONS(1385), - [anon_sym_STAR] = ACTIONS(1385), - [anon_sym_QMARK] = ACTIONS(1383), - [anon_sym_u8] = ACTIONS(1385), - [anon_sym_i8] = ACTIONS(1385), - [anon_sym_u16] = ACTIONS(1385), - [anon_sym_i16] = ACTIONS(1385), - [anon_sym_u32] = ACTIONS(1385), - [anon_sym_i32] = ACTIONS(1385), - [anon_sym_u64] = ACTIONS(1385), - [anon_sym_i64] = ACTIONS(1385), - [anon_sym_u128] = ACTIONS(1385), - [anon_sym_i128] = ACTIONS(1385), - [anon_sym_isize] = ACTIONS(1385), - [anon_sym_usize] = ACTIONS(1385), - [anon_sym_f32] = ACTIONS(1385), - [anon_sym_f64] = ACTIONS(1385), - [anon_sym_bool] = ACTIONS(1385), - [anon_sym_str] = ACTIONS(1385), - [anon_sym_char] = ACTIONS(1385), - [anon_sym_DASH] = ACTIONS(1385), - [anon_sym_SLASH] = ACTIONS(1385), - [anon_sym_PERCENT] = ACTIONS(1385), - [anon_sym_CARET] = ACTIONS(1385), - [anon_sym_BANG] = ACTIONS(1385), - [anon_sym_AMP] = ACTIONS(1385), - [anon_sym_PIPE] = ACTIONS(1385), - [anon_sym_AMP_AMP] = ACTIONS(1383), - [anon_sym_PIPE_PIPE] = ACTIONS(1383), - [anon_sym_LT_LT] = ACTIONS(1385), - [anon_sym_GT_GT] = ACTIONS(1385), - [anon_sym_PLUS_EQ] = ACTIONS(1383), - [anon_sym_DASH_EQ] = ACTIONS(1383), - [anon_sym_STAR_EQ] = ACTIONS(1383), - [anon_sym_SLASH_EQ] = ACTIONS(1383), - [anon_sym_PERCENT_EQ] = ACTIONS(1383), - [anon_sym_CARET_EQ] = ACTIONS(1383), - [anon_sym_AMP_EQ] = ACTIONS(1383), - [anon_sym_PIPE_EQ] = ACTIONS(1383), - [anon_sym_LT_LT_EQ] = ACTIONS(1383), - [anon_sym_GT_GT_EQ] = ACTIONS(1383), - [anon_sym_EQ] = ACTIONS(1385), - [anon_sym_EQ_EQ] = ACTIONS(1383), - [anon_sym_BANG_EQ] = ACTIONS(1383), - [anon_sym_GT] = ACTIONS(1385), - [anon_sym_LT] = ACTIONS(1385), - [anon_sym_GT_EQ] = ACTIONS(1383), - [anon_sym_LT_EQ] = ACTIONS(1383), - [anon_sym_DOT] = ACTIONS(1385), - [anon_sym_DOT_DOT] = ACTIONS(1385), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1383), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1383), - [anon_sym_COLON_COLON] = ACTIONS(1383), - [anon_sym_POUND] = ACTIONS(1383), - [anon_sym_SQUOTE] = ACTIONS(1385), - [anon_sym_as] = ACTIONS(1385), - [anon_sym_async] = ACTIONS(1385), - [anon_sym_break] = ACTIONS(1385), - [anon_sym_const] = ACTIONS(1385), - [anon_sym_continue] = ACTIONS(1385), - [anon_sym_default] = ACTIONS(1385), - [anon_sym_enum] = ACTIONS(1385), - [anon_sym_fn] = ACTIONS(1385), - [anon_sym_for] = ACTIONS(1385), - [anon_sym_gen] = ACTIONS(1385), - [anon_sym_if] = ACTIONS(1385), - [anon_sym_impl] = ACTIONS(1385), - [anon_sym_let] = ACTIONS(1385), - [anon_sym_loop] = ACTIONS(1385), - [anon_sym_match] = ACTIONS(1385), - [anon_sym_mod] = ACTIONS(1385), - [anon_sym_pub] = ACTIONS(1385), - [anon_sym_return] = ACTIONS(1385), - [anon_sym_static] = ACTIONS(1385), - [anon_sym_struct] = ACTIONS(1385), - [anon_sym_trait] = ACTIONS(1385), - [anon_sym_type] = ACTIONS(1385), - [anon_sym_union] = ACTIONS(1385), - [anon_sym_unsafe] = ACTIONS(1385), - [anon_sym_use] = ACTIONS(1385), - [anon_sym_while] = ACTIONS(1385), - [anon_sym_extern] = ACTIONS(1385), - [anon_sym_else] = ACTIONS(1385), - [anon_sym_yield] = ACTIONS(1385), - [anon_sym_move] = ACTIONS(1385), - [anon_sym_try] = ACTIONS(1385), - [sym_integer_literal] = ACTIONS(1383), - [aux_sym_string_literal_token1] = ACTIONS(1383), - [sym_char_literal] = ACTIONS(1383), - [anon_sym_true] = ACTIONS(1385), - [anon_sym_false] = ACTIONS(1385), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1385), - [sym_super] = ACTIONS(1385), - [sym_crate] = ACTIONS(1385), - [sym_metavariable] = ACTIONS(1383), - [sym__raw_string_literal_start] = ACTIONS(1383), - [sym_float_literal] = ACTIONS(1383), - }, - [STATE(379)] = { - [sym_line_comment] = STATE(379), - [sym_block_comment] = STATE(379), - [ts_builtin_sym_end] = ACTIONS(1387), - [sym_identifier] = ACTIONS(1389), - [anon_sym_SEMI] = ACTIONS(1387), - [anon_sym_macro_rules_BANG] = ACTIONS(1387), - [anon_sym_LPAREN] = ACTIONS(1387), - [anon_sym_LBRACK] = ACTIONS(1387), - [anon_sym_LBRACE] = ACTIONS(1387), - [anon_sym_RBRACE] = ACTIONS(1387), - [anon_sym_PLUS] = ACTIONS(1389), - [anon_sym_STAR] = ACTIONS(1389), - [anon_sym_QMARK] = ACTIONS(1387), - [anon_sym_u8] = ACTIONS(1389), - [anon_sym_i8] = ACTIONS(1389), - [anon_sym_u16] = ACTIONS(1389), - [anon_sym_i16] = ACTIONS(1389), - [anon_sym_u32] = ACTIONS(1389), - [anon_sym_i32] = ACTIONS(1389), - [anon_sym_u64] = ACTIONS(1389), - [anon_sym_i64] = ACTIONS(1389), - [anon_sym_u128] = ACTIONS(1389), - [anon_sym_i128] = ACTIONS(1389), - [anon_sym_isize] = ACTIONS(1389), - [anon_sym_usize] = ACTIONS(1389), - [anon_sym_f32] = ACTIONS(1389), - [anon_sym_f64] = ACTIONS(1389), - [anon_sym_bool] = ACTIONS(1389), - [anon_sym_str] = ACTIONS(1389), - [anon_sym_char] = ACTIONS(1389), - [anon_sym_DASH] = ACTIONS(1389), - [anon_sym_SLASH] = ACTIONS(1389), - [anon_sym_PERCENT] = ACTIONS(1389), - [anon_sym_CARET] = ACTIONS(1389), - [anon_sym_BANG] = ACTIONS(1389), - [anon_sym_AMP] = ACTIONS(1389), - [anon_sym_PIPE] = ACTIONS(1389), - [anon_sym_AMP_AMP] = ACTIONS(1387), - [anon_sym_PIPE_PIPE] = ACTIONS(1387), - [anon_sym_LT_LT] = ACTIONS(1389), - [anon_sym_GT_GT] = ACTIONS(1389), - [anon_sym_PLUS_EQ] = ACTIONS(1387), - [anon_sym_DASH_EQ] = ACTIONS(1387), - [anon_sym_STAR_EQ] = ACTIONS(1387), - [anon_sym_SLASH_EQ] = ACTIONS(1387), - [anon_sym_PERCENT_EQ] = ACTIONS(1387), - [anon_sym_CARET_EQ] = ACTIONS(1387), - [anon_sym_AMP_EQ] = ACTIONS(1387), - [anon_sym_PIPE_EQ] = ACTIONS(1387), - [anon_sym_LT_LT_EQ] = ACTIONS(1387), - [anon_sym_GT_GT_EQ] = ACTIONS(1387), - [anon_sym_EQ] = ACTIONS(1389), - [anon_sym_EQ_EQ] = ACTIONS(1387), - [anon_sym_BANG_EQ] = ACTIONS(1387), - [anon_sym_GT] = ACTIONS(1389), - [anon_sym_LT] = ACTIONS(1389), - [anon_sym_GT_EQ] = ACTIONS(1387), - [anon_sym_LT_EQ] = ACTIONS(1387), - [anon_sym_DOT] = ACTIONS(1389), - [anon_sym_DOT_DOT] = ACTIONS(1389), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1387), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1387), - [anon_sym_COLON_COLON] = ACTIONS(1387), - [anon_sym_POUND] = ACTIONS(1387), - [anon_sym_SQUOTE] = ACTIONS(1389), - [anon_sym_as] = ACTIONS(1389), - [anon_sym_async] = ACTIONS(1389), - [anon_sym_break] = ACTIONS(1389), - [anon_sym_const] = ACTIONS(1389), - [anon_sym_continue] = ACTIONS(1389), - [anon_sym_default] = ACTIONS(1389), - [anon_sym_enum] = ACTIONS(1389), - [anon_sym_fn] = ACTIONS(1389), - [anon_sym_for] = ACTIONS(1389), - [anon_sym_gen] = ACTIONS(1389), - [anon_sym_if] = ACTIONS(1389), - [anon_sym_impl] = ACTIONS(1389), - [anon_sym_let] = ACTIONS(1389), - [anon_sym_loop] = ACTIONS(1389), - [anon_sym_match] = ACTIONS(1389), - [anon_sym_mod] = ACTIONS(1389), - [anon_sym_pub] = ACTIONS(1389), - [anon_sym_return] = ACTIONS(1389), - [anon_sym_static] = ACTIONS(1389), - [anon_sym_struct] = ACTIONS(1389), - [anon_sym_trait] = ACTIONS(1389), - [anon_sym_type] = ACTIONS(1389), - [anon_sym_union] = ACTIONS(1389), - [anon_sym_unsafe] = ACTIONS(1389), - [anon_sym_use] = ACTIONS(1389), - [anon_sym_while] = ACTIONS(1389), - [anon_sym_extern] = ACTIONS(1389), - [anon_sym_else] = ACTIONS(1389), - [anon_sym_yield] = ACTIONS(1389), - [anon_sym_move] = ACTIONS(1389), - [anon_sym_try] = ACTIONS(1389), - [sym_integer_literal] = ACTIONS(1387), - [aux_sym_string_literal_token1] = ACTIONS(1387), - [sym_char_literal] = ACTIONS(1387), - [anon_sym_true] = ACTIONS(1389), - [anon_sym_false] = ACTIONS(1389), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1389), - [sym_super] = ACTIONS(1389), - [sym_crate] = ACTIONS(1389), - [sym_metavariable] = ACTIONS(1387), - [sym__raw_string_literal_start] = ACTIONS(1387), - [sym_float_literal] = ACTIONS(1387), - }, - [STATE(380)] = { - [sym_line_comment] = STATE(380), - [sym_block_comment] = STATE(380), - [ts_builtin_sym_end] = ACTIONS(1391), - [sym_identifier] = ACTIONS(1393), - [anon_sym_SEMI] = ACTIONS(1391), - [anon_sym_macro_rules_BANG] = ACTIONS(1391), - [anon_sym_LPAREN] = ACTIONS(1391), - [anon_sym_LBRACK] = ACTIONS(1391), - [anon_sym_LBRACE] = ACTIONS(1391), - [anon_sym_RBRACE] = ACTIONS(1391), - [anon_sym_PLUS] = ACTIONS(1393), - [anon_sym_STAR] = ACTIONS(1393), - [anon_sym_QMARK] = ACTIONS(1391), - [anon_sym_u8] = ACTIONS(1393), - [anon_sym_i8] = ACTIONS(1393), - [anon_sym_u16] = ACTIONS(1393), - [anon_sym_i16] = ACTIONS(1393), - [anon_sym_u32] = ACTIONS(1393), - [anon_sym_i32] = ACTIONS(1393), - [anon_sym_u64] = ACTIONS(1393), - [anon_sym_i64] = ACTIONS(1393), - [anon_sym_u128] = ACTIONS(1393), - [anon_sym_i128] = ACTIONS(1393), - [anon_sym_isize] = ACTIONS(1393), - [anon_sym_usize] = ACTIONS(1393), - [anon_sym_f32] = ACTIONS(1393), - [anon_sym_f64] = ACTIONS(1393), - [anon_sym_bool] = ACTIONS(1393), - [anon_sym_str] = ACTIONS(1393), - [anon_sym_char] = ACTIONS(1393), - [anon_sym_DASH] = ACTIONS(1393), - [anon_sym_SLASH] = ACTIONS(1393), - [anon_sym_PERCENT] = ACTIONS(1393), - [anon_sym_CARET] = ACTIONS(1393), - [anon_sym_BANG] = ACTIONS(1393), - [anon_sym_AMP] = ACTIONS(1393), - [anon_sym_PIPE] = ACTIONS(1393), - [anon_sym_AMP_AMP] = ACTIONS(1391), - [anon_sym_PIPE_PIPE] = ACTIONS(1391), - [anon_sym_LT_LT] = ACTIONS(1393), - [anon_sym_GT_GT] = ACTIONS(1393), - [anon_sym_PLUS_EQ] = ACTIONS(1391), - [anon_sym_DASH_EQ] = ACTIONS(1391), - [anon_sym_STAR_EQ] = ACTIONS(1391), - [anon_sym_SLASH_EQ] = ACTIONS(1391), - [anon_sym_PERCENT_EQ] = ACTIONS(1391), - [anon_sym_CARET_EQ] = ACTIONS(1391), - [anon_sym_AMP_EQ] = ACTIONS(1391), - [anon_sym_PIPE_EQ] = ACTIONS(1391), - [anon_sym_LT_LT_EQ] = ACTIONS(1391), - [anon_sym_GT_GT_EQ] = ACTIONS(1391), - [anon_sym_EQ] = ACTIONS(1393), - [anon_sym_EQ_EQ] = ACTIONS(1391), - [anon_sym_BANG_EQ] = ACTIONS(1391), - [anon_sym_GT] = ACTIONS(1393), - [anon_sym_LT] = ACTIONS(1393), - [anon_sym_GT_EQ] = ACTIONS(1391), - [anon_sym_LT_EQ] = ACTIONS(1391), - [anon_sym_DOT] = ACTIONS(1393), - [anon_sym_DOT_DOT] = ACTIONS(1393), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1391), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1391), - [anon_sym_COLON_COLON] = ACTIONS(1391), - [anon_sym_POUND] = ACTIONS(1391), - [anon_sym_SQUOTE] = ACTIONS(1393), - [anon_sym_as] = ACTIONS(1393), - [anon_sym_async] = ACTIONS(1393), - [anon_sym_break] = ACTIONS(1393), - [anon_sym_const] = ACTIONS(1393), - [anon_sym_continue] = ACTIONS(1393), - [anon_sym_default] = ACTIONS(1393), - [anon_sym_enum] = ACTIONS(1393), - [anon_sym_fn] = ACTIONS(1393), - [anon_sym_for] = ACTIONS(1393), - [anon_sym_gen] = ACTIONS(1393), - [anon_sym_if] = ACTIONS(1393), - [anon_sym_impl] = ACTIONS(1393), - [anon_sym_let] = ACTIONS(1393), - [anon_sym_loop] = ACTIONS(1393), - [anon_sym_match] = ACTIONS(1393), - [anon_sym_mod] = ACTIONS(1393), - [anon_sym_pub] = ACTIONS(1393), - [anon_sym_return] = ACTIONS(1393), - [anon_sym_static] = ACTIONS(1393), - [anon_sym_struct] = ACTIONS(1393), - [anon_sym_trait] = ACTIONS(1393), - [anon_sym_type] = ACTIONS(1393), - [anon_sym_union] = ACTIONS(1393), - [anon_sym_unsafe] = ACTIONS(1393), - [anon_sym_use] = ACTIONS(1393), - [anon_sym_while] = ACTIONS(1393), - [anon_sym_extern] = ACTIONS(1393), - [anon_sym_else] = ACTIONS(1393), - [anon_sym_yield] = ACTIONS(1393), - [anon_sym_move] = ACTIONS(1393), - [anon_sym_try] = ACTIONS(1393), - [sym_integer_literal] = ACTIONS(1391), - [aux_sym_string_literal_token1] = ACTIONS(1391), - [sym_char_literal] = ACTIONS(1391), - [anon_sym_true] = ACTIONS(1393), - [anon_sym_false] = ACTIONS(1393), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1393), - [sym_super] = ACTIONS(1393), - [sym_crate] = ACTIONS(1393), - [sym_metavariable] = ACTIONS(1391), - [sym__raw_string_literal_start] = ACTIONS(1391), - [sym_float_literal] = ACTIONS(1391), - }, - [STATE(381)] = { - [sym_line_comment] = STATE(381), - [sym_block_comment] = STATE(381), - [ts_builtin_sym_end] = ACTIONS(1395), - [sym_identifier] = ACTIONS(1397), - [anon_sym_SEMI] = ACTIONS(1395), - [anon_sym_macro_rules_BANG] = ACTIONS(1395), - [anon_sym_LPAREN] = ACTIONS(1395), - [anon_sym_LBRACK] = ACTIONS(1395), - [anon_sym_LBRACE] = ACTIONS(1395), - [anon_sym_RBRACE] = ACTIONS(1395), - [anon_sym_PLUS] = ACTIONS(1397), - [anon_sym_STAR] = ACTIONS(1397), - [anon_sym_QMARK] = ACTIONS(1395), - [anon_sym_u8] = ACTIONS(1397), - [anon_sym_i8] = ACTIONS(1397), - [anon_sym_u16] = ACTIONS(1397), - [anon_sym_i16] = ACTIONS(1397), - [anon_sym_u32] = ACTIONS(1397), - [anon_sym_i32] = ACTIONS(1397), - [anon_sym_u64] = ACTIONS(1397), - [anon_sym_i64] = ACTIONS(1397), - [anon_sym_u128] = ACTIONS(1397), - [anon_sym_i128] = ACTIONS(1397), - [anon_sym_isize] = ACTIONS(1397), - [anon_sym_usize] = ACTIONS(1397), - [anon_sym_f32] = ACTIONS(1397), - [anon_sym_f64] = ACTIONS(1397), - [anon_sym_bool] = ACTIONS(1397), - [anon_sym_str] = ACTIONS(1397), - [anon_sym_char] = ACTIONS(1397), - [anon_sym_DASH] = ACTIONS(1397), - [anon_sym_SLASH] = ACTIONS(1397), - [anon_sym_PERCENT] = ACTIONS(1397), - [anon_sym_CARET] = ACTIONS(1397), - [anon_sym_BANG] = ACTIONS(1397), - [anon_sym_AMP] = ACTIONS(1397), - [anon_sym_PIPE] = ACTIONS(1397), - [anon_sym_AMP_AMP] = ACTIONS(1395), - [anon_sym_PIPE_PIPE] = ACTIONS(1395), - [anon_sym_LT_LT] = ACTIONS(1397), - [anon_sym_GT_GT] = ACTIONS(1397), - [anon_sym_PLUS_EQ] = ACTIONS(1395), - [anon_sym_DASH_EQ] = ACTIONS(1395), - [anon_sym_STAR_EQ] = ACTIONS(1395), - [anon_sym_SLASH_EQ] = ACTIONS(1395), - [anon_sym_PERCENT_EQ] = ACTIONS(1395), - [anon_sym_CARET_EQ] = ACTIONS(1395), - [anon_sym_AMP_EQ] = ACTIONS(1395), - [anon_sym_PIPE_EQ] = ACTIONS(1395), - [anon_sym_LT_LT_EQ] = ACTIONS(1395), - [anon_sym_GT_GT_EQ] = ACTIONS(1395), - [anon_sym_EQ] = ACTIONS(1397), - [anon_sym_EQ_EQ] = ACTIONS(1395), - [anon_sym_BANG_EQ] = ACTIONS(1395), - [anon_sym_GT] = ACTIONS(1397), - [anon_sym_LT] = ACTIONS(1397), - [anon_sym_GT_EQ] = ACTIONS(1395), - [anon_sym_LT_EQ] = ACTIONS(1395), - [anon_sym_DOT] = ACTIONS(1397), - [anon_sym_DOT_DOT] = ACTIONS(1397), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1395), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1395), - [anon_sym_COLON_COLON] = ACTIONS(1395), - [anon_sym_POUND] = ACTIONS(1395), - [anon_sym_SQUOTE] = ACTIONS(1397), - [anon_sym_as] = ACTIONS(1397), - [anon_sym_async] = ACTIONS(1397), - [anon_sym_break] = ACTIONS(1397), - [anon_sym_const] = ACTIONS(1397), - [anon_sym_continue] = ACTIONS(1397), - [anon_sym_default] = ACTIONS(1397), - [anon_sym_enum] = ACTIONS(1397), - [anon_sym_fn] = ACTIONS(1397), - [anon_sym_for] = ACTIONS(1397), - [anon_sym_gen] = ACTIONS(1397), - [anon_sym_if] = ACTIONS(1397), - [anon_sym_impl] = ACTIONS(1397), - [anon_sym_let] = ACTIONS(1397), - [anon_sym_loop] = ACTIONS(1397), - [anon_sym_match] = ACTIONS(1397), - [anon_sym_mod] = ACTIONS(1397), - [anon_sym_pub] = ACTIONS(1397), - [anon_sym_return] = ACTIONS(1397), - [anon_sym_static] = ACTIONS(1397), - [anon_sym_struct] = ACTIONS(1397), - [anon_sym_trait] = ACTIONS(1397), - [anon_sym_type] = ACTIONS(1397), - [anon_sym_union] = ACTIONS(1397), - [anon_sym_unsafe] = ACTIONS(1397), - [anon_sym_use] = ACTIONS(1397), - [anon_sym_while] = ACTIONS(1397), - [anon_sym_extern] = ACTIONS(1397), - [anon_sym_else] = ACTIONS(1397), - [anon_sym_yield] = ACTIONS(1397), - [anon_sym_move] = ACTIONS(1397), - [anon_sym_try] = ACTIONS(1397), - [sym_integer_literal] = ACTIONS(1395), - [aux_sym_string_literal_token1] = ACTIONS(1395), - [sym_char_literal] = ACTIONS(1395), - [anon_sym_true] = ACTIONS(1397), - [anon_sym_false] = ACTIONS(1397), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1397), - [sym_super] = ACTIONS(1397), - [sym_crate] = ACTIONS(1397), - [sym_metavariable] = ACTIONS(1395), - [sym__raw_string_literal_start] = ACTIONS(1395), - [sym_float_literal] = ACTIONS(1395), - }, - [STATE(382)] = { - [sym_attribute_item] = STATE(423), - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_self_parameter] = STATE(3147), - [sym_variadic_parameter] = STATE(3147), - [sym_parameter] = STATE(3147), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2975), - [sym_bracketed_type] = STATE(3644), - [sym_lifetime] = STATE(3011), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3299), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2550), - [sym_scoped_identifier] = STATE(2273), - [sym_scoped_type_identifier] = STATE(2154), - [sym_const_block] = STATE(2150), - [sym__pattern] = STATE(3345), - [sym_generic_pattern] = STATE(2150), - [sym_tuple_pattern] = STATE(2150), - [sym_slice_pattern] = STATE(2150), - [sym_tuple_struct_pattern] = STATE(2150), - [sym_struct_pattern] = STATE(2150), - [sym_remaining_field_pattern] = STATE(2150), - [sym_mut_pattern] = STATE(2150), - [sym_range_pattern] = STATE(2150), - [sym_ref_pattern] = STATE(2150), - [sym_captured_pattern] = STATE(2150), - [sym_reference_pattern] = STATE(2150), - [sym_or_pattern] = STATE(2150), - [sym__literal_pattern] = STATE(2076), - [sym_negative_literal] = STATE(2074), - [sym_string_literal] = STATE(2074), - [sym_raw_string_literal] = STATE(2074), - [sym_boolean_literal] = STATE(2074), - [sym_line_comment] = STATE(382), - [sym_block_comment] = STATE(382), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(1323), - [anon_sym_LPAREN] = ACTIONS(1325), - [anon_sym_RPAREN] = ACTIONS(1399), - [anon_sym_LBRACK] = ACTIONS(1233), - [anon_sym_STAR] = ACTIONS(1235), - [anon_sym_QMARK] = ACTIONS(1237), - [anon_sym_u8] = ACTIONS(1329), - [anon_sym_i8] = ACTIONS(1329), - [anon_sym_u16] = ACTIONS(1329), - [anon_sym_i16] = ACTIONS(1329), - [anon_sym_u32] = ACTIONS(1329), - [anon_sym_i32] = ACTIONS(1329), - [anon_sym_u64] = ACTIONS(1329), - [anon_sym_i64] = ACTIONS(1329), - [anon_sym_u128] = ACTIONS(1329), - [anon_sym_i128] = ACTIONS(1329), - [anon_sym_isize] = ACTIONS(1329), - [anon_sym_usize] = ACTIONS(1329), - [anon_sym_f32] = ACTIONS(1329), - [anon_sym_f64] = ACTIONS(1329), - [anon_sym_bool] = ACTIONS(1329), - [anon_sym_str] = ACTIONS(1329), - [anon_sym_char] = ACTIONS(1329), - [anon_sym_DASH] = ACTIONS(1241), - [anon_sym_BANG] = ACTIONS(1243), - [anon_sym_AMP] = ACTIONS(1331), - [anon_sym_PIPE] = ACTIONS(1247), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1379), - [anon_sym_DOT_DOT] = ACTIONS(1251), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1253), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1255), - [anon_sym_COLON_COLON] = ACTIONS(1337), - [anon_sym_POUND] = ACTIONS(1261), - [anon_sym_SQUOTE] = ACTIONS(1263), - [anon_sym_async] = ACTIONS(1265), - [anon_sym_const] = ACTIONS(1267), - [anon_sym_default] = ACTIONS(1339), - [anon_sym_fn] = ACTIONS(1271), - [anon_sym_for] = ACTIONS(1273), - [anon_sym_gen] = ACTIONS(1341), - [anon_sym_impl] = ACTIONS(1277), - [anon_sym_union] = ACTIONS(1341), - [anon_sym_unsafe] = ACTIONS(1265), - [anon_sym_extern] = ACTIONS(1279), - [anon_sym_ref] = ACTIONS(1281), - [anon_sym_dyn] = ACTIONS(1283), - [sym_mutable_specifier] = ACTIONS(1285), - [sym_integer_literal] = ACTIONS(1287), - [aux_sym_string_literal_token1] = ACTIONS(1289), - [sym_char_literal] = ACTIONS(1287), - [anon_sym_true] = ACTIONS(1291), - [anon_sym_false] = ACTIONS(1291), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1343), - [sym_super] = ACTIONS(1345), - [sym_crate] = ACTIONS(1345), - [sym_metavariable] = ACTIONS(1347), - [sym__raw_string_literal_start] = ACTIONS(1299), - [sym_float_literal] = ACTIONS(1287), - }, - [STATE(383)] = { - [sym_attribute_item] = STATE(423), - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_self_parameter] = STATE(3147), - [sym_variadic_parameter] = STATE(3147), - [sym_parameter] = STATE(3147), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2975), - [sym_bracketed_type] = STATE(3644), - [sym_lifetime] = STATE(3011), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3299), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2550), - [sym_scoped_identifier] = STATE(2273), - [sym_scoped_type_identifier] = STATE(2154), - [sym_const_block] = STATE(2150), - [sym__pattern] = STATE(3345), - [sym_generic_pattern] = STATE(2150), - [sym_tuple_pattern] = STATE(2150), - [sym_slice_pattern] = STATE(2150), - [sym_tuple_struct_pattern] = STATE(2150), - [sym_struct_pattern] = STATE(2150), - [sym_remaining_field_pattern] = STATE(2150), - [sym_mut_pattern] = STATE(2150), - [sym_range_pattern] = STATE(2150), - [sym_ref_pattern] = STATE(2150), - [sym_captured_pattern] = STATE(2150), - [sym_reference_pattern] = STATE(2150), - [sym_or_pattern] = STATE(2150), - [sym__literal_pattern] = STATE(2076), - [sym_negative_literal] = STATE(2074), - [sym_string_literal] = STATE(2074), - [sym_raw_string_literal] = STATE(2074), - [sym_boolean_literal] = STATE(2074), - [sym_line_comment] = STATE(383), - [sym_block_comment] = STATE(383), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(1323), - [anon_sym_LPAREN] = ACTIONS(1325), - [anon_sym_RPAREN] = ACTIONS(1401), - [anon_sym_LBRACK] = ACTIONS(1233), - [anon_sym_STAR] = ACTIONS(1235), - [anon_sym_QMARK] = ACTIONS(1237), - [anon_sym_u8] = ACTIONS(1329), - [anon_sym_i8] = ACTIONS(1329), - [anon_sym_u16] = ACTIONS(1329), - [anon_sym_i16] = ACTIONS(1329), - [anon_sym_u32] = ACTIONS(1329), - [anon_sym_i32] = ACTIONS(1329), - [anon_sym_u64] = ACTIONS(1329), - [anon_sym_i64] = ACTIONS(1329), - [anon_sym_u128] = ACTIONS(1329), - [anon_sym_i128] = ACTIONS(1329), - [anon_sym_isize] = ACTIONS(1329), - [anon_sym_usize] = ACTIONS(1329), - [anon_sym_f32] = ACTIONS(1329), - [anon_sym_f64] = ACTIONS(1329), - [anon_sym_bool] = ACTIONS(1329), - [anon_sym_str] = ACTIONS(1329), - [anon_sym_char] = ACTIONS(1329), - [anon_sym_DASH] = ACTIONS(1241), - [anon_sym_BANG] = ACTIONS(1243), - [anon_sym_AMP] = ACTIONS(1331), - [anon_sym_PIPE] = ACTIONS(1247), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1379), - [anon_sym_DOT_DOT] = ACTIONS(1251), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1253), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1255), - [anon_sym_COLON_COLON] = ACTIONS(1337), - [anon_sym_POUND] = ACTIONS(1261), - [anon_sym_SQUOTE] = ACTIONS(1263), - [anon_sym_async] = ACTIONS(1265), - [anon_sym_const] = ACTIONS(1267), - [anon_sym_default] = ACTIONS(1339), - [anon_sym_fn] = ACTIONS(1271), - [anon_sym_for] = ACTIONS(1273), - [anon_sym_gen] = ACTIONS(1341), - [anon_sym_impl] = ACTIONS(1277), - [anon_sym_union] = ACTIONS(1341), - [anon_sym_unsafe] = ACTIONS(1265), - [anon_sym_extern] = ACTIONS(1279), - [anon_sym_ref] = ACTIONS(1281), - [anon_sym_dyn] = ACTIONS(1283), - [sym_mutable_specifier] = ACTIONS(1285), - [sym_integer_literal] = ACTIONS(1287), - [aux_sym_string_literal_token1] = ACTIONS(1289), - [sym_char_literal] = ACTIONS(1287), - [anon_sym_true] = ACTIONS(1291), - [anon_sym_false] = ACTIONS(1291), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1343), - [sym_super] = ACTIONS(1345), - [sym_crate] = ACTIONS(1345), - [sym_metavariable] = ACTIONS(1347), - [sym__raw_string_literal_start] = ACTIONS(1299), - [sym_float_literal] = ACTIONS(1287), - }, - [STATE(384)] = { - [sym_attribute_item] = STATE(423), - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_self_parameter] = STATE(3147), - [sym_variadic_parameter] = STATE(3147), - [sym_parameter] = STATE(3147), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2975), - [sym_bracketed_type] = STATE(3644), - [sym_lifetime] = STATE(3011), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3299), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2550), - [sym_scoped_identifier] = STATE(2273), - [sym_scoped_type_identifier] = STATE(2154), - [sym_const_block] = STATE(2150), - [sym__pattern] = STATE(3345), - [sym_generic_pattern] = STATE(2150), - [sym_tuple_pattern] = STATE(2150), - [sym_slice_pattern] = STATE(2150), - [sym_tuple_struct_pattern] = STATE(2150), - [sym_struct_pattern] = STATE(2150), - [sym_remaining_field_pattern] = STATE(2150), - [sym_mut_pattern] = STATE(2150), - [sym_range_pattern] = STATE(2150), - [sym_ref_pattern] = STATE(2150), - [sym_captured_pattern] = STATE(2150), - [sym_reference_pattern] = STATE(2150), - [sym_or_pattern] = STATE(2150), - [sym__literal_pattern] = STATE(2076), - [sym_negative_literal] = STATE(2074), - [sym_string_literal] = STATE(2074), - [sym_raw_string_literal] = STATE(2074), - [sym_boolean_literal] = STATE(2074), - [sym_line_comment] = STATE(384), - [sym_block_comment] = STATE(384), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(1323), - [anon_sym_LPAREN] = ACTIONS(1325), - [anon_sym_RPAREN] = ACTIONS(1403), - [anon_sym_LBRACK] = ACTIONS(1233), - [anon_sym_STAR] = ACTIONS(1235), - [anon_sym_QMARK] = ACTIONS(1237), - [anon_sym_u8] = ACTIONS(1329), - [anon_sym_i8] = ACTIONS(1329), - [anon_sym_u16] = ACTIONS(1329), - [anon_sym_i16] = ACTIONS(1329), - [anon_sym_u32] = ACTIONS(1329), - [anon_sym_i32] = ACTIONS(1329), - [anon_sym_u64] = ACTIONS(1329), - [anon_sym_i64] = ACTIONS(1329), - [anon_sym_u128] = ACTIONS(1329), - [anon_sym_i128] = ACTIONS(1329), - [anon_sym_isize] = ACTIONS(1329), - [anon_sym_usize] = ACTIONS(1329), - [anon_sym_f32] = ACTIONS(1329), - [anon_sym_f64] = ACTIONS(1329), - [anon_sym_bool] = ACTIONS(1329), - [anon_sym_str] = ACTIONS(1329), - [anon_sym_char] = ACTIONS(1329), - [anon_sym_DASH] = ACTIONS(1241), - [anon_sym_BANG] = ACTIONS(1243), - [anon_sym_AMP] = ACTIONS(1331), - [anon_sym_PIPE] = ACTIONS(1247), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1379), - [anon_sym_DOT_DOT] = ACTIONS(1251), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1253), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1255), - [anon_sym_COLON_COLON] = ACTIONS(1337), - [anon_sym_POUND] = ACTIONS(1261), - [anon_sym_SQUOTE] = ACTIONS(1263), - [anon_sym_async] = ACTIONS(1265), - [anon_sym_const] = ACTIONS(1267), - [anon_sym_default] = ACTIONS(1339), - [anon_sym_fn] = ACTIONS(1271), - [anon_sym_for] = ACTIONS(1273), - [anon_sym_gen] = ACTIONS(1341), - [anon_sym_impl] = ACTIONS(1277), - [anon_sym_union] = ACTIONS(1341), - [anon_sym_unsafe] = ACTIONS(1265), - [anon_sym_extern] = ACTIONS(1279), - [anon_sym_ref] = ACTIONS(1281), - [anon_sym_dyn] = ACTIONS(1283), - [sym_mutable_specifier] = ACTIONS(1285), - [sym_integer_literal] = ACTIONS(1287), - [aux_sym_string_literal_token1] = ACTIONS(1289), - [sym_char_literal] = ACTIONS(1287), - [anon_sym_true] = ACTIONS(1291), - [anon_sym_false] = ACTIONS(1291), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1343), - [sym_super] = ACTIONS(1345), - [sym_crate] = ACTIONS(1345), - [sym_metavariable] = ACTIONS(1347), - [sym__raw_string_literal_start] = ACTIONS(1299), - [sym_float_literal] = ACTIONS(1287), - }, - [STATE(385)] = { - [sym_attribute_item] = STATE(423), - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_self_parameter] = STATE(3147), - [sym_variadic_parameter] = STATE(3147), - [sym_parameter] = STATE(3147), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2975), - [sym_bracketed_type] = STATE(3644), - [sym_lifetime] = STATE(3011), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3299), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2550), - [sym_scoped_identifier] = STATE(2273), - [sym_scoped_type_identifier] = STATE(2154), - [sym_const_block] = STATE(2150), - [sym__pattern] = STATE(3345), - [sym_generic_pattern] = STATE(2150), - [sym_tuple_pattern] = STATE(2150), - [sym_slice_pattern] = STATE(2150), - [sym_tuple_struct_pattern] = STATE(2150), - [sym_struct_pattern] = STATE(2150), - [sym_remaining_field_pattern] = STATE(2150), - [sym_mut_pattern] = STATE(2150), - [sym_range_pattern] = STATE(2150), - [sym_ref_pattern] = STATE(2150), - [sym_captured_pattern] = STATE(2150), - [sym_reference_pattern] = STATE(2150), - [sym_or_pattern] = STATE(2150), - [sym__literal_pattern] = STATE(2076), - [sym_negative_literal] = STATE(2074), - [sym_string_literal] = STATE(2074), - [sym_raw_string_literal] = STATE(2074), - [sym_boolean_literal] = STATE(2074), - [sym_line_comment] = STATE(385), - [sym_block_comment] = STATE(385), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(1323), - [anon_sym_LPAREN] = ACTIONS(1325), - [anon_sym_RPAREN] = ACTIONS(1405), - [anon_sym_LBRACK] = ACTIONS(1233), - [anon_sym_STAR] = ACTIONS(1235), - [anon_sym_QMARK] = ACTIONS(1237), - [anon_sym_u8] = ACTIONS(1329), - [anon_sym_i8] = ACTIONS(1329), - [anon_sym_u16] = ACTIONS(1329), - [anon_sym_i16] = ACTIONS(1329), - [anon_sym_u32] = ACTIONS(1329), - [anon_sym_i32] = ACTIONS(1329), - [anon_sym_u64] = ACTIONS(1329), - [anon_sym_i64] = ACTIONS(1329), - [anon_sym_u128] = ACTIONS(1329), - [anon_sym_i128] = ACTIONS(1329), - [anon_sym_isize] = ACTIONS(1329), - [anon_sym_usize] = ACTIONS(1329), - [anon_sym_f32] = ACTIONS(1329), - [anon_sym_f64] = ACTIONS(1329), - [anon_sym_bool] = ACTIONS(1329), - [anon_sym_str] = ACTIONS(1329), - [anon_sym_char] = ACTIONS(1329), - [anon_sym_DASH] = ACTIONS(1241), - [anon_sym_BANG] = ACTIONS(1243), - [anon_sym_AMP] = ACTIONS(1331), - [anon_sym_PIPE] = ACTIONS(1247), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1379), - [anon_sym_DOT_DOT] = ACTIONS(1251), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1253), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1255), - [anon_sym_COLON_COLON] = ACTIONS(1337), - [anon_sym_POUND] = ACTIONS(1261), - [anon_sym_SQUOTE] = ACTIONS(1263), - [anon_sym_async] = ACTIONS(1265), - [anon_sym_const] = ACTIONS(1267), - [anon_sym_default] = ACTIONS(1339), - [anon_sym_fn] = ACTIONS(1271), - [anon_sym_for] = ACTIONS(1273), - [anon_sym_gen] = ACTIONS(1341), - [anon_sym_impl] = ACTIONS(1277), - [anon_sym_union] = ACTIONS(1341), - [anon_sym_unsafe] = ACTIONS(1265), - [anon_sym_extern] = ACTIONS(1279), - [anon_sym_ref] = ACTIONS(1281), - [anon_sym_dyn] = ACTIONS(1283), - [sym_mutable_specifier] = ACTIONS(1285), - [sym_integer_literal] = ACTIONS(1287), - [aux_sym_string_literal_token1] = ACTIONS(1289), - [sym_char_literal] = ACTIONS(1287), - [anon_sym_true] = ACTIONS(1291), - [anon_sym_false] = ACTIONS(1291), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1343), - [sym_super] = ACTIONS(1345), - [sym_crate] = ACTIONS(1345), - [sym_metavariable] = ACTIONS(1347), - [sym__raw_string_literal_start] = ACTIONS(1299), - [sym_float_literal] = ACTIONS(1287), - }, - [STATE(386)] = { - [sym_attribute_item] = STATE(423), - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_self_parameter] = STATE(3147), - [sym_variadic_parameter] = STATE(3147), - [sym_parameter] = STATE(3147), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2975), - [sym_bracketed_type] = STATE(3644), - [sym_lifetime] = STATE(3011), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3299), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2550), - [sym_scoped_identifier] = STATE(2273), - [sym_scoped_type_identifier] = STATE(2154), - [sym_const_block] = STATE(2150), - [sym__pattern] = STATE(3345), - [sym_generic_pattern] = STATE(2150), - [sym_tuple_pattern] = STATE(2150), - [sym_slice_pattern] = STATE(2150), - [sym_tuple_struct_pattern] = STATE(2150), - [sym_struct_pattern] = STATE(2150), - [sym_remaining_field_pattern] = STATE(2150), - [sym_mut_pattern] = STATE(2150), - [sym_range_pattern] = STATE(2150), - [sym_ref_pattern] = STATE(2150), - [sym_captured_pattern] = STATE(2150), - [sym_reference_pattern] = STATE(2150), - [sym_or_pattern] = STATE(2150), - [sym__literal_pattern] = STATE(2076), - [sym_negative_literal] = STATE(2074), - [sym_string_literal] = STATE(2074), - [sym_raw_string_literal] = STATE(2074), - [sym_boolean_literal] = STATE(2074), - [sym_line_comment] = STATE(386), - [sym_block_comment] = STATE(386), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(1323), - [anon_sym_LPAREN] = ACTIONS(1325), - [anon_sym_RPAREN] = ACTIONS(1407), - [anon_sym_LBRACK] = ACTIONS(1233), - [anon_sym_STAR] = ACTIONS(1235), - [anon_sym_QMARK] = ACTIONS(1237), - [anon_sym_u8] = ACTIONS(1329), - [anon_sym_i8] = ACTIONS(1329), - [anon_sym_u16] = ACTIONS(1329), - [anon_sym_i16] = ACTIONS(1329), - [anon_sym_u32] = ACTIONS(1329), - [anon_sym_i32] = ACTIONS(1329), - [anon_sym_u64] = ACTIONS(1329), - [anon_sym_i64] = ACTIONS(1329), - [anon_sym_u128] = ACTIONS(1329), - [anon_sym_i128] = ACTIONS(1329), - [anon_sym_isize] = ACTIONS(1329), - [anon_sym_usize] = ACTIONS(1329), - [anon_sym_f32] = ACTIONS(1329), - [anon_sym_f64] = ACTIONS(1329), - [anon_sym_bool] = ACTIONS(1329), - [anon_sym_str] = ACTIONS(1329), - [anon_sym_char] = ACTIONS(1329), - [anon_sym_DASH] = ACTIONS(1241), - [anon_sym_BANG] = ACTIONS(1243), - [anon_sym_AMP] = ACTIONS(1331), - [anon_sym_PIPE] = ACTIONS(1247), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1379), - [anon_sym_DOT_DOT] = ACTIONS(1251), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1253), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1255), - [anon_sym_COLON_COLON] = ACTIONS(1337), - [anon_sym_POUND] = ACTIONS(1261), - [anon_sym_SQUOTE] = ACTIONS(1263), - [anon_sym_async] = ACTIONS(1265), - [anon_sym_const] = ACTIONS(1267), - [anon_sym_default] = ACTIONS(1339), - [anon_sym_fn] = ACTIONS(1271), - [anon_sym_for] = ACTIONS(1273), - [anon_sym_gen] = ACTIONS(1341), - [anon_sym_impl] = ACTIONS(1277), - [anon_sym_union] = ACTIONS(1341), - [anon_sym_unsafe] = ACTIONS(1265), - [anon_sym_extern] = ACTIONS(1279), - [anon_sym_ref] = ACTIONS(1281), - [anon_sym_dyn] = ACTIONS(1283), - [sym_mutable_specifier] = ACTIONS(1285), - [sym_integer_literal] = ACTIONS(1287), - [aux_sym_string_literal_token1] = ACTIONS(1289), - [sym_char_literal] = ACTIONS(1287), - [anon_sym_true] = ACTIONS(1291), - [anon_sym_false] = ACTIONS(1291), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1343), - [sym_super] = ACTIONS(1345), - [sym_crate] = ACTIONS(1345), - [sym_metavariable] = ACTIONS(1347), - [sym__raw_string_literal_start] = ACTIONS(1299), - [sym_float_literal] = ACTIONS(1287), - }, - [STATE(387)] = { - [sym_attribute_item] = STATE(423), - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_self_parameter] = STATE(3147), - [sym_variadic_parameter] = STATE(3147), - [sym_parameter] = STATE(3147), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2975), - [sym_bracketed_type] = STATE(3644), - [sym_lifetime] = STATE(3011), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3299), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2550), - [sym_scoped_identifier] = STATE(2273), - [sym_scoped_type_identifier] = STATE(2154), - [sym_const_block] = STATE(2150), - [sym__pattern] = STATE(3345), - [sym_generic_pattern] = STATE(2150), - [sym_tuple_pattern] = STATE(2150), - [sym_slice_pattern] = STATE(2150), - [sym_tuple_struct_pattern] = STATE(2150), - [sym_struct_pattern] = STATE(2150), - [sym_remaining_field_pattern] = STATE(2150), - [sym_mut_pattern] = STATE(2150), - [sym_range_pattern] = STATE(2150), - [sym_ref_pattern] = STATE(2150), - [sym_captured_pattern] = STATE(2150), - [sym_reference_pattern] = STATE(2150), - [sym_or_pattern] = STATE(2150), - [sym__literal_pattern] = STATE(2076), - [sym_negative_literal] = STATE(2074), - [sym_string_literal] = STATE(2074), - [sym_raw_string_literal] = STATE(2074), - [sym_boolean_literal] = STATE(2074), - [sym_line_comment] = STATE(387), - [sym_block_comment] = STATE(387), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(1323), - [anon_sym_LPAREN] = ACTIONS(1325), - [anon_sym_RPAREN] = ACTIONS(1409), - [anon_sym_LBRACK] = ACTIONS(1233), - [anon_sym_STAR] = ACTIONS(1235), - [anon_sym_QMARK] = ACTIONS(1237), - [anon_sym_u8] = ACTIONS(1329), - [anon_sym_i8] = ACTIONS(1329), - [anon_sym_u16] = ACTIONS(1329), - [anon_sym_i16] = ACTIONS(1329), - [anon_sym_u32] = ACTIONS(1329), - [anon_sym_i32] = ACTIONS(1329), - [anon_sym_u64] = ACTIONS(1329), - [anon_sym_i64] = ACTIONS(1329), - [anon_sym_u128] = ACTIONS(1329), - [anon_sym_i128] = ACTIONS(1329), - [anon_sym_isize] = ACTIONS(1329), - [anon_sym_usize] = ACTIONS(1329), - [anon_sym_f32] = ACTIONS(1329), - [anon_sym_f64] = ACTIONS(1329), - [anon_sym_bool] = ACTIONS(1329), - [anon_sym_str] = ACTIONS(1329), - [anon_sym_char] = ACTIONS(1329), - [anon_sym_DASH] = ACTIONS(1241), - [anon_sym_BANG] = ACTIONS(1243), - [anon_sym_AMP] = ACTIONS(1331), - [anon_sym_PIPE] = ACTIONS(1247), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1379), - [anon_sym_DOT_DOT] = ACTIONS(1251), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1253), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1255), - [anon_sym_COLON_COLON] = ACTIONS(1337), - [anon_sym_POUND] = ACTIONS(1261), - [anon_sym_SQUOTE] = ACTIONS(1263), - [anon_sym_async] = ACTIONS(1265), - [anon_sym_const] = ACTIONS(1267), - [anon_sym_default] = ACTIONS(1339), - [anon_sym_fn] = ACTIONS(1271), - [anon_sym_for] = ACTIONS(1273), - [anon_sym_gen] = ACTIONS(1341), - [anon_sym_impl] = ACTIONS(1277), - [anon_sym_union] = ACTIONS(1341), - [anon_sym_unsafe] = ACTIONS(1265), - [anon_sym_extern] = ACTIONS(1279), - [anon_sym_ref] = ACTIONS(1281), - [anon_sym_dyn] = ACTIONS(1283), - [sym_mutable_specifier] = ACTIONS(1285), - [sym_integer_literal] = ACTIONS(1287), - [aux_sym_string_literal_token1] = ACTIONS(1289), - [sym_char_literal] = ACTIONS(1287), - [anon_sym_true] = ACTIONS(1291), - [anon_sym_false] = ACTIONS(1291), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1343), - [sym_super] = ACTIONS(1345), - [sym_crate] = ACTIONS(1345), - [sym_metavariable] = ACTIONS(1347), - [sym__raw_string_literal_start] = ACTIONS(1299), - [sym_float_literal] = ACTIONS(1287), - }, - [STATE(388)] = { - [sym_attribute_item] = STATE(423), - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_self_parameter] = STATE(3147), - [sym_variadic_parameter] = STATE(3147), - [sym_parameter] = STATE(3147), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2975), - [sym_bracketed_type] = STATE(3644), - [sym_lifetime] = STATE(3011), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3299), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2550), - [sym_scoped_identifier] = STATE(2273), - [sym_scoped_type_identifier] = STATE(2154), - [sym_const_block] = STATE(2150), - [sym__pattern] = STATE(3345), - [sym_generic_pattern] = STATE(2150), - [sym_tuple_pattern] = STATE(2150), - [sym_slice_pattern] = STATE(2150), - [sym_tuple_struct_pattern] = STATE(2150), - [sym_struct_pattern] = STATE(2150), - [sym_remaining_field_pattern] = STATE(2150), - [sym_mut_pattern] = STATE(2150), - [sym_range_pattern] = STATE(2150), - [sym_ref_pattern] = STATE(2150), - [sym_captured_pattern] = STATE(2150), - [sym_reference_pattern] = STATE(2150), - [sym_or_pattern] = STATE(2150), - [sym__literal_pattern] = STATE(2076), - [sym_negative_literal] = STATE(2074), - [sym_string_literal] = STATE(2074), - [sym_raw_string_literal] = STATE(2074), - [sym_boolean_literal] = STATE(2074), - [sym_line_comment] = STATE(388), - [sym_block_comment] = STATE(388), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(1323), - [anon_sym_LPAREN] = ACTIONS(1325), - [anon_sym_RPAREN] = ACTIONS(1411), - [anon_sym_LBRACK] = ACTIONS(1233), - [anon_sym_STAR] = ACTIONS(1235), - [anon_sym_QMARK] = ACTIONS(1237), - [anon_sym_u8] = ACTIONS(1329), - [anon_sym_i8] = ACTIONS(1329), - [anon_sym_u16] = ACTIONS(1329), - [anon_sym_i16] = ACTIONS(1329), - [anon_sym_u32] = ACTIONS(1329), - [anon_sym_i32] = ACTIONS(1329), - [anon_sym_u64] = ACTIONS(1329), - [anon_sym_i64] = ACTIONS(1329), - [anon_sym_u128] = ACTIONS(1329), - [anon_sym_i128] = ACTIONS(1329), - [anon_sym_isize] = ACTIONS(1329), - [anon_sym_usize] = ACTIONS(1329), - [anon_sym_f32] = ACTIONS(1329), - [anon_sym_f64] = ACTIONS(1329), - [anon_sym_bool] = ACTIONS(1329), - [anon_sym_str] = ACTIONS(1329), - [anon_sym_char] = ACTIONS(1329), - [anon_sym_DASH] = ACTIONS(1241), - [anon_sym_BANG] = ACTIONS(1243), - [anon_sym_AMP] = ACTIONS(1331), - [anon_sym_PIPE] = ACTIONS(1247), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1379), - [anon_sym_DOT_DOT] = ACTIONS(1251), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1253), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1255), - [anon_sym_COLON_COLON] = ACTIONS(1337), - [anon_sym_POUND] = ACTIONS(1261), - [anon_sym_SQUOTE] = ACTIONS(1263), - [anon_sym_async] = ACTIONS(1265), - [anon_sym_const] = ACTIONS(1267), - [anon_sym_default] = ACTIONS(1339), - [anon_sym_fn] = ACTIONS(1271), - [anon_sym_for] = ACTIONS(1273), - [anon_sym_gen] = ACTIONS(1341), - [anon_sym_impl] = ACTIONS(1277), - [anon_sym_union] = ACTIONS(1341), - [anon_sym_unsafe] = ACTIONS(1265), - [anon_sym_extern] = ACTIONS(1279), - [anon_sym_ref] = ACTIONS(1281), - [anon_sym_dyn] = ACTIONS(1283), - [sym_mutable_specifier] = ACTIONS(1285), - [sym_integer_literal] = ACTIONS(1287), - [aux_sym_string_literal_token1] = ACTIONS(1289), - [sym_char_literal] = ACTIONS(1287), - [anon_sym_true] = ACTIONS(1291), - [anon_sym_false] = ACTIONS(1291), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1343), - [sym_super] = ACTIONS(1345), - [sym_crate] = ACTIONS(1345), - [sym_metavariable] = ACTIONS(1347), - [sym__raw_string_literal_start] = ACTIONS(1299), - [sym_float_literal] = ACTIONS(1287), - }, - [STATE(389)] = { - [sym_line_comment] = STATE(389), - [sym_block_comment] = STATE(389), - [ts_builtin_sym_end] = ACTIONS(1413), - [sym_identifier] = ACTIONS(1415), - [anon_sym_SEMI] = ACTIONS(1413), - [anon_sym_macro_rules_BANG] = ACTIONS(1413), - [anon_sym_LPAREN] = ACTIONS(1413), - [anon_sym_LBRACK] = ACTIONS(1413), - [anon_sym_LBRACE] = ACTIONS(1413), - [anon_sym_RBRACE] = ACTIONS(1413), - [anon_sym_PLUS] = ACTIONS(1415), - [anon_sym_STAR] = ACTIONS(1415), - [anon_sym_QMARK] = ACTIONS(1413), - [anon_sym_u8] = ACTIONS(1415), - [anon_sym_i8] = ACTIONS(1415), - [anon_sym_u16] = ACTIONS(1415), - [anon_sym_i16] = ACTIONS(1415), - [anon_sym_u32] = ACTIONS(1415), - [anon_sym_i32] = ACTIONS(1415), - [anon_sym_u64] = ACTIONS(1415), - [anon_sym_i64] = ACTIONS(1415), - [anon_sym_u128] = ACTIONS(1415), - [anon_sym_i128] = ACTIONS(1415), - [anon_sym_isize] = ACTIONS(1415), - [anon_sym_usize] = ACTIONS(1415), - [anon_sym_f32] = ACTIONS(1415), - [anon_sym_f64] = ACTIONS(1415), - [anon_sym_bool] = ACTIONS(1415), - [anon_sym_str] = ACTIONS(1415), - [anon_sym_char] = ACTIONS(1415), - [anon_sym_DASH] = ACTIONS(1415), - [anon_sym_SLASH] = ACTIONS(1415), - [anon_sym_PERCENT] = ACTIONS(1415), - [anon_sym_CARET] = ACTIONS(1415), - [anon_sym_BANG] = ACTIONS(1415), - [anon_sym_AMP] = ACTIONS(1415), - [anon_sym_PIPE] = ACTIONS(1415), - [anon_sym_AMP_AMP] = ACTIONS(1413), - [anon_sym_PIPE_PIPE] = ACTIONS(1413), - [anon_sym_LT_LT] = ACTIONS(1415), - [anon_sym_GT_GT] = ACTIONS(1415), - [anon_sym_PLUS_EQ] = ACTIONS(1413), - [anon_sym_DASH_EQ] = ACTIONS(1413), - [anon_sym_STAR_EQ] = ACTIONS(1413), - [anon_sym_SLASH_EQ] = ACTIONS(1413), - [anon_sym_PERCENT_EQ] = ACTIONS(1413), - [anon_sym_CARET_EQ] = ACTIONS(1413), - [anon_sym_AMP_EQ] = ACTIONS(1413), - [anon_sym_PIPE_EQ] = ACTIONS(1413), - [anon_sym_LT_LT_EQ] = ACTIONS(1413), - [anon_sym_GT_GT_EQ] = ACTIONS(1413), - [anon_sym_EQ] = ACTIONS(1415), - [anon_sym_EQ_EQ] = ACTIONS(1413), - [anon_sym_BANG_EQ] = ACTIONS(1413), - [anon_sym_GT] = ACTIONS(1415), - [anon_sym_LT] = ACTIONS(1415), - [anon_sym_GT_EQ] = ACTIONS(1413), - [anon_sym_LT_EQ] = ACTIONS(1413), - [anon_sym_DOT] = ACTIONS(1415), - [anon_sym_DOT_DOT] = ACTIONS(1415), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1413), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1413), - [anon_sym_COLON_COLON] = ACTIONS(1413), - [anon_sym_POUND] = ACTIONS(1413), - [anon_sym_SQUOTE] = ACTIONS(1415), - [anon_sym_as] = ACTIONS(1415), - [anon_sym_async] = ACTIONS(1415), - [anon_sym_break] = ACTIONS(1415), - [anon_sym_const] = ACTIONS(1415), - [anon_sym_continue] = ACTIONS(1415), - [anon_sym_default] = ACTIONS(1415), - [anon_sym_enum] = ACTIONS(1415), - [anon_sym_fn] = ACTIONS(1415), - [anon_sym_for] = ACTIONS(1415), - [anon_sym_gen] = ACTIONS(1415), - [anon_sym_if] = ACTIONS(1415), - [anon_sym_impl] = ACTIONS(1415), - [anon_sym_let] = ACTIONS(1415), - [anon_sym_loop] = ACTIONS(1415), - [anon_sym_match] = ACTIONS(1415), - [anon_sym_mod] = ACTIONS(1415), - [anon_sym_pub] = ACTIONS(1415), - [anon_sym_return] = ACTIONS(1415), - [anon_sym_static] = ACTIONS(1415), - [anon_sym_struct] = ACTIONS(1415), - [anon_sym_trait] = ACTIONS(1415), - [anon_sym_type] = ACTIONS(1415), - [anon_sym_union] = ACTIONS(1415), - [anon_sym_unsafe] = ACTIONS(1415), - [anon_sym_use] = ACTIONS(1415), - [anon_sym_while] = ACTIONS(1415), - [anon_sym_extern] = ACTIONS(1415), - [anon_sym_else] = ACTIONS(1415), - [anon_sym_yield] = ACTIONS(1415), - [anon_sym_move] = ACTIONS(1415), - [anon_sym_try] = ACTIONS(1415), - [sym_integer_literal] = ACTIONS(1413), - [aux_sym_string_literal_token1] = ACTIONS(1413), - [sym_char_literal] = ACTIONS(1413), - [anon_sym_true] = ACTIONS(1415), - [anon_sym_false] = ACTIONS(1415), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1415), - [sym_super] = ACTIONS(1415), - [sym_crate] = ACTIONS(1415), - [sym_metavariable] = ACTIONS(1413), - [sym__raw_string_literal_start] = ACTIONS(1413), - [sym_float_literal] = ACTIONS(1413), - }, - [STATE(390)] = { - [sym_line_comment] = STATE(390), - [sym_block_comment] = STATE(390), - [ts_builtin_sym_end] = ACTIONS(1417), - [sym_identifier] = ACTIONS(1419), - [anon_sym_SEMI] = ACTIONS(1417), - [anon_sym_macro_rules_BANG] = ACTIONS(1417), - [anon_sym_LPAREN] = ACTIONS(1417), - [anon_sym_LBRACK] = ACTIONS(1417), - [anon_sym_LBRACE] = ACTIONS(1417), - [anon_sym_RBRACE] = ACTIONS(1417), - [anon_sym_PLUS] = ACTIONS(1419), - [anon_sym_STAR] = ACTIONS(1419), - [anon_sym_QMARK] = ACTIONS(1417), - [anon_sym_u8] = ACTIONS(1419), - [anon_sym_i8] = ACTIONS(1419), - [anon_sym_u16] = ACTIONS(1419), - [anon_sym_i16] = ACTIONS(1419), - [anon_sym_u32] = ACTIONS(1419), - [anon_sym_i32] = ACTIONS(1419), - [anon_sym_u64] = ACTIONS(1419), - [anon_sym_i64] = ACTIONS(1419), - [anon_sym_u128] = ACTIONS(1419), - [anon_sym_i128] = ACTIONS(1419), - [anon_sym_isize] = ACTIONS(1419), - [anon_sym_usize] = ACTIONS(1419), - [anon_sym_f32] = ACTIONS(1419), - [anon_sym_f64] = ACTIONS(1419), - [anon_sym_bool] = ACTIONS(1419), - [anon_sym_str] = ACTIONS(1419), - [anon_sym_char] = ACTIONS(1419), - [anon_sym_DASH] = ACTIONS(1419), - [anon_sym_SLASH] = ACTIONS(1419), - [anon_sym_PERCENT] = ACTIONS(1419), - [anon_sym_CARET] = ACTIONS(1419), - [anon_sym_BANG] = ACTIONS(1419), - [anon_sym_AMP] = ACTIONS(1419), - [anon_sym_PIPE] = ACTIONS(1419), - [anon_sym_AMP_AMP] = ACTIONS(1417), - [anon_sym_PIPE_PIPE] = ACTIONS(1417), - [anon_sym_LT_LT] = ACTIONS(1419), - [anon_sym_GT_GT] = ACTIONS(1419), - [anon_sym_PLUS_EQ] = ACTIONS(1417), - [anon_sym_DASH_EQ] = ACTIONS(1417), - [anon_sym_STAR_EQ] = ACTIONS(1417), - [anon_sym_SLASH_EQ] = ACTIONS(1417), - [anon_sym_PERCENT_EQ] = ACTIONS(1417), - [anon_sym_CARET_EQ] = ACTIONS(1417), - [anon_sym_AMP_EQ] = ACTIONS(1417), - [anon_sym_PIPE_EQ] = ACTIONS(1417), - [anon_sym_LT_LT_EQ] = ACTIONS(1417), - [anon_sym_GT_GT_EQ] = ACTIONS(1417), - [anon_sym_EQ] = ACTIONS(1419), - [anon_sym_EQ_EQ] = ACTIONS(1417), - [anon_sym_BANG_EQ] = ACTIONS(1417), - [anon_sym_GT] = ACTIONS(1419), - [anon_sym_LT] = ACTIONS(1419), - [anon_sym_GT_EQ] = ACTIONS(1417), - [anon_sym_LT_EQ] = ACTIONS(1417), - [anon_sym_DOT] = ACTIONS(1419), - [anon_sym_DOT_DOT] = ACTIONS(1419), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1417), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1417), - [anon_sym_COLON_COLON] = ACTIONS(1417), - [anon_sym_POUND] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1419), - [anon_sym_as] = ACTIONS(1419), - [anon_sym_async] = ACTIONS(1419), - [anon_sym_break] = ACTIONS(1419), - [anon_sym_const] = ACTIONS(1419), - [anon_sym_continue] = ACTIONS(1419), - [anon_sym_default] = ACTIONS(1419), - [anon_sym_enum] = ACTIONS(1419), - [anon_sym_fn] = ACTIONS(1419), - [anon_sym_for] = ACTIONS(1419), - [anon_sym_gen] = ACTIONS(1419), - [anon_sym_if] = ACTIONS(1419), - [anon_sym_impl] = ACTIONS(1419), - [anon_sym_let] = ACTIONS(1419), - [anon_sym_loop] = ACTIONS(1419), - [anon_sym_match] = ACTIONS(1419), - [anon_sym_mod] = ACTIONS(1419), - [anon_sym_pub] = ACTIONS(1419), - [anon_sym_return] = ACTIONS(1419), - [anon_sym_static] = ACTIONS(1419), - [anon_sym_struct] = ACTIONS(1419), - [anon_sym_trait] = ACTIONS(1419), - [anon_sym_type] = ACTIONS(1419), - [anon_sym_union] = ACTIONS(1419), - [anon_sym_unsafe] = ACTIONS(1419), - [anon_sym_use] = ACTIONS(1419), - [anon_sym_while] = ACTIONS(1419), - [anon_sym_extern] = ACTIONS(1419), - [anon_sym_yield] = ACTIONS(1419), - [anon_sym_move] = ACTIONS(1419), - [anon_sym_try] = ACTIONS(1419), - [sym_integer_literal] = ACTIONS(1417), - [aux_sym_string_literal_token1] = ACTIONS(1417), - [sym_char_literal] = ACTIONS(1417), - [anon_sym_true] = ACTIONS(1419), - [anon_sym_false] = ACTIONS(1419), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1419), - [sym_super] = ACTIONS(1419), - [sym_crate] = ACTIONS(1419), - [sym_metavariable] = ACTIONS(1417), - [sym__raw_string_literal_start] = ACTIONS(1417), - [sym_float_literal] = ACTIONS(1417), + [anon_sym_async] = ACTIONS(356), + [anon_sym_break] = ACTIONS(510), + [anon_sym_const] = ACTIONS(358), + [anon_sym_continue] = ACTIONS(512), + [anon_sym_default] = ACTIONS(480), + [anon_sym_for] = ACTIONS(362), + [anon_sym_gen] = ACTIONS(514), + [anon_sym_if] = ACTIONS(366), + [anon_sym_loop] = ACTIONS(368), + [anon_sym_match] = ACTIONS(370), + [anon_sym_return] = ACTIONS(516), + [anon_sym_static] = ACTIONS(518), + [anon_sym_union] = ACTIONS(480), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [anon_sym_yield] = ACTIONS(520), + [anon_sym_move] = ACTIONS(522), + [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(492), + [sym_super] = ACTIONS(494), + [sym_crate] = ACTIONS(494), + [sym_metavariable] = ACTIONS(496), + [sym__raw_string_literal_start] = ACTIONS(119), + [sym_float_literal] = ACTIONS(99), }, [STATE(391)] = { + [sym_bracketed_type] = STATE(3650), + [sym_generic_function] = STATE(1711), + [sym_generic_type_with_turbofish] = STATE(3091), + [sym__expression_except_range] = STATE(1658), + [sym__expression] = STATE(1807), + [sym_macro_invocation] = STATE(1717), + [sym_scoped_identifier] = STATE(1623), + [sym_scoped_type_identifier_in_expression_position] = STATE(3337), + [sym_range_expression] = STATE(1715), + [sym_unary_expression] = STATE(1711), + [sym_try_expression] = STATE(1711), + [sym_reference_expression] = STATE(1711), + [sym_binary_expression] = STATE(1711), + [sym_assignment_expression] = STATE(1711), + [sym_compound_assignment_expr] = STATE(1711), + [sym_type_cast_expression] = STATE(1711), + [sym_return_expression] = STATE(1711), + [sym_yield_expression] = STATE(1711), + [sym_call_expression] = STATE(1711), + [sym_array_expression] = STATE(1711), + [sym_parenthesized_expression] = STATE(1711), + [sym_tuple_expression] = STATE(1711), + [sym_unit_expression] = STATE(1711), + [sym_struct_expression] = STATE(1711), + [sym_if_expression] = STATE(1711), + [sym_match_expression] = STATE(1711), + [sym_while_expression] = STATE(1711), + [sym_loop_expression] = STATE(1711), + [sym_for_expression] = STATE(1711), + [sym_const_block] = STATE(1711), + [sym_closure_expression] = STATE(1711), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3742), + [sym_break_expression] = STATE(1711), + [sym_continue_expression] = STATE(1711), + [sym_index_expression] = STATE(1711), + [sym_await_expression] = STATE(1711), + [sym_field_expression] = STATE(1690), + [sym_unsafe_block] = STATE(1711), + [sym_async_block] = STATE(1711), + [sym_gen_block] = STATE(1711), + [sym_try_block] = STATE(1711), + [sym_block] = STATE(1711), + [sym__literal] = STATE(1711), + [sym_string_literal] = STATE(1831), + [sym_raw_string_literal] = STATE(1831), + [sym_boolean_literal] = STATE(1831), [sym_line_comment] = STATE(391), [sym_block_comment] = STATE(391), - [ts_builtin_sym_end] = ACTIONS(1421), - [sym_identifier] = ACTIONS(1423), - [anon_sym_SEMI] = ACTIONS(1421), - [anon_sym_macro_rules_BANG] = ACTIONS(1421), - [anon_sym_LPAREN] = ACTIONS(1421), - [anon_sym_LBRACK] = ACTIONS(1421), - [anon_sym_LBRACE] = ACTIONS(1421), - [anon_sym_RBRACE] = ACTIONS(1421), - [anon_sym_PLUS] = ACTIONS(1423), - [anon_sym_STAR] = ACTIONS(1423), - [anon_sym_QMARK] = ACTIONS(1421), - [anon_sym_u8] = ACTIONS(1423), - [anon_sym_i8] = ACTIONS(1423), - [anon_sym_u16] = ACTIONS(1423), - [anon_sym_i16] = ACTIONS(1423), - [anon_sym_u32] = ACTIONS(1423), - [anon_sym_i32] = ACTIONS(1423), - [anon_sym_u64] = ACTIONS(1423), - [anon_sym_i64] = ACTIONS(1423), - [anon_sym_u128] = ACTIONS(1423), - [anon_sym_i128] = ACTIONS(1423), - [anon_sym_isize] = ACTIONS(1423), - [anon_sym_usize] = ACTIONS(1423), - [anon_sym_f32] = ACTIONS(1423), - [anon_sym_f64] = ACTIONS(1423), - [anon_sym_bool] = ACTIONS(1423), - [anon_sym_str] = ACTIONS(1423), - [anon_sym_char] = ACTIONS(1423), - [anon_sym_DASH] = ACTIONS(1423), - [anon_sym_SLASH] = ACTIONS(1423), - [anon_sym_PERCENT] = ACTIONS(1423), - [anon_sym_CARET] = ACTIONS(1423), - [anon_sym_BANG] = ACTIONS(1423), - [anon_sym_AMP] = ACTIONS(1423), - [anon_sym_PIPE] = ACTIONS(1423), - [anon_sym_AMP_AMP] = ACTIONS(1421), - [anon_sym_PIPE_PIPE] = ACTIONS(1421), - [anon_sym_LT_LT] = ACTIONS(1423), - [anon_sym_GT_GT] = ACTIONS(1423), - [anon_sym_PLUS_EQ] = ACTIONS(1421), - [anon_sym_DASH_EQ] = ACTIONS(1421), - [anon_sym_STAR_EQ] = ACTIONS(1421), - [anon_sym_SLASH_EQ] = ACTIONS(1421), - [anon_sym_PERCENT_EQ] = ACTIONS(1421), - [anon_sym_CARET_EQ] = ACTIONS(1421), - [anon_sym_AMP_EQ] = ACTIONS(1421), - [anon_sym_PIPE_EQ] = ACTIONS(1421), - [anon_sym_LT_LT_EQ] = ACTIONS(1421), - [anon_sym_GT_GT_EQ] = ACTIONS(1421), - [anon_sym_EQ] = ACTIONS(1423), - [anon_sym_EQ_EQ] = ACTIONS(1421), - [anon_sym_BANG_EQ] = ACTIONS(1421), - [anon_sym_GT] = ACTIONS(1423), - [anon_sym_LT] = ACTIONS(1423), - [anon_sym_GT_EQ] = ACTIONS(1421), - [anon_sym_LT_EQ] = ACTIONS(1421), - [anon_sym_DOT] = ACTIONS(1423), - [anon_sym_DOT_DOT] = ACTIONS(1423), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1421), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1421), - [anon_sym_COLON_COLON] = ACTIONS(1421), - [anon_sym_POUND] = ACTIONS(1421), - [anon_sym_SQUOTE] = ACTIONS(1423), - [anon_sym_as] = ACTIONS(1423), - [anon_sym_async] = ACTIONS(1423), - [anon_sym_break] = ACTIONS(1423), - [anon_sym_const] = ACTIONS(1423), - [anon_sym_continue] = ACTIONS(1423), - [anon_sym_default] = ACTIONS(1423), - [anon_sym_enum] = ACTIONS(1423), - [anon_sym_fn] = ACTIONS(1423), - [anon_sym_for] = ACTIONS(1423), - [anon_sym_gen] = ACTIONS(1423), - [anon_sym_if] = ACTIONS(1423), - [anon_sym_impl] = ACTIONS(1423), - [anon_sym_let] = ACTIONS(1423), - [anon_sym_loop] = ACTIONS(1423), - [anon_sym_match] = ACTIONS(1423), - [anon_sym_mod] = ACTIONS(1423), - [anon_sym_pub] = ACTIONS(1423), - [anon_sym_return] = ACTIONS(1423), - [anon_sym_static] = ACTIONS(1423), - [anon_sym_struct] = ACTIONS(1423), - [anon_sym_trait] = ACTIONS(1423), - [anon_sym_type] = ACTIONS(1423), - [anon_sym_union] = ACTIONS(1423), - [anon_sym_unsafe] = ACTIONS(1423), - [anon_sym_use] = ACTIONS(1423), - [anon_sym_while] = ACTIONS(1423), - [anon_sym_extern] = ACTIONS(1423), - [anon_sym_yield] = ACTIONS(1423), - [anon_sym_move] = ACTIONS(1423), - [anon_sym_try] = ACTIONS(1423), - [sym_integer_literal] = ACTIONS(1421), - [aux_sym_string_literal_token1] = ACTIONS(1421), - [sym_char_literal] = ACTIONS(1421), - [anon_sym_true] = ACTIONS(1423), - [anon_sym_false] = ACTIONS(1423), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1423), - [sym_super] = ACTIONS(1423), - [sym_crate] = ACTIONS(1423), - [sym_metavariable] = ACTIONS(1421), - [sym__raw_string_literal_start] = ACTIONS(1421), - [sym_float_literal] = ACTIONS(1421), + [sym_identifier] = ACTIONS(410), + [anon_sym_LPAREN] = ACTIONS(498), + [anon_sym_LBRACK] = ACTIONS(500), + [anon_sym_LBRACE] = ACTIONS(412), + [anon_sym_STAR] = ACTIONS(990), + [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(990), + [anon_sym_BANG] = ACTIONS(990), + [anon_sym_AMP] = ACTIONS(992), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1176), + [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_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(392)] = { + [sym_function_modifiers] = STATE(3591), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2373), + [sym__type] = STATE(2638), + [sym_bracketed_type] = STATE(3681), + [sym_lifetime] = STATE(3727), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1591), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2022), + [sym_generic_type_with_turbofish] = STATE(3160), + [sym_bounded_type] = STATE(2069), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2548), + [sym_scoped_identifier] = STATE(2208), + [sym_scoped_type_identifier] = STATE(2203), + [sym_const_block] = STATE(2163), + [sym_closure_expression] = STATE(3063), + [sym_closure_parameters] = STATE(220), + [sym__pattern] = STATE(2729), + [sym_generic_pattern] = STATE(2163), + [sym_tuple_pattern] = STATE(2163), + [sym_slice_pattern] = STATE(2163), + [sym_tuple_struct_pattern] = STATE(2163), + [sym_struct_pattern] = STATE(2163), + [sym_remaining_field_pattern] = STATE(2163), + [sym_mut_pattern] = STATE(2163), + [sym_range_pattern] = STATE(2163), + [sym_ref_pattern] = STATE(2163), + [sym_captured_pattern] = STATE(2163), + [sym_reference_pattern] = STATE(2163), + [sym_or_pattern] = STATE(2163), + [sym__literal_pattern] = STATE(2098), + [sym_negative_literal] = STATE(2095), + [sym_string_literal] = STATE(2095), + [sym_raw_string_literal] = STATE(2095), + [sym_boolean_literal] = STATE(2095), [sym_line_comment] = STATE(392), [sym_block_comment] = STATE(392), - [ts_builtin_sym_end] = ACTIONS(1425), - [sym_identifier] = ACTIONS(1427), - [anon_sym_SEMI] = ACTIONS(1425), - [anon_sym_macro_rules_BANG] = ACTIONS(1425), - [anon_sym_LPAREN] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(1425), - [anon_sym_LBRACE] = ACTIONS(1425), - [anon_sym_RBRACE] = ACTIONS(1425), - [anon_sym_PLUS] = ACTIONS(1429), - [anon_sym_STAR] = ACTIONS(1427), - [anon_sym_QMARK] = ACTIONS(1431), - [anon_sym_u8] = ACTIONS(1427), - [anon_sym_i8] = ACTIONS(1427), - [anon_sym_u16] = ACTIONS(1427), - [anon_sym_i16] = ACTIONS(1427), - [anon_sym_u32] = ACTIONS(1427), - [anon_sym_i32] = ACTIONS(1427), - [anon_sym_u64] = ACTIONS(1427), - [anon_sym_i64] = ACTIONS(1427), - [anon_sym_u128] = ACTIONS(1427), - [anon_sym_i128] = ACTIONS(1427), - [anon_sym_isize] = ACTIONS(1427), - [anon_sym_usize] = ACTIONS(1427), - [anon_sym_f32] = ACTIONS(1427), - [anon_sym_f64] = ACTIONS(1427), - [anon_sym_bool] = ACTIONS(1427), - [anon_sym_str] = ACTIONS(1427), - [anon_sym_char] = ACTIONS(1427), - [anon_sym_DASH] = ACTIONS(1427), - [anon_sym_SLASH] = ACTIONS(1429), - [anon_sym_PERCENT] = ACTIONS(1429), - [anon_sym_CARET] = ACTIONS(1429), - [anon_sym_BANG] = ACTIONS(1427), - [anon_sym_AMP] = ACTIONS(1427), - [anon_sym_PIPE] = ACTIONS(1427), - [anon_sym_AMP_AMP] = ACTIONS(1431), - [anon_sym_PIPE_PIPE] = ACTIONS(1431), - [anon_sym_LT_LT] = ACTIONS(1429), - [anon_sym_GT_GT] = ACTIONS(1429), - [anon_sym_PLUS_EQ] = ACTIONS(1431), - [anon_sym_DASH_EQ] = ACTIONS(1431), - [anon_sym_STAR_EQ] = ACTIONS(1431), - [anon_sym_SLASH_EQ] = ACTIONS(1431), - [anon_sym_PERCENT_EQ] = ACTIONS(1431), - [anon_sym_CARET_EQ] = ACTIONS(1431), - [anon_sym_AMP_EQ] = ACTIONS(1431), - [anon_sym_PIPE_EQ] = ACTIONS(1431), - [anon_sym_LT_LT_EQ] = ACTIONS(1431), - [anon_sym_GT_GT_EQ] = ACTIONS(1431), - [anon_sym_EQ] = ACTIONS(1429), - [anon_sym_EQ_EQ] = ACTIONS(1431), - [anon_sym_BANG_EQ] = ACTIONS(1431), - [anon_sym_GT] = ACTIONS(1429), - [anon_sym_LT] = ACTIONS(1427), - [anon_sym_GT_EQ] = ACTIONS(1431), - [anon_sym_LT_EQ] = ACTIONS(1431), - [anon_sym_DOT] = ACTIONS(1429), - [anon_sym_DOT_DOT] = ACTIONS(1427), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1431), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1431), - [anon_sym_COLON_COLON] = ACTIONS(1425), - [anon_sym_POUND] = ACTIONS(1425), - [anon_sym_SQUOTE] = ACTIONS(1427), - [anon_sym_as] = ACTIONS(1429), - [anon_sym_async] = ACTIONS(1427), - [anon_sym_break] = ACTIONS(1427), - [anon_sym_const] = ACTIONS(1427), - [anon_sym_continue] = ACTIONS(1427), - [anon_sym_default] = ACTIONS(1427), - [anon_sym_enum] = ACTIONS(1427), - [anon_sym_fn] = ACTIONS(1427), - [anon_sym_for] = ACTIONS(1427), - [anon_sym_gen] = ACTIONS(1427), - [anon_sym_if] = ACTIONS(1427), - [anon_sym_impl] = ACTIONS(1427), - [anon_sym_let] = ACTIONS(1427), - [anon_sym_loop] = ACTIONS(1427), - [anon_sym_match] = ACTIONS(1427), - [anon_sym_mod] = ACTIONS(1427), - [anon_sym_pub] = ACTIONS(1427), - [anon_sym_return] = ACTIONS(1427), - [anon_sym_static] = ACTIONS(1427), - [anon_sym_struct] = ACTIONS(1427), - [anon_sym_trait] = ACTIONS(1427), - [anon_sym_type] = ACTIONS(1427), - [anon_sym_union] = ACTIONS(1427), - [anon_sym_unsafe] = ACTIONS(1427), - [anon_sym_use] = ACTIONS(1427), - [anon_sym_while] = ACTIONS(1427), - [anon_sym_extern] = ACTIONS(1427), - [anon_sym_yield] = ACTIONS(1427), - [anon_sym_move] = ACTIONS(1427), - [anon_sym_try] = ACTIONS(1427), - [sym_integer_literal] = ACTIONS(1425), - [aux_sym_string_literal_token1] = ACTIONS(1425), - [sym_char_literal] = ACTIONS(1425), - [anon_sym_true] = ACTIONS(1427), - [anon_sym_false] = ACTIONS(1427), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1427), - [sym_super] = ACTIONS(1427), - [sym_crate] = ACTIONS(1427), - [sym_metavariable] = ACTIONS(1425), - [sym__raw_string_literal_start] = ACTIONS(1425), - [sym_float_literal] = ACTIONS(1425), + [aux_sym_function_modifiers_repeat1] = STATE(2244), + [sym_identifier] = ACTIONS(1232), + [anon_sym_LPAREN] = ACTIONS(1234), + [anon_sym_RPAREN] = ACTIONS(1422), + [anon_sym_LBRACK] = ACTIONS(1238), + [anon_sym_STAR] = ACTIONS(1240), + [anon_sym_QMARK] = ACTIONS(1242), + [anon_sym_u8] = ACTIONS(1244), + [anon_sym_i8] = ACTIONS(1244), + [anon_sym_u16] = ACTIONS(1244), + [anon_sym_i16] = ACTIONS(1244), + [anon_sym_u32] = ACTIONS(1244), + [anon_sym_i32] = ACTIONS(1244), + [anon_sym_u64] = ACTIONS(1244), + [anon_sym_i64] = ACTIONS(1244), + [anon_sym_u128] = ACTIONS(1244), + [anon_sym_i128] = ACTIONS(1244), + [anon_sym_isize] = ACTIONS(1244), + [anon_sym_usize] = ACTIONS(1244), + [anon_sym_f32] = ACTIONS(1244), + [anon_sym_f64] = ACTIONS(1244), + [anon_sym_bool] = ACTIONS(1244), + [anon_sym_str] = ACTIONS(1244), + [anon_sym_char] = ACTIONS(1244), + [anon_sym_DASH] = ACTIONS(1246), + [anon_sym_BANG] = ACTIONS(1248), + [anon_sym_AMP] = ACTIONS(1424), + [anon_sym_PIPE] = ACTIONS(1426), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1428), + [anon_sym_DOT_DOT] = ACTIONS(1256), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1260), + [anon_sym_COMMA] = ACTIONS(1430), + [anon_sym_COLON_COLON] = ACTIONS(1264), + [anon_sym_SQUOTE] = ACTIONS(1268), + [anon_sym_async] = ACTIONS(1270), + [anon_sym_const] = ACTIONS(1272), + [anon_sym_default] = ACTIONS(1274), + [anon_sym_fn] = ACTIONS(1276), + [anon_sym_for] = ACTIONS(1278), + [anon_sym_gen] = ACTIONS(1280), + [anon_sym_impl] = ACTIONS(1282), + [anon_sym_static] = ACTIONS(1432), + [anon_sym_union] = ACTIONS(1280), + [anon_sym_unsafe] = ACTIONS(1270), + [anon_sym_extern] = ACTIONS(1284), + [anon_sym_safe] = ACTIONS(1270), + [anon_sym_ref] = ACTIONS(1286), + [anon_sym_dyn] = ACTIONS(1288), + [sym_mutable_specifier] = ACTIONS(1434), + [anon_sym_move] = ACTIONS(1436), + [sym_integer_literal] = ACTIONS(1292), + [aux_sym_string_literal_token1] = ACTIONS(1294), + [sym_char_literal] = ACTIONS(1292), + [anon_sym_true] = ACTIONS(1296), + [anon_sym_false] = ACTIONS(1296), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1300), + [sym_super] = ACTIONS(1300), + [sym_crate] = ACTIONS(1300), + [sym_metavariable] = ACTIONS(1302), + [sym__raw_string_literal_start] = ACTIONS(1304), + [sym_float_literal] = ACTIONS(1292), }, [STATE(393)] = { + [sym_function_modifiers] = STATE(3591), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2373), + [sym__type] = STATE(2638), + [sym_bracketed_type] = STATE(3681), + [sym_lifetime] = STATE(3727), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1591), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2022), + [sym_generic_type_with_turbofish] = STATE(3160), + [sym_bounded_type] = STATE(2069), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2548), + [sym_scoped_identifier] = STATE(2208), + [sym_scoped_type_identifier] = STATE(2203), + [sym_const_block] = STATE(2163), + [sym_closure_expression] = STATE(3063), + [sym_closure_parameters] = STATE(220), + [sym__pattern] = STATE(2729), + [sym_generic_pattern] = STATE(2163), + [sym_tuple_pattern] = STATE(2163), + [sym_slice_pattern] = STATE(2163), + [sym_tuple_struct_pattern] = STATE(2163), + [sym_struct_pattern] = STATE(2163), + [sym_remaining_field_pattern] = STATE(2163), + [sym_mut_pattern] = STATE(2163), + [sym_range_pattern] = STATE(2163), + [sym_ref_pattern] = STATE(2163), + [sym_captured_pattern] = STATE(2163), + [sym_reference_pattern] = STATE(2163), + [sym_or_pattern] = STATE(2163), + [sym__literal_pattern] = STATE(2098), + [sym_negative_literal] = STATE(2095), + [sym_string_literal] = STATE(2095), + [sym_raw_string_literal] = STATE(2095), + [sym_boolean_literal] = STATE(2095), [sym_line_comment] = STATE(393), [sym_block_comment] = STATE(393), - [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_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_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(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [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), + [aux_sym_function_modifiers_repeat1] = STATE(2244), + [sym_identifier] = ACTIONS(1232), + [anon_sym_LPAREN] = ACTIONS(1234), + [anon_sym_RPAREN] = ACTIONS(1438), + [anon_sym_LBRACK] = ACTIONS(1238), + [anon_sym_STAR] = ACTIONS(1240), + [anon_sym_QMARK] = ACTIONS(1242), + [anon_sym_u8] = ACTIONS(1244), + [anon_sym_i8] = ACTIONS(1244), + [anon_sym_u16] = ACTIONS(1244), + [anon_sym_i16] = ACTIONS(1244), + [anon_sym_u32] = ACTIONS(1244), + [anon_sym_i32] = ACTIONS(1244), + [anon_sym_u64] = ACTIONS(1244), + [anon_sym_i64] = ACTIONS(1244), + [anon_sym_u128] = ACTIONS(1244), + [anon_sym_i128] = ACTIONS(1244), + [anon_sym_isize] = ACTIONS(1244), + [anon_sym_usize] = ACTIONS(1244), + [anon_sym_f32] = ACTIONS(1244), + [anon_sym_f64] = ACTIONS(1244), + [anon_sym_bool] = ACTIONS(1244), + [anon_sym_str] = ACTIONS(1244), + [anon_sym_char] = ACTIONS(1244), + [anon_sym_DASH] = ACTIONS(1246), + [anon_sym_BANG] = ACTIONS(1248), + [anon_sym_AMP] = ACTIONS(1424), + [anon_sym_PIPE] = ACTIONS(1426), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1428), + [anon_sym_DOT_DOT] = ACTIONS(1256), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1260), + [anon_sym_COMMA] = ACTIONS(1430), + [anon_sym_COLON_COLON] = ACTIONS(1264), + [anon_sym_SQUOTE] = ACTIONS(1268), + [anon_sym_async] = ACTIONS(1270), + [anon_sym_const] = ACTIONS(1272), + [anon_sym_default] = ACTIONS(1274), + [anon_sym_fn] = ACTIONS(1276), + [anon_sym_for] = ACTIONS(1278), + [anon_sym_gen] = ACTIONS(1280), + [anon_sym_impl] = ACTIONS(1282), + [anon_sym_static] = ACTIONS(1432), + [anon_sym_union] = ACTIONS(1280), + [anon_sym_unsafe] = ACTIONS(1270), + [anon_sym_extern] = ACTIONS(1284), + [anon_sym_safe] = ACTIONS(1270), + [anon_sym_ref] = ACTIONS(1286), + [anon_sym_dyn] = ACTIONS(1288), + [sym_mutable_specifier] = ACTIONS(1434), + [anon_sym_move] = ACTIONS(1436), + [sym_integer_literal] = ACTIONS(1292), + [aux_sym_string_literal_token1] = ACTIONS(1294), + [sym_char_literal] = ACTIONS(1292), + [anon_sym_true] = ACTIONS(1296), + [anon_sym_false] = ACTIONS(1296), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1300), + [sym_super] = ACTIONS(1300), + [sym_crate] = ACTIONS(1300), + [sym_metavariable] = ACTIONS(1302), + [sym__raw_string_literal_start] = ACTIONS(1304), + [sym_float_literal] = ACTIONS(1292), }, [STATE(394)] = { [sym_line_comment] = STATE(394), [sym_block_comment] = STATE(394), - [ts_builtin_sym_end] = ACTIONS(1437), - [sym_identifier] = ACTIONS(1439), - [anon_sym_SEMI] = ACTIONS(1437), - [anon_sym_macro_rules_BANG] = ACTIONS(1437), - [anon_sym_LPAREN] = ACTIONS(1437), - [anon_sym_LBRACK] = ACTIONS(1437), - [anon_sym_LBRACE] = ACTIONS(1437), - [anon_sym_RBRACE] = ACTIONS(1437), - [anon_sym_PLUS] = ACTIONS(1439), - [anon_sym_STAR] = ACTIONS(1439), - [anon_sym_QMARK] = ACTIONS(1437), - [anon_sym_u8] = ACTIONS(1439), - [anon_sym_i8] = ACTIONS(1439), - [anon_sym_u16] = ACTIONS(1439), - [anon_sym_i16] = ACTIONS(1439), - [anon_sym_u32] = ACTIONS(1439), - [anon_sym_i32] = ACTIONS(1439), - [anon_sym_u64] = ACTIONS(1439), - [anon_sym_i64] = ACTIONS(1439), - [anon_sym_u128] = ACTIONS(1439), - [anon_sym_i128] = ACTIONS(1439), - [anon_sym_isize] = ACTIONS(1439), - [anon_sym_usize] = ACTIONS(1439), - [anon_sym_f32] = ACTIONS(1439), - [anon_sym_f64] = ACTIONS(1439), - [anon_sym_bool] = ACTIONS(1439), - [anon_sym_str] = ACTIONS(1439), - [anon_sym_char] = ACTIONS(1439), - [anon_sym_DASH] = ACTIONS(1439), - [anon_sym_SLASH] = ACTIONS(1439), - [anon_sym_PERCENT] = ACTIONS(1439), - [anon_sym_CARET] = ACTIONS(1439), - [anon_sym_BANG] = ACTIONS(1439), - [anon_sym_AMP] = ACTIONS(1439), - [anon_sym_PIPE] = ACTIONS(1439), - [anon_sym_AMP_AMP] = ACTIONS(1437), - [anon_sym_PIPE_PIPE] = ACTIONS(1437), - [anon_sym_LT_LT] = ACTIONS(1439), - [anon_sym_GT_GT] = ACTIONS(1439), - [anon_sym_PLUS_EQ] = ACTIONS(1437), - [anon_sym_DASH_EQ] = ACTIONS(1437), - [anon_sym_STAR_EQ] = ACTIONS(1437), - [anon_sym_SLASH_EQ] = ACTIONS(1437), - [anon_sym_PERCENT_EQ] = ACTIONS(1437), - [anon_sym_CARET_EQ] = ACTIONS(1437), - [anon_sym_AMP_EQ] = ACTIONS(1437), - [anon_sym_PIPE_EQ] = ACTIONS(1437), - [anon_sym_LT_LT_EQ] = ACTIONS(1437), - [anon_sym_GT_GT_EQ] = ACTIONS(1437), - [anon_sym_EQ] = ACTIONS(1439), - [anon_sym_EQ_EQ] = ACTIONS(1437), - [anon_sym_BANG_EQ] = ACTIONS(1437), - [anon_sym_GT] = ACTIONS(1439), - [anon_sym_LT] = ACTIONS(1439), - [anon_sym_GT_EQ] = ACTIONS(1437), - [anon_sym_LT_EQ] = ACTIONS(1437), - [anon_sym_DOT] = ACTIONS(1439), - [anon_sym_DOT_DOT] = ACTIONS(1439), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1437), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1437), - [anon_sym_COLON_COLON] = ACTIONS(1437), - [anon_sym_POUND] = ACTIONS(1437), - [anon_sym_SQUOTE] = ACTIONS(1439), - [anon_sym_as] = ACTIONS(1439), - [anon_sym_async] = ACTIONS(1439), - [anon_sym_break] = ACTIONS(1439), - [anon_sym_const] = ACTIONS(1439), - [anon_sym_continue] = ACTIONS(1439), - [anon_sym_default] = ACTIONS(1439), - [anon_sym_enum] = ACTIONS(1439), - [anon_sym_fn] = ACTIONS(1439), - [anon_sym_for] = ACTIONS(1439), - [anon_sym_gen] = ACTIONS(1439), - [anon_sym_if] = ACTIONS(1439), - [anon_sym_impl] = ACTIONS(1439), - [anon_sym_let] = ACTIONS(1439), - [anon_sym_loop] = ACTIONS(1439), - [anon_sym_match] = ACTIONS(1439), - [anon_sym_mod] = ACTIONS(1439), - [anon_sym_pub] = ACTIONS(1439), - [anon_sym_return] = ACTIONS(1439), - [anon_sym_static] = ACTIONS(1439), - [anon_sym_struct] = ACTIONS(1439), - [anon_sym_trait] = ACTIONS(1439), - [anon_sym_type] = ACTIONS(1439), - [anon_sym_union] = ACTIONS(1439), - [anon_sym_unsafe] = ACTIONS(1439), - [anon_sym_use] = ACTIONS(1439), - [anon_sym_while] = ACTIONS(1439), - [anon_sym_extern] = ACTIONS(1439), - [anon_sym_yield] = ACTIONS(1439), - [anon_sym_move] = ACTIONS(1439), - [anon_sym_try] = ACTIONS(1439), - [sym_integer_literal] = ACTIONS(1437), - [aux_sym_string_literal_token1] = ACTIONS(1437), - [sym_char_literal] = ACTIONS(1437), - [anon_sym_true] = ACTIONS(1439), - [anon_sym_false] = ACTIONS(1439), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1439), - [sym_super] = ACTIONS(1439), - [sym_crate] = ACTIONS(1439), - [sym_metavariable] = ACTIONS(1437), - [sym__raw_string_literal_start] = ACTIONS(1437), - [sym_float_literal] = ACTIONS(1437), + [ts_builtin_sym_end] = ACTIONS(1440), + [sym_identifier] = ACTIONS(1442), + [anon_sym_SEMI] = ACTIONS(1440), + [anon_sym_macro_rules_BANG] = ACTIONS(1440), + [anon_sym_LPAREN] = ACTIONS(1440), + [anon_sym_LBRACK] = ACTIONS(1440), + [anon_sym_LBRACE] = ACTIONS(1440), + [anon_sym_RBRACE] = ACTIONS(1440), + [anon_sym_PLUS] = ACTIONS(1442), + [anon_sym_STAR] = ACTIONS(1442), + [anon_sym_QMARK] = ACTIONS(1440), + [anon_sym_u8] = ACTIONS(1442), + [anon_sym_i8] = ACTIONS(1442), + [anon_sym_u16] = ACTIONS(1442), + [anon_sym_i16] = ACTIONS(1442), + [anon_sym_u32] = ACTIONS(1442), + [anon_sym_i32] = ACTIONS(1442), + [anon_sym_u64] = ACTIONS(1442), + [anon_sym_i64] = ACTIONS(1442), + [anon_sym_u128] = ACTIONS(1442), + [anon_sym_i128] = ACTIONS(1442), + [anon_sym_isize] = ACTIONS(1442), + [anon_sym_usize] = ACTIONS(1442), + [anon_sym_f32] = ACTIONS(1442), + [anon_sym_f64] = ACTIONS(1442), + [anon_sym_bool] = ACTIONS(1442), + [anon_sym_str] = ACTIONS(1442), + [anon_sym_char] = ACTIONS(1442), + [anon_sym_DASH] = ACTIONS(1442), + [anon_sym_SLASH] = ACTIONS(1442), + [anon_sym_PERCENT] = ACTIONS(1442), + [anon_sym_CARET] = ACTIONS(1442), + [anon_sym_BANG] = ACTIONS(1442), + [anon_sym_AMP] = ACTIONS(1442), + [anon_sym_PIPE] = ACTIONS(1442), + [anon_sym_AMP_AMP] = ACTIONS(1440), + [anon_sym_PIPE_PIPE] = ACTIONS(1440), + [anon_sym_LT_LT] = ACTIONS(1442), + [anon_sym_GT_GT] = ACTIONS(1442), + [anon_sym_PLUS_EQ] = ACTIONS(1440), + [anon_sym_DASH_EQ] = ACTIONS(1440), + [anon_sym_STAR_EQ] = ACTIONS(1440), + [anon_sym_SLASH_EQ] = ACTIONS(1440), + [anon_sym_PERCENT_EQ] = ACTIONS(1440), + [anon_sym_CARET_EQ] = ACTIONS(1440), + [anon_sym_AMP_EQ] = ACTIONS(1440), + [anon_sym_PIPE_EQ] = ACTIONS(1440), + [anon_sym_LT_LT_EQ] = ACTIONS(1440), + [anon_sym_GT_GT_EQ] = ACTIONS(1440), + [anon_sym_EQ] = ACTIONS(1442), + [anon_sym_EQ_EQ] = ACTIONS(1440), + [anon_sym_BANG_EQ] = ACTIONS(1440), + [anon_sym_GT] = ACTIONS(1442), + [anon_sym_LT] = ACTIONS(1442), + [anon_sym_GT_EQ] = ACTIONS(1440), + [anon_sym_LT_EQ] = ACTIONS(1440), + [anon_sym_DOT] = ACTIONS(1442), + [anon_sym_DOT_DOT] = ACTIONS(1442), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1440), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1440), + [anon_sym_COLON_COLON] = ACTIONS(1440), + [anon_sym_POUND] = ACTIONS(1440), + [anon_sym_SQUOTE] = ACTIONS(1442), + [anon_sym_as] = ACTIONS(1442), + [anon_sym_async] = ACTIONS(1442), + [anon_sym_break] = ACTIONS(1442), + [anon_sym_const] = ACTIONS(1442), + [anon_sym_continue] = ACTIONS(1442), + [anon_sym_default] = ACTIONS(1442), + [anon_sym_enum] = ACTIONS(1442), + [anon_sym_fn] = ACTIONS(1442), + [anon_sym_for] = ACTIONS(1442), + [anon_sym_gen] = ACTIONS(1442), + [anon_sym_if] = ACTIONS(1442), + [anon_sym_impl] = ACTIONS(1442), + [anon_sym_let] = ACTIONS(1442), + [anon_sym_loop] = ACTIONS(1442), + [anon_sym_match] = ACTIONS(1442), + [anon_sym_mod] = ACTIONS(1442), + [anon_sym_pub] = ACTIONS(1442), + [anon_sym_return] = ACTIONS(1442), + [anon_sym_static] = ACTIONS(1442), + [anon_sym_struct] = ACTIONS(1442), + [anon_sym_trait] = ACTIONS(1442), + [anon_sym_type] = ACTIONS(1442), + [anon_sym_union] = ACTIONS(1442), + [anon_sym_unsafe] = ACTIONS(1442), + [anon_sym_use] = ACTIONS(1442), + [anon_sym_while] = ACTIONS(1442), + [anon_sym_extern] = ACTIONS(1442), + [anon_sym_safe] = ACTIONS(1442), + [anon_sym_yield] = ACTIONS(1442), + [anon_sym_move] = ACTIONS(1442), + [anon_sym_try] = ACTIONS(1442), + [sym_integer_literal] = ACTIONS(1440), + [aux_sym_string_literal_token1] = ACTIONS(1440), + [sym_char_literal] = ACTIONS(1440), + [anon_sym_true] = ACTIONS(1442), + [anon_sym_false] = ACTIONS(1442), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1442), + [sym_super] = ACTIONS(1442), + [sym_crate] = ACTIONS(1442), + [sym_metavariable] = ACTIONS(1440), + [sym__raw_string_literal_start] = ACTIONS(1440), + [sym_float_literal] = ACTIONS(1440), }, [STATE(395)] = { [sym_line_comment] = STATE(395), [sym_block_comment] = STATE(395), - [ts_builtin_sym_end] = ACTIONS(1441), - [sym_identifier] = ACTIONS(1443), - [anon_sym_SEMI] = ACTIONS(1441), - [anon_sym_macro_rules_BANG] = ACTIONS(1441), - [anon_sym_LPAREN] = ACTIONS(1441), - [anon_sym_LBRACK] = ACTIONS(1441), - [anon_sym_LBRACE] = ACTIONS(1441), - [anon_sym_RBRACE] = ACTIONS(1441), - [anon_sym_PLUS] = ACTIONS(1443), - [anon_sym_STAR] = ACTIONS(1443), - [anon_sym_QMARK] = ACTIONS(1441), - [anon_sym_u8] = ACTIONS(1443), - [anon_sym_i8] = ACTIONS(1443), - [anon_sym_u16] = ACTIONS(1443), - [anon_sym_i16] = ACTIONS(1443), - [anon_sym_u32] = ACTIONS(1443), - [anon_sym_i32] = ACTIONS(1443), - [anon_sym_u64] = ACTIONS(1443), - [anon_sym_i64] = ACTIONS(1443), - [anon_sym_u128] = ACTIONS(1443), - [anon_sym_i128] = ACTIONS(1443), - [anon_sym_isize] = ACTIONS(1443), - [anon_sym_usize] = ACTIONS(1443), - [anon_sym_f32] = ACTIONS(1443), - [anon_sym_f64] = ACTIONS(1443), - [anon_sym_bool] = ACTIONS(1443), - [anon_sym_str] = ACTIONS(1443), - [anon_sym_char] = ACTIONS(1443), - [anon_sym_DASH] = ACTIONS(1443), - [anon_sym_SLASH] = ACTIONS(1443), - [anon_sym_PERCENT] = ACTIONS(1443), - [anon_sym_CARET] = ACTIONS(1443), - [anon_sym_BANG] = ACTIONS(1443), - [anon_sym_AMP] = ACTIONS(1443), - [anon_sym_PIPE] = ACTIONS(1443), - [anon_sym_AMP_AMP] = ACTIONS(1441), - [anon_sym_PIPE_PIPE] = ACTIONS(1441), - [anon_sym_LT_LT] = ACTIONS(1443), - [anon_sym_GT_GT] = ACTIONS(1443), - [anon_sym_PLUS_EQ] = ACTIONS(1441), - [anon_sym_DASH_EQ] = ACTIONS(1441), - [anon_sym_STAR_EQ] = ACTIONS(1441), - [anon_sym_SLASH_EQ] = ACTIONS(1441), - [anon_sym_PERCENT_EQ] = ACTIONS(1441), - [anon_sym_CARET_EQ] = ACTIONS(1441), - [anon_sym_AMP_EQ] = ACTIONS(1441), - [anon_sym_PIPE_EQ] = ACTIONS(1441), - [anon_sym_LT_LT_EQ] = ACTIONS(1441), - [anon_sym_GT_GT_EQ] = ACTIONS(1441), - [anon_sym_EQ] = ACTIONS(1443), - [anon_sym_EQ_EQ] = ACTIONS(1441), - [anon_sym_BANG_EQ] = ACTIONS(1441), - [anon_sym_GT] = ACTIONS(1443), - [anon_sym_LT] = ACTIONS(1443), - [anon_sym_GT_EQ] = ACTIONS(1441), - [anon_sym_LT_EQ] = ACTIONS(1441), - [anon_sym_DOT] = ACTIONS(1443), - [anon_sym_DOT_DOT] = ACTIONS(1443), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1441), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1441), - [anon_sym_COLON_COLON] = ACTIONS(1441), - [anon_sym_POUND] = ACTIONS(1441), - [anon_sym_SQUOTE] = ACTIONS(1443), - [anon_sym_as] = ACTIONS(1443), - [anon_sym_async] = ACTIONS(1443), - [anon_sym_break] = ACTIONS(1443), - [anon_sym_const] = ACTIONS(1443), - [anon_sym_continue] = ACTIONS(1443), - [anon_sym_default] = ACTIONS(1443), - [anon_sym_enum] = ACTIONS(1443), - [anon_sym_fn] = ACTIONS(1443), - [anon_sym_for] = ACTIONS(1443), - [anon_sym_gen] = ACTIONS(1443), - [anon_sym_if] = ACTIONS(1443), - [anon_sym_impl] = ACTIONS(1443), - [anon_sym_let] = ACTIONS(1443), - [anon_sym_loop] = ACTIONS(1443), - [anon_sym_match] = ACTIONS(1443), - [anon_sym_mod] = ACTIONS(1443), - [anon_sym_pub] = ACTIONS(1443), - [anon_sym_return] = ACTIONS(1443), - [anon_sym_static] = ACTIONS(1443), - [anon_sym_struct] = ACTIONS(1443), - [anon_sym_trait] = ACTIONS(1443), - [anon_sym_type] = ACTIONS(1443), - [anon_sym_union] = ACTIONS(1443), - [anon_sym_unsafe] = ACTIONS(1443), - [anon_sym_use] = ACTIONS(1443), - [anon_sym_while] = ACTIONS(1443), - [anon_sym_extern] = ACTIONS(1443), - [anon_sym_yield] = ACTIONS(1443), - [anon_sym_move] = ACTIONS(1443), - [anon_sym_try] = ACTIONS(1443), - [sym_integer_literal] = ACTIONS(1441), - [aux_sym_string_literal_token1] = ACTIONS(1441), - [sym_char_literal] = ACTIONS(1441), - [anon_sym_true] = ACTIONS(1443), - [anon_sym_false] = ACTIONS(1443), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1443), - [sym_super] = ACTIONS(1443), - [sym_crate] = ACTIONS(1443), - [sym_metavariable] = ACTIONS(1441), - [sym__raw_string_literal_start] = ACTIONS(1441), - [sym_float_literal] = ACTIONS(1441), + [ts_builtin_sym_end] = ACTIONS(1444), + [sym_identifier] = ACTIONS(1446), + [anon_sym_SEMI] = ACTIONS(1444), + [anon_sym_macro_rules_BANG] = ACTIONS(1444), + [anon_sym_LPAREN] = ACTIONS(1444), + [anon_sym_LBRACK] = ACTIONS(1444), + [anon_sym_LBRACE] = ACTIONS(1444), + [anon_sym_RBRACE] = ACTIONS(1444), + [anon_sym_PLUS] = ACTIONS(1446), + [anon_sym_STAR] = ACTIONS(1446), + [anon_sym_QMARK] = ACTIONS(1444), + [anon_sym_u8] = ACTIONS(1446), + [anon_sym_i8] = ACTIONS(1446), + [anon_sym_u16] = ACTIONS(1446), + [anon_sym_i16] = ACTIONS(1446), + [anon_sym_u32] = ACTIONS(1446), + [anon_sym_i32] = ACTIONS(1446), + [anon_sym_u64] = ACTIONS(1446), + [anon_sym_i64] = ACTIONS(1446), + [anon_sym_u128] = ACTIONS(1446), + [anon_sym_i128] = ACTIONS(1446), + [anon_sym_isize] = ACTIONS(1446), + [anon_sym_usize] = ACTIONS(1446), + [anon_sym_f32] = ACTIONS(1446), + [anon_sym_f64] = ACTIONS(1446), + [anon_sym_bool] = ACTIONS(1446), + [anon_sym_str] = ACTIONS(1446), + [anon_sym_char] = ACTIONS(1446), + [anon_sym_DASH] = ACTIONS(1446), + [anon_sym_SLASH] = ACTIONS(1446), + [anon_sym_PERCENT] = ACTIONS(1446), + [anon_sym_CARET] = ACTIONS(1446), + [anon_sym_BANG] = ACTIONS(1446), + [anon_sym_AMP] = ACTIONS(1446), + [anon_sym_PIPE] = ACTIONS(1446), + [anon_sym_AMP_AMP] = ACTIONS(1444), + [anon_sym_PIPE_PIPE] = ACTIONS(1444), + [anon_sym_LT_LT] = ACTIONS(1446), + [anon_sym_GT_GT] = ACTIONS(1446), + [anon_sym_PLUS_EQ] = ACTIONS(1444), + [anon_sym_DASH_EQ] = ACTIONS(1444), + [anon_sym_STAR_EQ] = ACTIONS(1444), + [anon_sym_SLASH_EQ] = ACTIONS(1444), + [anon_sym_PERCENT_EQ] = ACTIONS(1444), + [anon_sym_CARET_EQ] = ACTIONS(1444), + [anon_sym_AMP_EQ] = ACTIONS(1444), + [anon_sym_PIPE_EQ] = ACTIONS(1444), + [anon_sym_LT_LT_EQ] = ACTIONS(1444), + [anon_sym_GT_GT_EQ] = ACTIONS(1444), + [anon_sym_EQ] = ACTIONS(1446), + [anon_sym_EQ_EQ] = ACTIONS(1444), + [anon_sym_BANG_EQ] = ACTIONS(1444), + [anon_sym_GT] = ACTIONS(1446), + [anon_sym_LT] = ACTIONS(1446), + [anon_sym_GT_EQ] = ACTIONS(1444), + [anon_sym_LT_EQ] = ACTIONS(1444), + [anon_sym_DOT] = ACTIONS(1446), + [anon_sym_DOT_DOT] = ACTIONS(1446), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1444), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1444), + [anon_sym_COLON_COLON] = ACTIONS(1444), + [anon_sym_POUND] = ACTIONS(1444), + [anon_sym_SQUOTE] = ACTIONS(1446), + [anon_sym_as] = ACTIONS(1446), + [anon_sym_async] = ACTIONS(1446), + [anon_sym_break] = ACTIONS(1446), + [anon_sym_const] = ACTIONS(1446), + [anon_sym_continue] = ACTIONS(1446), + [anon_sym_default] = ACTIONS(1446), + [anon_sym_enum] = ACTIONS(1446), + [anon_sym_fn] = ACTIONS(1446), + [anon_sym_for] = ACTIONS(1446), + [anon_sym_gen] = ACTIONS(1446), + [anon_sym_if] = ACTIONS(1446), + [anon_sym_impl] = ACTIONS(1446), + [anon_sym_let] = ACTIONS(1446), + [anon_sym_loop] = ACTIONS(1446), + [anon_sym_match] = ACTIONS(1446), + [anon_sym_mod] = ACTIONS(1446), + [anon_sym_pub] = ACTIONS(1446), + [anon_sym_return] = ACTIONS(1446), + [anon_sym_static] = ACTIONS(1446), + [anon_sym_struct] = ACTIONS(1446), + [anon_sym_trait] = ACTIONS(1446), + [anon_sym_type] = ACTIONS(1446), + [anon_sym_union] = ACTIONS(1446), + [anon_sym_unsafe] = ACTIONS(1446), + [anon_sym_use] = ACTIONS(1446), + [anon_sym_while] = ACTIONS(1446), + [anon_sym_extern] = ACTIONS(1446), + [anon_sym_safe] = ACTIONS(1446), + [anon_sym_yield] = ACTIONS(1446), + [anon_sym_move] = ACTIONS(1446), + [anon_sym_try] = ACTIONS(1446), + [sym_integer_literal] = ACTIONS(1444), + [aux_sym_string_literal_token1] = ACTIONS(1444), + [sym_char_literal] = ACTIONS(1444), + [anon_sym_true] = ACTIONS(1446), + [anon_sym_false] = ACTIONS(1446), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1446), + [sym_super] = ACTIONS(1446), + [sym_crate] = ACTIONS(1446), + [sym_metavariable] = ACTIONS(1444), + [sym__raw_string_literal_start] = ACTIONS(1444), + [sym_float_literal] = ACTIONS(1444), }, [STATE(396)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2817), - [sym_bracketed_type] = STATE(3652), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3382), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2517), - [sym_scoped_identifier] = STATE(2191), - [sym_scoped_type_identifier] = STATE(2154), - [sym_const_block] = STATE(2150), - [sym_closure_expression] = STATE(3069), - [sym_closure_parameters] = STATE(239), - [sym__pattern] = STATE(2770), - [sym_generic_pattern] = STATE(2150), - [sym_tuple_pattern] = STATE(2150), - [sym_slice_pattern] = STATE(2150), - [sym_tuple_struct_pattern] = STATE(2150), - [sym_struct_pattern] = STATE(2150), - [sym_remaining_field_pattern] = STATE(2150), - [sym_mut_pattern] = STATE(2150), - [sym_range_pattern] = STATE(2150), - [sym_ref_pattern] = STATE(2150), - [sym_captured_pattern] = STATE(2150), - [sym_reference_pattern] = STATE(2150), - [sym_or_pattern] = STATE(2150), - [sym__literal_pattern] = STATE(2076), - [sym_negative_literal] = STATE(2074), - [sym_string_literal] = STATE(2074), - [sym_raw_string_literal] = STATE(2074), - [sym_boolean_literal] = STATE(2074), [sym_line_comment] = STATE(396), [sym_block_comment] = STATE(396), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(1227), - [anon_sym_LPAREN] = ACTIONS(1229), - [anon_sym_RPAREN] = ACTIONS(1445), - [anon_sym_LBRACK] = ACTIONS(1233), - [anon_sym_STAR] = ACTIONS(1235), - [anon_sym_QMARK] = ACTIONS(1237), - [anon_sym_u8] = ACTIONS(1239), - [anon_sym_i8] = ACTIONS(1239), - [anon_sym_u16] = ACTIONS(1239), - [anon_sym_i16] = ACTIONS(1239), - [anon_sym_u32] = ACTIONS(1239), - [anon_sym_i32] = ACTIONS(1239), - [anon_sym_u64] = ACTIONS(1239), - [anon_sym_i64] = ACTIONS(1239), - [anon_sym_u128] = ACTIONS(1239), - [anon_sym_i128] = ACTIONS(1239), - [anon_sym_isize] = ACTIONS(1239), - [anon_sym_usize] = ACTIONS(1239), - [anon_sym_f32] = ACTIONS(1239), - [anon_sym_f64] = ACTIONS(1239), - [anon_sym_bool] = ACTIONS(1239), - [anon_sym_str] = ACTIONS(1239), - [anon_sym_char] = ACTIONS(1239), - [anon_sym_DASH] = ACTIONS(1241), - [anon_sym_BANG] = ACTIONS(1243), - [anon_sym_AMP] = ACTIONS(1447), - [anon_sym_PIPE] = ACTIONS(1449), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1451), - [anon_sym_DOT_DOT] = ACTIONS(1251), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1255), - [anon_sym_COMMA] = ACTIONS(1453), - [anon_sym_COLON_COLON] = ACTIONS(1259), - [anon_sym_SQUOTE] = ACTIONS(1263), - [anon_sym_async] = ACTIONS(1265), - [anon_sym_const] = ACTIONS(1267), - [anon_sym_default] = ACTIONS(1269), - [anon_sym_fn] = ACTIONS(1271), - [anon_sym_for] = ACTIONS(1273), - [anon_sym_gen] = ACTIONS(1275), - [anon_sym_impl] = ACTIONS(1277), - [anon_sym_static] = ACTIONS(1455), - [anon_sym_union] = ACTIONS(1275), - [anon_sym_unsafe] = ACTIONS(1265), - [anon_sym_extern] = ACTIONS(1279), - [anon_sym_ref] = ACTIONS(1281), - [anon_sym_dyn] = ACTIONS(1283), - [sym_mutable_specifier] = ACTIONS(1457), - [anon_sym_move] = ACTIONS(1459), - [sym_integer_literal] = ACTIONS(1287), - [aux_sym_string_literal_token1] = ACTIONS(1289), - [sym_char_literal] = ACTIONS(1287), - [anon_sym_true] = ACTIONS(1291), - [anon_sym_false] = ACTIONS(1291), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1295), - [sym_super] = ACTIONS(1295), - [sym_crate] = ACTIONS(1295), - [sym_metavariable] = ACTIONS(1297), - [sym__raw_string_literal_start] = ACTIONS(1299), - [sym_float_literal] = ACTIONS(1287), + [ts_builtin_sym_end] = ACTIONS(1448), + [sym_identifier] = ACTIONS(1450), + [anon_sym_SEMI] = ACTIONS(1448), + [anon_sym_macro_rules_BANG] = ACTIONS(1448), + [anon_sym_LPAREN] = ACTIONS(1448), + [anon_sym_LBRACK] = ACTIONS(1448), + [anon_sym_LBRACE] = ACTIONS(1448), + [anon_sym_RBRACE] = ACTIONS(1448), + [anon_sym_PLUS] = ACTIONS(1450), + [anon_sym_STAR] = ACTIONS(1450), + [anon_sym_QMARK] = ACTIONS(1448), + [anon_sym_u8] = ACTIONS(1450), + [anon_sym_i8] = ACTIONS(1450), + [anon_sym_u16] = ACTIONS(1450), + [anon_sym_i16] = ACTIONS(1450), + [anon_sym_u32] = ACTIONS(1450), + [anon_sym_i32] = ACTIONS(1450), + [anon_sym_u64] = ACTIONS(1450), + [anon_sym_i64] = ACTIONS(1450), + [anon_sym_u128] = ACTIONS(1450), + [anon_sym_i128] = ACTIONS(1450), + [anon_sym_isize] = ACTIONS(1450), + [anon_sym_usize] = ACTIONS(1450), + [anon_sym_f32] = ACTIONS(1450), + [anon_sym_f64] = ACTIONS(1450), + [anon_sym_bool] = ACTIONS(1450), + [anon_sym_str] = ACTIONS(1450), + [anon_sym_char] = ACTIONS(1450), + [anon_sym_DASH] = ACTIONS(1450), + [anon_sym_SLASH] = ACTIONS(1450), + [anon_sym_PERCENT] = ACTIONS(1450), + [anon_sym_CARET] = ACTIONS(1450), + [anon_sym_BANG] = ACTIONS(1450), + [anon_sym_AMP] = ACTIONS(1450), + [anon_sym_PIPE] = ACTIONS(1450), + [anon_sym_AMP_AMP] = ACTIONS(1448), + [anon_sym_PIPE_PIPE] = ACTIONS(1448), + [anon_sym_LT_LT] = ACTIONS(1450), + [anon_sym_GT_GT] = ACTIONS(1450), + [anon_sym_PLUS_EQ] = ACTIONS(1448), + [anon_sym_DASH_EQ] = ACTIONS(1448), + [anon_sym_STAR_EQ] = ACTIONS(1448), + [anon_sym_SLASH_EQ] = ACTIONS(1448), + [anon_sym_PERCENT_EQ] = ACTIONS(1448), + [anon_sym_CARET_EQ] = ACTIONS(1448), + [anon_sym_AMP_EQ] = ACTIONS(1448), + [anon_sym_PIPE_EQ] = ACTIONS(1448), + [anon_sym_LT_LT_EQ] = ACTIONS(1448), + [anon_sym_GT_GT_EQ] = ACTIONS(1448), + [anon_sym_EQ] = ACTIONS(1450), + [anon_sym_EQ_EQ] = ACTIONS(1448), + [anon_sym_BANG_EQ] = ACTIONS(1448), + [anon_sym_GT] = ACTIONS(1450), + [anon_sym_LT] = ACTIONS(1450), + [anon_sym_GT_EQ] = ACTIONS(1448), + [anon_sym_LT_EQ] = ACTIONS(1448), + [anon_sym_DOT] = ACTIONS(1450), + [anon_sym_DOT_DOT] = ACTIONS(1450), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1448), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1448), + [anon_sym_COLON_COLON] = ACTIONS(1448), + [anon_sym_POUND] = ACTIONS(1448), + [anon_sym_SQUOTE] = ACTIONS(1450), + [anon_sym_as] = ACTIONS(1450), + [anon_sym_async] = ACTIONS(1450), + [anon_sym_break] = ACTIONS(1450), + [anon_sym_const] = ACTIONS(1450), + [anon_sym_continue] = ACTIONS(1450), + [anon_sym_default] = ACTIONS(1450), + [anon_sym_enum] = ACTIONS(1450), + [anon_sym_fn] = ACTIONS(1450), + [anon_sym_for] = ACTIONS(1450), + [anon_sym_gen] = ACTIONS(1450), + [anon_sym_if] = ACTIONS(1450), + [anon_sym_impl] = ACTIONS(1450), + [anon_sym_let] = ACTIONS(1450), + [anon_sym_loop] = ACTIONS(1450), + [anon_sym_match] = ACTIONS(1450), + [anon_sym_mod] = ACTIONS(1450), + [anon_sym_pub] = ACTIONS(1450), + [anon_sym_return] = ACTIONS(1450), + [anon_sym_static] = ACTIONS(1450), + [anon_sym_struct] = ACTIONS(1450), + [anon_sym_trait] = ACTIONS(1450), + [anon_sym_type] = ACTIONS(1450), + [anon_sym_union] = ACTIONS(1450), + [anon_sym_unsafe] = ACTIONS(1450), + [anon_sym_use] = ACTIONS(1450), + [anon_sym_while] = ACTIONS(1450), + [anon_sym_extern] = ACTIONS(1450), + [anon_sym_safe] = ACTIONS(1450), + [anon_sym_yield] = ACTIONS(1450), + [anon_sym_move] = ACTIONS(1450), + [anon_sym_try] = ACTIONS(1450), + [sym_integer_literal] = ACTIONS(1448), + [aux_sym_string_literal_token1] = ACTIONS(1448), + [sym_char_literal] = ACTIONS(1448), + [anon_sym_true] = ACTIONS(1450), + [anon_sym_false] = ACTIONS(1450), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1450), + [sym_super] = ACTIONS(1450), + [sym_crate] = ACTIONS(1450), + [sym_metavariable] = ACTIONS(1448), + [sym__raw_string_literal_start] = ACTIONS(1448), + [sym_float_literal] = ACTIONS(1448), }, [STATE(397)] = { [sym_line_comment] = STATE(397), [sym_block_comment] = STATE(397), - [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_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_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(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [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), + [ts_builtin_sym_end] = ACTIONS(1452), + [sym_identifier] = ACTIONS(1454), + [anon_sym_SEMI] = ACTIONS(1452), + [anon_sym_macro_rules_BANG] = ACTIONS(1452), + [anon_sym_LPAREN] = ACTIONS(1452), + [anon_sym_LBRACK] = ACTIONS(1452), + [anon_sym_LBRACE] = ACTIONS(1452), + [anon_sym_RBRACE] = ACTIONS(1452), + [anon_sym_PLUS] = ACTIONS(1454), + [anon_sym_STAR] = ACTIONS(1454), + [anon_sym_QMARK] = ACTIONS(1452), + [anon_sym_u8] = ACTIONS(1454), + [anon_sym_i8] = ACTIONS(1454), + [anon_sym_u16] = ACTIONS(1454), + [anon_sym_i16] = ACTIONS(1454), + [anon_sym_u32] = ACTIONS(1454), + [anon_sym_i32] = ACTIONS(1454), + [anon_sym_u64] = ACTIONS(1454), + [anon_sym_i64] = ACTIONS(1454), + [anon_sym_u128] = ACTIONS(1454), + [anon_sym_i128] = ACTIONS(1454), + [anon_sym_isize] = ACTIONS(1454), + [anon_sym_usize] = ACTIONS(1454), + [anon_sym_f32] = ACTIONS(1454), + [anon_sym_f64] = ACTIONS(1454), + [anon_sym_bool] = ACTIONS(1454), + [anon_sym_str] = ACTIONS(1454), + [anon_sym_char] = ACTIONS(1454), + [anon_sym_DASH] = ACTIONS(1454), + [anon_sym_SLASH] = ACTIONS(1454), + [anon_sym_PERCENT] = ACTIONS(1454), + [anon_sym_CARET] = ACTIONS(1454), + [anon_sym_BANG] = ACTIONS(1454), + [anon_sym_AMP] = ACTIONS(1454), + [anon_sym_PIPE] = ACTIONS(1454), + [anon_sym_AMP_AMP] = ACTIONS(1452), + [anon_sym_PIPE_PIPE] = ACTIONS(1452), + [anon_sym_LT_LT] = ACTIONS(1454), + [anon_sym_GT_GT] = ACTIONS(1454), + [anon_sym_PLUS_EQ] = ACTIONS(1452), + [anon_sym_DASH_EQ] = ACTIONS(1452), + [anon_sym_STAR_EQ] = ACTIONS(1452), + [anon_sym_SLASH_EQ] = ACTIONS(1452), + [anon_sym_PERCENT_EQ] = ACTIONS(1452), + [anon_sym_CARET_EQ] = ACTIONS(1452), + [anon_sym_AMP_EQ] = ACTIONS(1452), + [anon_sym_PIPE_EQ] = ACTIONS(1452), + [anon_sym_LT_LT_EQ] = ACTIONS(1452), + [anon_sym_GT_GT_EQ] = ACTIONS(1452), + [anon_sym_EQ] = ACTIONS(1454), + [anon_sym_EQ_EQ] = ACTIONS(1452), + [anon_sym_BANG_EQ] = ACTIONS(1452), + [anon_sym_GT] = ACTIONS(1454), + [anon_sym_LT] = ACTIONS(1454), + [anon_sym_GT_EQ] = ACTIONS(1452), + [anon_sym_LT_EQ] = ACTIONS(1452), + [anon_sym_DOT] = ACTIONS(1454), + [anon_sym_DOT_DOT] = ACTIONS(1454), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1452), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1452), + [anon_sym_COLON_COLON] = ACTIONS(1452), + [anon_sym_POUND] = ACTIONS(1452), + [anon_sym_SQUOTE] = ACTIONS(1454), + [anon_sym_as] = ACTIONS(1454), + [anon_sym_async] = ACTIONS(1454), + [anon_sym_break] = ACTIONS(1454), + [anon_sym_const] = ACTIONS(1454), + [anon_sym_continue] = ACTIONS(1454), + [anon_sym_default] = ACTIONS(1454), + [anon_sym_enum] = ACTIONS(1454), + [anon_sym_fn] = ACTIONS(1454), + [anon_sym_for] = ACTIONS(1454), + [anon_sym_gen] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1454), + [anon_sym_impl] = ACTIONS(1454), + [anon_sym_let] = ACTIONS(1454), + [anon_sym_loop] = ACTIONS(1454), + [anon_sym_match] = ACTIONS(1454), + [anon_sym_mod] = ACTIONS(1454), + [anon_sym_pub] = ACTIONS(1454), + [anon_sym_return] = ACTIONS(1454), + [anon_sym_static] = ACTIONS(1454), + [anon_sym_struct] = ACTIONS(1454), + [anon_sym_trait] = ACTIONS(1454), + [anon_sym_type] = ACTIONS(1454), + [anon_sym_union] = ACTIONS(1454), + [anon_sym_unsafe] = ACTIONS(1454), + [anon_sym_use] = ACTIONS(1454), + [anon_sym_while] = ACTIONS(1454), + [anon_sym_extern] = ACTIONS(1454), + [anon_sym_safe] = ACTIONS(1454), + [anon_sym_yield] = ACTIONS(1454), + [anon_sym_move] = ACTIONS(1454), + [anon_sym_try] = ACTIONS(1454), + [sym_integer_literal] = ACTIONS(1452), + [aux_sym_string_literal_token1] = ACTIONS(1452), + [sym_char_literal] = ACTIONS(1452), + [anon_sym_true] = ACTIONS(1454), + [anon_sym_false] = ACTIONS(1454), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1454), + [sym_super] = ACTIONS(1454), + [sym_crate] = ACTIONS(1454), + [sym_metavariable] = ACTIONS(1452), + [sym__raw_string_literal_start] = ACTIONS(1452), + [sym_float_literal] = ACTIONS(1452), }, [STATE(398)] = { - [sym_attribute_item] = STATE(423), - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_self_parameter] = STATE(3147), - [sym_variadic_parameter] = STATE(3147), - [sym_parameter] = STATE(3147), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2975), - [sym_bracketed_type] = STATE(3644), - [sym_lifetime] = STATE(3011), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3299), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2550), - [sym_scoped_identifier] = STATE(2273), - [sym_scoped_type_identifier] = STATE(2154), - [sym_const_block] = STATE(2150), - [sym__pattern] = STATE(3345), - [sym_generic_pattern] = STATE(2150), - [sym_tuple_pattern] = STATE(2150), - [sym_slice_pattern] = STATE(2150), - [sym_tuple_struct_pattern] = STATE(2150), - [sym_struct_pattern] = STATE(2150), - [sym_remaining_field_pattern] = STATE(2150), - [sym_mut_pattern] = STATE(2150), - [sym_range_pattern] = STATE(2150), - [sym_ref_pattern] = STATE(2150), - [sym_captured_pattern] = STATE(2150), - [sym_reference_pattern] = STATE(2150), - [sym_or_pattern] = STATE(2150), - [sym__literal_pattern] = STATE(2076), - [sym_negative_literal] = STATE(2074), - [sym_string_literal] = STATE(2074), - [sym_raw_string_literal] = STATE(2074), - [sym_boolean_literal] = STATE(2074), + [sym_function_modifiers] = STATE(3591), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2373), + [sym__type] = STATE(2638), + [sym_bracketed_type] = STATE(3681), + [sym_lifetime] = STATE(3727), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1591), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2022), + [sym_generic_type_with_turbofish] = STATE(3160), + [sym_bounded_type] = STATE(2069), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2548), + [sym_scoped_identifier] = STATE(2208), + [sym_scoped_type_identifier] = STATE(2203), + [sym_const_block] = STATE(2163), + [sym_closure_expression] = STATE(3063), + [sym_closure_parameters] = STATE(220), + [sym__pattern] = STATE(2729), + [sym_generic_pattern] = STATE(2163), + [sym_tuple_pattern] = STATE(2163), + [sym_slice_pattern] = STATE(2163), + [sym_tuple_struct_pattern] = STATE(2163), + [sym_struct_pattern] = STATE(2163), + [sym_remaining_field_pattern] = STATE(2163), + [sym_mut_pattern] = STATE(2163), + [sym_range_pattern] = STATE(2163), + [sym_ref_pattern] = STATE(2163), + [sym_captured_pattern] = STATE(2163), + [sym_reference_pattern] = STATE(2163), + [sym_or_pattern] = STATE(2163), + [sym__literal_pattern] = STATE(2098), + [sym_negative_literal] = STATE(2095), + [sym_string_literal] = STATE(2095), + [sym_raw_string_literal] = STATE(2095), + [sym_boolean_literal] = STATE(2095), [sym_line_comment] = STATE(398), [sym_block_comment] = STATE(398), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(1323), - [anon_sym_LPAREN] = ACTIONS(1325), - [anon_sym_LBRACK] = ACTIONS(1233), - [anon_sym_STAR] = ACTIONS(1235), - [anon_sym_QMARK] = ACTIONS(1237), - [anon_sym_u8] = ACTIONS(1329), - [anon_sym_i8] = ACTIONS(1329), - [anon_sym_u16] = ACTIONS(1329), - [anon_sym_i16] = ACTIONS(1329), - [anon_sym_u32] = ACTIONS(1329), - [anon_sym_i32] = ACTIONS(1329), - [anon_sym_u64] = ACTIONS(1329), - [anon_sym_i64] = ACTIONS(1329), - [anon_sym_u128] = ACTIONS(1329), - [anon_sym_i128] = ACTIONS(1329), - [anon_sym_isize] = ACTIONS(1329), - [anon_sym_usize] = ACTIONS(1329), - [anon_sym_f32] = ACTIONS(1329), - [anon_sym_f64] = ACTIONS(1329), - [anon_sym_bool] = ACTIONS(1329), - [anon_sym_str] = ACTIONS(1329), - [anon_sym_char] = ACTIONS(1329), - [anon_sym_DASH] = ACTIONS(1241), - [anon_sym_BANG] = ACTIONS(1243), - [anon_sym_AMP] = ACTIONS(1331), - [anon_sym_PIPE] = ACTIONS(1247), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1379), - [anon_sym_DOT_DOT] = ACTIONS(1251), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1253), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1255), - [anon_sym_COLON_COLON] = ACTIONS(1337), - [anon_sym_POUND] = ACTIONS(1261), - [anon_sym_SQUOTE] = ACTIONS(1263), - [anon_sym_async] = ACTIONS(1265), - [anon_sym_const] = ACTIONS(1267), - [anon_sym_default] = ACTIONS(1339), - [anon_sym_fn] = ACTIONS(1271), - [anon_sym_for] = ACTIONS(1273), - [anon_sym_gen] = ACTIONS(1341), - [anon_sym_impl] = ACTIONS(1277), - [anon_sym_union] = ACTIONS(1341), - [anon_sym_unsafe] = ACTIONS(1265), - [anon_sym_extern] = ACTIONS(1279), - [anon_sym_ref] = ACTIONS(1281), - [anon_sym_dyn] = ACTIONS(1283), - [sym_mutable_specifier] = ACTIONS(1285), - [sym_integer_literal] = ACTIONS(1287), - [aux_sym_string_literal_token1] = ACTIONS(1289), - [sym_char_literal] = ACTIONS(1287), - [anon_sym_true] = ACTIONS(1291), - [anon_sym_false] = ACTIONS(1291), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1343), - [sym_super] = ACTIONS(1345), - [sym_crate] = ACTIONS(1345), - [sym_metavariable] = ACTIONS(1347), - [sym__raw_string_literal_start] = ACTIONS(1299), - [sym_float_literal] = ACTIONS(1287), + [aux_sym_function_modifiers_repeat1] = STATE(2244), + [sym_identifier] = ACTIONS(1232), + [anon_sym_LPAREN] = ACTIONS(1234), + [anon_sym_RPAREN] = ACTIONS(1456), + [anon_sym_LBRACK] = ACTIONS(1238), + [anon_sym_STAR] = ACTIONS(1240), + [anon_sym_QMARK] = ACTIONS(1242), + [anon_sym_u8] = ACTIONS(1244), + [anon_sym_i8] = ACTIONS(1244), + [anon_sym_u16] = ACTIONS(1244), + [anon_sym_i16] = ACTIONS(1244), + [anon_sym_u32] = ACTIONS(1244), + [anon_sym_i32] = ACTIONS(1244), + [anon_sym_u64] = ACTIONS(1244), + [anon_sym_i64] = ACTIONS(1244), + [anon_sym_u128] = ACTIONS(1244), + [anon_sym_i128] = ACTIONS(1244), + [anon_sym_isize] = ACTIONS(1244), + [anon_sym_usize] = ACTIONS(1244), + [anon_sym_f32] = ACTIONS(1244), + [anon_sym_f64] = ACTIONS(1244), + [anon_sym_bool] = ACTIONS(1244), + [anon_sym_str] = ACTIONS(1244), + [anon_sym_char] = ACTIONS(1244), + [anon_sym_DASH] = ACTIONS(1246), + [anon_sym_BANG] = ACTIONS(1248), + [anon_sym_AMP] = ACTIONS(1424), + [anon_sym_PIPE] = ACTIONS(1426), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1428), + [anon_sym_DOT_DOT] = ACTIONS(1256), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1260), + [anon_sym_COMMA] = ACTIONS(1430), + [anon_sym_COLON_COLON] = ACTIONS(1264), + [anon_sym_SQUOTE] = ACTIONS(1268), + [anon_sym_async] = ACTIONS(1270), + [anon_sym_const] = ACTIONS(1272), + [anon_sym_default] = ACTIONS(1274), + [anon_sym_fn] = ACTIONS(1276), + [anon_sym_for] = ACTIONS(1278), + [anon_sym_gen] = ACTIONS(1280), + [anon_sym_impl] = ACTIONS(1282), + [anon_sym_static] = ACTIONS(1432), + [anon_sym_union] = ACTIONS(1280), + [anon_sym_unsafe] = ACTIONS(1270), + [anon_sym_extern] = ACTIONS(1284), + [anon_sym_safe] = ACTIONS(1270), + [anon_sym_ref] = ACTIONS(1286), + [anon_sym_dyn] = ACTIONS(1288), + [sym_mutable_specifier] = ACTIONS(1434), + [anon_sym_move] = ACTIONS(1436), + [sym_integer_literal] = ACTIONS(1292), + [aux_sym_string_literal_token1] = ACTIONS(1294), + [sym_char_literal] = ACTIONS(1292), + [anon_sym_true] = ACTIONS(1296), + [anon_sym_false] = ACTIONS(1296), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1300), + [sym_super] = ACTIONS(1300), + [sym_crate] = ACTIONS(1300), + [sym_metavariable] = ACTIONS(1302), + [sym__raw_string_literal_start] = ACTIONS(1304), + [sym_float_literal] = ACTIONS(1292), }, [STATE(399)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2817), - [sym_bracketed_type] = STATE(3652), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3382), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2517), - [sym_scoped_identifier] = STATE(2191), - [sym_scoped_type_identifier] = STATE(2154), - [sym_const_block] = STATE(2150), - [sym_closure_expression] = STATE(3069), - [sym_closure_parameters] = STATE(239), - [sym__pattern] = STATE(2770), - [sym_generic_pattern] = STATE(2150), - [sym_tuple_pattern] = STATE(2150), - [sym_slice_pattern] = STATE(2150), - [sym_tuple_struct_pattern] = STATE(2150), - [sym_struct_pattern] = STATE(2150), - [sym_remaining_field_pattern] = STATE(2150), - [sym_mut_pattern] = STATE(2150), - [sym_range_pattern] = STATE(2150), - [sym_ref_pattern] = STATE(2150), - [sym_captured_pattern] = STATE(2150), - [sym_reference_pattern] = STATE(2150), - [sym_or_pattern] = STATE(2150), - [sym__literal_pattern] = STATE(2076), - [sym_negative_literal] = STATE(2074), - [sym_string_literal] = STATE(2074), - [sym_raw_string_literal] = STATE(2074), - [sym_boolean_literal] = STATE(2074), [sym_line_comment] = STATE(399), [sym_block_comment] = STATE(399), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(1227), - [anon_sym_LPAREN] = ACTIONS(1229), - [anon_sym_RPAREN] = ACTIONS(1465), - [anon_sym_LBRACK] = ACTIONS(1233), - [anon_sym_STAR] = ACTIONS(1235), - [anon_sym_QMARK] = ACTIONS(1237), - [anon_sym_u8] = ACTIONS(1239), - [anon_sym_i8] = ACTIONS(1239), - [anon_sym_u16] = ACTIONS(1239), - [anon_sym_i16] = ACTIONS(1239), - [anon_sym_u32] = ACTIONS(1239), - [anon_sym_i32] = ACTIONS(1239), - [anon_sym_u64] = ACTIONS(1239), - [anon_sym_i64] = ACTIONS(1239), - [anon_sym_u128] = ACTIONS(1239), - [anon_sym_i128] = ACTIONS(1239), - [anon_sym_isize] = ACTIONS(1239), - [anon_sym_usize] = ACTIONS(1239), - [anon_sym_f32] = ACTIONS(1239), - [anon_sym_f64] = ACTIONS(1239), - [anon_sym_bool] = ACTIONS(1239), - [anon_sym_str] = ACTIONS(1239), - [anon_sym_char] = ACTIONS(1239), - [anon_sym_DASH] = ACTIONS(1241), - [anon_sym_BANG] = ACTIONS(1243), - [anon_sym_AMP] = ACTIONS(1447), - [anon_sym_PIPE] = ACTIONS(1449), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1451), - [anon_sym_DOT_DOT] = ACTIONS(1251), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1255), - [anon_sym_COMMA] = ACTIONS(1453), - [anon_sym_COLON_COLON] = ACTIONS(1259), - [anon_sym_SQUOTE] = ACTIONS(1263), - [anon_sym_async] = ACTIONS(1265), - [anon_sym_const] = ACTIONS(1267), - [anon_sym_default] = ACTIONS(1269), - [anon_sym_fn] = ACTIONS(1271), - [anon_sym_for] = ACTIONS(1273), - [anon_sym_gen] = ACTIONS(1275), - [anon_sym_impl] = ACTIONS(1277), - [anon_sym_static] = ACTIONS(1455), - [anon_sym_union] = ACTIONS(1275), - [anon_sym_unsafe] = ACTIONS(1265), - [anon_sym_extern] = ACTIONS(1279), - [anon_sym_ref] = ACTIONS(1281), - [anon_sym_dyn] = ACTIONS(1283), - [sym_mutable_specifier] = ACTIONS(1457), - [anon_sym_move] = ACTIONS(1459), - [sym_integer_literal] = ACTIONS(1287), - [aux_sym_string_literal_token1] = ACTIONS(1289), - [sym_char_literal] = ACTIONS(1287), - [anon_sym_true] = ACTIONS(1291), - [anon_sym_false] = ACTIONS(1291), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1295), - [sym_super] = ACTIONS(1295), - [sym_crate] = ACTIONS(1295), - [sym_metavariable] = ACTIONS(1297), - [sym__raw_string_literal_start] = ACTIONS(1299), - [sym_float_literal] = ACTIONS(1287), + [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_safe] = 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), }, [STATE(400)] = { [sym_line_comment] = STATE(400), [sym_block_comment] = STATE(400), - [ts_builtin_sym_end] = ACTIONS(1467), - [sym_identifier] = ACTIONS(1469), - [anon_sym_SEMI] = ACTIONS(1467), - [anon_sym_macro_rules_BANG] = ACTIONS(1467), - [anon_sym_LPAREN] = ACTIONS(1467), - [anon_sym_LBRACK] = ACTIONS(1467), - [anon_sym_LBRACE] = ACTIONS(1467), - [anon_sym_RBRACE] = ACTIONS(1467), - [anon_sym_PLUS] = ACTIONS(1469), - [anon_sym_STAR] = ACTIONS(1469), - [anon_sym_QMARK] = ACTIONS(1467), - [anon_sym_u8] = ACTIONS(1469), - [anon_sym_i8] = ACTIONS(1469), - [anon_sym_u16] = ACTIONS(1469), - [anon_sym_i16] = ACTIONS(1469), - [anon_sym_u32] = ACTIONS(1469), - [anon_sym_i32] = ACTIONS(1469), - [anon_sym_u64] = ACTIONS(1469), - [anon_sym_i64] = ACTIONS(1469), - [anon_sym_u128] = ACTIONS(1469), - [anon_sym_i128] = ACTIONS(1469), - [anon_sym_isize] = ACTIONS(1469), - [anon_sym_usize] = ACTIONS(1469), - [anon_sym_f32] = ACTIONS(1469), - [anon_sym_f64] = ACTIONS(1469), - [anon_sym_bool] = ACTIONS(1469), - [anon_sym_str] = ACTIONS(1469), - [anon_sym_char] = ACTIONS(1469), - [anon_sym_DASH] = ACTIONS(1469), - [anon_sym_SLASH] = ACTIONS(1469), - [anon_sym_PERCENT] = ACTIONS(1469), - [anon_sym_CARET] = ACTIONS(1469), - [anon_sym_BANG] = ACTIONS(1469), - [anon_sym_AMP] = ACTIONS(1469), - [anon_sym_PIPE] = ACTIONS(1469), - [anon_sym_AMP_AMP] = ACTIONS(1467), - [anon_sym_PIPE_PIPE] = ACTIONS(1467), - [anon_sym_LT_LT] = ACTIONS(1469), - [anon_sym_GT_GT] = ACTIONS(1469), - [anon_sym_PLUS_EQ] = ACTIONS(1467), - [anon_sym_DASH_EQ] = ACTIONS(1467), - [anon_sym_STAR_EQ] = ACTIONS(1467), - [anon_sym_SLASH_EQ] = ACTIONS(1467), - [anon_sym_PERCENT_EQ] = ACTIONS(1467), - [anon_sym_CARET_EQ] = ACTIONS(1467), - [anon_sym_AMP_EQ] = ACTIONS(1467), - [anon_sym_PIPE_EQ] = ACTIONS(1467), - [anon_sym_LT_LT_EQ] = ACTIONS(1467), - [anon_sym_GT_GT_EQ] = ACTIONS(1467), - [anon_sym_EQ] = ACTIONS(1469), - [anon_sym_EQ_EQ] = ACTIONS(1467), - [anon_sym_BANG_EQ] = ACTIONS(1467), - [anon_sym_GT] = ACTIONS(1469), - [anon_sym_LT] = ACTIONS(1469), - [anon_sym_GT_EQ] = ACTIONS(1467), - [anon_sym_LT_EQ] = ACTIONS(1467), - [anon_sym_DOT] = ACTIONS(1469), - [anon_sym_DOT_DOT] = ACTIONS(1469), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1467), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1467), - [anon_sym_COLON_COLON] = ACTIONS(1467), - [anon_sym_POUND] = ACTIONS(1467), - [anon_sym_SQUOTE] = ACTIONS(1469), - [anon_sym_as] = ACTIONS(1469), - [anon_sym_async] = ACTIONS(1469), - [anon_sym_break] = ACTIONS(1469), - [anon_sym_const] = ACTIONS(1469), - [anon_sym_continue] = ACTIONS(1469), - [anon_sym_default] = ACTIONS(1469), - [anon_sym_enum] = ACTIONS(1469), - [anon_sym_fn] = ACTIONS(1469), - [anon_sym_for] = ACTIONS(1469), - [anon_sym_gen] = ACTIONS(1469), - [anon_sym_if] = ACTIONS(1469), - [anon_sym_impl] = ACTIONS(1469), - [anon_sym_let] = ACTIONS(1469), - [anon_sym_loop] = ACTIONS(1469), - [anon_sym_match] = ACTIONS(1469), - [anon_sym_mod] = ACTIONS(1469), - [anon_sym_pub] = ACTIONS(1469), - [anon_sym_return] = ACTIONS(1469), - [anon_sym_static] = ACTIONS(1469), - [anon_sym_struct] = ACTIONS(1469), - [anon_sym_trait] = ACTIONS(1469), - [anon_sym_type] = ACTIONS(1469), - [anon_sym_union] = ACTIONS(1469), - [anon_sym_unsafe] = ACTIONS(1469), - [anon_sym_use] = ACTIONS(1469), - [anon_sym_while] = ACTIONS(1469), - [anon_sym_extern] = ACTIONS(1469), - [anon_sym_yield] = ACTIONS(1469), - [anon_sym_move] = ACTIONS(1469), - [anon_sym_try] = ACTIONS(1469), - [sym_integer_literal] = ACTIONS(1467), - [aux_sym_string_literal_token1] = ACTIONS(1467), - [sym_char_literal] = ACTIONS(1467), - [anon_sym_true] = ACTIONS(1469), - [anon_sym_false] = ACTIONS(1469), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1469), - [sym_super] = ACTIONS(1469), - [sym_crate] = ACTIONS(1469), - [sym_metavariable] = ACTIONS(1467), - [sym__raw_string_literal_start] = ACTIONS(1467), - [sym_float_literal] = ACTIONS(1467), + [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_safe] = 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), }, [STATE(401)] = { [sym_line_comment] = STATE(401), [sym_block_comment] = STATE(401), - [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_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_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(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [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), + [ts_builtin_sym_end] = ACTIONS(1466), + [sym_identifier] = ACTIONS(1468), + [anon_sym_SEMI] = ACTIONS(1470), + [anon_sym_macro_rules_BANG] = ACTIONS(1466), + [anon_sym_LPAREN] = ACTIONS(1470), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_LBRACE] = ACTIONS(1466), + [anon_sym_RBRACE] = ACTIONS(1470), + [anon_sym_PLUS] = ACTIONS(1472), + [anon_sym_STAR] = ACTIONS(1472), + [anon_sym_QMARK] = ACTIONS(1470), + [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(1472), + [anon_sym_SLASH] = ACTIONS(1472), + [anon_sym_PERCENT] = ACTIONS(1472), + [anon_sym_CARET] = ACTIONS(1472), + [anon_sym_BANG] = ACTIONS(1468), + [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(1466), + [anon_sym_POUND] = ACTIONS(1466), + [anon_sym_SQUOTE] = ACTIONS(1468), + [anon_sym_as] = ACTIONS(1472), + [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_safe] = 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), }, [STATE(402)] = { + [sym_attribute_item] = STATE(422), + [sym_function_modifiers] = STATE(3591), + [sym_removed_trait_bound] = STATE(2069), + [sym_self_parameter] = STATE(3352), + [sym_variadic_parameter] = STATE(3352), + [sym_parameter] = STATE(3352), + [sym_extern_modifier] = STATE(2373), + [sym__type] = STATE(3096), + [sym_bracketed_type] = STATE(3673), + [sym_lifetime] = STATE(3067), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1591), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2022), + [sym_generic_type_with_turbofish] = STATE(3329), + [sym_bounded_type] = STATE(2069), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2552), + [sym_scoped_identifier] = STATE(2299), + [sym_scoped_type_identifier] = STATE(2203), + [sym_const_block] = STATE(2163), + [sym__pattern] = STATE(3292), + [sym_generic_pattern] = STATE(2163), + [sym_tuple_pattern] = STATE(2163), + [sym_slice_pattern] = STATE(2163), + [sym_tuple_struct_pattern] = STATE(2163), + [sym_struct_pattern] = STATE(2163), + [sym_remaining_field_pattern] = STATE(2163), + [sym_mut_pattern] = STATE(2163), + [sym_range_pattern] = STATE(2163), + [sym_ref_pattern] = STATE(2163), + [sym_captured_pattern] = STATE(2163), + [sym_reference_pattern] = STATE(2163), + [sym_or_pattern] = STATE(2163), + [sym__literal_pattern] = STATE(2098), + [sym_negative_literal] = STATE(2095), + [sym_string_literal] = STATE(2095), + [sym_raw_string_literal] = STATE(2095), + [sym_boolean_literal] = STATE(2095), [sym_line_comment] = STATE(402), [sym_block_comment] = STATE(402), - [ts_builtin_sym_end] = ACTIONS(1047), - [sym_identifier] = ACTIONS(1045), - [anon_sym_SEMI] = ACTIONS(1047), - [anon_sym_macro_rules_BANG] = ACTIONS(1047), - [anon_sym_LPAREN] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1047), - [anon_sym_LBRACE] = ACTIONS(1047), - [anon_sym_RBRACE] = ACTIONS(1047), - [anon_sym_PLUS] = ACTIONS(1045), - [anon_sym_STAR] = ACTIONS(1045), - [anon_sym_QMARK] = ACTIONS(1047), - [anon_sym_u8] = ACTIONS(1045), - [anon_sym_i8] = ACTIONS(1045), - [anon_sym_u16] = ACTIONS(1045), - [anon_sym_i16] = ACTIONS(1045), - [anon_sym_u32] = ACTIONS(1045), - [anon_sym_i32] = ACTIONS(1045), - [anon_sym_u64] = ACTIONS(1045), - [anon_sym_i64] = ACTIONS(1045), - [anon_sym_u128] = ACTIONS(1045), - [anon_sym_i128] = ACTIONS(1045), - [anon_sym_isize] = ACTIONS(1045), - [anon_sym_usize] = ACTIONS(1045), - [anon_sym_f32] = ACTIONS(1045), - [anon_sym_f64] = ACTIONS(1045), - [anon_sym_bool] = ACTIONS(1045), - [anon_sym_str] = ACTIONS(1045), - [anon_sym_char] = ACTIONS(1045), - [anon_sym_DASH] = ACTIONS(1045), - [anon_sym_SLASH] = ACTIONS(1045), - [anon_sym_PERCENT] = ACTIONS(1045), - [anon_sym_CARET] = ACTIONS(1045), - [anon_sym_BANG] = ACTIONS(1045), - [anon_sym_AMP] = ACTIONS(1045), - [anon_sym_PIPE] = ACTIONS(1045), - [anon_sym_AMP_AMP] = ACTIONS(1047), - [anon_sym_PIPE_PIPE] = ACTIONS(1047), - [anon_sym_LT_LT] = ACTIONS(1045), - [anon_sym_GT_GT] = ACTIONS(1045), - [anon_sym_PLUS_EQ] = ACTIONS(1047), - [anon_sym_DASH_EQ] = ACTIONS(1047), - [anon_sym_STAR_EQ] = ACTIONS(1047), - [anon_sym_SLASH_EQ] = ACTIONS(1047), - [anon_sym_PERCENT_EQ] = ACTIONS(1047), - [anon_sym_CARET_EQ] = ACTIONS(1047), - [anon_sym_AMP_EQ] = ACTIONS(1047), - [anon_sym_PIPE_EQ] = ACTIONS(1047), - [anon_sym_LT_LT_EQ] = ACTIONS(1047), - [anon_sym_GT_GT_EQ] = ACTIONS(1047), - [anon_sym_EQ] = ACTIONS(1045), - [anon_sym_EQ_EQ] = ACTIONS(1047), - [anon_sym_BANG_EQ] = ACTIONS(1047), - [anon_sym_GT] = ACTIONS(1045), - [anon_sym_LT] = ACTIONS(1045), - [anon_sym_GT_EQ] = ACTIONS(1047), - [anon_sym_LT_EQ] = ACTIONS(1047), - [anon_sym_DOT] = ACTIONS(1045), - [anon_sym_DOT_DOT] = ACTIONS(1045), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1047), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1047), - [anon_sym_COLON_COLON] = ACTIONS(1047), - [anon_sym_POUND] = ACTIONS(1047), - [anon_sym_SQUOTE] = ACTIONS(1045), - [anon_sym_as] = ACTIONS(1045), - [anon_sym_async] = ACTIONS(1045), - [anon_sym_break] = ACTIONS(1045), - [anon_sym_const] = ACTIONS(1045), - [anon_sym_continue] = ACTIONS(1045), - [anon_sym_default] = ACTIONS(1045), - [anon_sym_enum] = ACTIONS(1045), - [anon_sym_fn] = ACTIONS(1045), - [anon_sym_for] = ACTIONS(1045), - [anon_sym_gen] = ACTIONS(1045), - [anon_sym_if] = ACTIONS(1045), - [anon_sym_impl] = ACTIONS(1045), - [anon_sym_let] = ACTIONS(1045), - [anon_sym_loop] = ACTIONS(1045), - [anon_sym_match] = ACTIONS(1045), - [anon_sym_mod] = ACTIONS(1045), - [anon_sym_pub] = ACTIONS(1045), - [anon_sym_return] = ACTIONS(1045), - [anon_sym_static] = ACTIONS(1045), - [anon_sym_struct] = ACTIONS(1045), - [anon_sym_trait] = ACTIONS(1045), - [anon_sym_type] = ACTIONS(1045), - [anon_sym_union] = ACTIONS(1045), - [anon_sym_unsafe] = ACTIONS(1045), - [anon_sym_use] = ACTIONS(1045), - [anon_sym_while] = ACTIONS(1045), - [anon_sym_extern] = ACTIONS(1045), - [anon_sym_yield] = ACTIONS(1045), - [anon_sym_move] = ACTIONS(1045), - [anon_sym_try] = ACTIONS(1045), - [sym_integer_literal] = ACTIONS(1047), - [aux_sym_string_literal_token1] = ACTIONS(1047), - [sym_char_literal] = ACTIONS(1047), - [anon_sym_true] = ACTIONS(1045), - [anon_sym_false] = ACTIONS(1045), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1045), - [sym_super] = ACTIONS(1045), - [sym_crate] = ACTIONS(1045), - [sym_metavariable] = ACTIONS(1047), - [sym__raw_string_literal_start] = ACTIONS(1047), - [sym_float_literal] = ACTIONS(1047), + [aux_sym_function_modifiers_repeat1] = STATE(2244), + [sym_identifier] = ACTIONS(1306), + [anon_sym_LPAREN] = ACTIONS(1308), + [anon_sym_LBRACK] = ACTIONS(1238), + [anon_sym_STAR] = ACTIONS(1240), + [anon_sym_QMARK] = ACTIONS(1242), + [anon_sym_u8] = ACTIONS(1312), + [anon_sym_i8] = ACTIONS(1312), + [anon_sym_u16] = ACTIONS(1312), + [anon_sym_i16] = ACTIONS(1312), + [anon_sym_u32] = ACTIONS(1312), + [anon_sym_i32] = ACTIONS(1312), + [anon_sym_u64] = ACTIONS(1312), + [anon_sym_i64] = ACTIONS(1312), + [anon_sym_u128] = ACTIONS(1312), + [anon_sym_i128] = ACTIONS(1312), + [anon_sym_isize] = ACTIONS(1312), + [anon_sym_usize] = ACTIONS(1312), + [anon_sym_f32] = ACTIONS(1312), + [anon_sym_f64] = ACTIONS(1312), + [anon_sym_bool] = ACTIONS(1312), + [anon_sym_str] = ACTIONS(1312), + [anon_sym_char] = ACTIONS(1312), + [anon_sym_DASH] = ACTIONS(1246), + [anon_sym_BANG] = ACTIONS(1248), + [anon_sym_AMP] = ACTIONS(1314), + [anon_sym_PIPE] = ACTIONS(1252), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1364), + [anon_sym_DOT_DOT] = ACTIONS(1256), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1258), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1260), + [anon_sym_COLON_COLON] = ACTIONS(1320), + [anon_sym_POUND] = ACTIONS(1266), + [anon_sym_SQUOTE] = ACTIONS(1268), + [anon_sym_async] = ACTIONS(1270), + [anon_sym_const] = ACTIONS(1272), + [anon_sym_default] = ACTIONS(1322), + [anon_sym_fn] = ACTIONS(1276), + [anon_sym_for] = ACTIONS(1278), + [anon_sym_gen] = ACTIONS(1324), + [anon_sym_impl] = ACTIONS(1282), + [anon_sym_union] = ACTIONS(1324), + [anon_sym_unsafe] = ACTIONS(1270), + [anon_sym_extern] = ACTIONS(1284), + [anon_sym_safe] = ACTIONS(1270), + [anon_sym_ref] = ACTIONS(1286), + [anon_sym_dyn] = ACTIONS(1288), + [sym_mutable_specifier] = ACTIONS(1290), + [sym_integer_literal] = ACTIONS(1292), + [aux_sym_string_literal_token1] = ACTIONS(1294), + [sym_char_literal] = ACTIONS(1292), + [anon_sym_true] = ACTIONS(1296), + [anon_sym_false] = ACTIONS(1296), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1326), + [sym_super] = ACTIONS(1328), + [sym_crate] = ACTIONS(1328), + [sym_metavariable] = ACTIONS(1330), + [sym__raw_string_literal_start] = ACTIONS(1304), + [sym_float_literal] = ACTIONS(1292), }, [STATE(403)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2817), - [sym_bracketed_type] = STATE(3652), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3382), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2517), - [sym_scoped_identifier] = STATE(2191), - [sym_scoped_type_identifier] = STATE(2154), - [sym_const_block] = STATE(2150), - [sym_closure_expression] = STATE(3069), - [sym_closure_parameters] = STATE(239), - [sym__pattern] = STATE(2770), - [sym_generic_pattern] = STATE(2150), - [sym_tuple_pattern] = STATE(2150), - [sym_slice_pattern] = STATE(2150), - [sym_tuple_struct_pattern] = STATE(2150), - [sym_struct_pattern] = STATE(2150), - [sym_remaining_field_pattern] = STATE(2150), - [sym_mut_pattern] = STATE(2150), - [sym_range_pattern] = STATE(2150), - [sym_ref_pattern] = STATE(2150), - [sym_captured_pattern] = STATE(2150), - [sym_reference_pattern] = STATE(2150), - [sym_or_pattern] = STATE(2150), - [sym__literal_pattern] = STATE(2076), - [sym_negative_literal] = STATE(2074), - [sym_string_literal] = STATE(2074), - [sym_raw_string_literal] = STATE(2074), - [sym_boolean_literal] = STATE(2074), [sym_line_comment] = STATE(403), [sym_block_comment] = STATE(403), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(1227), - [anon_sym_LPAREN] = ACTIONS(1229), - [anon_sym_RPAREN] = ACTIONS(1475), - [anon_sym_LBRACK] = ACTIONS(1233), - [anon_sym_STAR] = ACTIONS(1235), - [anon_sym_QMARK] = ACTIONS(1237), - [anon_sym_u8] = ACTIONS(1239), - [anon_sym_i8] = ACTIONS(1239), - [anon_sym_u16] = ACTIONS(1239), - [anon_sym_i16] = ACTIONS(1239), - [anon_sym_u32] = ACTIONS(1239), - [anon_sym_i32] = ACTIONS(1239), - [anon_sym_u64] = ACTIONS(1239), - [anon_sym_i64] = ACTIONS(1239), - [anon_sym_u128] = ACTIONS(1239), - [anon_sym_i128] = ACTIONS(1239), - [anon_sym_isize] = ACTIONS(1239), - [anon_sym_usize] = ACTIONS(1239), - [anon_sym_f32] = ACTIONS(1239), - [anon_sym_f64] = ACTIONS(1239), - [anon_sym_bool] = ACTIONS(1239), - [anon_sym_str] = ACTIONS(1239), - [anon_sym_char] = ACTIONS(1239), - [anon_sym_DASH] = ACTIONS(1241), - [anon_sym_BANG] = ACTIONS(1243), - [anon_sym_AMP] = ACTIONS(1447), - [anon_sym_PIPE] = ACTIONS(1449), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1451), - [anon_sym_DOT_DOT] = ACTIONS(1251), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1255), - [anon_sym_COMMA] = ACTIONS(1453), - [anon_sym_COLON_COLON] = ACTIONS(1259), - [anon_sym_SQUOTE] = ACTIONS(1263), - [anon_sym_async] = ACTIONS(1265), - [anon_sym_const] = ACTIONS(1267), - [anon_sym_default] = ACTIONS(1269), - [anon_sym_fn] = ACTIONS(1271), - [anon_sym_for] = ACTIONS(1273), - [anon_sym_gen] = ACTIONS(1275), - [anon_sym_impl] = ACTIONS(1277), - [anon_sym_static] = ACTIONS(1455), - [anon_sym_union] = ACTIONS(1275), - [anon_sym_unsafe] = ACTIONS(1265), - [anon_sym_extern] = ACTIONS(1279), - [anon_sym_ref] = ACTIONS(1281), - [anon_sym_dyn] = ACTIONS(1283), - [sym_mutable_specifier] = ACTIONS(1457), - [anon_sym_move] = ACTIONS(1459), - [sym_integer_literal] = ACTIONS(1287), - [aux_sym_string_literal_token1] = ACTIONS(1289), - [sym_char_literal] = ACTIONS(1287), - [anon_sym_true] = ACTIONS(1291), - [anon_sym_false] = ACTIONS(1291), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1295), - [sym_super] = ACTIONS(1295), - [sym_crate] = ACTIONS(1295), - [sym_metavariable] = ACTIONS(1297), - [sym__raw_string_literal_start] = ACTIONS(1299), - [sym_float_literal] = ACTIONS(1287), + [ts_builtin_sym_end] = ACTIONS(1474), + [sym_identifier] = ACTIONS(1476), + [anon_sym_SEMI] = ACTIONS(1474), + [anon_sym_macro_rules_BANG] = ACTIONS(1474), + [anon_sym_LPAREN] = ACTIONS(1474), + [anon_sym_LBRACK] = ACTIONS(1474), + [anon_sym_LBRACE] = ACTIONS(1474), + [anon_sym_RBRACE] = ACTIONS(1474), + [anon_sym_PLUS] = ACTIONS(1476), + [anon_sym_STAR] = ACTIONS(1476), + [anon_sym_QMARK] = ACTIONS(1474), + [anon_sym_u8] = ACTIONS(1476), + [anon_sym_i8] = ACTIONS(1476), + [anon_sym_u16] = ACTIONS(1476), + [anon_sym_i16] = ACTIONS(1476), + [anon_sym_u32] = ACTIONS(1476), + [anon_sym_i32] = ACTIONS(1476), + [anon_sym_u64] = ACTIONS(1476), + [anon_sym_i64] = ACTIONS(1476), + [anon_sym_u128] = ACTIONS(1476), + [anon_sym_i128] = ACTIONS(1476), + [anon_sym_isize] = ACTIONS(1476), + [anon_sym_usize] = ACTIONS(1476), + [anon_sym_f32] = ACTIONS(1476), + [anon_sym_f64] = ACTIONS(1476), + [anon_sym_bool] = ACTIONS(1476), + [anon_sym_str] = ACTIONS(1476), + [anon_sym_char] = ACTIONS(1476), + [anon_sym_DASH] = ACTIONS(1476), + [anon_sym_SLASH] = ACTIONS(1476), + [anon_sym_PERCENT] = ACTIONS(1476), + [anon_sym_CARET] = ACTIONS(1476), + [anon_sym_BANG] = ACTIONS(1476), + [anon_sym_AMP] = ACTIONS(1476), + [anon_sym_PIPE] = ACTIONS(1476), + [anon_sym_AMP_AMP] = ACTIONS(1474), + [anon_sym_PIPE_PIPE] = ACTIONS(1474), + [anon_sym_LT_LT] = ACTIONS(1476), + [anon_sym_GT_GT] = ACTIONS(1476), + [anon_sym_PLUS_EQ] = ACTIONS(1474), + [anon_sym_DASH_EQ] = ACTIONS(1474), + [anon_sym_STAR_EQ] = ACTIONS(1474), + [anon_sym_SLASH_EQ] = ACTIONS(1474), + [anon_sym_PERCENT_EQ] = ACTIONS(1474), + [anon_sym_CARET_EQ] = ACTIONS(1474), + [anon_sym_AMP_EQ] = ACTIONS(1474), + [anon_sym_PIPE_EQ] = ACTIONS(1474), + [anon_sym_LT_LT_EQ] = ACTIONS(1474), + [anon_sym_GT_GT_EQ] = ACTIONS(1474), + [anon_sym_EQ] = ACTIONS(1476), + [anon_sym_EQ_EQ] = ACTIONS(1474), + [anon_sym_BANG_EQ] = ACTIONS(1474), + [anon_sym_GT] = ACTIONS(1476), + [anon_sym_LT] = ACTIONS(1476), + [anon_sym_GT_EQ] = ACTIONS(1474), + [anon_sym_LT_EQ] = ACTIONS(1474), + [anon_sym_DOT] = ACTIONS(1476), + [anon_sym_DOT_DOT] = ACTIONS(1476), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1474), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1474), + [anon_sym_COLON_COLON] = ACTIONS(1474), + [anon_sym_POUND] = ACTIONS(1474), + [anon_sym_SQUOTE] = ACTIONS(1476), + [anon_sym_as] = ACTIONS(1476), + [anon_sym_async] = ACTIONS(1476), + [anon_sym_break] = ACTIONS(1476), + [anon_sym_const] = ACTIONS(1476), + [anon_sym_continue] = ACTIONS(1476), + [anon_sym_default] = ACTIONS(1476), + [anon_sym_enum] = ACTIONS(1476), + [anon_sym_fn] = ACTIONS(1476), + [anon_sym_for] = ACTIONS(1476), + [anon_sym_gen] = ACTIONS(1476), + [anon_sym_if] = ACTIONS(1476), + [anon_sym_impl] = ACTIONS(1476), + [anon_sym_let] = ACTIONS(1476), + [anon_sym_loop] = ACTIONS(1476), + [anon_sym_match] = ACTIONS(1476), + [anon_sym_mod] = ACTIONS(1476), + [anon_sym_pub] = ACTIONS(1476), + [anon_sym_return] = ACTIONS(1476), + [anon_sym_static] = ACTIONS(1476), + [anon_sym_struct] = ACTIONS(1476), + [anon_sym_trait] = ACTIONS(1476), + [anon_sym_type] = ACTIONS(1476), + [anon_sym_union] = ACTIONS(1476), + [anon_sym_unsafe] = ACTIONS(1476), + [anon_sym_use] = ACTIONS(1476), + [anon_sym_while] = ACTIONS(1476), + [anon_sym_extern] = ACTIONS(1476), + [anon_sym_safe] = ACTIONS(1476), + [anon_sym_yield] = ACTIONS(1476), + [anon_sym_move] = ACTIONS(1476), + [anon_sym_try] = ACTIONS(1476), + [sym_integer_literal] = ACTIONS(1474), + [aux_sym_string_literal_token1] = ACTIONS(1474), + [sym_char_literal] = ACTIONS(1474), + [anon_sym_true] = ACTIONS(1476), + [anon_sym_false] = ACTIONS(1476), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1476), + [sym_super] = ACTIONS(1476), + [sym_crate] = ACTIONS(1476), + [sym_metavariable] = ACTIONS(1474), + [sym__raw_string_literal_start] = ACTIONS(1474), + [sym_float_literal] = ACTIONS(1474), }, [STATE(404)] = { [sym_line_comment] = STATE(404), [sym_block_comment] = STATE(404), - [ts_builtin_sym_end] = ACTIONS(1477), - [sym_identifier] = ACTIONS(1479), - [anon_sym_SEMI] = ACTIONS(1477), - [anon_sym_macro_rules_BANG] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(1477), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LBRACE] = ACTIONS(1477), - [anon_sym_RBRACE] = ACTIONS(1477), - [anon_sym_PLUS] = ACTIONS(1479), - [anon_sym_STAR] = ACTIONS(1479), - [anon_sym_QMARK] = ACTIONS(1477), - [anon_sym_u8] = ACTIONS(1479), - [anon_sym_i8] = ACTIONS(1479), - [anon_sym_u16] = ACTIONS(1479), - [anon_sym_i16] = ACTIONS(1479), - [anon_sym_u32] = ACTIONS(1479), - [anon_sym_i32] = ACTIONS(1479), - [anon_sym_u64] = ACTIONS(1479), - [anon_sym_i64] = ACTIONS(1479), - [anon_sym_u128] = ACTIONS(1479), - [anon_sym_i128] = ACTIONS(1479), - [anon_sym_isize] = ACTIONS(1479), - [anon_sym_usize] = ACTIONS(1479), - [anon_sym_f32] = ACTIONS(1479), - [anon_sym_f64] = ACTIONS(1479), - [anon_sym_bool] = ACTIONS(1479), - [anon_sym_str] = ACTIONS(1479), - [anon_sym_char] = ACTIONS(1479), - [anon_sym_DASH] = ACTIONS(1479), - [anon_sym_SLASH] = ACTIONS(1479), - [anon_sym_PERCENT] = ACTIONS(1479), - [anon_sym_CARET] = ACTIONS(1479), - [anon_sym_BANG] = ACTIONS(1479), - [anon_sym_AMP] = ACTIONS(1479), - [anon_sym_PIPE] = ACTIONS(1479), - [anon_sym_AMP_AMP] = ACTIONS(1477), - [anon_sym_PIPE_PIPE] = ACTIONS(1477), - [anon_sym_LT_LT] = ACTIONS(1479), - [anon_sym_GT_GT] = ACTIONS(1479), - [anon_sym_PLUS_EQ] = ACTIONS(1477), - [anon_sym_DASH_EQ] = ACTIONS(1477), - [anon_sym_STAR_EQ] = ACTIONS(1477), - [anon_sym_SLASH_EQ] = ACTIONS(1477), - [anon_sym_PERCENT_EQ] = ACTIONS(1477), - [anon_sym_CARET_EQ] = ACTIONS(1477), - [anon_sym_AMP_EQ] = ACTIONS(1477), - [anon_sym_PIPE_EQ] = ACTIONS(1477), - [anon_sym_LT_LT_EQ] = ACTIONS(1477), - [anon_sym_GT_GT_EQ] = ACTIONS(1477), - [anon_sym_EQ] = ACTIONS(1479), - [anon_sym_EQ_EQ] = ACTIONS(1477), - [anon_sym_BANG_EQ] = ACTIONS(1477), - [anon_sym_GT] = ACTIONS(1479), - [anon_sym_LT] = ACTIONS(1479), - [anon_sym_GT_EQ] = ACTIONS(1477), - [anon_sym_LT_EQ] = ACTIONS(1477), - [anon_sym_DOT] = ACTIONS(1479), - [anon_sym_DOT_DOT] = ACTIONS(1479), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1477), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1477), - [anon_sym_COLON_COLON] = ACTIONS(1477), - [anon_sym_POUND] = ACTIONS(1477), - [anon_sym_SQUOTE] = ACTIONS(1479), - [anon_sym_as] = ACTIONS(1479), - [anon_sym_async] = ACTIONS(1479), - [anon_sym_break] = ACTIONS(1479), - [anon_sym_const] = ACTIONS(1479), - [anon_sym_continue] = ACTIONS(1479), - [anon_sym_default] = ACTIONS(1479), - [anon_sym_enum] = ACTIONS(1479), - [anon_sym_fn] = ACTIONS(1479), - [anon_sym_for] = ACTIONS(1479), - [anon_sym_gen] = ACTIONS(1479), - [anon_sym_if] = ACTIONS(1479), - [anon_sym_impl] = ACTIONS(1479), - [anon_sym_let] = ACTIONS(1479), - [anon_sym_loop] = ACTIONS(1479), - [anon_sym_match] = ACTIONS(1479), - [anon_sym_mod] = ACTIONS(1479), - [anon_sym_pub] = ACTIONS(1479), - [anon_sym_return] = ACTIONS(1479), - [anon_sym_static] = ACTIONS(1479), - [anon_sym_struct] = ACTIONS(1479), - [anon_sym_trait] = ACTIONS(1479), - [anon_sym_type] = ACTIONS(1479), - [anon_sym_union] = ACTIONS(1479), - [anon_sym_unsafe] = ACTIONS(1479), - [anon_sym_use] = ACTIONS(1479), - [anon_sym_while] = ACTIONS(1479), - [anon_sym_extern] = ACTIONS(1479), - [anon_sym_yield] = ACTIONS(1479), - [anon_sym_move] = ACTIONS(1479), - [anon_sym_try] = ACTIONS(1479), - [sym_integer_literal] = ACTIONS(1477), - [aux_sym_string_literal_token1] = ACTIONS(1477), - [sym_char_literal] = ACTIONS(1477), - [anon_sym_true] = ACTIONS(1479), - [anon_sym_false] = ACTIONS(1479), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1479), - [sym_super] = ACTIONS(1479), - [sym_crate] = ACTIONS(1479), - [sym_metavariable] = ACTIONS(1477), - [sym__raw_string_literal_start] = ACTIONS(1477), - [sym_float_literal] = ACTIONS(1477), + [ts_builtin_sym_end] = ACTIONS(1478), + [sym_identifier] = ACTIONS(1480), + [anon_sym_SEMI] = ACTIONS(1478), + [anon_sym_macro_rules_BANG] = ACTIONS(1478), + [anon_sym_LPAREN] = ACTIONS(1478), + [anon_sym_LBRACK] = ACTIONS(1478), + [anon_sym_LBRACE] = ACTIONS(1478), + [anon_sym_RBRACE] = ACTIONS(1478), + [anon_sym_PLUS] = ACTIONS(1472), + [anon_sym_STAR] = ACTIONS(1480), + [anon_sym_QMARK] = ACTIONS(1470), + [anon_sym_u8] = ACTIONS(1480), + [anon_sym_i8] = ACTIONS(1480), + [anon_sym_u16] = ACTIONS(1480), + [anon_sym_i16] = ACTIONS(1480), + [anon_sym_u32] = ACTIONS(1480), + [anon_sym_i32] = ACTIONS(1480), + [anon_sym_u64] = ACTIONS(1480), + [anon_sym_i64] = ACTIONS(1480), + [anon_sym_u128] = ACTIONS(1480), + [anon_sym_i128] = ACTIONS(1480), + [anon_sym_isize] = ACTIONS(1480), + [anon_sym_usize] = ACTIONS(1480), + [anon_sym_f32] = ACTIONS(1480), + [anon_sym_f64] = ACTIONS(1480), + [anon_sym_bool] = ACTIONS(1480), + [anon_sym_str] = ACTIONS(1480), + [anon_sym_char] = ACTIONS(1480), + [anon_sym_DASH] = ACTIONS(1480), + [anon_sym_SLASH] = ACTIONS(1472), + [anon_sym_PERCENT] = ACTIONS(1472), + [anon_sym_CARET] = ACTIONS(1472), + [anon_sym_BANG] = ACTIONS(1480), + [anon_sym_AMP] = ACTIONS(1480), + [anon_sym_PIPE] = ACTIONS(1480), + [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(1480), + [anon_sym_GT_EQ] = ACTIONS(1470), + [anon_sym_LT_EQ] = ACTIONS(1470), + [anon_sym_DOT] = ACTIONS(1472), + [anon_sym_DOT_DOT] = ACTIONS(1480), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1470), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1470), + [anon_sym_COLON_COLON] = ACTIONS(1478), + [anon_sym_POUND] = ACTIONS(1478), + [anon_sym_SQUOTE] = ACTIONS(1480), + [anon_sym_as] = ACTIONS(1472), + [anon_sym_async] = ACTIONS(1480), + [anon_sym_break] = ACTIONS(1480), + [anon_sym_const] = ACTIONS(1480), + [anon_sym_continue] = ACTIONS(1480), + [anon_sym_default] = ACTIONS(1480), + [anon_sym_enum] = ACTIONS(1480), + [anon_sym_fn] = ACTIONS(1480), + [anon_sym_for] = ACTIONS(1480), + [anon_sym_gen] = ACTIONS(1480), + [anon_sym_if] = ACTIONS(1480), + [anon_sym_impl] = ACTIONS(1480), + [anon_sym_let] = ACTIONS(1480), + [anon_sym_loop] = ACTIONS(1480), + [anon_sym_match] = ACTIONS(1480), + [anon_sym_mod] = ACTIONS(1480), + [anon_sym_pub] = ACTIONS(1480), + [anon_sym_return] = ACTIONS(1480), + [anon_sym_static] = ACTIONS(1480), + [anon_sym_struct] = ACTIONS(1480), + [anon_sym_trait] = ACTIONS(1480), + [anon_sym_type] = ACTIONS(1480), + [anon_sym_union] = ACTIONS(1480), + [anon_sym_unsafe] = ACTIONS(1480), + [anon_sym_use] = ACTIONS(1480), + [anon_sym_while] = ACTIONS(1480), + [anon_sym_extern] = ACTIONS(1480), + [anon_sym_safe] = ACTIONS(1480), + [anon_sym_yield] = ACTIONS(1480), + [anon_sym_move] = ACTIONS(1480), + [anon_sym_try] = ACTIONS(1480), + [sym_integer_literal] = ACTIONS(1478), + [aux_sym_string_literal_token1] = ACTIONS(1478), + [sym_char_literal] = ACTIONS(1478), + [anon_sym_true] = ACTIONS(1480), + [anon_sym_false] = ACTIONS(1480), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1480), + [sym_super] = ACTIONS(1480), + [sym_crate] = ACTIONS(1480), + [sym_metavariable] = ACTIONS(1478), + [sym__raw_string_literal_start] = ACTIONS(1478), + [sym_float_literal] = ACTIONS(1478), }, [STATE(405)] = { [sym_line_comment] = STATE(405), [sym_block_comment] = STATE(405), - [ts_builtin_sym_end] = ACTIONS(1481), - [sym_identifier] = ACTIONS(1483), - [anon_sym_SEMI] = ACTIONS(1481), - [anon_sym_macro_rules_BANG] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(1481), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LBRACE] = ACTIONS(1481), - [anon_sym_RBRACE] = ACTIONS(1481), - [anon_sym_PLUS] = ACTIONS(1483), - [anon_sym_STAR] = ACTIONS(1483), - [anon_sym_QMARK] = ACTIONS(1481), - [anon_sym_u8] = ACTIONS(1483), - [anon_sym_i8] = ACTIONS(1483), - [anon_sym_u16] = ACTIONS(1483), - [anon_sym_i16] = ACTIONS(1483), - [anon_sym_u32] = ACTIONS(1483), - [anon_sym_i32] = ACTIONS(1483), - [anon_sym_u64] = ACTIONS(1483), - [anon_sym_i64] = ACTIONS(1483), - [anon_sym_u128] = ACTIONS(1483), - [anon_sym_i128] = ACTIONS(1483), - [anon_sym_isize] = ACTIONS(1483), - [anon_sym_usize] = ACTIONS(1483), - [anon_sym_f32] = ACTIONS(1483), - [anon_sym_f64] = ACTIONS(1483), - [anon_sym_bool] = ACTIONS(1483), - [anon_sym_str] = ACTIONS(1483), - [anon_sym_char] = ACTIONS(1483), - [anon_sym_DASH] = ACTIONS(1483), - [anon_sym_SLASH] = ACTIONS(1483), - [anon_sym_PERCENT] = ACTIONS(1483), - [anon_sym_CARET] = ACTIONS(1483), - [anon_sym_BANG] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1483), - [anon_sym_PIPE] = ACTIONS(1483), - [anon_sym_AMP_AMP] = ACTIONS(1481), - [anon_sym_PIPE_PIPE] = ACTIONS(1481), - [anon_sym_LT_LT] = ACTIONS(1483), - [anon_sym_GT_GT] = ACTIONS(1483), - [anon_sym_PLUS_EQ] = ACTIONS(1481), - [anon_sym_DASH_EQ] = ACTIONS(1481), - [anon_sym_STAR_EQ] = ACTIONS(1481), - [anon_sym_SLASH_EQ] = ACTIONS(1481), - [anon_sym_PERCENT_EQ] = ACTIONS(1481), - [anon_sym_CARET_EQ] = ACTIONS(1481), - [anon_sym_AMP_EQ] = ACTIONS(1481), - [anon_sym_PIPE_EQ] = ACTIONS(1481), - [anon_sym_LT_LT_EQ] = ACTIONS(1481), - [anon_sym_GT_GT_EQ] = ACTIONS(1481), - [anon_sym_EQ] = ACTIONS(1483), - [anon_sym_EQ_EQ] = ACTIONS(1481), - [anon_sym_BANG_EQ] = ACTIONS(1481), - [anon_sym_GT] = ACTIONS(1483), - [anon_sym_LT] = ACTIONS(1483), - [anon_sym_GT_EQ] = ACTIONS(1481), - [anon_sym_LT_EQ] = ACTIONS(1481), - [anon_sym_DOT] = ACTIONS(1483), - [anon_sym_DOT_DOT] = ACTIONS(1483), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1481), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1481), - [anon_sym_COLON_COLON] = ACTIONS(1481), - [anon_sym_POUND] = ACTIONS(1481), - [anon_sym_SQUOTE] = ACTIONS(1483), - [anon_sym_as] = ACTIONS(1483), - [anon_sym_async] = ACTIONS(1483), - [anon_sym_break] = ACTIONS(1483), - [anon_sym_const] = ACTIONS(1483), - [anon_sym_continue] = ACTIONS(1483), - [anon_sym_default] = ACTIONS(1483), - [anon_sym_enum] = ACTIONS(1483), - [anon_sym_fn] = ACTIONS(1483), - [anon_sym_for] = ACTIONS(1483), - [anon_sym_gen] = ACTIONS(1483), - [anon_sym_if] = ACTIONS(1483), - [anon_sym_impl] = ACTIONS(1483), - [anon_sym_let] = ACTIONS(1483), - [anon_sym_loop] = ACTIONS(1483), - [anon_sym_match] = ACTIONS(1483), - [anon_sym_mod] = ACTIONS(1483), - [anon_sym_pub] = ACTIONS(1483), - [anon_sym_return] = ACTIONS(1483), - [anon_sym_static] = ACTIONS(1483), - [anon_sym_struct] = ACTIONS(1483), - [anon_sym_trait] = ACTIONS(1483), - [anon_sym_type] = ACTIONS(1483), - [anon_sym_union] = ACTIONS(1483), - [anon_sym_unsafe] = ACTIONS(1483), - [anon_sym_use] = ACTIONS(1483), - [anon_sym_while] = ACTIONS(1483), - [anon_sym_extern] = ACTIONS(1483), - [anon_sym_yield] = ACTIONS(1483), - [anon_sym_move] = ACTIONS(1483), - [anon_sym_try] = ACTIONS(1483), - [sym_integer_literal] = ACTIONS(1481), - [aux_sym_string_literal_token1] = ACTIONS(1481), - [sym_char_literal] = ACTIONS(1481), - [anon_sym_true] = ACTIONS(1483), - [anon_sym_false] = ACTIONS(1483), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1483), - [sym_super] = ACTIONS(1483), - [sym_crate] = ACTIONS(1483), - [sym_metavariable] = ACTIONS(1481), - [sym__raw_string_literal_start] = ACTIONS(1481), - [sym_float_literal] = ACTIONS(1481), + [ts_builtin_sym_end] = ACTIONS(1482), + [sym_identifier] = ACTIONS(1484), + [anon_sym_SEMI] = ACTIONS(1482), + [anon_sym_macro_rules_BANG] = ACTIONS(1482), + [anon_sym_LPAREN] = ACTIONS(1482), + [anon_sym_LBRACK] = ACTIONS(1482), + [anon_sym_LBRACE] = ACTIONS(1482), + [anon_sym_RBRACE] = ACTIONS(1482), + [anon_sym_PLUS] = ACTIONS(1484), + [anon_sym_STAR] = ACTIONS(1484), + [anon_sym_QMARK] = ACTIONS(1482), + [anon_sym_u8] = ACTIONS(1484), + [anon_sym_i8] = ACTIONS(1484), + [anon_sym_u16] = ACTIONS(1484), + [anon_sym_i16] = ACTIONS(1484), + [anon_sym_u32] = ACTIONS(1484), + [anon_sym_i32] = ACTIONS(1484), + [anon_sym_u64] = ACTIONS(1484), + [anon_sym_i64] = ACTIONS(1484), + [anon_sym_u128] = ACTIONS(1484), + [anon_sym_i128] = ACTIONS(1484), + [anon_sym_isize] = ACTIONS(1484), + [anon_sym_usize] = ACTIONS(1484), + [anon_sym_f32] = ACTIONS(1484), + [anon_sym_f64] = ACTIONS(1484), + [anon_sym_bool] = ACTIONS(1484), + [anon_sym_str] = ACTIONS(1484), + [anon_sym_char] = ACTIONS(1484), + [anon_sym_DASH] = ACTIONS(1484), + [anon_sym_SLASH] = ACTIONS(1484), + [anon_sym_PERCENT] = ACTIONS(1484), + [anon_sym_CARET] = ACTIONS(1484), + [anon_sym_BANG] = ACTIONS(1484), + [anon_sym_AMP] = ACTIONS(1484), + [anon_sym_PIPE] = ACTIONS(1484), + [anon_sym_AMP_AMP] = ACTIONS(1482), + [anon_sym_PIPE_PIPE] = ACTIONS(1482), + [anon_sym_LT_LT] = ACTIONS(1484), + [anon_sym_GT_GT] = ACTIONS(1484), + [anon_sym_PLUS_EQ] = ACTIONS(1482), + [anon_sym_DASH_EQ] = ACTIONS(1482), + [anon_sym_STAR_EQ] = ACTIONS(1482), + [anon_sym_SLASH_EQ] = ACTIONS(1482), + [anon_sym_PERCENT_EQ] = ACTIONS(1482), + [anon_sym_CARET_EQ] = ACTIONS(1482), + [anon_sym_AMP_EQ] = ACTIONS(1482), + [anon_sym_PIPE_EQ] = ACTIONS(1482), + [anon_sym_LT_LT_EQ] = ACTIONS(1482), + [anon_sym_GT_GT_EQ] = ACTIONS(1482), + [anon_sym_EQ] = ACTIONS(1484), + [anon_sym_EQ_EQ] = ACTIONS(1482), + [anon_sym_BANG_EQ] = ACTIONS(1482), + [anon_sym_GT] = ACTIONS(1484), + [anon_sym_LT] = ACTIONS(1484), + [anon_sym_GT_EQ] = ACTIONS(1482), + [anon_sym_LT_EQ] = ACTIONS(1482), + [anon_sym_DOT] = ACTIONS(1484), + [anon_sym_DOT_DOT] = ACTIONS(1484), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1482), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1482), + [anon_sym_COLON_COLON] = ACTIONS(1482), + [anon_sym_POUND] = ACTIONS(1482), + [anon_sym_SQUOTE] = ACTIONS(1484), + [anon_sym_as] = ACTIONS(1484), + [anon_sym_async] = ACTIONS(1484), + [anon_sym_break] = ACTIONS(1484), + [anon_sym_const] = ACTIONS(1484), + [anon_sym_continue] = ACTIONS(1484), + [anon_sym_default] = ACTIONS(1484), + [anon_sym_enum] = ACTIONS(1484), + [anon_sym_fn] = ACTIONS(1484), + [anon_sym_for] = ACTIONS(1484), + [anon_sym_gen] = ACTIONS(1484), + [anon_sym_if] = ACTIONS(1484), + [anon_sym_impl] = ACTIONS(1484), + [anon_sym_let] = ACTIONS(1484), + [anon_sym_loop] = ACTIONS(1484), + [anon_sym_match] = ACTIONS(1484), + [anon_sym_mod] = ACTIONS(1484), + [anon_sym_pub] = ACTIONS(1484), + [anon_sym_return] = ACTIONS(1484), + [anon_sym_static] = ACTIONS(1484), + [anon_sym_struct] = ACTIONS(1484), + [anon_sym_trait] = ACTIONS(1484), + [anon_sym_type] = ACTIONS(1484), + [anon_sym_union] = ACTIONS(1484), + [anon_sym_unsafe] = ACTIONS(1484), + [anon_sym_use] = ACTIONS(1484), + [anon_sym_while] = ACTIONS(1484), + [anon_sym_extern] = ACTIONS(1484), + [anon_sym_safe] = ACTIONS(1484), + [anon_sym_yield] = ACTIONS(1484), + [anon_sym_move] = ACTIONS(1484), + [anon_sym_try] = ACTIONS(1484), + [sym_integer_literal] = ACTIONS(1482), + [aux_sym_string_literal_token1] = ACTIONS(1482), + [sym_char_literal] = ACTIONS(1482), + [anon_sym_true] = ACTIONS(1484), + [anon_sym_false] = ACTIONS(1484), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1484), + [sym_super] = ACTIONS(1484), + [sym_crate] = ACTIONS(1484), + [sym_metavariable] = ACTIONS(1482), + [sym__raw_string_literal_start] = ACTIONS(1482), + [sym_float_literal] = ACTIONS(1482), }, [STATE(406)] = { [sym_line_comment] = STATE(406), [sym_block_comment] = STATE(406), - [ts_builtin_sym_end] = ACTIONS(1485), - [sym_identifier] = ACTIONS(1487), - [anon_sym_SEMI] = ACTIONS(1485), - [anon_sym_macro_rules_BANG] = ACTIONS(1485), - [anon_sym_LPAREN] = ACTIONS(1485), - [anon_sym_LBRACK] = ACTIONS(1485), - [anon_sym_LBRACE] = ACTIONS(1485), - [anon_sym_RBRACE] = ACTIONS(1485), - [anon_sym_PLUS] = ACTIONS(1487), - [anon_sym_STAR] = ACTIONS(1487), - [anon_sym_QMARK] = ACTIONS(1485), - [anon_sym_u8] = ACTIONS(1487), - [anon_sym_i8] = ACTIONS(1487), - [anon_sym_u16] = ACTIONS(1487), - [anon_sym_i16] = ACTIONS(1487), - [anon_sym_u32] = ACTIONS(1487), - [anon_sym_i32] = ACTIONS(1487), - [anon_sym_u64] = ACTIONS(1487), - [anon_sym_i64] = ACTIONS(1487), - [anon_sym_u128] = ACTIONS(1487), - [anon_sym_i128] = ACTIONS(1487), - [anon_sym_isize] = ACTIONS(1487), - [anon_sym_usize] = ACTIONS(1487), - [anon_sym_f32] = ACTIONS(1487), - [anon_sym_f64] = ACTIONS(1487), - [anon_sym_bool] = ACTIONS(1487), - [anon_sym_str] = ACTIONS(1487), - [anon_sym_char] = ACTIONS(1487), - [anon_sym_DASH] = ACTIONS(1487), - [anon_sym_SLASH] = ACTIONS(1487), - [anon_sym_PERCENT] = ACTIONS(1487), - [anon_sym_CARET] = ACTIONS(1487), - [anon_sym_BANG] = ACTIONS(1487), - [anon_sym_AMP] = ACTIONS(1487), - [anon_sym_PIPE] = ACTIONS(1487), - [anon_sym_AMP_AMP] = ACTIONS(1485), - [anon_sym_PIPE_PIPE] = ACTIONS(1485), - [anon_sym_LT_LT] = ACTIONS(1487), - [anon_sym_GT_GT] = ACTIONS(1487), - [anon_sym_PLUS_EQ] = ACTIONS(1485), - [anon_sym_DASH_EQ] = ACTIONS(1485), - [anon_sym_STAR_EQ] = ACTIONS(1485), - [anon_sym_SLASH_EQ] = ACTIONS(1485), - [anon_sym_PERCENT_EQ] = ACTIONS(1485), - [anon_sym_CARET_EQ] = ACTIONS(1485), - [anon_sym_AMP_EQ] = ACTIONS(1485), - [anon_sym_PIPE_EQ] = ACTIONS(1485), - [anon_sym_LT_LT_EQ] = ACTIONS(1485), - [anon_sym_GT_GT_EQ] = ACTIONS(1485), - [anon_sym_EQ] = ACTIONS(1487), - [anon_sym_EQ_EQ] = ACTIONS(1485), - [anon_sym_BANG_EQ] = ACTIONS(1485), - [anon_sym_GT] = ACTIONS(1487), - [anon_sym_LT] = ACTIONS(1487), - [anon_sym_GT_EQ] = ACTIONS(1485), - [anon_sym_LT_EQ] = ACTIONS(1485), - [anon_sym_DOT] = ACTIONS(1487), - [anon_sym_DOT_DOT] = ACTIONS(1487), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1485), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1485), - [anon_sym_COLON_COLON] = ACTIONS(1485), - [anon_sym_POUND] = ACTIONS(1485), - [anon_sym_SQUOTE] = ACTIONS(1487), - [anon_sym_as] = ACTIONS(1487), - [anon_sym_async] = ACTIONS(1487), - [anon_sym_break] = ACTIONS(1487), - [anon_sym_const] = ACTIONS(1487), - [anon_sym_continue] = ACTIONS(1487), - [anon_sym_default] = ACTIONS(1487), - [anon_sym_enum] = ACTIONS(1487), - [anon_sym_fn] = ACTIONS(1487), - [anon_sym_for] = ACTIONS(1487), - [anon_sym_gen] = ACTIONS(1487), - [anon_sym_if] = ACTIONS(1487), - [anon_sym_impl] = ACTIONS(1487), - [anon_sym_let] = ACTIONS(1487), - [anon_sym_loop] = ACTIONS(1487), - [anon_sym_match] = ACTIONS(1487), - [anon_sym_mod] = ACTIONS(1487), - [anon_sym_pub] = ACTIONS(1487), - [anon_sym_return] = ACTIONS(1487), - [anon_sym_static] = ACTIONS(1487), - [anon_sym_struct] = ACTIONS(1487), - [anon_sym_trait] = ACTIONS(1487), - [anon_sym_type] = ACTIONS(1487), - [anon_sym_union] = ACTIONS(1487), - [anon_sym_unsafe] = ACTIONS(1487), - [anon_sym_use] = ACTIONS(1487), - [anon_sym_while] = ACTIONS(1487), - [anon_sym_extern] = ACTIONS(1487), - [anon_sym_yield] = ACTIONS(1487), - [anon_sym_move] = ACTIONS(1487), - [anon_sym_try] = ACTIONS(1487), - [sym_integer_literal] = ACTIONS(1485), - [aux_sym_string_literal_token1] = ACTIONS(1485), - [sym_char_literal] = ACTIONS(1485), - [anon_sym_true] = ACTIONS(1487), - [anon_sym_false] = ACTIONS(1487), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1487), - [sym_super] = ACTIONS(1487), - [sym_crate] = ACTIONS(1487), - [sym_metavariable] = ACTIONS(1485), - [sym__raw_string_literal_start] = ACTIONS(1485), - [sym_float_literal] = ACTIONS(1485), + [ts_builtin_sym_end] = ACTIONS(1486), + [sym_identifier] = ACTIONS(1488), + [anon_sym_SEMI] = ACTIONS(1486), + [anon_sym_macro_rules_BANG] = ACTIONS(1486), + [anon_sym_LPAREN] = ACTIONS(1486), + [anon_sym_LBRACK] = ACTIONS(1486), + [anon_sym_LBRACE] = ACTIONS(1486), + [anon_sym_RBRACE] = ACTIONS(1486), + [anon_sym_PLUS] = ACTIONS(1488), + [anon_sym_STAR] = ACTIONS(1488), + [anon_sym_QMARK] = ACTIONS(1486), + [anon_sym_u8] = ACTIONS(1488), + [anon_sym_i8] = ACTIONS(1488), + [anon_sym_u16] = ACTIONS(1488), + [anon_sym_i16] = ACTIONS(1488), + [anon_sym_u32] = ACTIONS(1488), + [anon_sym_i32] = ACTIONS(1488), + [anon_sym_u64] = ACTIONS(1488), + [anon_sym_i64] = ACTIONS(1488), + [anon_sym_u128] = ACTIONS(1488), + [anon_sym_i128] = ACTIONS(1488), + [anon_sym_isize] = ACTIONS(1488), + [anon_sym_usize] = ACTIONS(1488), + [anon_sym_f32] = ACTIONS(1488), + [anon_sym_f64] = ACTIONS(1488), + [anon_sym_bool] = ACTIONS(1488), + [anon_sym_str] = ACTIONS(1488), + [anon_sym_char] = ACTIONS(1488), + [anon_sym_DASH] = ACTIONS(1488), + [anon_sym_SLASH] = ACTIONS(1488), + [anon_sym_PERCENT] = ACTIONS(1488), + [anon_sym_CARET] = ACTIONS(1488), + [anon_sym_BANG] = ACTIONS(1488), + [anon_sym_AMP] = ACTIONS(1488), + [anon_sym_PIPE] = ACTIONS(1488), + [anon_sym_AMP_AMP] = ACTIONS(1486), + [anon_sym_PIPE_PIPE] = ACTIONS(1486), + [anon_sym_LT_LT] = ACTIONS(1488), + [anon_sym_GT_GT] = ACTIONS(1488), + [anon_sym_PLUS_EQ] = ACTIONS(1486), + [anon_sym_DASH_EQ] = ACTIONS(1486), + [anon_sym_STAR_EQ] = ACTIONS(1486), + [anon_sym_SLASH_EQ] = ACTIONS(1486), + [anon_sym_PERCENT_EQ] = ACTIONS(1486), + [anon_sym_CARET_EQ] = ACTIONS(1486), + [anon_sym_AMP_EQ] = ACTIONS(1486), + [anon_sym_PIPE_EQ] = ACTIONS(1486), + [anon_sym_LT_LT_EQ] = ACTIONS(1486), + [anon_sym_GT_GT_EQ] = ACTIONS(1486), + [anon_sym_EQ] = ACTIONS(1488), + [anon_sym_EQ_EQ] = ACTIONS(1486), + [anon_sym_BANG_EQ] = ACTIONS(1486), + [anon_sym_GT] = ACTIONS(1488), + [anon_sym_LT] = ACTIONS(1488), + [anon_sym_GT_EQ] = ACTIONS(1486), + [anon_sym_LT_EQ] = ACTIONS(1486), + [anon_sym_DOT] = ACTIONS(1488), + [anon_sym_DOT_DOT] = ACTIONS(1488), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1486), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1486), + [anon_sym_COLON_COLON] = ACTIONS(1486), + [anon_sym_POUND] = ACTIONS(1486), + [anon_sym_SQUOTE] = ACTIONS(1488), + [anon_sym_as] = ACTIONS(1488), + [anon_sym_async] = ACTIONS(1488), + [anon_sym_break] = ACTIONS(1488), + [anon_sym_const] = ACTIONS(1488), + [anon_sym_continue] = ACTIONS(1488), + [anon_sym_default] = ACTIONS(1488), + [anon_sym_enum] = ACTIONS(1488), + [anon_sym_fn] = ACTIONS(1488), + [anon_sym_for] = ACTIONS(1488), + [anon_sym_gen] = ACTIONS(1488), + [anon_sym_if] = ACTIONS(1488), + [anon_sym_impl] = ACTIONS(1488), + [anon_sym_let] = ACTIONS(1488), + [anon_sym_loop] = ACTIONS(1488), + [anon_sym_match] = ACTIONS(1488), + [anon_sym_mod] = ACTIONS(1488), + [anon_sym_pub] = ACTIONS(1488), + [anon_sym_return] = ACTIONS(1488), + [anon_sym_static] = ACTIONS(1488), + [anon_sym_struct] = ACTIONS(1488), + [anon_sym_trait] = ACTIONS(1488), + [anon_sym_type] = ACTIONS(1488), + [anon_sym_union] = ACTIONS(1488), + [anon_sym_unsafe] = ACTIONS(1488), + [anon_sym_use] = ACTIONS(1488), + [anon_sym_while] = ACTIONS(1488), + [anon_sym_extern] = ACTIONS(1488), + [anon_sym_safe] = ACTIONS(1488), + [anon_sym_yield] = ACTIONS(1488), + [anon_sym_move] = ACTIONS(1488), + [anon_sym_try] = ACTIONS(1488), + [sym_integer_literal] = ACTIONS(1486), + [aux_sym_string_literal_token1] = ACTIONS(1486), + [sym_char_literal] = ACTIONS(1486), + [anon_sym_true] = ACTIONS(1488), + [anon_sym_false] = ACTIONS(1488), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1488), + [sym_super] = ACTIONS(1488), + [sym_crate] = ACTIONS(1488), + [sym_metavariable] = ACTIONS(1486), + [sym__raw_string_literal_start] = ACTIONS(1486), + [sym_float_literal] = ACTIONS(1486), }, [STATE(407)] = { [sym_line_comment] = STATE(407), [sym_block_comment] = STATE(407), - [ts_builtin_sym_end] = ACTIONS(1051), - [sym_identifier] = ACTIONS(1049), - [anon_sym_SEMI] = ACTIONS(1051), - [anon_sym_macro_rules_BANG] = ACTIONS(1051), - [anon_sym_LPAREN] = ACTIONS(1051), - [anon_sym_LBRACK] = ACTIONS(1051), - [anon_sym_LBRACE] = ACTIONS(1051), - [anon_sym_RBRACE] = ACTIONS(1051), - [anon_sym_PLUS] = ACTIONS(1049), - [anon_sym_STAR] = ACTIONS(1049), - [anon_sym_QMARK] = ACTIONS(1051), - [anon_sym_u8] = ACTIONS(1049), - [anon_sym_i8] = ACTIONS(1049), - [anon_sym_u16] = ACTIONS(1049), - [anon_sym_i16] = ACTIONS(1049), - [anon_sym_u32] = ACTIONS(1049), - [anon_sym_i32] = ACTIONS(1049), - [anon_sym_u64] = ACTIONS(1049), - [anon_sym_i64] = ACTIONS(1049), - [anon_sym_u128] = ACTIONS(1049), - [anon_sym_i128] = ACTIONS(1049), - [anon_sym_isize] = ACTIONS(1049), - [anon_sym_usize] = ACTIONS(1049), - [anon_sym_f32] = ACTIONS(1049), - [anon_sym_f64] = ACTIONS(1049), - [anon_sym_bool] = ACTIONS(1049), - [anon_sym_str] = ACTIONS(1049), - [anon_sym_char] = ACTIONS(1049), - [anon_sym_DASH] = ACTIONS(1049), - [anon_sym_SLASH] = ACTIONS(1049), - [anon_sym_PERCENT] = ACTIONS(1049), - [anon_sym_CARET] = ACTIONS(1049), - [anon_sym_BANG] = ACTIONS(1049), - [anon_sym_AMP] = ACTIONS(1049), - [anon_sym_PIPE] = ACTIONS(1049), - [anon_sym_AMP_AMP] = ACTIONS(1051), - [anon_sym_PIPE_PIPE] = ACTIONS(1051), - [anon_sym_LT_LT] = ACTIONS(1049), - [anon_sym_GT_GT] = ACTIONS(1049), - [anon_sym_PLUS_EQ] = ACTIONS(1051), - [anon_sym_DASH_EQ] = ACTIONS(1051), - [anon_sym_STAR_EQ] = ACTIONS(1051), - [anon_sym_SLASH_EQ] = ACTIONS(1051), - [anon_sym_PERCENT_EQ] = ACTIONS(1051), - [anon_sym_CARET_EQ] = ACTIONS(1051), - [anon_sym_AMP_EQ] = ACTIONS(1051), - [anon_sym_PIPE_EQ] = ACTIONS(1051), - [anon_sym_LT_LT_EQ] = ACTIONS(1051), - [anon_sym_GT_GT_EQ] = ACTIONS(1051), - [anon_sym_EQ] = ACTIONS(1049), - [anon_sym_EQ_EQ] = ACTIONS(1051), - [anon_sym_BANG_EQ] = ACTIONS(1051), - [anon_sym_GT] = ACTIONS(1049), - [anon_sym_LT] = ACTIONS(1049), - [anon_sym_GT_EQ] = ACTIONS(1051), - [anon_sym_LT_EQ] = ACTIONS(1051), - [anon_sym_DOT] = ACTIONS(1049), - [anon_sym_DOT_DOT] = ACTIONS(1049), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1051), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1051), - [anon_sym_COLON_COLON] = ACTIONS(1051), - [anon_sym_POUND] = ACTIONS(1051), - [anon_sym_SQUOTE] = ACTIONS(1049), - [anon_sym_as] = ACTIONS(1049), - [anon_sym_async] = ACTIONS(1049), - [anon_sym_break] = ACTIONS(1049), - [anon_sym_const] = ACTIONS(1049), - [anon_sym_continue] = ACTIONS(1049), - [anon_sym_default] = ACTIONS(1049), - [anon_sym_enum] = ACTIONS(1049), - [anon_sym_fn] = ACTIONS(1049), - [anon_sym_for] = ACTIONS(1049), - [anon_sym_gen] = ACTIONS(1049), - [anon_sym_if] = ACTIONS(1049), - [anon_sym_impl] = ACTIONS(1049), - [anon_sym_let] = ACTIONS(1049), - [anon_sym_loop] = ACTIONS(1049), - [anon_sym_match] = ACTIONS(1049), - [anon_sym_mod] = ACTIONS(1049), - [anon_sym_pub] = ACTIONS(1049), - [anon_sym_return] = ACTIONS(1049), - [anon_sym_static] = ACTIONS(1049), - [anon_sym_struct] = ACTIONS(1049), - [anon_sym_trait] = ACTIONS(1049), - [anon_sym_type] = ACTIONS(1049), - [anon_sym_union] = ACTIONS(1049), - [anon_sym_unsafe] = ACTIONS(1049), - [anon_sym_use] = ACTIONS(1049), - [anon_sym_while] = ACTIONS(1049), - [anon_sym_extern] = ACTIONS(1049), - [anon_sym_yield] = ACTIONS(1049), - [anon_sym_move] = ACTIONS(1049), - [anon_sym_try] = ACTIONS(1049), - [sym_integer_literal] = ACTIONS(1051), - [aux_sym_string_literal_token1] = ACTIONS(1051), - [sym_char_literal] = ACTIONS(1051), - [anon_sym_true] = ACTIONS(1049), - [anon_sym_false] = ACTIONS(1049), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1049), - [sym_super] = ACTIONS(1049), - [sym_crate] = ACTIONS(1049), - [sym_metavariable] = ACTIONS(1051), - [sym__raw_string_literal_start] = ACTIONS(1051), - [sym_float_literal] = ACTIONS(1051), + [ts_builtin_sym_end] = ACTIONS(1048), + [sym_identifier] = ACTIONS(1046), + [anon_sym_SEMI] = ACTIONS(1048), + [anon_sym_macro_rules_BANG] = ACTIONS(1048), + [anon_sym_LPAREN] = ACTIONS(1048), + [anon_sym_LBRACK] = ACTIONS(1048), + [anon_sym_LBRACE] = ACTIONS(1048), + [anon_sym_RBRACE] = 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_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_COLON_COLON] = ACTIONS(1048), + [anon_sym_POUND] = ACTIONS(1048), + [anon_sym_SQUOTE] = ACTIONS(1046), + [anon_sym_as] = ACTIONS(1046), + [anon_sym_async] = 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_while] = ACTIONS(1046), + [anon_sym_extern] = ACTIONS(1046), + [anon_sym_safe] = ACTIONS(1046), + [anon_sym_yield] = ACTIONS(1046), + [anon_sym_move] = ACTIONS(1046), + [anon_sym_try] = 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(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [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(408)] = { [sym_line_comment] = STATE(408), [sym_block_comment] = STATE(408), - [ts_builtin_sym_end] = ACTIONS(1489), - [sym_identifier] = ACTIONS(1491), - [anon_sym_SEMI] = ACTIONS(1489), - [anon_sym_macro_rules_BANG] = ACTIONS(1489), - [anon_sym_LPAREN] = ACTIONS(1489), - [anon_sym_LBRACK] = ACTIONS(1489), - [anon_sym_LBRACE] = ACTIONS(1489), - [anon_sym_RBRACE] = ACTIONS(1489), - [anon_sym_PLUS] = ACTIONS(1491), - [anon_sym_STAR] = ACTIONS(1491), - [anon_sym_QMARK] = ACTIONS(1489), - [anon_sym_u8] = ACTIONS(1491), - [anon_sym_i8] = ACTIONS(1491), - [anon_sym_u16] = ACTIONS(1491), - [anon_sym_i16] = ACTIONS(1491), - [anon_sym_u32] = ACTIONS(1491), - [anon_sym_i32] = ACTIONS(1491), - [anon_sym_u64] = ACTIONS(1491), - [anon_sym_i64] = ACTIONS(1491), - [anon_sym_u128] = ACTIONS(1491), - [anon_sym_i128] = ACTIONS(1491), - [anon_sym_isize] = ACTIONS(1491), - [anon_sym_usize] = ACTIONS(1491), - [anon_sym_f32] = ACTIONS(1491), - [anon_sym_f64] = ACTIONS(1491), - [anon_sym_bool] = ACTIONS(1491), - [anon_sym_str] = ACTIONS(1491), - [anon_sym_char] = ACTIONS(1491), - [anon_sym_DASH] = ACTIONS(1491), - [anon_sym_SLASH] = ACTIONS(1491), - [anon_sym_PERCENT] = ACTIONS(1491), - [anon_sym_CARET] = ACTIONS(1491), - [anon_sym_BANG] = ACTIONS(1491), - [anon_sym_AMP] = ACTIONS(1491), - [anon_sym_PIPE] = ACTIONS(1491), - [anon_sym_AMP_AMP] = ACTIONS(1489), - [anon_sym_PIPE_PIPE] = ACTIONS(1489), - [anon_sym_LT_LT] = ACTIONS(1491), - [anon_sym_GT_GT] = ACTIONS(1491), - [anon_sym_PLUS_EQ] = ACTIONS(1489), - [anon_sym_DASH_EQ] = ACTIONS(1489), - [anon_sym_STAR_EQ] = ACTIONS(1489), - [anon_sym_SLASH_EQ] = ACTIONS(1489), - [anon_sym_PERCENT_EQ] = ACTIONS(1489), - [anon_sym_CARET_EQ] = ACTIONS(1489), - [anon_sym_AMP_EQ] = ACTIONS(1489), - [anon_sym_PIPE_EQ] = ACTIONS(1489), - [anon_sym_LT_LT_EQ] = ACTIONS(1489), - [anon_sym_GT_GT_EQ] = ACTIONS(1489), - [anon_sym_EQ] = ACTIONS(1491), - [anon_sym_EQ_EQ] = ACTIONS(1489), - [anon_sym_BANG_EQ] = ACTIONS(1489), - [anon_sym_GT] = ACTIONS(1491), - [anon_sym_LT] = ACTIONS(1491), - [anon_sym_GT_EQ] = ACTIONS(1489), - [anon_sym_LT_EQ] = ACTIONS(1489), - [anon_sym_DOT] = ACTIONS(1491), - [anon_sym_DOT_DOT] = ACTIONS(1491), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1489), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1489), - [anon_sym_COLON_COLON] = ACTIONS(1489), - [anon_sym_POUND] = ACTIONS(1489), - [anon_sym_SQUOTE] = ACTIONS(1491), - [anon_sym_as] = ACTIONS(1491), - [anon_sym_async] = ACTIONS(1491), - [anon_sym_break] = ACTIONS(1491), - [anon_sym_const] = ACTIONS(1491), - [anon_sym_continue] = ACTIONS(1491), - [anon_sym_default] = ACTIONS(1491), - [anon_sym_enum] = ACTIONS(1491), - [anon_sym_fn] = ACTIONS(1491), - [anon_sym_for] = ACTIONS(1491), - [anon_sym_gen] = ACTIONS(1491), - [anon_sym_if] = ACTIONS(1491), - [anon_sym_impl] = ACTIONS(1491), - [anon_sym_let] = ACTIONS(1491), - [anon_sym_loop] = ACTIONS(1491), - [anon_sym_match] = ACTIONS(1491), - [anon_sym_mod] = ACTIONS(1491), - [anon_sym_pub] = ACTIONS(1491), - [anon_sym_return] = ACTIONS(1491), - [anon_sym_static] = ACTIONS(1491), - [anon_sym_struct] = ACTIONS(1491), - [anon_sym_trait] = ACTIONS(1491), - [anon_sym_type] = ACTIONS(1491), - [anon_sym_union] = ACTIONS(1491), - [anon_sym_unsafe] = ACTIONS(1491), - [anon_sym_use] = ACTIONS(1491), - [anon_sym_while] = ACTIONS(1491), - [anon_sym_extern] = ACTIONS(1491), - [anon_sym_yield] = ACTIONS(1491), - [anon_sym_move] = ACTIONS(1491), - [anon_sym_try] = ACTIONS(1491), - [sym_integer_literal] = ACTIONS(1489), - [aux_sym_string_literal_token1] = ACTIONS(1489), - [sym_char_literal] = ACTIONS(1489), - [anon_sym_true] = ACTIONS(1491), - [anon_sym_false] = ACTIONS(1491), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1491), - [sym_super] = ACTIONS(1491), - [sym_crate] = ACTIONS(1491), - [sym_metavariable] = ACTIONS(1489), - [sym__raw_string_literal_start] = ACTIONS(1489), - [sym_float_literal] = ACTIONS(1489), + [ts_builtin_sym_end] = ACTIONS(1490), + [sym_identifier] = ACTIONS(1492), + [anon_sym_SEMI] = ACTIONS(1490), + [anon_sym_macro_rules_BANG] = ACTIONS(1490), + [anon_sym_LPAREN] = ACTIONS(1490), + [anon_sym_LBRACK] = ACTIONS(1490), + [anon_sym_LBRACE] = ACTIONS(1490), + [anon_sym_RBRACE] = ACTIONS(1490), + [anon_sym_PLUS] = ACTIONS(1492), + [anon_sym_STAR] = ACTIONS(1492), + [anon_sym_QMARK] = ACTIONS(1490), + [anon_sym_u8] = ACTIONS(1492), + [anon_sym_i8] = ACTIONS(1492), + [anon_sym_u16] = ACTIONS(1492), + [anon_sym_i16] = ACTIONS(1492), + [anon_sym_u32] = ACTIONS(1492), + [anon_sym_i32] = ACTIONS(1492), + [anon_sym_u64] = ACTIONS(1492), + [anon_sym_i64] = ACTIONS(1492), + [anon_sym_u128] = ACTIONS(1492), + [anon_sym_i128] = ACTIONS(1492), + [anon_sym_isize] = ACTIONS(1492), + [anon_sym_usize] = ACTIONS(1492), + [anon_sym_f32] = ACTIONS(1492), + [anon_sym_f64] = ACTIONS(1492), + [anon_sym_bool] = ACTIONS(1492), + [anon_sym_str] = ACTIONS(1492), + [anon_sym_char] = ACTIONS(1492), + [anon_sym_DASH] = ACTIONS(1492), + [anon_sym_SLASH] = ACTIONS(1492), + [anon_sym_PERCENT] = ACTIONS(1492), + [anon_sym_CARET] = ACTIONS(1492), + [anon_sym_BANG] = ACTIONS(1492), + [anon_sym_AMP] = ACTIONS(1492), + [anon_sym_PIPE] = ACTIONS(1492), + [anon_sym_AMP_AMP] = ACTIONS(1490), + [anon_sym_PIPE_PIPE] = ACTIONS(1490), + [anon_sym_LT_LT] = ACTIONS(1492), + [anon_sym_GT_GT] = ACTIONS(1492), + [anon_sym_PLUS_EQ] = ACTIONS(1490), + [anon_sym_DASH_EQ] = ACTIONS(1490), + [anon_sym_STAR_EQ] = ACTIONS(1490), + [anon_sym_SLASH_EQ] = ACTIONS(1490), + [anon_sym_PERCENT_EQ] = ACTIONS(1490), + [anon_sym_CARET_EQ] = ACTIONS(1490), + [anon_sym_AMP_EQ] = ACTIONS(1490), + [anon_sym_PIPE_EQ] = ACTIONS(1490), + [anon_sym_LT_LT_EQ] = ACTIONS(1490), + [anon_sym_GT_GT_EQ] = ACTIONS(1490), + [anon_sym_EQ] = ACTIONS(1492), + [anon_sym_EQ_EQ] = ACTIONS(1490), + [anon_sym_BANG_EQ] = ACTIONS(1490), + [anon_sym_GT] = ACTIONS(1492), + [anon_sym_LT] = ACTIONS(1492), + [anon_sym_GT_EQ] = ACTIONS(1490), + [anon_sym_LT_EQ] = ACTIONS(1490), + [anon_sym_DOT] = ACTIONS(1492), + [anon_sym_DOT_DOT] = ACTIONS(1492), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1490), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1490), + [anon_sym_COLON_COLON] = ACTIONS(1490), + [anon_sym_POUND] = ACTIONS(1490), + [anon_sym_SQUOTE] = ACTIONS(1492), + [anon_sym_as] = ACTIONS(1492), + [anon_sym_async] = ACTIONS(1492), + [anon_sym_break] = ACTIONS(1492), + [anon_sym_const] = ACTIONS(1492), + [anon_sym_continue] = ACTIONS(1492), + [anon_sym_default] = ACTIONS(1492), + [anon_sym_enum] = ACTIONS(1492), + [anon_sym_fn] = ACTIONS(1492), + [anon_sym_for] = ACTIONS(1492), + [anon_sym_gen] = ACTIONS(1492), + [anon_sym_if] = ACTIONS(1492), + [anon_sym_impl] = ACTIONS(1492), + [anon_sym_let] = ACTIONS(1492), + [anon_sym_loop] = ACTIONS(1492), + [anon_sym_match] = ACTIONS(1492), + [anon_sym_mod] = ACTIONS(1492), + [anon_sym_pub] = ACTIONS(1492), + [anon_sym_return] = ACTIONS(1492), + [anon_sym_static] = ACTIONS(1492), + [anon_sym_struct] = ACTIONS(1492), + [anon_sym_trait] = ACTIONS(1492), + [anon_sym_type] = ACTIONS(1492), + [anon_sym_union] = ACTIONS(1492), + [anon_sym_unsafe] = ACTIONS(1492), + [anon_sym_use] = ACTIONS(1492), + [anon_sym_while] = ACTIONS(1492), + [anon_sym_extern] = ACTIONS(1492), + [anon_sym_safe] = ACTIONS(1492), + [anon_sym_yield] = ACTIONS(1492), + [anon_sym_move] = ACTIONS(1492), + [anon_sym_try] = ACTIONS(1492), + [sym_integer_literal] = ACTIONS(1490), + [aux_sym_string_literal_token1] = ACTIONS(1490), + [sym_char_literal] = ACTIONS(1490), + [anon_sym_true] = ACTIONS(1492), + [anon_sym_false] = ACTIONS(1492), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1492), + [sym_super] = ACTIONS(1492), + [sym_crate] = ACTIONS(1492), + [sym_metavariable] = ACTIONS(1490), + [sym__raw_string_literal_start] = ACTIONS(1490), + [sym_float_literal] = ACTIONS(1490), }, [STATE(409)] = { [sym_line_comment] = STATE(409), [sym_block_comment] = STATE(409), - [ts_builtin_sym_end] = ACTIONS(1493), - [sym_identifier] = ACTIONS(1495), - [anon_sym_SEMI] = ACTIONS(1493), - [anon_sym_macro_rules_BANG] = ACTIONS(1493), - [anon_sym_LPAREN] = ACTIONS(1493), - [anon_sym_LBRACK] = ACTIONS(1493), - [anon_sym_LBRACE] = ACTIONS(1493), - [anon_sym_RBRACE] = ACTIONS(1493), - [anon_sym_PLUS] = ACTIONS(1495), - [anon_sym_STAR] = ACTIONS(1495), - [anon_sym_QMARK] = ACTIONS(1493), - [anon_sym_u8] = ACTIONS(1495), - [anon_sym_i8] = ACTIONS(1495), - [anon_sym_u16] = ACTIONS(1495), - [anon_sym_i16] = ACTIONS(1495), - [anon_sym_u32] = ACTIONS(1495), - [anon_sym_i32] = ACTIONS(1495), - [anon_sym_u64] = ACTIONS(1495), - [anon_sym_i64] = ACTIONS(1495), - [anon_sym_u128] = ACTIONS(1495), - [anon_sym_i128] = ACTIONS(1495), - [anon_sym_isize] = ACTIONS(1495), - [anon_sym_usize] = ACTIONS(1495), - [anon_sym_f32] = ACTIONS(1495), - [anon_sym_f64] = ACTIONS(1495), - [anon_sym_bool] = ACTIONS(1495), - [anon_sym_str] = ACTIONS(1495), - [anon_sym_char] = ACTIONS(1495), - [anon_sym_DASH] = ACTIONS(1495), - [anon_sym_SLASH] = ACTIONS(1495), - [anon_sym_PERCENT] = ACTIONS(1495), - [anon_sym_CARET] = ACTIONS(1495), - [anon_sym_BANG] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1495), - [anon_sym_PIPE] = ACTIONS(1495), - [anon_sym_AMP_AMP] = ACTIONS(1493), - [anon_sym_PIPE_PIPE] = ACTIONS(1493), - [anon_sym_LT_LT] = ACTIONS(1495), - [anon_sym_GT_GT] = ACTIONS(1495), - [anon_sym_PLUS_EQ] = ACTIONS(1493), - [anon_sym_DASH_EQ] = ACTIONS(1493), - [anon_sym_STAR_EQ] = ACTIONS(1493), - [anon_sym_SLASH_EQ] = ACTIONS(1493), - [anon_sym_PERCENT_EQ] = ACTIONS(1493), - [anon_sym_CARET_EQ] = ACTIONS(1493), - [anon_sym_AMP_EQ] = ACTIONS(1493), - [anon_sym_PIPE_EQ] = ACTIONS(1493), - [anon_sym_LT_LT_EQ] = ACTIONS(1493), - [anon_sym_GT_GT_EQ] = ACTIONS(1493), - [anon_sym_EQ] = ACTIONS(1495), - [anon_sym_EQ_EQ] = ACTIONS(1493), - [anon_sym_BANG_EQ] = ACTIONS(1493), - [anon_sym_GT] = ACTIONS(1495), - [anon_sym_LT] = ACTIONS(1495), - [anon_sym_GT_EQ] = ACTIONS(1493), - [anon_sym_LT_EQ] = ACTIONS(1493), - [anon_sym_DOT] = ACTIONS(1495), - [anon_sym_DOT_DOT] = ACTIONS(1495), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1493), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1493), - [anon_sym_COLON_COLON] = ACTIONS(1493), - [anon_sym_POUND] = ACTIONS(1493), - [anon_sym_SQUOTE] = ACTIONS(1495), - [anon_sym_as] = ACTIONS(1495), - [anon_sym_async] = ACTIONS(1495), - [anon_sym_break] = ACTIONS(1495), - [anon_sym_const] = ACTIONS(1495), - [anon_sym_continue] = ACTIONS(1495), - [anon_sym_default] = ACTIONS(1495), - [anon_sym_enum] = ACTIONS(1495), - [anon_sym_fn] = ACTIONS(1495), - [anon_sym_for] = ACTIONS(1495), - [anon_sym_gen] = ACTIONS(1495), - [anon_sym_if] = ACTIONS(1495), - [anon_sym_impl] = ACTIONS(1495), - [anon_sym_let] = ACTIONS(1495), - [anon_sym_loop] = ACTIONS(1495), - [anon_sym_match] = ACTIONS(1495), - [anon_sym_mod] = ACTIONS(1495), - [anon_sym_pub] = ACTIONS(1495), - [anon_sym_return] = ACTIONS(1495), - [anon_sym_static] = ACTIONS(1495), - [anon_sym_struct] = ACTIONS(1495), - [anon_sym_trait] = ACTIONS(1495), - [anon_sym_type] = ACTIONS(1495), - [anon_sym_union] = ACTIONS(1495), - [anon_sym_unsafe] = ACTIONS(1495), - [anon_sym_use] = ACTIONS(1495), - [anon_sym_while] = ACTIONS(1495), - [anon_sym_extern] = ACTIONS(1495), - [anon_sym_yield] = ACTIONS(1495), - [anon_sym_move] = ACTIONS(1495), - [anon_sym_try] = ACTIONS(1495), - [sym_integer_literal] = ACTIONS(1493), - [aux_sym_string_literal_token1] = ACTIONS(1493), - [sym_char_literal] = ACTIONS(1493), - [anon_sym_true] = ACTIONS(1495), - [anon_sym_false] = ACTIONS(1495), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1495), - [sym_super] = ACTIONS(1495), - [sym_crate] = ACTIONS(1495), - [sym_metavariable] = ACTIONS(1493), - [sym__raw_string_literal_start] = ACTIONS(1493), - [sym_float_literal] = ACTIONS(1493), + [ts_builtin_sym_end] = ACTIONS(1494), + [sym_identifier] = ACTIONS(1496), + [anon_sym_SEMI] = ACTIONS(1494), + [anon_sym_macro_rules_BANG] = ACTIONS(1494), + [anon_sym_LPAREN] = ACTIONS(1494), + [anon_sym_LBRACK] = ACTIONS(1494), + [anon_sym_LBRACE] = ACTIONS(1494), + [anon_sym_RBRACE] = ACTIONS(1494), + [anon_sym_PLUS] = ACTIONS(1496), + [anon_sym_STAR] = ACTIONS(1496), + [anon_sym_QMARK] = ACTIONS(1494), + [anon_sym_u8] = ACTIONS(1496), + [anon_sym_i8] = ACTIONS(1496), + [anon_sym_u16] = ACTIONS(1496), + [anon_sym_i16] = ACTIONS(1496), + [anon_sym_u32] = ACTIONS(1496), + [anon_sym_i32] = ACTIONS(1496), + [anon_sym_u64] = ACTIONS(1496), + [anon_sym_i64] = ACTIONS(1496), + [anon_sym_u128] = ACTIONS(1496), + [anon_sym_i128] = ACTIONS(1496), + [anon_sym_isize] = ACTIONS(1496), + [anon_sym_usize] = ACTIONS(1496), + [anon_sym_f32] = ACTIONS(1496), + [anon_sym_f64] = ACTIONS(1496), + [anon_sym_bool] = ACTIONS(1496), + [anon_sym_str] = ACTIONS(1496), + [anon_sym_char] = ACTIONS(1496), + [anon_sym_DASH] = ACTIONS(1496), + [anon_sym_SLASH] = ACTIONS(1496), + [anon_sym_PERCENT] = ACTIONS(1496), + [anon_sym_CARET] = ACTIONS(1496), + [anon_sym_BANG] = ACTIONS(1496), + [anon_sym_AMP] = ACTIONS(1496), + [anon_sym_PIPE] = ACTIONS(1496), + [anon_sym_AMP_AMP] = ACTIONS(1494), + [anon_sym_PIPE_PIPE] = ACTIONS(1494), + [anon_sym_LT_LT] = ACTIONS(1496), + [anon_sym_GT_GT] = ACTIONS(1496), + [anon_sym_PLUS_EQ] = ACTIONS(1494), + [anon_sym_DASH_EQ] = ACTIONS(1494), + [anon_sym_STAR_EQ] = ACTIONS(1494), + [anon_sym_SLASH_EQ] = ACTIONS(1494), + [anon_sym_PERCENT_EQ] = ACTIONS(1494), + [anon_sym_CARET_EQ] = ACTIONS(1494), + [anon_sym_AMP_EQ] = ACTIONS(1494), + [anon_sym_PIPE_EQ] = ACTIONS(1494), + [anon_sym_LT_LT_EQ] = ACTIONS(1494), + [anon_sym_GT_GT_EQ] = ACTIONS(1494), + [anon_sym_EQ] = ACTIONS(1496), + [anon_sym_EQ_EQ] = ACTIONS(1494), + [anon_sym_BANG_EQ] = ACTIONS(1494), + [anon_sym_GT] = ACTIONS(1496), + [anon_sym_LT] = ACTIONS(1496), + [anon_sym_GT_EQ] = ACTIONS(1494), + [anon_sym_LT_EQ] = ACTIONS(1494), + [anon_sym_DOT] = ACTIONS(1496), + [anon_sym_DOT_DOT] = ACTIONS(1496), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1494), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1494), + [anon_sym_COLON_COLON] = ACTIONS(1494), + [anon_sym_POUND] = ACTIONS(1494), + [anon_sym_SQUOTE] = ACTIONS(1496), + [anon_sym_as] = ACTIONS(1496), + [anon_sym_async] = ACTIONS(1496), + [anon_sym_break] = ACTIONS(1496), + [anon_sym_const] = ACTIONS(1496), + [anon_sym_continue] = ACTIONS(1496), + [anon_sym_default] = ACTIONS(1496), + [anon_sym_enum] = ACTIONS(1496), + [anon_sym_fn] = ACTIONS(1496), + [anon_sym_for] = ACTIONS(1496), + [anon_sym_gen] = ACTIONS(1496), + [anon_sym_if] = ACTIONS(1496), + [anon_sym_impl] = ACTIONS(1496), + [anon_sym_let] = ACTIONS(1496), + [anon_sym_loop] = ACTIONS(1496), + [anon_sym_match] = ACTIONS(1496), + [anon_sym_mod] = ACTIONS(1496), + [anon_sym_pub] = ACTIONS(1496), + [anon_sym_return] = ACTIONS(1496), + [anon_sym_static] = ACTIONS(1496), + [anon_sym_struct] = ACTIONS(1496), + [anon_sym_trait] = ACTIONS(1496), + [anon_sym_type] = ACTIONS(1496), + [anon_sym_union] = ACTIONS(1496), + [anon_sym_unsafe] = ACTIONS(1496), + [anon_sym_use] = ACTIONS(1496), + [anon_sym_while] = ACTIONS(1496), + [anon_sym_extern] = ACTIONS(1496), + [anon_sym_safe] = ACTIONS(1496), + [anon_sym_yield] = ACTIONS(1496), + [anon_sym_move] = ACTIONS(1496), + [anon_sym_try] = ACTIONS(1496), + [sym_integer_literal] = ACTIONS(1494), + [aux_sym_string_literal_token1] = ACTIONS(1494), + [sym_char_literal] = ACTIONS(1494), + [anon_sym_true] = ACTIONS(1496), + [anon_sym_false] = ACTIONS(1496), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1496), + [sym_super] = ACTIONS(1496), + [sym_crate] = ACTIONS(1496), + [sym_metavariable] = ACTIONS(1494), + [sym__raw_string_literal_start] = ACTIONS(1494), + [sym_float_literal] = ACTIONS(1494), }, [STATE(410)] = { [sym_line_comment] = STATE(410), [sym_block_comment] = STATE(410), - [ts_builtin_sym_end] = ACTIONS(1497), - [sym_identifier] = ACTIONS(1499), - [anon_sym_SEMI] = ACTIONS(1497), - [anon_sym_macro_rules_BANG] = ACTIONS(1497), - [anon_sym_LPAREN] = ACTIONS(1497), - [anon_sym_LBRACK] = ACTIONS(1497), - [anon_sym_LBRACE] = ACTIONS(1497), - [anon_sym_RBRACE] = ACTIONS(1497), - [anon_sym_PLUS] = ACTIONS(1499), - [anon_sym_STAR] = ACTIONS(1499), - [anon_sym_QMARK] = ACTIONS(1497), - [anon_sym_u8] = ACTIONS(1499), - [anon_sym_i8] = ACTIONS(1499), - [anon_sym_u16] = ACTIONS(1499), - [anon_sym_i16] = ACTIONS(1499), - [anon_sym_u32] = ACTIONS(1499), - [anon_sym_i32] = ACTIONS(1499), - [anon_sym_u64] = ACTIONS(1499), - [anon_sym_i64] = ACTIONS(1499), - [anon_sym_u128] = ACTIONS(1499), - [anon_sym_i128] = ACTIONS(1499), - [anon_sym_isize] = ACTIONS(1499), - [anon_sym_usize] = ACTIONS(1499), - [anon_sym_f32] = ACTIONS(1499), - [anon_sym_f64] = ACTIONS(1499), - [anon_sym_bool] = ACTIONS(1499), - [anon_sym_str] = ACTIONS(1499), - [anon_sym_char] = ACTIONS(1499), - [anon_sym_DASH] = ACTIONS(1499), - [anon_sym_SLASH] = ACTIONS(1499), - [anon_sym_PERCENT] = ACTIONS(1499), - [anon_sym_CARET] = ACTIONS(1499), - [anon_sym_BANG] = ACTIONS(1499), - [anon_sym_AMP] = ACTIONS(1499), - [anon_sym_PIPE] = ACTIONS(1499), - [anon_sym_AMP_AMP] = ACTIONS(1497), - [anon_sym_PIPE_PIPE] = ACTIONS(1497), - [anon_sym_LT_LT] = ACTIONS(1499), - [anon_sym_GT_GT] = ACTIONS(1499), - [anon_sym_PLUS_EQ] = ACTIONS(1497), - [anon_sym_DASH_EQ] = ACTIONS(1497), - [anon_sym_STAR_EQ] = ACTIONS(1497), - [anon_sym_SLASH_EQ] = ACTIONS(1497), - [anon_sym_PERCENT_EQ] = ACTIONS(1497), - [anon_sym_CARET_EQ] = ACTIONS(1497), - [anon_sym_AMP_EQ] = ACTIONS(1497), - [anon_sym_PIPE_EQ] = ACTIONS(1497), - [anon_sym_LT_LT_EQ] = ACTIONS(1497), - [anon_sym_GT_GT_EQ] = ACTIONS(1497), - [anon_sym_EQ] = ACTIONS(1499), - [anon_sym_EQ_EQ] = ACTIONS(1497), - [anon_sym_BANG_EQ] = ACTIONS(1497), - [anon_sym_GT] = ACTIONS(1499), - [anon_sym_LT] = ACTIONS(1499), - [anon_sym_GT_EQ] = ACTIONS(1497), - [anon_sym_LT_EQ] = ACTIONS(1497), - [anon_sym_DOT] = ACTIONS(1499), - [anon_sym_DOT_DOT] = ACTIONS(1499), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1497), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1497), - [anon_sym_COLON_COLON] = ACTIONS(1497), - [anon_sym_POUND] = ACTIONS(1497), - [anon_sym_SQUOTE] = ACTIONS(1499), - [anon_sym_as] = ACTIONS(1499), - [anon_sym_async] = ACTIONS(1499), - [anon_sym_break] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(1499), - [anon_sym_continue] = ACTIONS(1499), - [anon_sym_default] = ACTIONS(1499), - [anon_sym_enum] = ACTIONS(1499), - [anon_sym_fn] = ACTIONS(1499), - [anon_sym_for] = ACTIONS(1499), - [anon_sym_gen] = ACTIONS(1499), - [anon_sym_if] = ACTIONS(1499), - [anon_sym_impl] = ACTIONS(1499), - [anon_sym_let] = ACTIONS(1499), - [anon_sym_loop] = ACTIONS(1499), - [anon_sym_match] = ACTIONS(1499), - [anon_sym_mod] = ACTIONS(1499), - [anon_sym_pub] = ACTIONS(1499), - [anon_sym_return] = ACTIONS(1499), - [anon_sym_static] = ACTIONS(1499), - [anon_sym_struct] = ACTIONS(1499), - [anon_sym_trait] = ACTIONS(1499), - [anon_sym_type] = ACTIONS(1499), - [anon_sym_union] = ACTIONS(1499), - [anon_sym_unsafe] = ACTIONS(1499), - [anon_sym_use] = ACTIONS(1499), - [anon_sym_while] = ACTIONS(1499), - [anon_sym_extern] = ACTIONS(1499), - [anon_sym_yield] = ACTIONS(1499), - [anon_sym_move] = ACTIONS(1499), - [anon_sym_try] = ACTIONS(1499), - [sym_integer_literal] = ACTIONS(1497), - [aux_sym_string_literal_token1] = ACTIONS(1497), - [sym_char_literal] = ACTIONS(1497), - [anon_sym_true] = ACTIONS(1499), - [anon_sym_false] = ACTIONS(1499), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1499), - [sym_super] = ACTIONS(1499), - [sym_crate] = ACTIONS(1499), - [sym_metavariable] = ACTIONS(1497), - [sym__raw_string_literal_start] = ACTIONS(1497), - [sym_float_literal] = ACTIONS(1497), + [ts_builtin_sym_end] = ACTIONS(1498), + [sym_identifier] = ACTIONS(1500), + [anon_sym_SEMI] = ACTIONS(1498), + [anon_sym_macro_rules_BANG] = ACTIONS(1498), + [anon_sym_LPAREN] = ACTIONS(1498), + [anon_sym_LBRACK] = ACTIONS(1498), + [anon_sym_LBRACE] = ACTIONS(1498), + [anon_sym_RBRACE] = ACTIONS(1498), + [anon_sym_PLUS] = ACTIONS(1500), + [anon_sym_STAR] = ACTIONS(1500), + [anon_sym_QMARK] = ACTIONS(1498), + [anon_sym_u8] = ACTIONS(1500), + [anon_sym_i8] = ACTIONS(1500), + [anon_sym_u16] = ACTIONS(1500), + [anon_sym_i16] = ACTIONS(1500), + [anon_sym_u32] = ACTIONS(1500), + [anon_sym_i32] = ACTIONS(1500), + [anon_sym_u64] = ACTIONS(1500), + [anon_sym_i64] = ACTIONS(1500), + [anon_sym_u128] = ACTIONS(1500), + [anon_sym_i128] = ACTIONS(1500), + [anon_sym_isize] = ACTIONS(1500), + [anon_sym_usize] = ACTIONS(1500), + [anon_sym_f32] = ACTIONS(1500), + [anon_sym_f64] = ACTIONS(1500), + [anon_sym_bool] = ACTIONS(1500), + [anon_sym_str] = ACTIONS(1500), + [anon_sym_char] = ACTIONS(1500), + [anon_sym_DASH] = ACTIONS(1500), + [anon_sym_SLASH] = ACTIONS(1500), + [anon_sym_PERCENT] = ACTIONS(1500), + [anon_sym_CARET] = ACTIONS(1500), + [anon_sym_BANG] = ACTIONS(1500), + [anon_sym_AMP] = ACTIONS(1500), + [anon_sym_PIPE] = ACTIONS(1500), + [anon_sym_AMP_AMP] = ACTIONS(1498), + [anon_sym_PIPE_PIPE] = ACTIONS(1498), + [anon_sym_LT_LT] = ACTIONS(1500), + [anon_sym_GT_GT] = ACTIONS(1500), + [anon_sym_PLUS_EQ] = ACTIONS(1498), + [anon_sym_DASH_EQ] = ACTIONS(1498), + [anon_sym_STAR_EQ] = ACTIONS(1498), + [anon_sym_SLASH_EQ] = ACTIONS(1498), + [anon_sym_PERCENT_EQ] = ACTIONS(1498), + [anon_sym_CARET_EQ] = ACTIONS(1498), + [anon_sym_AMP_EQ] = ACTIONS(1498), + [anon_sym_PIPE_EQ] = ACTIONS(1498), + [anon_sym_LT_LT_EQ] = ACTIONS(1498), + [anon_sym_GT_GT_EQ] = ACTIONS(1498), + [anon_sym_EQ] = ACTIONS(1500), + [anon_sym_EQ_EQ] = ACTIONS(1498), + [anon_sym_BANG_EQ] = ACTIONS(1498), + [anon_sym_GT] = ACTIONS(1500), + [anon_sym_LT] = ACTIONS(1500), + [anon_sym_GT_EQ] = ACTIONS(1498), + [anon_sym_LT_EQ] = ACTIONS(1498), + [anon_sym_DOT] = ACTIONS(1500), + [anon_sym_DOT_DOT] = ACTIONS(1500), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1498), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1498), + [anon_sym_COLON_COLON] = ACTIONS(1498), + [anon_sym_POUND] = ACTIONS(1498), + [anon_sym_SQUOTE] = ACTIONS(1500), + [anon_sym_as] = ACTIONS(1500), + [anon_sym_async] = ACTIONS(1500), + [anon_sym_break] = ACTIONS(1500), + [anon_sym_const] = ACTIONS(1500), + [anon_sym_continue] = ACTIONS(1500), + [anon_sym_default] = ACTIONS(1500), + [anon_sym_enum] = ACTIONS(1500), + [anon_sym_fn] = ACTIONS(1500), + [anon_sym_for] = ACTIONS(1500), + [anon_sym_gen] = ACTIONS(1500), + [anon_sym_if] = ACTIONS(1500), + [anon_sym_impl] = ACTIONS(1500), + [anon_sym_let] = ACTIONS(1500), + [anon_sym_loop] = ACTIONS(1500), + [anon_sym_match] = ACTIONS(1500), + [anon_sym_mod] = ACTIONS(1500), + [anon_sym_pub] = ACTIONS(1500), + [anon_sym_return] = ACTIONS(1500), + [anon_sym_static] = ACTIONS(1500), + [anon_sym_struct] = ACTIONS(1500), + [anon_sym_trait] = ACTIONS(1500), + [anon_sym_type] = ACTIONS(1500), + [anon_sym_union] = ACTIONS(1500), + [anon_sym_unsafe] = ACTIONS(1500), + [anon_sym_use] = ACTIONS(1500), + [anon_sym_while] = ACTIONS(1500), + [anon_sym_extern] = ACTIONS(1500), + [anon_sym_safe] = ACTIONS(1500), + [anon_sym_yield] = ACTIONS(1500), + [anon_sym_move] = ACTIONS(1500), + [anon_sym_try] = ACTIONS(1500), + [sym_integer_literal] = ACTIONS(1498), + [aux_sym_string_literal_token1] = ACTIONS(1498), + [sym_char_literal] = ACTIONS(1498), + [anon_sym_true] = ACTIONS(1500), + [anon_sym_false] = ACTIONS(1500), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1500), + [sym_super] = ACTIONS(1500), + [sym_crate] = ACTIONS(1500), + [sym_metavariable] = ACTIONS(1498), + [sym__raw_string_literal_start] = ACTIONS(1498), + [sym_float_literal] = ACTIONS(1498), }, [STATE(411)] = { [sym_line_comment] = STATE(411), [sym_block_comment] = STATE(411), - [ts_builtin_sym_end] = ACTIONS(1501), - [sym_identifier] = ACTIONS(1503), - [anon_sym_SEMI] = ACTIONS(1431), - [anon_sym_macro_rules_BANG] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(1431), - [anon_sym_LBRACK] = ACTIONS(1431), - [anon_sym_LBRACE] = ACTIONS(1501), - [anon_sym_RBRACE] = ACTIONS(1431), - [anon_sym_PLUS] = ACTIONS(1429), - [anon_sym_STAR] = ACTIONS(1429), - [anon_sym_QMARK] = ACTIONS(1431), - [anon_sym_u8] = ACTIONS(1503), - [anon_sym_i8] = ACTIONS(1503), - [anon_sym_u16] = ACTIONS(1503), - [anon_sym_i16] = ACTIONS(1503), - [anon_sym_u32] = ACTIONS(1503), - [anon_sym_i32] = ACTIONS(1503), - [anon_sym_u64] = ACTIONS(1503), - [anon_sym_i64] = ACTIONS(1503), - [anon_sym_u128] = ACTIONS(1503), - [anon_sym_i128] = ACTIONS(1503), - [anon_sym_isize] = ACTIONS(1503), - [anon_sym_usize] = ACTIONS(1503), - [anon_sym_f32] = ACTIONS(1503), - [anon_sym_f64] = ACTIONS(1503), - [anon_sym_bool] = ACTIONS(1503), - [anon_sym_str] = ACTIONS(1503), - [anon_sym_char] = ACTIONS(1503), - [anon_sym_DASH] = ACTIONS(1429), - [anon_sym_SLASH] = ACTIONS(1429), - [anon_sym_PERCENT] = ACTIONS(1429), - [anon_sym_CARET] = ACTIONS(1429), - [anon_sym_BANG] = ACTIONS(1503), - [anon_sym_AMP] = ACTIONS(1429), - [anon_sym_PIPE] = ACTIONS(1429), - [anon_sym_AMP_AMP] = ACTIONS(1431), - [anon_sym_PIPE_PIPE] = ACTIONS(1431), - [anon_sym_LT_LT] = ACTIONS(1429), - [anon_sym_GT_GT] = ACTIONS(1429), - [anon_sym_PLUS_EQ] = ACTIONS(1431), - [anon_sym_DASH_EQ] = ACTIONS(1431), - [anon_sym_STAR_EQ] = ACTIONS(1431), - [anon_sym_SLASH_EQ] = ACTIONS(1431), - [anon_sym_PERCENT_EQ] = ACTIONS(1431), - [anon_sym_CARET_EQ] = ACTIONS(1431), - [anon_sym_AMP_EQ] = ACTIONS(1431), - [anon_sym_PIPE_EQ] = ACTIONS(1431), - [anon_sym_LT_LT_EQ] = ACTIONS(1431), - [anon_sym_GT_GT_EQ] = ACTIONS(1431), - [anon_sym_EQ] = ACTIONS(1429), - [anon_sym_EQ_EQ] = ACTIONS(1431), - [anon_sym_BANG_EQ] = ACTIONS(1431), - [anon_sym_GT] = ACTIONS(1429), - [anon_sym_LT] = ACTIONS(1429), - [anon_sym_GT_EQ] = ACTIONS(1431), - [anon_sym_LT_EQ] = ACTIONS(1431), - [anon_sym_DOT] = ACTIONS(1429), - [anon_sym_DOT_DOT] = ACTIONS(1429), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1431), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1431), - [anon_sym_COLON_COLON] = ACTIONS(1501), - [anon_sym_POUND] = ACTIONS(1501), - [anon_sym_SQUOTE] = ACTIONS(1503), - [anon_sym_as] = ACTIONS(1429), - [anon_sym_async] = ACTIONS(1503), - [anon_sym_break] = ACTIONS(1503), - [anon_sym_const] = ACTIONS(1503), - [anon_sym_continue] = ACTIONS(1503), - [anon_sym_default] = ACTIONS(1503), - [anon_sym_enum] = ACTIONS(1503), - [anon_sym_fn] = ACTIONS(1503), - [anon_sym_for] = ACTIONS(1503), - [anon_sym_gen] = ACTIONS(1503), - [anon_sym_if] = ACTIONS(1503), - [anon_sym_impl] = ACTIONS(1503), - [anon_sym_let] = ACTIONS(1503), - [anon_sym_loop] = ACTIONS(1503), - [anon_sym_match] = ACTIONS(1503), - [anon_sym_mod] = ACTIONS(1503), - [anon_sym_pub] = ACTIONS(1503), - [anon_sym_return] = ACTIONS(1503), - [anon_sym_static] = ACTIONS(1503), - [anon_sym_struct] = ACTIONS(1503), - [anon_sym_trait] = ACTIONS(1503), - [anon_sym_type] = ACTIONS(1503), - [anon_sym_union] = ACTIONS(1503), - [anon_sym_unsafe] = ACTIONS(1503), - [anon_sym_use] = ACTIONS(1503), - [anon_sym_while] = ACTIONS(1503), - [anon_sym_extern] = ACTIONS(1503), - [anon_sym_yield] = ACTIONS(1503), - [anon_sym_move] = ACTIONS(1503), - [anon_sym_try] = ACTIONS(1503), - [sym_integer_literal] = ACTIONS(1501), - [aux_sym_string_literal_token1] = ACTIONS(1501), - [sym_char_literal] = ACTIONS(1501), - [anon_sym_true] = ACTIONS(1503), - [anon_sym_false] = ACTIONS(1503), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1503), - [sym_super] = ACTIONS(1503), - [sym_crate] = ACTIONS(1503), - [sym_metavariable] = ACTIONS(1501), - [sym__raw_string_literal_start] = ACTIONS(1501), - [sym_float_literal] = ACTIONS(1501), + [ts_builtin_sym_end] = ACTIONS(1044), + [sym_identifier] = ACTIONS(1042), + [anon_sym_SEMI] = ACTIONS(1044), + [anon_sym_macro_rules_BANG] = ACTIONS(1044), + [anon_sym_LPAREN] = ACTIONS(1044), + [anon_sym_LBRACK] = ACTIONS(1044), + [anon_sym_LBRACE] = ACTIONS(1044), + [anon_sym_RBRACE] = 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_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_COLON_COLON] = ACTIONS(1044), + [anon_sym_POUND] = ACTIONS(1044), + [anon_sym_SQUOTE] = ACTIONS(1042), + [anon_sym_as] = ACTIONS(1042), + [anon_sym_async] = 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_while] = ACTIONS(1042), + [anon_sym_extern] = ACTIONS(1042), + [anon_sym_safe] = ACTIONS(1042), + [anon_sym_yield] = ACTIONS(1042), + [anon_sym_move] = ACTIONS(1042), + [anon_sym_try] = 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_metavariable] = ACTIONS(1044), + [sym__raw_string_literal_start] = ACTIONS(1044), + [sym_float_literal] = ACTIONS(1044), }, [STATE(412)] = { [sym_line_comment] = STATE(412), [sym_block_comment] = STATE(412), - [ts_builtin_sym_end] = ACTIONS(1505), - [sym_identifier] = ACTIONS(1507), - [anon_sym_SEMI] = ACTIONS(1505), - [anon_sym_macro_rules_BANG] = ACTIONS(1505), - [anon_sym_LPAREN] = ACTIONS(1505), - [anon_sym_LBRACK] = ACTIONS(1505), - [anon_sym_LBRACE] = ACTIONS(1505), - [anon_sym_RBRACE] = ACTIONS(1505), - [anon_sym_PLUS] = ACTIONS(1507), - [anon_sym_STAR] = ACTIONS(1507), - [anon_sym_QMARK] = ACTIONS(1505), - [anon_sym_u8] = ACTIONS(1507), - [anon_sym_i8] = ACTIONS(1507), - [anon_sym_u16] = ACTIONS(1507), - [anon_sym_i16] = ACTIONS(1507), - [anon_sym_u32] = ACTIONS(1507), - [anon_sym_i32] = ACTIONS(1507), - [anon_sym_u64] = ACTIONS(1507), - [anon_sym_i64] = ACTIONS(1507), - [anon_sym_u128] = ACTIONS(1507), - [anon_sym_i128] = ACTIONS(1507), - [anon_sym_isize] = ACTIONS(1507), - [anon_sym_usize] = ACTIONS(1507), - [anon_sym_f32] = ACTIONS(1507), - [anon_sym_f64] = ACTIONS(1507), - [anon_sym_bool] = ACTIONS(1507), - [anon_sym_str] = ACTIONS(1507), - [anon_sym_char] = ACTIONS(1507), - [anon_sym_DASH] = ACTIONS(1507), - [anon_sym_SLASH] = ACTIONS(1507), - [anon_sym_PERCENT] = ACTIONS(1507), - [anon_sym_CARET] = ACTIONS(1507), - [anon_sym_BANG] = ACTIONS(1507), - [anon_sym_AMP] = ACTIONS(1507), - [anon_sym_PIPE] = ACTIONS(1507), - [anon_sym_AMP_AMP] = ACTIONS(1505), - [anon_sym_PIPE_PIPE] = ACTIONS(1505), - [anon_sym_LT_LT] = ACTIONS(1507), - [anon_sym_GT_GT] = ACTIONS(1507), - [anon_sym_PLUS_EQ] = ACTIONS(1505), - [anon_sym_DASH_EQ] = ACTIONS(1505), - [anon_sym_STAR_EQ] = ACTIONS(1505), - [anon_sym_SLASH_EQ] = ACTIONS(1505), - [anon_sym_PERCENT_EQ] = ACTIONS(1505), - [anon_sym_CARET_EQ] = ACTIONS(1505), - [anon_sym_AMP_EQ] = ACTIONS(1505), - [anon_sym_PIPE_EQ] = ACTIONS(1505), - [anon_sym_LT_LT_EQ] = ACTIONS(1505), - [anon_sym_GT_GT_EQ] = ACTIONS(1505), - [anon_sym_EQ] = ACTIONS(1507), - [anon_sym_EQ_EQ] = ACTIONS(1505), - [anon_sym_BANG_EQ] = ACTIONS(1505), - [anon_sym_GT] = ACTIONS(1507), - [anon_sym_LT] = ACTIONS(1507), - [anon_sym_GT_EQ] = ACTIONS(1505), - [anon_sym_LT_EQ] = ACTIONS(1505), - [anon_sym_DOT] = ACTIONS(1507), - [anon_sym_DOT_DOT] = ACTIONS(1507), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1505), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1505), - [anon_sym_COLON_COLON] = ACTIONS(1505), - [anon_sym_POUND] = ACTIONS(1505), - [anon_sym_SQUOTE] = ACTIONS(1507), - [anon_sym_as] = ACTIONS(1507), - [anon_sym_async] = ACTIONS(1507), - [anon_sym_break] = ACTIONS(1507), - [anon_sym_const] = ACTIONS(1507), - [anon_sym_continue] = ACTIONS(1507), - [anon_sym_default] = ACTIONS(1507), - [anon_sym_enum] = ACTIONS(1507), - [anon_sym_fn] = ACTIONS(1507), - [anon_sym_for] = ACTIONS(1507), - [anon_sym_gen] = ACTIONS(1507), - [anon_sym_if] = ACTIONS(1507), - [anon_sym_impl] = ACTIONS(1507), - [anon_sym_let] = ACTIONS(1507), - [anon_sym_loop] = ACTIONS(1507), - [anon_sym_match] = ACTIONS(1507), - [anon_sym_mod] = ACTIONS(1507), - [anon_sym_pub] = ACTIONS(1507), - [anon_sym_return] = ACTIONS(1507), - [anon_sym_static] = ACTIONS(1507), - [anon_sym_struct] = ACTIONS(1507), - [anon_sym_trait] = ACTIONS(1507), - [anon_sym_type] = ACTIONS(1507), - [anon_sym_union] = ACTIONS(1507), - [anon_sym_unsafe] = ACTIONS(1507), - [anon_sym_use] = ACTIONS(1507), - [anon_sym_while] = ACTIONS(1507), - [anon_sym_extern] = ACTIONS(1507), - [anon_sym_yield] = ACTIONS(1507), - [anon_sym_move] = ACTIONS(1507), - [anon_sym_try] = ACTIONS(1507), - [sym_integer_literal] = ACTIONS(1505), - [aux_sym_string_literal_token1] = ACTIONS(1505), - [sym_char_literal] = ACTIONS(1505), - [anon_sym_true] = ACTIONS(1507), - [anon_sym_false] = ACTIONS(1507), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1507), - [sym_super] = ACTIONS(1507), - [sym_crate] = ACTIONS(1507), - [sym_metavariable] = ACTIONS(1505), - [sym__raw_string_literal_start] = ACTIONS(1505), - [sym_float_literal] = ACTIONS(1505), + [ts_builtin_sym_end] = ACTIONS(1502), + [sym_identifier] = ACTIONS(1504), + [anon_sym_SEMI] = ACTIONS(1502), + [anon_sym_macro_rules_BANG] = ACTIONS(1502), + [anon_sym_LPAREN] = ACTIONS(1502), + [anon_sym_LBRACK] = ACTIONS(1502), + [anon_sym_LBRACE] = ACTIONS(1502), + [anon_sym_RBRACE] = ACTIONS(1502), + [anon_sym_PLUS] = ACTIONS(1504), + [anon_sym_STAR] = ACTIONS(1504), + [anon_sym_QMARK] = ACTIONS(1502), + [anon_sym_u8] = ACTIONS(1504), + [anon_sym_i8] = ACTIONS(1504), + [anon_sym_u16] = ACTIONS(1504), + [anon_sym_i16] = ACTIONS(1504), + [anon_sym_u32] = ACTIONS(1504), + [anon_sym_i32] = ACTIONS(1504), + [anon_sym_u64] = ACTIONS(1504), + [anon_sym_i64] = ACTIONS(1504), + [anon_sym_u128] = ACTIONS(1504), + [anon_sym_i128] = ACTIONS(1504), + [anon_sym_isize] = ACTIONS(1504), + [anon_sym_usize] = ACTIONS(1504), + [anon_sym_f32] = ACTIONS(1504), + [anon_sym_f64] = ACTIONS(1504), + [anon_sym_bool] = ACTIONS(1504), + [anon_sym_str] = ACTIONS(1504), + [anon_sym_char] = ACTIONS(1504), + [anon_sym_DASH] = ACTIONS(1504), + [anon_sym_SLASH] = ACTIONS(1504), + [anon_sym_PERCENT] = ACTIONS(1504), + [anon_sym_CARET] = ACTIONS(1504), + [anon_sym_BANG] = ACTIONS(1504), + [anon_sym_AMP] = ACTIONS(1504), + [anon_sym_PIPE] = ACTIONS(1504), + [anon_sym_AMP_AMP] = ACTIONS(1502), + [anon_sym_PIPE_PIPE] = ACTIONS(1502), + [anon_sym_LT_LT] = ACTIONS(1504), + [anon_sym_GT_GT] = ACTIONS(1504), + [anon_sym_PLUS_EQ] = ACTIONS(1502), + [anon_sym_DASH_EQ] = ACTIONS(1502), + [anon_sym_STAR_EQ] = ACTIONS(1502), + [anon_sym_SLASH_EQ] = ACTIONS(1502), + [anon_sym_PERCENT_EQ] = ACTIONS(1502), + [anon_sym_CARET_EQ] = ACTIONS(1502), + [anon_sym_AMP_EQ] = ACTIONS(1502), + [anon_sym_PIPE_EQ] = ACTIONS(1502), + [anon_sym_LT_LT_EQ] = ACTIONS(1502), + [anon_sym_GT_GT_EQ] = ACTIONS(1502), + [anon_sym_EQ] = ACTIONS(1504), + [anon_sym_EQ_EQ] = ACTIONS(1502), + [anon_sym_BANG_EQ] = ACTIONS(1502), + [anon_sym_GT] = ACTIONS(1504), + [anon_sym_LT] = ACTIONS(1504), + [anon_sym_GT_EQ] = ACTIONS(1502), + [anon_sym_LT_EQ] = ACTIONS(1502), + [anon_sym_DOT] = ACTIONS(1504), + [anon_sym_DOT_DOT] = ACTIONS(1504), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1502), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1502), + [anon_sym_COLON_COLON] = ACTIONS(1502), + [anon_sym_POUND] = ACTIONS(1502), + [anon_sym_SQUOTE] = ACTIONS(1504), + [anon_sym_as] = ACTIONS(1504), + [anon_sym_async] = ACTIONS(1504), + [anon_sym_break] = ACTIONS(1504), + [anon_sym_const] = ACTIONS(1504), + [anon_sym_continue] = ACTIONS(1504), + [anon_sym_default] = ACTIONS(1504), + [anon_sym_enum] = ACTIONS(1504), + [anon_sym_fn] = ACTIONS(1504), + [anon_sym_for] = ACTIONS(1504), + [anon_sym_gen] = ACTIONS(1504), + [anon_sym_if] = ACTIONS(1504), + [anon_sym_impl] = ACTIONS(1504), + [anon_sym_let] = ACTIONS(1504), + [anon_sym_loop] = ACTIONS(1504), + [anon_sym_match] = ACTIONS(1504), + [anon_sym_mod] = ACTIONS(1504), + [anon_sym_pub] = ACTIONS(1504), + [anon_sym_return] = ACTIONS(1504), + [anon_sym_static] = ACTIONS(1504), + [anon_sym_struct] = ACTIONS(1504), + [anon_sym_trait] = ACTIONS(1504), + [anon_sym_type] = ACTIONS(1504), + [anon_sym_union] = ACTIONS(1504), + [anon_sym_unsafe] = ACTIONS(1504), + [anon_sym_use] = ACTIONS(1504), + [anon_sym_while] = ACTIONS(1504), + [anon_sym_extern] = ACTIONS(1504), + [anon_sym_safe] = ACTIONS(1504), + [anon_sym_yield] = ACTIONS(1504), + [anon_sym_move] = ACTIONS(1504), + [anon_sym_try] = ACTIONS(1504), + [sym_integer_literal] = ACTIONS(1502), + [aux_sym_string_literal_token1] = ACTIONS(1502), + [sym_char_literal] = ACTIONS(1502), + [anon_sym_true] = ACTIONS(1504), + [anon_sym_false] = ACTIONS(1504), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1504), + [sym_super] = ACTIONS(1504), + [sym_crate] = ACTIONS(1504), + [sym_metavariable] = ACTIONS(1502), + [sym__raw_string_literal_start] = ACTIONS(1502), + [sym_float_literal] = ACTIONS(1502), }, [STATE(413)] = { [sym_line_comment] = STATE(413), [sym_block_comment] = STATE(413), - [ts_builtin_sym_end] = ACTIONS(1509), - [sym_identifier] = ACTIONS(1511), - [anon_sym_SEMI] = ACTIONS(1509), - [anon_sym_macro_rules_BANG] = ACTIONS(1509), - [anon_sym_LPAREN] = ACTIONS(1509), - [anon_sym_LBRACK] = ACTIONS(1509), - [anon_sym_LBRACE] = ACTIONS(1509), - [anon_sym_RBRACE] = ACTIONS(1509), - [anon_sym_PLUS] = ACTIONS(1511), - [anon_sym_STAR] = ACTIONS(1511), - [anon_sym_QMARK] = ACTIONS(1509), - [anon_sym_u8] = ACTIONS(1511), - [anon_sym_i8] = ACTIONS(1511), - [anon_sym_u16] = ACTIONS(1511), - [anon_sym_i16] = ACTIONS(1511), - [anon_sym_u32] = ACTIONS(1511), - [anon_sym_i32] = ACTIONS(1511), - [anon_sym_u64] = ACTIONS(1511), - [anon_sym_i64] = ACTIONS(1511), - [anon_sym_u128] = ACTIONS(1511), - [anon_sym_i128] = ACTIONS(1511), - [anon_sym_isize] = ACTIONS(1511), - [anon_sym_usize] = ACTIONS(1511), - [anon_sym_f32] = ACTIONS(1511), - [anon_sym_f64] = ACTIONS(1511), - [anon_sym_bool] = ACTIONS(1511), - [anon_sym_str] = ACTIONS(1511), - [anon_sym_char] = ACTIONS(1511), - [anon_sym_DASH] = ACTIONS(1511), - [anon_sym_SLASH] = ACTIONS(1511), - [anon_sym_PERCENT] = ACTIONS(1511), - [anon_sym_CARET] = ACTIONS(1511), - [anon_sym_BANG] = ACTIONS(1511), - [anon_sym_AMP] = ACTIONS(1511), - [anon_sym_PIPE] = ACTIONS(1511), - [anon_sym_AMP_AMP] = ACTIONS(1509), - [anon_sym_PIPE_PIPE] = ACTIONS(1509), - [anon_sym_LT_LT] = ACTIONS(1511), - [anon_sym_GT_GT] = ACTIONS(1511), - [anon_sym_PLUS_EQ] = ACTIONS(1509), - [anon_sym_DASH_EQ] = ACTIONS(1509), - [anon_sym_STAR_EQ] = ACTIONS(1509), - [anon_sym_SLASH_EQ] = ACTIONS(1509), - [anon_sym_PERCENT_EQ] = ACTIONS(1509), - [anon_sym_CARET_EQ] = ACTIONS(1509), - [anon_sym_AMP_EQ] = ACTIONS(1509), - [anon_sym_PIPE_EQ] = ACTIONS(1509), - [anon_sym_LT_LT_EQ] = ACTIONS(1509), - [anon_sym_GT_GT_EQ] = ACTIONS(1509), - [anon_sym_EQ] = ACTIONS(1511), - [anon_sym_EQ_EQ] = ACTIONS(1509), - [anon_sym_BANG_EQ] = ACTIONS(1509), - [anon_sym_GT] = ACTIONS(1511), - [anon_sym_LT] = ACTIONS(1511), - [anon_sym_GT_EQ] = ACTIONS(1509), - [anon_sym_LT_EQ] = ACTIONS(1509), - [anon_sym_DOT] = ACTIONS(1511), - [anon_sym_DOT_DOT] = ACTIONS(1511), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1509), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1509), - [anon_sym_COLON_COLON] = ACTIONS(1509), - [anon_sym_POUND] = ACTIONS(1509), - [anon_sym_SQUOTE] = ACTIONS(1511), - [anon_sym_as] = ACTIONS(1511), - [anon_sym_async] = ACTIONS(1511), - [anon_sym_break] = ACTIONS(1511), - [anon_sym_const] = ACTIONS(1511), - [anon_sym_continue] = ACTIONS(1511), - [anon_sym_default] = ACTIONS(1511), - [anon_sym_enum] = ACTIONS(1511), - [anon_sym_fn] = ACTIONS(1511), - [anon_sym_for] = ACTIONS(1511), - [anon_sym_gen] = ACTIONS(1511), - [anon_sym_if] = ACTIONS(1511), - [anon_sym_impl] = ACTIONS(1511), - [anon_sym_let] = ACTIONS(1511), - [anon_sym_loop] = ACTIONS(1511), - [anon_sym_match] = ACTIONS(1511), - [anon_sym_mod] = ACTIONS(1511), - [anon_sym_pub] = ACTIONS(1511), - [anon_sym_return] = ACTIONS(1511), - [anon_sym_static] = ACTIONS(1511), - [anon_sym_struct] = ACTIONS(1511), - [anon_sym_trait] = ACTIONS(1511), - [anon_sym_type] = ACTIONS(1511), - [anon_sym_union] = ACTIONS(1511), - [anon_sym_unsafe] = ACTIONS(1511), - [anon_sym_use] = ACTIONS(1511), - [anon_sym_while] = ACTIONS(1511), - [anon_sym_extern] = ACTIONS(1511), - [anon_sym_yield] = ACTIONS(1511), - [anon_sym_move] = ACTIONS(1511), - [anon_sym_try] = ACTIONS(1511), - [sym_integer_literal] = ACTIONS(1509), - [aux_sym_string_literal_token1] = ACTIONS(1509), - [sym_char_literal] = ACTIONS(1509), - [anon_sym_true] = ACTIONS(1511), - [anon_sym_false] = ACTIONS(1511), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1511), - [sym_super] = ACTIONS(1511), - [sym_crate] = ACTIONS(1511), - [sym_metavariable] = ACTIONS(1509), - [sym__raw_string_literal_start] = ACTIONS(1509), - [sym_float_literal] = ACTIONS(1509), + [ts_builtin_sym_end] = ACTIONS(1506), + [sym_identifier] = ACTIONS(1508), + [anon_sym_SEMI] = ACTIONS(1506), + [anon_sym_macro_rules_BANG] = ACTIONS(1506), + [anon_sym_LPAREN] = ACTIONS(1506), + [anon_sym_LBRACK] = ACTIONS(1506), + [anon_sym_LBRACE] = ACTIONS(1506), + [anon_sym_RBRACE] = ACTIONS(1506), + [anon_sym_PLUS] = ACTIONS(1508), + [anon_sym_STAR] = ACTIONS(1508), + [anon_sym_QMARK] = ACTIONS(1506), + [anon_sym_u8] = ACTIONS(1508), + [anon_sym_i8] = ACTIONS(1508), + [anon_sym_u16] = ACTIONS(1508), + [anon_sym_i16] = ACTIONS(1508), + [anon_sym_u32] = ACTIONS(1508), + [anon_sym_i32] = ACTIONS(1508), + [anon_sym_u64] = ACTIONS(1508), + [anon_sym_i64] = ACTIONS(1508), + [anon_sym_u128] = ACTIONS(1508), + [anon_sym_i128] = ACTIONS(1508), + [anon_sym_isize] = ACTIONS(1508), + [anon_sym_usize] = ACTIONS(1508), + [anon_sym_f32] = ACTIONS(1508), + [anon_sym_f64] = ACTIONS(1508), + [anon_sym_bool] = ACTIONS(1508), + [anon_sym_str] = ACTIONS(1508), + [anon_sym_char] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1508), + [anon_sym_SLASH] = ACTIONS(1508), + [anon_sym_PERCENT] = ACTIONS(1508), + [anon_sym_CARET] = ACTIONS(1508), + [anon_sym_BANG] = ACTIONS(1508), + [anon_sym_AMP] = ACTIONS(1508), + [anon_sym_PIPE] = ACTIONS(1508), + [anon_sym_AMP_AMP] = ACTIONS(1506), + [anon_sym_PIPE_PIPE] = ACTIONS(1506), + [anon_sym_LT_LT] = ACTIONS(1508), + [anon_sym_GT_GT] = ACTIONS(1508), + [anon_sym_PLUS_EQ] = ACTIONS(1506), + [anon_sym_DASH_EQ] = ACTIONS(1506), + [anon_sym_STAR_EQ] = ACTIONS(1506), + [anon_sym_SLASH_EQ] = ACTIONS(1506), + [anon_sym_PERCENT_EQ] = ACTIONS(1506), + [anon_sym_CARET_EQ] = ACTIONS(1506), + [anon_sym_AMP_EQ] = ACTIONS(1506), + [anon_sym_PIPE_EQ] = ACTIONS(1506), + [anon_sym_LT_LT_EQ] = ACTIONS(1506), + [anon_sym_GT_GT_EQ] = ACTIONS(1506), + [anon_sym_EQ] = ACTIONS(1508), + [anon_sym_EQ_EQ] = ACTIONS(1506), + [anon_sym_BANG_EQ] = ACTIONS(1506), + [anon_sym_GT] = ACTIONS(1508), + [anon_sym_LT] = ACTIONS(1508), + [anon_sym_GT_EQ] = ACTIONS(1506), + [anon_sym_LT_EQ] = ACTIONS(1506), + [anon_sym_DOT] = ACTIONS(1508), + [anon_sym_DOT_DOT] = ACTIONS(1508), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1506), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1506), + [anon_sym_COLON_COLON] = ACTIONS(1506), + [anon_sym_POUND] = ACTIONS(1506), + [anon_sym_SQUOTE] = ACTIONS(1508), + [anon_sym_as] = ACTIONS(1508), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_break] = ACTIONS(1508), + [anon_sym_const] = ACTIONS(1508), + [anon_sym_continue] = ACTIONS(1508), + [anon_sym_default] = ACTIONS(1508), + [anon_sym_enum] = ACTIONS(1508), + [anon_sym_fn] = ACTIONS(1508), + [anon_sym_for] = ACTIONS(1508), + [anon_sym_gen] = ACTIONS(1508), + [anon_sym_if] = ACTIONS(1508), + [anon_sym_impl] = ACTIONS(1508), + [anon_sym_let] = ACTIONS(1508), + [anon_sym_loop] = ACTIONS(1508), + [anon_sym_match] = ACTIONS(1508), + [anon_sym_mod] = ACTIONS(1508), + [anon_sym_pub] = ACTIONS(1508), + [anon_sym_return] = ACTIONS(1508), + [anon_sym_static] = ACTIONS(1508), + [anon_sym_struct] = ACTIONS(1508), + [anon_sym_trait] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1508), + [anon_sym_union] = ACTIONS(1508), + [anon_sym_unsafe] = ACTIONS(1508), + [anon_sym_use] = ACTIONS(1508), + [anon_sym_while] = ACTIONS(1508), + [anon_sym_extern] = ACTIONS(1508), + [anon_sym_safe] = ACTIONS(1508), + [anon_sym_yield] = ACTIONS(1508), + [anon_sym_move] = ACTIONS(1508), + [anon_sym_try] = ACTIONS(1508), + [sym_integer_literal] = ACTIONS(1506), + [aux_sym_string_literal_token1] = ACTIONS(1506), + [sym_char_literal] = ACTIONS(1506), + [anon_sym_true] = ACTIONS(1508), + [anon_sym_false] = ACTIONS(1508), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1508), + [sym_super] = ACTIONS(1508), + [sym_crate] = ACTIONS(1508), + [sym_metavariable] = ACTIONS(1506), + [sym__raw_string_literal_start] = ACTIONS(1506), + [sym_float_literal] = ACTIONS(1506), }, [STATE(414)] = { [sym_line_comment] = STATE(414), [sym_block_comment] = STATE(414), - [ts_builtin_sym_end] = ACTIONS(1513), - [sym_identifier] = ACTIONS(1515), - [anon_sym_SEMI] = ACTIONS(1513), - [anon_sym_macro_rules_BANG] = ACTIONS(1513), - [anon_sym_LPAREN] = ACTIONS(1513), - [anon_sym_LBRACK] = ACTIONS(1513), - [anon_sym_LBRACE] = ACTIONS(1513), - [anon_sym_RBRACE] = ACTIONS(1513), - [anon_sym_PLUS] = ACTIONS(1515), - [anon_sym_STAR] = ACTIONS(1515), - [anon_sym_QMARK] = ACTIONS(1513), - [anon_sym_u8] = ACTIONS(1515), - [anon_sym_i8] = ACTIONS(1515), - [anon_sym_u16] = ACTIONS(1515), - [anon_sym_i16] = ACTIONS(1515), - [anon_sym_u32] = ACTIONS(1515), - [anon_sym_i32] = ACTIONS(1515), - [anon_sym_u64] = ACTIONS(1515), - [anon_sym_i64] = ACTIONS(1515), - [anon_sym_u128] = ACTIONS(1515), - [anon_sym_i128] = ACTIONS(1515), - [anon_sym_isize] = ACTIONS(1515), - [anon_sym_usize] = ACTIONS(1515), - [anon_sym_f32] = ACTIONS(1515), - [anon_sym_f64] = ACTIONS(1515), - [anon_sym_bool] = ACTIONS(1515), - [anon_sym_str] = ACTIONS(1515), - [anon_sym_char] = ACTIONS(1515), - [anon_sym_DASH] = ACTIONS(1515), - [anon_sym_SLASH] = ACTIONS(1515), - [anon_sym_PERCENT] = ACTIONS(1515), - [anon_sym_CARET] = ACTIONS(1515), - [anon_sym_BANG] = ACTIONS(1515), - [anon_sym_AMP] = ACTIONS(1515), - [anon_sym_PIPE] = ACTIONS(1515), - [anon_sym_AMP_AMP] = ACTIONS(1513), - [anon_sym_PIPE_PIPE] = ACTIONS(1513), - [anon_sym_LT_LT] = ACTIONS(1515), - [anon_sym_GT_GT] = ACTIONS(1515), - [anon_sym_PLUS_EQ] = ACTIONS(1513), - [anon_sym_DASH_EQ] = ACTIONS(1513), - [anon_sym_STAR_EQ] = ACTIONS(1513), - [anon_sym_SLASH_EQ] = ACTIONS(1513), - [anon_sym_PERCENT_EQ] = ACTIONS(1513), - [anon_sym_CARET_EQ] = ACTIONS(1513), - [anon_sym_AMP_EQ] = ACTIONS(1513), - [anon_sym_PIPE_EQ] = ACTIONS(1513), - [anon_sym_LT_LT_EQ] = ACTIONS(1513), - [anon_sym_GT_GT_EQ] = ACTIONS(1513), - [anon_sym_EQ] = ACTIONS(1515), - [anon_sym_EQ_EQ] = ACTIONS(1513), - [anon_sym_BANG_EQ] = ACTIONS(1513), - [anon_sym_GT] = ACTIONS(1515), - [anon_sym_LT] = ACTIONS(1515), - [anon_sym_GT_EQ] = ACTIONS(1513), - [anon_sym_LT_EQ] = ACTIONS(1513), - [anon_sym_DOT] = ACTIONS(1515), - [anon_sym_DOT_DOT] = ACTIONS(1515), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1513), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1513), - [anon_sym_COLON_COLON] = ACTIONS(1513), - [anon_sym_POUND] = ACTIONS(1513), - [anon_sym_SQUOTE] = ACTIONS(1515), - [anon_sym_as] = ACTIONS(1515), - [anon_sym_async] = ACTIONS(1515), - [anon_sym_break] = ACTIONS(1515), - [anon_sym_const] = ACTIONS(1515), - [anon_sym_continue] = ACTIONS(1515), - [anon_sym_default] = ACTIONS(1515), - [anon_sym_enum] = ACTIONS(1515), - [anon_sym_fn] = ACTIONS(1515), - [anon_sym_for] = ACTIONS(1515), - [anon_sym_gen] = ACTIONS(1515), - [anon_sym_if] = ACTIONS(1515), - [anon_sym_impl] = ACTIONS(1515), - [anon_sym_let] = ACTIONS(1515), - [anon_sym_loop] = ACTIONS(1515), - [anon_sym_match] = ACTIONS(1515), - [anon_sym_mod] = ACTIONS(1515), - [anon_sym_pub] = ACTIONS(1515), - [anon_sym_return] = ACTIONS(1515), - [anon_sym_static] = ACTIONS(1515), - [anon_sym_struct] = ACTIONS(1515), - [anon_sym_trait] = ACTIONS(1515), - [anon_sym_type] = ACTIONS(1515), - [anon_sym_union] = ACTIONS(1515), - [anon_sym_unsafe] = ACTIONS(1515), - [anon_sym_use] = ACTIONS(1515), - [anon_sym_while] = ACTIONS(1515), - [anon_sym_extern] = ACTIONS(1515), - [anon_sym_yield] = ACTIONS(1515), - [anon_sym_move] = ACTIONS(1515), - [anon_sym_try] = ACTIONS(1515), - [sym_integer_literal] = ACTIONS(1513), - [aux_sym_string_literal_token1] = ACTIONS(1513), - [sym_char_literal] = ACTIONS(1513), - [anon_sym_true] = ACTIONS(1515), - [anon_sym_false] = ACTIONS(1515), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1515), - [sym_super] = ACTIONS(1515), - [sym_crate] = ACTIONS(1515), - [sym_metavariable] = ACTIONS(1513), - [sym__raw_string_literal_start] = ACTIONS(1513), - [sym_float_literal] = ACTIONS(1513), + [ts_builtin_sym_end] = ACTIONS(1510), + [sym_identifier] = ACTIONS(1512), + [anon_sym_SEMI] = ACTIONS(1510), + [anon_sym_macro_rules_BANG] = ACTIONS(1510), + [anon_sym_LPAREN] = ACTIONS(1510), + [anon_sym_LBRACK] = ACTIONS(1510), + [anon_sym_LBRACE] = ACTIONS(1510), + [anon_sym_RBRACE] = ACTIONS(1510), + [anon_sym_PLUS] = ACTIONS(1512), + [anon_sym_STAR] = ACTIONS(1512), + [anon_sym_QMARK] = ACTIONS(1510), + [anon_sym_u8] = ACTIONS(1512), + [anon_sym_i8] = ACTIONS(1512), + [anon_sym_u16] = ACTIONS(1512), + [anon_sym_i16] = ACTIONS(1512), + [anon_sym_u32] = ACTIONS(1512), + [anon_sym_i32] = ACTIONS(1512), + [anon_sym_u64] = ACTIONS(1512), + [anon_sym_i64] = ACTIONS(1512), + [anon_sym_u128] = ACTIONS(1512), + [anon_sym_i128] = ACTIONS(1512), + [anon_sym_isize] = ACTIONS(1512), + [anon_sym_usize] = ACTIONS(1512), + [anon_sym_f32] = ACTIONS(1512), + [anon_sym_f64] = ACTIONS(1512), + [anon_sym_bool] = ACTIONS(1512), + [anon_sym_str] = ACTIONS(1512), + [anon_sym_char] = ACTIONS(1512), + [anon_sym_DASH] = ACTIONS(1512), + [anon_sym_SLASH] = ACTIONS(1512), + [anon_sym_PERCENT] = ACTIONS(1512), + [anon_sym_CARET] = ACTIONS(1512), + [anon_sym_BANG] = ACTIONS(1512), + [anon_sym_AMP] = ACTIONS(1512), + [anon_sym_PIPE] = ACTIONS(1512), + [anon_sym_AMP_AMP] = ACTIONS(1510), + [anon_sym_PIPE_PIPE] = ACTIONS(1510), + [anon_sym_LT_LT] = ACTIONS(1512), + [anon_sym_GT_GT] = ACTIONS(1512), + [anon_sym_PLUS_EQ] = ACTIONS(1510), + [anon_sym_DASH_EQ] = ACTIONS(1510), + [anon_sym_STAR_EQ] = ACTIONS(1510), + [anon_sym_SLASH_EQ] = ACTIONS(1510), + [anon_sym_PERCENT_EQ] = ACTIONS(1510), + [anon_sym_CARET_EQ] = ACTIONS(1510), + [anon_sym_AMP_EQ] = ACTIONS(1510), + [anon_sym_PIPE_EQ] = ACTIONS(1510), + [anon_sym_LT_LT_EQ] = ACTIONS(1510), + [anon_sym_GT_GT_EQ] = ACTIONS(1510), + [anon_sym_EQ] = ACTIONS(1512), + [anon_sym_EQ_EQ] = ACTIONS(1510), + [anon_sym_BANG_EQ] = ACTIONS(1510), + [anon_sym_GT] = ACTIONS(1512), + [anon_sym_LT] = ACTIONS(1512), + [anon_sym_GT_EQ] = ACTIONS(1510), + [anon_sym_LT_EQ] = ACTIONS(1510), + [anon_sym_DOT] = ACTIONS(1512), + [anon_sym_DOT_DOT] = ACTIONS(1512), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1510), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1510), + [anon_sym_COLON_COLON] = ACTIONS(1510), + [anon_sym_POUND] = ACTIONS(1510), + [anon_sym_SQUOTE] = ACTIONS(1512), + [anon_sym_as] = ACTIONS(1512), + [anon_sym_async] = ACTIONS(1512), + [anon_sym_break] = ACTIONS(1512), + [anon_sym_const] = ACTIONS(1512), + [anon_sym_continue] = ACTIONS(1512), + [anon_sym_default] = ACTIONS(1512), + [anon_sym_enum] = ACTIONS(1512), + [anon_sym_fn] = ACTIONS(1512), + [anon_sym_for] = ACTIONS(1512), + [anon_sym_gen] = ACTIONS(1512), + [anon_sym_if] = ACTIONS(1512), + [anon_sym_impl] = ACTIONS(1512), + [anon_sym_let] = ACTIONS(1512), + [anon_sym_loop] = ACTIONS(1512), + [anon_sym_match] = ACTIONS(1512), + [anon_sym_mod] = ACTIONS(1512), + [anon_sym_pub] = ACTIONS(1512), + [anon_sym_return] = ACTIONS(1512), + [anon_sym_static] = ACTIONS(1512), + [anon_sym_struct] = ACTIONS(1512), + [anon_sym_trait] = ACTIONS(1512), + [anon_sym_type] = ACTIONS(1512), + [anon_sym_union] = ACTIONS(1512), + [anon_sym_unsafe] = ACTIONS(1512), + [anon_sym_use] = ACTIONS(1512), + [anon_sym_while] = ACTIONS(1512), + [anon_sym_extern] = ACTIONS(1512), + [anon_sym_safe] = ACTIONS(1512), + [anon_sym_yield] = ACTIONS(1512), + [anon_sym_move] = ACTIONS(1512), + [anon_sym_try] = ACTIONS(1512), + [sym_integer_literal] = ACTIONS(1510), + [aux_sym_string_literal_token1] = ACTIONS(1510), + [sym_char_literal] = ACTIONS(1510), + [anon_sym_true] = ACTIONS(1512), + [anon_sym_false] = ACTIONS(1512), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1512), + [sym_super] = ACTIONS(1512), + [sym_crate] = ACTIONS(1512), + [sym_metavariable] = ACTIONS(1510), + [sym__raw_string_literal_start] = ACTIONS(1510), + [sym_float_literal] = ACTIONS(1510), }, [STATE(415)] = { [sym_line_comment] = STATE(415), [sym_block_comment] = STATE(415), - [ts_builtin_sym_end] = ACTIONS(1517), - [sym_identifier] = ACTIONS(1519), - [anon_sym_SEMI] = ACTIONS(1517), - [anon_sym_macro_rules_BANG] = ACTIONS(1517), - [anon_sym_LPAREN] = ACTIONS(1517), - [anon_sym_LBRACK] = ACTIONS(1517), - [anon_sym_LBRACE] = ACTIONS(1517), - [anon_sym_RBRACE] = ACTIONS(1517), - [anon_sym_PLUS] = ACTIONS(1519), - [anon_sym_STAR] = ACTIONS(1519), - [anon_sym_QMARK] = ACTIONS(1517), - [anon_sym_u8] = ACTIONS(1519), - [anon_sym_i8] = ACTIONS(1519), - [anon_sym_u16] = ACTIONS(1519), - [anon_sym_i16] = ACTIONS(1519), - [anon_sym_u32] = ACTIONS(1519), - [anon_sym_i32] = ACTIONS(1519), - [anon_sym_u64] = ACTIONS(1519), - [anon_sym_i64] = ACTIONS(1519), - [anon_sym_u128] = ACTIONS(1519), - [anon_sym_i128] = ACTIONS(1519), - [anon_sym_isize] = ACTIONS(1519), - [anon_sym_usize] = ACTIONS(1519), - [anon_sym_f32] = ACTIONS(1519), - [anon_sym_f64] = ACTIONS(1519), - [anon_sym_bool] = ACTIONS(1519), - [anon_sym_str] = ACTIONS(1519), - [anon_sym_char] = ACTIONS(1519), - [anon_sym_DASH] = ACTIONS(1519), - [anon_sym_SLASH] = ACTIONS(1519), - [anon_sym_PERCENT] = ACTIONS(1519), - [anon_sym_CARET] = ACTIONS(1519), - [anon_sym_BANG] = ACTIONS(1519), - [anon_sym_AMP] = ACTIONS(1519), - [anon_sym_PIPE] = ACTIONS(1519), - [anon_sym_AMP_AMP] = ACTIONS(1517), - [anon_sym_PIPE_PIPE] = ACTIONS(1517), - [anon_sym_LT_LT] = ACTIONS(1519), - [anon_sym_GT_GT] = ACTIONS(1519), - [anon_sym_PLUS_EQ] = ACTIONS(1517), - [anon_sym_DASH_EQ] = ACTIONS(1517), - [anon_sym_STAR_EQ] = ACTIONS(1517), - [anon_sym_SLASH_EQ] = ACTIONS(1517), - [anon_sym_PERCENT_EQ] = ACTIONS(1517), - [anon_sym_CARET_EQ] = ACTIONS(1517), - [anon_sym_AMP_EQ] = ACTIONS(1517), - [anon_sym_PIPE_EQ] = ACTIONS(1517), - [anon_sym_LT_LT_EQ] = ACTIONS(1517), - [anon_sym_GT_GT_EQ] = ACTIONS(1517), - [anon_sym_EQ] = ACTIONS(1519), - [anon_sym_EQ_EQ] = ACTIONS(1517), - [anon_sym_BANG_EQ] = ACTIONS(1517), - [anon_sym_GT] = ACTIONS(1519), - [anon_sym_LT] = ACTIONS(1519), - [anon_sym_GT_EQ] = ACTIONS(1517), - [anon_sym_LT_EQ] = ACTIONS(1517), - [anon_sym_DOT] = ACTIONS(1519), - [anon_sym_DOT_DOT] = ACTIONS(1519), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1517), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1517), - [anon_sym_COLON_COLON] = ACTIONS(1517), - [anon_sym_POUND] = ACTIONS(1517), - [anon_sym_SQUOTE] = ACTIONS(1519), - [anon_sym_as] = ACTIONS(1519), - [anon_sym_async] = ACTIONS(1519), - [anon_sym_break] = ACTIONS(1519), - [anon_sym_const] = ACTIONS(1519), - [anon_sym_continue] = ACTIONS(1519), - [anon_sym_default] = ACTIONS(1519), - [anon_sym_enum] = ACTIONS(1519), - [anon_sym_fn] = ACTIONS(1519), - [anon_sym_for] = ACTIONS(1519), - [anon_sym_gen] = ACTIONS(1519), - [anon_sym_if] = ACTIONS(1519), - [anon_sym_impl] = ACTIONS(1519), - [anon_sym_let] = ACTIONS(1519), - [anon_sym_loop] = ACTIONS(1519), - [anon_sym_match] = ACTIONS(1519), - [anon_sym_mod] = ACTIONS(1519), - [anon_sym_pub] = ACTIONS(1519), - [anon_sym_return] = ACTIONS(1519), - [anon_sym_static] = ACTIONS(1519), - [anon_sym_struct] = ACTIONS(1519), - [anon_sym_trait] = ACTIONS(1519), - [anon_sym_type] = ACTIONS(1519), - [anon_sym_union] = ACTIONS(1519), - [anon_sym_unsafe] = ACTIONS(1519), - [anon_sym_use] = ACTIONS(1519), - [anon_sym_while] = ACTIONS(1519), - [anon_sym_extern] = ACTIONS(1519), - [anon_sym_yield] = ACTIONS(1519), - [anon_sym_move] = ACTIONS(1519), - [anon_sym_try] = ACTIONS(1519), - [sym_integer_literal] = ACTIONS(1517), - [aux_sym_string_literal_token1] = ACTIONS(1517), - [sym_char_literal] = ACTIONS(1517), - [anon_sym_true] = ACTIONS(1519), - [anon_sym_false] = ACTIONS(1519), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1519), - [sym_super] = ACTIONS(1519), - [sym_crate] = ACTIONS(1519), - [sym_metavariable] = ACTIONS(1517), - [sym__raw_string_literal_start] = ACTIONS(1517), - [sym_float_literal] = ACTIONS(1517), + [ts_builtin_sym_end] = ACTIONS(1514), + [sym_identifier] = ACTIONS(1516), + [anon_sym_SEMI] = ACTIONS(1514), + [anon_sym_macro_rules_BANG] = ACTIONS(1514), + [anon_sym_LPAREN] = ACTIONS(1514), + [anon_sym_LBRACK] = ACTIONS(1514), + [anon_sym_LBRACE] = ACTIONS(1514), + [anon_sym_RBRACE] = ACTIONS(1514), + [anon_sym_PLUS] = ACTIONS(1516), + [anon_sym_STAR] = ACTIONS(1516), + [anon_sym_QMARK] = ACTIONS(1514), + [anon_sym_u8] = ACTIONS(1516), + [anon_sym_i8] = ACTIONS(1516), + [anon_sym_u16] = ACTIONS(1516), + [anon_sym_i16] = ACTIONS(1516), + [anon_sym_u32] = ACTIONS(1516), + [anon_sym_i32] = ACTIONS(1516), + [anon_sym_u64] = ACTIONS(1516), + [anon_sym_i64] = ACTIONS(1516), + [anon_sym_u128] = ACTIONS(1516), + [anon_sym_i128] = ACTIONS(1516), + [anon_sym_isize] = ACTIONS(1516), + [anon_sym_usize] = ACTIONS(1516), + [anon_sym_f32] = ACTIONS(1516), + [anon_sym_f64] = ACTIONS(1516), + [anon_sym_bool] = ACTIONS(1516), + [anon_sym_str] = ACTIONS(1516), + [anon_sym_char] = ACTIONS(1516), + [anon_sym_DASH] = ACTIONS(1516), + [anon_sym_SLASH] = ACTIONS(1516), + [anon_sym_PERCENT] = ACTIONS(1516), + [anon_sym_CARET] = ACTIONS(1516), + [anon_sym_BANG] = ACTIONS(1516), + [anon_sym_AMP] = ACTIONS(1516), + [anon_sym_PIPE] = ACTIONS(1516), + [anon_sym_AMP_AMP] = ACTIONS(1514), + [anon_sym_PIPE_PIPE] = ACTIONS(1514), + [anon_sym_LT_LT] = ACTIONS(1516), + [anon_sym_GT_GT] = ACTIONS(1516), + [anon_sym_PLUS_EQ] = ACTIONS(1514), + [anon_sym_DASH_EQ] = ACTIONS(1514), + [anon_sym_STAR_EQ] = ACTIONS(1514), + [anon_sym_SLASH_EQ] = ACTIONS(1514), + [anon_sym_PERCENT_EQ] = ACTIONS(1514), + [anon_sym_CARET_EQ] = ACTIONS(1514), + [anon_sym_AMP_EQ] = ACTIONS(1514), + [anon_sym_PIPE_EQ] = ACTIONS(1514), + [anon_sym_LT_LT_EQ] = ACTIONS(1514), + [anon_sym_GT_GT_EQ] = ACTIONS(1514), + [anon_sym_EQ] = ACTIONS(1516), + [anon_sym_EQ_EQ] = ACTIONS(1514), + [anon_sym_BANG_EQ] = ACTIONS(1514), + [anon_sym_GT] = ACTIONS(1516), + [anon_sym_LT] = ACTIONS(1516), + [anon_sym_GT_EQ] = ACTIONS(1514), + [anon_sym_LT_EQ] = ACTIONS(1514), + [anon_sym_DOT] = ACTIONS(1516), + [anon_sym_DOT_DOT] = ACTIONS(1516), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1514), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1514), + [anon_sym_COLON_COLON] = ACTIONS(1514), + [anon_sym_POUND] = ACTIONS(1514), + [anon_sym_SQUOTE] = ACTIONS(1516), + [anon_sym_as] = ACTIONS(1516), + [anon_sym_async] = ACTIONS(1516), + [anon_sym_break] = ACTIONS(1516), + [anon_sym_const] = ACTIONS(1516), + [anon_sym_continue] = ACTIONS(1516), + [anon_sym_default] = ACTIONS(1516), + [anon_sym_enum] = ACTIONS(1516), + [anon_sym_fn] = ACTIONS(1516), + [anon_sym_for] = ACTIONS(1516), + [anon_sym_gen] = ACTIONS(1516), + [anon_sym_if] = ACTIONS(1516), + [anon_sym_impl] = ACTIONS(1516), + [anon_sym_let] = ACTIONS(1516), + [anon_sym_loop] = ACTIONS(1516), + [anon_sym_match] = ACTIONS(1516), + [anon_sym_mod] = ACTIONS(1516), + [anon_sym_pub] = ACTIONS(1516), + [anon_sym_return] = ACTIONS(1516), + [anon_sym_static] = ACTIONS(1516), + [anon_sym_struct] = ACTIONS(1516), + [anon_sym_trait] = ACTIONS(1516), + [anon_sym_type] = ACTIONS(1516), + [anon_sym_union] = ACTIONS(1516), + [anon_sym_unsafe] = ACTIONS(1516), + [anon_sym_use] = ACTIONS(1516), + [anon_sym_while] = ACTIONS(1516), + [anon_sym_extern] = ACTIONS(1516), + [anon_sym_safe] = ACTIONS(1516), + [anon_sym_yield] = ACTIONS(1516), + [anon_sym_move] = ACTIONS(1516), + [anon_sym_try] = ACTIONS(1516), + [sym_integer_literal] = ACTIONS(1514), + [aux_sym_string_literal_token1] = ACTIONS(1514), + [sym_char_literal] = ACTIONS(1514), + [anon_sym_true] = ACTIONS(1516), + [anon_sym_false] = ACTIONS(1516), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1516), + [sym_super] = ACTIONS(1516), + [sym_crate] = ACTIONS(1516), + [sym_metavariable] = ACTIONS(1514), + [sym__raw_string_literal_start] = ACTIONS(1514), + [sym_float_literal] = ACTIONS(1514), }, [STATE(416)] = { [sym_line_comment] = STATE(416), [sym_block_comment] = STATE(416), - [ts_builtin_sym_end] = ACTIONS(1521), - [sym_identifier] = ACTIONS(1523), - [anon_sym_SEMI] = ACTIONS(1521), - [anon_sym_macro_rules_BANG] = ACTIONS(1521), - [anon_sym_LPAREN] = ACTIONS(1521), - [anon_sym_LBRACK] = ACTIONS(1521), - [anon_sym_LBRACE] = ACTIONS(1521), - [anon_sym_RBRACE] = ACTIONS(1521), - [anon_sym_PLUS] = ACTIONS(1523), - [anon_sym_STAR] = ACTIONS(1523), - [anon_sym_QMARK] = ACTIONS(1521), - [anon_sym_u8] = ACTIONS(1523), - [anon_sym_i8] = ACTIONS(1523), - [anon_sym_u16] = ACTIONS(1523), - [anon_sym_i16] = ACTIONS(1523), - [anon_sym_u32] = ACTIONS(1523), - [anon_sym_i32] = ACTIONS(1523), - [anon_sym_u64] = ACTIONS(1523), - [anon_sym_i64] = ACTIONS(1523), - [anon_sym_u128] = ACTIONS(1523), - [anon_sym_i128] = ACTIONS(1523), - [anon_sym_isize] = ACTIONS(1523), - [anon_sym_usize] = ACTIONS(1523), - [anon_sym_f32] = ACTIONS(1523), - [anon_sym_f64] = ACTIONS(1523), - [anon_sym_bool] = ACTIONS(1523), - [anon_sym_str] = ACTIONS(1523), - [anon_sym_char] = ACTIONS(1523), - [anon_sym_DASH] = ACTIONS(1523), - [anon_sym_SLASH] = ACTIONS(1523), - [anon_sym_PERCENT] = ACTIONS(1523), - [anon_sym_CARET] = ACTIONS(1523), - [anon_sym_BANG] = ACTIONS(1523), - [anon_sym_AMP] = ACTIONS(1523), - [anon_sym_PIPE] = ACTIONS(1523), - [anon_sym_AMP_AMP] = ACTIONS(1521), - [anon_sym_PIPE_PIPE] = ACTIONS(1521), - [anon_sym_LT_LT] = ACTIONS(1523), - [anon_sym_GT_GT] = ACTIONS(1523), - [anon_sym_PLUS_EQ] = ACTIONS(1521), - [anon_sym_DASH_EQ] = ACTIONS(1521), - [anon_sym_STAR_EQ] = ACTIONS(1521), - [anon_sym_SLASH_EQ] = ACTIONS(1521), - [anon_sym_PERCENT_EQ] = ACTIONS(1521), - [anon_sym_CARET_EQ] = ACTIONS(1521), - [anon_sym_AMP_EQ] = ACTIONS(1521), - [anon_sym_PIPE_EQ] = ACTIONS(1521), - [anon_sym_LT_LT_EQ] = ACTIONS(1521), - [anon_sym_GT_GT_EQ] = ACTIONS(1521), - [anon_sym_EQ] = ACTIONS(1523), - [anon_sym_EQ_EQ] = ACTIONS(1521), - [anon_sym_BANG_EQ] = ACTIONS(1521), - [anon_sym_GT] = ACTIONS(1523), - [anon_sym_LT] = ACTIONS(1523), - [anon_sym_GT_EQ] = ACTIONS(1521), - [anon_sym_LT_EQ] = ACTIONS(1521), - [anon_sym_DOT] = ACTIONS(1523), - [anon_sym_DOT_DOT] = ACTIONS(1523), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1521), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1521), - [anon_sym_COLON_COLON] = ACTIONS(1521), - [anon_sym_POUND] = ACTIONS(1521), - [anon_sym_SQUOTE] = ACTIONS(1523), - [anon_sym_as] = ACTIONS(1523), - [anon_sym_async] = ACTIONS(1523), - [anon_sym_break] = ACTIONS(1523), - [anon_sym_const] = ACTIONS(1523), - [anon_sym_continue] = ACTIONS(1523), - [anon_sym_default] = ACTIONS(1523), - [anon_sym_enum] = ACTIONS(1523), - [anon_sym_fn] = ACTIONS(1523), - [anon_sym_for] = ACTIONS(1523), - [anon_sym_gen] = ACTIONS(1523), - [anon_sym_if] = ACTIONS(1523), - [anon_sym_impl] = ACTIONS(1523), - [anon_sym_let] = ACTIONS(1523), - [anon_sym_loop] = ACTIONS(1523), - [anon_sym_match] = ACTIONS(1523), - [anon_sym_mod] = ACTIONS(1523), - [anon_sym_pub] = ACTIONS(1523), - [anon_sym_return] = ACTIONS(1523), - [anon_sym_static] = ACTIONS(1523), - [anon_sym_struct] = ACTIONS(1523), - [anon_sym_trait] = ACTIONS(1523), - [anon_sym_type] = ACTIONS(1523), - [anon_sym_union] = ACTIONS(1523), - [anon_sym_unsafe] = ACTIONS(1523), - [anon_sym_use] = ACTIONS(1523), - [anon_sym_while] = ACTIONS(1523), - [anon_sym_extern] = ACTIONS(1523), - [anon_sym_yield] = ACTIONS(1523), - [anon_sym_move] = ACTIONS(1523), - [anon_sym_try] = ACTIONS(1523), - [sym_integer_literal] = ACTIONS(1521), - [aux_sym_string_literal_token1] = ACTIONS(1521), - [sym_char_literal] = ACTIONS(1521), - [anon_sym_true] = ACTIONS(1523), - [anon_sym_false] = ACTIONS(1523), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1523), - [sym_super] = ACTIONS(1523), - [sym_crate] = ACTIONS(1523), - [sym_metavariable] = ACTIONS(1521), - [sym__raw_string_literal_start] = ACTIONS(1521), - [sym_float_literal] = ACTIONS(1521), + [ts_builtin_sym_end] = ACTIONS(1518), + [sym_identifier] = ACTIONS(1520), + [anon_sym_SEMI] = ACTIONS(1518), + [anon_sym_macro_rules_BANG] = ACTIONS(1518), + [anon_sym_LPAREN] = ACTIONS(1518), + [anon_sym_LBRACK] = ACTIONS(1518), + [anon_sym_LBRACE] = ACTIONS(1518), + [anon_sym_RBRACE] = ACTIONS(1518), + [anon_sym_PLUS] = ACTIONS(1520), + [anon_sym_STAR] = ACTIONS(1520), + [anon_sym_QMARK] = ACTIONS(1518), + [anon_sym_u8] = ACTIONS(1520), + [anon_sym_i8] = ACTIONS(1520), + [anon_sym_u16] = ACTIONS(1520), + [anon_sym_i16] = ACTIONS(1520), + [anon_sym_u32] = ACTIONS(1520), + [anon_sym_i32] = ACTIONS(1520), + [anon_sym_u64] = ACTIONS(1520), + [anon_sym_i64] = ACTIONS(1520), + [anon_sym_u128] = ACTIONS(1520), + [anon_sym_i128] = ACTIONS(1520), + [anon_sym_isize] = ACTIONS(1520), + [anon_sym_usize] = ACTIONS(1520), + [anon_sym_f32] = ACTIONS(1520), + [anon_sym_f64] = ACTIONS(1520), + [anon_sym_bool] = ACTIONS(1520), + [anon_sym_str] = ACTIONS(1520), + [anon_sym_char] = ACTIONS(1520), + [anon_sym_DASH] = ACTIONS(1520), + [anon_sym_SLASH] = ACTIONS(1520), + [anon_sym_PERCENT] = ACTIONS(1520), + [anon_sym_CARET] = ACTIONS(1520), + [anon_sym_BANG] = ACTIONS(1520), + [anon_sym_AMP] = ACTIONS(1520), + [anon_sym_PIPE] = ACTIONS(1520), + [anon_sym_AMP_AMP] = ACTIONS(1518), + [anon_sym_PIPE_PIPE] = ACTIONS(1518), + [anon_sym_LT_LT] = ACTIONS(1520), + [anon_sym_GT_GT] = ACTIONS(1520), + [anon_sym_PLUS_EQ] = ACTIONS(1518), + [anon_sym_DASH_EQ] = ACTIONS(1518), + [anon_sym_STAR_EQ] = ACTIONS(1518), + [anon_sym_SLASH_EQ] = ACTIONS(1518), + [anon_sym_PERCENT_EQ] = ACTIONS(1518), + [anon_sym_CARET_EQ] = ACTIONS(1518), + [anon_sym_AMP_EQ] = ACTIONS(1518), + [anon_sym_PIPE_EQ] = ACTIONS(1518), + [anon_sym_LT_LT_EQ] = ACTIONS(1518), + [anon_sym_GT_GT_EQ] = ACTIONS(1518), + [anon_sym_EQ] = ACTIONS(1520), + [anon_sym_EQ_EQ] = ACTIONS(1518), + [anon_sym_BANG_EQ] = ACTIONS(1518), + [anon_sym_GT] = ACTIONS(1520), + [anon_sym_LT] = ACTIONS(1520), + [anon_sym_GT_EQ] = ACTIONS(1518), + [anon_sym_LT_EQ] = ACTIONS(1518), + [anon_sym_DOT] = ACTIONS(1520), + [anon_sym_DOT_DOT] = ACTIONS(1520), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1518), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1518), + [anon_sym_COLON_COLON] = ACTIONS(1518), + [anon_sym_POUND] = ACTIONS(1518), + [anon_sym_SQUOTE] = ACTIONS(1520), + [anon_sym_as] = ACTIONS(1520), + [anon_sym_async] = ACTIONS(1520), + [anon_sym_break] = ACTIONS(1520), + [anon_sym_const] = ACTIONS(1520), + [anon_sym_continue] = ACTIONS(1520), + [anon_sym_default] = ACTIONS(1520), + [anon_sym_enum] = ACTIONS(1520), + [anon_sym_fn] = ACTIONS(1520), + [anon_sym_for] = ACTIONS(1520), + [anon_sym_gen] = ACTIONS(1520), + [anon_sym_if] = ACTIONS(1520), + [anon_sym_impl] = ACTIONS(1520), + [anon_sym_let] = ACTIONS(1520), + [anon_sym_loop] = ACTIONS(1520), + [anon_sym_match] = ACTIONS(1520), + [anon_sym_mod] = ACTIONS(1520), + [anon_sym_pub] = ACTIONS(1520), + [anon_sym_return] = ACTIONS(1520), + [anon_sym_static] = ACTIONS(1520), + [anon_sym_struct] = ACTIONS(1520), + [anon_sym_trait] = ACTIONS(1520), + [anon_sym_type] = ACTIONS(1520), + [anon_sym_union] = ACTIONS(1520), + [anon_sym_unsafe] = ACTIONS(1520), + [anon_sym_use] = ACTIONS(1520), + [anon_sym_while] = ACTIONS(1520), + [anon_sym_extern] = ACTIONS(1520), + [anon_sym_safe] = ACTIONS(1520), + [anon_sym_yield] = ACTIONS(1520), + [anon_sym_move] = ACTIONS(1520), + [anon_sym_try] = ACTIONS(1520), + [sym_integer_literal] = ACTIONS(1518), + [aux_sym_string_literal_token1] = ACTIONS(1518), + [sym_char_literal] = ACTIONS(1518), + [anon_sym_true] = ACTIONS(1520), + [anon_sym_false] = ACTIONS(1520), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1520), + [sym_super] = ACTIONS(1520), + [sym_crate] = ACTIONS(1520), + [sym_metavariable] = ACTIONS(1518), + [sym__raw_string_literal_start] = ACTIONS(1518), + [sym_float_literal] = ACTIONS(1518), }, [STATE(417)] = { [sym_line_comment] = STATE(417), [sym_block_comment] = STATE(417), - [ts_builtin_sym_end] = ACTIONS(1525), - [sym_identifier] = ACTIONS(1527), - [anon_sym_SEMI] = ACTIONS(1525), - [anon_sym_macro_rules_BANG] = ACTIONS(1525), - [anon_sym_LPAREN] = ACTIONS(1525), - [anon_sym_LBRACK] = ACTIONS(1525), - [anon_sym_LBRACE] = ACTIONS(1525), - [anon_sym_RBRACE] = ACTIONS(1525), - [anon_sym_PLUS] = ACTIONS(1527), - [anon_sym_STAR] = ACTIONS(1527), - [anon_sym_QMARK] = ACTIONS(1525), - [anon_sym_u8] = ACTIONS(1527), - [anon_sym_i8] = ACTIONS(1527), - [anon_sym_u16] = ACTIONS(1527), - [anon_sym_i16] = ACTIONS(1527), - [anon_sym_u32] = ACTIONS(1527), - [anon_sym_i32] = ACTIONS(1527), - [anon_sym_u64] = ACTIONS(1527), - [anon_sym_i64] = ACTIONS(1527), - [anon_sym_u128] = ACTIONS(1527), - [anon_sym_i128] = ACTIONS(1527), - [anon_sym_isize] = ACTIONS(1527), - [anon_sym_usize] = ACTIONS(1527), - [anon_sym_f32] = ACTIONS(1527), - [anon_sym_f64] = ACTIONS(1527), - [anon_sym_bool] = ACTIONS(1527), - [anon_sym_str] = ACTIONS(1527), - [anon_sym_char] = ACTIONS(1527), - [anon_sym_DASH] = ACTIONS(1527), - [anon_sym_SLASH] = ACTIONS(1527), - [anon_sym_PERCENT] = ACTIONS(1527), - [anon_sym_CARET] = ACTIONS(1527), - [anon_sym_BANG] = ACTIONS(1527), - [anon_sym_AMP] = ACTIONS(1527), - [anon_sym_PIPE] = ACTIONS(1527), - [anon_sym_AMP_AMP] = ACTIONS(1525), - [anon_sym_PIPE_PIPE] = ACTIONS(1525), - [anon_sym_LT_LT] = ACTIONS(1527), - [anon_sym_GT_GT] = ACTIONS(1527), - [anon_sym_PLUS_EQ] = ACTIONS(1525), - [anon_sym_DASH_EQ] = ACTIONS(1525), - [anon_sym_STAR_EQ] = ACTIONS(1525), - [anon_sym_SLASH_EQ] = ACTIONS(1525), - [anon_sym_PERCENT_EQ] = ACTIONS(1525), - [anon_sym_CARET_EQ] = ACTIONS(1525), - [anon_sym_AMP_EQ] = ACTIONS(1525), - [anon_sym_PIPE_EQ] = ACTIONS(1525), - [anon_sym_LT_LT_EQ] = ACTIONS(1525), - [anon_sym_GT_GT_EQ] = ACTIONS(1525), - [anon_sym_EQ] = ACTIONS(1527), - [anon_sym_EQ_EQ] = ACTIONS(1525), - [anon_sym_BANG_EQ] = ACTIONS(1525), - [anon_sym_GT] = ACTIONS(1527), - [anon_sym_LT] = ACTIONS(1527), - [anon_sym_GT_EQ] = ACTIONS(1525), - [anon_sym_LT_EQ] = ACTIONS(1525), - [anon_sym_DOT] = ACTIONS(1527), - [anon_sym_DOT_DOT] = ACTIONS(1527), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1525), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1525), - [anon_sym_COLON_COLON] = ACTIONS(1525), - [anon_sym_POUND] = ACTIONS(1525), - [anon_sym_SQUOTE] = ACTIONS(1527), - [anon_sym_as] = ACTIONS(1527), - [anon_sym_async] = ACTIONS(1527), - [anon_sym_break] = ACTIONS(1527), - [anon_sym_const] = ACTIONS(1527), - [anon_sym_continue] = ACTIONS(1527), - [anon_sym_default] = ACTIONS(1527), - [anon_sym_enum] = ACTIONS(1527), - [anon_sym_fn] = ACTIONS(1527), - [anon_sym_for] = ACTIONS(1527), - [anon_sym_gen] = ACTIONS(1527), - [anon_sym_if] = ACTIONS(1527), - [anon_sym_impl] = ACTIONS(1527), - [anon_sym_let] = ACTIONS(1527), - [anon_sym_loop] = ACTIONS(1527), - [anon_sym_match] = ACTIONS(1527), - [anon_sym_mod] = ACTIONS(1527), - [anon_sym_pub] = ACTIONS(1527), - [anon_sym_return] = ACTIONS(1527), - [anon_sym_static] = ACTIONS(1527), - [anon_sym_struct] = ACTIONS(1527), - [anon_sym_trait] = ACTIONS(1527), - [anon_sym_type] = ACTIONS(1527), - [anon_sym_union] = ACTIONS(1527), - [anon_sym_unsafe] = ACTIONS(1527), - [anon_sym_use] = ACTIONS(1527), - [anon_sym_while] = ACTIONS(1527), - [anon_sym_extern] = ACTIONS(1527), - [anon_sym_yield] = ACTIONS(1527), - [anon_sym_move] = ACTIONS(1527), - [anon_sym_try] = ACTIONS(1527), - [sym_integer_literal] = ACTIONS(1525), - [aux_sym_string_literal_token1] = ACTIONS(1525), - [sym_char_literal] = ACTIONS(1525), - [anon_sym_true] = ACTIONS(1527), - [anon_sym_false] = ACTIONS(1527), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1527), - [sym_super] = ACTIONS(1527), - [sym_crate] = ACTIONS(1527), - [sym_metavariable] = ACTIONS(1525), - [sym__raw_string_literal_start] = ACTIONS(1525), - [sym_float_literal] = ACTIONS(1525), + [ts_builtin_sym_end] = ACTIONS(1522), + [sym_identifier] = ACTIONS(1524), + [anon_sym_SEMI] = ACTIONS(1522), + [anon_sym_macro_rules_BANG] = ACTIONS(1522), + [anon_sym_LPAREN] = ACTIONS(1522), + [anon_sym_LBRACK] = ACTIONS(1522), + [anon_sym_LBRACE] = ACTIONS(1522), + [anon_sym_RBRACE] = ACTIONS(1522), + [anon_sym_PLUS] = ACTIONS(1524), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_QMARK] = ACTIONS(1522), + [anon_sym_u8] = ACTIONS(1524), + [anon_sym_i8] = ACTIONS(1524), + [anon_sym_u16] = ACTIONS(1524), + [anon_sym_i16] = ACTIONS(1524), + [anon_sym_u32] = ACTIONS(1524), + [anon_sym_i32] = ACTIONS(1524), + [anon_sym_u64] = ACTIONS(1524), + [anon_sym_i64] = ACTIONS(1524), + [anon_sym_u128] = ACTIONS(1524), + [anon_sym_i128] = ACTIONS(1524), + [anon_sym_isize] = ACTIONS(1524), + [anon_sym_usize] = ACTIONS(1524), + [anon_sym_f32] = ACTIONS(1524), + [anon_sym_f64] = ACTIONS(1524), + [anon_sym_bool] = ACTIONS(1524), + [anon_sym_str] = ACTIONS(1524), + [anon_sym_char] = ACTIONS(1524), + [anon_sym_DASH] = ACTIONS(1524), + [anon_sym_SLASH] = ACTIONS(1524), + [anon_sym_PERCENT] = ACTIONS(1524), + [anon_sym_CARET] = ACTIONS(1524), + [anon_sym_BANG] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), + [anon_sym_PIPE] = ACTIONS(1524), + [anon_sym_AMP_AMP] = ACTIONS(1522), + [anon_sym_PIPE_PIPE] = ACTIONS(1522), + [anon_sym_LT_LT] = ACTIONS(1524), + [anon_sym_GT_GT] = ACTIONS(1524), + [anon_sym_PLUS_EQ] = ACTIONS(1522), + [anon_sym_DASH_EQ] = ACTIONS(1522), + [anon_sym_STAR_EQ] = ACTIONS(1522), + [anon_sym_SLASH_EQ] = ACTIONS(1522), + [anon_sym_PERCENT_EQ] = ACTIONS(1522), + [anon_sym_CARET_EQ] = ACTIONS(1522), + [anon_sym_AMP_EQ] = ACTIONS(1522), + [anon_sym_PIPE_EQ] = ACTIONS(1522), + [anon_sym_LT_LT_EQ] = ACTIONS(1522), + [anon_sym_GT_GT_EQ] = ACTIONS(1522), + [anon_sym_EQ] = ACTIONS(1524), + [anon_sym_EQ_EQ] = ACTIONS(1522), + [anon_sym_BANG_EQ] = ACTIONS(1522), + [anon_sym_GT] = ACTIONS(1524), + [anon_sym_LT] = ACTIONS(1524), + [anon_sym_GT_EQ] = ACTIONS(1522), + [anon_sym_LT_EQ] = ACTIONS(1522), + [anon_sym_DOT] = ACTIONS(1524), + [anon_sym_DOT_DOT] = ACTIONS(1524), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1522), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1522), + [anon_sym_COLON_COLON] = ACTIONS(1522), + [anon_sym_POUND] = ACTIONS(1522), + [anon_sym_SQUOTE] = ACTIONS(1524), + [anon_sym_as] = ACTIONS(1524), + [anon_sym_async] = ACTIONS(1524), + [anon_sym_break] = ACTIONS(1524), + [anon_sym_const] = ACTIONS(1524), + [anon_sym_continue] = ACTIONS(1524), + [anon_sym_default] = ACTIONS(1524), + [anon_sym_enum] = ACTIONS(1524), + [anon_sym_fn] = ACTIONS(1524), + [anon_sym_for] = ACTIONS(1524), + [anon_sym_gen] = ACTIONS(1524), + [anon_sym_if] = ACTIONS(1524), + [anon_sym_impl] = ACTIONS(1524), + [anon_sym_let] = ACTIONS(1524), + [anon_sym_loop] = ACTIONS(1524), + [anon_sym_match] = ACTIONS(1524), + [anon_sym_mod] = ACTIONS(1524), + [anon_sym_pub] = ACTIONS(1524), + [anon_sym_return] = ACTIONS(1524), + [anon_sym_static] = ACTIONS(1524), + [anon_sym_struct] = ACTIONS(1524), + [anon_sym_trait] = ACTIONS(1524), + [anon_sym_type] = ACTIONS(1524), + [anon_sym_union] = ACTIONS(1524), + [anon_sym_unsafe] = ACTIONS(1524), + [anon_sym_use] = ACTIONS(1524), + [anon_sym_while] = ACTIONS(1524), + [anon_sym_extern] = ACTIONS(1524), + [anon_sym_safe] = ACTIONS(1524), + [anon_sym_yield] = ACTIONS(1524), + [anon_sym_move] = ACTIONS(1524), + [anon_sym_try] = ACTIONS(1524), + [sym_integer_literal] = ACTIONS(1522), + [aux_sym_string_literal_token1] = ACTIONS(1522), + [sym_char_literal] = ACTIONS(1522), + [anon_sym_true] = ACTIONS(1524), + [anon_sym_false] = ACTIONS(1524), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1524), + [sym_super] = ACTIONS(1524), + [sym_crate] = ACTIONS(1524), + [sym_metavariable] = ACTIONS(1522), + [sym__raw_string_literal_start] = ACTIONS(1522), + [sym_float_literal] = ACTIONS(1522), }, [STATE(418)] = { [sym_line_comment] = STATE(418), [sym_block_comment] = STATE(418), - [ts_builtin_sym_end] = ACTIONS(1529), - [sym_identifier] = ACTIONS(1531), - [anon_sym_SEMI] = ACTIONS(1529), - [anon_sym_macro_rules_BANG] = ACTIONS(1529), - [anon_sym_LPAREN] = ACTIONS(1529), - [anon_sym_LBRACK] = ACTIONS(1529), - [anon_sym_LBRACE] = ACTIONS(1529), - [anon_sym_RBRACE] = ACTIONS(1529), - [anon_sym_PLUS] = ACTIONS(1531), - [anon_sym_STAR] = ACTIONS(1531), - [anon_sym_QMARK] = ACTIONS(1529), - [anon_sym_u8] = ACTIONS(1531), - [anon_sym_i8] = ACTIONS(1531), - [anon_sym_u16] = ACTIONS(1531), - [anon_sym_i16] = ACTIONS(1531), - [anon_sym_u32] = ACTIONS(1531), - [anon_sym_i32] = ACTIONS(1531), - [anon_sym_u64] = ACTIONS(1531), - [anon_sym_i64] = ACTIONS(1531), - [anon_sym_u128] = ACTIONS(1531), - [anon_sym_i128] = ACTIONS(1531), - [anon_sym_isize] = ACTIONS(1531), - [anon_sym_usize] = ACTIONS(1531), - [anon_sym_f32] = ACTIONS(1531), - [anon_sym_f64] = ACTIONS(1531), - [anon_sym_bool] = ACTIONS(1531), - [anon_sym_str] = ACTIONS(1531), - [anon_sym_char] = ACTIONS(1531), - [anon_sym_DASH] = ACTIONS(1531), - [anon_sym_SLASH] = ACTIONS(1531), - [anon_sym_PERCENT] = ACTIONS(1531), - [anon_sym_CARET] = ACTIONS(1531), - [anon_sym_BANG] = ACTIONS(1531), - [anon_sym_AMP] = ACTIONS(1531), - [anon_sym_PIPE] = ACTIONS(1531), - [anon_sym_AMP_AMP] = ACTIONS(1529), - [anon_sym_PIPE_PIPE] = ACTIONS(1529), - [anon_sym_LT_LT] = ACTIONS(1531), - [anon_sym_GT_GT] = ACTIONS(1531), - [anon_sym_PLUS_EQ] = ACTIONS(1529), - [anon_sym_DASH_EQ] = ACTIONS(1529), - [anon_sym_STAR_EQ] = ACTIONS(1529), - [anon_sym_SLASH_EQ] = ACTIONS(1529), - [anon_sym_PERCENT_EQ] = ACTIONS(1529), - [anon_sym_CARET_EQ] = ACTIONS(1529), - [anon_sym_AMP_EQ] = ACTIONS(1529), - [anon_sym_PIPE_EQ] = ACTIONS(1529), - [anon_sym_LT_LT_EQ] = ACTIONS(1529), - [anon_sym_GT_GT_EQ] = ACTIONS(1529), - [anon_sym_EQ] = ACTIONS(1531), - [anon_sym_EQ_EQ] = ACTIONS(1529), - [anon_sym_BANG_EQ] = ACTIONS(1529), - [anon_sym_GT] = ACTIONS(1531), - [anon_sym_LT] = ACTIONS(1531), - [anon_sym_GT_EQ] = ACTIONS(1529), - [anon_sym_LT_EQ] = ACTIONS(1529), - [anon_sym_DOT] = ACTIONS(1531), - [anon_sym_DOT_DOT] = ACTIONS(1531), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1529), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1529), - [anon_sym_COLON_COLON] = ACTIONS(1529), - [anon_sym_POUND] = ACTIONS(1529), - [anon_sym_SQUOTE] = ACTIONS(1531), - [anon_sym_as] = ACTIONS(1531), - [anon_sym_async] = ACTIONS(1531), - [anon_sym_break] = ACTIONS(1531), - [anon_sym_const] = ACTIONS(1531), - [anon_sym_continue] = ACTIONS(1531), - [anon_sym_default] = ACTIONS(1531), - [anon_sym_enum] = ACTIONS(1531), - [anon_sym_fn] = ACTIONS(1531), - [anon_sym_for] = ACTIONS(1531), - [anon_sym_gen] = ACTIONS(1531), - [anon_sym_if] = ACTIONS(1531), - [anon_sym_impl] = ACTIONS(1531), - [anon_sym_let] = ACTIONS(1531), - [anon_sym_loop] = ACTIONS(1531), - [anon_sym_match] = ACTIONS(1531), - [anon_sym_mod] = ACTIONS(1531), - [anon_sym_pub] = ACTIONS(1531), - [anon_sym_return] = ACTIONS(1531), - [anon_sym_static] = ACTIONS(1531), - [anon_sym_struct] = ACTIONS(1531), - [anon_sym_trait] = ACTIONS(1531), - [anon_sym_type] = ACTIONS(1531), - [anon_sym_union] = ACTIONS(1531), - [anon_sym_unsafe] = ACTIONS(1531), - [anon_sym_use] = ACTIONS(1531), - [anon_sym_while] = ACTIONS(1531), - [anon_sym_extern] = ACTIONS(1531), - [anon_sym_yield] = ACTIONS(1531), - [anon_sym_move] = ACTIONS(1531), - [anon_sym_try] = ACTIONS(1531), - [sym_integer_literal] = ACTIONS(1529), - [aux_sym_string_literal_token1] = ACTIONS(1529), - [sym_char_literal] = ACTIONS(1529), - [anon_sym_true] = ACTIONS(1531), - [anon_sym_false] = ACTIONS(1531), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1531), - [sym_super] = ACTIONS(1531), - [sym_crate] = ACTIONS(1531), - [sym_metavariable] = ACTIONS(1529), - [sym__raw_string_literal_start] = ACTIONS(1529), - [sym_float_literal] = ACTIONS(1529), + [ts_builtin_sym_end] = ACTIONS(1526), + [sym_identifier] = ACTIONS(1528), + [anon_sym_SEMI] = ACTIONS(1526), + [anon_sym_macro_rules_BANG] = ACTIONS(1526), + [anon_sym_LPAREN] = ACTIONS(1526), + [anon_sym_LBRACK] = ACTIONS(1526), + [anon_sym_LBRACE] = ACTIONS(1526), + [anon_sym_RBRACE] = ACTIONS(1526), + [anon_sym_PLUS] = ACTIONS(1528), + [anon_sym_STAR] = ACTIONS(1528), + [anon_sym_QMARK] = ACTIONS(1526), + [anon_sym_u8] = ACTIONS(1528), + [anon_sym_i8] = ACTIONS(1528), + [anon_sym_u16] = ACTIONS(1528), + [anon_sym_i16] = ACTIONS(1528), + [anon_sym_u32] = ACTIONS(1528), + [anon_sym_i32] = ACTIONS(1528), + [anon_sym_u64] = ACTIONS(1528), + [anon_sym_i64] = ACTIONS(1528), + [anon_sym_u128] = ACTIONS(1528), + [anon_sym_i128] = ACTIONS(1528), + [anon_sym_isize] = ACTIONS(1528), + [anon_sym_usize] = ACTIONS(1528), + [anon_sym_f32] = ACTIONS(1528), + [anon_sym_f64] = ACTIONS(1528), + [anon_sym_bool] = ACTIONS(1528), + [anon_sym_str] = ACTIONS(1528), + [anon_sym_char] = ACTIONS(1528), + [anon_sym_DASH] = ACTIONS(1528), + [anon_sym_SLASH] = ACTIONS(1528), + [anon_sym_PERCENT] = ACTIONS(1528), + [anon_sym_CARET] = ACTIONS(1528), + [anon_sym_BANG] = ACTIONS(1528), + [anon_sym_AMP] = ACTIONS(1528), + [anon_sym_PIPE] = ACTIONS(1528), + [anon_sym_AMP_AMP] = ACTIONS(1526), + [anon_sym_PIPE_PIPE] = ACTIONS(1526), + [anon_sym_LT_LT] = ACTIONS(1528), + [anon_sym_GT_GT] = ACTIONS(1528), + [anon_sym_PLUS_EQ] = ACTIONS(1526), + [anon_sym_DASH_EQ] = ACTIONS(1526), + [anon_sym_STAR_EQ] = ACTIONS(1526), + [anon_sym_SLASH_EQ] = ACTIONS(1526), + [anon_sym_PERCENT_EQ] = ACTIONS(1526), + [anon_sym_CARET_EQ] = ACTIONS(1526), + [anon_sym_AMP_EQ] = ACTIONS(1526), + [anon_sym_PIPE_EQ] = ACTIONS(1526), + [anon_sym_LT_LT_EQ] = ACTIONS(1526), + [anon_sym_GT_GT_EQ] = ACTIONS(1526), + [anon_sym_EQ] = ACTIONS(1528), + [anon_sym_EQ_EQ] = ACTIONS(1526), + [anon_sym_BANG_EQ] = ACTIONS(1526), + [anon_sym_GT] = ACTIONS(1528), + [anon_sym_LT] = ACTIONS(1528), + [anon_sym_GT_EQ] = ACTIONS(1526), + [anon_sym_LT_EQ] = ACTIONS(1526), + [anon_sym_DOT] = ACTIONS(1528), + [anon_sym_DOT_DOT] = ACTIONS(1528), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1526), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1526), + [anon_sym_COLON_COLON] = ACTIONS(1526), + [anon_sym_POUND] = ACTIONS(1526), + [anon_sym_SQUOTE] = ACTIONS(1528), + [anon_sym_as] = ACTIONS(1528), + [anon_sym_async] = ACTIONS(1528), + [anon_sym_break] = ACTIONS(1528), + [anon_sym_const] = ACTIONS(1528), + [anon_sym_continue] = ACTIONS(1528), + [anon_sym_default] = ACTIONS(1528), + [anon_sym_enum] = ACTIONS(1528), + [anon_sym_fn] = ACTIONS(1528), + [anon_sym_for] = ACTIONS(1528), + [anon_sym_gen] = ACTIONS(1528), + [anon_sym_if] = ACTIONS(1528), + [anon_sym_impl] = ACTIONS(1528), + [anon_sym_let] = ACTIONS(1528), + [anon_sym_loop] = ACTIONS(1528), + [anon_sym_match] = ACTIONS(1528), + [anon_sym_mod] = ACTIONS(1528), + [anon_sym_pub] = ACTIONS(1528), + [anon_sym_return] = ACTIONS(1528), + [anon_sym_static] = ACTIONS(1528), + [anon_sym_struct] = ACTIONS(1528), + [anon_sym_trait] = ACTIONS(1528), + [anon_sym_type] = ACTIONS(1528), + [anon_sym_union] = ACTIONS(1528), + [anon_sym_unsafe] = ACTIONS(1528), + [anon_sym_use] = ACTIONS(1528), + [anon_sym_while] = ACTIONS(1528), + [anon_sym_extern] = ACTIONS(1528), + [anon_sym_safe] = ACTIONS(1528), + [anon_sym_yield] = ACTIONS(1528), + [anon_sym_move] = ACTIONS(1528), + [anon_sym_try] = ACTIONS(1528), + [sym_integer_literal] = ACTIONS(1526), + [aux_sym_string_literal_token1] = ACTIONS(1526), + [sym_char_literal] = ACTIONS(1526), + [anon_sym_true] = ACTIONS(1528), + [anon_sym_false] = ACTIONS(1528), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1528), + [sym_super] = ACTIONS(1528), + [sym_crate] = ACTIONS(1528), + [sym_metavariable] = ACTIONS(1526), + [sym__raw_string_literal_start] = ACTIONS(1526), + [sym_float_literal] = ACTIONS(1526), }, [STATE(419)] = { [sym_line_comment] = STATE(419), [sym_block_comment] = STATE(419), - [sym_identifier] = ACTIONS(1503), - [anon_sym_SEMI] = ACTIONS(1431), - [anon_sym_macro_rules_BANG] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(1431), - [anon_sym_LBRACK] = ACTIONS(1431), - [anon_sym_LBRACE] = ACTIONS(1501), - [anon_sym_RBRACE] = ACTIONS(1501), - [anon_sym_PLUS] = ACTIONS(1429), - [anon_sym_STAR] = ACTIONS(1429), - [anon_sym_QMARK] = ACTIONS(1431), - [anon_sym_u8] = ACTIONS(1503), - [anon_sym_i8] = ACTIONS(1503), - [anon_sym_u16] = ACTIONS(1503), - [anon_sym_i16] = ACTIONS(1503), - [anon_sym_u32] = ACTIONS(1503), - [anon_sym_i32] = ACTIONS(1503), - [anon_sym_u64] = ACTIONS(1503), - [anon_sym_i64] = ACTIONS(1503), - [anon_sym_u128] = ACTIONS(1503), - [anon_sym_i128] = ACTIONS(1503), - [anon_sym_isize] = ACTIONS(1503), - [anon_sym_usize] = ACTIONS(1503), - [anon_sym_f32] = ACTIONS(1503), - [anon_sym_f64] = ACTIONS(1503), - [anon_sym_bool] = ACTIONS(1503), - [anon_sym_str] = ACTIONS(1503), - [anon_sym_char] = ACTIONS(1503), - [anon_sym_DASH] = ACTIONS(1429), - [anon_sym_SLASH] = ACTIONS(1429), - [anon_sym_PERCENT] = ACTIONS(1429), - [anon_sym_CARET] = ACTIONS(1429), - [anon_sym_BANG] = ACTIONS(1503), - [anon_sym_AMP] = ACTIONS(1429), - [anon_sym_PIPE] = ACTIONS(1429), - [anon_sym_AMP_AMP] = ACTIONS(1431), - [anon_sym_PIPE_PIPE] = ACTIONS(1431), - [anon_sym_LT_LT] = ACTIONS(1429), - [anon_sym_GT_GT] = ACTIONS(1429), - [anon_sym_PLUS_EQ] = ACTIONS(1431), - [anon_sym_DASH_EQ] = ACTIONS(1431), - [anon_sym_STAR_EQ] = ACTIONS(1431), - [anon_sym_SLASH_EQ] = ACTIONS(1431), - [anon_sym_PERCENT_EQ] = ACTIONS(1431), - [anon_sym_CARET_EQ] = ACTIONS(1431), - [anon_sym_AMP_EQ] = ACTIONS(1431), - [anon_sym_PIPE_EQ] = ACTIONS(1431), - [anon_sym_LT_LT_EQ] = ACTIONS(1431), - [anon_sym_GT_GT_EQ] = ACTIONS(1431), - [anon_sym_EQ] = ACTIONS(1429), - [anon_sym_EQ_EQ] = ACTIONS(1431), - [anon_sym_BANG_EQ] = ACTIONS(1431), - [anon_sym_GT] = ACTIONS(1429), - [anon_sym_LT] = ACTIONS(1429), - [anon_sym_GT_EQ] = ACTIONS(1431), - [anon_sym_LT_EQ] = ACTIONS(1431), - [anon_sym_DOT] = ACTIONS(1429), - [anon_sym_DOT_DOT] = ACTIONS(1429), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1431), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1431), - [anon_sym_COLON_COLON] = ACTIONS(1501), - [anon_sym_POUND] = ACTIONS(1501), - [anon_sym_SQUOTE] = ACTIONS(1503), - [anon_sym_as] = ACTIONS(1429), - [anon_sym_async] = ACTIONS(1503), - [anon_sym_break] = ACTIONS(1503), - [anon_sym_const] = ACTIONS(1503), - [anon_sym_continue] = ACTIONS(1503), - [anon_sym_default] = ACTIONS(1503), - [anon_sym_enum] = ACTIONS(1503), - [anon_sym_fn] = ACTIONS(1503), - [anon_sym_for] = ACTIONS(1503), - [anon_sym_gen] = ACTIONS(1503), - [anon_sym_if] = ACTIONS(1503), - [anon_sym_impl] = ACTIONS(1503), - [anon_sym_let] = ACTIONS(1503), - [anon_sym_loop] = ACTIONS(1503), - [anon_sym_match] = ACTIONS(1503), - [anon_sym_mod] = ACTIONS(1503), - [anon_sym_pub] = ACTIONS(1503), - [anon_sym_return] = ACTIONS(1503), - [anon_sym_static] = ACTIONS(1503), - [anon_sym_struct] = ACTIONS(1503), - [anon_sym_trait] = ACTIONS(1503), - [anon_sym_type] = ACTIONS(1503), - [anon_sym_union] = ACTIONS(1503), - [anon_sym_unsafe] = ACTIONS(1503), - [anon_sym_use] = ACTIONS(1503), - [anon_sym_while] = ACTIONS(1503), - [anon_sym_extern] = ACTIONS(1503), - [anon_sym_yield] = ACTIONS(1503), - [anon_sym_move] = ACTIONS(1503), - [anon_sym_try] = ACTIONS(1503), - [sym_integer_literal] = ACTIONS(1501), - [aux_sym_string_literal_token1] = ACTIONS(1501), - [sym_char_literal] = ACTIONS(1501), - [anon_sym_true] = ACTIONS(1503), - [anon_sym_false] = ACTIONS(1503), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1503), - [sym_super] = ACTIONS(1503), - [sym_crate] = ACTIONS(1503), - [sym_metavariable] = ACTIONS(1501), - [sym__raw_string_literal_start] = ACTIONS(1501), - [sym_float_literal] = ACTIONS(1501), + [ts_builtin_sym_end] = ACTIONS(1530), + [sym_identifier] = ACTIONS(1532), + [anon_sym_SEMI] = ACTIONS(1530), + [anon_sym_macro_rules_BANG] = ACTIONS(1530), + [anon_sym_LPAREN] = ACTIONS(1530), + [anon_sym_LBRACK] = ACTIONS(1530), + [anon_sym_LBRACE] = ACTIONS(1530), + [anon_sym_RBRACE] = ACTIONS(1530), + [anon_sym_PLUS] = ACTIONS(1532), + [anon_sym_STAR] = ACTIONS(1532), + [anon_sym_QMARK] = ACTIONS(1530), + [anon_sym_u8] = ACTIONS(1532), + [anon_sym_i8] = ACTIONS(1532), + [anon_sym_u16] = ACTIONS(1532), + [anon_sym_i16] = ACTIONS(1532), + [anon_sym_u32] = ACTIONS(1532), + [anon_sym_i32] = ACTIONS(1532), + [anon_sym_u64] = ACTIONS(1532), + [anon_sym_i64] = ACTIONS(1532), + [anon_sym_u128] = ACTIONS(1532), + [anon_sym_i128] = ACTIONS(1532), + [anon_sym_isize] = ACTIONS(1532), + [anon_sym_usize] = ACTIONS(1532), + [anon_sym_f32] = ACTIONS(1532), + [anon_sym_f64] = ACTIONS(1532), + [anon_sym_bool] = ACTIONS(1532), + [anon_sym_str] = ACTIONS(1532), + [anon_sym_char] = ACTIONS(1532), + [anon_sym_DASH] = ACTIONS(1532), + [anon_sym_SLASH] = ACTIONS(1532), + [anon_sym_PERCENT] = ACTIONS(1532), + [anon_sym_CARET] = ACTIONS(1532), + [anon_sym_BANG] = ACTIONS(1532), + [anon_sym_AMP] = ACTIONS(1532), + [anon_sym_PIPE] = ACTIONS(1532), + [anon_sym_AMP_AMP] = ACTIONS(1530), + [anon_sym_PIPE_PIPE] = ACTIONS(1530), + [anon_sym_LT_LT] = ACTIONS(1532), + [anon_sym_GT_GT] = ACTIONS(1532), + [anon_sym_PLUS_EQ] = ACTIONS(1530), + [anon_sym_DASH_EQ] = ACTIONS(1530), + [anon_sym_STAR_EQ] = ACTIONS(1530), + [anon_sym_SLASH_EQ] = ACTIONS(1530), + [anon_sym_PERCENT_EQ] = ACTIONS(1530), + [anon_sym_CARET_EQ] = ACTIONS(1530), + [anon_sym_AMP_EQ] = ACTIONS(1530), + [anon_sym_PIPE_EQ] = ACTIONS(1530), + [anon_sym_LT_LT_EQ] = ACTIONS(1530), + [anon_sym_GT_GT_EQ] = ACTIONS(1530), + [anon_sym_EQ] = ACTIONS(1532), + [anon_sym_EQ_EQ] = ACTIONS(1530), + [anon_sym_BANG_EQ] = ACTIONS(1530), + [anon_sym_GT] = ACTIONS(1532), + [anon_sym_LT] = ACTIONS(1532), + [anon_sym_GT_EQ] = ACTIONS(1530), + [anon_sym_LT_EQ] = ACTIONS(1530), + [anon_sym_DOT] = ACTIONS(1532), + [anon_sym_DOT_DOT] = ACTIONS(1532), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1530), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1530), + [anon_sym_COLON_COLON] = ACTIONS(1530), + [anon_sym_POUND] = ACTIONS(1530), + [anon_sym_SQUOTE] = ACTIONS(1532), + [anon_sym_as] = ACTIONS(1532), + [anon_sym_async] = ACTIONS(1532), + [anon_sym_break] = ACTIONS(1532), + [anon_sym_const] = ACTIONS(1532), + [anon_sym_continue] = ACTIONS(1532), + [anon_sym_default] = ACTIONS(1532), + [anon_sym_enum] = ACTIONS(1532), + [anon_sym_fn] = ACTIONS(1532), + [anon_sym_for] = ACTIONS(1532), + [anon_sym_gen] = ACTIONS(1532), + [anon_sym_if] = ACTIONS(1532), + [anon_sym_impl] = ACTIONS(1532), + [anon_sym_let] = ACTIONS(1532), + [anon_sym_loop] = ACTIONS(1532), + [anon_sym_match] = ACTIONS(1532), + [anon_sym_mod] = ACTIONS(1532), + [anon_sym_pub] = ACTIONS(1532), + [anon_sym_return] = ACTIONS(1532), + [anon_sym_static] = ACTIONS(1532), + [anon_sym_struct] = ACTIONS(1532), + [anon_sym_trait] = ACTIONS(1532), + [anon_sym_type] = ACTIONS(1532), + [anon_sym_union] = ACTIONS(1532), + [anon_sym_unsafe] = ACTIONS(1532), + [anon_sym_use] = ACTIONS(1532), + [anon_sym_while] = ACTIONS(1532), + [anon_sym_extern] = ACTIONS(1532), + [anon_sym_safe] = ACTIONS(1532), + [anon_sym_yield] = ACTIONS(1532), + [anon_sym_move] = ACTIONS(1532), + [anon_sym_try] = ACTIONS(1532), + [sym_integer_literal] = ACTIONS(1530), + [aux_sym_string_literal_token1] = ACTIONS(1530), + [sym_char_literal] = ACTIONS(1530), + [anon_sym_true] = ACTIONS(1532), + [anon_sym_false] = ACTIONS(1532), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1532), + [sym_super] = ACTIONS(1532), + [sym_crate] = ACTIONS(1532), + [sym_metavariable] = ACTIONS(1530), + [sym__raw_string_literal_start] = ACTIONS(1530), + [sym_float_literal] = ACTIONS(1530), }, [STATE(420)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_self_parameter] = STATE(2893), - [sym_variadic_parameter] = STATE(2893), - [sym_parameter] = STATE(2893), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2803), - [sym_bracketed_type] = STATE(3644), - [sym_lifetime] = STATE(3011), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3299), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2550), - [sym_scoped_identifier] = STATE(2273), - [sym_scoped_type_identifier] = STATE(2154), - [sym_const_block] = STATE(2150), - [sym__pattern] = STATE(3345), - [sym_generic_pattern] = STATE(2150), - [sym_tuple_pattern] = STATE(2150), - [sym_slice_pattern] = STATE(2150), - [sym_tuple_struct_pattern] = STATE(2150), - [sym_struct_pattern] = STATE(2150), - [sym_remaining_field_pattern] = STATE(2150), - [sym_mut_pattern] = STATE(2150), - [sym_range_pattern] = STATE(2150), - [sym_ref_pattern] = STATE(2150), - [sym_captured_pattern] = STATE(2150), - [sym_reference_pattern] = STATE(2150), - [sym_or_pattern] = STATE(2150), - [sym__literal_pattern] = STATE(2076), - [sym_negative_literal] = STATE(2074), - [sym_string_literal] = STATE(2074), - [sym_raw_string_literal] = STATE(2074), - [sym_boolean_literal] = STATE(2074), [sym_line_comment] = STATE(420), [sym_block_comment] = STATE(420), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(1323), - [anon_sym_LPAREN] = ACTIONS(1325), - [anon_sym_LBRACK] = ACTIONS(1233), - [anon_sym_STAR] = ACTIONS(1235), - [anon_sym_QMARK] = ACTIONS(1237), - [anon_sym_u8] = ACTIONS(1329), - [anon_sym_i8] = ACTIONS(1329), - [anon_sym_u16] = ACTIONS(1329), - [anon_sym_i16] = ACTIONS(1329), - [anon_sym_u32] = ACTIONS(1329), - [anon_sym_i32] = ACTIONS(1329), - [anon_sym_u64] = ACTIONS(1329), - [anon_sym_i64] = ACTIONS(1329), - [anon_sym_u128] = ACTIONS(1329), - [anon_sym_i128] = ACTIONS(1329), - [anon_sym_isize] = ACTIONS(1329), - [anon_sym_usize] = ACTIONS(1329), - [anon_sym_f32] = ACTIONS(1329), - [anon_sym_f64] = ACTIONS(1329), - [anon_sym_bool] = ACTIONS(1329), - [anon_sym_str] = ACTIONS(1329), - [anon_sym_char] = ACTIONS(1329), - [anon_sym_DASH] = ACTIONS(1241), - [anon_sym_BANG] = ACTIONS(1243), - [anon_sym_AMP] = ACTIONS(1331), - [anon_sym_PIPE] = ACTIONS(1247), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1533), - [anon_sym_DOT_DOT] = ACTIONS(1251), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1253), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1255), - [anon_sym_COLON_COLON] = ACTIONS(1337), - [anon_sym_SQUOTE] = ACTIONS(1263), - [anon_sym_async] = ACTIONS(1265), - [anon_sym_const] = ACTIONS(1267), - [anon_sym_default] = ACTIONS(1339), - [anon_sym_fn] = ACTIONS(1271), - [anon_sym_for] = ACTIONS(1273), - [anon_sym_gen] = ACTIONS(1341), - [anon_sym_impl] = ACTIONS(1277), - [anon_sym_union] = ACTIONS(1341), - [anon_sym_unsafe] = ACTIONS(1265), - [anon_sym_extern] = ACTIONS(1279), - [anon_sym_ref] = ACTIONS(1281), - [anon_sym_dyn] = ACTIONS(1283), - [sym_mutable_specifier] = ACTIONS(1285), - [sym_integer_literal] = ACTIONS(1287), - [aux_sym_string_literal_token1] = ACTIONS(1289), - [sym_char_literal] = ACTIONS(1287), - [anon_sym_true] = ACTIONS(1291), - [anon_sym_false] = ACTIONS(1291), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1343), - [sym_super] = ACTIONS(1345), - [sym_crate] = ACTIONS(1345), - [sym_metavariable] = ACTIONS(1347), - [sym__raw_string_literal_start] = ACTIONS(1299), - [sym_float_literal] = ACTIONS(1287), + [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(1536), + [anon_sym_STAR] = ACTIONS(1536), + [anon_sym_QMARK] = ACTIONS(1534), + [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(1536), + [anon_sym_PERCENT] = ACTIONS(1536), + [anon_sym_CARET] = ACTIONS(1536), + [anon_sym_BANG] = ACTIONS(1536), + [anon_sym_AMP] = ACTIONS(1536), + [anon_sym_PIPE] = ACTIONS(1536), + [anon_sym_AMP_AMP] = ACTIONS(1534), + [anon_sym_PIPE_PIPE] = ACTIONS(1534), + [anon_sym_LT_LT] = ACTIONS(1536), + [anon_sym_GT_GT] = ACTIONS(1536), + [anon_sym_PLUS_EQ] = ACTIONS(1534), + [anon_sym_DASH_EQ] = ACTIONS(1534), + [anon_sym_STAR_EQ] = ACTIONS(1534), + [anon_sym_SLASH_EQ] = ACTIONS(1534), + [anon_sym_PERCENT_EQ] = ACTIONS(1534), + [anon_sym_CARET_EQ] = ACTIONS(1534), + [anon_sym_AMP_EQ] = ACTIONS(1534), + [anon_sym_PIPE_EQ] = ACTIONS(1534), + [anon_sym_LT_LT_EQ] = ACTIONS(1534), + [anon_sym_GT_GT_EQ] = ACTIONS(1534), + [anon_sym_EQ] = ACTIONS(1536), + [anon_sym_EQ_EQ] = ACTIONS(1534), + [anon_sym_BANG_EQ] = ACTIONS(1534), + [anon_sym_GT] = ACTIONS(1536), + [anon_sym_LT] = ACTIONS(1536), + [anon_sym_GT_EQ] = ACTIONS(1534), + [anon_sym_LT_EQ] = ACTIONS(1534), + [anon_sym_DOT] = ACTIONS(1536), + [anon_sym_DOT_DOT] = ACTIONS(1536), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1534), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1534), + [anon_sym_COLON_COLON] = ACTIONS(1534), + [anon_sym_POUND] = ACTIONS(1534), + [anon_sym_SQUOTE] = ACTIONS(1536), + [anon_sym_as] = ACTIONS(1536), + [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_safe] = 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), }, [STATE(421)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_self_parameter] = STATE(3081), - [sym_variadic_parameter] = STATE(3081), - [sym_parameter] = STATE(3081), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2725), - [sym_bracketed_type] = STATE(3644), - [sym_lifetime] = STATE(3011), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3299), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2550), - [sym_scoped_identifier] = STATE(2273), - [sym_scoped_type_identifier] = STATE(2154), - [sym_const_block] = STATE(2150), - [sym__pattern] = STATE(3345), - [sym_generic_pattern] = STATE(2150), - [sym_tuple_pattern] = STATE(2150), - [sym_slice_pattern] = STATE(2150), - [sym_tuple_struct_pattern] = STATE(2150), - [sym_struct_pattern] = STATE(2150), - [sym_remaining_field_pattern] = STATE(2150), - [sym_mut_pattern] = STATE(2150), - [sym_range_pattern] = STATE(2150), - [sym_ref_pattern] = STATE(2150), - [sym_captured_pattern] = STATE(2150), - [sym_reference_pattern] = STATE(2150), - [sym_or_pattern] = STATE(2150), - [sym__literal_pattern] = STATE(2076), - [sym_negative_literal] = STATE(2074), - [sym_string_literal] = STATE(2074), - [sym_raw_string_literal] = STATE(2074), - [sym_boolean_literal] = STATE(2074), [sym_line_comment] = STATE(421), [sym_block_comment] = STATE(421), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(1323), - [anon_sym_LPAREN] = ACTIONS(1325), - [anon_sym_LBRACK] = ACTIONS(1233), - [anon_sym_STAR] = ACTIONS(1235), - [anon_sym_QMARK] = ACTIONS(1237), - [anon_sym_u8] = ACTIONS(1329), - [anon_sym_i8] = ACTIONS(1329), - [anon_sym_u16] = ACTIONS(1329), - [anon_sym_i16] = ACTIONS(1329), - [anon_sym_u32] = ACTIONS(1329), - [anon_sym_i32] = ACTIONS(1329), - [anon_sym_u64] = ACTIONS(1329), - [anon_sym_i64] = ACTIONS(1329), - [anon_sym_u128] = ACTIONS(1329), - [anon_sym_i128] = ACTIONS(1329), - [anon_sym_isize] = ACTIONS(1329), - [anon_sym_usize] = ACTIONS(1329), - [anon_sym_f32] = ACTIONS(1329), - [anon_sym_f64] = ACTIONS(1329), - [anon_sym_bool] = ACTIONS(1329), - [anon_sym_str] = ACTIONS(1329), - [anon_sym_char] = ACTIONS(1329), - [anon_sym_DASH] = ACTIONS(1241), - [anon_sym_BANG] = ACTIONS(1243), - [anon_sym_AMP] = ACTIONS(1331), - [anon_sym_PIPE] = ACTIONS(1247), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1535), - [anon_sym_DOT_DOT] = ACTIONS(1251), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1253), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1255), - [anon_sym_COLON_COLON] = ACTIONS(1337), - [anon_sym_SQUOTE] = ACTIONS(1263), - [anon_sym_async] = ACTIONS(1265), - [anon_sym_const] = ACTIONS(1267), - [anon_sym_default] = ACTIONS(1339), - [anon_sym_fn] = ACTIONS(1271), - [anon_sym_for] = ACTIONS(1273), - [anon_sym_gen] = ACTIONS(1341), - [anon_sym_impl] = ACTIONS(1277), - [anon_sym_union] = ACTIONS(1341), - [anon_sym_unsafe] = ACTIONS(1265), - [anon_sym_extern] = ACTIONS(1279), - [anon_sym_ref] = ACTIONS(1281), - [anon_sym_dyn] = ACTIONS(1283), - [sym_mutable_specifier] = ACTIONS(1285), - [sym_integer_literal] = ACTIONS(1287), - [aux_sym_string_literal_token1] = ACTIONS(1289), - [sym_char_literal] = ACTIONS(1287), - [anon_sym_true] = ACTIONS(1291), - [anon_sym_false] = ACTIONS(1291), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1343), - [sym_super] = ACTIONS(1345), - [sym_crate] = ACTIONS(1345), - [sym_metavariable] = ACTIONS(1347), - [sym__raw_string_literal_start] = ACTIONS(1299), - [sym_float_literal] = ACTIONS(1287), + [sym_identifier] = ACTIONS(1468), + [anon_sym_SEMI] = ACTIONS(1470), + [anon_sym_macro_rules_BANG] = ACTIONS(1466), + [anon_sym_LPAREN] = ACTIONS(1470), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_LBRACE] = ACTIONS(1466), + [anon_sym_RBRACE] = ACTIONS(1466), + [anon_sym_PLUS] = ACTIONS(1472), + [anon_sym_STAR] = ACTIONS(1472), + [anon_sym_QMARK] = ACTIONS(1470), + [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(1472), + [anon_sym_SLASH] = ACTIONS(1472), + [anon_sym_PERCENT] = ACTIONS(1472), + [anon_sym_CARET] = ACTIONS(1472), + [anon_sym_BANG] = ACTIONS(1468), + [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(1466), + [anon_sym_POUND] = ACTIONS(1466), + [anon_sym_SQUOTE] = ACTIONS(1468), + [anon_sym_as] = ACTIONS(1472), + [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_safe] = 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), }, [STATE(422)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_self_parameter] = STATE(3001), - [sym_variadic_parameter] = STATE(3001), - [sym_parameter] = STATE(3001), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2590), - [sym_bracketed_type] = STATE(3644), - [sym_lifetime] = STATE(3011), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3299), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2550), - [sym_scoped_identifier] = STATE(2273), - [sym_scoped_type_identifier] = STATE(2154), - [sym_const_block] = STATE(2150), - [sym__pattern] = STATE(3345), - [sym_generic_pattern] = STATE(2150), - [sym_tuple_pattern] = STATE(2150), - [sym_slice_pattern] = STATE(2150), - [sym_tuple_struct_pattern] = STATE(2150), - [sym_struct_pattern] = STATE(2150), - [sym_remaining_field_pattern] = STATE(2150), - [sym_mut_pattern] = STATE(2150), - [sym_range_pattern] = STATE(2150), - [sym_ref_pattern] = STATE(2150), - [sym_captured_pattern] = STATE(2150), - [sym_reference_pattern] = STATE(2150), - [sym_or_pattern] = STATE(2150), - [sym__literal_pattern] = STATE(2076), - [sym_negative_literal] = STATE(2074), - [sym_string_literal] = STATE(2074), - [sym_raw_string_literal] = STATE(2074), - [sym_boolean_literal] = STATE(2074), + [sym_function_modifiers] = STATE(3591), + [sym_removed_trait_bound] = STATE(2069), + [sym_self_parameter] = STATE(3404), + [sym_variadic_parameter] = STATE(3404), + [sym_parameter] = STATE(3404), + [sym_extern_modifier] = STATE(2373), + [sym__type] = STATE(3146), + [sym_bracketed_type] = STATE(3673), + [sym_lifetime] = STATE(3067), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1591), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2022), + [sym_generic_type_with_turbofish] = STATE(3329), + [sym_bounded_type] = STATE(2069), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2552), + [sym_scoped_identifier] = STATE(2299), + [sym_scoped_type_identifier] = STATE(2203), + [sym_const_block] = STATE(2163), + [sym__pattern] = STATE(3292), + [sym_generic_pattern] = STATE(2163), + [sym_tuple_pattern] = STATE(2163), + [sym_slice_pattern] = STATE(2163), + [sym_tuple_struct_pattern] = STATE(2163), + [sym_struct_pattern] = STATE(2163), + [sym_remaining_field_pattern] = STATE(2163), + [sym_mut_pattern] = STATE(2163), + [sym_range_pattern] = STATE(2163), + [sym_ref_pattern] = STATE(2163), + [sym_captured_pattern] = STATE(2163), + [sym_reference_pattern] = STATE(2163), + [sym_or_pattern] = STATE(2163), + [sym__literal_pattern] = STATE(2098), + [sym_negative_literal] = STATE(2095), + [sym_string_literal] = STATE(2095), + [sym_raw_string_literal] = STATE(2095), + [sym_boolean_literal] = STATE(2095), [sym_line_comment] = STATE(422), [sym_block_comment] = STATE(422), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(1323), - [anon_sym_LPAREN] = ACTIONS(1325), - [anon_sym_LBRACK] = ACTIONS(1233), - [anon_sym_STAR] = ACTIONS(1235), - [anon_sym_QMARK] = ACTIONS(1237), - [anon_sym_u8] = ACTIONS(1329), - [anon_sym_i8] = ACTIONS(1329), - [anon_sym_u16] = ACTIONS(1329), - [anon_sym_i16] = ACTIONS(1329), - [anon_sym_u32] = ACTIONS(1329), - [anon_sym_i32] = ACTIONS(1329), - [anon_sym_u64] = ACTIONS(1329), - [anon_sym_i64] = ACTIONS(1329), - [anon_sym_u128] = ACTIONS(1329), - [anon_sym_i128] = ACTIONS(1329), - [anon_sym_isize] = ACTIONS(1329), - [anon_sym_usize] = ACTIONS(1329), - [anon_sym_f32] = ACTIONS(1329), - [anon_sym_f64] = ACTIONS(1329), - [anon_sym_bool] = ACTIONS(1329), - [anon_sym_str] = ACTIONS(1329), - [anon_sym_char] = ACTIONS(1329), - [anon_sym_DASH] = ACTIONS(1241), - [anon_sym_BANG] = ACTIONS(1243), - [anon_sym_AMP] = ACTIONS(1331), - [anon_sym_PIPE] = ACTIONS(1247), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1537), - [anon_sym_DOT_DOT] = ACTIONS(1251), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1253), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1255), - [anon_sym_COLON_COLON] = ACTIONS(1337), - [anon_sym_SQUOTE] = ACTIONS(1263), - [anon_sym_async] = ACTIONS(1265), - [anon_sym_const] = ACTIONS(1267), - [anon_sym_default] = ACTIONS(1339), - [anon_sym_fn] = ACTIONS(1271), - [anon_sym_for] = ACTIONS(1273), - [anon_sym_gen] = ACTIONS(1341), - [anon_sym_impl] = ACTIONS(1277), - [anon_sym_union] = ACTIONS(1341), - [anon_sym_unsafe] = ACTIONS(1265), - [anon_sym_extern] = ACTIONS(1279), - [anon_sym_ref] = ACTIONS(1281), - [anon_sym_dyn] = ACTIONS(1283), - [sym_mutable_specifier] = ACTIONS(1285), - [sym_integer_literal] = ACTIONS(1287), - [aux_sym_string_literal_token1] = ACTIONS(1289), - [sym_char_literal] = ACTIONS(1287), - [anon_sym_true] = ACTIONS(1291), - [anon_sym_false] = ACTIONS(1291), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1343), - [sym_super] = ACTIONS(1345), - [sym_crate] = ACTIONS(1345), - [sym_metavariable] = ACTIONS(1347), - [sym__raw_string_literal_start] = ACTIONS(1299), - [sym_float_literal] = ACTIONS(1287), + [aux_sym_function_modifiers_repeat1] = STATE(2244), + [sym_identifier] = ACTIONS(1306), + [anon_sym_LPAREN] = ACTIONS(1308), + [anon_sym_LBRACK] = ACTIONS(1238), + [anon_sym_STAR] = ACTIONS(1240), + [anon_sym_QMARK] = ACTIONS(1242), + [anon_sym_u8] = ACTIONS(1312), + [anon_sym_i8] = ACTIONS(1312), + [anon_sym_u16] = ACTIONS(1312), + [anon_sym_i16] = ACTIONS(1312), + [anon_sym_u32] = ACTIONS(1312), + [anon_sym_i32] = ACTIONS(1312), + [anon_sym_u64] = ACTIONS(1312), + [anon_sym_i64] = ACTIONS(1312), + [anon_sym_u128] = ACTIONS(1312), + [anon_sym_i128] = ACTIONS(1312), + [anon_sym_isize] = ACTIONS(1312), + [anon_sym_usize] = ACTIONS(1312), + [anon_sym_f32] = ACTIONS(1312), + [anon_sym_f64] = ACTIONS(1312), + [anon_sym_bool] = ACTIONS(1312), + [anon_sym_str] = ACTIONS(1312), + [anon_sym_char] = ACTIONS(1312), + [anon_sym_DASH] = ACTIONS(1246), + [anon_sym_BANG] = ACTIONS(1248), + [anon_sym_AMP] = ACTIONS(1314), + [anon_sym_PIPE] = ACTIONS(1252), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1538), + [anon_sym_DOT_DOT] = ACTIONS(1256), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1258), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1260), + [anon_sym_COLON_COLON] = ACTIONS(1320), + [anon_sym_SQUOTE] = ACTIONS(1268), + [anon_sym_async] = ACTIONS(1270), + [anon_sym_const] = ACTIONS(1272), + [anon_sym_default] = ACTIONS(1322), + [anon_sym_fn] = ACTIONS(1276), + [anon_sym_for] = ACTIONS(1278), + [anon_sym_gen] = ACTIONS(1324), + [anon_sym_impl] = ACTIONS(1282), + [anon_sym_union] = ACTIONS(1324), + [anon_sym_unsafe] = ACTIONS(1270), + [anon_sym_extern] = ACTIONS(1284), + [anon_sym_safe] = ACTIONS(1270), + [anon_sym_ref] = ACTIONS(1286), + [anon_sym_dyn] = ACTIONS(1288), + [sym_mutable_specifier] = ACTIONS(1290), + [sym_integer_literal] = ACTIONS(1292), + [aux_sym_string_literal_token1] = ACTIONS(1294), + [sym_char_literal] = ACTIONS(1292), + [anon_sym_true] = ACTIONS(1296), + [anon_sym_false] = ACTIONS(1296), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1326), + [sym_super] = ACTIONS(1328), + [sym_crate] = ACTIONS(1328), + [sym_metavariable] = ACTIONS(1330), + [sym__raw_string_literal_start] = ACTIONS(1304), + [sym_float_literal] = ACTIONS(1292), }, [STATE(423)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_self_parameter] = STATE(3328), - [sym_variadic_parameter] = STATE(3328), - [sym_parameter] = STATE(3328), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(3079), - [sym_bracketed_type] = STATE(3644), - [sym_lifetime] = STATE(3011), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3299), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2550), - [sym_scoped_identifier] = STATE(2273), - [sym_scoped_type_identifier] = STATE(2154), - [sym_const_block] = STATE(2150), - [sym__pattern] = STATE(3345), - [sym_generic_pattern] = STATE(2150), - [sym_tuple_pattern] = STATE(2150), - [sym_slice_pattern] = STATE(2150), - [sym_tuple_struct_pattern] = STATE(2150), - [sym_struct_pattern] = STATE(2150), - [sym_remaining_field_pattern] = STATE(2150), - [sym_mut_pattern] = STATE(2150), - [sym_range_pattern] = STATE(2150), - [sym_ref_pattern] = STATE(2150), - [sym_captured_pattern] = STATE(2150), - [sym_reference_pattern] = STATE(2150), - [sym_or_pattern] = STATE(2150), - [sym__literal_pattern] = STATE(2076), - [sym_negative_literal] = STATE(2074), - [sym_string_literal] = STATE(2074), - [sym_raw_string_literal] = STATE(2074), - [sym_boolean_literal] = STATE(2074), + [sym_function_modifiers] = STATE(3591), + [sym_removed_trait_bound] = STATE(2069), + [sym_self_parameter] = STATE(2915), + [sym_variadic_parameter] = STATE(2915), + [sym_parameter] = STATE(2915), + [sym_extern_modifier] = STATE(2373), + [sym__type] = STATE(2733), + [sym_bracketed_type] = STATE(3673), + [sym_lifetime] = STATE(3067), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1591), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2022), + [sym_generic_type_with_turbofish] = STATE(3329), + [sym_bounded_type] = STATE(2069), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2552), + [sym_scoped_identifier] = STATE(2299), + [sym_scoped_type_identifier] = STATE(2203), + [sym_const_block] = STATE(2163), + [sym__pattern] = STATE(3292), + [sym_generic_pattern] = STATE(2163), + [sym_tuple_pattern] = STATE(2163), + [sym_slice_pattern] = STATE(2163), + [sym_tuple_struct_pattern] = STATE(2163), + [sym_struct_pattern] = STATE(2163), + [sym_remaining_field_pattern] = STATE(2163), + [sym_mut_pattern] = STATE(2163), + [sym_range_pattern] = STATE(2163), + [sym_ref_pattern] = STATE(2163), + [sym_captured_pattern] = STATE(2163), + [sym_reference_pattern] = STATE(2163), + [sym_or_pattern] = STATE(2163), + [sym__literal_pattern] = STATE(2098), + [sym_negative_literal] = STATE(2095), + [sym_string_literal] = STATE(2095), + [sym_raw_string_literal] = STATE(2095), + [sym_boolean_literal] = STATE(2095), [sym_line_comment] = STATE(423), [sym_block_comment] = STATE(423), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(1323), - [anon_sym_LPAREN] = ACTIONS(1325), - [anon_sym_LBRACK] = ACTIONS(1233), - [anon_sym_STAR] = ACTIONS(1235), - [anon_sym_QMARK] = ACTIONS(1237), - [anon_sym_u8] = ACTIONS(1329), - [anon_sym_i8] = ACTIONS(1329), - [anon_sym_u16] = ACTIONS(1329), - [anon_sym_i16] = ACTIONS(1329), - [anon_sym_u32] = ACTIONS(1329), - [anon_sym_i32] = ACTIONS(1329), - [anon_sym_u64] = ACTIONS(1329), - [anon_sym_i64] = ACTIONS(1329), - [anon_sym_u128] = ACTIONS(1329), - [anon_sym_i128] = ACTIONS(1329), - [anon_sym_isize] = ACTIONS(1329), - [anon_sym_usize] = ACTIONS(1329), - [anon_sym_f32] = ACTIONS(1329), - [anon_sym_f64] = ACTIONS(1329), - [anon_sym_bool] = ACTIONS(1329), - [anon_sym_str] = ACTIONS(1329), - [anon_sym_char] = ACTIONS(1329), - [anon_sym_DASH] = ACTIONS(1241), - [anon_sym_BANG] = ACTIONS(1243), - [anon_sym_AMP] = ACTIONS(1331), - [anon_sym_PIPE] = ACTIONS(1247), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1539), - [anon_sym_DOT_DOT] = ACTIONS(1251), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1253), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1255), - [anon_sym_COLON_COLON] = ACTIONS(1337), - [anon_sym_SQUOTE] = ACTIONS(1263), - [anon_sym_async] = ACTIONS(1265), - [anon_sym_const] = ACTIONS(1267), - [anon_sym_default] = ACTIONS(1339), - [anon_sym_fn] = ACTIONS(1271), - [anon_sym_for] = ACTIONS(1273), - [anon_sym_gen] = ACTIONS(1341), - [anon_sym_impl] = ACTIONS(1277), - [anon_sym_union] = ACTIONS(1341), - [anon_sym_unsafe] = ACTIONS(1265), - [anon_sym_extern] = ACTIONS(1279), - [anon_sym_ref] = ACTIONS(1281), - [anon_sym_dyn] = ACTIONS(1283), - [sym_mutable_specifier] = ACTIONS(1285), - [sym_integer_literal] = ACTIONS(1287), - [aux_sym_string_literal_token1] = ACTIONS(1289), - [sym_char_literal] = ACTIONS(1287), - [anon_sym_true] = ACTIONS(1291), - [anon_sym_false] = ACTIONS(1291), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1343), - [sym_super] = ACTIONS(1345), - [sym_crate] = ACTIONS(1345), - [sym_metavariable] = ACTIONS(1347), - [sym__raw_string_literal_start] = ACTIONS(1299), - [sym_float_literal] = ACTIONS(1287), + [aux_sym_function_modifiers_repeat1] = STATE(2244), + [sym_identifier] = ACTIONS(1306), + [anon_sym_LPAREN] = ACTIONS(1308), + [anon_sym_LBRACK] = ACTIONS(1238), + [anon_sym_STAR] = ACTIONS(1240), + [anon_sym_QMARK] = ACTIONS(1242), + [anon_sym_u8] = ACTIONS(1312), + [anon_sym_i8] = ACTIONS(1312), + [anon_sym_u16] = ACTIONS(1312), + [anon_sym_i16] = ACTIONS(1312), + [anon_sym_u32] = ACTIONS(1312), + [anon_sym_i32] = ACTIONS(1312), + [anon_sym_u64] = ACTIONS(1312), + [anon_sym_i64] = ACTIONS(1312), + [anon_sym_u128] = ACTIONS(1312), + [anon_sym_i128] = ACTIONS(1312), + [anon_sym_isize] = ACTIONS(1312), + [anon_sym_usize] = ACTIONS(1312), + [anon_sym_f32] = ACTIONS(1312), + [anon_sym_f64] = ACTIONS(1312), + [anon_sym_bool] = ACTIONS(1312), + [anon_sym_str] = ACTIONS(1312), + [anon_sym_char] = ACTIONS(1312), + [anon_sym_DASH] = ACTIONS(1246), + [anon_sym_BANG] = ACTIONS(1248), + [anon_sym_AMP] = ACTIONS(1314), + [anon_sym_PIPE] = ACTIONS(1252), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1540), + [anon_sym_DOT_DOT] = ACTIONS(1256), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1258), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1260), + [anon_sym_COLON_COLON] = ACTIONS(1320), + [anon_sym_SQUOTE] = ACTIONS(1268), + [anon_sym_async] = ACTIONS(1270), + [anon_sym_const] = ACTIONS(1272), + [anon_sym_default] = ACTIONS(1322), + [anon_sym_fn] = ACTIONS(1276), + [anon_sym_for] = ACTIONS(1278), + [anon_sym_gen] = ACTIONS(1324), + [anon_sym_impl] = ACTIONS(1282), + [anon_sym_union] = ACTIONS(1324), + [anon_sym_unsafe] = ACTIONS(1270), + [anon_sym_extern] = ACTIONS(1284), + [anon_sym_safe] = ACTIONS(1270), + [anon_sym_ref] = ACTIONS(1286), + [anon_sym_dyn] = ACTIONS(1288), + [sym_mutable_specifier] = ACTIONS(1290), + [sym_integer_literal] = ACTIONS(1292), + [aux_sym_string_literal_token1] = ACTIONS(1294), + [sym_char_literal] = ACTIONS(1292), + [anon_sym_true] = ACTIONS(1296), + [anon_sym_false] = ACTIONS(1296), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1326), + [sym_super] = ACTIONS(1328), + [sym_crate] = ACTIONS(1328), + [sym_metavariable] = ACTIONS(1330), + [sym__raw_string_literal_start] = ACTIONS(1304), + [sym_float_literal] = ACTIONS(1292), }, [STATE(424)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2856), - [sym_bracketed_type] = STATE(3653), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3387), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2544), - [sym_scoped_identifier] = STATE(2237), - [sym_scoped_type_identifier] = STATE(2154), - [sym_const_block] = STATE(2150), - [sym__pattern] = STATE(2787), - [sym_generic_pattern] = STATE(2150), - [sym_tuple_pattern] = STATE(2150), - [sym_slice_pattern] = STATE(2150), - [sym_tuple_struct_pattern] = STATE(2150), - [sym_struct_pattern] = STATE(2150), - [sym_remaining_field_pattern] = STATE(2150), - [sym_mut_pattern] = STATE(2150), - [sym_range_pattern] = STATE(2150), - [sym_ref_pattern] = STATE(2150), - [sym_captured_pattern] = STATE(2150), - [sym_reference_pattern] = STATE(2150), - [sym_or_pattern] = STATE(2150), - [sym__literal_pattern] = STATE(2076), - [sym_negative_literal] = STATE(2074), - [sym_string_literal] = STATE(2074), - [sym_raw_string_literal] = STATE(2074), - [sym_boolean_literal] = STATE(2074), + [sym_function_modifiers] = STATE(3591), + [sym_removed_trait_bound] = STATE(2069), + [sym_self_parameter] = STATE(2884), + [sym_variadic_parameter] = STATE(2884), + [sym_parameter] = STATE(2884), + [sym_extern_modifier] = STATE(2373), + [sym__type] = STATE(2726), + [sym_bracketed_type] = STATE(3673), + [sym_lifetime] = STATE(3067), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1591), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2022), + [sym_generic_type_with_turbofish] = STATE(3329), + [sym_bounded_type] = STATE(2069), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2552), + [sym_scoped_identifier] = STATE(2299), + [sym_scoped_type_identifier] = STATE(2203), + [sym_const_block] = STATE(2163), + [sym__pattern] = STATE(3292), + [sym_generic_pattern] = STATE(2163), + [sym_tuple_pattern] = STATE(2163), + [sym_slice_pattern] = STATE(2163), + [sym_tuple_struct_pattern] = STATE(2163), + [sym_struct_pattern] = STATE(2163), + [sym_remaining_field_pattern] = STATE(2163), + [sym_mut_pattern] = STATE(2163), + [sym_range_pattern] = STATE(2163), + [sym_ref_pattern] = STATE(2163), + [sym_captured_pattern] = STATE(2163), + [sym_reference_pattern] = STATE(2163), + [sym_or_pattern] = STATE(2163), + [sym__literal_pattern] = STATE(2098), + [sym_negative_literal] = STATE(2095), + [sym_string_literal] = STATE(2095), + [sym_raw_string_literal] = STATE(2095), + [sym_boolean_literal] = STATE(2095), [sym_line_comment] = STATE(424), [sym_block_comment] = STATE(424), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(1541), - [anon_sym_LPAREN] = ACTIONS(1543), - [anon_sym_LBRACK] = ACTIONS(1233), - [anon_sym_RBRACK] = ACTIONS(1545), - [anon_sym_STAR] = ACTIONS(1235), - [anon_sym_QMARK] = ACTIONS(1237), - [anon_sym_u8] = ACTIONS(1547), - [anon_sym_i8] = ACTIONS(1547), - [anon_sym_u16] = ACTIONS(1547), - [anon_sym_i16] = ACTIONS(1547), - [anon_sym_u32] = ACTIONS(1547), - [anon_sym_i32] = ACTIONS(1547), - [anon_sym_u64] = ACTIONS(1547), - [anon_sym_i64] = ACTIONS(1547), - [anon_sym_u128] = ACTIONS(1547), - [anon_sym_i128] = ACTIONS(1547), - [anon_sym_isize] = ACTIONS(1547), - [anon_sym_usize] = ACTIONS(1547), - [anon_sym_f32] = ACTIONS(1547), - [anon_sym_f64] = ACTIONS(1547), - [anon_sym_bool] = ACTIONS(1547), - [anon_sym_str] = ACTIONS(1547), - [anon_sym_char] = ACTIONS(1547), - [anon_sym_DASH] = ACTIONS(1241), - [anon_sym_BANG] = ACTIONS(1243), - [anon_sym_AMP] = ACTIONS(1549), - [anon_sym_PIPE] = ACTIONS(1247), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1451), - [anon_sym_DOT_DOT] = ACTIONS(1251), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1255), - [anon_sym_COMMA] = ACTIONS(1551), - [anon_sym_COLON_COLON] = ACTIONS(1553), - [anon_sym_SQUOTE] = ACTIONS(1263), - [anon_sym_async] = ACTIONS(1265), - [anon_sym_const] = ACTIONS(1267), - [anon_sym_default] = ACTIONS(1555), - [anon_sym_fn] = ACTIONS(1271), - [anon_sym_for] = ACTIONS(1273), - [anon_sym_gen] = ACTIONS(1557), - [anon_sym_impl] = ACTIONS(1277), - [anon_sym_union] = ACTIONS(1557), - [anon_sym_unsafe] = ACTIONS(1265), - [anon_sym_extern] = ACTIONS(1279), - [anon_sym_ref] = ACTIONS(1281), - [anon_sym_dyn] = ACTIONS(1283), - [sym_mutable_specifier] = ACTIONS(1457), - [sym_integer_literal] = ACTIONS(1287), - [aux_sym_string_literal_token1] = ACTIONS(1289), - [sym_char_literal] = ACTIONS(1287), - [anon_sym_true] = ACTIONS(1291), - [anon_sym_false] = ACTIONS(1291), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1559), - [sym_super] = ACTIONS(1559), - [sym_crate] = ACTIONS(1559), - [sym_metavariable] = ACTIONS(1561), - [sym__raw_string_literal_start] = ACTIONS(1299), - [sym_float_literal] = ACTIONS(1287), + [aux_sym_function_modifiers_repeat1] = STATE(2244), + [sym_identifier] = ACTIONS(1306), + [anon_sym_LPAREN] = ACTIONS(1308), + [anon_sym_LBRACK] = ACTIONS(1238), + [anon_sym_STAR] = ACTIONS(1240), + [anon_sym_QMARK] = ACTIONS(1242), + [anon_sym_u8] = ACTIONS(1312), + [anon_sym_i8] = ACTIONS(1312), + [anon_sym_u16] = ACTIONS(1312), + [anon_sym_i16] = ACTIONS(1312), + [anon_sym_u32] = ACTIONS(1312), + [anon_sym_i32] = ACTIONS(1312), + [anon_sym_u64] = ACTIONS(1312), + [anon_sym_i64] = ACTIONS(1312), + [anon_sym_u128] = ACTIONS(1312), + [anon_sym_i128] = ACTIONS(1312), + [anon_sym_isize] = ACTIONS(1312), + [anon_sym_usize] = ACTIONS(1312), + [anon_sym_f32] = ACTIONS(1312), + [anon_sym_f64] = ACTIONS(1312), + [anon_sym_bool] = ACTIONS(1312), + [anon_sym_str] = ACTIONS(1312), + [anon_sym_char] = ACTIONS(1312), + [anon_sym_DASH] = ACTIONS(1246), + [anon_sym_BANG] = ACTIONS(1248), + [anon_sym_AMP] = ACTIONS(1314), + [anon_sym_PIPE] = ACTIONS(1252), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1542), + [anon_sym_DOT_DOT] = ACTIONS(1256), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1258), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1260), + [anon_sym_COLON_COLON] = ACTIONS(1320), + [anon_sym_SQUOTE] = ACTIONS(1268), + [anon_sym_async] = ACTIONS(1270), + [anon_sym_const] = ACTIONS(1272), + [anon_sym_default] = ACTIONS(1322), + [anon_sym_fn] = ACTIONS(1276), + [anon_sym_for] = ACTIONS(1278), + [anon_sym_gen] = ACTIONS(1324), + [anon_sym_impl] = ACTIONS(1282), + [anon_sym_union] = ACTIONS(1324), + [anon_sym_unsafe] = ACTIONS(1270), + [anon_sym_extern] = ACTIONS(1284), + [anon_sym_safe] = ACTIONS(1270), + [anon_sym_ref] = ACTIONS(1286), + [anon_sym_dyn] = ACTIONS(1288), + [sym_mutable_specifier] = ACTIONS(1290), + [sym_integer_literal] = ACTIONS(1292), + [aux_sym_string_literal_token1] = ACTIONS(1294), + [sym_char_literal] = ACTIONS(1292), + [anon_sym_true] = ACTIONS(1296), + [anon_sym_false] = ACTIONS(1296), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1326), + [sym_super] = ACTIONS(1328), + [sym_crate] = ACTIONS(1328), + [sym_metavariable] = ACTIONS(1330), + [sym__raw_string_literal_start] = ACTIONS(1304), + [sym_float_literal] = ACTIONS(1292), }, [STATE(425)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2056), - [sym_bracketed_type] = STATE(3644), - [sym_lifetime] = STATE(855), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3299), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2550), - [sym_scoped_identifier] = STATE(2273), - [sym_scoped_type_identifier] = STATE(2154), - [sym_const_block] = STATE(2150), - [sym__pattern] = STATE(2152), - [sym_generic_pattern] = STATE(2150), - [sym_tuple_pattern] = STATE(2150), - [sym_slice_pattern] = STATE(2150), - [sym_tuple_struct_pattern] = STATE(2150), - [sym_struct_pattern] = STATE(2150), - [sym_remaining_field_pattern] = STATE(2150), - [sym_mut_pattern] = STATE(2150), - [sym_range_pattern] = STATE(2150), - [sym_ref_pattern] = STATE(2150), - [sym_captured_pattern] = STATE(2150), - [sym_reference_pattern] = STATE(2150), - [sym_or_pattern] = STATE(2150), - [sym__literal_pattern] = STATE(2076), - [sym_negative_literal] = STATE(2074), - [sym_string_literal] = STATE(2074), - [sym_raw_string_literal] = STATE(2074), - [sym_boolean_literal] = STATE(2074), + [sym_function_modifiers] = STATE(3591), + [sym_removed_trait_bound] = STATE(2069), + [sym_self_parameter] = STATE(3024), + [sym_variadic_parameter] = STATE(3024), + [sym_parameter] = STATE(3024), + [sym_extern_modifier] = STATE(2373), + [sym__type] = STATE(2604), + [sym_bracketed_type] = STATE(3673), + [sym_lifetime] = STATE(3067), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1591), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2022), + [sym_generic_type_with_turbofish] = STATE(3329), + [sym_bounded_type] = STATE(2069), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2552), + [sym_scoped_identifier] = STATE(2299), + [sym_scoped_type_identifier] = STATE(2203), + [sym_const_block] = STATE(2163), + [sym__pattern] = STATE(3292), + [sym_generic_pattern] = STATE(2163), + [sym_tuple_pattern] = STATE(2163), + [sym_slice_pattern] = STATE(2163), + [sym_tuple_struct_pattern] = STATE(2163), + [sym_struct_pattern] = STATE(2163), + [sym_remaining_field_pattern] = STATE(2163), + [sym_mut_pattern] = STATE(2163), + [sym_range_pattern] = STATE(2163), + [sym_ref_pattern] = STATE(2163), + [sym_captured_pattern] = STATE(2163), + [sym_reference_pattern] = STATE(2163), + [sym_or_pattern] = STATE(2163), + [sym__literal_pattern] = STATE(2098), + [sym_negative_literal] = STATE(2095), + [sym_string_literal] = STATE(2095), + [sym_raw_string_literal] = STATE(2095), + [sym_boolean_literal] = STATE(2095), [sym_line_comment] = STATE(425), [sym_block_comment] = STATE(425), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(1323), - [anon_sym_LPAREN] = ACTIONS(1325), - [anon_sym_LBRACK] = ACTIONS(1233), - [anon_sym_STAR] = ACTIONS(1235), - [anon_sym_QMARK] = ACTIONS(1237), - [anon_sym_u8] = ACTIONS(1329), - [anon_sym_i8] = ACTIONS(1329), - [anon_sym_u16] = ACTIONS(1329), - [anon_sym_i16] = ACTIONS(1329), - [anon_sym_u32] = ACTIONS(1329), - [anon_sym_i32] = ACTIONS(1329), - [anon_sym_u64] = ACTIONS(1329), - [anon_sym_i64] = ACTIONS(1329), - [anon_sym_u128] = ACTIONS(1329), - [anon_sym_i128] = ACTIONS(1329), - [anon_sym_isize] = ACTIONS(1329), - [anon_sym_usize] = ACTIONS(1329), - [anon_sym_f32] = ACTIONS(1329), - [anon_sym_f64] = ACTIONS(1329), - [anon_sym_bool] = ACTIONS(1329), - [anon_sym_str] = ACTIONS(1329), - [anon_sym_char] = ACTIONS(1329), - [anon_sym_DASH] = ACTIONS(1241), - [anon_sym_BANG] = ACTIONS(1243), - [anon_sym_AMP] = ACTIONS(1563), - [anon_sym_PIPE] = ACTIONS(1247), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1451), - [anon_sym_DOT_DOT] = ACTIONS(1251), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1255), - [anon_sym_COLON_COLON] = ACTIONS(1337), - [anon_sym_SQUOTE] = ACTIONS(1263), - [anon_sym_async] = ACTIONS(1265), - [anon_sym_const] = ACTIONS(1267), - [anon_sym_default] = ACTIONS(1339), - [anon_sym_fn] = ACTIONS(1271), - [anon_sym_for] = ACTIONS(1273), - [anon_sym_gen] = ACTIONS(1341), - [anon_sym_impl] = ACTIONS(1277), - [anon_sym_union] = ACTIONS(1341), - [anon_sym_unsafe] = ACTIONS(1265), - [anon_sym_extern] = ACTIONS(1279), - [anon_sym_ref] = ACTIONS(1281), - [anon_sym_dyn] = ACTIONS(1283), - [sym_mutable_specifier] = ACTIONS(1565), - [sym_integer_literal] = ACTIONS(1287), - [aux_sym_string_literal_token1] = ACTIONS(1289), - [sym_char_literal] = ACTIONS(1287), - [anon_sym_true] = ACTIONS(1291), - [anon_sym_false] = ACTIONS(1291), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1567), - [sym_super] = ACTIONS(1345), - [sym_crate] = ACTIONS(1345), - [sym_metavariable] = ACTIONS(1347), - [sym__raw_string_literal_start] = ACTIONS(1299), - [sym_float_literal] = ACTIONS(1287), + [aux_sym_function_modifiers_repeat1] = STATE(2244), + [sym_identifier] = ACTIONS(1306), + [anon_sym_LPAREN] = ACTIONS(1308), + [anon_sym_LBRACK] = ACTIONS(1238), + [anon_sym_STAR] = ACTIONS(1240), + [anon_sym_QMARK] = ACTIONS(1242), + [anon_sym_u8] = ACTIONS(1312), + [anon_sym_i8] = ACTIONS(1312), + [anon_sym_u16] = ACTIONS(1312), + [anon_sym_i16] = ACTIONS(1312), + [anon_sym_u32] = ACTIONS(1312), + [anon_sym_i32] = ACTIONS(1312), + [anon_sym_u64] = ACTIONS(1312), + [anon_sym_i64] = ACTIONS(1312), + [anon_sym_u128] = ACTIONS(1312), + [anon_sym_i128] = ACTIONS(1312), + [anon_sym_isize] = ACTIONS(1312), + [anon_sym_usize] = ACTIONS(1312), + [anon_sym_f32] = ACTIONS(1312), + [anon_sym_f64] = ACTIONS(1312), + [anon_sym_bool] = ACTIONS(1312), + [anon_sym_str] = ACTIONS(1312), + [anon_sym_char] = ACTIONS(1312), + [anon_sym_DASH] = ACTIONS(1246), + [anon_sym_BANG] = ACTIONS(1248), + [anon_sym_AMP] = ACTIONS(1314), + [anon_sym_PIPE] = ACTIONS(1252), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1544), + [anon_sym_DOT_DOT] = ACTIONS(1256), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1258), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1260), + [anon_sym_COLON_COLON] = ACTIONS(1320), + [anon_sym_SQUOTE] = ACTIONS(1268), + [anon_sym_async] = ACTIONS(1270), + [anon_sym_const] = ACTIONS(1272), + [anon_sym_default] = ACTIONS(1322), + [anon_sym_fn] = ACTIONS(1276), + [anon_sym_for] = ACTIONS(1278), + [anon_sym_gen] = ACTIONS(1324), + [anon_sym_impl] = ACTIONS(1282), + [anon_sym_union] = ACTIONS(1324), + [anon_sym_unsafe] = ACTIONS(1270), + [anon_sym_extern] = ACTIONS(1284), + [anon_sym_safe] = ACTIONS(1270), + [anon_sym_ref] = ACTIONS(1286), + [anon_sym_dyn] = ACTIONS(1288), + [sym_mutable_specifier] = ACTIONS(1290), + [sym_integer_literal] = ACTIONS(1292), + [aux_sym_string_literal_token1] = ACTIONS(1294), + [sym_char_literal] = ACTIONS(1292), + [anon_sym_true] = ACTIONS(1296), + [anon_sym_false] = ACTIONS(1296), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1326), + [sym_super] = ACTIONS(1328), + [sym_crate] = ACTIONS(1328), + [sym_metavariable] = ACTIONS(1330), + [sym__raw_string_literal_start] = ACTIONS(1304), + [sym_float_literal] = ACTIONS(1292), }, [STATE(426)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2056), - [sym_bracketed_type] = STATE(3652), - [sym_lifetime] = STATE(855), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3382), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2517), - [sym_scoped_identifier] = STATE(2191), - [sym_scoped_type_identifier] = STATE(2154), - [sym_const_block] = STATE(2150), - [sym__pattern] = STATE(2152), - [sym_generic_pattern] = STATE(2150), - [sym_tuple_pattern] = STATE(2150), - [sym_slice_pattern] = STATE(2150), - [sym_tuple_struct_pattern] = STATE(2150), - [sym_struct_pattern] = STATE(2150), - [sym_remaining_field_pattern] = STATE(2150), - [sym_mut_pattern] = STATE(2150), - [sym_range_pattern] = STATE(2150), - [sym_ref_pattern] = STATE(2150), - [sym_captured_pattern] = STATE(2150), - [sym_reference_pattern] = STATE(2150), - [sym_or_pattern] = STATE(2150), - [sym__literal_pattern] = STATE(2076), - [sym_negative_literal] = STATE(2074), - [sym_string_literal] = STATE(2074), - [sym_raw_string_literal] = STATE(2074), - [sym_boolean_literal] = STATE(2074), + [sym_function_modifiers] = STATE(3591), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2373), + [sym__type] = STATE(2966), + [sym_bracketed_type] = STATE(3682), + [sym_lifetime] = STATE(3727), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1591), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2022), + [sym_generic_type_with_turbofish] = STATE(3420), + [sym_bounded_type] = STATE(2069), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2568), + [sym_scoped_identifier] = STATE(2254), + [sym_scoped_type_identifier] = STATE(2203), + [sym_const_block] = STATE(2163), + [sym__pattern] = STATE(2630), + [sym_generic_pattern] = STATE(2163), + [sym_tuple_pattern] = STATE(2163), + [sym_slice_pattern] = STATE(2163), + [sym_tuple_struct_pattern] = STATE(2163), + [sym_struct_pattern] = STATE(2163), + [sym_remaining_field_pattern] = STATE(2163), + [sym_mut_pattern] = STATE(2163), + [sym_range_pattern] = STATE(2163), + [sym_ref_pattern] = STATE(2163), + [sym_captured_pattern] = STATE(2163), + [sym_reference_pattern] = STATE(2163), + [sym_or_pattern] = STATE(2163), + [sym__literal_pattern] = STATE(2098), + [sym_negative_literal] = STATE(2095), + [sym_string_literal] = STATE(2095), + [sym_raw_string_literal] = STATE(2095), + [sym_boolean_literal] = STATE(2095), [sym_line_comment] = STATE(426), [sym_block_comment] = STATE(426), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(1227), - [anon_sym_LPAREN] = ACTIONS(1229), - [anon_sym_LBRACK] = ACTIONS(1233), - [anon_sym_STAR] = ACTIONS(1235), - [anon_sym_QMARK] = ACTIONS(1237), - [anon_sym_u8] = ACTIONS(1239), - [anon_sym_i8] = ACTIONS(1239), - [anon_sym_u16] = ACTIONS(1239), - [anon_sym_i16] = ACTIONS(1239), - [anon_sym_u32] = ACTIONS(1239), - [anon_sym_i32] = ACTIONS(1239), - [anon_sym_u64] = ACTIONS(1239), - [anon_sym_i64] = ACTIONS(1239), - [anon_sym_u128] = ACTIONS(1239), - [anon_sym_i128] = ACTIONS(1239), - [anon_sym_isize] = ACTIONS(1239), - [anon_sym_usize] = ACTIONS(1239), - [anon_sym_f32] = ACTIONS(1239), - [anon_sym_f64] = ACTIONS(1239), - [anon_sym_bool] = ACTIONS(1239), - [anon_sym_str] = ACTIONS(1239), - [anon_sym_char] = ACTIONS(1239), - [anon_sym_DASH] = ACTIONS(1241), - [anon_sym_BANG] = ACTIONS(1243), - [anon_sym_AMP] = ACTIONS(1447), - [anon_sym_PIPE] = ACTIONS(1247), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1451), - [anon_sym_DOT_DOT] = ACTIONS(1251), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1255), - [anon_sym_COLON_COLON] = ACTIONS(1259), - [anon_sym_SQUOTE] = ACTIONS(1263), - [anon_sym_async] = ACTIONS(1265), - [anon_sym_const] = ACTIONS(1267), - [anon_sym_default] = ACTIONS(1269), - [anon_sym_fn] = ACTIONS(1271), - [anon_sym_for] = ACTIONS(1273), - [anon_sym_gen] = ACTIONS(1275), - [anon_sym_impl] = ACTIONS(1277), - [anon_sym_union] = ACTIONS(1275), - [anon_sym_unsafe] = ACTIONS(1265), - [anon_sym_extern] = ACTIONS(1279), - [anon_sym_ref] = ACTIONS(1281), - [anon_sym_dyn] = ACTIONS(1283), - [sym_mutable_specifier] = ACTIONS(1569), - [sym_integer_literal] = ACTIONS(1287), - [aux_sym_string_literal_token1] = ACTIONS(1289), - [sym_char_literal] = ACTIONS(1287), - [anon_sym_true] = ACTIONS(1291), - [anon_sym_false] = ACTIONS(1291), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1571), - [sym_super] = ACTIONS(1295), - [sym_crate] = ACTIONS(1295), - [sym_metavariable] = ACTIONS(1297), - [sym__raw_string_literal_start] = ACTIONS(1299), - [sym_float_literal] = ACTIONS(1287), + [aux_sym_function_modifiers_repeat1] = STATE(2244), + [sym_identifier] = ACTIONS(1546), + [anon_sym_LPAREN] = ACTIONS(1548), + [anon_sym_LBRACK] = ACTIONS(1238), + [anon_sym_RBRACK] = ACTIONS(1550), + [anon_sym_STAR] = ACTIONS(1240), + [anon_sym_QMARK] = ACTIONS(1242), + [anon_sym_u8] = ACTIONS(1552), + [anon_sym_i8] = ACTIONS(1552), + [anon_sym_u16] = ACTIONS(1552), + [anon_sym_i16] = ACTIONS(1552), + [anon_sym_u32] = ACTIONS(1552), + [anon_sym_i32] = ACTIONS(1552), + [anon_sym_u64] = ACTIONS(1552), + [anon_sym_i64] = ACTIONS(1552), + [anon_sym_u128] = ACTIONS(1552), + [anon_sym_i128] = ACTIONS(1552), + [anon_sym_isize] = ACTIONS(1552), + [anon_sym_usize] = ACTIONS(1552), + [anon_sym_f32] = ACTIONS(1552), + [anon_sym_f64] = ACTIONS(1552), + [anon_sym_bool] = ACTIONS(1552), + [anon_sym_str] = ACTIONS(1552), + [anon_sym_char] = ACTIONS(1552), + [anon_sym_DASH] = ACTIONS(1246), + [anon_sym_BANG] = ACTIONS(1248), + [anon_sym_AMP] = ACTIONS(1554), + [anon_sym_PIPE] = ACTIONS(1252), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1428), + [anon_sym_DOT_DOT] = ACTIONS(1256), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1260), + [anon_sym_COMMA] = ACTIONS(1556), + [anon_sym_COLON_COLON] = ACTIONS(1558), + [anon_sym_SQUOTE] = ACTIONS(1268), + [anon_sym_async] = ACTIONS(1270), + [anon_sym_const] = ACTIONS(1272), + [anon_sym_default] = ACTIONS(1560), + [anon_sym_fn] = ACTIONS(1276), + [anon_sym_for] = ACTIONS(1278), + [anon_sym_gen] = ACTIONS(1562), + [anon_sym_impl] = ACTIONS(1282), + [anon_sym_union] = ACTIONS(1562), + [anon_sym_unsafe] = ACTIONS(1270), + [anon_sym_extern] = ACTIONS(1284), + [anon_sym_safe] = ACTIONS(1270), + [anon_sym_ref] = ACTIONS(1286), + [anon_sym_dyn] = ACTIONS(1288), + [sym_mutable_specifier] = ACTIONS(1434), + [sym_integer_literal] = ACTIONS(1292), + [aux_sym_string_literal_token1] = ACTIONS(1294), + [sym_char_literal] = ACTIONS(1292), + [anon_sym_true] = ACTIONS(1296), + [anon_sym_false] = ACTIONS(1296), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1564), + [sym_super] = ACTIONS(1564), + [sym_crate] = ACTIONS(1564), + [sym_metavariable] = ACTIONS(1566), + [sym__raw_string_literal_start] = ACTIONS(1304), + [sym_float_literal] = ACTIONS(1292), }, [STATE(427)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2029), - [sym_bracketed_type] = STATE(3653), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3387), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2544), - [sym_scoped_identifier] = STATE(2237), - [sym_scoped_type_identifier] = STATE(2154), - [sym_const_block] = STATE(2150), - [sym__pattern] = STATE(2161), - [sym_generic_pattern] = STATE(2150), - [sym_tuple_pattern] = STATE(2150), - [sym_slice_pattern] = STATE(2150), - [sym_tuple_struct_pattern] = STATE(2150), - [sym_struct_pattern] = STATE(2150), - [sym_remaining_field_pattern] = STATE(2150), - [sym_mut_pattern] = STATE(2150), - [sym_range_pattern] = STATE(2150), - [sym_ref_pattern] = STATE(2150), - [sym_captured_pattern] = STATE(2150), - [sym_reference_pattern] = STATE(2150), - [sym_or_pattern] = STATE(2150), - [sym__literal_pattern] = STATE(2076), - [sym_negative_literal] = STATE(2074), - [sym_string_literal] = STATE(2074), - [sym_raw_string_literal] = STATE(2074), - [sym_boolean_literal] = STATE(2074), + [sym_function_modifiers] = STATE(3591), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2373), + [sym__type] = STATE(2060), + [sym_bracketed_type] = STATE(3673), + [sym_lifetime] = STATE(856), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1591), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2022), + [sym_generic_type_with_turbofish] = STATE(3329), + [sym_bounded_type] = STATE(2069), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2552), + [sym_scoped_identifier] = STATE(2299), + [sym_scoped_type_identifier] = STATE(2203), + [sym_const_block] = STATE(2163), + [sym__pattern] = STATE(2191), + [sym_generic_pattern] = STATE(2163), + [sym_tuple_pattern] = STATE(2163), + [sym_slice_pattern] = STATE(2163), + [sym_tuple_struct_pattern] = STATE(2163), + [sym_struct_pattern] = STATE(2163), + [sym_remaining_field_pattern] = STATE(2163), + [sym_mut_pattern] = STATE(2163), + [sym_range_pattern] = STATE(2163), + [sym_ref_pattern] = STATE(2163), + [sym_captured_pattern] = STATE(2163), + [sym_reference_pattern] = STATE(2163), + [sym_or_pattern] = STATE(2163), + [sym__literal_pattern] = STATE(2098), + [sym_negative_literal] = STATE(2095), + [sym_string_literal] = STATE(2095), + [sym_raw_string_literal] = STATE(2095), + [sym_boolean_literal] = STATE(2095), [sym_line_comment] = STATE(427), [sym_block_comment] = STATE(427), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(1541), - [anon_sym_LPAREN] = ACTIONS(1543), - [anon_sym_LBRACK] = ACTIONS(1233), - [anon_sym_STAR] = ACTIONS(1235), - [anon_sym_QMARK] = ACTIONS(1237), - [anon_sym_u8] = ACTIONS(1547), - [anon_sym_i8] = ACTIONS(1547), - [anon_sym_u16] = ACTIONS(1547), - [anon_sym_i16] = ACTIONS(1547), - [anon_sym_u32] = ACTIONS(1547), - [anon_sym_i32] = ACTIONS(1547), - [anon_sym_u64] = ACTIONS(1547), - [anon_sym_i64] = ACTIONS(1547), - [anon_sym_u128] = ACTIONS(1547), - [anon_sym_i128] = ACTIONS(1547), - [anon_sym_isize] = ACTIONS(1547), - [anon_sym_usize] = ACTIONS(1547), - [anon_sym_f32] = ACTIONS(1547), - [anon_sym_f64] = ACTIONS(1547), - [anon_sym_bool] = ACTIONS(1547), - [anon_sym_str] = ACTIONS(1547), - [anon_sym_char] = ACTIONS(1547), - [anon_sym_DASH] = ACTIONS(1241), - [anon_sym_BANG] = ACTIONS(1243), - [anon_sym_AMP] = ACTIONS(1549), - [anon_sym_PIPE] = ACTIONS(1247), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1451), - [anon_sym_DOT_DOT] = ACTIONS(1251), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1255), - [anon_sym_COLON_COLON] = ACTIONS(1553), - [anon_sym_SQUOTE] = ACTIONS(1263), - [anon_sym_async] = ACTIONS(1265), - [anon_sym_const] = ACTIONS(1267), - [anon_sym_default] = ACTIONS(1555), - [anon_sym_fn] = ACTIONS(1271), - [anon_sym_for] = ACTIONS(1273), - [anon_sym_gen] = ACTIONS(1557), - [anon_sym_impl] = ACTIONS(1277), - [anon_sym_union] = ACTIONS(1557), - [anon_sym_unsafe] = ACTIONS(1265), - [anon_sym_extern] = ACTIONS(1279), - [anon_sym_ref] = ACTIONS(1281), - [anon_sym_dyn] = ACTIONS(1283), - [sym_mutable_specifier] = ACTIONS(1457), - [sym_integer_literal] = ACTIONS(1287), - [aux_sym_string_literal_token1] = ACTIONS(1289), - [sym_char_literal] = ACTIONS(1287), - [anon_sym_true] = ACTIONS(1291), - [anon_sym_false] = ACTIONS(1291), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1559), - [sym_super] = ACTIONS(1559), - [sym_crate] = ACTIONS(1559), - [sym_metavariable] = ACTIONS(1561), - [sym__raw_string_literal_start] = ACTIONS(1299), - [sym_float_literal] = ACTIONS(1287), + [aux_sym_function_modifiers_repeat1] = STATE(2244), + [sym_identifier] = ACTIONS(1306), + [anon_sym_LPAREN] = ACTIONS(1308), + [anon_sym_LBRACK] = ACTIONS(1238), + [anon_sym_STAR] = ACTIONS(1240), + [anon_sym_QMARK] = ACTIONS(1242), + [anon_sym_u8] = ACTIONS(1312), + [anon_sym_i8] = ACTIONS(1312), + [anon_sym_u16] = ACTIONS(1312), + [anon_sym_i16] = ACTIONS(1312), + [anon_sym_u32] = ACTIONS(1312), + [anon_sym_i32] = ACTIONS(1312), + [anon_sym_u64] = ACTIONS(1312), + [anon_sym_i64] = ACTIONS(1312), + [anon_sym_u128] = ACTIONS(1312), + [anon_sym_i128] = ACTIONS(1312), + [anon_sym_isize] = ACTIONS(1312), + [anon_sym_usize] = ACTIONS(1312), + [anon_sym_f32] = ACTIONS(1312), + [anon_sym_f64] = ACTIONS(1312), + [anon_sym_bool] = ACTIONS(1312), + [anon_sym_str] = ACTIONS(1312), + [anon_sym_char] = ACTIONS(1312), + [anon_sym_DASH] = ACTIONS(1246), + [anon_sym_BANG] = ACTIONS(1248), + [anon_sym_AMP] = ACTIONS(1568), + [anon_sym_PIPE] = ACTIONS(1252), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1428), + [anon_sym_DOT_DOT] = ACTIONS(1256), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1260), + [anon_sym_COLON_COLON] = ACTIONS(1320), + [anon_sym_SQUOTE] = ACTIONS(1268), + [anon_sym_async] = ACTIONS(1270), + [anon_sym_const] = ACTIONS(1272), + [anon_sym_default] = ACTIONS(1322), + [anon_sym_fn] = ACTIONS(1276), + [anon_sym_for] = ACTIONS(1278), + [anon_sym_gen] = ACTIONS(1324), + [anon_sym_impl] = ACTIONS(1282), + [anon_sym_union] = ACTIONS(1324), + [anon_sym_unsafe] = ACTIONS(1270), + [anon_sym_extern] = ACTIONS(1284), + [anon_sym_safe] = ACTIONS(1270), + [anon_sym_ref] = ACTIONS(1286), + [anon_sym_dyn] = ACTIONS(1288), + [sym_mutable_specifier] = ACTIONS(1570), + [sym_integer_literal] = ACTIONS(1292), + [aux_sym_string_literal_token1] = ACTIONS(1294), + [sym_char_literal] = ACTIONS(1292), + [anon_sym_true] = ACTIONS(1296), + [anon_sym_false] = ACTIONS(1296), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1572), + [sym_super] = ACTIONS(1328), + [sym_crate] = ACTIONS(1328), + [sym_metavariable] = ACTIONS(1330), + [sym__raw_string_literal_start] = ACTIONS(1304), + [sym_float_literal] = ACTIONS(1292), }, [STATE(428)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2029), - [sym_bracketed_type] = STATE(3652), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3382), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2517), - [sym_scoped_identifier] = STATE(2191), - [sym_scoped_type_identifier] = STATE(2154), - [sym_const_block] = STATE(2150), - [sym__pattern] = STATE(2161), - [sym_generic_pattern] = STATE(2150), - [sym_tuple_pattern] = STATE(2150), - [sym_slice_pattern] = STATE(2150), - [sym_tuple_struct_pattern] = STATE(2150), - [sym_struct_pattern] = STATE(2150), - [sym_remaining_field_pattern] = STATE(2150), - [sym_mut_pattern] = STATE(2150), - [sym_range_pattern] = STATE(2150), - [sym_ref_pattern] = STATE(2150), - [sym_captured_pattern] = STATE(2150), - [sym_reference_pattern] = STATE(2150), - [sym_or_pattern] = STATE(2150), - [sym__literal_pattern] = STATE(2076), - [sym_negative_literal] = STATE(2074), - [sym_string_literal] = STATE(2074), - [sym_raw_string_literal] = STATE(2074), - [sym_boolean_literal] = STATE(2074), + [sym_function_modifiers] = STATE(3591), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2373), + [sym__type] = STATE(2060), + [sym_bracketed_type] = STATE(3681), + [sym_lifetime] = STATE(856), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1591), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2022), + [sym_generic_type_with_turbofish] = STATE(3160), + [sym_bounded_type] = STATE(2069), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2548), + [sym_scoped_identifier] = STATE(2208), + [sym_scoped_type_identifier] = STATE(2203), + [sym_const_block] = STATE(2163), + [sym__pattern] = STATE(2191), + [sym_generic_pattern] = STATE(2163), + [sym_tuple_pattern] = STATE(2163), + [sym_slice_pattern] = STATE(2163), + [sym_tuple_struct_pattern] = STATE(2163), + [sym_struct_pattern] = STATE(2163), + [sym_remaining_field_pattern] = STATE(2163), + [sym_mut_pattern] = STATE(2163), + [sym_range_pattern] = STATE(2163), + [sym_ref_pattern] = STATE(2163), + [sym_captured_pattern] = STATE(2163), + [sym_reference_pattern] = STATE(2163), + [sym_or_pattern] = STATE(2163), + [sym__literal_pattern] = STATE(2098), + [sym_negative_literal] = STATE(2095), + [sym_string_literal] = STATE(2095), + [sym_raw_string_literal] = STATE(2095), + [sym_boolean_literal] = STATE(2095), [sym_line_comment] = STATE(428), [sym_block_comment] = STATE(428), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(1227), - [anon_sym_LPAREN] = ACTIONS(1229), - [anon_sym_LBRACK] = ACTIONS(1233), - [anon_sym_STAR] = ACTIONS(1235), - [anon_sym_QMARK] = ACTIONS(1237), - [anon_sym_u8] = ACTIONS(1239), - [anon_sym_i8] = ACTIONS(1239), - [anon_sym_u16] = ACTIONS(1239), - [anon_sym_i16] = ACTIONS(1239), - [anon_sym_u32] = ACTIONS(1239), - [anon_sym_i32] = ACTIONS(1239), - [anon_sym_u64] = ACTIONS(1239), - [anon_sym_i64] = ACTIONS(1239), - [anon_sym_u128] = ACTIONS(1239), - [anon_sym_i128] = ACTIONS(1239), - [anon_sym_isize] = ACTIONS(1239), - [anon_sym_usize] = ACTIONS(1239), - [anon_sym_f32] = ACTIONS(1239), - [anon_sym_f64] = ACTIONS(1239), - [anon_sym_bool] = ACTIONS(1239), - [anon_sym_str] = ACTIONS(1239), - [anon_sym_char] = ACTIONS(1239), - [anon_sym_DASH] = ACTIONS(1241), - [anon_sym_BANG] = ACTIONS(1243), - [anon_sym_AMP] = ACTIONS(1447), - [anon_sym_PIPE] = ACTIONS(1247), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1451), - [anon_sym_DOT_DOT] = ACTIONS(1251), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1255), - [anon_sym_COLON_COLON] = ACTIONS(1259), - [anon_sym_SQUOTE] = ACTIONS(1263), - [anon_sym_async] = ACTIONS(1265), - [anon_sym_const] = ACTIONS(1267), - [anon_sym_default] = ACTIONS(1269), - [anon_sym_fn] = ACTIONS(1271), - [anon_sym_for] = ACTIONS(1273), - [anon_sym_gen] = ACTIONS(1275), - [anon_sym_impl] = ACTIONS(1277), - [anon_sym_union] = ACTIONS(1275), - [anon_sym_unsafe] = ACTIONS(1265), - [anon_sym_extern] = ACTIONS(1279), - [anon_sym_ref] = ACTIONS(1281), - [anon_sym_dyn] = ACTIONS(1283), - [sym_mutable_specifier] = ACTIONS(1457), - [sym_integer_literal] = ACTIONS(1287), - [aux_sym_string_literal_token1] = ACTIONS(1289), - [sym_char_literal] = ACTIONS(1287), - [anon_sym_true] = ACTIONS(1291), - [anon_sym_false] = ACTIONS(1291), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1573), - [sym_super] = ACTIONS(1295), - [sym_crate] = ACTIONS(1295), - [sym_metavariable] = ACTIONS(1297), - [sym__raw_string_literal_start] = ACTIONS(1299), - [sym_float_literal] = ACTIONS(1287), + [aux_sym_function_modifiers_repeat1] = STATE(2244), + [sym_identifier] = ACTIONS(1232), + [anon_sym_LPAREN] = ACTIONS(1234), + [anon_sym_LBRACK] = ACTIONS(1238), + [anon_sym_STAR] = ACTIONS(1240), + [anon_sym_QMARK] = ACTIONS(1242), + [anon_sym_u8] = ACTIONS(1244), + [anon_sym_i8] = ACTIONS(1244), + [anon_sym_u16] = ACTIONS(1244), + [anon_sym_i16] = ACTIONS(1244), + [anon_sym_u32] = ACTIONS(1244), + [anon_sym_i32] = ACTIONS(1244), + [anon_sym_u64] = ACTIONS(1244), + [anon_sym_i64] = ACTIONS(1244), + [anon_sym_u128] = ACTIONS(1244), + [anon_sym_i128] = ACTIONS(1244), + [anon_sym_isize] = ACTIONS(1244), + [anon_sym_usize] = ACTIONS(1244), + [anon_sym_f32] = ACTIONS(1244), + [anon_sym_f64] = ACTIONS(1244), + [anon_sym_bool] = ACTIONS(1244), + [anon_sym_str] = ACTIONS(1244), + [anon_sym_char] = ACTIONS(1244), + [anon_sym_DASH] = ACTIONS(1246), + [anon_sym_BANG] = ACTIONS(1248), + [anon_sym_AMP] = ACTIONS(1424), + [anon_sym_PIPE] = ACTIONS(1252), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1428), + [anon_sym_DOT_DOT] = ACTIONS(1256), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1260), + [anon_sym_COLON_COLON] = ACTIONS(1264), + [anon_sym_SQUOTE] = ACTIONS(1268), + [anon_sym_async] = ACTIONS(1270), + [anon_sym_const] = ACTIONS(1272), + [anon_sym_default] = ACTIONS(1274), + [anon_sym_fn] = ACTIONS(1276), + [anon_sym_for] = ACTIONS(1278), + [anon_sym_gen] = ACTIONS(1280), + [anon_sym_impl] = ACTIONS(1282), + [anon_sym_union] = ACTIONS(1280), + [anon_sym_unsafe] = ACTIONS(1270), + [anon_sym_extern] = ACTIONS(1284), + [anon_sym_safe] = ACTIONS(1270), + [anon_sym_ref] = ACTIONS(1286), + [anon_sym_dyn] = ACTIONS(1288), + [sym_mutable_specifier] = ACTIONS(1574), + [sym_integer_literal] = ACTIONS(1292), + [aux_sym_string_literal_token1] = ACTIONS(1294), + [sym_char_literal] = ACTIONS(1292), + [anon_sym_true] = ACTIONS(1296), + [anon_sym_false] = ACTIONS(1296), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1576), + [sym_super] = ACTIONS(1300), + [sym_crate] = ACTIONS(1300), + [sym_metavariable] = ACTIONS(1302), + [sym__raw_string_literal_start] = ACTIONS(1304), + [sym_float_literal] = ACTIONS(1292), }, [STATE(429)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2056), - [sym_bracketed_type] = STATE(3652), - [sym_lifetime] = STATE(853), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3382), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2517), - [sym_scoped_identifier] = STATE(2191), - [sym_scoped_type_identifier] = STATE(2154), - [sym_const_block] = STATE(2150), - [sym__pattern] = STATE(2152), - [sym_generic_pattern] = STATE(2150), - [sym_tuple_pattern] = STATE(2150), - [sym_slice_pattern] = STATE(2150), - [sym_tuple_struct_pattern] = STATE(2150), - [sym_struct_pattern] = STATE(2150), - [sym_remaining_field_pattern] = STATE(2150), - [sym_mut_pattern] = STATE(2150), - [sym_range_pattern] = STATE(2150), - [sym_ref_pattern] = STATE(2150), - [sym_captured_pattern] = STATE(2150), - [sym_reference_pattern] = STATE(2150), - [sym_or_pattern] = STATE(2150), - [sym__literal_pattern] = STATE(2076), - [sym_negative_literal] = STATE(2074), - [sym_string_literal] = STATE(2074), - [sym_raw_string_literal] = STATE(2074), - [sym_boolean_literal] = STATE(2074), + [sym_function_modifiers] = STATE(3591), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2373), + [sym__type] = STATE(2060), + [sym_bracketed_type] = STATE(3681), + [sym_lifetime] = STATE(858), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1591), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2022), + [sym_generic_type_with_turbofish] = STATE(3160), + [sym_bounded_type] = STATE(2069), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2548), + [sym_scoped_identifier] = STATE(2208), + [sym_scoped_type_identifier] = STATE(2203), + [sym_const_block] = STATE(2163), + [sym__pattern] = STATE(2191), + [sym_generic_pattern] = STATE(2163), + [sym_tuple_pattern] = STATE(2163), + [sym_slice_pattern] = STATE(2163), + [sym_tuple_struct_pattern] = STATE(2163), + [sym_struct_pattern] = STATE(2163), + [sym_remaining_field_pattern] = STATE(2163), + [sym_mut_pattern] = STATE(2163), + [sym_range_pattern] = STATE(2163), + [sym_ref_pattern] = STATE(2163), + [sym_captured_pattern] = STATE(2163), + [sym_reference_pattern] = STATE(2163), + [sym_or_pattern] = STATE(2163), + [sym__literal_pattern] = STATE(2098), + [sym_negative_literal] = STATE(2095), + [sym_string_literal] = STATE(2095), + [sym_raw_string_literal] = STATE(2095), + [sym_boolean_literal] = STATE(2095), [sym_line_comment] = STATE(429), [sym_block_comment] = STATE(429), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(1227), - [anon_sym_LPAREN] = ACTIONS(1229), - [anon_sym_LBRACK] = ACTIONS(1233), - [anon_sym_STAR] = ACTIONS(1235), - [anon_sym_QMARK] = ACTIONS(1237), - [anon_sym_u8] = ACTIONS(1239), - [anon_sym_i8] = ACTIONS(1239), - [anon_sym_u16] = ACTIONS(1239), - [anon_sym_i16] = ACTIONS(1239), - [anon_sym_u32] = ACTIONS(1239), - [anon_sym_i32] = ACTIONS(1239), - [anon_sym_u64] = ACTIONS(1239), - [anon_sym_i64] = ACTIONS(1239), - [anon_sym_u128] = ACTIONS(1239), - [anon_sym_i128] = ACTIONS(1239), - [anon_sym_isize] = ACTIONS(1239), - [anon_sym_usize] = ACTIONS(1239), - [anon_sym_f32] = ACTIONS(1239), - [anon_sym_f64] = ACTIONS(1239), - [anon_sym_bool] = ACTIONS(1239), - [anon_sym_str] = ACTIONS(1239), - [anon_sym_char] = ACTIONS(1239), - [anon_sym_DASH] = ACTIONS(1241), - [anon_sym_BANG] = ACTIONS(1243), - [anon_sym_AMP] = ACTIONS(1447), - [anon_sym_PIPE] = ACTIONS(1247), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1451), - [anon_sym_DOT_DOT] = ACTIONS(1251), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1255), - [anon_sym_COLON_COLON] = ACTIONS(1259), - [anon_sym_SQUOTE] = ACTIONS(1263), - [anon_sym_async] = ACTIONS(1265), - [anon_sym_const] = ACTIONS(1267), - [anon_sym_default] = ACTIONS(1269), - [anon_sym_fn] = ACTIONS(1271), - [anon_sym_for] = ACTIONS(1273), - [anon_sym_gen] = ACTIONS(1275), - [anon_sym_impl] = ACTIONS(1277), - [anon_sym_union] = ACTIONS(1275), - [anon_sym_unsafe] = ACTIONS(1265), - [anon_sym_extern] = ACTIONS(1279), - [anon_sym_ref] = ACTIONS(1281), - [anon_sym_dyn] = ACTIONS(1283), - [sym_mutable_specifier] = ACTIONS(1575), - [sym_integer_literal] = ACTIONS(1287), - [aux_sym_string_literal_token1] = ACTIONS(1289), - [sym_char_literal] = ACTIONS(1287), - [anon_sym_true] = ACTIONS(1291), - [anon_sym_false] = ACTIONS(1291), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1295), - [sym_super] = ACTIONS(1295), - [sym_crate] = ACTIONS(1295), - [sym_metavariable] = ACTIONS(1297), - [sym__raw_string_literal_start] = ACTIONS(1299), - [sym_float_literal] = ACTIONS(1287), + [aux_sym_function_modifiers_repeat1] = STATE(2244), + [sym_identifier] = ACTIONS(1232), + [anon_sym_LPAREN] = ACTIONS(1234), + [anon_sym_LBRACK] = ACTIONS(1238), + [anon_sym_STAR] = ACTIONS(1240), + [anon_sym_QMARK] = ACTIONS(1242), + [anon_sym_u8] = ACTIONS(1244), + [anon_sym_i8] = ACTIONS(1244), + [anon_sym_u16] = ACTIONS(1244), + [anon_sym_i16] = ACTIONS(1244), + [anon_sym_u32] = ACTIONS(1244), + [anon_sym_i32] = ACTIONS(1244), + [anon_sym_u64] = ACTIONS(1244), + [anon_sym_i64] = ACTIONS(1244), + [anon_sym_u128] = ACTIONS(1244), + [anon_sym_i128] = ACTIONS(1244), + [anon_sym_isize] = ACTIONS(1244), + [anon_sym_usize] = ACTIONS(1244), + [anon_sym_f32] = ACTIONS(1244), + [anon_sym_f64] = ACTIONS(1244), + [anon_sym_bool] = ACTIONS(1244), + [anon_sym_str] = ACTIONS(1244), + [anon_sym_char] = ACTIONS(1244), + [anon_sym_DASH] = ACTIONS(1246), + [anon_sym_BANG] = ACTIONS(1248), + [anon_sym_AMP] = ACTIONS(1424), + [anon_sym_PIPE] = ACTIONS(1252), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1428), + [anon_sym_DOT_DOT] = ACTIONS(1256), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1260), + [anon_sym_COLON_COLON] = ACTIONS(1264), + [anon_sym_SQUOTE] = ACTIONS(1268), + [anon_sym_async] = ACTIONS(1270), + [anon_sym_const] = ACTIONS(1272), + [anon_sym_default] = ACTIONS(1274), + [anon_sym_fn] = ACTIONS(1276), + [anon_sym_for] = ACTIONS(1278), + [anon_sym_gen] = ACTIONS(1280), + [anon_sym_impl] = ACTIONS(1282), + [anon_sym_union] = ACTIONS(1280), + [anon_sym_unsafe] = ACTIONS(1270), + [anon_sym_extern] = ACTIONS(1284), + [anon_sym_safe] = ACTIONS(1270), + [anon_sym_ref] = ACTIONS(1286), + [anon_sym_dyn] = ACTIONS(1288), + [sym_mutable_specifier] = ACTIONS(1578), + [sym_integer_literal] = ACTIONS(1292), + [aux_sym_string_literal_token1] = ACTIONS(1294), + [sym_char_literal] = ACTIONS(1292), + [anon_sym_true] = ACTIONS(1296), + [anon_sym_false] = ACTIONS(1296), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1300), + [sym_super] = ACTIONS(1300), + [sym_crate] = ACTIONS(1300), + [sym_metavariable] = ACTIONS(1302), + [sym__raw_string_literal_start] = ACTIONS(1304), + [sym_float_literal] = ACTIONS(1292), }, [STATE(430)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2029), - [sym_bracketed_type] = STATE(3644), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3299), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2550), - [sym_scoped_identifier] = STATE(2273), - [sym_scoped_type_identifier] = STATE(2154), - [sym_const_block] = STATE(2150), - [sym__pattern] = STATE(2161), - [sym_generic_pattern] = STATE(2150), - [sym_tuple_pattern] = STATE(2150), - [sym_slice_pattern] = STATE(2150), - [sym_tuple_struct_pattern] = STATE(2150), - [sym_struct_pattern] = STATE(2150), - [sym_remaining_field_pattern] = STATE(2150), - [sym_mut_pattern] = STATE(2150), - [sym_range_pattern] = STATE(2150), - [sym_ref_pattern] = STATE(2150), - [sym_captured_pattern] = STATE(2150), - [sym_reference_pattern] = STATE(2150), - [sym_or_pattern] = STATE(2150), - [sym__literal_pattern] = STATE(2076), - [sym_negative_literal] = STATE(2074), - [sym_string_literal] = STATE(2074), - [sym_raw_string_literal] = STATE(2074), - [sym_boolean_literal] = STATE(2074), + [sym_function_modifiers] = STATE(3591), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2373), + [sym__type] = STATE(2060), + [sym_bracketed_type] = STATE(3682), + [sym_lifetime] = STATE(858), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1591), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2022), + [sym_generic_type_with_turbofish] = STATE(3420), + [sym_bounded_type] = STATE(2069), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2568), + [sym_scoped_identifier] = STATE(2254), + [sym_scoped_type_identifier] = STATE(2203), + [sym_const_block] = STATE(2163), + [sym__pattern] = STATE(2191), + [sym_generic_pattern] = STATE(2163), + [sym_tuple_pattern] = STATE(2163), + [sym_slice_pattern] = STATE(2163), + [sym_tuple_struct_pattern] = STATE(2163), + [sym_struct_pattern] = STATE(2163), + [sym_remaining_field_pattern] = STATE(2163), + [sym_mut_pattern] = STATE(2163), + [sym_range_pattern] = STATE(2163), + [sym_ref_pattern] = STATE(2163), + [sym_captured_pattern] = STATE(2163), + [sym_reference_pattern] = STATE(2163), + [sym_or_pattern] = STATE(2163), + [sym__literal_pattern] = STATE(2098), + [sym_negative_literal] = STATE(2095), + [sym_string_literal] = STATE(2095), + [sym_raw_string_literal] = STATE(2095), + [sym_boolean_literal] = STATE(2095), [sym_line_comment] = STATE(430), [sym_block_comment] = STATE(430), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(1323), - [anon_sym_LPAREN] = ACTIONS(1325), - [anon_sym_LBRACK] = ACTIONS(1233), - [anon_sym_STAR] = ACTIONS(1235), - [anon_sym_QMARK] = ACTIONS(1237), - [anon_sym_u8] = ACTIONS(1329), - [anon_sym_i8] = ACTIONS(1329), - [anon_sym_u16] = ACTIONS(1329), - [anon_sym_i16] = ACTIONS(1329), - [anon_sym_u32] = ACTIONS(1329), - [anon_sym_i32] = ACTIONS(1329), - [anon_sym_u64] = ACTIONS(1329), - [anon_sym_i64] = ACTIONS(1329), - [anon_sym_u128] = ACTIONS(1329), - [anon_sym_i128] = ACTIONS(1329), - [anon_sym_isize] = ACTIONS(1329), - [anon_sym_usize] = ACTIONS(1329), - [anon_sym_f32] = ACTIONS(1329), - [anon_sym_f64] = ACTIONS(1329), - [anon_sym_bool] = ACTIONS(1329), - [anon_sym_str] = ACTIONS(1329), - [anon_sym_char] = ACTIONS(1329), - [anon_sym_DASH] = ACTIONS(1241), - [anon_sym_BANG] = ACTIONS(1243), - [anon_sym_AMP] = ACTIONS(1563), - [anon_sym_PIPE] = ACTIONS(1247), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1451), - [anon_sym_DOT_DOT] = ACTIONS(1251), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1255), - [anon_sym_COLON_COLON] = ACTIONS(1337), - [anon_sym_SQUOTE] = ACTIONS(1263), - [anon_sym_async] = ACTIONS(1265), - [anon_sym_const] = ACTIONS(1267), - [anon_sym_default] = ACTIONS(1339), - [anon_sym_fn] = ACTIONS(1271), - [anon_sym_for] = ACTIONS(1273), - [anon_sym_gen] = ACTIONS(1341), - [anon_sym_impl] = ACTIONS(1277), - [anon_sym_union] = ACTIONS(1341), - [anon_sym_unsafe] = ACTIONS(1265), - [anon_sym_extern] = ACTIONS(1279), - [anon_sym_ref] = ACTIONS(1281), - [anon_sym_dyn] = ACTIONS(1283), - [sym_mutable_specifier] = ACTIONS(1457), - [sym_integer_literal] = ACTIONS(1287), - [aux_sym_string_literal_token1] = ACTIONS(1289), - [sym_char_literal] = ACTIONS(1287), - [anon_sym_true] = ACTIONS(1291), - [anon_sym_false] = ACTIONS(1291), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1345), - [sym_super] = ACTIONS(1345), - [sym_crate] = ACTIONS(1345), - [sym_metavariable] = ACTIONS(1347), - [sym__raw_string_literal_start] = ACTIONS(1299), - [sym_float_literal] = ACTIONS(1287), + [aux_sym_function_modifiers_repeat1] = STATE(2244), + [sym_identifier] = ACTIONS(1546), + [anon_sym_LPAREN] = ACTIONS(1548), + [anon_sym_LBRACK] = ACTIONS(1238), + [anon_sym_STAR] = ACTIONS(1240), + [anon_sym_QMARK] = ACTIONS(1242), + [anon_sym_u8] = ACTIONS(1552), + [anon_sym_i8] = ACTIONS(1552), + [anon_sym_u16] = ACTIONS(1552), + [anon_sym_i16] = ACTIONS(1552), + [anon_sym_u32] = ACTIONS(1552), + [anon_sym_i32] = ACTIONS(1552), + [anon_sym_u64] = ACTIONS(1552), + [anon_sym_i64] = ACTIONS(1552), + [anon_sym_u128] = ACTIONS(1552), + [anon_sym_i128] = ACTIONS(1552), + [anon_sym_isize] = ACTIONS(1552), + [anon_sym_usize] = ACTIONS(1552), + [anon_sym_f32] = ACTIONS(1552), + [anon_sym_f64] = ACTIONS(1552), + [anon_sym_bool] = ACTIONS(1552), + [anon_sym_str] = ACTIONS(1552), + [anon_sym_char] = ACTIONS(1552), + [anon_sym_DASH] = ACTIONS(1246), + [anon_sym_BANG] = ACTIONS(1248), + [anon_sym_AMP] = ACTIONS(1554), + [anon_sym_PIPE] = ACTIONS(1252), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1428), + [anon_sym_DOT_DOT] = ACTIONS(1256), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1260), + [anon_sym_COLON_COLON] = ACTIONS(1558), + [anon_sym_SQUOTE] = ACTIONS(1268), + [anon_sym_async] = ACTIONS(1270), + [anon_sym_const] = ACTIONS(1272), + [anon_sym_default] = ACTIONS(1560), + [anon_sym_fn] = ACTIONS(1276), + [anon_sym_for] = ACTIONS(1278), + [anon_sym_gen] = ACTIONS(1562), + [anon_sym_impl] = ACTIONS(1282), + [anon_sym_union] = ACTIONS(1562), + [anon_sym_unsafe] = ACTIONS(1270), + [anon_sym_extern] = ACTIONS(1284), + [anon_sym_safe] = ACTIONS(1270), + [anon_sym_ref] = ACTIONS(1286), + [anon_sym_dyn] = ACTIONS(1288), + [sym_mutable_specifier] = ACTIONS(1580), + [sym_integer_literal] = ACTIONS(1292), + [aux_sym_string_literal_token1] = ACTIONS(1294), + [sym_char_literal] = ACTIONS(1292), + [anon_sym_true] = ACTIONS(1296), + [anon_sym_false] = ACTIONS(1296), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1564), + [sym_super] = ACTIONS(1564), + [sym_crate] = ACTIONS(1564), + [sym_metavariable] = ACTIONS(1566), + [sym__raw_string_literal_start] = ACTIONS(1304), + [sym_float_literal] = ACTIONS(1292), }, [STATE(431)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2029), - [sym_bracketed_type] = STATE(3652), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3382), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2517), - [sym_scoped_identifier] = STATE(2191), - [sym_scoped_type_identifier] = STATE(2154), - [sym_const_block] = STATE(2150), - [sym__pattern] = STATE(2161), - [sym_generic_pattern] = STATE(2150), - [sym_tuple_pattern] = STATE(2150), - [sym_slice_pattern] = STATE(2150), - [sym_tuple_struct_pattern] = STATE(2150), - [sym_struct_pattern] = STATE(2150), - [sym_remaining_field_pattern] = STATE(2150), - [sym_mut_pattern] = STATE(2150), - [sym_range_pattern] = STATE(2150), - [sym_ref_pattern] = STATE(2150), - [sym_captured_pattern] = STATE(2150), - [sym_reference_pattern] = STATE(2150), - [sym_or_pattern] = STATE(2150), - [sym__literal_pattern] = STATE(2076), - [sym_negative_literal] = STATE(2074), - [sym_string_literal] = STATE(2074), - [sym_raw_string_literal] = STATE(2074), - [sym_boolean_literal] = STATE(2074), + [sym_function_modifiers] = STATE(3591), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2373), + [sym__type] = STATE(2082), + [sym_bracketed_type] = STATE(3673), + [sym_lifetime] = STATE(3727), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1591), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2022), + [sym_generic_type_with_turbofish] = STATE(3329), + [sym_bounded_type] = STATE(2069), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2552), + [sym_scoped_identifier] = STATE(2299), + [sym_scoped_type_identifier] = STATE(2203), + [sym_const_block] = STATE(2163), + [sym__pattern] = STATE(2195), + [sym_generic_pattern] = STATE(2163), + [sym_tuple_pattern] = STATE(2163), + [sym_slice_pattern] = STATE(2163), + [sym_tuple_struct_pattern] = STATE(2163), + [sym_struct_pattern] = STATE(2163), + [sym_remaining_field_pattern] = STATE(2163), + [sym_mut_pattern] = STATE(2163), + [sym_range_pattern] = STATE(2163), + [sym_ref_pattern] = STATE(2163), + [sym_captured_pattern] = STATE(2163), + [sym_reference_pattern] = STATE(2163), + [sym_or_pattern] = STATE(2163), + [sym__literal_pattern] = STATE(2098), + [sym_negative_literal] = STATE(2095), + [sym_string_literal] = STATE(2095), + [sym_raw_string_literal] = STATE(2095), + [sym_boolean_literal] = STATE(2095), [sym_line_comment] = STATE(431), [sym_block_comment] = STATE(431), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(1227), - [anon_sym_LPAREN] = ACTIONS(1229), - [anon_sym_LBRACK] = ACTIONS(1233), - [anon_sym_STAR] = ACTIONS(1235), - [anon_sym_QMARK] = ACTIONS(1237), - [anon_sym_u8] = ACTIONS(1239), - [anon_sym_i8] = ACTIONS(1239), - [anon_sym_u16] = ACTIONS(1239), - [anon_sym_i16] = ACTIONS(1239), - [anon_sym_u32] = ACTIONS(1239), - [anon_sym_i32] = ACTIONS(1239), - [anon_sym_u64] = ACTIONS(1239), - [anon_sym_i64] = ACTIONS(1239), - [anon_sym_u128] = ACTIONS(1239), - [anon_sym_i128] = ACTIONS(1239), - [anon_sym_isize] = ACTIONS(1239), - [anon_sym_usize] = ACTIONS(1239), - [anon_sym_f32] = ACTIONS(1239), - [anon_sym_f64] = ACTIONS(1239), - [anon_sym_bool] = ACTIONS(1239), - [anon_sym_str] = ACTIONS(1239), - [anon_sym_char] = ACTIONS(1239), - [anon_sym_DASH] = ACTIONS(1241), - [anon_sym_BANG] = ACTIONS(1243), - [anon_sym_AMP] = ACTIONS(1447), - [anon_sym_PIPE] = ACTIONS(1247), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1451), - [anon_sym_DOT_DOT] = ACTIONS(1251), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1255), - [anon_sym_COLON_COLON] = ACTIONS(1259), - [anon_sym_SQUOTE] = ACTIONS(1263), - [anon_sym_async] = ACTIONS(1265), - [anon_sym_const] = ACTIONS(1267), - [anon_sym_default] = ACTIONS(1269), - [anon_sym_fn] = ACTIONS(1271), - [anon_sym_for] = ACTIONS(1273), - [anon_sym_gen] = ACTIONS(1275), - [anon_sym_impl] = ACTIONS(1277), - [anon_sym_union] = ACTIONS(1275), - [anon_sym_unsafe] = ACTIONS(1265), - [anon_sym_extern] = ACTIONS(1279), - [anon_sym_ref] = ACTIONS(1281), - [anon_sym_dyn] = ACTIONS(1283), - [sym_mutable_specifier] = ACTIONS(1457), - [sym_integer_literal] = ACTIONS(1287), - [aux_sym_string_literal_token1] = ACTIONS(1289), - [sym_char_literal] = ACTIONS(1287), - [anon_sym_true] = ACTIONS(1291), - [anon_sym_false] = ACTIONS(1291), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1295), - [sym_super] = ACTIONS(1295), - [sym_crate] = ACTIONS(1295), - [sym_metavariable] = ACTIONS(1297), - [sym__raw_string_literal_start] = ACTIONS(1299), - [sym_float_literal] = ACTIONS(1287), + [aux_sym_function_modifiers_repeat1] = STATE(2244), + [sym_identifier] = ACTIONS(1306), + [anon_sym_LPAREN] = ACTIONS(1308), + [anon_sym_LBRACK] = ACTIONS(1238), + [anon_sym_STAR] = ACTIONS(1240), + [anon_sym_QMARK] = ACTIONS(1242), + [anon_sym_u8] = ACTIONS(1312), + [anon_sym_i8] = ACTIONS(1312), + [anon_sym_u16] = ACTIONS(1312), + [anon_sym_i16] = ACTIONS(1312), + [anon_sym_u32] = ACTIONS(1312), + [anon_sym_i32] = ACTIONS(1312), + [anon_sym_u64] = ACTIONS(1312), + [anon_sym_i64] = ACTIONS(1312), + [anon_sym_u128] = ACTIONS(1312), + [anon_sym_i128] = ACTIONS(1312), + [anon_sym_isize] = ACTIONS(1312), + [anon_sym_usize] = ACTIONS(1312), + [anon_sym_f32] = ACTIONS(1312), + [anon_sym_f64] = ACTIONS(1312), + [anon_sym_bool] = ACTIONS(1312), + [anon_sym_str] = ACTIONS(1312), + [anon_sym_char] = ACTIONS(1312), + [anon_sym_DASH] = ACTIONS(1246), + [anon_sym_BANG] = ACTIONS(1248), + [anon_sym_AMP] = ACTIONS(1568), + [anon_sym_PIPE] = ACTIONS(1252), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1428), + [anon_sym_DOT_DOT] = ACTIONS(1256), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1260), + [anon_sym_COLON_COLON] = ACTIONS(1320), + [anon_sym_SQUOTE] = ACTIONS(1268), + [anon_sym_async] = ACTIONS(1270), + [anon_sym_const] = ACTIONS(1272), + [anon_sym_default] = ACTIONS(1322), + [anon_sym_fn] = ACTIONS(1276), + [anon_sym_for] = ACTIONS(1278), + [anon_sym_gen] = ACTIONS(1324), + [anon_sym_impl] = ACTIONS(1282), + [anon_sym_union] = ACTIONS(1324), + [anon_sym_unsafe] = ACTIONS(1270), + [anon_sym_extern] = ACTIONS(1284), + [anon_sym_safe] = ACTIONS(1270), + [anon_sym_ref] = ACTIONS(1286), + [anon_sym_dyn] = ACTIONS(1288), + [sym_mutable_specifier] = ACTIONS(1434), + [sym_integer_literal] = ACTIONS(1292), + [aux_sym_string_literal_token1] = ACTIONS(1294), + [sym_char_literal] = ACTIONS(1292), + [anon_sym_true] = ACTIONS(1296), + [anon_sym_false] = ACTIONS(1296), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1582), + [sym_super] = ACTIONS(1328), + [sym_crate] = ACTIONS(1328), + [sym_metavariable] = ACTIONS(1330), + [sym__raw_string_literal_start] = ACTIONS(1304), + [sym_float_literal] = ACTIONS(1292), }, [STATE(432)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2029), - [sym_bracketed_type] = STATE(3644), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3299), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2550), - [sym_scoped_identifier] = STATE(2273), - [sym_scoped_type_identifier] = STATE(2154), - [sym_const_block] = STATE(2150), - [sym__pattern] = STATE(2161), - [sym_generic_pattern] = STATE(2150), - [sym_tuple_pattern] = STATE(2150), - [sym_slice_pattern] = STATE(2150), - [sym_tuple_struct_pattern] = STATE(2150), - [sym_struct_pattern] = STATE(2150), - [sym_remaining_field_pattern] = STATE(2150), - [sym_mut_pattern] = STATE(2150), - [sym_range_pattern] = STATE(2150), - [sym_ref_pattern] = STATE(2150), - [sym_captured_pattern] = STATE(2150), - [sym_reference_pattern] = STATE(2150), - [sym_or_pattern] = STATE(2150), - [sym__literal_pattern] = STATE(2076), - [sym_negative_literal] = STATE(2074), - [sym_string_literal] = STATE(2074), - [sym_raw_string_literal] = STATE(2074), - [sym_boolean_literal] = STATE(2074), + [sym_function_modifiers] = STATE(3591), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2373), + [sym__type] = STATE(2060), + [sym_bracketed_type] = STATE(3673), + [sym_lifetime] = STATE(858), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1591), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2022), + [sym_generic_type_with_turbofish] = STATE(3329), + [sym_bounded_type] = STATE(2069), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2552), + [sym_scoped_identifier] = STATE(2299), + [sym_scoped_type_identifier] = STATE(2203), + [sym_const_block] = STATE(2163), + [sym__pattern] = STATE(2191), + [sym_generic_pattern] = STATE(2163), + [sym_tuple_pattern] = STATE(2163), + [sym_slice_pattern] = STATE(2163), + [sym_tuple_struct_pattern] = STATE(2163), + [sym_struct_pattern] = STATE(2163), + [sym_remaining_field_pattern] = STATE(2163), + [sym_mut_pattern] = STATE(2163), + [sym_range_pattern] = STATE(2163), + [sym_ref_pattern] = STATE(2163), + [sym_captured_pattern] = STATE(2163), + [sym_reference_pattern] = STATE(2163), + [sym_or_pattern] = STATE(2163), + [sym__literal_pattern] = STATE(2098), + [sym_negative_literal] = STATE(2095), + [sym_string_literal] = STATE(2095), + [sym_raw_string_literal] = STATE(2095), + [sym_boolean_literal] = STATE(2095), [sym_line_comment] = STATE(432), [sym_block_comment] = STATE(432), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(1323), - [anon_sym_LPAREN] = ACTIONS(1325), - [anon_sym_LBRACK] = ACTIONS(1233), - [anon_sym_STAR] = ACTIONS(1235), - [anon_sym_QMARK] = ACTIONS(1237), - [anon_sym_u8] = ACTIONS(1329), - [anon_sym_i8] = ACTIONS(1329), - [anon_sym_u16] = ACTIONS(1329), - [anon_sym_i16] = ACTIONS(1329), - [anon_sym_u32] = ACTIONS(1329), - [anon_sym_i32] = ACTIONS(1329), - [anon_sym_u64] = ACTIONS(1329), - [anon_sym_i64] = ACTIONS(1329), - [anon_sym_u128] = ACTIONS(1329), - [anon_sym_i128] = ACTIONS(1329), - [anon_sym_isize] = ACTIONS(1329), - [anon_sym_usize] = ACTIONS(1329), - [anon_sym_f32] = ACTIONS(1329), - [anon_sym_f64] = ACTIONS(1329), - [anon_sym_bool] = ACTIONS(1329), - [anon_sym_str] = ACTIONS(1329), - [anon_sym_char] = ACTIONS(1329), - [anon_sym_DASH] = ACTIONS(1241), - [anon_sym_BANG] = ACTIONS(1243), - [anon_sym_AMP] = ACTIONS(1563), - [anon_sym_PIPE] = ACTIONS(1247), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1451), - [anon_sym_DOT_DOT] = ACTIONS(1251), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1255), - [anon_sym_COLON_COLON] = ACTIONS(1337), - [anon_sym_SQUOTE] = ACTIONS(1263), - [anon_sym_async] = ACTIONS(1265), - [anon_sym_const] = ACTIONS(1267), - [anon_sym_default] = ACTIONS(1339), - [anon_sym_fn] = ACTIONS(1271), - [anon_sym_for] = ACTIONS(1273), - [anon_sym_gen] = ACTIONS(1341), - [anon_sym_impl] = ACTIONS(1277), - [anon_sym_union] = ACTIONS(1341), - [anon_sym_unsafe] = ACTIONS(1265), - [anon_sym_extern] = ACTIONS(1279), - [anon_sym_ref] = ACTIONS(1281), - [anon_sym_dyn] = ACTIONS(1283), - [sym_mutable_specifier] = ACTIONS(1457), - [sym_integer_literal] = ACTIONS(1287), - [aux_sym_string_literal_token1] = ACTIONS(1289), - [sym_char_literal] = ACTIONS(1287), - [anon_sym_true] = ACTIONS(1291), - [anon_sym_false] = ACTIONS(1291), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1577), - [sym_super] = ACTIONS(1345), - [sym_crate] = ACTIONS(1345), - [sym_metavariable] = ACTIONS(1347), - [sym__raw_string_literal_start] = ACTIONS(1299), - [sym_float_literal] = ACTIONS(1287), + [aux_sym_function_modifiers_repeat1] = STATE(2244), + [sym_identifier] = ACTIONS(1306), + [anon_sym_LPAREN] = ACTIONS(1308), + [anon_sym_LBRACK] = ACTIONS(1238), + [anon_sym_STAR] = ACTIONS(1240), + [anon_sym_QMARK] = ACTIONS(1242), + [anon_sym_u8] = ACTIONS(1312), + [anon_sym_i8] = ACTIONS(1312), + [anon_sym_u16] = ACTIONS(1312), + [anon_sym_i16] = ACTIONS(1312), + [anon_sym_u32] = ACTIONS(1312), + [anon_sym_i32] = ACTIONS(1312), + [anon_sym_u64] = ACTIONS(1312), + [anon_sym_i64] = ACTIONS(1312), + [anon_sym_u128] = ACTIONS(1312), + [anon_sym_i128] = ACTIONS(1312), + [anon_sym_isize] = ACTIONS(1312), + [anon_sym_usize] = ACTIONS(1312), + [anon_sym_f32] = ACTIONS(1312), + [anon_sym_f64] = ACTIONS(1312), + [anon_sym_bool] = ACTIONS(1312), + [anon_sym_str] = ACTIONS(1312), + [anon_sym_char] = ACTIONS(1312), + [anon_sym_DASH] = ACTIONS(1246), + [anon_sym_BANG] = ACTIONS(1248), + [anon_sym_AMP] = ACTIONS(1568), + [anon_sym_PIPE] = ACTIONS(1252), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1428), + [anon_sym_DOT_DOT] = ACTIONS(1256), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1260), + [anon_sym_COLON_COLON] = ACTIONS(1320), + [anon_sym_SQUOTE] = ACTIONS(1268), + [anon_sym_async] = ACTIONS(1270), + [anon_sym_const] = ACTIONS(1272), + [anon_sym_default] = ACTIONS(1322), + [anon_sym_fn] = ACTIONS(1276), + [anon_sym_for] = ACTIONS(1278), + [anon_sym_gen] = ACTIONS(1324), + [anon_sym_impl] = ACTIONS(1282), + [anon_sym_union] = ACTIONS(1324), + [anon_sym_unsafe] = ACTIONS(1270), + [anon_sym_extern] = ACTIONS(1284), + [anon_sym_safe] = ACTIONS(1270), + [anon_sym_ref] = ACTIONS(1286), + [anon_sym_dyn] = ACTIONS(1288), + [sym_mutable_specifier] = ACTIONS(1584), + [sym_integer_literal] = ACTIONS(1292), + [aux_sym_string_literal_token1] = ACTIONS(1294), + [sym_char_literal] = ACTIONS(1292), + [anon_sym_true] = ACTIONS(1296), + [anon_sym_false] = ACTIONS(1296), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1328), + [sym_super] = ACTIONS(1328), + [sym_crate] = ACTIONS(1328), + [sym_metavariable] = ACTIONS(1330), + [sym__raw_string_literal_start] = ACTIONS(1304), + [sym_float_literal] = ACTIONS(1292), }, [STATE(433)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2056), - [sym_bracketed_type] = STATE(3653), - [sym_lifetime] = STATE(853), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3387), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2544), - [sym_scoped_identifier] = STATE(2237), - [sym_scoped_type_identifier] = STATE(2154), - [sym_const_block] = STATE(2150), - [sym__pattern] = STATE(2152), - [sym_generic_pattern] = STATE(2150), - [sym_tuple_pattern] = STATE(2150), - [sym_slice_pattern] = STATE(2150), - [sym_tuple_struct_pattern] = STATE(2150), - [sym_struct_pattern] = STATE(2150), - [sym_remaining_field_pattern] = STATE(2150), - [sym_mut_pattern] = STATE(2150), - [sym_range_pattern] = STATE(2150), - [sym_ref_pattern] = STATE(2150), - [sym_captured_pattern] = STATE(2150), - [sym_reference_pattern] = STATE(2150), - [sym_or_pattern] = STATE(2150), - [sym__literal_pattern] = STATE(2076), - [sym_negative_literal] = STATE(2074), - [sym_string_literal] = STATE(2074), - [sym_raw_string_literal] = STATE(2074), - [sym_boolean_literal] = STATE(2074), + [sym_function_modifiers] = STATE(3591), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2373), + [sym__type] = STATE(2082), + [sym_bracketed_type] = STATE(3681), + [sym_lifetime] = STATE(3727), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1591), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2022), + [sym_generic_type_with_turbofish] = STATE(3160), + [sym_bounded_type] = STATE(2069), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2548), + [sym_scoped_identifier] = STATE(2208), + [sym_scoped_type_identifier] = STATE(2203), + [sym_const_block] = STATE(2163), + [sym__pattern] = STATE(2195), + [sym_generic_pattern] = STATE(2163), + [sym_tuple_pattern] = STATE(2163), + [sym_slice_pattern] = STATE(2163), + [sym_tuple_struct_pattern] = STATE(2163), + [sym_struct_pattern] = STATE(2163), + [sym_remaining_field_pattern] = STATE(2163), + [sym_mut_pattern] = STATE(2163), + [sym_range_pattern] = STATE(2163), + [sym_ref_pattern] = STATE(2163), + [sym_captured_pattern] = STATE(2163), + [sym_reference_pattern] = STATE(2163), + [sym_or_pattern] = STATE(2163), + [sym__literal_pattern] = STATE(2098), + [sym_negative_literal] = STATE(2095), + [sym_string_literal] = STATE(2095), + [sym_raw_string_literal] = STATE(2095), + [sym_boolean_literal] = STATE(2095), [sym_line_comment] = STATE(433), [sym_block_comment] = STATE(433), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(1541), - [anon_sym_LPAREN] = ACTIONS(1543), - [anon_sym_LBRACK] = ACTIONS(1233), - [anon_sym_STAR] = ACTIONS(1235), - [anon_sym_QMARK] = ACTIONS(1237), - [anon_sym_u8] = ACTIONS(1547), - [anon_sym_i8] = ACTIONS(1547), - [anon_sym_u16] = ACTIONS(1547), - [anon_sym_i16] = ACTIONS(1547), - [anon_sym_u32] = ACTIONS(1547), - [anon_sym_i32] = ACTIONS(1547), - [anon_sym_u64] = ACTIONS(1547), - [anon_sym_i64] = ACTIONS(1547), - [anon_sym_u128] = ACTIONS(1547), - [anon_sym_i128] = ACTIONS(1547), - [anon_sym_isize] = ACTIONS(1547), - [anon_sym_usize] = ACTIONS(1547), - [anon_sym_f32] = ACTIONS(1547), - [anon_sym_f64] = ACTIONS(1547), - [anon_sym_bool] = ACTIONS(1547), - [anon_sym_str] = ACTIONS(1547), - [anon_sym_char] = ACTIONS(1547), - [anon_sym_DASH] = ACTIONS(1241), - [anon_sym_BANG] = ACTIONS(1243), - [anon_sym_AMP] = ACTIONS(1549), - [anon_sym_PIPE] = ACTIONS(1247), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1451), - [anon_sym_DOT_DOT] = ACTIONS(1251), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1255), - [anon_sym_COLON_COLON] = ACTIONS(1553), - [anon_sym_SQUOTE] = ACTIONS(1263), - [anon_sym_async] = ACTIONS(1265), - [anon_sym_const] = ACTIONS(1267), - [anon_sym_default] = ACTIONS(1555), - [anon_sym_fn] = ACTIONS(1271), - [anon_sym_for] = ACTIONS(1273), - [anon_sym_gen] = ACTIONS(1557), - [anon_sym_impl] = ACTIONS(1277), - [anon_sym_union] = ACTIONS(1557), - [anon_sym_unsafe] = ACTIONS(1265), - [anon_sym_extern] = ACTIONS(1279), - [anon_sym_ref] = ACTIONS(1281), - [anon_sym_dyn] = ACTIONS(1283), - [sym_mutable_specifier] = ACTIONS(1579), - [sym_integer_literal] = ACTIONS(1287), - [aux_sym_string_literal_token1] = ACTIONS(1289), - [sym_char_literal] = ACTIONS(1287), - [anon_sym_true] = ACTIONS(1291), - [anon_sym_false] = ACTIONS(1291), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1559), - [sym_super] = ACTIONS(1559), - [sym_crate] = ACTIONS(1559), - [sym_metavariable] = ACTIONS(1561), - [sym__raw_string_literal_start] = ACTIONS(1299), - [sym_float_literal] = ACTIONS(1287), + [aux_sym_function_modifiers_repeat1] = STATE(2244), + [sym_identifier] = ACTIONS(1232), + [anon_sym_LPAREN] = ACTIONS(1234), + [anon_sym_LBRACK] = ACTIONS(1238), + [anon_sym_STAR] = ACTIONS(1240), + [anon_sym_QMARK] = ACTIONS(1242), + [anon_sym_u8] = ACTIONS(1244), + [anon_sym_i8] = ACTIONS(1244), + [anon_sym_u16] = ACTIONS(1244), + [anon_sym_i16] = ACTIONS(1244), + [anon_sym_u32] = ACTIONS(1244), + [anon_sym_i32] = ACTIONS(1244), + [anon_sym_u64] = ACTIONS(1244), + [anon_sym_i64] = ACTIONS(1244), + [anon_sym_u128] = ACTIONS(1244), + [anon_sym_i128] = ACTIONS(1244), + [anon_sym_isize] = ACTIONS(1244), + [anon_sym_usize] = ACTIONS(1244), + [anon_sym_f32] = ACTIONS(1244), + [anon_sym_f64] = ACTIONS(1244), + [anon_sym_bool] = ACTIONS(1244), + [anon_sym_str] = ACTIONS(1244), + [anon_sym_char] = ACTIONS(1244), + [anon_sym_DASH] = ACTIONS(1246), + [anon_sym_BANG] = ACTIONS(1248), + [anon_sym_AMP] = ACTIONS(1424), + [anon_sym_PIPE] = ACTIONS(1252), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1428), + [anon_sym_DOT_DOT] = ACTIONS(1256), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1260), + [anon_sym_COLON_COLON] = ACTIONS(1264), + [anon_sym_SQUOTE] = ACTIONS(1268), + [anon_sym_async] = ACTIONS(1270), + [anon_sym_const] = ACTIONS(1272), + [anon_sym_default] = ACTIONS(1274), + [anon_sym_fn] = ACTIONS(1276), + [anon_sym_for] = ACTIONS(1278), + [anon_sym_gen] = ACTIONS(1280), + [anon_sym_impl] = ACTIONS(1282), + [anon_sym_union] = ACTIONS(1280), + [anon_sym_unsafe] = ACTIONS(1270), + [anon_sym_extern] = ACTIONS(1284), + [anon_sym_safe] = ACTIONS(1270), + [anon_sym_ref] = ACTIONS(1286), + [anon_sym_dyn] = ACTIONS(1288), + [sym_mutable_specifier] = ACTIONS(1434), + [sym_integer_literal] = ACTIONS(1292), + [aux_sym_string_literal_token1] = ACTIONS(1294), + [sym_char_literal] = ACTIONS(1292), + [anon_sym_true] = ACTIONS(1296), + [anon_sym_false] = ACTIONS(1296), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1300), + [sym_super] = ACTIONS(1300), + [sym_crate] = ACTIONS(1300), + [sym_metavariable] = ACTIONS(1302), + [sym__raw_string_literal_start] = ACTIONS(1304), + [sym_float_literal] = ACTIONS(1292), }, [STATE(434)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2056), - [sym_bracketed_type] = STATE(3644), - [sym_lifetime] = STATE(853), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3299), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2550), - [sym_scoped_identifier] = STATE(2273), - [sym_scoped_type_identifier] = STATE(2154), - [sym_const_block] = STATE(2150), - [sym__pattern] = STATE(2152), - [sym_generic_pattern] = STATE(2150), - [sym_tuple_pattern] = STATE(2150), - [sym_slice_pattern] = STATE(2150), - [sym_tuple_struct_pattern] = STATE(2150), - [sym_struct_pattern] = STATE(2150), - [sym_remaining_field_pattern] = STATE(2150), - [sym_mut_pattern] = STATE(2150), - [sym_range_pattern] = STATE(2150), - [sym_ref_pattern] = STATE(2150), - [sym_captured_pattern] = STATE(2150), - [sym_reference_pattern] = STATE(2150), - [sym_or_pattern] = STATE(2150), - [sym__literal_pattern] = STATE(2076), - [sym_negative_literal] = STATE(2074), - [sym_string_literal] = STATE(2074), - [sym_raw_string_literal] = STATE(2074), - [sym_boolean_literal] = STATE(2074), + [sym_function_modifiers] = STATE(3591), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2373), + [sym__type] = STATE(2082), + [sym_bracketed_type] = STATE(3681), + [sym_lifetime] = STATE(3727), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1591), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2022), + [sym_generic_type_with_turbofish] = STATE(3160), + [sym_bounded_type] = STATE(2069), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2548), + [sym_scoped_identifier] = STATE(2208), + [sym_scoped_type_identifier] = STATE(2203), + [sym_const_block] = STATE(2163), + [sym__pattern] = STATE(2195), + [sym_generic_pattern] = STATE(2163), + [sym_tuple_pattern] = STATE(2163), + [sym_slice_pattern] = STATE(2163), + [sym_tuple_struct_pattern] = STATE(2163), + [sym_struct_pattern] = STATE(2163), + [sym_remaining_field_pattern] = STATE(2163), + [sym_mut_pattern] = STATE(2163), + [sym_range_pattern] = STATE(2163), + [sym_ref_pattern] = STATE(2163), + [sym_captured_pattern] = STATE(2163), + [sym_reference_pattern] = STATE(2163), + [sym_or_pattern] = STATE(2163), + [sym__literal_pattern] = STATE(2098), + [sym_negative_literal] = STATE(2095), + [sym_string_literal] = STATE(2095), + [sym_raw_string_literal] = STATE(2095), + [sym_boolean_literal] = STATE(2095), [sym_line_comment] = STATE(434), [sym_block_comment] = STATE(434), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(1323), - [anon_sym_LPAREN] = ACTIONS(1325), - [anon_sym_LBRACK] = ACTIONS(1233), - [anon_sym_STAR] = ACTIONS(1235), - [anon_sym_QMARK] = ACTIONS(1237), - [anon_sym_u8] = ACTIONS(1329), - [anon_sym_i8] = ACTIONS(1329), - [anon_sym_u16] = ACTIONS(1329), - [anon_sym_i16] = ACTIONS(1329), - [anon_sym_u32] = ACTIONS(1329), - [anon_sym_i32] = ACTIONS(1329), - [anon_sym_u64] = ACTIONS(1329), - [anon_sym_i64] = ACTIONS(1329), - [anon_sym_u128] = ACTIONS(1329), - [anon_sym_i128] = ACTIONS(1329), - [anon_sym_isize] = ACTIONS(1329), - [anon_sym_usize] = ACTIONS(1329), - [anon_sym_f32] = ACTIONS(1329), - [anon_sym_f64] = ACTIONS(1329), - [anon_sym_bool] = ACTIONS(1329), - [anon_sym_str] = ACTIONS(1329), - [anon_sym_char] = ACTIONS(1329), - [anon_sym_DASH] = ACTIONS(1241), - [anon_sym_BANG] = ACTIONS(1243), - [anon_sym_AMP] = ACTIONS(1563), - [anon_sym_PIPE] = ACTIONS(1247), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1451), - [anon_sym_DOT_DOT] = ACTIONS(1251), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1255), - [anon_sym_COLON_COLON] = ACTIONS(1337), - [anon_sym_SQUOTE] = ACTIONS(1263), - [anon_sym_async] = ACTIONS(1265), - [anon_sym_const] = ACTIONS(1267), - [anon_sym_default] = ACTIONS(1339), - [anon_sym_fn] = ACTIONS(1271), - [anon_sym_for] = ACTIONS(1273), - [anon_sym_gen] = ACTIONS(1341), - [anon_sym_impl] = ACTIONS(1277), - [anon_sym_union] = ACTIONS(1341), - [anon_sym_unsafe] = ACTIONS(1265), - [anon_sym_extern] = ACTIONS(1279), - [anon_sym_ref] = ACTIONS(1281), - [anon_sym_dyn] = ACTIONS(1283), - [sym_mutable_specifier] = ACTIONS(1581), - [sym_integer_literal] = ACTIONS(1287), - [aux_sym_string_literal_token1] = ACTIONS(1289), - [sym_char_literal] = ACTIONS(1287), - [anon_sym_true] = ACTIONS(1291), - [anon_sym_false] = ACTIONS(1291), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1345), - [sym_super] = ACTIONS(1345), - [sym_crate] = ACTIONS(1345), - [sym_metavariable] = ACTIONS(1347), - [sym__raw_string_literal_start] = ACTIONS(1299), - [sym_float_literal] = ACTIONS(1287), + [aux_sym_function_modifiers_repeat1] = STATE(2244), + [sym_identifier] = ACTIONS(1232), + [anon_sym_LPAREN] = ACTIONS(1234), + [anon_sym_LBRACK] = ACTIONS(1238), + [anon_sym_STAR] = ACTIONS(1240), + [anon_sym_QMARK] = ACTIONS(1242), + [anon_sym_u8] = ACTIONS(1244), + [anon_sym_i8] = ACTIONS(1244), + [anon_sym_u16] = ACTIONS(1244), + [anon_sym_i16] = ACTIONS(1244), + [anon_sym_u32] = ACTIONS(1244), + [anon_sym_i32] = ACTIONS(1244), + [anon_sym_u64] = ACTIONS(1244), + [anon_sym_i64] = ACTIONS(1244), + [anon_sym_u128] = ACTIONS(1244), + [anon_sym_i128] = ACTIONS(1244), + [anon_sym_isize] = ACTIONS(1244), + [anon_sym_usize] = ACTIONS(1244), + [anon_sym_f32] = ACTIONS(1244), + [anon_sym_f64] = ACTIONS(1244), + [anon_sym_bool] = ACTIONS(1244), + [anon_sym_str] = ACTIONS(1244), + [anon_sym_char] = ACTIONS(1244), + [anon_sym_DASH] = ACTIONS(1246), + [anon_sym_BANG] = ACTIONS(1248), + [anon_sym_AMP] = ACTIONS(1424), + [anon_sym_PIPE] = ACTIONS(1252), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1428), + [anon_sym_DOT_DOT] = ACTIONS(1256), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1260), + [anon_sym_COLON_COLON] = ACTIONS(1264), + [anon_sym_SQUOTE] = ACTIONS(1268), + [anon_sym_async] = ACTIONS(1270), + [anon_sym_const] = ACTIONS(1272), + [anon_sym_default] = ACTIONS(1274), + [anon_sym_fn] = ACTIONS(1276), + [anon_sym_for] = ACTIONS(1278), + [anon_sym_gen] = ACTIONS(1280), + [anon_sym_impl] = ACTIONS(1282), + [anon_sym_union] = ACTIONS(1280), + [anon_sym_unsafe] = ACTIONS(1270), + [anon_sym_extern] = ACTIONS(1284), + [anon_sym_safe] = ACTIONS(1270), + [anon_sym_ref] = ACTIONS(1286), + [anon_sym_dyn] = ACTIONS(1288), + [sym_mutable_specifier] = ACTIONS(1434), + [sym_integer_literal] = ACTIONS(1292), + [aux_sym_string_literal_token1] = ACTIONS(1294), + [sym_char_literal] = ACTIONS(1292), + [anon_sym_true] = ACTIONS(1296), + [anon_sym_false] = ACTIONS(1296), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1586), + [sym_super] = ACTIONS(1300), + [sym_crate] = ACTIONS(1300), + [sym_metavariable] = ACTIONS(1302), + [sym__raw_string_literal_start] = ACTIONS(1304), + [sym_float_literal] = ACTIONS(1292), }, [STATE(435)] = { + [sym_function_modifiers] = STATE(3591), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2373), + [sym__type] = STATE(2082), + [sym_bracketed_type] = STATE(3673), + [sym_lifetime] = STATE(3727), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1591), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2022), + [sym_generic_type_with_turbofish] = STATE(3329), + [sym_bounded_type] = STATE(2069), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2552), + [sym_scoped_identifier] = STATE(2299), + [sym_scoped_type_identifier] = STATE(2203), + [sym_const_block] = STATE(2163), + [sym__pattern] = STATE(2195), + [sym_generic_pattern] = STATE(2163), + [sym_tuple_pattern] = STATE(2163), + [sym_slice_pattern] = STATE(2163), + [sym_tuple_struct_pattern] = STATE(2163), + [sym_struct_pattern] = STATE(2163), + [sym_remaining_field_pattern] = STATE(2163), + [sym_mut_pattern] = STATE(2163), + [sym_range_pattern] = STATE(2163), + [sym_ref_pattern] = STATE(2163), + [sym_captured_pattern] = STATE(2163), + [sym_reference_pattern] = STATE(2163), + [sym_or_pattern] = STATE(2163), + [sym__literal_pattern] = STATE(2098), + [sym_negative_literal] = STATE(2095), + [sym_string_literal] = STATE(2095), + [sym_raw_string_literal] = STATE(2095), + [sym_boolean_literal] = STATE(2095), [sym_line_comment] = STATE(435), [sym_block_comment] = STATE(435), - [sym_identifier] = ACTIONS(1583), - [anon_sym_SEMI] = ACTIONS(1585), - [anon_sym_LPAREN] = ACTIONS(1585), - [anon_sym_RPAREN] = ACTIONS(1585), - [anon_sym_LBRACK] = ACTIONS(1585), - [anon_sym_RBRACK] = ACTIONS(1585), - [anon_sym_LBRACE] = ACTIONS(1585), - [anon_sym_RBRACE] = ACTIONS(1585), - [anon_sym_COLON] = ACTIONS(1583), - [anon_sym_PLUS] = ACTIONS(1583), - [anon_sym_STAR] = ACTIONS(1583), - [anon_sym_QMARK] = ACTIONS(1585), - [anon_sym_u8] = ACTIONS(1583), - [anon_sym_i8] = ACTIONS(1583), - [anon_sym_u16] = ACTIONS(1583), - [anon_sym_i16] = ACTIONS(1583), - [anon_sym_u32] = ACTIONS(1583), - [anon_sym_i32] = ACTIONS(1583), - [anon_sym_u64] = ACTIONS(1583), - [anon_sym_i64] = ACTIONS(1583), - [anon_sym_u128] = ACTIONS(1583), - [anon_sym_i128] = ACTIONS(1583), - [anon_sym_isize] = ACTIONS(1583), - [anon_sym_usize] = ACTIONS(1583), - [anon_sym_f32] = ACTIONS(1583), - [anon_sym_f64] = ACTIONS(1583), - [anon_sym_bool] = ACTIONS(1583), - [anon_sym_str] = ACTIONS(1583), - [anon_sym_char] = ACTIONS(1583), - [anon_sym_DASH] = ACTIONS(1583), - [anon_sym_SLASH] = ACTIONS(1583), - [anon_sym_PERCENT] = ACTIONS(1583), - [anon_sym_CARET] = ACTIONS(1583), - [anon_sym_BANG] = ACTIONS(1583), - [anon_sym_AMP] = ACTIONS(1583), - [anon_sym_PIPE] = ACTIONS(1583), - [anon_sym_AMP_AMP] = ACTIONS(1585), - [anon_sym_PIPE_PIPE] = ACTIONS(1585), - [anon_sym_LT_LT] = ACTIONS(1583), - [anon_sym_GT_GT] = ACTIONS(1583), - [anon_sym_PLUS_EQ] = ACTIONS(1585), - [anon_sym_DASH_EQ] = ACTIONS(1585), - [anon_sym_STAR_EQ] = ACTIONS(1585), - [anon_sym_SLASH_EQ] = ACTIONS(1585), - [anon_sym_PERCENT_EQ] = ACTIONS(1585), - [anon_sym_CARET_EQ] = ACTIONS(1585), - [anon_sym_AMP_EQ] = ACTIONS(1585), - [anon_sym_PIPE_EQ] = ACTIONS(1585), - [anon_sym_LT_LT_EQ] = ACTIONS(1585), - [anon_sym_GT_GT_EQ] = ACTIONS(1585), - [anon_sym_EQ] = ACTIONS(1583), - [anon_sym_EQ_EQ] = ACTIONS(1585), - [anon_sym_BANG_EQ] = ACTIONS(1585), - [anon_sym_GT] = ACTIONS(1583), - [anon_sym_LT] = ACTIONS(1583), - [anon_sym_GT_EQ] = ACTIONS(1585), - [anon_sym_LT_EQ] = ACTIONS(1585), - [anon_sym_DOT] = ACTIONS(1583), - [anon_sym_DOT_DOT] = ACTIONS(1583), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1585), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1585), - [anon_sym_COMMA] = ACTIONS(1585), - [anon_sym_COLON_COLON] = ACTIONS(1585), - [anon_sym_SQUOTE] = ACTIONS(1583), - [anon_sym_as] = ACTIONS(1583), - [anon_sym_async] = ACTIONS(1583), - [anon_sym_break] = ACTIONS(1583), - [anon_sym_const] = ACTIONS(1583), - [anon_sym_continue] = ACTIONS(1583), - [anon_sym_default] = ACTIONS(1583), - [anon_sym_for] = ACTIONS(1583), - [anon_sym_gen] = ACTIONS(1583), - [anon_sym_if] = ACTIONS(1583), - [anon_sym_loop] = ACTIONS(1583), - [anon_sym_match] = ACTIONS(1583), - [anon_sym_return] = ACTIONS(1583), - [anon_sym_static] = ACTIONS(1583), - [anon_sym_union] = ACTIONS(1583), - [anon_sym_unsafe] = ACTIONS(1583), - [anon_sym_while] = ACTIONS(1583), - [anon_sym_else] = ACTIONS(1583), - [anon_sym_yield] = ACTIONS(1583), - [anon_sym_move] = ACTIONS(1583), - [anon_sym_try] = ACTIONS(1583), - [sym_integer_literal] = ACTIONS(1585), - [aux_sym_string_literal_token1] = ACTIONS(1585), - [sym_char_literal] = ACTIONS(1585), - [anon_sym_true] = ACTIONS(1583), - [anon_sym_false] = ACTIONS(1583), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1583), - [sym_super] = ACTIONS(1583), - [sym_crate] = ACTIONS(1583), - [sym_metavariable] = ACTIONS(1585), - [sym__raw_string_literal_start] = ACTIONS(1585), - [sym_float_literal] = ACTIONS(1585), + [aux_sym_function_modifiers_repeat1] = STATE(2244), + [sym_identifier] = ACTIONS(1306), + [anon_sym_LPAREN] = ACTIONS(1308), + [anon_sym_LBRACK] = ACTIONS(1238), + [anon_sym_STAR] = ACTIONS(1240), + [anon_sym_QMARK] = ACTIONS(1242), + [anon_sym_u8] = ACTIONS(1312), + [anon_sym_i8] = ACTIONS(1312), + [anon_sym_u16] = ACTIONS(1312), + [anon_sym_i16] = ACTIONS(1312), + [anon_sym_u32] = ACTIONS(1312), + [anon_sym_i32] = ACTIONS(1312), + [anon_sym_u64] = ACTIONS(1312), + [anon_sym_i64] = ACTIONS(1312), + [anon_sym_u128] = ACTIONS(1312), + [anon_sym_i128] = ACTIONS(1312), + [anon_sym_isize] = ACTIONS(1312), + [anon_sym_usize] = ACTIONS(1312), + [anon_sym_f32] = ACTIONS(1312), + [anon_sym_f64] = ACTIONS(1312), + [anon_sym_bool] = ACTIONS(1312), + [anon_sym_str] = ACTIONS(1312), + [anon_sym_char] = ACTIONS(1312), + [anon_sym_DASH] = ACTIONS(1246), + [anon_sym_BANG] = ACTIONS(1248), + [anon_sym_AMP] = ACTIONS(1568), + [anon_sym_PIPE] = ACTIONS(1252), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1428), + [anon_sym_DOT_DOT] = ACTIONS(1256), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1260), + [anon_sym_COLON_COLON] = ACTIONS(1320), + [anon_sym_SQUOTE] = ACTIONS(1268), + [anon_sym_async] = ACTIONS(1270), + [anon_sym_const] = ACTIONS(1272), + [anon_sym_default] = ACTIONS(1322), + [anon_sym_fn] = ACTIONS(1276), + [anon_sym_for] = ACTIONS(1278), + [anon_sym_gen] = ACTIONS(1324), + [anon_sym_impl] = ACTIONS(1282), + [anon_sym_union] = ACTIONS(1324), + [anon_sym_unsafe] = ACTIONS(1270), + [anon_sym_extern] = ACTIONS(1284), + [anon_sym_safe] = ACTIONS(1270), + [anon_sym_ref] = ACTIONS(1286), + [anon_sym_dyn] = ACTIONS(1288), + [sym_mutable_specifier] = ACTIONS(1434), + [sym_integer_literal] = ACTIONS(1292), + [aux_sym_string_literal_token1] = ACTIONS(1294), + [sym_char_literal] = ACTIONS(1292), + [anon_sym_true] = ACTIONS(1296), + [anon_sym_false] = ACTIONS(1296), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1328), + [sym_super] = ACTIONS(1328), + [sym_crate] = ACTIONS(1328), + [sym_metavariable] = ACTIONS(1330), + [sym__raw_string_literal_start] = ACTIONS(1304), + [sym_float_literal] = ACTIONS(1292), }, [STATE(436)] = { + [sym_function_modifiers] = STATE(3591), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2373), + [sym__type] = STATE(2082), + [sym_bracketed_type] = STATE(3682), + [sym_lifetime] = STATE(3727), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1591), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2022), + [sym_generic_type_with_turbofish] = STATE(3420), + [sym_bounded_type] = STATE(2069), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2568), + [sym_scoped_identifier] = STATE(2254), + [sym_scoped_type_identifier] = STATE(2203), + [sym_const_block] = STATE(2163), + [sym__pattern] = STATE(2195), + [sym_generic_pattern] = STATE(2163), + [sym_tuple_pattern] = STATE(2163), + [sym_slice_pattern] = STATE(2163), + [sym_tuple_struct_pattern] = STATE(2163), + [sym_struct_pattern] = STATE(2163), + [sym_remaining_field_pattern] = STATE(2163), + [sym_mut_pattern] = STATE(2163), + [sym_range_pattern] = STATE(2163), + [sym_ref_pattern] = STATE(2163), + [sym_captured_pattern] = STATE(2163), + [sym_reference_pattern] = STATE(2163), + [sym_or_pattern] = STATE(2163), + [sym__literal_pattern] = STATE(2098), + [sym_negative_literal] = STATE(2095), + [sym_string_literal] = STATE(2095), + [sym_raw_string_literal] = STATE(2095), + [sym_boolean_literal] = STATE(2095), [sym_line_comment] = STATE(436), [sym_block_comment] = STATE(436), - [sym_identifier] = ACTIONS(1583), - [anon_sym_LPAREN] = ACTIONS(1585), - [anon_sym_LBRACK] = ACTIONS(1585), - [anon_sym_LBRACE] = ACTIONS(1585), - [anon_sym_EQ_GT] = ACTIONS(1585), - [anon_sym_COLON] = ACTIONS(1583), - [anon_sym_PLUS] = ACTIONS(1583), - [anon_sym_STAR] = ACTIONS(1583), - [anon_sym_QMARK] = ACTIONS(1585), - [anon_sym_u8] = ACTIONS(1583), - [anon_sym_i8] = ACTIONS(1583), - [anon_sym_u16] = ACTIONS(1583), - [anon_sym_i16] = ACTIONS(1583), - [anon_sym_u32] = ACTIONS(1583), - [anon_sym_i32] = ACTIONS(1583), - [anon_sym_u64] = ACTIONS(1583), - [anon_sym_i64] = ACTIONS(1583), - [anon_sym_u128] = ACTIONS(1583), - [anon_sym_i128] = ACTIONS(1583), - [anon_sym_isize] = ACTIONS(1583), - [anon_sym_usize] = ACTIONS(1583), - [anon_sym_f32] = ACTIONS(1583), - [anon_sym_f64] = ACTIONS(1583), - [anon_sym_bool] = ACTIONS(1583), - [anon_sym_str] = ACTIONS(1583), - [anon_sym_char] = ACTIONS(1583), - [anon_sym_DASH] = ACTIONS(1583), - [anon_sym_SLASH] = ACTIONS(1583), - [anon_sym_PERCENT] = ACTIONS(1583), - [anon_sym_CARET] = ACTIONS(1583), - [anon_sym_BANG] = ACTIONS(1583), - [anon_sym_AMP] = ACTIONS(1583), - [anon_sym_PIPE] = ACTIONS(1583), - [anon_sym_AMP_AMP] = ACTIONS(1585), - [anon_sym_PIPE_PIPE] = ACTIONS(1585), - [anon_sym_LT_LT] = ACTIONS(1583), - [anon_sym_GT_GT] = ACTIONS(1583), - [anon_sym_PLUS_EQ] = ACTIONS(1585), - [anon_sym_DASH_EQ] = ACTIONS(1585), - [anon_sym_STAR_EQ] = ACTIONS(1585), - [anon_sym_SLASH_EQ] = ACTIONS(1585), - [anon_sym_PERCENT_EQ] = ACTIONS(1585), - [anon_sym_CARET_EQ] = ACTIONS(1585), - [anon_sym_AMP_EQ] = ACTIONS(1585), - [anon_sym_PIPE_EQ] = ACTIONS(1585), - [anon_sym_LT_LT_EQ] = ACTIONS(1585), - [anon_sym_GT_GT_EQ] = ACTIONS(1585), - [anon_sym_EQ] = ACTIONS(1583), - [anon_sym_EQ_EQ] = ACTIONS(1585), - [anon_sym_BANG_EQ] = ACTIONS(1585), - [anon_sym_GT] = ACTIONS(1583), - [anon_sym_LT] = ACTIONS(1583), - [anon_sym_GT_EQ] = ACTIONS(1585), - [anon_sym_LT_EQ] = ACTIONS(1585), - [anon_sym_DOT] = ACTIONS(1583), - [anon_sym_DOT_DOT] = ACTIONS(1583), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1585), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1585), - [anon_sym_COLON_COLON] = ACTIONS(1585), - [anon_sym_SQUOTE] = ACTIONS(1583), - [anon_sym_as] = ACTIONS(1583), - [anon_sym_async] = ACTIONS(1583), - [anon_sym_break] = ACTIONS(1583), - [anon_sym_const] = ACTIONS(1583), - [anon_sym_continue] = ACTIONS(1583), - [anon_sym_default] = ACTIONS(1583), - [anon_sym_for] = ACTIONS(1583), - [anon_sym_gen] = ACTIONS(1583), - [anon_sym_if] = ACTIONS(1583), - [anon_sym_loop] = ACTIONS(1583), - [anon_sym_match] = ACTIONS(1583), - [anon_sym_return] = ACTIONS(1583), - [anon_sym_static] = ACTIONS(1583), - [anon_sym_union] = ACTIONS(1583), - [anon_sym_unsafe] = ACTIONS(1583), - [anon_sym_while] = ACTIONS(1583), - [anon_sym_yield] = ACTIONS(1583), - [anon_sym_move] = ACTIONS(1583), - [anon_sym_try] = ACTIONS(1583), - [sym_integer_literal] = ACTIONS(1585), - [aux_sym_string_literal_token1] = ACTIONS(1585), - [sym_char_literal] = ACTIONS(1585), - [anon_sym_true] = ACTIONS(1583), - [anon_sym_false] = ACTIONS(1583), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1583), - [sym_super] = ACTIONS(1583), - [sym_crate] = ACTIONS(1583), - [sym_metavariable] = ACTIONS(1585), - [sym__raw_string_literal_start] = ACTIONS(1585), - [sym_float_literal] = ACTIONS(1585), + [aux_sym_function_modifiers_repeat1] = STATE(2244), + [sym_identifier] = ACTIONS(1546), + [anon_sym_LPAREN] = ACTIONS(1548), + [anon_sym_LBRACK] = ACTIONS(1238), + [anon_sym_STAR] = ACTIONS(1240), + [anon_sym_QMARK] = ACTIONS(1242), + [anon_sym_u8] = ACTIONS(1552), + [anon_sym_i8] = ACTIONS(1552), + [anon_sym_u16] = ACTIONS(1552), + [anon_sym_i16] = ACTIONS(1552), + [anon_sym_u32] = ACTIONS(1552), + [anon_sym_i32] = ACTIONS(1552), + [anon_sym_u64] = ACTIONS(1552), + [anon_sym_i64] = ACTIONS(1552), + [anon_sym_u128] = ACTIONS(1552), + [anon_sym_i128] = ACTIONS(1552), + [anon_sym_isize] = ACTIONS(1552), + [anon_sym_usize] = ACTIONS(1552), + [anon_sym_f32] = ACTIONS(1552), + [anon_sym_f64] = ACTIONS(1552), + [anon_sym_bool] = ACTIONS(1552), + [anon_sym_str] = ACTIONS(1552), + [anon_sym_char] = ACTIONS(1552), + [anon_sym_DASH] = ACTIONS(1246), + [anon_sym_BANG] = ACTIONS(1248), + [anon_sym_AMP] = ACTIONS(1554), + [anon_sym_PIPE] = ACTIONS(1252), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1428), + [anon_sym_DOT_DOT] = ACTIONS(1256), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1260), + [anon_sym_COLON_COLON] = ACTIONS(1558), + [anon_sym_SQUOTE] = ACTIONS(1268), + [anon_sym_async] = ACTIONS(1270), + [anon_sym_const] = ACTIONS(1272), + [anon_sym_default] = ACTIONS(1560), + [anon_sym_fn] = ACTIONS(1276), + [anon_sym_for] = ACTIONS(1278), + [anon_sym_gen] = ACTIONS(1562), + [anon_sym_impl] = ACTIONS(1282), + [anon_sym_union] = ACTIONS(1562), + [anon_sym_unsafe] = ACTIONS(1270), + [anon_sym_extern] = ACTIONS(1284), + [anon_sym_safe] = ACTIONS(1270), + [anon_sym_ref] = ACTIONS(1286), + [anon_sym_dyn] = ACTIONS(1288), + [sym_mutable_specifier] = ACTIONS(1434), + [sym_integer_literal] = ACTIONS(1292), + [aux_sym_string_literal_token1] = ACTIONS(1294), + [sym_char_literal] = ACTIONS(1292), + [anon_sym_true] = ACTIONS(1296), + [anon_sym_false] = ACTIONS(1296), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1564), + [sym_super] = ACTIONS(1564), + [sym_crate] = ACTIONS(1564), + [sym_metavariable] = ACTIONS(1566), + [sym__raw_string_literal_start] = ACTIONS(1304), + [sym_float_literal] = ACTIONS(1292), }, [STATE(437)] = { - [sym_bracketed_type] = STATE(3448), - [sym_generic_type] = STATE(3450), - [sym_generic_type_with_turbofish] = STATE(3159), - [sym_macro_invocation] = STATE(2150), - [sym_scoped_identifier] = STATE(2016), - [sym_scoped_type_identifier] = STATE(2988), - [sym_const_block] = STATE(2150), - [sym__pattern] = STATE(2153), - [sym_generic_pattern] = STATE(2150), - [sym_tuple_pattern] = STATE(2150), - [sym_slice_pattern] = STATE(2150), - [sym_tuple_struct_pattern] = STATE(2150), - [sym_struct_pattern] = STATE(2150), - [sym_remaining_field_pattern] = STATE(2150), - [sym_mut_pattern] = STATE(2150), - [sym_range_pattern] = STATE(2150), - [sym_ref_pattern] = STATE(2150), - [sym_captured_pattern] = STATE(2150), - [sym_reference_pattern] = STATE(2150), - [sym_or_pattern] = STATE(2150), - [sym__literal_pattern] = STATE(2076), - [sym_negative_literal] = STATE(2074), - [sym_string_literal] = STATE(2074), - [sym_raw_string_literal] = STATE(2074), - [sym_boolean_literal] = STATE(2074), [sym_line_comment] = STATE(437), [sym_block_comment] = STATE(437), - [sym_identifier] = ACTIONS(1587), - [anon_sym_LPAREN] = ACTIONS(1589), - [anon_sym_LBRACK] = ACTIONS(1589), - [anon_sym_LBRACE] = ACTIONS(1589), - [anon_sym_STAR] = ACTIONS(1589), - [anon_sym_u8] = ACTIONS(1587), - [anon_sym_i8] = ACTIONS(1587), - [anon_sym_u16] = ACTIONS(1587), - [anon_sym_i16] = ACTIONS(1587), - [anon_sym_u32] = ACTIONS(1587), - [anon_sym_i32] = ACTIONS(1587), - [anon_sym_u64] = ACTIONS(1587), - [anon_sym_i64] = ACTIONS(1587), - [anon_sym_u128] = ACTIONS(1587), - [anon_sym_i128] = ACTIONS(1587), - [anon_sym_isize] = ACTIONS(1587), - [anon_sym_usize] = ACTIONS(1587), - [anon_sym_f32] = ACTIONS(1587), - [anon_sym_f64] = ACTIONS(1587), - [anon_sym_bool] = ACTIONS(1587), - [anon_sym_str] = ACTIONS(1587), - [anon_sym_char] = ACTIONS(1587), - [anon_sym_DASH] = ACTIONS(1587), - [anon_sym_BANG] = ACTIONS(1589), - [anon_sym_AMP] = ACTIONS(1589), - [anon_sym_PIPE] = ACTIONS(1589), - [anon_sym_LT] = ACTIONS(1589), - [anon_sym__] = ACTIONS(1587), - [anon_sym_DOT_DOT] = ACTIONS(1587), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1255), - [anon_sym_COLON_COLON] = ACTIONS(1589), - [anon_sym_DASH_GT] = ACTIONS(1589), - [anon_sym_SQUOTE] = ACTIONS(1587), - [anon_sym_async] = ACTIONS(1587), - [anon_sym_break] = ACTIONS(1587), - [anon_sym_const] = ACTIONS(1587), - [anon_sym_continue] = ACTIONS(1587), - [anon_sym_default] = ACTIONS(1587), - [anon_sym_for] = ACTIONS(1587), - [anon_sym_gen] = ACTIONS(1587), - [anon_sym_if] = ACTIONS(1587), - [anon_sym_loop] = ACTIONS(1587), - [anon_sym_match] = ACTIONS(1587), - [anon_sym_return] = ACTIONS(1587), - [anon_sym_static] = ACTIONS(1587), - [anon_sym_union] = ACTIONS(1587), - [anon_sym_unsafe] = ACTIONS(1587), - [anon_sym_while] = ACTIONS(1587), - [anon_sym_ref] = ACTIONS(1281), - [sym_mutable_specifier] = ACTIONS(1457), - [anon_sym_yield] = ACTIONS(1587), - [anon_sym_move] = ACTIONS(1587), - [anon_sym_try] = ACTIONS(1587), - [sym_integer_literal] = ACTIONS(1589), - [aux_sym_string_literal_token1] = ACTIONS(1589), - [sym_char_literal] = ACTIONS(1589), - [anon_sym_true] = ACTIONS(1587), - [anon_sym_false] = ACTIONS(1587), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1587), - [sym_super] = ACTIONS(1587), - [sym_crate] = ACTIONS(1587), - [sym_metavariable] = ACTIONS(1589), - [sym__raw_string_literal_start] = ACTIONS(1589), - [sym_float_literal] = ACTIONS(1589), + [sym_identifier] = ACTIONS(1588), + [anon_sym_SEMI] = ACTIONS(1590), + [anon_sym_LPAREN] = ACTIONS(1590), + [anon_sym_RPAREN] = ACTIONS(1590), + [anon_sym_LBRACK] = ACTIONS(1590), + [anon_sym_RBRACK] = ACTIONS(1590), + [anon_sym_LBRACE] = ACTIONS(1590), + [anon_sym_RBRACE] = ACTIONS(1590), + [anon_sym_COLON] = ACTIONS(1588), + [anon_sym_PLUS] = ACTIONS(1588), + [anon_sym_STAR] = ACTIONS(1588), + [anon_sym_QMARK] = ACTIONS(1590), + [anon_sym_u8] = ACTIONS(1588), + [anon_sym_i8] = ACTIONS(1588), + [anon_sym_u16] = ACTIONS(1588), + [anon_sym_i16] = ACTIONS(1588), + [anon_sym_u32] = ACTIONS(1588), + [anon_sym_i32] = ACTIONS(1588), + [anon_sym_u64] = ACTIONS(1588), + [anon_sym_i64] = ACTIONS(1588), + [anon_sym_u128] = ACTIONS(1588), + [anon_sym_i128] = ACTIONS(1588), + [anon_sym_isize] = ACTIONS(1588), + [anon_sym_usize] = ACTIONS(1588), + [anon_sym_f32] = ACTIONS(1588), + [anon_sym_f64] = ACTIONS(1588), + [anon_sym_bool] = ACTIONS(1588), + [anon_sym_str] = ACTIONS(1588), + [anon_sym_char] = ACTIONS(1588), + [anon_sym_DASH] = ACTIONS(1588), + [anon_sym_SLASH] = ACTIONS(1588), + [anon_sym_PERCENT] = ACTIONS(1588), + [anon_sym_CARET] = ACTIONS(1588), + [anon_sym_BANG] = ACTIONS(1588), + [anon_sym_AMP] = ACTIONS(1588), + [anon_sym_PIPE] = ACTIONS(1588), + [anon_sym_AMP_AMP] = ACTIONS(1590), + [anon_sym_PIPE_PIPE] = ACTIONS(1590), + [anon_sym_LT_LT] = ACTIONS(1588), + [anon_sym_GT_GT] = ACTIONS(1588), + [anon_sym_PLUS_EQ] = ACTIONS(1590), + [anon_sym_DASH_EQ] = ACTIONS(1590), + [anon_sym_STAR_EQ] = ACTIONS(1590), + [anon_sym_SLASH_EQ] = ACTIONS(1590), + [anon_sym_PERCENT_EQ] = ACTIONS(1590), + [anon_sym_CARET_EQ] = ACTIONS(1590), + [anon_sym_AMP_EQ] = ACTIONS(1590), + [anon_sym_PIPE_EQ] = ACTIONS(1590), + [anon_sym_LT_LT_EQ] = ACTIONS(1590), + [anon_sym_GT_GT_EQ] = ACTIONS(1590), + [anon_sym_EQ] = ACTIONS(1588), + [anon_sym_EQ_EQ] = ACTIONS(1590), + [anon_sym_BANG_EQ] = ACTIONS(1590), + [anon_sym_GT] = ACTIONS(1588), + [anon_sym_LT] = ACTIONS(1588), + [anon_sym_GT_EQ] = ACTIONS(1590), + [anon_sym_LT_EQ] = ACTIONS(1590), + [anon_sym_DOT] = ACTIONS(1588), + [anon_sym_DOT_DOT] = ACTIONS(1588), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1590), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1590), + [anon_sym_COMMA] = ACTIONS(1590), + [anon_sym_COLON_COLON] = ACTIONS(1590), + [anon_sym_SQUOTE] = ACTIONS(1588), + [anon_sym_as] = ACTIONS(1588), + [anon_sym_async] = ACTIONS(1588), + [anon_sym_break] = ACTIONS(1588), + [anon_sym_const] = ACTIONS(1588), + [anon_sym_continue] = ACTIONS(1588), + [anon_sym_default] = ACTIONS(1588), + [anon_sym_for] = ACTIONS(1588), + [anon_sym_gen] = ACTIONS(1588), + [anon_sym_if] = ACTIONS(1588), + [anon_sym_loop] = ACTIONS(1588), + [anon_sym_match] = ACTIONS(1588), + [anon_sym_return] = ACTIONS(1588), + [anon_sym_static] = ACTIONS(1588), + [anon_sym_union] = ACTIONS(1588), + [anon_sym_unsafe] = ACTIONS(1588), + [anon_sym_while] = ACTIONS(1588), + [anon_sym_else] = ACTIONS(1588), + [anon_sym_yield] = ACTIONS(1588), + [anon_sym_move] = ACTIONS(1588), + [anon_sym_try] = ACTIONS(1588), + [sym_integer_literal] = ACTIONS(1590), + [aux_sym_string_literal_token1] = ACTIONS(1590), + [sym_char_literal] = ACTIONS(1590), + [anon_sym_true] = ACTIONS(1588), + [anon_sym_false] = ACTIONS(1588), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1588), + [sym_super] = ACTIONS(1588), + [sym_crate] = ACTIONS(1588), + [sym_metavariable] = ACTIONS(1590), + [sym__raw_string_literal_start] = ACTIONS(1590), + [sym_float_literal] = ACTIONS(1590), }, [STATE(438)] = { - [sym_bracketed_type] = STATE(3448), - [sym_generic_type] = STATE(3450), - [sym_generic_type_with_turbofish] = STATE(3159), - [sym_macro_invocation] = STATE(2150), - [sym_scoped_identifier] = STATE(2016), - [sym_scoped_type_identifier] = STATE(2988), - [sym_const_block] = STATE(2150), - [sym__pattern] = STATE(2145), - [sym_generic_pattern] = STATE(2150), - [sym_tuple_pattern] = STATE(2150), - [sym_slice_pattern] = STATE(2150), - [sym_tuple_struct_pattern] = STATE(2150), - [sym_struct_pattern] = STATE(2150), - [sym_remaining_field_pattern] = STATE(2150), - [sym_mut_pattern] = STATE(2150), - [sym_range_pattern] = STATE(2150), - [sym_ref_pattern] = STATE(2150), - [sym_captured_pattern] = STATE(2150), - [sym_reference_pattern] = STATE(2150), - [sym_or_pattern] = STATE(2150), - [sym__literal_pattern] = STATE(2076), - [sym_negative_literal] = STATE(2074), - [sym_string_literal] = STATE(2074), - [sym_raw_string_literal] = STATE(2074), - [sym_boolean_literal] = STATE(2074), [sym_line_comment] = STATE(438), [sym_block_comment] = STATE(438), - [sym_identifier] = ACTIONS(1591), - [anon_sym_LPAREN] = ACTIONS(1593), - [anon_sym_LBRACK] = ACTIONS(1593), - [anon_sym_LBRACE] = ACTIONS(1593), - [anon_sym_STAR] = ACTIONS(1593), - [anon_sym_u8] = ACTIONS(1591), - [anon_sym_i8] = ACTIONS(1591), - [anon_sym_u16] = ACTIONS(1591), - [anon_sym_i16] = ACTIONS(1591), - [anon_sym_u32] = ACTIONS(1591), - [anon_sym_i32] = ACTIONS(1591), - [anon_sym_u64] = ACTIONS(1591), - [anon_sym_i64] = ACTIONS(1591), - [anon_sym_u128] = ACTIONS(1591), - [anon_sym_i128] = ACTIONS(1591), - [anon_sym_isize] = ACTIONS(1591), - [anon_sym_usize] = ACTIONS(1591), - [anon_sym_f32] = ACTIONS(1591), - [anon_sym_f64] = ACTIONS(1591), - [anon_sym_bool] = ACTIONS(1591), - [anon_sym_str] = ACTIONS(1591), - [anon_sym_char] = ACTIONS(1591), - [anon_sym_DASH] = ACTIONS(1591), - [anon_sym_BANG] = ACTIONS(1593), - [anon_sym_AMP] = ACTIONS(1593), - [anon_sym_PIPE] = ACTIONS(1593), - [anon_sym_LT] = ACTIONS(1593), - [anon_sym__] = ACTIONS(1591), - [anon_sym_DOT_DOT] = ACTIONS(1591), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1255), - [anon_sym_COLON_COLON] = ACTIONS(1593), - [anon_sym_DASH_GT] = ACTIONS(1593), - [anon_sym_SQUOTE] = ACTIONS(1591), - [anon_sym_async] = ACTIONS(1591), - [anon_sym_break] = ACTIONS(1591), - [anon_sym_const] = ACTIONS(1591), - [anon_sym_continue] = ACTIONS(1591), - [anon_sym_default] = ACTIONS(1591), - [anon_sym_for] = ACTIONS(1591), - [anon_sym_gen] = ACTIONS(1591), - [anon_sym_if] = ACTIONS(1591), - [anon_sym_loop] = ACTIONS(1591), - [anon_sym_match] = ACTIONS(1591), - [anon_sym_return] = ACTIONS(1591), - [anon_sym_static] = ACTIONS(1591), - [anon_sym_union] = ACTIONS(1591), - [anon_sym_unsafe] = ACTIONS(1591), - [anon_sym_while] = ACTIONS(1591), - [anon_sym_ref] = ACTIONS(1281), - [sym_mutable_specifier] = ACTIONS(1457), - [anon_sym_yield] = ACTIONS(1591), - [anon_sym_move] = ACTIONS(1591), - [anon_sym_try] = ACTIONS(1591), - [sym_integer_literal] = ACTIONS(1593), - [aux_sym_string_literal_token1] = ACTIONS(1593), - [sym_char_literal] = ACTIONS(1593), - [anon_sym_true] = ACTIONS(1591), - [anon_sym_false] = ACTIONS(1591), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1591), - [sym_super] = ACTIONS(1591), - [sym_crate] = ACTIONS(1591), - [sym_metavariable] = ACTIONS(1593), - [sym__raw_string_literal_start] = ACTIONS(1593), - [sym_float_literal] = ACTIONS(1593), + [sym_identifier] = ACTIONS(1588), + [anon_sym_LPAREN] = ACTIONS(1590), + [anon_sym_LBRACK] = ACTIONS(1590), + [anon_sym_LBRACE] = ACTIONS(1590), + [anon_sym_EQ_GT] = ACTIONS(1590), + [anon_sym_COLON] = ACTIONS(1588), + [anon_sym_PLUS] = ACTIONS(1588), + [anon_sym_STAR] = ACTIONS(1588), + [anon_sym_QMARK] = ACTIONS(1590), + [anon_sym_u8] = ACTIONS(1588), + [anon_sym_i8] = ACTIONS(1588), + [anon_sym_u16] = ACTIONS(1588), + [anon_sym_i16] = ACTIONS(1588), + [anon_sym_u32] = ACTIONS(1588), + [anon_sym_i32] = ACTIONS(1588), + [anon_sym_u64] = ACTIONS(1588), + [anon_sym_i64] = ACTIONS(1588), + [anon_sym_u128] = ACTIONS(1588), + [anon_sym_i128] = ACTIONS(1588), + [anon_sym_isize] = ACTIONS(1588), + [anon_sym_usize] = ACTIONS(1588), + [anon_sym_f32] = ACTIONS(1588), + [anon_sym_f64] = ACTIONS(1588), + [anon_sym_bool] = ACTIONS(1588), + [anon_sym_str] = ACTIONS(1588), + [anon_sym_char] = ACTIONS(1588), + [anon_sym_DASH] = ACTIONS(1588), + [anon_sym_SLASH] = ACTIONS(1588), + [anon_sym_PERCENT] = ACTIONS(1588), + [anon_sym_CARET] = ACTIONS(1588), + [anon_sym_BANG] = ACTIONS(1588), + [anon_sym_AMP] = ACTIONS(1588), + [anon_sym_PIPE] = ACTIONS(1588), + [anon_sym_AMP_AMP] = ACTIONS(1590), + [anon_sym_PIPE_PIPE] = ACTIONS(1590), + [anon_sym_LT_LT] = ACTIONS(1588), + [anon_sym_GT_GT] = ACTIONS(1588), + [anon_sym_PLUS_EQ] = ACTIONS(1590), + [anon_sym_DASH_EQ] = ACTIONS(1590), + [anon_sym_STAR_EQ] = ACTIONS(1590), + [anon_sym_SLASH_EQ] = ACTIONS(1590), + [anon_sym_PERCENT_EQ] = ACTIONS(1590), + [anon_sym_CARET_EQ] = ACTIONS(1590), + [anon_sym_AMP_EQ] = ACTIONS(1590), + [anon_sym_PIPE_EQ] = ACTIONS(1590), + [anon_sym_LT_LT_EQ] = ACTIONS(1590), + [anon_sym_GT_GT_EQ] = ACTIONS(1590), + [anon_sym_EQ] = ACTIONS(1588), + [anon_sym_EQ_EQ] = ACTIONS(1590), + [anon_sym_BANG_EQ] = ACTIONS(1590), + [anon_sym_GT] = ACTIONS(1588), + [anon_sym_LT] = ACTIONS(1588), + [anon_sym_GT_EQ] = ACTIONS(1590), + [anon_sym_LT_EQ] = ACTIONS(1590), + [anon_sym_DOT] = ACTIONS(1588), + [anon_sym_DOT_DOT] = ACTIONS(1588), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1590), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1590), + [anon_sym_COLON_COLON] = ACTIONS(1590), + [anon_sym_SQUOTE] = ACTIONS(1588), + [anon_sym_as] = ACTIONS(1588), + [anon_sym_async] = ACTIONS(1588), + [anon_sym_break] = ACTIONS(1588), + [anon_sym_const] = ACTIONS(1588), + [anon_sym_continue] = ACTIONS(1588), + [anon_sym_default] = ACTIONS(1588), + [anon_sym_for] = ACTIONS(1588), + [anon_sym_gen] = ACTIONS(1588), + [anon_sym_if] = ACTIONS(1588), + [anon_sym_loop] = ACTIONS(1588), + [anon_sym_match] = ACTIONS(1588), + [anon_sym_return] = ACTIONS(1588), + [anon_sym_static] = ACTIONS(1588), + [anon_sym_union] = ACTIONS(1588), + [anon_sym_unsafe] = ACTIONS(1588), + [anon_sym_while] = ACTIONS(1588), + [anon_sym_yield] = ACTIONS(1588), + [anon_sym_move] = ACTIONS(1588), + [anon_sym_try] = ACTIONS(1588), + [sym_integer_literal] = ACTIONS(1590), + [aux_sym_string_literal_token1] = ACTIONS(1590), + [sym_char_literal] = ACTIONS(1590), + [anon_sym_true] = ACTIONS(1588), + [anon_sym_false] = ACTIONS(1588), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1588), + [sym_super] = ACTIONS(1588), + [sym_crate] = ACTIONS(1588), + [sym_metavariable] = ACTIONS(1590), + [sym__raw_string_literal_start] = ACTIONS(1590), + [sym_float_literal] = ACTIONS(1590), }, [STATE(439)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2483), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(2484), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_type_binding] = STATE(2762), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), - [sym_label] = STATE(3709), - [sym_block] = STATE(2762), - [sym__literal] = STATE(2762), - [sym_string_literal] = STATE(3070), - [sym_raw_string_literal] = STATE(3070), - [sym_boolean_literal] = STATE(3070), + [sym_bracketed_type] = STATE(3581), + [sym_generic_type] = STATE(3475), + [sym_generic_type_with_turbofish] = STATE(3233), + [sym_macro_invocation] = STATE(2163), + [sym_scoped_identifier] = STATE(2032), + [sym_scoped_type_identifier] = STATE(2893), + [sym_const_block] = STATE(2163), + [sym__pattern] = STATE(2200), + [sym_generic_pattern] = STATE(2163), + [sym_tuple_pattern] = STATE(2163), + [sym_slice_pattern] = STATE(2163), + [sym_tuple_struct_pattern] = STATE(2163), + [sym_struct_pattern] = STATE(2163), + [sym_remaining_field_pattern] = STATE(2163), + [sym_mut_pattern] = STATE(2163), + [sym_range_pattern] = STATE(2163), + [sym_ref_pattern] = STATE(2163), + [sym_captured_pattern] = STATE(2163), + [sym_reference_pattern] = STATE(2163), + [sym_or_pattern] = STATE(2163), + [sym__literal_pattern] = STATE(2098), + [sym_negative_literal] = STATE(2095), + [sym_string_literal] = STATE(2095), + [sym_raw_string_literal] = STATE(2095), + [sym_boolean_literal] = STATE(2095), [sym_line_comment] = STATE(439), [sym_block_comment] = STATE(439), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(1595), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_LBRACE] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1235), - [anon_sym_QMARK] = ACTIONS(1237), - [anon_sym_u8] = ACTIONS(1603), - [anon_sym_i8] = ACTIONS(1603), - [anon_sym_u16] = ACTIONS(1603), - [anon_sym_i16] = ACTIONS(1603), - [anon_sym_u32] = ACTIONS(1603), - [anon_sym_i32] = ACTIONS(1603), - [anon_sym_u64] = ACTIONS(1603), - [anon_sym_i64] = ACTIONS(1603), - [anon_sym_u128] = ACTIONS(1603), - [anon_sym_i128] = ACTIONS(1603), - [anon_sym_isize] = ACTIONS(1603), - [anon_sym_usize] = ACTIONS(1603), - [anon_sym_f32] = ACTIONS(1603), - [anon_sym_f64] = ACTIONS(1603), - [anon_sym_bool] = ACTIONS(1603), - [anon_sym_str] = ACTIONS(1603), - [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1243), - [anon_sym_AMP] = ACTIONS(1605), - [anon_sym_GT] = ACTIONS(1607), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(1611), - [anon_sym_async] = ACTIONS(1265), - [anon_sym_const] = ACTIONS(1265), - [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1271), - [anon_sym_for] = ACTIONS(1273), - [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1277), - [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1265), - [anon_sym_extern] = ACTIONS(1279), - [anon_sym_dyn] = ACTIONS(1283), - [sym_integer_literal] = ACTIONS(1617), - [aux_sym_string_literal_token1] = ACTIONS(1289), - [sym_char_literal] = ACTIONS(1617), - [anon_sym_true] = ACTIONS(1291), - [anon_sym_false] = ACTIONS(1291), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1619), - [sym_super] = ACTIONS(1619), - [sym_crate] = ACTIONS(1619), - [sym_metavariable] = ACTIONS(1621), - [sym__raw_string_literal_start] = ACTIONS(1299), - [sym_float_literal] = ACTIONS(1617), + [sym_identifier] = ACTIONS(1592), + [anon_sym_LPAREN] = ACTIONS(1594), + [anon_sym_LBRACK] = ACTIONS(1594), + [anon_sym_LBRACE] = ACTIONS(1594), + [anon_sym_STAR] = ACTIONS(1594), + [anon_sym_u8] = ACTIONS(1592), + [anon_sym_i8] = ACTIONS(1592), + [anon_sym_u16] = ACTIONS(1592), + [anon_sym_i16] = ACTIONS(1592), + [anon_sym_u32] = ACTIONS(1592), + [anon_sym_i32] = ACTIONS(1592), + [anon_sym_u64] = ACTIONS(1592), + [anon_sym_i64] = ACTIONS(1592), + [anon_sym_u128] = ACTIONS(1592), + [anon_sym_i128] = ACTIONS(1592), + [anon_sym_isize] = ACTIONS(1592), + [anon_sym_usize] = ACTIONS(1592), + [anon_sym_f32] = ACTIONS(1592), + [anon_sym_f64] = ACTIONS(1592), + [anon_sym_bool] = ACTIONS(1592), + [anon_sym_str] = ACTIONS(1592), + [anon_sym_char] = ACTIONS(1592), + [anon_sym_DASH] = ACTIONS(1592), + [anon_sym_BANG] = ACTIONS(1594), + [anon_sym_AMP] = ACTIONS(1594), + [anon_sym_PIPE] = ACTIONS(1594), + [anon_sym_LT] = ACTIONS(1594), + [anon_sym__] = ACTIONS(1592), + [anon_sym_DOT_DOT] = ACTIONS(1592), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1260), + [anon_sym_COLON_COLON] = ACTIONS(1594), + [anon_sym_DASH_GT] = ACTIONS(1594), + [anon_sym_SQUOTE] = ACTIONS(1592), + [anon_sym_async] = ACTIONS(1592), + [anon_sym_break] = ACTIONS(1592), + [anon_sym_const] = ACTIONS(1592), + [anon_sym_continue] = ACTIONS(1592), + [anon_sym_default] = ACTIONS(1592), + [anon_sym_for] = ACTIONS(1592), + [anon_sym_gen] = ACTIONS(1592), + [anon_sym_if] = ACTIONS(1592), + [anon_sym_loop] = ACTIONS(1592), + [anon_sym_match] = ACTIONS(1592), + [anon_sym_return] = ACTIONS(1592), + [anon_sym_static] = ACTIONS(1592), + [anon_sym_union] = ACTIONS(1592), + [anon_sym_unsafe] = ACTIONS(1592), + [anon_sym_while] = ACTIONS(1592), + [anon_sym_ref] = ACTIONS(1286), + [sym_mutable_specifier] = ACTIONS(1434), + [anon_sym_yield] = ACTIONS(1592), + [anon_sym_move] = ACTIONS(1592), + [anon_sym_try] = ACTIONS(1592), + [sym_integer_literal] = ACTIONS(1594), + [aux_sym_string_literal_token1] = ACTIONS(1594), + [sym_char_literal] = ACTIONS(1594), + [anon_sym_true] = ACTIONS(1592), + [anon_sym_false] = ACTIONS(1592), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1592), + [sym_super] = ACTIONS(1592), + [sym_crate] = ACTIONS(1592), + [sym_metavariable] = ACTIONS(1594), + [sym__raw_string_literal_start] = ACTIONS(1594), + [sym_float_literal] = ACTIONS(1594), }, [STATE(440)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2483), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(2484), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_type_binding] = STATE(2762), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), - [sym_label] = STATE(3709), - [sym_block] = STATE(2762), - [sym__literal] = STATE(2762), - [sym_string_literal] = STATE(3070), - [sym_raw_string_literal] = STATE(3070), - [sym_boolean_literal] = STATE(3070), + [sym_bracketed_type] = STATE(3581), + [sym_generic_type] = STATE(3475), + [sym_generic_type_with_turbofish] = STATE(3233), + [sym_macro_invocation] = STATE(2163), + [sym_scoped_identifier] = STATE(2032), + [sym_scoped_type_identifier] = STATE(2893), + [sym_const_block] = STATE(2163), + [sym__pattern] = STATE(2188), + [sym_generic_pattern] = STATE(2163), + [sym_tuple_pattern] = STATE(2163), + [sym_slice_pattern] = STATE(2163), + [sym_tuple_struct_pattern] = STATE(2163), + [sym_struct_pattern] = STATE(2163), + [sym_remaining_field_pattern] = STATE(2163), + [sym_mut_pattern] = STATE(2163), + [sym_range_pattern] = STATE(2163), + [sym_ref_pattern] = STATE(2163), + [sym_captured_pattern] = STATE(2163), + [sym_reference_pattern] = STATE(2163), + [sym_or_pattern] = STATE(2163), + [sym__literal_pattern] = STATE(2098), + [sym_negative_literal] = STATE(2095), + [sym_string_literal] = STATE(2095), + [sym_raw_string_literal] = STATE(2095), + [sym_boolean_literal] = STATE(2095), [sym_line_comment] = STATE(440), [sym_block_comment] = STATE(440), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(1595), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_LBRACE] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1235), - [anon_sym_QMARK] = ACTIONS(1237), - [anon_sym_u8] = ACTIONS(1603), - [anon_sym_i8] = ACTIONS(1603), - [anon_sym_u16] = ACTIONS(1603), - [anon_sym_i16] = ACTIONS(1603), - [anon_sym_u32] = ACTIONS(1603), - [anon_sym_i32] = ACTIONS(1603), - [anon_sym_u64] = ACTIONS(1603), - [anon_sym_i64] = ACTIONS(1603), - [anon_sym_u128] = ACTIONS(1603), - [anon_sym_i128] = ACTIONS(1603), - [anon_sym_isize] = ACTIONS(1603), - [anon_sym_usize] = ACTIONS(1603), - [anon_sym_f32] = ACTIONS(1603), - [anon_sym_f64] = ACTIONS(1603), - [anon_sym_bool] = ACTIONS(1603), - [anon_sym_str] = ACTIONS(1603), - [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1243), - [anon_sym_AMP] = ACTIONS(1605), - [anon_sym_GT] = ACTIONS(1623), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(1611), - [anon_sym_async] = ACTIONS(1265), - [anon_sym_const] = ACTIONS(1265), - [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1271), - [anon_sym_for] = ACTIONS(1273), - [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1277), - [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1265), - [anon_sym_extern] = ACTIONS(1279), - [anon_sym_dyn] = ACTIONS(1283), - [sym_integer_literal] = ACTIONS(1617), - [aux_sym_string_literal_token1] = ACTIONS(1289), - [sym_char_literal] = ACTIONS(1617), - [anon_sym_true] = ACTIONS(1291), - [anon_sym_false] = ACTIONS(1291), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1619), - [sym_super] = ACTIONS(1619), - [sym_crate] = ACTIONS(1619), - [sym_metavariable] = ACTIONS(1621), - [sym__raw_string_literal_start] = ACTIONS(1299), - [sym_float_literal] = ACTIONS(1617), + [sym_identifier] = ACTIONS(1596), + [anon_sym_LPAREN] = ACTIONS(1598), + [anon_sym_LBRACK] = ACTIONS(1598), + [anon_sym_LBRACE] = ACTIONS(1598), + [anon_sym_STAR] = ACTIONS(1598), + [anon_sym_u8] = ACTIONS(1596), + [anon_sym_i8] = ACTIONS(1596), + [anon_sym_u16] = ACTIONS(1596), + [anon_sym_i16] = ACTIONS(1596), + [anon_sym_u32] = ACTIONS(1596), + [anon_sym_i32] = ACTIONS(1596), + [anon_sym_u64] = ACTIONS(1596), + [anon_sym_i64] = ACTIONS(1596), + [anon_sym_u128] = ACTIONS(1596), + [anon_sym_i128] = ACTIONS(1596), + [anon_sym_isize] = ACTIONS(1596), + [anon_sym_usize] = ACTIONS(1596), + [anon_sym_f32] = ACTIONS(1596), + [anon_sym_f64] = ACTIONS(1596), + [anon_sym_bool] = ACTIONS(1596), + [anon_sym_str] = ACTIONS(1596), + [anon_sym_char] = ACTIONS(1596), + [anon_sym_DASH] = ACTIONS(1596), + [anon_sym_BANG] = ACTIONS(1598), + [anon_sym_AMP] = ACTIONS(1598), + [anon_sym_PIPE] = ACTIONS(1598), + [anon_sym_LT] = ACTIONS(1598), + [anon_sym__] = ACTIONS(1596), + [anon_sym_DOT_DOT] = ACTIONS(1596), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1260), + [anon_sym_COLON_COLON] = ACTIONS(1598), + [anon_sym_DASH_GT] = ACTIONS(1598), + [anon_sym_SQUOTE] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(1596), + [anon_sym_break] = ACTIONS(1596), + [anon_sym_const] = ACTIONS(1596), + [anon_sym_continue] = ACTIONS(1596), + [anon_sym_default] = ACTIONS(1596), + [anon_sym_for] = ACTIONS(1596), + [anon_sym_gen] = ACTIONS(1596), + [anon_sym_if] = ACTIONS(1596), + [anon_sym_loop] = ACTIONS(1596), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_return] = ACTIONS(1596), + [anon_sym_static] = ACTIONS(1596), + [anon_sym_union] = ACTIONS(1596), + [anon_sym_unsafe] = ACTIONS(1596), + [anon_sym_while] = ACTIONS(1596), + [anon_sym_ref] = ACTIONS(1286), + [sym_mutable_specifier] = ACTIONS(1434), + [anon_sym_yield] = ACTIONS(1596), + [anon_sym_move] = ACTIONS(1596), + [anon_sym_try] = ACTIONS(1596), + [sym_integer_literal] = ACTIONS(1598), + [aux_sym_string_literal_token1] = ACTIONS(1598), + [sym_char_literal] = ACTIONS(1598), + [anon_sym_true] = ACTIONS(1596), + [anon_sym_false] = ACTIONS(1596), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1596), + [sym_super] = ACTIONS(1596), + [sym_crate] = ACTIONS(1596), + [sym_metavariable] = ACTIONS(1598), + [sym__raw_string_literal_start] = ACTIONS(1598), + [sym_float_literal] = ACTIONS(1598), }, [STATE(441)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2483), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(2484), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_type_binding] = STATE(2762), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), - [sym_label] = STATE(3709), - [sym_block] = STATE(2762), - [sym__literal] = STATE(2762), - [sym_string_literal] = STATE(3070), - [sym_raw_string_literal] = STATE(3070), - [sym_boolean_literal] = STATE(3070), + [sym_function_modifiers] = STATE(3591), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2373), + [sym__type] = STATE(2517), + [sym_bracketed_type] = STATE(3474), + [sym_lifetime] = STATE(2518), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1591), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2022), + [sym_generic_type_with_turbofish] = STATE(3764), + [sym_bounded_type] = STATE(2069), + [sym_type_binding] = STATE(2684), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3334), + [sym_scoped_type_identifier] = STATE(1990), + [sym_label] = STATE(3739), + [sym_block] = STATE(2684), + [sym__literal] = STATE(2684), + [sym_string_literal] = STATE(2948), + [sym_raw_string_literal] = STATE(2948), + [sym_boolean_literal] = STATE(2948), [sym_line_comment] = STATE(441), [sym_block_comment] = STATE(441), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(1595), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_LBRACE] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1235), - [anon_sym_QMARK] = ACTIONS(1237), - [anon_sym_u8] = ACTIONS(1603), - [anon_sym_i8] = ACTIONS(1603), - [anon_sym_u16] = ACTIONS(1603), - [anon_sym_i16] = ACTIONS(1603), - [anon_sym_u32] = ACTIONS(1603), - [anon_sym_i32] = ACTIONS(1603), - [anon_sym_u64] = ACTIONS(1603), - [anon_sym_i64] = ACTIONS(1603), - [anon_sym_u128] = ACTIONS(1603), - [anon_sym_i128] = ACTIONS(1603), - [anon_sym_isize] = ACTIONS(1603), - [anon_sym_usize] = ACTIONS(1603), - [anon_sym_f32] = ACTIONS(1603), - [anon_sym_f64] = ACTIONS(1603), - [anon_sym_bool] = ACTIONS(1603), - [anon_sym_str] = ACTIONS(1603), - [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1243), - [anon_sym_AMP] = ACTIONS(1605), - [anon_sym_GT] = ACTIONS(1625), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(1611), - [anon_sym_async] = ACTIONS(1265), - [anon_sym_const] = ACTIONS(1265), - [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1271), - [anon_sym_for] = ACTIONS(1273), - [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1277), - [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1265), - [anon_sym_extern] = ACTIONS(1279), - [anon_sym_dyn] = ACTIONS(1283), - [sym_integer_literal] = ACTIONS(1617), - [aux_sym_string_literal_token1] = ACTIONS(1289), - [sym_char_literal] = ACTIONS(1617), - [anon_sym_true] = ACTIONS(1291), - [anon_sym_false] = ACTIONS(1291), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1619), - [sym_super] = ACTIONS(1619), - [sym_crate] = ACTIONS(1619), - [sym_metavariable] = ACTIONS(1621), - [sym__raw_string_literal_start] = ACTIONS(1299), - [sym_float_literal] = ACTIONS(1617), + [aux_sym_function_modifiers_repeat1] = STATE(2244), + [sym_identifier] = ACTIONS(1600), + [anon_sym_LPAREN] = ACTIONS(1602), + [anon_sym_LBRACK] = ACTIONS(1604), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_STAR] = ACTIONS(1240), + [anon_sym_QMARK] = ACTIONS(1242), + [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_BANG] = ACTIONS(1248), + [anon_sym_AMP] = ACTIONS(1610), + [anon_sym_GT] = ACTIONS(1612), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1614), + [anon_sym_SQUOTE] = ACTIONS(1616), + [anon_sym_async] = ACTIONS(1270), + [anon_sym_const] = ACTIONS(1270), + [anon_sym_default] = ACTIONS(1618), + [anon_sym_fn] = ACTIONS(1276), + [anon_sym_for] = ACTIONS(1278), + [anon_sym_gen] = ACTIONS(1620), + [anon_sym_impl] = ACTIONS(1282), + [anon_sym_union] = ACTIONS(1620), + [anon_sym_unsafe] = ACTIONS(1270), + [anon_sym_extern] = ACTIONS(1284), + [anon_sym_safe] = ACTIONS(1270), + [anon_sym_dyn] = ACTIONS(1288), + [sym_integer_literal] = ACTIONS(1622), + [aux_sym_string_literal_token1] = ACTIONS(1294), + [sym_char_literal] = ACTIONS(1622), + [anon_sym_true] = ACTIONS(1296), + [anon_sym_false] = ACTIONS(1296), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1624), + [sym_super] = ACTIONS(1624), + [sym_crate] = ACTIONS(1624), + [sym_metavariable] = ACTIONS(1626), + [sym__raw_string_literal_start] = ACTIONS(1304), + [sym_float_literal] = ACTIONS(1622), }, [STATE(442)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2483), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(2484), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_type_binding] = STATE(2762), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), - [sym_label] = STATE(3709), - [sym_block] = STATE(2762), - [sym__literal] = STATE(2762), - [sym_string_literal] = STATE(3070), - [sym_raw_string_literal] = STATE(3070), - [sym_boolean_literal] = STATE(3070), + [sym_function_modifiers] = STATE(3591), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2373), + [sym__type] = STATE(2517), + [sym_bracketed_type] = STATE(3474), + [sym_lifetime] = STATE(2518), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1591), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2022), + [sym_generic_type_with_turbofish] = STATE(3764), + [sym_bounded_type] = STATE(2069), + [sym_type_binding] = STATE(2684), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3334), + [sym_scoped_type_identifier] = STATE(1990), + [sym_label] = STATE(3739), + [sym_block] = STATE(2684), + [sym__literal] = STATE(2684), + [sym_string_literal] = STATE(2948), + [sym_raw_string_literal] = STATE(2948), + [sym_boolean_literal] = STATE(2948), [sym_line_comment] = STATE(442), [sym_block_comment] = STATE(442), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(1595), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_LBRACE] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1235), - [anon_sym_QMARK] = ACTIONS(1237), - [anon_sym_u8] = ACTIONS(1603), - [anon_sym_i8] = ACTIONS(1603), - [anon_sym_u16] = ACTIONS(1603), - [anon_sym_i16] = ACTIONS(1603), - [anon_sym_u32] = ACTIONS(1603), - [anon_sym_i32] = ACTIONS(1603), - [anon_sym_u64] = ACTIONS(1603), - [anon_sym_i64] = ACTIONS(1603), - [anon_sym_u128] = ACTIONS(1603), - [anon_sym_i128] = ACTIONS(1603), - [anon_sym_isize] = ACTIONS(1603), - [anon_sym_usize] = ACTIONS(1603), - [anon_sym_f32] = ACTIONS(1603), - [anon_sym_f64] = ACTIONS(1603), - [anon_sym_bool] = ACTIONS(1603), - [anon_sym_str] = ACTIONS(1603), - [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1243), - [anon_sym_AMP] = ACTIONS(1605), - [anon_sym_GT] = ACTIONS(1627), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(1611), - [anon_sym_async] = ACTIONS(1265), - [anon_sym_const] = ACTIONS(1265), - [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1271), - [anon_sym_for] = ACTIONS(1273), - [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1277), - [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1265), - [anon_sym_extern] = ACTIONS(1279), - [anon_sym_dyn] = ACTIONS(1283), - [sym_integer_literal] = ACTIONS(1617), - [aux_sym_string_literal_token1] = ACTIONS(1289), - [sym_char_literal] = ACTIONS(1617), - [anon_sym_true] = ACTIONS(1291), - [anon_sym_false] = ACTIONS(1291), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1619), - [sym_super] = ACTIONS(1619), - [sym_crate] = ACTIONS(1619), - [sym_metavariable] = ACTIONS(1621), - [sym__raw_string_literal_start] = ACTIONS(1299), - [sym_float_literal] = ACTIONS(1617), + [aux_sym_function_modifiers_repeat1] = STATE(2244), + [sym_identifier] = ACTIONS(1600), + [anon_sym_LPAREN] = ACTIONS(1602), + [anon_sym_LBRACK] = ACTIONS(1604), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_STAR] = ACTIONS(1240), + [anon_sym_QMARK] = ACTIONS(1242), + [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_BANG] = ACTIONS(1248), + [anon_sym_AMP] = ACTIONS(1610), + [anon_sym_GT] = ACTIONS(1628), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1614), + [anon_sym_SQUOTE] = ACTIONS(1616), + [anon_sym_async] = ACTIONS(1270), + [anon_sym_const] = ACTIONS(1270), + [anon_sym_default] = ACTIONS(1618), + [anon_sym_fn] = ACTIONS(1276), + [anon_sym_for] = ACTIONS(1278), + [anon_sym_gen] = ACTIONS(1620), + [anon_sym_impl] = ACTIONS(1282), + [anon_sym_union] = ACTIONS(1620), + [anon_sym_unsafe] = ACTIONS(1270), + [anon_sym_extern] = ACTIONS(1284), + [anon_sym_safe] = ACTIONS(1270), + [anon_sym_dyn] = ACTIONS(1288), + [sym_integer_literal] = ACTIONS(1622), + [aux_sym_string_literal_token1] = ACTIONS(1294), + [sym_char_literal] = ACTIONS(1622), + [anon_sym_true] = ACTIONS(1296), + [anon_sym_false] = ACTIONS(1296), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1624), + [sym_super] = ACTIONS(1624), + [sym_crate] = ACTIONS(1624), + [sym_metavariable] = ACTIONS(1626), + [sym__raw_string_literal_start] = ACTIONS(1304), + [sym_float_literal] = ACTIONS(1622), }, [STATE(443)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2483), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(2484), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_type_binding] = STATE(2762), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), - [sym_label] = STATE(3709), - [sym_block] = STATE(2762), - [sym__literal] = STATE(2762), - [sym_string_literal] = STATE(3070), - [sym_raw_string_literal] = STATE(3070), - [sym_boolean_literal] = STATE(3070), + [sym_function_modifiers] = STATE(3591), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2373), + [sym__type] = STATE(2517), + [sym_bracketed_type] = STATE(3474), + [sym_lifetime] = STATE(2518), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1591), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2022), + [sym_generic_type_with_turbofish] = STATE(3764), + [sym_bounded_type] = STATE(2069), + [sym_type_binding] = STATE(2684), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3334), + [sym_scoped_type_identifier] = STATE(1990), + [sym_label] = STATE(3739), + [sym_block] = STATE(2684), + [sym__literal] = STATE(2684), + [sym_string_literal] = STATE(2948), + [sym_raw_string_literal] = STATE(2948), + [sym_boolean_literal] = STATE(2948), [sym_line_comment] = STATE(443), [sym_block_comment] = STATE(443), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(1595), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_LBRACE] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1235), - [anon_sym_QMARK] = ACTIONS(1237), - [anon_sym_u8] = ACTIONS(1603), - [anon_sym_i8] = ACTIONS(1603), - [anon_sym_u16] = ACTIONS(1603), - [anon_sym_i16] = ACTIONS(1603), - [anon_sym_u32] = ACTIONS(1603), - [anon_sym_i32] = ACTIONS(1603), - [anon_sym_u64] = ACTIONS(1603), - [anon_sym_i64] = ACTIONS(1603), - [anon_sym_u128] = ACTIONS(1603), - [anon_sym_i128] = ACTIONS(1603), - [anon_sym_isize] = ACTIONS(1603), - [anon_sym_usize] = ACTIONS(1603), - [anon_sym_f32] = ACTIONS(1603), - [anon_sym_f64] = ACTIONS(1603), - [anon_sym_bool] = ACTIONS(1603), - [anon_sym_str] = ACTIONS(1603), - [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1243), - [anon_sym_AMP] = ACTIONS(1605), - [anon_sym_GT] = ACTIONS(1629), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(1611), - [anon_sym_async] = ACTIONS(1265), - [anon_sym_const] = ACTIONS(1265), - [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1271), - [anon_sym_for] = ACTIONS(1273), - [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1277), - [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1265), - [anon_sym_extern] = ACTIONS(1279), - [anon_sym_dyn] = ACTIONS(1283), - [sym_integer_literal] = ACTIONS(1617), - [aux_sym_string_literal_token1] = ACTIONS(1289), - [sym_char_literal] = ACTIONS(1617), - [anon_sym_true] = ACTIONS(1291), - [anon_sym_false] = ACTIONS(1291), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1619), - [sym_super] = ACTIONS(1619), - [sym_crate] = ACTIONS(1619), - [sym_metavariable] = ACTIONS(1621), - [sym__raw_string_literal_start] = ACTIONS(1299), - [sym_float_literal] = ACTIONS(1617), + [aux_sym_function_modifiers_repeat1] = STATE(2244), + [sym_identifier] = ACTIONS(1600), + [anon_sym_LPAREN] = ACTIONS(1602), + [anon_sym_LBRACK] = ACTIONS(1604), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_STAR] = ACTIONS(1240), + [anon_sym_QMARK] = ACTIONS(1242), + [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_BANG] = ACTIONS(1248), + [anon_sym_AMP] = ACTIONS(1610), + [anon_sym_GT] = ACTIONS(1630), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1614), + [anon_sym_SQUOTE] = ACTIONS(1616), + [anon_sym_async] = ACTIONS(1270), + [anon_sym_const] = ACTIONS(1270), + [anon_sym_default] = ACTIONS(1618), + [anon_sym_fn] = ACTIONS(1276), + [anon_sym_for] = ACTIONS(1278), + [anon_sym_gen] = ACTIONS(1620), + [anon_sym_impl] = ACTIONS(1282), + [anon_sym_union] = ACTIONS(1620), + [anon_sym_unsafe] = ACTIONS(1270), + [anon_sym_extern] = ACTIONS(1284), + [anon_sym_safe] = ACTIONS(1270), + [anon_sym_dyn] = ACTIONS(1288), + [sym_integer_literal] = ACTIONS(1622), + [aux_sym_string_literal_token1] = ACTIONS(1294), + [sym_char_literal] = ACTIONS(1622), + [anon_sym_true] = ACTIONS(1296), + [anon_sym_false] = ACTIONS(1296), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1624), + [sym_super] = ACTIONS(1624), + [sym_crate] = ACTIONS(1624), + [sym_metavariable] = ACTIONS(1626), + [sym__raw_string_literal_start] = ACTIONS(1304), + [sym_float_literal] = ACTIONS(1622), }, [STATE(444)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2483), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(2484), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_type_binding] = STATE(2762), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), - [sym_label] = STATE(3709), - [sym_block] = STATE(2762), - [sym__literal] = STATE(2762), - [sym_string_literal] = STATE(3070), - [sym_raw_string_literal] = STATE(3070), - [sym_boolean_literal] = STATE(3070), + [sym_function_modifiers] = STATE(3591), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2373), + [sym__type] = STATE(2517), + [sym_bracketed_type] = STATE(3474), + [sym_lifetime] = STATE(2518), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1591), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2022), + [sym_generic_type_with_turbofish] = STATE(3764), + [sym_bounded_type] = STATE(2069), + [sym_type_binding] = STATE(2684), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3334), + [sym_scoped_type_identifier] = STATE(1990), + [sym_label] = STATE(3739), + [sym_block] = STATE(2684), + [sym__literal] = STATE(2684), + [sym_string_literal] = STATE(2948), + [sym_raw_string_literal] = STATE(2948), + [sym_boolean_literal] = STATE(2948), [sym_line_comment] = STATE(444), [sym_block_comment] = STATE(444), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(1595), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_LBRACE] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1235), - [anon_sym_QMARK] = ACTIONS(1237), - [anon_sym_u8] = ACTIONS(1603), - [anon_sym_i8] = ACTIONS(1603), - [anon_sym_u16] = ACTIONS(1603), - [anon_sym_i16] = ACTIONS(1603), - [anon_sym_u32] = ACTIONS(1603), - [anon_sym_i32] = ACTIONS(1603), - [anon_sym_u64] = ACTIONS(1603), - [anon_sym_i64] = ACTIONS(1603), - [anon_sym_u128] = ACTIONS(1603), - [anon_sym_i128] = ACTIONS(1603), - [anon_sym_isize] = ACTIONS(1603), - [anon_sym_usize] = ACTIONS(1603), - [anon_sym_f32] = ACTIONS(1603), - [anon_sym_f64] = ACTIONS(1603), - [anon_sym_bool] = ACTIONS(1603), - [anon_sym_str] = ACTIONS(1603), - [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1243), - [anon_sym_AMP] = ACTIONS(1605), - [anon_sym_GT] = ACTIONS(1631), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(1611), - [anon_sym_async] = ACTIONS(1265), - [anon_sym_const] = ACTIONS(1265), - [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1271), - [anon_sym_for] = ACTIONS(1273), - [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1277), - [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1265), - [anon_sym_extern] = ACTIONS(1279), - [anon_sym_dyn] = ACTIONS(1283), - [sym_integer_literal] = ACTIONS(1617), - [aux_sym_string_literal_token1] = ACTIONS(1289), - [sym_char_literal] = ACTIONS(1617), - [anon_sym_true] = ACTIONS(1291), - [anon_sym_false] = ACTIONS(1291), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1619), - [sym_super] = ACTIONS(1619), - [sym_crate] = ACTIONS(1619), - [sym_metavariable] = ACTIONS(1621), - [sym__raw_string_literal_start] = ACTIONS(1299), - [sym_float_literal] = ACTIONS(1617), + [aux_sym_function_modifiers_repeat1] = STATE(2244), + [sym_identifier] = ACTIONS(1600), + [anon_sym_LPAREN] = ACTIONS(1602), + [anon_sym_LBRACK] = ACTIONS(1604), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_STAR] = ACTIONS(1240), + [anon_sym_QMARK] = ACTIONS(1242), + [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_BANG] = ACTIONS(1248), + [anon_sym_AMP] = ACTIONS(1610), + [anon_sym_GT] = ACTIONS(1632), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1614), + [anon_sym_SQUOTE] = ACTIONS(1616), + [anon_sym_async] = ACTIONS(1270), + [anon_sym_const] = ACTIONS(1270), + [anon_sym_default] = ACTIONS(1618), + [anon_sym_fn] = ACTIONS(1276), + [anon_sym_for] = ACTIONS(1278), + [anon_sym_gen] = ACTIONS(1620), + [anon_sym_impl] = ACTIONS(1282), + [anon_sym_union] = ACTIONS(1620), + [anon_sym_unsafe] = ACTIONS(1270), + [anon_sym_extern] = ACTIONS(1284), + [anon_sym_safe] = ACTIONS(1270), + [anon_sym_dyn] = ACTIONS(1288), + [sym_integer_literal] = ACTIONS(1622), + [aux_sym_string_literal_token1] = ACTIONS(1294), + [sym_char_literal] = ACTIONS(1622), + [anon_sym_true] = ACTIONS(1296), + [anon_sym_false] = ACTIONS(1296), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1624), + [sym_super] = ACTIONS(1624), + [sym_crate] = ACTIONS(1624), + [sym_metavariable] = ACTIONS(1626), + [sym__raw_string_literal_start] = ACTIONS(1304), + [sym_float_literal] = ACTIONS(1622), }, [STATE(445)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2483), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(2484), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_type_binding] = STATE(2762), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), - [sym_label] = STATE(3709), - [sym_block] = STATE(2762), - [sym__literal] = STATE(2762), - [sym_string_literal] = STATE(3070), - [sym_raw_string_literal] = STATE(3070), - [sym_boolean_literal] = STATE(3070), + [sym_function_modifiers] = STATE(3591), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2373), + [sym__type] = STATE(2517), + [sym_bracketed_type] = STATE(3474), + [sym_lifetime] = STATE(2518), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1591), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2022), + [sym_generic_type_with_turbofish] = STATE(3764), + [sym_bounded_type] = STATE(2069), + [sym_type_binding] = STATE(2684), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3334), + [sym_scoped_type_identifier] = STATE(1990), + [sym_label] = STATE(3739), + [sym_block] = STATE(2684), + [sym__literal] = STATE(2684), + [sym_string_literal] = STATE(2948), + [sym_raw_string_literal] = STATE(2948), + [sym_boolean_literal] = STATE(2948), [sym_line_comment] = STATE(445), [sym_block_comment] = STATE(445), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(1595), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_LBRACE] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1235), - [anon_sym_QMARK] = ACTIONS(1237), - [anon_sym_u8] = ACTIONS(1603), - [anon_sym_i8] = ACTIONS(1603), - [anon_sym_u16] = ACTIONS(1603), - [anon_sym_i16] = ACTIONS(1603), - [anon_sym_u32] = ACTIONS(1603), - [anon_sym_i32] = ACTIONS(1603), - [anon_sym_u64] = ACTIONS(1603), - [anon_sym_i64] = ACTIONS(1603), - [anon_sym_u128] = ACTIONS(1603), - [anon_sym_i128] = ACTIONS(1603), - [anon_sym_isize] = ACTIONS(1603), - [anon_sym_usize] = ACTIONS(1603), - [anon_sym_f32] = ACTIONS(1603), - [anon_sym_f64] = ACTIONS(1603), - [anon_sym_bool] = ACTIONS(1603), - [anon_sym_str] = ACTIONS(1603), - [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1243), - [anon_sym_AMP] = ACTIONS(1605), - [anon_sym_GT] = ACTIONS(1633), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(1611), - [anon_sym_async] = ACTIONS(1265), - [anon_sym_const] = ACTIONS(1265), - [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1271), - [anon_sym_for] = ACTIONS(1273), - [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1277), - [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1265), - [anon_sym_extern] = ACTIONS(1279), - [anon_sym_dyn] = ACTIONS(1283), - [sym_integer_literal] = ACTIONS(1617), - [aux_sym_string_literal_token1] = ACTIONS(1289), - [sym_char_literal] = ACTIONS(1617), - [anon_sym_true] = ACTIONS(1291), - [anon_sym_false] = ACTIONS(1291), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1619), - [sym_super] = ACTIONS(1619), - [sym_crate] = ACTIONS(1619), - [sym_metavariable] = ACTIONS(1621), - [sym__raw_string_literal_start] = ACTIONS(1299), - [sym_float_literal] = ACTIONS(1617), + [aux_sym_function_modifiers_repeat1] = STATE(2244), + [sym_identifier] = ACTIONS(1600), + [anon_sym_LPAREN] = ACTIONS(1602), + [anon_sym_LBRACK] = ACTIONS(1604), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_STAR] = ACTIONS(1240), + [anon_sym_QMARK] = ACTIONS(1242), + [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_BANG] = ACTIONS(1248), + [anon_sym_AMP] = ACTIONS(1610), + [anon_sym_GT] = ACTIONS(1634), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1614), + [anon_sym_SQUOTE] = ACTIONS(1616), + [anon_sym_async] = ACTIONS(1270), + [anon_sym_const] = ACTIONS(1270), + [anon_sym_default] = ACTIONS(1618), + [anon_sym_fn] = ACTIONS(1276), + [anon_sym_for] = ACTIONS(1278), + [anon_sym_gen] = ACTIONS(1620), + [anon_sym_impl] = ACTIONS(1282), + [anon_sym_union] = ACTIONS(1620), + [anon_sym_unsafe] = ACTIONS(1270), + [anon_sym_extern] = ACTIONS(1284), + [anon_sym_safe] = ACTIONS(1270), + [anon_sym_dyn] = ACTIONS(1288), + [sym_integer_literal] = ACTIONS(1622), + [aux_sym_string_literal_token1] = ACTIONS(1294), + [sym_char_literal] = ACTIONS(1622), + [anon_sym_true] = ACTIONS(1296), + [anon_sym_false] = ACTIONS(1296), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1624), + [sym_super] = ACTIONS(1624), + [sym_crate] = ACTIONS(1624), + [sym_metavariable] = ACTIONS(1626), + [sym__raw_string_literal_start] = ACTIONS(1304), + [sym_float_literal] = ACTIONS(1622), }, [STATE(446)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2483), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(2484), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_type_binding] = STATE(2762), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), - [sym_label] = STATE(3709), - [sym_block] = STATE(2762), - [sym__literal] = STATE(2762), - [sym_string_literal] = STATE(3070), - [sym_raw_string_literal] = STATE(3070), - [sym_boolean_literal] = STATE(3070), + [sym_function_modifiers] = STATE(3591), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2373), + [sym__type] = STATE(2517), + [sym_bracketed_type] = STATE(3474), + [sym_lifetime] = STATE(2518), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1591), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2022), + [sym_generic_type_with_turbofish] = STATE(3764), + [sym_bounded_type] = STATE(2069), + [sym_type_binding] = STATE(2684), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3334), + [sym_scoped_type_identifier] = STATE(1990), + [sym_label] = STATE(3739), + [sym_block] = STATE(2684), + [sym__literal] = STATE(2684), + [sym_string_literal] = STATE(2948), + [sym_raw_string_literal] = STATE(2948), + [sym_boolean_literal] = STATE(2948), [sym_line_comment] = STATE(446), [sym_block_comment] = STATE(446), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(1595), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_LBRACE] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1235), - [anon_sym_QMARK] = ACTIONS(1237), - [anon_sym_u8] = ACTIONS(1603), - [anon_sym_i8] = ACTIONS(1603), - [anon_sym_u16] = ACTIONS(1603), - [anon_sym_i16] = ACTIONS(1603), - [anon_sym_u32] = ACTIONS(1603), - [anon_sym_i32] = ACTIONS(1603), - [anon_sym_u64] = ACTIONS(1603), - [anon_sym_i64] = ACTIONS(1603), - [anon_sym_u128] = ACTIONS(1603), - [anon_sym_i128] = ACTIONS(1603), - [anon_sym_isize] = ACTIONS(1603), - [anon_sym_usize] = ACTIONS(1603), - [anon_sym_f32] = ACTIONS(1603), - [anon_sym_f64] = ACTIONS(1603), - [anon_sym_bool] = ACTIONS(1603), - [anon_sym_str] = ACTIONS(1603), - [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1243), - [anon_sym_AMP] = ACTIONS(1605), - [anon_sym_GT] = ACTIONS(1635), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(1611), - [anon_sym_async] = ACTIONS(1265), - [anon_sym_const] = ACTIONS(1265), - [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1271), - [anon_sym_for] = ACTIONS(1273), - [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1277), - [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1265), - [anon_sym_extern] = ACTIONS(1279), - [anon_sym_dyn] = ACTIONS(1283), - [sym_integer_literal] = ACTIONS(1617), - [aux_sym_string_literal_token1] = ACTIONS(1289), - [sym_char_literal] = ACTIONS(1617), - [anon_sym_true] = ACTIONS(1291), - [anon_sym_false] = ACTIONS(1291), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1619), - [sym_super] = ACTIONS(1619), - [sym_crate] = ACTIONS(1619), - [sym_metavariable] = ACTIONS(1621), - [sym__raw_string_literal_start] = ACTIONS(1299), - [sym_float_literal] = ACTIONS(1617), + [aux_sym_function_modifiers_repeat1] = STATE(2244), + [sym_identifier] = ACTIONS(1600), + [anon_sym_LPAREN] = ACTIONS(1602), + [anon_sym_LBRACK] = ACTIONS(1604), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_STAR] = ACTIONS(1240), + [anon_sym_QMARK] = ACTIONS(1242), + [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_BANG] = ACTIONS(1248), + [anon_sym_AMP] = ACTIONS(1610), + [anon_sym_GT] = ACTIONS(1636), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1614), + [anon_sym_SQUOTE] = ACTIONS(1616), + [anon_sym_async] = ACTIONS(1270), + [anon_sym_const] = ACTIONS(1270), + [anon_sym_default] = ACTIONS(1618), + [anon_sym_fn] = ACTIONS(1276), + [anon_sym_for] = ACTIONS(1278), + [anon_sym_gen] = ACTIONS(1620), + [anon_sym_impl] = ACTIONS(1282), + [anon_sym_union] = ACTIONS(1620), + [anon_sym_unsafe] = ACTIONS(1270), + [anon_sym_extern] = ACTIONS(1284), + [anon_sym_safe] = ACTIONS(1270), + [anon_sym_dyn] = ACTIONS(1288), + [sym_integer_literal] = ACTIONS(1622), + [aux_sym_string_literal_token1] = ACTIONS(1294), + [sym_char_literal] = ACTIONS(1622), + [anon_sym_true] = ACTIONS(1296), + [anon_sym_false] = ACTIONS(1296), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1624), + [sym_super] = ACTIONS(1624), + [sym_crate] = ACTIONS(1624), + [sym_metavariable] = ACTIONS(1626), + [sym__raw_string_literal_start] = ACTIONS(1304), + [sym_float_literal] = ACTIONS(1622), }, [STATE(447)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2483), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(2484), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_type_binding] = STATE(2762), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), - [sym_label] = STATE(3709), - [sym_block] = STATE(2762), - [sym__literal] = STATE(2762), - [sym_string_literal] = STATE(3070), - [sym_raw_string_literal] = STATE(3070), - [sym_boolean_literal] = STATE(3070), + [sym_function_modifiers] = STATE(3591), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2373), + [sym__type] = STATE(2517), + [sym_bracketed_type] = STATE(3474), + [sym_lifetime] = STATE(2518), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1591), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2022), + [sym_generic_type_with_turbofish] = STATE(3764), + [sym_bounded_type] = STATE(2069), + [sym_type_binding] = STATE(2684), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3334), + [sym_scoped_type_identifier] = STATE(1990), + [sym_label] = STATE(3739), + [sym_block] = STATE(2684), + [sym__literal] = STATE(2684), + [sym_string_literal] = STATE(2948), + [sym_raw_string_literal] = STATE(2948), + [sym_boolean_literal] = STATE(2948), [sym_line_comment] = STATE(447), [sym_block_comment] = STATE(447), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(1595), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_LBRACE] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1235), - [anon_sym_QMARK] = ACTIONS(1237), - [anon_sym_u8] = ACTIONS(1603), - [anon_sym_i8] = ACTIONS(1603), - [anon_sym_u16] = ACTIONS(1603), - [anon_sym_i16] = ACTIONS(1603), - [anon_sym_u32] = ACTIONS(1603), - [anon_sym_i32] = ACTIONS(1603), - [anon_sym_u64] = ACTIONS(1603), - [anon_sym_i64] = ACTIONS(1603), - [anon_sym_u128] = ACTIONS(1603), - [anon_sym_i128] = ACTIONS(1603), - [anon_sym_isize] = ACTIONS(1603), - [anon_sym_usize] = ACTIONS(1603), - [anon_sym_f32] = ACTIONS(1603), - [anon_sym_f64] = ACTIONS(1603), - [anon_sym_bool] = ACTIONS(1603), - [anon_sym_str] = ACTIONS(1603), - [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1243), - [anon_sym_AMP] = ACTIONS(1605), - [anon_sym_GT] = ACTIONS(1637), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(1611), - [anon_sym_async] = ACTIONS(1265), - [anon_sym_const] = ACTIONS(1265), - [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1271), - [anon_sym_for] = ACTIONS(1273), - [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1277), - [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1265), - [anon_sym_extern] = ACTIONS(1279), - [anon_sym_dyn] = ACTIONS(1283), - [sym_integer_literal] = ACTIONS(1617), - [aux_sym_string_literal_token1] = ACTIONS(1289), - [sym_char_literal] = ACTIONS(1617), - [anon_sym_true] = ACTIONS(1291), - [anon_sym_false] = ACTIONS(1291), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1619), - [sym_super] = ACTIONS(1619), - [sym_crate] = ACTIONS(1619), - [sym_metavariable] = ACTIONS(1621), - [sym__raw_string_literal_start] = ACTIONS(1299), - [sym_float_literal] = ACTIONS(1617), + [aux_sym_function_modifiers_repeat1] = STATE(2244), + [sym_identifier] = ACTIONS(1600), + [anon_sym_LPAREN] = ACTIONS(1602), + [anon_sym_LBRACK] = ACTIONS(1604), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_STAR] = ACTIONS(1240), + [anon_sym_QMARK] = ACTIONS(1242), + [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_BANG] = ACTIONS(1248), + [anon_sym_AMP] = ACTIONS(1610), + [anon_sym_GT] = ACTIONS(1638), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1614), + [anon_sym_SQUOTE] = ACTIONS(1616), + [anon_sym_async] = ACTIONS(1270), + [anon_sym_const] = ACTIONS(1270), + [anon_sym_default] = ACTIONS(1618), + [anon_sym_fn] = ACTIONS(1276), + [anon_sym_for] = ACTIONS(1278), + [anon_sym_gen] = ACTIONS(1620), + [anon_sym_impl] = ACTIONS(1282), + [anon_sym_union] = ACTIONS(1620), + [anon_sym_unsafe] = ACTIONS(1270), + [anon_sym_extern] = ACTIONS(1284), + [anon_sym_safe] = ACTIONS(1270), + [anon_sym_dyn] = ACTIONS(1288), + [sym_integer_literal] = ACTIONS(1622), + [aux_sym_string_literal_token1] = ACTIONS(1294), + [sym_char_literal] = ACTIONS(1622), + [anon_sym_true] = ACTIONS(1296), + [anon_sym_false] = ACTIONS(1296), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1624), + [sym_super] = ACTIONS(1624), + [sym_crate] = ACTIONS(1624), + [sym_metavariable] = ACTIONS(1626), + [sym__raw_string_literal_start] = ACTIONS(1304), + [sym_float_literal] = ACTIONS(1622), }, [STATE(448)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2483), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(2484), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_type_binding] = STATE(2762), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), - [sym_label] = STATE(3709), - [sym_block] = STATE(2762), - [sym__literal] = STATE(2762), - [sym_string_literal] = STATE(3070), - [sym_raw_string_literal] = STATE(3070), - [sym_boolean_literal] = STATE(3070), + [sym_function_modifiers] = STATE(3591), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2373), + [sym__type] = STATE(2517), + [sym_bracketed_type] = STATE(3474), + [sym_lifetime] = STATE(2518), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1591), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2022), + [sym_generic_type_with_turbofish] = STATE(3764), + [sym_bounded_type] = STATE(2069), + [sym_type_binding] = STATE(2684), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3334), + [sym_scoped_type_identifier] = STATE(1990), + [sym_label] = STATE(3739), + [sym_block] = STATE(2684), + [sym__literal] = STATE(2684), + [sym_string_literal] = STATE(2948), + [sym_raw_string_literal] = STATE(2948), + [sym_boolean_literal] = STATE(2948), [sym_line_comment] = STATE(448), [sym_block_comment] = STATE(448), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(1595), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_LBRACE] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1235), - [anon_sym_QMARK] = ACTIONS(1237), - [anon_sym_u8] = ACTIONS(1603), - [anon_sym_i8] = ACTIONS(1603), - [anon_sym_u16] = ACTIONS(1603), - [anon_sym_i16] = ACTIONS(1603), - [anon_sym_u32] = ACTIONS(1603), - [anon_sym_i32] = ACTIONS(1603), - [anon_sym_u64] = ACTIONS(1603), - [anon_sym_i64] = ACTIONS(1603), - [anon_sym_u128] = ACTIONS(1603), - [anon_sym_i128] = ACTIONS(1603), - [anon_sym_isize] = ACTIONS(1603), - [anon_sym_usize] = ACTIONS(1603), - [anon_sym_f32] = ACTIONS(1603), - [anon_sym_f64] = ACTIONS(1603), - [anon_sym_bool] = ACTIONS(1603), - [anon_sym_str] = ACTIONS(1603), - [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1243), - [anon_sym_AMP] = ACTIONS(1605), - [anon_sym_GT] = ACTIONS(1639), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(1611), - [anon_sym_async] = ACTIONS(1265), - [anon_sym_const] = ACTIONS(1265), - [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1271), - [anon_sym_for] = ACTIONS(1273), - [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1277), - [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1265), - [anon_sym_extern] = ACTIONS(1279), - [anon_sym_dyn] = ACTIONS(1283), - [sym_integer_literal] = ACTIONS(1617), - [aux_sym_string_literal_token1] = ACTIONS(1289), - [sym_char_literal] = ACTIONS(1617), - [anon_sym_true] = ACTIONS(1291), - [anon_sym_false] = ACTIONS(1291), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1619), - [sym_super] = ACTIONS(1619), - [sym_crate] = ACTIONS(1619), - [sym_metavariable] = ACTIONS(1621), - [sym__raw_string_literal_start] = ACTIONS(1299), - [sym_float_literal] = ACTIONS(1617), + [aux_sym_function_modifiers_repeat1] = STATE(2244), + [sym_identifier] = ACTIONS(1600), + [anon_sym_LPAREN] = ACTIONS(1602), + [anon_sym_LBRACK] = ACTIONS(1604), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_STAR] = ACTIONS(1240), + [anon_sym_QMARK] = ACTIONS(1242), + [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_BANG] = ACTIONS(1248), + [anon_sym_AMP] = ACTIONS(1610), + [anon_sym_GT] = ACTIONS(1640), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1614), + [anon_sym_SQUOTE] = ACTIONS(1616), + [anon_sym_async] = ACTIONS(1270), + [anon_sym_const] = ACTIONS(1270), + [anon_sym_default] = ACTIONS(1618), + [anon_sym_fn] = ACTIONS(1276), + [anon_sym_for] = ACTIONS(1278), + [anon_sym_gen] = ACTIONS(1620), + [anon_sym_impl] = ACTIONS(1282), + [anon_sym_union] = ACTIONS(1620), + [anon_sym_unsafe] = ACTIONS(1270), + [anon_sym_extern] = ACTIONS(1284), + [anon_sym_safe] = ACTIONS(1270), + [anon_sym_dyn] = ACTIONS(1288), + [sym_integer_literal] = ACTIONS(1622), + [aux_sym_string_literal_token1] = ACTIONS(1294), + [sym_char_literal] = ACTIONS(1622), + [anon_sym_true] = ACTIONS(1296), + [anon_sym_false] = ACTIONS(1296), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1624), + [sym_super] = ACTIONS(1624), + [sym_crate] = ACTIONS(1624), + [sym_metavariable] = ACTIONS(1626), + [sym__raw_string_literal_start] = ACTIONS(1304), + [sym_float_literal] = ACTIONS(1622), }, [STATE(449)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2483), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(2484), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_type_binding] = STATE(2762), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), - [sym_label] = STATE(3709), - [sym_block] = STATE(2762), - [sym__literal] = STATE(2762), - [sym_string_literal] = STATE(3070), - [sym_raw_string_literal] = STATE(3070), - [sym_boolean_literal] = STATE(3070), + [sym_function_modifiers] = STATE(3591), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2373), + [sym__type] = STATE(2517), + [sym_bracketed_type] = STATE(3474), + [sym_lifetime] = STATE(2518), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1591), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2022), + [sym_generic_type_with_turbofish] = STATE(3764), + [sym_bounded_type] = STATE(2069), + [sym_type_binding] = STATE(2684), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3334), + [sym_scoped_type_identifier] = STATE(1990), + [sym_label] = STATE(3739), + [sym_block] = STATE(2684), + [sym__literal] = STATE(2684), + [sym_string_literal] = STATE(2948), + [sym_raw_string_literal] = STATE(2948), + [sym_boolean_literal] = STATE(2948), [sym_line_comment] = STATE(449), [sym_block_comment] = STATE(449), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(1595), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_LBRACE] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1235), - [anon_sym_QMARK] = ACTIONS(1237), - [anon_sym_u8] = ACTIONS(1603), - [anon_sym_i8] = ACTIONS(1603), - [anon_sym_u16] = ACTIONS(1603), - [anon_sym_i16] = ACTIONS(1603), - [anon_sym_u32] = ACTIONS(1603), - [anon_sym_i32] = ACTIONS(1603), - [anon_sym_u64] = ACTIONS(1603), - [anon_sym_i64] = ACTIONS(1603), - [anon_sym_u128] = ACTIONS(1603), - [anon_sym_i128] = ACTIONS(1603), - [anon_sym_isize] = ACTIONS(1603), - [anon_sym_usize] = ACTIONS(1603), - [anon_sym_f32] = ACTIONS(1603), - [anon_sym_f64] = ACTIONS(1603), - [anon_sym_bool] = ACTIONS(1603), - [anon_sym_str] = ACTIONS(1603), - [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1243), - [anon_sym_AMP] = ACTIONS(1605), - [anon_sym_GT] = ACTIONS(1641), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(1611), - [anon_sym_async] = ACTIONS(1265), - [anon_sym_const] = ACTIONS(1265), - [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1271), - [anon_sym_for] = ACTIONS(1273), - [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1277), - [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1265), - [anon_sym_extern] = ACTIONS(1279), - [anon_sym_dyn] = ACTIONS(1283), - [sym_integer_literal] = ACTIONS(1617), - [aux_sym_string_literal_token1] = ACTIONS(1289), - [sym_char_literal] = ACTIONS(1617), - [anon_sym_true] = ACTIONS(1291), - [anon_sym_false] = ACTIONS(1291), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1619), - [sym_super] = ACTIONS(1619), - [sym_crate] = ACTIONS(1619), - [sym_metavariable] = ACTIONS(1621), - [sym__raw_string_literal_start] = ACTIONS(1299), - [sym_float_literal] = ACTIONS(1617), + [aux_sym_function_modifiers_repeat1] = STATE(2244), + [sym_identifier] = ACTIONS(1600), + [anon_sym_LPAREN] = ACTIONS(1602), + [anon_sym_LBRACK] = ACTIONS(1604), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_STAR] = ACTIONS(1240), + [anon_sym_QMARK] = ACTIONS(1242), + [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_BANG] = ACTIONS(1248), + [anon_sym_AMP] = ACTIONS(1610), + [anon_sym_GT] = ACTIONS(1642), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1614), + [anon_sym_SQUOTE] = ACTIONS(1616), + [anon_sym_async] = ACTIONS(1270), + [anon_sym_const] = ACTIONS(1270), + [anon_sym_default] = ACTIONS(1618), + [anon_sym_fn] = ACTIONS(1276), + [anon_sym_for] = ACTIONS(1278), + [anon_sym_gen] = ACTIONS(1620), + [anon_sym_impl] = ACTIONS(1282), + [anon_sym_union] = ACTIONS(1620), + [anon_sym_unsafe] = ACTIONS(1270), + [anon_sym_extern] = ACTIONS(1284), + [anon_sym_safe] = ACTIONS(1270), + [anon_sym_dyn] = ACTIONS(1288), + [sym_integer_literal] = ACTIONS(1622), + [aux_sym_string_literal_token1] = ACTIONS(1294), + [sym_char_literal] = ACTIONS(1622), + [anon_sym_true] = ACTIONS(1296), + [anon_sym_false] = ACTIONS(1296), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1624), + [sym_super] = ACTIONS(1624), + [sym_crate] = ACTIONS(1624), + [sym_metavariable] = ACTIONS(1626), + [sym__raw_string_literal_start] = ACTIONS(1304), + [sym_float_literal] = ACTIONS(1622), }, [STATE(450)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2483), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(2484), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_type_binding] = STATE(2762), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), - [sym_label] = STATE(3709), - [sym_block] = STATE(2762), - [sym__literal] = STATE(2762), - [sym_string_literal] = STATE(3070), - [sym_raw_string_literal] = STATE(3070), - [sym_boolean_literal] = STATE(3070), + [sym_function_modifiers] = STATE(3591), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2373), + [sym__type] = STATE(2517), + [sym_bracketed_type] = STATE(3474), + [sym_lifetime] = STATE(2518), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1591), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2022), + [sym_generic_type_with_turbofish] = STATE(3764), + [sym_bounded_type] = STATE(2069), + [sym_type_binding] = STATE(2684), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3334), + [sym_scoped_type_identifier] = STATE(1990), + [sym_label] = STATE(3739), + [sym_block] = STATE(2684), + [sym__literal] = STATE(2684), + [sym_string_literal] = STATE(2948), + [sym_raw_string_literal] = STATE(2948), + [sym_boolean_literal] = STATE(2948), [sym_line_comment] = STATE(450), [sym_block_comment] = STATE(450), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(1595), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_LBRACE] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1235), - [anon_sym_QMARK] = ACTIONS(1237), - [anon_sym_u8] = ACTIONS(1603), - [anon_sym_i8] = ACTIONS(1603), - [anon_sym_u16] = ACTIONS(1603), - [anon_sym_i16] = ACTIONS(1603), - [anon_sym_u32] = ACTIONS(1603), - [anon_sym_i32] = ACTIONS(1603), - [anon_sym_u64] = ACTIONS(1603), - [anon_sym_i64] = ACTIONS(1603), - [anon_sym_u128] = ACTIONS(1603), - [anon_sym_i128] = ACTIONS(1603), - [anon_sym_isize] = ACTIONS(1603), - [anon_sym_usize] = ACTIONS(1603), - [anon_sym_f32] = ACTIONS(1603), - [anon_sym_f64] = ACTIONS(1603), - [anon_sym_bool] = ACTIONS(1603), - [anon_sym_str] = ACTIONS(1603), - [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1243), - [anon_sym_AMP] = ACTIONS(1605), - [anon_sym_GT] = ACTIONS(1643), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(1611), - [anon_sym_async] = ACTIONS(1265), - [anon_sym_const] = ACTIONS(1265), - [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1271), - [anon_sym_for] = ACTIONS(1273), - [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1277), - [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1265), - [anon_sym_extern] = ACTIONS(1279), - [anon_sym_dyn] = ACTIONS(1283), - [sym_integer_literal] = ACTIONS(1617), - [aux_sym_string_literal_token1] = ACTIONS(1289), - [sym_char_literal] = ACTIONS(1617), - [anon_sym_true] = ACTIONS(1291), - [anon_sym_false] = ACTIONS(1291), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1619), - [sym_super] = ACTIONS(1619), - [sym_crate] = ACTIONS(1619), - [sym_metavariable] = ACTIONS(1621), - [sym__raw_string_literal_start] = ACTIONS(1299), - [sym_float_literal] = ACTIONS(1617), + [aux_sym_function_modifiers_repeat1] = STATE(2244), + [sym_identifier] = ACTIONS(1600), + [anon_sym_LPAREN] = ACTIONS(1602), + [anon_sym_LBRACK] = ACTIONS(1604), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_STAR] = ACTIONS(1240), + [anon_sym_QMARK] = ACTIONS(1242), + [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_BANG] = ACTIONS(1248), + [anon_sym_AMP] = ACTIONS(1610), + [anon_sym_GT] = ACTIONS(1644), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1614), + [anon_sym_SQUOTE] = ACTIONS(1616), + [anon_sym_async] = ACTIONS(1270), + [anon_sym_const] = ACTIONS(1270), + [anon_sym_default] = ACTIONS(1618), + [anon_sym_fn] = ACTIONS(1276), + [anon_sym_for] = ACTIONS(1278), + [anon_sym_gen] = ACTIONS(1620), + [anon_sym_impl] = ACTIONS(1282), + [anon_sym_union] = ACTIONS(1620), + [anon_sym_unsafe] = ACTIONS(1270), + [anon_sym_extern] = ACTIONS(1284), + [anon_sym_safe] = ACTIONS(1270), + [anon_sym_dyn] = ACTIONS(1288), + [sym_integer_literal] = ACTIONS(1622), + [aux_sym_string_literal_token1] = ACTIONS(1294), + [sym_char_literal] = ACTIONS(1622), + [anon_sym_true] = ACTIONS(1296), + [anon_sym_false] = ACTIONS(1296), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1624), + [sym_super] = ACTIONS(1624), + [sym_crate] = ACTIONS(1624), + [sym_metavariable] = ACTIONS(1626), + [sym__raw_string_literal_start] = ACTIONS(1304), + [sym_float_literal] = ACTIONS(1622), }, [STATE(451)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2483), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(2484), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_type_binding] = STATE(2762), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), - [sym_label] = STATE(3709), - [sym_block] = STATE(2762), - [sym__literal] = STATE(2762), - [sym_string_literal] = STATE(3070), - [sym_raw_string_literal] = STATE(3070), - [sym_boolean_literal] = STATE(3070), + [sym_function_modifiers] = STATE(3591), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2373), + [sym__type] = STATE(2517), + [sym_bracketed_type] = STATE(3474), + [sym_lifetime] = STATE(2518), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1591), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2022), + [sym_generic_type_with_turbofish] = STATE(3764), + [sym_bounded_type] = STATE(2069), + [sym_type_binding] = STATE(2684), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3334), + [sym_scoped_type_identifier] = STATE(1990), + [sym_label] = STATE(3739), + [sym_block] = STATE(2684), + [sym__literal] = STATE(2684), + [sym_string_literal] = STATE(2948), + [sym_raw_string_literal] = STATE(2948), + [sym_boolean_literal] = STATE(2948), [sym_line_comment] = STATE(451), [sym_block_comment] = STATE(451), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(1595), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_LBRACE] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1235), - [anon_sym_QMARK] = ACTIONS(1237), - [anon_sym_u8] = ACTIONS(1603), - [anon_sym_i8] = ACTIONS(1603), - [anon_sym_u16] = ACTIONS(1603), - [anon_sym_i16] = ACTIONS(1603), - [anon_sym_u32] = ACTIONS(1603), - [anon_sym_i32] = ACTIONS(1603), - [anon_sym_u64] = ACTIONS(1603), - [anon_sym_i64] = ACTIONS(1603), - [anon_sym_u128] = ACTIONS(1603), - [anon_sym_i128] = ACTIONS(1603), - [anon_sym_isize] = ACTIONS(1603), - [anon_sym_usize] = ACTIONS(1603), - [anon_sym_f32] = ACTIONS(1603), - [anon_sym_f64] = ACTIONS(1603), - [anon_sym_bool] = ACTIONS(1603), - [anon_sym_str] = ACTIONS(1603), - [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1243), - [anon_sym_AMP] = ACTIONS(1605), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(1611), - [anon_sym_async] = ACTIONS(1265), - [anon_sym_const] = ACTIONS(1265), - [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1271), - [anon_sym_for] = ACTIONS(1273), - [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1277), - [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1265), - [anon_sym_extern] = ACTIONS(1279), - [anon_sym_dyn] = ACTIONS(1283), - [sym_integer_literal] = ACTIONS(1617), - [aux_sym_string_literal_token1] = ACTIONS(1289), - [sym_char_literal] = ACTIONS(1617), - [anon_sym_true] = ACTIONS(1291), - [anon_sym_false] = ACTIONS(1291), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1619), - [sym_super] = ACTIONS(1619), - [sym_crate] = ACTIONS(1619), - [sym_metavariable] = ACTIONS(1621), - [sym__raw_string_literal_start] = ACTIONS(1299), - [sym_float_literal] = ACTIONS(1617), + [aux_sym_function_modifiers_repeat1] = STATE(2244), + [sym_identifier] = ACTIONS(1600), + [anon_sym_LPAREN] = ACTIONS(1602), + [anon_sym_LBRACK] = ACTIONS(1604), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_STAR] = ACTIONS(1240), + [anon_sym_QMARK] = ACTIONS(1242), + [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_BANG] = ACTIONS(1248), + [anon_sym_AMP] = ACTIONS(1610), + [anon_sym_GT] = ACTIONS(1646), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1614), + [anon_sym_SQUOTE] = ACTIONS(1616), + [anon_sym_async] = ACTIONS(1270), + [anon_sym_const] = ACTIONS(1270), + [anon_sym_default] = ACTIONS(1618), + [anon_sym_fn] = ACTIONS(1276), + [anon_sym_for] = ACTIONS(1278), + [anon_sym_gen] = ACTIONS(1620), + [anon_sym_impl] = ACTIONS(1282), + [anon_sym_union] = ACTIONS(1620), + [anon_sym_unsafe] = ACTIONS(1270), + [anon_sym_extern] = ACTIONS(1284), + [anon_sym_safe] = ACTIONS(1270), + [anon_sym_dyn] = ACTIONS(1288), + [sym_integer_literal] = ACTIONS(1622), + [aux_sym_string_literal_token1] = ACTIONS(1294), + [sym_char_literal] = ACTIONS(1622), + [anon_sym_true] = ACTIONS(1296), + [anon_sym_false] = ACTIONS(1296), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1624), + [sym_super] = ACTIONS(1624), + [sym_crate] = ACTIONS(1624), + [sym_metavariable] = ACTIONS(1626), + [sym__raw_string_literal_start] = ACTIONS(1304), + [sym_float_literal] = ACTIONS(1622), }, [STATE(452)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2371), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(2372), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_type_binding] = STATE(2527), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), - [sym_label] = STATE(3709), - [sym_block] = STATE(2527), - [sym__literal] = STATE(2527), - [sym_string_literal] = STATE(3070), - [sym_raw_string_literal] = STATE(3070), - [sym_boolean_literal] = STATE(3070), + [sym_function_modifiers] = STATE(3591), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2373), + [sym__type] = STATE(2517), + [sym_bracketed_type] = STATE(3474), + [sym_lifetime] = STATE(2518), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1591), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2022), + [sym_generic_type_with_turbofish] = STATE(3764), + [sym_bounded_type] = STATE(2069), + [sym_type_binding] = STATE(2684), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3334), + [sym_scoped_type_identifier] = STATE(1990), + [sym_label] = STATE(3739), + [sym_block] = STATE(2684), + [sym__literal] = STATE(2684), + [sym_string_literal] = STATE(2948), + [sym_raw_string_literal] = STATE(2948), + [sym_boolean_literal] = STATE(2948), [sym_line_comment] = STATE(452), [sym_block_comment] = STATE(452), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(1595), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_LBRACE] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1235), - [anon_sym_QMARK] = ACTIONS(1237), - [anon_sym_u8] = ACTIONS(1603), - [anon_sym_i8] = ACTIONS(1603), - [anon_sym_u16] = ACTIONS(1603), - [anon_sym_i16] = ACTIONS(1603), - [anon_sym_u32] = ACTIONS(1603), - [anon_sym_i32] = ACTIONS(1603), - [anon_sym_u64] = ACTIONS(1603), - [anon_sym_i64] = ACTIONS(1603), - [anon_sym_u128] = ACTIONS(1603), - [anon_sym_i128] = ACTIONS(1603), - [anon_sym_isize] = ACTIONS(1603), - [anon_sym_usize] = ACTIONS(1603), - [anon_sym_f32] = ACTIONS(1603), - [anon_sym_f64] = ACTIONS(1603), - [anon_sym_bool] = ACTIONS(1603), - [anon_sym_str] = ACTIONS(1603), - [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1243), - [anon_sym_AMP] = ACTIONS(1605), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(1611), - [anon_sym_async] = ACTIONS(1265), - [anon_sym_const] = ACTIONS(1265), - [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1271), - [anon_sym_for] = ACTIONS(1273), - [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1277), - [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1265), - [anon_sym_extern] = ACTIONS(1279), - [anon_sym_dyn] = ACTIONS(1283), - [sym_integer_literal] = ACTIONS(1617), - [aux_sym_string_literal_token1] = ACTIONS(1289), - [sym_char_literal] = ACTIONS(1617), - [anon_sym_true] = ACTIONS(1291), - [anon_sym_false] = ACTIONS(1291), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1619), - [sym_super] = ACTIONS(1619), - [sym_crate] = ACTIONS(1619), - [sym_metavariable] = ACTIONS(1621), - [sym__raw_string_literal_start] = ACTIONS(1299), - [sym_float_literal] = ACTIONS(1617), + [aux_sym_function_modifiers_repeat1] = STATE(2244), + [sym_identifier] = ACTIONS(1600), + [anon_sym_LPAREN] = ACTIONS(1602), + [anon_sym_LBRACK] = ACTIONS(1604), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_STAR] = ACTIONS(1240), + [anon_sym_QMARK] = ACTIONS(1242), + [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_BANG] = ACTIONS(1248), + [anon_sym_AMP] = ACTIONS(1610), + [anon_sym_GT] = ACTIONS(1648), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1614), + [anon_sym_SQUOTE] = ACTIONS(1616), + [anon_sym_async] = ACTIONS(1270), + [anon_sym_const] = ACTIONS(1270), + [anon_sym_default] = ACTIONS(1618), + [anon_sym_fn] = ACTIONS(1276), + [anon_sym_for] = ACTIONS(1278), + [anon_sym_gen] = ACTIONS(1620), + [anon_sym_impl] = ACTIONS(1282), + [anon_sym_union] = ACTIONS(1620), + [anon_sym_unsafe] = ACTIONS(1270), + [anon_sym_extern] = ACTIONS(1284), + [anon_sym_safe] = ACTIONS(1270), + [anon_sym_dyn] = ACTIONS(1288), + [sym_integer_literal] = ACTIONS(1622), + [aux_sym_string_literal_token1] = ACTIONS(1294), + [sym_char_literal] = ACTIONS(1622), + [anon_sym_true] = ACTIONS(1296), + [anon_sym_false] = ACTIONS(1296), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1624), + [sym_super] = ACTIONS(1624), + [sym_crate] = ACTIONS(1624), + [sym_metavariable] = ACTIONS(1626), + [sym__raw_string_literal_start] = ACTIONS(1304), + [sym_float_literal] = ACTIONS(1622), }, [STATE(453)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2404), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(2405), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_type_binding] = STATE(2489), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), - [sym_label] = STATE(3709), - [sym_block] = STATE(2489), - [sym__literal] = STATE(2489), - [sym_string_literal] = STATE(3070), - [sym_raw_string_literal] = STATE(3070), - [sym_boolean_literal] = STATE(3070), + [sym_function_modifiers] = STATE(3591), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2373), + [sym__type] = STATE(2391), + [sym_bracketed_type] = STATE(3474), + [sym_lifetime] = STATE(2392), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1591), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2022), + [sym_generic_type_with_turbofish] = STATE(3764), + [sym_bounded_type] = STATE(2069), + [sym_type_binding] = STATE(2510), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3334), + [sym_scoped_type_identifier] = STATE(1990), + [sym_label] = STATE(3739), + [sym_block] = STATE(2510), + [sym__literal] = STATE(2510), + [sym_string_literal] = STATE(2948), + [sym_raw_string_literal] = STATE(2948), + [sym_boolean_literal] = STATE(2948), [sym_line_comment] = STATE(453), [sym_block_comment] = STATE(453), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(1595), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_LBRACE] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1235), - [anon_sym_QMARK] = ACTIONS(1237), - [anon_sym_u8] = ACTIONS(1603), - [anon_sym_i8] = ACTIONS(1603), - [anon_sym_u16] = ACTIONS(1603), - [anon_sym_i16] = ACTIONS(1603), - [anon_sym_u32] = ACTIONS(1603), - [anon_sym_i32] = ACTIONS(1603), - [anon_sym_u64] = ACTIONS(1603), - [anon_sym_i64] = ACTIONS(1603), - [anon_sym_u128] = ACTIONS(1603), - [anon_sym_i128] = ACTIONS(1603), - [anon_sym_isize] = ACTIONS(1603), - [anon_sym_usize] = ACTIONS(1603), - [anon_sym_f32] = ACTIONS(1603), - [anon_sym_f64] = ACTIONS(1603), - [anon_sym_bool] = ACTIONS(1603), - [anon_sym_str] = ACTIONS(1603), - [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1243), - [anon_sym_AMP] = ACTIONS(1605), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(1611), - [anon_sym_async] = ACTIONS(1265), - [anon_sym_const] = ACTIONS(1265), - [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1271), - [anon_sym_for] = ACTIONS(1273), - [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1277), - [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1265), - [anon_sym_extern] = ACTIONS(1279), - [anon_sym_dyn] = ACTIONS(1283), - [sym_integer_literal] = ACTIONS(1617), - [aux_sym_string_literal_token1] = ACTIONS(1289), - [sym_char_literal] = ACTIONS(1617), - [anon_sym_true] = ACTIONS(1291), - [anon_sym_false] = ACTIONS(1291), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1619), - [sym_super] = ACTIONS(1619), - [sym_crate] = ACTIONS(1619), - [sym_metavariable] = ACTIONS(1621), - [sym__raw_string_literal_start] = ACTIONS(1299), - [sym_float_literal] = ACTIONS(1617), + [aux_sym_function_modifiers_repeat1] = STATE(2244), + [sym_identifier] = ACTIONS(1600), + [anon_sym_LPAREN] = ACTIONS(1602), + [anon_sym_LBRACK] = ACTIONS(1604), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_STAR] = ACTIONS(1240), + [anon_sym_QMARK] = ACTIONS(1242), + [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_BANG] = ACTIONS(1248), + [anon_sym_AMP] = ACTIONS(1610), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1614), + [anon_sym_SQUOTE] = ACTIONS(1616), + [anon_sym_async] = ACTIONS(1270), + [anon_sym_const] = ACTIONS(1270), + [anon_sym_default] = ACTIONS(1618), + [anon_sym_fn] = ACTIONS(1276), + [anon_sym_for] = ACTIONS(1278), + [anon_sym_gen] = ACTIONS(1620), + [anon_sym_impl] = ACTIONS(1282), + [anon_sym_union] = ACTIONS(1620), + [anon_sym_unsafe] = ACTIONS(1270), + [anon_sym_extern] = ACTIONS(1284), + [anon_sym_safe] = ACTIONS(1270), + [anon_sym_dyn] = ACTIONS(1288), + [sym_integer_literal] = ACTIONS(1622), + [aux_sym_string_literal_token1] = ACTIONS(1294), + [sym_char_literal] = ACTIONS(1622), + [anon_sym_true] = ACTIONS(1296), + [anon_sym_false] = ACTIONS(1296), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1624), + [sym_super] = ACTIONS(1624), + [sym_crate] = ACTIONS(1624), + [sym_metavariable] = ACTIONS(1626), + [sym__raw_string_literal_start] = ACTIONS(1304), + [sym_float_literal] = ACTIONS(1622), }, [STATE(454)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2415), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(2416), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_type_binding] = STATE(2491), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), - [sym_label] = STATE(3709), - [sym_block] = STATE(2491), - [sym__literal] = STATE(2491), - [sym_string_literal] = STATE(3070), - [sym_raw_string_literal] = STATE(3070), - [sym_boolean_literal] = STATE(3070), + [sym_function_modifiers] = STATE(3591), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2373), + [sym__type] = STATE(2436), + [sym_bracketed_type] = STATE(3474), + [sym_lifetime] = STATE(2437), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1591), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2022), + [sym_generic_type_with_turbofish] = STATE(3764), + [sym_bounded_type] = STATE(2069), + [sym_type_binding] = STATE(2497), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3334), + [sym_scoped_type_identifier] = STATE(1990), + [sym_label] = STATE(3739), + [sym_block] = STATE(2497), + [sym__literal] = STATE(2497), + [sym_string_literal] = STATE(2948), + [sym_raw_string_literal] = STATE(2948), + [sym_boolean_literal] = STATE(2948), [sym_line_comment] = STATE(454), [sym_block_comment] = STATE(454), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(1595), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_LBRACE] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1235), - [anon_sym_QMARK] = ACTIONS(1237), - [anon_sym_u8] = ACTIONS(1603), - [anon_sym_i8] = ACTIONS(1603), - [anon_sym_u16] = ACTIONS(1603), - [anon_sym_i16] = ACTIONS(1603), - [anon_sym_u32] = ACTIONS(1603), - [anon_sym_i32] = ACTIONS(1603), - [anon_sym_u64] = ACTIONS(1603), - [anon_sym_i64] = ACTIONS(1603), - [anon_sym_u128] = ACTIONS(1603), - [anon_sym_i128] = ACTIONS(1603), - [anon_sym_isize] = ACTIONS(1603), - [anon_sym_usize] = ACTIONS(1603), - [anon_sym_f32] = ACTIONS(1603), - [anon_sym_f64] = ACTIONS(1603), - [anon_sym_bool] = ACTIONS(1603), - [anon_sym_str] = ACTIONS(1603), - [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1243), - [anon_sym_AMP] = ACTIONS(1605), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(1611), - [anon_sym_async] = ACTIONS(1265), - [anon_sym_const] = ACTIONS(1265), - [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1271), - [anon_sym_for] = ACTIONS(1273), - [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1277), - [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1265), - [anon_sym_extern] = ACTIONS(1279), - [anon_sym_dyn] = ACTIONS(1283), - [sym_integer_literal] = ACTIONS(1617), - [aux_sym_string_literal_token1] = ACTIONS(1289), - [sym_char_literal] = ACTIONS(1617), - [anon_sym_true] = ACTIONS(1291), - [anon_sym_false] = ACTIONS(1291), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1619), - [sym_super] = ACTIONS(1619), - [sym_crate] = ACTIONS(1619), - [sym_metavariable] = ACTIONS(1621), - [sym__raw_string_literal_start] = ACTIONS(1299), - [sym_float_literal] = ACTIONS(1617), + [aux_sym_function_modifiers_repeat1] = STATE(2244), + [sym_identifier] = ACTIONS(1600), + [anon_sym_LPAREN] = ACTIONS(1602), + [anon_sym_LBRACK] = ACTIONS(1604), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_STAR] = ACTIONS(1240), + [anon_sym_QMARK] = ACTIONS(1242), + [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_BANG] = ACTIONS(1248), + [anon_sym_AMP] = ACTIONS(1610), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1614), + [anon_sym_SQUOTE] = ACTIONS(1616), + [anon_sym_async] = ACTIONS(1270), + [anon_sym_const] = ACTIONS(1270), + [anon_sym_default] = ACTIONS(1618), + [anon_sym_fn] = ACTIONS(1276), + [anon_sym_for] = ACTIONS(1278), + [anon_sym_gen] = ACTIONS(1620), + [anon_sym_impl] = ACTIONS(1282), + [anon_sym_union] = ACTIONS(1620), + [anon_sym_unsafe] = ACTIONS(1270), + [anon_sym_extern] = ACTIONS(1284), + [anon_sym_safe] = ACTIONS(1270), + [anon_sym_dyn] = ACTIONS(1288), + [sym_integer_literal] = ACTIONS(1622), + [aux_sym_string_literal_token1] = ACTIONS(1294), + [sym_char_literal] = ACTIONS(1622), + [anon_sym_true] = ACTIONS(1296), + [anon_sym_false] = ACTIONS(1296), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1624), + [sym_super] = ACTIONS(1624), + [sym_crate] = ACTIONS(1624), + [sym_metavariable] = ACTIONS(1626), + [sym__raw_string_literal_start] = ACTIONS(1304), + [sym_float_literal] = ACTIONS(1622), }, [STATE(455)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2432), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(2437), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_type_binding] = STATE(2499), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), - [sym_label] = STATE(3709), - [sym_block] = STATE(2499), - [sym__literal] = STATE(2499), - [sym_string_literal] = STATE(3070), - [sym_raw_string_literal] = STATE(3070), - [sym_boolean_literal] = STATE(3070), + [sym_function_modifiers] = STATE(3591), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2373), + [sym__type] = STATE(2431), + [sym_bracketed_type] = STATE(3474), + [sym_lifetime] = STATE(2432), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1591), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2022), + [sym_generic_type_with_turbofish] = STATE(3764), + [sym_bounded_type] = STATE(2069), + [sym_type_binding] = STATE(2480), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3334), + [sym_scoped_type_identifier] = STATE(1990), + [sym_label] = STATE(3739), + [sym_block] = STATE(2480), + [sym__literal] = STATE(2480), + [sym_string_literal] = STATE(2948), + [sym_raw_string_literal] = STATE(2948), + [sym_boolean_literal] = STATE(2948), [sym_line_comment] = STATE(455), [sym_block_comment] = STATE(455), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(1595), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_LBRACE] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1235), - [anon_sym_QMARK] = ACTIONS(1237), - [anon_sym_u8] = ACTIONS(1603), - [anon_sym_i8] = ACTIONS(1603), - [anon_sym_u16] = ACTIONS(1603), - [anon_sym_i16] = ACTIONS(1603), - [anon_sym_u32] = ACTIONS(1603), - [anon_sym_i32] = ACTIONS(1603), - [anon_sym_u64] = ACTIONS(1603), - [anon_sym_i64] = ACTIONS(1603), - [anon_sym_u128] = ACTIONS(1603), - [anon_sym_i128] = ACTIONS(1603), - [anon_sym_isize] = ACTIONS(1603), - [anon_sym_usize] = ACTIONS(1603), - [anon_sym_f32] = ACTIONS(1603), - [anon_sym_f64] = ACTIONS(1603), - [anon_sym_bool] = ACTIONS(1603), - [anon_sym_str] = ACTIONS(1603), - [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1243), - [anon_sym_AMP] = ACTIONS(1605), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(1611), - [anon_sym_async] = ACTIONS(1265), - [anon_sym_const] = ACTIONS(1265), - [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1271), - [anon_sym_for] = ACTIONS(1273), - [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1277), - [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1265), - [anon_sym_extern] = ACTIONS(1279), - [anon_sym_dyn] = ACTIONS(1283), - [sym_integer_literal] = ACTIONS(1617), - [aux_sym_string_literal_token1] = ACTIONS(1289), - [sym_char_literal] = ACTIONS(1617), - [anon_sym_true] = ACTIONS(1291), - [anon_sym_false] = ACTIONS(1291), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1619), - [sym_super] = ACTIONS(1619), - [sym_crate] = ACTIONS(1619), - [sym_metavariable] = ACTIONS(1621), - [sym__raw_string_literal_start] = ACTIONS(1299), - [sym_float_literal] = ACTIONS(1617), + [aux_sym_function_modifiers_repeat1] = STATE(2244), + [sym_identifier] = ACTIONS(1600), + [anon_sym_LPAREN] = ACTIONS(1602), + [anon_sym_LBRACK] = ACTIONS(1604), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_STAR] = ACTIONS(1240), + [anon_sym_QMARK] = ACTIONS(1242), + [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_BANG] = ACTIONS(1248), + [anon_sym_AMP] = ACTIONS(1610), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1614), + [anon_sym_SQUOTE] = ACTIONS(1616), + [anon_sym_async] = ACTIONS(1270), + [anon_sym_const] = ACTIONS(1270), + [anon_sym_default] = ACTIONS(1618), + [anon_sym_fn] = ACTIONS(1276), + [anon_sym_for] = ACTIONS(1278), + [anon_sym_gen] = ACTIONS(1620), + [anon_sym_impl] = ACTIONS(1282), + [anon_sym_union] = ACTIONS(1620), + [anon_sym_unsafe] = ACTIONS(1270), + [anon_sym_extern] = ACTIONS(1284), + [anon_sym_safe] = ACTIONS(1270), + [anon_sym_dyn] = ACTIONS(1288), + [sym_integer_literal] = ACTIONS(1622), + [aux_sym_string_literal_token1] = ACTIONS(1294), + [sym_char_literal] = ACTIONS(1622), + [anon_sym_true] = ACTIONS(1296), + [anon_sym_false] = ACTIONS(1296), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1624), + [sym_super] = ACTIONS(1624), + [sym_crate] = ACTIONS(1624), + [sym_metavariable] = ACTIONS(1626), + [sym__raw_string_literal_start] = ACTIONS(1304), + [sym_float_literal] = ACTIONS(1622), }, [STATE(456)] = { - [sym_attribute_item] = STATE(1395), - [sym_inner_attribute_item] = STATE(1395), - [sym_bracketed_type] = STATE(3648), - [sym_generic_type] = STATE(3450), - [sym_generic_type_with_turbofish] = STATE(3370), - [sym_macro_invocation] = STATE(3108), - [sym_scoped_identifier] = STATE(2218), - [sym_scoped_type_identifier] = STATE(3059), - [sym_match_arm] = STATE(1396), - [sym_last_match_arm] = STATE(3531), - [sym_match_pattern] = STATE(3527), - [sym_const_block] = STATE(3108), - [sym__pattern] = STATE(2998), - [sym_generic_pattern] = STATE(3108), - [sym_tuple_pattern] = STATE(3108), - [sym_slice_pattern] = STATE(3108), - [sym_tuple_struct_pattern] = STATE(3108), - [sym_struct_pattern] = STATE(3108), - [sym_remaining_field_pattern] = STATE(3108), - [sym_mut_pattern] = STATE(3108), - [sym_range_pattern] = STATE(3108), - [sym_ref_pattern] = STATE(3108), - [sym_captured_pattern] = STATE(3108), - [sym_reference_pattern] = STATE(3108), - [sym_or_pattern] = STATE(3108), - [sym__literal_pattern] = STATE(2401), - [sym_negative_literal] = STATE(2389), - [sym_string_literal] = STATE(2389), - [sym_raw_string_literal] = STATE(2389), - [sym_boolean_literal] = STATE(2389), + [sym_function_modifiers] = STATE(3591), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2373), + [sym__type] = STATE(2461), + [sym_bracketed_type] = STATE(3474), + [sym_lifetime] = STATE(2467), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1591), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2022), + [sym_generic_type_with_turbofish] = STATE(3764), + [sym_bounded_type] = STATE(2069), + [sym_type_binding] = STATE(2579), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3334), + [sym_scoped_type_identifier] = STATE(1990), + [sym_label] = STATE(3739), + [sym_block] = STATE(2579), + [sym__literal] = STATE(2579), + [sym_string_literal] = STATE(2948), + [sym_raw_string_literal] = STATE(2948), + [sym_boolean_literal] = STATE(2948), [sym_line_comment] = STATE(456), [sym_block_comment] = STATE(456), - [aux_sym_match_block_repeat1] = STATE(469), - [aux_sym_match_arm_repeat1] = STATE(744), - [sym_identifier] = ACTIONS(1645), - [anon_sym_LPAREN] = ACTIONS(1647), - [anon_sym_LBRACK] = ACTIONS(1649), - [anon_sym_RBRACE] = ACTIONS(1651), - [anon_sym_u8] = ACTIONS(1653), - [anon_sym_i8] = ACTIONS(1653), - [anon_sym_u16] = ACTIONS(1653), - [anon_sym_i16] = ACTIONS(1653), - [anon_sym_u32] = ACTIONS(1653), - [anon_sym_i32] = ACTIONS(1653), - [anon_sym_u64] = ACTIONS(1653), - [anon_sym_i64] = ACTIONS(1653), - [anon_sym_u128] = ACTIONS(1653), - [anon_sym_i128] = ACTIONS(1653), - [anon_sym_isize] = ACTIONS(1653), - [anon_sym_usize] = ACTIONS(1653), - [anon_sym_f32] = ACTIONS(1653), - [anon_sym_f64] = ACTIONS(1653), - [anon_sym_bool] = ACTIONS(1653), - [anon_sym_str] = ACTIONS(1653), - [anon_sym_char] = ACTIONS(1653), - [anon_sym_DASH] = ACTIONS(1655), - [anon_sym_AMP] = ACTIONS(1657), - [anon_sym_PIPE] = ACTIONS(1659), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1661), - [anon_sym_DOT_DOT] = ACTIONS(1663), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1665), - [anon_sym_COLON_COLON] = ACTIONS(1667), - [anon_sym_POUND] = ACTIONS(1669), - [anon_sym_const] = ACTIONS(1671), - [anon_sym_default] = ACTIONS(1673), - [anon_sym_gen] = ACTIONS(1673), - [anon_sym_union] = ACTIONS(1673), - [anon_sym_ref] = ACTIONS(1675), - [sym_mutable_specifier] = ACTIONS(1677), - [sym_integer_literal] = ACTIONS(1679), - [aux_sym_string_literal_token1] = ACTIONS(1681), - [sym_char_literal] = ACTIONS(1679), - [anon_sym_true] = ACTIONS(1683), - [anon_sym_false] = ACTIONS(1683), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1685), - [sym_super] = ACTIONS(1685), - [sym_crate] = ACTIONS(1685), - [sym_metavariable] = ACTIONS(1687), - [sym__raw_string_literal_start] = ACTIONS(1689), - [sym_float_literal] = ACTIONS(1679), + [aux_sym_function_modifiers_repeat1] = STATE(2244), + [sym_identifier] = ACTIONS(1600), + [anon_sym_LPAREN] = ACTIONS(1602), + [anon_sym_LBRACK] = ACTIONS(1604), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_STAR] = ACTIONS(1240), + [anon_sym_QMARK] = ACTIONS(1242), + [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_BANG] = ACTIONS(1248), + [anon_sym_AMP] = ACTIONS(1610), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1614), + [anon_sym_SQUOTE] = ACTIONS(1616), + [anon_sym_async] = ACTIONS(1270), + [anon_sym_const] = ACTIONS(1270), + [anon_sym_default] = ACTIONS(1618), + [anon_sym_fn] = ACTIONS(1276), + [anon_sym_for] = ACTIONS(1278), + [anon_sym_gen] = ACTIONS(1620), + [anon_sym_impl] = ACTIONS(1282), + [anon_sym_union] = ACTIONS(1620), + [anon_sym_unsafe] = ACTIONS(1270), + [anon_sym_extern] = ACTIONS(1284), + [anon_sym_safe] = ACTIONS(1270), + [anon_sym_dyn] = ACTIONS(1288), + [sym_integer_literal] = ACTIONS(1622), + [aux_sym_string_literal_token1] = ACTIONS(1294), + [sym_char_literal] = ACTIONS(1622), + [anon_sym_true] = ACTIONS(1296), + [anon_sym_false] = ACTIONS(1296), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1624), + [sym_super] = ACTIONS(1624), + [sym_crate] = ACTIONS(1624), + [sym_metavariable] = ACTIONS(1626), + [sym__raw_string_literal_start] = ACTIONS(1304), + [sym_float_literal] = ACTIONS(1622), }, [STATE(457)] = { - [sym_attribute_item] = STATE(1395), - [sym_inner_attribute_item] = STATE(1395), - [sym_bracketed_type] = STATE(3648), - [sym_generic_type] = STATE(3450), - [sym_generic_type_with_turbofish] = STATE(3370), - [sym_macro_invocation] = STATE(3108), - [sym_scoped_identifier] = STATE(2218), - [sym_scoped_type_identifier] = STATE(3059), - [sym_match_arm] = STATE(1396), - [sym_last_match_arm] = STATE(3499), - [sym_match_pattern] = STATE(3527), - [sym_const_block] = STATE(3108), - [sym__pattern] = STATE(2998), - [sym_generic_pattern] = STATE(3108), - [sym_tuple_pattern] = STATE(3108), - [sym_slice_pattern] = STATE(3108), - [sym_tuple_struct_pattern] = STATE(3108), - [sym_struct_pattern] = STATE(3108), - [sym_remaining_field_pattern] = STATE(3108), - [sym_mut_pattern] = STATE(3108), - [sym_range_pattern] = STATE(3108), - [sym_ref_pattern] = STATE(3108), - [sym_captured_pattern] = STATE(3108), - [sym_reference_pattern] = STATE(3108), - [sym_or_pattern] = STATE(3108), - [sym__literal_pattern] = STATE(2401), - [sym_negative_literal] = STATE(2389), - [sym_string_literal] = STATE(2389), - [sym_raw_string_literal] = STATE(2389), - [sym_boolean_literal] = STATE(2389), + [sym_function_modifiers] = STATE(3591), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2373), + [sym__type] = STATE(2517), + [sym_bracketed_type] = STATE(3474), + [sym_lifetime] = STATE(2518), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1591), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2022), + [sym_generic_type_with_turbofish] = STATE(3764), + [sym_bounded_type] = STATE(2069), + [sym_type_binding] = STATE(2684), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3334), + [sym_scoped_type_identifier] = STATE(1990), + [sym_label] = STATE(3739), + [sym_block] = STATE(2684), + [sym__literal] = STATE(2684), + [sym_string_literal] = STATE(2948), + [sym_raw_string_literal] = STATE(2948), + [sym_boolean_literal] = STATE(2948), [sym_line_comment] = STATE(457), [sym_block_comment] = STATE(457), - [aux_sym_match_block_repeat1] = STATE(461), - [aux_sym_match_arm_repeat1] = STATE(744), - [sym_identifier] = ACTIONS(1645), - [anon_sym_LPAREN] = ACTIONS(1647), - [anon_sym_LBRACK] = ACTIONS(1649), - [anon_sym_RBRACE] = ACTIONS(1691), - [anon_sym_u8] = ACTIONS(1653), - [anon_sym_i8] = ACTIONS(1653), - [anon_sym_u16] = ACTIONS(1653), - [anon_sym_i16] = ACTIONS(1653), - [anon_sym_u32] = ACTIONS(1653), - [anon_sym_i32] = ACTIONS(1653), - [anon_sym_u64] = ACTIONS(1653), - [anon_sym_i64] = ACTIONS(1653), - [anon_sym_u128] = ACTIONS(1653), - [anon_sym_i128] = ACTIONS(1653), - [anon_sym_isize] = ACTIONS(1653), - [anon_sym_usize] = ACTIONS(1653), - [anon_sym_f32] = ACTIONS(1653), - [anon_sym_f64] = ACTIONS(1653), - [anon_sym_bool] = ACTIONS(1653), - [anon_sym_str] = ACTIONS(1653), - [anon_sym_char] = ACTIONS(1653), - [anon_sym_DASH] = ACTIONS(1655), - [anon_sym_AMP] = ACTIONS(1657), - [anon_sym_PIPE] = ACTIONS(1659), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1661), - [anon_sym_DOT_DOT] = ACTIONS(1663), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1665), - [anon_sym_COLON_COLON] = ACTIONS(1667), - [anon_sym_POUND] = ACTIONS(1669), - [anon_sym_const] = ACTIONS(1671), - [anon_sym_default] = ACTIONS(1673), - [anon_sym_gen] = ACTIONS(1673), - [anon_sym_union] = ACTIONS(1673), - [anon_sym_ref] = ACTIONS(1675), - [sym_mutable_specifier] = ACTIONS(1677), - [sym_integer_literal] = ACTIONS(1679), - [aux_sym_string_literal_token1] = ACTIONS(1681), - [sym_char_literal] = ACTIONS(1679), - [anon_sym_true] = ACTIONS(1683), - [anon_sym_false] = ACTIONS(1683), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1685), - [sym_super] = ACTIONS(1685), - [sym_crate] = ACTIONS(1685), - [sym_metavariable] = ACTIONS(1687), - [sym__raw_string_literal_start] = ACTIONS(1689), - [sym_float_literal] = ACTIONS(1679), + [aux_sym_function_modifiers_repeat1] = STATE(2244), + [sym_identifier] = ACTIONS(1600), + [anon_sym_LPAREN] = ACTIONS(1602), + [anon_sym_LBRACK] = ACTIONS(1604), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_STAR] = ACTIONS(1240), + [anon_sym_QMARK] = ACTIONS(1242), + [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_BANG] = ACTIONS(1248), + [anon_sym_AMP] = ACTIONS(1610), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1614), + [anon_sym_SQUOTE] = ACTIONS(1616), + [anon_sym_async] = ACTIONS(1270), + [anon_sym_const] = ACTIONS(1270), + [anon_sym_default] = ACTIONS(1618), + [anon_sym_fn] = ACTIONS(1276), + [anon_sym_for] = ACTIONS(1278), + [anon_sym_gen] = ACTIONS(1620), + [anon_sym_impl] = ACTIONS(1282), + [anon_sym_union] = ACTIONS(1620), + [anon_sym_unsafe] = ACTIONS(1270), + [anon_sym_extern] = ACTIONS(1284), + [anon_sym_safe] = ACTIONS(1270), + [anon_sym_dyn] = ACTIONS(1288), + [sym_integer_literal] = ACTIONS(1622), + [aux_sym_string_literal_token1] = ACTIONS(1294), + [sym_char_literal] = ACTIONS(1622), + [anon_sym_true] = ACTIONS(1296), + [anon_sym_false] = ACTIONS(1296), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1624), + [sym_super] = ACTIONS(1624), + [sym_crate] = ACTIONS(1624), + [sym_metavariable] = ACTIONS(1626), + [sym__raw_string_literal_start] = ACTIONS(1304), + [sym_float_literal] = ACTIONS(1622), }, [STATE(458)] = { - [sym_attribute_item] = STATE(1395), - [sym_inner_attribute_item] = STATE(1395), - [sym_bracketed_type] = STATE(3648), - [sym_generic_type] = STATE(3450), - [sym_generic_type_with_turbofish] = STATE(3370), - [sym_macro_invocation] = STATE(3108), - [sym_scoped_identifier] = STATE(2218), - [sym_scoped_type_identifier] = STATE(3059), - [sym_match_arm] = STATE(1396), - [sym_last_match_arm] = STATE(3666), - [sym_match_pattern] = STATE(3527), - [sym_const_block] = STATE(3108), - [sym__pattern] = STATE(2998), - [sym_generic_pattern] = STATE(3108), - [sym_tuple_pattern] = STATE(3108), - [sym_slice_pattern] = STATE(3108), - [sym_tuple_struct_pattern] = STATE(3108), - [sym_struct_pattern] = STATE(3108), - [sym_remaining_field_pattern] = STATE(3108), - [sym_mut_pattern] = STATE(3108), - [sym_range_pattern] = STATE(3108), - [sym_ref_pattern] = STATE(3108), - [sym_captured_pattern] = STATE(3108), - [sym_reference_pattern] = STATE(3108), - [sym_or_pattern] = STATE(3108), - [sym__literal_pattern] = STATE(2401), - [sym_negative_literal] = STATE(2389), - [sym_string_literal] = STATE(2389), - [sym_raw_string_literal] = STATE(2389), - [sym_boolean_literal] = STATE(2389), + [sym_attribute_item] = STATE(1403), + [sym_inner_attribute_item] = STATE(1403), + [sym_bracketed_type] = STATE(3677), + [sym_generic_type] = STATE(3475), + [sym_generic_type_with_turbofish] = STATE(3405), + [sym_macro_invocation] = STATE(2996), + [sym_scoped_identifier] = STATE(2238), + [sym_scoped_type_identifier] = STATE(3090), + [sym_match_arm] = STATE(1404), + [sym_last_match_arm] = STATE(3761), + [sym_match_pattern] = STATE(3640), + [sym_const_block] = STATE(2996), + [sym__pattern] = STATE(2947), + [sym_generic_pattern] = STATE(2996), + [sym_tuple_pattern] = STATE(2996), + [sym_slice_pattern] = STATE(2996), + [sym_tuple_struct_pattern] = STATE(2996), + [sym_struct_pattern] = STATE(2996), + [sym_remaining_field_pattern] = STATE(2996), + [sym_mut_pattern] = STATE(2996), + [sym_range_pattern] = STATE(2996), + [sym_ref_pattern] = STATE(2996), + [sym_captured_pattern] = STATE(2996), + [sym_reference_pattern] = STATE(2996), + [sym_or_pattern] = STATE(2996), + [sym__literal_pattern] = STATE(2429), + [sym_negative_literal] = STATE(2440), + [sym_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_boolean_literal] = STATE(2440), [sym_line_comment] = STATE(458), [sym_block_comment] = STATE(458), [aux_sym_match_block_repeat1] = STATE(467), - [aux_sym_match_arm_repeat1] = STATE(744), - [sym_identifier] = ACTIONS(1645), - [anon_sym_LPAREN] = ACTIONS(1647), - [anon_sym_LBRACK] = ACTIONS(1649), - [anon_sym_RBRACE] = ACTIONS(1693), - [anon_sym_u8] = ACTIONS(1653), - [anon_sym_i8] = ACTIONS(1653), - [anon_sym_u16] = ACTIONS(1653), - [anon_sym_i16] = ACTIONS(1653), - [anon_sym_u32] = ACTIONS(1653), - [anon_sym_i32] = ACTIONS(1653), - [anon_sym_u64] = ACTIONS(1653), - [anon_sym_i64] = ACTIONS(1653), - [anon_sym_u128] = ACTIONS(1653), - [anon_sym_i128] = ACTIONS(1653), - [anon_sym_isize] = ACTIONS(1653), - [anon_sym_usize] = ACTIONS(1653), - [anon_sym_f32] = ACTIONS(1653), - [anon_sym_f64] = ACTIONS(1653), - [anon_sym_bool] = ACTIONS(1653), - [anon_sym_str] = ACTIONS(1653), - [anon_sym_char] = ACTIONS(1653), - [anon_sym_DASH] = ACTIONS(1655), - [anon_sym_AMP] = ACTIONS(1657), - [anon_sym_PIPE] = ACTIONS(1659), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1661), - [anon_sym_DOT_DOT] = ACTIONS(1663), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1665), - [anon_sym_COLON_COLON] = ACTIONS(1667), - [anon_sym_POUND] = ACTIONS(1669), - [anon_sym_const] = ACTIONS(1671), - [anon_sym_default] = ACTIONS(1673), - [anon_sym_gen] = ACTIONS(1673), - [anon_sym_union] = ACTIONS(1673), - [anon_sym_ref] = ACTIONS(1675), - [sym_mutable_specifier] = ACTIONS(1677), - [sym_integer_literal] = ACTIONS(1679), - [aux_sym_string_literal_token1] = ACTIONS(1681), - [sym_char_literal] = ACTIONS(1679), - [anon_sym_true] = ACTIONS(1683), - [anon_sym_false] = ACTIONS(1683), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1685), - [sym_super] = ACTIONS(1685), - [sym_crate] = ACTIONS(1685), - [sym_metavariable] = ACTIONS(1687), - [sym__raw_string_literal_start] = ACTIONS(1689), - [sym_float_literal] = ACTIONS(1679), + [aux_sym_match_arm_repeat1] = STATE(784), + [sym_identifier] = ACTIONS(1650), + [anon_sym_LPAREN] = ACTIONS(1652), + [anon_sym_LBRACK] = ACTIONS(1654), + [anon_sym_RBRACE] = ACTIONS(1656), + [anon_sym_u8] = ACTIONS(1658), + [anon_sym_i8] = ACTIONS(1658), + [anon_sym_u16] = ACTIONS(1658), + [anon_sym_i16] = ACTIONS(1658), + [anon_sym_u32] = ACTIONS(1658), + [anon_sym_i32] = ACTIONS(1658), + [anon_sym_u64] = ACTIONS(1658), + [anon_sym_i64] = ACTIONS(1658), + [anon_sym_u128] = ACTIONS(1658), + [anon_sym_i128] = ACTIONS(1658), + [anon_sym_isize] = ACTIONS(1658), + [anon_sym_usize] = ACTIONS(1658), + [anon_sym_f32] = ACTIONS(1658), + [anon_sym_f64] = ACTIONS(1658), + [anon_sym_bool] = ACTIONS(1658), + [anon_sym_str] = ACTIONS(1658), + [anon_sym_char] = ACTIONS(1658), + [anon_sym_DASH] = ACTIONS(1660), + [anon_sym_AMP] = ACTIONS(1662), + [anon_sym_PIPE] = ACTIONS(1664), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1666), + [anon_sym_DOT_DOT] = ACTIONS(1668), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1670), + [anon_sym_COLON_COLON] = ACTIONS(1672), + [anon_sym_POUND] = ACTIONS(1674), + [anon_sym_const] = ACTIONS(1676), + [anon_sym_default] = ACTIONS(1678), + [anon_sym_gen] = ACTIONS(1678), + [anon_sym_union] = ACTIONS(1678), + [anon_sym_ref] = ACTIONS(1680), + [sym_mutable_specifier] = ACTIONS(1682), + [sym_integer_literal] = ACTIONS(1684), + [aux_sym_string_literal_token1] = ACTIONS(1686), + [sym_char_literal] = ACTIONS(1684), + [anon_sym_true] = ACTIONS(1688), + [anon_sym_false] = ACTIONS(1688), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1690), + [sym_super] = ACTIONS(1690), + [sym_crate] = ACTIONS(1690), + [sym_metavariable] = ACTIONS(1692), + [sym__raw_string_literal_start] = ACTIONS(1694), + [sym_float_literal] = ACTIONS(1684), }, [STATE(459)] = { - [sym_attribute_item] = STATE(1395), - [sym_inner_attribute_item] = STATE(1395), - [sym_bracketed_type] = STATE(3648), - [sym_generic_type] = STATE(3450), - [sym_generic_type_with_turbofish] = STATE(3370), - [sym_macro_invocation] = STATE(3108), - [sym_scoped_identifier] = STATE(2218), - [sym_scoped_type_identifier] = STATE(3059), - [sym_match_arm] = STATE(1396), - [sym_last_match_arm] = STATE(3430), - [sym_match_pattern] = STATE(3527), - [sym_const_block] = STATE(3108), - [sym__pattern] = STATE(2998), - [sym_generic_pattern] = STATE(3108), - [sym_tuple_pattern] = STATE(3108), - [sym_slice_pattern] = STATE(3108), - [sym_tuple_struct_pattern] = STATE(3108), - [sym_struct_pattern] = STATE(3108), - [sym_remaining_field_pattern] = STATE(3108), - [sym_mut_pattern] = STATE(3108), - [sym_range_pattern] = STATE(3108), - [sym_ref_pattern] = STATE(3108), - [sym_captured_pattern] = STATE(3108), - [sym_reference_pattern] = STATE(3108), - [sym_or_pattern] = STATE(3108), - [sym__literal_pattern] = STATE(2401), - [sym_negative_literal] = STATE(2389), - [sym_string_literal] = STATE(2389), - [sym_raw_string_literal] = STATE(2389), - [sym_boolean_literal] = STATE(2389), + [sym_attribute_item] = STATE(1403), + [sym_inner_attribute_item] = STATE(1403), + [sym_bracketed_type] = STATE(3677), + [sym_generic_type] = STATE(3475), + [sym_generic_type_with_turbofish] = STATE(3405), + [sym_macro_invocation] = STATE(2996), + [sym_scoped_identifier] = STATE(2238), + [sym_scoped_type_identifier] = STATE(3090), + [sym_match_arm] = STATE(1404), + [sym_last_match_arm] = STATE(3523), + [sym_match_pattern] = STATE(3640), + [sym_const_block] = STATE(2996), + [sym__pattern] = STATE(2947), + [sym_generic_pattern] = STATE(2996), + [sym_tuple_pattern] = STATE(2996), + [sym_slice_pattern] = STATE(2996), + [sym_tuple_struct_pattern] = STATE(2996), + [sym_struct_pattern] = STATE(2996), + [sym_remaining_field_pattern] = STATE(2996), + [sym_mut_pattern] = STATE(2996), + [sym_range_pattern] = STATE(2996), + [sym_ref_pattern] = STATE(2996), + [sym_captured_pattern] = STATE(2996), + [sym_reference_pattern] = STATE(2996), + [sym_or_pattern] = STATE(2996), + [sym__literal_pattern] = STATE(2429), + [sym_negative_literal] = STATE(2440), + [sym_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_boolean_literal] = STATE(2440), [sym_line_comment] = STATE(459), [sym_block_comment] = STATE(459), - [aux_sym_match_block_repeat1] = STATE(466), - [aux_sym_match_arm_repeat1] = STATE(744), - [sym_identifier] = ACTIONS(1645), - [anon_sym_LPAREN] = ACTIONS(1647), - [anon_sym_LBRACK] = ACTIONS(1649), - [anon_sym_RBRACE] = ACTIONS(1695), - [anon_sym_u8] = ACTIONS(1653), - [anon_sym_i8] = ACTIONS(1653), - [anon_sym_u16] = ACTIONS(1653), - [anon_sym_i16] = ACTIONS(1653), - [anon_sym_u32] = ACTIONS(1653), - [anon_sym_i32] = ACTIONS(1653), - [anon_sym_u64] = ACTIONS(1653), - [anon_sym_i64] = ACTIONS(1653), - [anon_sym_u128] = ACTIONS(1653), - [anon_sym_i128] = ACTIONS(1653), - [anon_sym_isize] = ACTIONS(1653), - [anon_sym_usize] = ACTIONS(1653), - [anon_sym_f32] = ACTIONS(1653), - [anon_sym_f64] = ACTIONS(1653), - [anon_sym_bool] = ACTIONS(1653), - [anon_sym_str] = ACTIONS(1653), - [anon_sym_char] = ACTIONS(1653), - [anon_sym_DASH] = ACTIONS(1655), - [anon_sym_AMP] = ACTIONS(1657), - [anon_sym_PIPE] = ACTIONS(1659), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1661), - [anon_sym_DOT_DOT] = ACTIONS(1663), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1665), - [anon_sym_COLON_COLON] = ACTIONS(1667), - [anon_sym_POUND] = ACTIONS(1669), - [anon_sym_const] = ACTIONS(1671), - [anon_sym_default] = ACTIONS(1673), - [anon_sym_gen] = ACTIONS(1673), - [anon_sym_union] = ACTIONS(1673), - [anon_sym_ref] = ACTIONS(1675), - [sym_mutable_specifier] = ACTIONS(1677), - [sym_integer_literal] = ACTIONS(1679), - [aux_sym_string_literal_token1] = ACTIONS(1681), - [sym_char_literal] = ACTIONS(1679), - [anon_sym_true] = ACTIONS(1683), - [anon_sym_false] = ACTIONS(1683), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1685), - [sym_super] = ACTIONS(1685), - [sym_crate] = ACTIONS(1685), - [sym_metavariable] = ACTIONS(1687), - [sym__raw_string_literal_start] = ACTIONS(1689), - [sym_float_literal] = ACTIONS(1679), + [aux_sym_match_block_repeat1] = STATE(471), + [aux_sym_match_arm_repeat1] = STATE(784), + [sym_identifier] = ACTIONS(1650), + [anon_sym_LPAREN] = ACTIONS(1652), + [anon_sym_LBRACK] = ACTIONS(1654), + [anon_sym_RBRACE] = ACTIONS(1696), + [anon_sym_u8] = ACTIONS(1658), + [anon_sym_i8] = ACTIONS(1658), + [anon_sym_u16] = ACTIONS(1658), + [anon_sym_i16] = ACTIONS(1658), + [anon_sym_u32] = ACTIONS(1658), + [anon_sym_i32] = ACTIONS(1658), + [anon_sym_u64] = ACTIONS(1658), + [anon_sym_i64] = ACTIONS(1658), + [anon_sym_u128] = ACTIONS(1658), + [anon_sym_i128] = ACTIONS(1658), + [anon_sym_isize] = ACTIONS(1658), + [anon_sym_usize] = ACTIONS(1658), + [anon_sym_f32] = ACTIONS(1658), + [anon_sym_f64] = ACTIONS(1658), + [anon_sym_bool] = ACTIONS(1658), + [anon_sym_str] = ACTIONS(1658), + [anon_sym_char] = ACTIONS(1658), + [anon_sym_DASH] = ACTIONS(1660), + [anon_sym_AMP] = ACTIONS(1662), + [anon_sym_PIPE] = ACTIONS(1664), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1666), + [anon_sym_DOT_DOT] = ACTIONS(1668), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1670), + [anon_sym_COLON_COLON] = ACTIONS(1672), + [anon_sym_POUND] = ACTIONS(1674), + [anon_sym_const] = ACTIONS(1676), + [anon_sym_default] = ACTIONS(1678), + [anon_sym_gen] = ACTIONS(1678), + [anon_sym_union] = ACTIONS(1678), + [anon_sym_ref] = ACTIONS(1680), + [sym_mutable_specifier] = ACTIONS(1682), + [sym_integer_literal] = ACTIONS(1684), + [aux_sym_string_literal_token1] = ACTIONS(1686), + [sym_char_literal] = ACTIONS(1684), + [anon_sym_true] = ACTIONS(1688), + [anon_sym_false] = ACTIONS(1688), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1690), + [sym_super] = ACTIONS(1690), + [sym_crate] = ACTIONS(1690), + [sym_metavariable] = ACTIONS(1692), + [sym__raw_string_literal_start] = ACTIONS(1694), + [sym_float_literal] = ACTIONS(1684), }, [STATE(460)] = { - [sym_else_clause] = STATE(487), + [sym_attribute_item] = STATE(1403), + [sym_inner_attribute_item] = STATE(1403), + [sym_bracketed_type] = STATE(3677), + [sym_generic_type] = STATE(3475), + [sym_generic_type_with_turbofish] = STATE(3405), + [sym_macro_invocation] = STATE(2996), + [sym_scoped_identifier] = STATE(2238), + [sym_scoped_type_identifier] = STATE(3090), + [sym_match_arm] = STATE(1404), + [sym_last_match_arm] = STATE(3616), + [sym_match_pattern] = STATE(3640), + [sym_const_block] = STATE(2996), + [sym__pattern] = STATE(2947), + [sym_generic_pattern] = STATE(2996), + [sym_tuple_pattern] = STATE(2996), + [sym_slice_pattern] = STATE(2996), + [sym_tuple_struct_pattern] = STATE(2996), + [sym_struct_pattern] = STATE(2996), + [sym_remaining_field_pattern] = STATE(2996), + [sym_mut_pattern] = STATE(2996), + [sym_range_pattern] = STATE(2996), + [sym_ref_pattern] = STATE(2996), + [sym_captured_pattern] = STATE(2996), + [sym_reference_pattern] = STATE(2996), + [sym_or_pattern] = STATE(2996), + [sym__literal_pattern] = STATE(2429), + [sym_negative_literal] = STATE(2440), + [sym_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_boolean_literal] = STATE(2440), [sym_line_comment] = STATE(460), [sym_block_comment] = STATE(460), - [sym_identifier] = ACTIONS(1353), - [anon_sym_LPAREN] = ACTIONS(1351), - [anon_sym_LBRACK] = ACTIONS(1351), - [anon_sym_RBRACE] = ACTIONS(1351), - [anon_sym_PLUS] = ACTIONS(1353), - [anon_sym_STAR] = ACTIONS(1353), - [anon_sym_QMARK] = ACTIONS(1351), - [anon_sym_u8] = ACTIONS(1353), - [anon_sym_i8] = ACTIONS(1353), - [anon_sym_u16] = ACTIONS(1353), - [anon_sym_i16] = ACTIONS(1353), - [anon_sym_u32] = ACTIONS(1353), - [anon_sym_i32] = ACTIONS(1353), - [anon_sym_u64] = ACTIONS(1353), - [anon_sym_i64] = ACTIONS(1353), - [anon_sym_u128] = ACTIONS(1353), - [anon_sym_i128] = ACTIONS(1353), - [anon_sym_isize] = ACTIONS(1353), - [anon_sym_usize] = ACTIONS(1353), - [anon_sym_f32] = ACTIONS(1353), - [anon_sym_f64] = ACTIONS(1353), - [anon_sym_bool] = ACTIONS(1353), - [anon_sym_str] = ACTIONS(1353), - [anon_sym_char] = ACTIONS(1353), - [anon_sym_DASH] = ACTIONS(1353), - [anon_sym_SLASH] = ACTIONS(1353), - [anon_sym_PERCENT] = ACTIONS(1353), - [anon_sym_CARET] = ACTIONS(1353), - [anon_sym_AMP] = ACTIONS(1353), - [anon_sym_PIPE] = ACTIONS(1353), - [anon_sym_AMP_AMP] = ACTIONS(1351), - [anon_sym_PIPE_PIPE] = ACTIONS(1351), - [anon_sym_LT_LT] = ACTIONS(1353), - [anon_sym_GT_GT] = ACTIONS(1353), - [anon_sym_PLUS_EQ] = ACTIONS(1351), - [anon_sym_DASH_EQ] = ACTIONS(1351), - [anon_sym_STAR_EQ] = ACTIONS(1351), - [anon_sym_SLASH_EQ] = ACTIONS(1351), - [anon_sym_PERCENT_EQ] = ACTIONS(1351), - [anon_sym_CARET_EQ] = ACTIONS(1351), - [anon_sym_AMP_EQ] = ACTIONS(1351), - [anon_sym_PIPE_EQ] = ACTIONS(1351), - [anon_sym_LT_LT_EQ] = ACTIONS(1351), - [anon_sym_GT_GT_EQ] = ACTIONS(1351), - [anon_sym_EQ] = ACTIONS(1353), - [anon_sym_EQ_EQ] = ACTIONS(1351), - [anon_sym_BANG_EQ] = ACTIONS(1351), - [anon_sym_GT] = ACTIONS(1353), - [anon_sym_LT] = ACTIONS(1353), - [anon_sym_GT_EQ] = ACTIONS(1351), - [anon_sym_LT_EQ] = ACTIONS(1351), - [anon_sym__] = ACTIONS(1353), - [anon_sym_DOT] = ACTIONS(1353), - [anon_sym_DOT_DOT] = ACTIONS(1353), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1351), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1351), - [anon_sym_COMMA] = ACTIONS(1351), - [anon_sym_COLON_COLON] = ACTIONS(1351), - [anon_sym_POUND] = ACTIONS(1351), - [anon_sym_as] = ACTIONS(1353), - [anon_sym_const] = ACTIONS(1353), - [anon_sym_default] = ACTIONS(1353), - [anon_sym_gen] = ACTIONS(1353), - [anon_sym_union] = ACTIONS(1353), - [anon_sym_ref] = ACTIONS(1353), - [anon_sym_else] = ACTIONS(1697), - [sym_mutable_specifier] = ACTIONS(1353), - [sym_integer_literal] = ACTIONS(1351), - [aux_sym_string_literal_token1] = ACTIONS(1351), - [sym_char_literal] = ACTIONS(1351), - [anon_sym_true] = ACTIONS(1353), - [anon_sym_false] = ACTIONS(1353), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1353), - [sym_super] = ACTIONS(1353), - [sym_crate] = ACTIONS(1353), - [sym_metavariable] = ACTIONS(1351), - [sym__raw_string_literal_start] = ACTIONS(1351), - [sym_float_literal] = ACTIONS(1351), + [aux_sym_match_block_repeat1] = STATE(465), + [aux_sym_match_arm_repeat1] = STATE(784), + [sym_identifier] = ACTIONS(1650), + [anon_sym_LPAREN] = ACTIONS(1652), + [anon_sym_LBRACK] = ACTIONS(1654), + [anon_sym_RBRACE] = ACTIONS(1698), + [anon_sym_u8] = ACTIONS(1658), + [anon_sym_i8] = ACTIONS(1658), + [anon_sym_u16] = ACTIONS(1658), + [anon_sym_i16] = ACTIONS(1658), + [anon_sym_u32] = ACTIONS(1658), + [anon_sym_i32] = ACTIONS(1658), + [anon_sym_u64] = ACTIONS(1658), + [anon_sym_i64] = ACTIONS(1658), + [anon_sym_u128] = ACTIONS(1658), + [anon_sym_i128] = ACTIONS(1658), + [anon_sym_isize] = ACTIONS(1658), + [anon_sym_usize] = ACTIONS(1658), + [anon_sym_f32] = ACTIONS(1658), + [anon_sym_f64] = ACTIONS(1658), + [anon_sym_bool] = ACTIONS(1658), + [anon_sym_str] = ACTIONS(1658), + [anon_sym_char] = ACTIONS(1658), + [anon_sym_DASH] = ACTIONS(1660), + [anon_sym_AMP] = ACTIONS(1662), + [anon_sym_PIPE] = ACTIONS(1664), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1666), + [anon_sym_DOT_DOT] = ACTIONS(1668), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1670), + [anon_sym_COLON_COLON] = ACTIONS(1672), + [anon_sym_POUND] = ACTIONS(1674), + [anon_sym_const] = ACTIONS(1676), + [anon_sym_default] = ACTIONS(1678), + [anon_sym_gen] = ACTIONS(1678), + [anon_sym_union] = ACTIONS(1678), + [anon_sym_ref] = ACTIONS(1680), + [sym_mutable_specifier] = ACTIONS(1682), + [sym_integer_literal] = ACTIONS(1684), + [aux_sym_string_literal_token1] = ACTIONS(1686), + [sym_char_literal] = ACTIONS(1684), + [anon_sym_true] = ACTIONS(1688), + [anon_sym_false] = ACTIONS(1688), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1690), + [sym_super] = ACTIONS(1690), + [sym_crate] = ACTIONS(1690), + [sym_metavariable] = ACTIONS(1692), + [sym__raw_string_literal_start] = ACTIONS(1694), + [sym_float_literal] = ACTIONS(1684), }, [STATE(461)] = { - [sym_attribute_item] = STATE(1395), - [sym_inner_attribute_item] = STATE(1395), - [sym_bracketed_type] = STATE(3648), - [sym_generic_type] = STATE(3450), - [sym_generic_type_with_turbofish] = STATE(3370), - [sym_macro_invocation] = STATE(3108), - [sym_scoped_identifier] = STATE(2218), - [sym_scoped_type_identifier] = STATE(3059), - [sym_match_arm] = STATE(1396), - [sym_last_match_arm] = STATE(3511), - [sym_match_pattern] = STATE(3527), - [sym_const_block] = STATE(3108), - [sym__pattern] = STATE(2998), - [sym_generic_pattern] = STATE(3108), - [sym_tuple_pattern] = STATE(3108), - [sym_slice_pattern] = STATE(3108), - [sym_tuple_struct_pattern] = STATE(3108), - [sym_struct_pattern] = STATE(3108), - [sym_remaining_field_pattern] = STATE(3108), - [sym_mut_pattern] = STATE(3108), - [sym_range_pattern] = STATE(3108), - [sym_ref_pattern] = STATE(3108), - [sym_captured_pattern] = STATE(3108), - [sym_reference_pattern] = STATE(3108), - [sym_or_pattern] = STATE(3108), - [sym__literal_pattern] = STATE(2401), - [sym_negative_literal] = STATE(2389), - [sym_string_literal] = STATE(2389), - [sym_raw_string_literal] = STATE(2389), - [sym_boolean_literal] = STATE(2389), + [sym_attribute_item] = STATE(1403), + [sym_inner_attribute_item] = STATE(1403), + [sym_bracketed_type] = STATE(3677), + [sym_generic_type] = STATE(3475), + [sym_generic_type_with_turbofish] = STATE(3405), + [sym_macro_invocation] = STATE(2996), + [sym_scoped_identifier] = STATE(2238), + [sym_scoped_type_identifier] = STATE(3090), + [sym_match_arm] = STATE(1404), + [sym_last_match_arm] = STATE(3553), + [sym_match_pattern] = STATE(3640), + [sym_const_block] = STATE(2996), + [sym__pattern] = STATE(2947), + [sym_generic_pattern] = STATE(2996), + [sym_tuple_pattern] = STATE(2996), + [sym_slice_pattern] = STATE(2996), + [sym_tuple_struct_pattern] = STATE(2996), + [sym_struct_pattern] = STATE(2996), + [sym_remaining_field_pattern] = STATE(2996), + [sym_mut_pattern] = STATE(2996), + [sym_range_pattern] = STATE(2996), + [sym_ref_pattern] = STATE(2996), + [sym_captured_pattern] = STATE(2996), + [sym_reference_pattern] = STATE(2996), + [sym_or_pattern] = STATE(2996), + [sym__literal_pattern] = STATE(2429), + [sym_negative_literal] = STATE(2440), + [sym_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_boolean_literal] = STATE(2440), [sym_line_comment] = STATE(461), [sym_block_comment] = STATE(461), - [aux_sym_match_block_repeat1] = STATE(472), - [aux_sym_match_arm_repeat1] = STATE(744), - [sym_identifier] = ACTIONS(1645), - [anon_sym_LPAREN] = ACTIONS(1647), - [anon_sym_LBRACK] = ACTIONS(1649), - [anon_sym_u8] = ACTIONS(1653), - [anon_sym_i8] = ACTIONS(1653), - [anon_sym_u16] = ACTIONS(1653), - [anon_sym_i16] = ACTIONS(1653), - [anon_sym_u32] = ACTIONS(1653), - [anon_sym_i32] = ACTIONS(1653), - [anon_sym_u64] = ACTIONS(1653), - [anon_sym_i64] = ACTIONS(1653), - [anon_sym_u128] = ACTIONS(1653), - [anon_sym_i128] = ACTIONS(1653), - [anon_sym_isize] = ACTIONS(1653), - [anon_sym_usize] = ACTIONS(1653), - [anon_sym_f32] = ACTIONS(1653), - [anon_sym_f64] = ACTIONS(1653), - [anon_sym_bool] = ACTIONS(1653), - [anon_sym_str] = ACTIONS(1653), - [anon_sym_char] = ACTIONS(1653), - [anon_sym_DASH] = ACTIONS(1655), - [anon_sym_AMP] = ACTIONS(1657), - [anon_sym_PIPE] = ACTIONS(1659), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1661), - [anon_sym_DOT_DOT] = ACTIONS(1663), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1665), - [anon_sym_COLON_COLON] = ACTIONS(1667), - [anon_sym_POUND] = ACTIONS(1669), - [anon_sym_const] = ACTIONS(1671), - [anon_sym_default] = ACTIONS(1673), - [anon_sym_gen] = ACTIONS(1673), - [anon_sym_union] = ACTIONS(1673), - [anon_sym_ref] = ACTIONS(1675), - [sym_mutable_specifier] = ACTIONS(1677), - [sym_integer_literal] = ACTIONS(1679), - [aux_sym_string_literal_token1] = ACTIONS(1681), - [sym_char_literal] = ACTIONS(1679), - [anon_sym_true] = ACTIONS(1683), - [anon_sym_false] = ACTIONS(1683), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1685), - [sym_super] = ACTIONS(1685), - [sym_crate] = ACTIONS(1685), - [sym_metavariable] = ACTIONS(1687), - [sym__raw_string_literal_start] = ACTIONS(1689), - [sym_float_literal] = ACTIONS(1679), + [aux_sym_match_block_repeat1] = STATE(470), + [aux_sym_match_arm_repeat1] = STATE(784), + [sym_identifier] = ACTIONS(1650), + [anon_sym_LPAREN] = ACTIONS(1652), + [anon_sym_LBRACK] = ACTIONS(1654), + [anon_sym_RBRACE] = ACTIONS(1700), + [anon_sym_u8] = ACTIONS(1658), + [anon_sym_i8] = ACTIONS(1658), + [anon_sym_u16] = ACTIONS(1658), + [anon_sym_i16] = ACTIONS(1658), + [anon_sym_u32] = ACTIONS(1658), + [anon_sym_i32] = ACTIONS(1658), + [anon_sym_u64] = ACTIONS(1658), + [anon_sym_i64] = ACTIONS(1658), + [anon_sym_u128] = ACTIONS(1658), + [anon_sym_i128] = ACTIONS(1658), + [anon_sym_isize] = ACTIONS(1658), + [anon_sym_usize] = ACTIONS(1658), + [anon_sym_f32] = ACTIONS(1658), + [anon_sym_f64] = ACTIONS(1658), + [anon_sym_bool] = ACTIONS(1658), + [anon_sym_str] = ACTIONS(1658), + [anon_sym_char] = ACTIONS(1658), + [anon_sym_DASH] = ACTIONS(1660), + [anon_sym_AMP] = ACTIONS(1662), + [anon_sym_PIPE] = ACTIONS(1664), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1666), + [anon_sym_DOT_DOT] = ACTIONS(1668), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1670), + [anon_sym_COLON_COLON] = ACTIONS(1672), + [anon_sym_POUND] = ACTIONS(1674), + [anon_sym_const] = ACTIONS(1676), + [anon_sym_default] = ACTIONS(1678), + [anon_sym_gen] = ACTIONS(1678), + [anon_sym_union] = ACTIONS(1678), + [anon_sym_ref] = ACTIONS(1680), + [sym_mutable_specifier] = ACTIONS(1682), + [sym_integer_literal] = ACTIONS(1684), + [aux_sym_string_literal_token1] = ACTIONS(1686), + [sym_char_literal] = ACTIONS(1684), + [anon_sym_true] = ACTIONS(1688), + [anon_sym_false] = ACTIONS(1688), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1690), + [sym_super] = ACTIONS(1690), + [sym_crate] = ACTIONS(1690), + [sym_metavariable] = ACTIONS(1692), + [sym__raw_string_literal_start] = ACTIONS(1694), + [sym_float_literal] = ACTIONS(1684), }, [STATE(462)] = { + [sym_else_clause] = STATE(488), [sym_line_comment] = STATE(462), [sym_block_comment] = STATE(462), - [sym_identifier] = ACTIONS(1415), - [anon_sym_LPAREN] = ACTIONS(1413), - [anon_sym_LBRACK] = ACTIONS(1413), - [anon_sym_RBRACE] = ACTIONS(1413), - [anon_sym_PLUS] = ACTIONS(1415), - [anon_sym_STAR] = ACTIONS(1415), - [anon_sym_QMARK] = ACTIONS(1413), - [anon_sym_u8] = ACTIONS(1415), - [anon_sym_i8] = ACTIONS(1415), - [anon_sym_u16] = ACTIONS(1415), - [anon_sym_i16] = ACTIONS(1415), - [anon_sym_u32] = ACTIONS(1415), - [anon_sym_i32] = ACTIONS(1415), - [anon_sym_u64] = ACTIONS(1415), - [anon_sym_i64] = ACTIONS(1415), - [anon_sym_u128] = ACTIONS(1415), - [anon_sym_i128] = ACTIONS(1415), - [anon_sym_isize] = ACTIONS(1415), - [anon_sym_usize] = ACTIONS(1415), - [anon_sym_f32] = ACTIONS(1415), - [anon_sym_f64] = ACTIONS(1415), - [anon_sym_bool] = ACTIONS(1415), - [anon_sym_str] = ACTIONS(1415), - [anon_sym_char] = ACTIONS(1415), - [anon_sym_DASH] = ACTIONS(1415), - [anon_sym_SLASH] = ACTIONS(1415), - [anon_sym_PERCENT] = ACTIONS(1415), - [anon_sym_CARET] = ACTIONS(1415), - [anon_sym_AMP] = ACTIONS(1415), - [anon_sym_PIPE] = ACTIONS(1415), - [anon_sym_AMP_AMP] = ACTIONS(1413), - [anon_sym_PIPE_PIPE] = ACTIONS(1413), - [anon_sym_LT_LT] = ACTIONS(1415), - [anon_sym_GT_GT] = ACTIONS(1415), - [anon_sym_PLUS_EQ] = ACTIONS(1413), - [anon_sym_DASH_EQ] = ACTIONS(1413), - [anon_sym_STAR_EQ] = ACTIONS(1413), - [anon_sym_SLASH_EQ] = ACTIONS(1413), - [anon_sym_PERCENT_EQ] = ACTIONS(1413), - [anon_sym_CARET_EQ] = ACTIONS(1413), - [anon_sym_AMP_EQ] = ACTIONS(1413), - [anon_sym_PIPE_EQ] = ACTIONS(1413), - [anon_sym_LT_LT_EQ] = ACTIONS(1413), - [anon_sym_GT_GT_EQ] = ACTIONS(1413), - [anon_sym_EQ] = ACTIONS(1415), - [anon_sym_EQ_EQ] = ACTIONS(1413), - [anon_sym_BANG_EQ] = ACTIONS(1413), - [anon_sym_GT] = ACTIONS(1415), - [anon_sym_LT] = ACTIONS(1415), - [anon_sym_GT_EQ] = ACTIONS(1413), - [anon_sym_LT_EQ] = ACTIONS(1413), - [anon_sym__] = ACTIONS(1415), - [anon_sym_DOT] = ACTIONS(1415), - [anon_sym_DOT_DOT] = ACTIONS(1415), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1413), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1413), - [anon_sym_COMMA] = ACTIONS(1413), - [anon_sym_COLON_COLON] = ACTIONS(1413), - [anon_sym_POUND] = ACTIONS(1413), - [anon_sym_as] = ACTIONS(1415), - [anon_sym_const] = ACTIONS(1415), - [anon_sym_default] = ACTIONS(1415), - [anon_sym_gen] = ACTIONS(1415), - [anon_sym_union] = ACTIONS(1415), - [anon_sym_ref] = ACTIONS(1415), - [anon_sym_else] = ACTIONS(1415), - [sym_mutable_specifier] = ACTIONS(1415), - [sym_integer_literal] = ACTIONS(1413), - [aux_sym_string_literal_token1] = ACTIONS(1413), - [sym_char_literal] = ACTIONS(1413), - [anon_sym_true] = ACTIONS(1415), - [anon_sym_false] = ACTIONS(1415), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1415), - [sym_super] = ACTIONS(1415), - [sym_crate] = ACTIONS(1415), - [sym_metavariable] = ACTIONS(1413), - [sym__raw_string_literal_start] = ACTIONS(1413), - [sym_float_literal] = ACTIONS(1413), + [sym_identifier] = ACTIONS(1350), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACK] = ACTIONS(1348), + [anon_sym_RBRACE] = ACTIONS(1348), + [anon_sym_PLUS] = ACTIONS(1350), + [anon_sym_STAR] = ACTIONS(1350), + [anon_sym_QMARK] = ACTIONS(1348), + [anon_sym_u8] = ACTIONS(1350), + [anon_sym_i8] = ACTIONS(1350), + [anon_sym_u16] = ACTIONS(1350), + [anon_sym_i16] = ACTIONS(1350), + [anon_sym_u32] = ACTIONS(1350), + [anon_sym_i32] = ACTIONS(1350), + [anon_sym_u64] = ACTIONS(1350), + [anon_sym_i64] = ACTIONS(1350), + [anon_sym_u128] = ACTIONS(1350), + [anon_sym_i128] = ACTIONS(1350), + [anon_sym_isize] = ACTIONS(1350), + [anon_sym_usize] = ACTIONS(1350), + [anon_sym_f32] = ACTIONS(1350), + [anon_sym_f64] = ACTIONS(1350), + [anon_sym_bool] = ACTIONS(1350), + [anon_sym_str] = ACTIONS(1350), + [anon_sym_char] = ACTIONS(1350), + [anon_sym_DASH] = ACTIONS(1350), + [anon_sym_SLASH] = ACTIONS(1350), + [anon_sym_PERCENT] = ACTIONS(1350), + [anon_sym_CARET] = ACTIONS(1350), + [anon_sym_AMP] = ACTIONS(1350), + [anon_sym_PIPE] = ACTIONS(1350), + [anon_sym_AMP_AMP] = ACTIONS(1348), + [anon_sym_PIPE_PIPE] = ACTIONS(1348), + [anon_sym_LT_LT] = ACTIONS(1350), + [anon_sym_GT_GT] = ACTIONS(1350), + [anon_sym_PLUS_EQ] = ACTIONS(1348), + [anon_sym_DASH_EQ] = ACTIONS(1348), + [anon_sym_STAR_EQ] = ACTIONS(1348), + [anon_sym_SLASH_EQ] = ACTIONS(1348), + [anon_sym_PERCENT_EQ] = ACTIONS(1348), + [anon_sym_CARET_EQ] = ACTIONS(1348), + [anon_sym_AMP_EQ] = ACTIONS(1348), + [anon_sym_PIPE_EQ] = ACTIONS(1348), + [anon_sym_LT_LT_EQ] = ACTIONS(1348), + [anon_sym_GT_GT_EQ] = ACTIONS(1348), + [anon_sym_EQ] = ACTIONS(1350), + [anon_sym_EQ_EQ] = ACTIONS(1348), + [anon_sym_BANG_EQ] = ACTIONS(1348), + [anon_sym_GT] = ACTIONS(1350), + [anon_sym_LT] = ACTIONS(1350), + [anon_sym_GT_EQ] = ACTIONS(1348), + [anon_sym_LT_EQ] = ACTIONS(1348), + [anon_sym__] = ACTIONS(1350), + [anon_sym_DOT] = ACTIONS(1350), + [anon_sym_DOT_DOT] = ACTIONS(1350), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1348), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1348), + [anon_sym_COMMA] = ACTIONS(1348), + [anon_sym_COLON_COLON] = ACTIONS(1348), + [anon_sym_POUND] = ACTIONS(1348), + [anon_sym_as] = ACTIONS(1350), + [anon_sym_const] = ACTIONS(1350), + [anon_sym_default] = ACTIONS(1350), + [anon_sym_gen] = ACTIONS(1350), + [anon_sym_union] = ACTIONS(1350), + [anon_sym_ref] = ACTIONS(1350), + [anon_sym_else] = ACTIONS(1702), + [sym_mutable_specifier] = ACTIONS(1350), + [sym_integer_literal] = ACTIONS(1348), + [aux_sym_string_literal_token1] = ACTIONS(1348), + [sym_char_literal] = ACTIONS(1348), + [anon_sym_true] = ACTIONS(1350), + [anon_sym_false] = ACTIONS(1350), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1350), + [sym_super] = ACTIONS(1350), + [sym_crate] = ACTIONS(1350), + [sym_metavariable] = ACTIONS(1348), + [sym__raw_string_literal_start] = ACTIONS(1348), + [sym_float_literal] = ACTIONS(1348), }, [STATE(463)] = { [sym_line_comment] = STATE(463), [sym_block_comment] = STATE(463), - [sym_identifier] = ACTIONS(1393), - [anon_sym_LPAREN] = ACTIONS(1391), - [anon_sym_LBRACK] = ACTIONS(1391), - [anon_sym_RBRACE] = ACTIONS(1391), - [anon_sym_PLUS] = ACTIONS(1393), - [anon_sym_STAR] = ACTIONS(1393), - [anon_sym_QMARK] = ACTIONS(1391), - [anon_sym_u8] = ACTIONS(1393), - [anon_sym_i8] = ACTIONS(1393), - [anon_sym_u16] = ACTIONS(1393), - [anon_sym_i16] = ACTIONS(1393), - [anon_sym_u32] = ACTIONS(1393), - [anon_sym_i32] = ACTIONS(1393), - [anon_sym_u64] = ACTIONS(1393), - [anon_sym_i64] = ACTIONS(1393), - [anon_sym_u128] = ACTIONS(1393), - [anon_sym_i128] = ACTIONS(1393), - [anon_sym_isize] = ACTIONS(1393), - [anon_sym_usize] = ACTIONS(1393), - [anon_sym_f32] = ACTIONS(1393), - [anon_sym_f64] = ACTIONS(1393), - [anon_sym_bool] = ACTIONS(1393), - [anon_sym_str] = ACTIONS(1393), - [anon_sym_char] = ACTIONS(1393), - [anon_sym_DASH] = ACTIONS(1393), - [anon_sym_SLASH] = ACTIONS(1393), - [anon_sym_PERCENT] = ACTIONS(1393), - [anon_sym_CARET] = ACTIONS(1393), - [anon_sym_AMP] = ACTIONS(1393), - [anon_sym_PIPE] = ACTIONS(1393), - [anon_sym_AMP_AMP] = ACTIONS(1391), - [anon_sym_PIPE_PIPE] = ACTIONS(1391), - [anon_sym_LT_LT] = ACTIONS(1393), - [anon_sym_GT_GT] = ACTIONS(1393), - [anon_sym_PLUS_EQ] = ACTIONS(1391), - [anon_sym_DASH_EQ] = ACTIONS(1391), - [anon_sym_STAR_EQ] = ACTIONS(1391), - [anon_sym_SLASH_EQ] = ACTIONS(1391), - [anon_sym_PERCENT_EQ] = ACTIONS(1391), - [anon_sym_CARET_EQ] = ACTIONS(1391), - [anon_sym_AMP_EQ] = ACTIONS(1391), - [anon_sym_PIPE_EQ] = ACTIONS(1391), - [anon_sym_LT_LT_EQ] = ACTIONS(1391), - [anon_sym_GT_GT_EQ] = ACTIONS(1391), - [anon_sym_EQ] = ACTIONS(1393), - [anon_sym_EQ_EQ] = ACTIONS(1391), - [anon_sym_BANG_EQ] = ACTIONS(1391), - [anon_sym_GT] = ACTIONS(1393), - [anon_sym_LT] = ACTIONS(1393), - [anon_sym_GT_EQ] = ACTIONS(1391), - [anon_sym_LT_EQ] = ACTIONS(1391), - [anon_sym__] = ACTIONS(1393), - [anon_sym_DOT] = ACTIONS(1393), - [anon_sym_DOT_DOT] = ACTIONS(1393), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1391), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1391), - [anon_sym_COMMA] = ACTIONS(1391), - [anon_sym_COLON_COLON] = ACTIONS(1391), - [anon_sym_POUND] = ACTIONS(1391), - [anon_sym_as] = ACTIONS(1393), - [anon_sym_const] = ACTIONS(1393), - [anon_sym_default] = ACTIONS(1393), - [anon_sym_gen] = ACTIONS(1393), - [anon_sym_union] = ACTIONS(1393), - [anon_sym_ref] = ACTIONS(1393), - [anon_sym_else] = ACTIONS(1393), - [sym_mutable_specifier] = ACTIONS(1393), - [sym_integer_literal] = ACTIONS(1391), - [aux_sym_string_literal_token1] = ACTIONS(1391), - [sym_char_literal] = ACTIONS(1391), - [anon_sym_true] = ACTIONS(1393), - [anon_sym_false] = ACTIONS(1393), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1393), - [sym_super] = ACTIONS(1393), - [sym_crate] = ACTIONS(1393), - [sym_metavariable] = ACTIONS(1391), - [sym__raw_string_literal_start] = ACTIONS(1391), - [sym_float_literal] = ACTIONS(1391), + [sym_identifier] = ACTIONS(1404), + [anon_sym_LPAREN] = ACTIONS(1402), + [anon_sym_LBRACK] = ACTIONS(1402), + [anon_sym_RBRACE] = ACTIONS(1402), + [anon_sym_PLUS] = ACTIONS(1404), + [anon_sym_STAR] = ACTIONS(1404), + [anon_sym_QMARK] = ACTIONS(1402), + [anon_sym_u8] = ACTIONS(1404), + [anon_sym_i8] = ACTIONS(1404), + [anon_sym_u16] = ACTIONS(1404), + [anon_sym_i16] = ACTIONS(1404), + [anon_sym_u32] = ACTIONS(1404), + [anon_sym_i32] = ACTIONS(1404), + [anon_sym_u64] = ACTIONS(1404), + [anon_sym_i64] = ACTIONS(1404), + [anon_sym_u128] = ACTIONS(1404), + [anon_sym_i128] = ACTIONS(1404), + [anon_sym_isize] = ACTIONS(1404), + [anon_sym_usize] = ACTIONS(1404), + [anon_sym_f32] = ACTIONS(1404), + [anon_sym_f64] = ACTIONS(1404), + [anon_sym_bool] = ACTIONS(1404), + [anon_sym_str] = ACTIONS(1404), + [anon_sym_char] = ACTIONS(1404), + [anon_sym_DASH] = ACTIONS(1404), + [anon_sym_SLASH] = ACTIONS(1404), + [anon_sym_PERCENT] = ACTIONS(1404), + [anon_sym_CARET] = ACTIONS(1404), + [anon_sym_AMP] = ACTIONS(1404), + [anon_sym_PIPE] = ACTIONS(1404), + [anon_sym_AMP_AMP] = ACTIONS(1402), + [anon_sym_PIPE_PIPE] = ACTIONS(1402), + [anon_sym_LT_LT] = ACTIONS(1404), + [anon_sym_GT_GT] = ACTIONS(1404), + [anon_sym_PLUS_EQ] = ACTIONS(1402), + [anon_sym_DASH_EQ] = ACTIONS(1402), + [anon_sym_STAR_EQ] = ACTIONS(1402), + [anon_sym_SLASH_EQ] = ACTIONS(1402), + [anon_sym_PERCENT_EQ] = ACTIONS(1402), + [anon_sym_CARET_EQ] = ACTIONS(1402), + [anon_sym_AMP_EQ] = ACTIONS(1402), + [anon_sym_PIPE_EQ] = ACTIONS(1402), + [anon_sym_LT_LT_EQ] = ACTIONS(1402), + [anon_sym_GT_GT_EQ] = ACTIONS(1402), + [anon_sym_EQ] = ACTIONS(1404), + [anon_sym_EQ_EQ] = ACTIONS(1402), + [anon_sym_BANG_EQ] = ACTIONS(1402), + [anon_sym_GT] = ACTIONS(1404), + [anon_sym_LT] = ACTIONS(1404), + [anon_sym_GT_EQ] = ACTIONS(1402), + [anon_sym_LT_EQ] = ACTIONS(1402), + [anon_sym__] = ACTIONS(1404), + [anon_sym_DOT] = ACTIONS(1404), + [anon_sym_DOT_DOT] = ACTIONS(1404), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1402), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1402), + [anon_sym_COMMA] = ACTIONS(1402), + [anon_sym_COLON_COLON] = ACTIONS(1402), + [anon_sym_POUND] = ACTIONS(1402), + [anon_sym_as] = ACTIONS(1404), + [anon_sym_const] = ACTIONS(1404), + [anon_sym_default] = ACTIONS(1404), + [anon_sym_gen] = ACTIONS(1404), + [anon_sym_union] = ACTIONS(1404), + [anon_sym_ref] = ACTIONS(1404), + [anon_sym_else] = ACTIONS(1404), + [sym_mutable_specifier] = ACTIONS(1404), + [sym_integer_literal] = ACTIONS(1402), + [aux_sym_string_literal_token1] = ACTIONS(1402), + [sym_char_literal] = ACTIONS(1402), + [anon_sym_true] = ACTIONS(1404), + [anon_sym_false] = ACTIONS(1404), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1404), + [sym_super] = ACTIONS(1404), + [sym_crate] = ACTIONS(1404), + [sym_metavariable] = ACTIONS(1402), + [sym__raw_string_literal_start] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1402), }, [STATE(464)] = { [sym_line_comment] = STATE(464), [sym_block_comment] = STATE(464), - [sym_identifier] = ACTIONS(1397), - [anon_sym_LPAREN] = ACTIONS(1395), - [anon_sym_LBRACK] = ACTIONS(1395), - [anon_sym_RBRACE] = ACTIONS(1395), - [anon_sym_PLUS] = ACTIONS(1397), - [anon_sym_STAR] = ACTIONS(1397), - [anon_sym_QMARK] = ACTIONS(1395), - [anon_sym_u8] = ACTIONS(1397), - [anon_sym_i8] = ACTIONS(1397), - [anon_sym_u16] = ACTIONS(1397), - [anon_sym_i16] = ACTIONS(1397), - [anon_sym_u32] = ACTIONS(1397), - [anon_sym_i32] = ACTIONS(1397), - [anon_sym_u64] = ACTIONS(1397), - [anon_sym_i64] = ACTIONS(1397), - [anon_sym_u128] = ACTIONS(1397), - [anon_sym_i128] = ACTIONS(1397), - [anon_sym_isize] = ACTIONS(1397), - [anon_sym_usize] = ACTIONS(1397), - [anon_sym_f32] = ACTIONS(1397), - [anon_sym_f64] = ACTIONS(1397), - [anon_sym_bool] = ACTIONS(1397), - [anon_sym_str] = ACTIONS(1397), - [anon_sym_char] = ACTIONS(1397), - [anon_sym_DASH] = ACTIONS(1397), - [anon_sym_SLASH] = ACTIONS(1397), - [anon_sym_PERCENT] = ACTIONS(1397), - [anon_sym_CARET] = ACTIONS(1397), - [anon_sym_AMP] = ACTIONS(1397), - [anon_sym_PIPE] = ACTIONS(1397), - [anon_sym_AMP_AMP] = ACTIONS(1395), - [anon_sym_PIPE_PIPE] = ACTIONS(1395), - [anon_sym_LT_LT] = ACTIONS(1397), - [anon_sym_GT_GT] = ACTIONS(1397), - [anon_sym_PLUS_EQ] = ACTIONS(1395), - [anon_sym_DASH_EQ] = ACTIONS(1395), - [anon_sym_STAR_EQ] = ACTIONS(1395), - [anon_sym_SLASH_EQ] = ACTIONS(1395), - [anon_sym_PERCENT_EQ] = ACTIONS(1395), - [anon_sym_CARET_EQ] = ACTIONS(1395), - [anon_sym_AMP_EQ] = ACTIONS(1395), - [anon_sym_PIPE_EQ] = ACTIONS(1395), - [anon_sym_LT_LT_EQ] = ACTIONS(1395), - [anon_sym_GT_GT_EQ] = ACTIONS(1395), - [anon_sym_EQ] = ACTIONS(1397), - [anon_sym_EQ_EQ] = ACTIONS(1395), - [anon_sym_BANG_EQ] = ACTIONS(1395), - [anon_sym_GT] = ACTIONS(1397), - [anon_sym_LT] = ACTIONS(1397), - [anon_sym_GT_EQ] = ACTIONS(1395), - [anon_sym_LT_EQ] = ACTIONS(1395), - [anon_sym__] = ACTIONS(1397), - [anon_sym_DOT] = ACTIONS(1397), - [anon_sym_DOT_DOT] = ACTIONS(1397), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1395), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1395), - [anon_sym_COMMA] = ACTIONS(1395), - [anon_sym_COLON_COLON] = ACTIONS(1395), - [anon_sym_POUND] = ACTIONS(1395), - [anon_sym_as] = ACTIONS(1397), - [anon_sym_const] = ACTIONS(1397), - [anon_sym_default] = ACTIONS(1397), - [anon_sym_gen] = ACTIONS(1397), - [anon_sym_union] = ACTIONS(1397), - [anon_sym_ref] = ACTIONS(1397), - [anon_sym_else] = ACTIONS(1397), - [sym_mutable_specifier] = ACTIONS(1397), - [sym_integer_literal] = ACTIONS(1395), - [aux_sym_string_literal_token1] = ACTIONS(1395), - [sym_char_literal] = ACTIONS(1395), - [anon_sym_true] = ACTIONS(1397), - [anon_sym_false] = ACTIONS(1397), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1397), - [sym_super] = ACTIONS(1397), - [sym_crate] = ACTIONS(1397), - [sym_metavariable] = ACTIONS(1395), - [sym__raw_string_literal_start] = ACTIONS(1395), - [sym_float_literal] = ACTIONS(1395), + [sym_identifier] = ACTIONS(1410), + [anon_sym_LPAREN] = ACTIONS(1408), + [anon_sym_LBRACK] = ACTIONS(1408), + [anon_sym_RBRACE] = ACTIONS(1408), + [anon_sym_PLUS] = ACTIONS(1410), + [anon_sym_STAR] = ACTIONS(1410), + [anon_sym_QMARK] = ACTIONS(1408), + [anon_sym_u8] = ACTIONS(1410), + [anon_sym_i8] = ACTIONS(1410), + [anon_sym_u16] = ACTIONS(1410), + [anon_sym_i16] = ACTIONS(1410), + [anon_sym_u32] = ACTIONS(1410), + [anon_sym_i32] = ACTIONS(1410), + [anon_sym_u64] = ACTIONS(1410), + [anon_sym_i64] = ACTIONS(1410), + [anon_sym_u128] = ACTIONS(1410), + [anon_sym_i128] = ACTIONS(1410), + [anon_sym_isize] = ACTIONS(1410), + [anon_sym_usize] = ACTIONS(1410), + [anon_sym_f32] = ACTIONS(1410), + [anon_sym_f64] = ACTIONS(1410), + [anon_sym_bool] = ACTIONS(1410), + [anon_sym_str] = ACTIONS(1410), + [anon_sym_char] = ACTIONS(1410), + [anon_sym_DASH] = ACTIONS(1410), + [anon_sym_SLASH] = ACTIONS(1410), + [anon_sym_PERCENT] = ACTIONS(1410), + [anon_sym_CARET] = ACTIONS(1410), + [anon_sym_AMP] = ACTIONS(1410), + [anon_sym_PIPE] = ACTIONS(1410), + [anon_sym_AMP_AMP] = ACTIONS(1408), + [anon_sym_PIPE_PIPE] = ACTIONS(1408), + [anon_sym_LT_LT] = ACTIONS(1410), + [anon_sym_GT_GT] = ACTIONS(1410), + [anon_sym_PLUS_EQ] = ACTIONS(1408), + [anon_sym_DASH_EQ] = ACTIONS(1408), + [anon_sym_STAR_EQ] = ACTIONS(1408), + [anon_sym_SLASH_EQ] = ACTIONS(1408), + [anon_sym_PERCENT_EQ] = ACTIONS(1408), + [anon_sym_CARET_EQ] = ACTIONS(1408), + [anon_sym_AMP_EQ] = ACTIONS(1408), + [anon_sym_PIPE_EQ] = ACTIONS(1408), + [anon_sym_LT_LT_EQ] = ACTIONS(1408), + [anon_sym_GT_GT_EQ] = ACTIONS(1408), + [anon_sym_EQ] = ACTIONS(1410), + [anon_sym_EQ_EQ] = ACTIONS(1408), + [anon_sym_BANG_EQ] = ACTIONS(1408), + [anon_sym_GT] = ACTIONS(1410), + [anon_sym_LT] = ACTIONS(1410), + [anon_sym_GT_EQ] = ACTIONS(1408), + [anon_sym_LT_EQ] = ACTIONS(1408), + [anon_sym__] = ACTIONS(1410), + [anon_sym_DOT] = ACTIONS(1410), + [anon_sym_DOT_DOT] = ACTIONS(1410), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1408), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1408), + [anon_sym_COMMA] = ACTIONS(1408), + [anon_sym_COLON_COLON] = ACTIONS(1408), + [anon_sym_POUND] = ACTIONS(1408), + [anon_sym_as] = ACTIONS(1410), + [anon_sym_const] = ACTIONS(1410), + [anon_sym_default] = ACTIONS(1410), + [anon_sym_gen] = ACTIONS(1410), + [anon_sym_union] = ACTIONS(1410), + [anon_sym_ref] = ACTIONS(1410), + [anon_sym_else] = ACTIONS(1410), + [sym_mutable_specifier] = ACTIONS(1410), + [sym_integer_literal] = ACTIONS(1408), + [aux_sym_string_literal_token1] = ACTIONS(1408), + [sym_char_literal] = ACTIONS(1408), + [anon_sym_true] = ACTIONS(1410), + [anon_sym_false] = ACTIONS(1410), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1410), + [sym_super] = ACTIONS(1410), + [sym_crate] = ACTIONS(1410), + [sym_metavariable] = ACTIONS(1408), + [sym__raw_string_literal_start] = ACTIONS(1408), + [sym_float_literal] = ACTIONS(1408), }, [STATE(465)] = { + [sym_attribute_item] = STATE(1403), + [sym_inner_attribute_item] = STATE(1403), + [sym_bracketed_type] = STATE(3677), + [sym_generic_type] = STATE(3475), + [sym_generic_type_with_turbofish] = STATE(3405), + [sym_macro_invocation] = STATE(2996), + [sym_scoped_identifier] = STATE(2238), + [sym_scoped_type_identifier] = STATE(3090), + [sym_match_arm] = STATE(1404), + [sym_last_match_arm] = STATE(3704), + [sym_match_pattern] = STATE(3640), + [sym_const_block] = STATE(2996), + [sym__pattern] = STATE(2947), + [sym_generic_pattern] = STATE(2996), + [sym_tuple_pattern] = STATE(2996), + [sym_slice_pattern] = STATE(2996), + [sym_tuple_struct_pattern] = STATE(2996), + [sym_struct_pattern] = STATE(2996), + [sym_remaining_field_pattern] = STATE(2996), + [sym_mut_pattern] = STATE(2996), + [sym_range_pattern] = STATE(2996), + [sym_ref_pattern] = STATE(2996), + [sym_captured_pattern] = STATE(2996), + [sym_reference_pattern] = STATE(2996), + [sym_or_pattern] = STATE(2996), + [sym__literal_pattern] = STATE(2429), + [sym_negative_literal] = STATE(2440), + [sym_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_boolean_literal] = STATE(2440), [sym_line_comment] = STATE(465), [sym_block_comment] = STATE(465), - [sym_identifier] = ACTIONS(1389), - [anon_sym_LPAREN] = ACTIONS(1387), - [anon_sym_LBRACK] = ACTIONS(1387), - [anon_sym_RBRACE] = ACTIONS(1387), - [anon_sym_PLUS] = ACTIONS(1389), - [anon_sym_STAR] = ACTIONS(1389), - [anon_sym_QMARK] = ACTIONS(1387), - [anon_sym_u8] = ACTIONS(1389), - [anon_sym_i8] = ACTIONS(1389), - [anon_sym_u16] = ACTIONS(1389), - [anon_sym_i16] = ACTIONS(1389), - [anon_sym_u32] = ACTIONS(1389), - [anon_sym_i32] = ACTIONS(1389), - [anon_sym_u64] = ACTIONS(1389), - [anon_sym_i64] = ACTIONS(1389), - [anon_sym_u128] = ACTIONS(1389), - [anon_sym_i128] = ACTIONS(1389), - [anon_sym_isize] = ACTIONS(1389), - [anon_sym_usize] = ACTIONS(1389), - [anon_sym_f32] = ACTIONS(1389), - [anon_sym_f64] = ACTIONS(1389), - [anon_sym_bool] = ACTIONS(1389), - [anon_sym_str] = ACTIONS(1389), - [anon_sym_char] = ACTIONS(1389), - [anon_sym_DASH] = ACTIONS(1389), - [anon_sym_SLASH] = ACTIONS(1389), - [anon_sym_PERCENT] = ACTIONS(1389), - [anon_sym_CARET] = ACTIONS(1389), - [anon_sym_AMP] = ACTIONS(1389), - [anon_sym_PIPE] = ACTIONS(1389), - [anon_sym_AMP_AMP] = ACTIONS(1387), - [anon_sym_PIPE_PIPE] = ACTIONS(1387), - [anon_sym_LT_LT] = ACTIONS(1389), - [anon_sym_GT_GT] = ACTIONS(1389), - [anon_sym_PLUS_EQ] = ACTIONS(1387), - [anon_sym_DASH_EQ] = ACTIONS(1387), - [anon_sym_STAR_EQ] = ACTIONS(1387), - [anon_sym_SLASH_EQ] = ACTIONS(1387), - [anon_sym_PERCENT_EQ] = ACTIONS(1387), - [anon_sym_CARET_EQ] = ACTIONS(1387), - [anon_sym_AMP_EQ] = ACTIONS(1387), - [anon_sym_PIPE_EQ] = ACTIONS(1387), - [anon_sym_LT_LT_EQ] = ACTIONS(1387), - [anon_sym_GT_GT_EQ] = ACTIONS(1387), - [anon_sym_EQ] = ACTIONS(1389), - [anon_sym_EQ_EQ] = ACTIONS(1387), - [anon_sym_BANG_EQ] = ACTIONS(1387), - [anon_sym_GT] = ACTIONS(1389), - [anon_sym_LT] = ACTIONS(1389), - [anon_sym_GT_EQ] = ACTIONS(1387), - [anon_sym_LT_EQ] = ACTIONS(1387), - [anon_sym__] = ACTIONS(1389), - [anon_sym_DOT] = ACTIONS(1389), - [anon_sym_DOT_DOT] = ACTIONS(1389), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1387), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1387), - [anon_sym_COMMA] = ACTIONS(1387), - [anon_sym_COLON_COLON] = ACTIONS(1387), - [anon_sym_POUND] = ACTIONS(1387), - [anon_sym_as] = ACTIONS(1389), - [anon_sym_const] = ACTIONS(1389), - [anon_sym_default] = ACTIONS(1389), - [anon_sym_gen] = ACTIONS(1389), - [anon_sym_union] = ACTIONS(1389), - [anon_sym_ref] = ACTIONS(1389), - [anon_sym_else] = ACTIONS(1389), - [sym_mutable_specifier] = ACTIONS(1389), - [sym_integer_literal] = ACTIONS(1387), - [aux_sym_string_literal_token1] = ACTIONS(1387), - [sym_char_literal] = ACTIONS(1387), - [anon_sym_true] = ACTIONS(1389), - [anon_sym_false] = ACTIONS(1389), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1389), - [sym_super] = ACTIONS(1389), - [sym_crate] = ACTIONS(1389), - [sym_metavariable] = ACTIONS(1387), - [sym__raw_string_literal_start] = ACTIONS(1387), - [sym_float_literal] = ACTIONS(1387), + [aux_sym_match_block_repeat1] = STATE(493), + [aux_sym_match_arm_repeat1] = STATE(784), + [sym_identifier] = ACTIONS(1650), + [anon_sym_LPAREN] = ACTIONS(1652), + [anon_sym_LBRACK] = ACTIONS(1654), + [anon_sym_u8] = ACTIONS(1658), + [anon_sym_i8] = ACTIONS(1658), + [anon_sym_u16] = ACTIONS(1658), + [anon_sym_i16] = ACTIONS(1658), + [anon_sym_u32] = ACTIONS(1658), + [anon_sym_i32] = ACTIONS(1658), + [anon_sym_u64] = ACTIONS(1658), + [anon_sym_i64] = ACTIONS(1658), + [anon_sym_u128] = ACTIONS(1658), + [anon_sym_i128] = ACTIONS(1658), + [anon_sym_isize] = ACTIONS(1658), + [anon_sym_usize] = ACTIONS(1658), + [anon_sym_f32] = ACTIONS(1658), + [anon_sym_f64] = ACTIONS(1658), + [anon_sym_bool] = ACTIONS(1658), + [anon_sym_str] = ACTIONS(1658), + [anon_sym_char] = ACTIONS(1658), + [anon_sym_DASH] = ACTIONS(1660), + [anon_sym_AMP] = ACTIONS(1662), + [anon_sym_PIPE] = ACTIONS(1664), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1666), + [anon_sym_DOT_DOT] = ACTIONS(1668), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1670), + [anon_sym_COLON_COLON] = ACTIONS(1672), + [anon_sym_POUND] = ACTIONS(1674), + [anon_sym_const] = ACTIONS(1676), + [anon_sym_default] = ACTIONS(1678), + [anon_sym_gen] = ACTIONS(1678), + [anon_sym_union] = ACTIONS(1678), + [anon_sym_ref] = ACTIONS(1680), + [sym_mutable_specifier] = ACTIONS(1682), + [sym_integer_literal] = ACTIONS(1684), + [aux_sym_string_literal_token1] = ACTIONS(1686), + [sym_char_literal] = ACTIONS(1684), + [anon_sym_true] = ACTIONS(1688), + [anon_sym_false] = ACTIONS(1688), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1690), + [sym_super] = ACTIONS(1690), + [sym_crate] = ACTIONS(1690), + [sym_metavariable] = ACTIONS(1692), + [sym__raw_string_literal_start] = ACTIONS(1694), + [sym_float_literal] = ACTIONS(1684), }, [STATE(466)] = { - [sym_attribute_item] = STATE(1395), - [sym_inner_attribute_item] = STATE(1395), - [sym_bracketed_type] = STATE(3648), - [sym_generic_type] = STATE(3450), - [sym_generic_type_with_turbofish] = STATE(3370), - [sym_macro_invocation] = STATE(3108), - [sym_scoped_identifier] = STATE(2218), - [sym_scoped_type_identifier] = STATE(3059), - [sym_match_arm] = STATE(1396), - [sym_last_match_arm] = STATE(3553), - [sym_match_pattern] = STATE(3527), - [sym_const_block] = STATE(3108), - [sym__pattern] = STATE(2998), - [sym_generic_pattern] = STATE(3108), - [sym_tuple_pattern] = STATE(3108), - [sym_slice_pattern] = STATE(3108), - [sym_tuple_struct_pattern] = STATE(3108), - [sym_struct_pattern] = STATE(3108), - [sym_remaining_field_pattern] = STATE(3108), - [sym_mut_pattern] = STATE(3108), - [sym_range_pattern] = STATE(3108), - [sym_ref_pattern] = STATE(3108), - [sym_captured_pattern] = STATE(3108), - [sym_reference_pattern] = STATE(3108), - [sym_or_pattern] = STATE(3108), - [sym__literal_pattern] = STATE(2401), - [sym_negative_literal] = STATE(2389), - [sym_string_literal] = STATE(2389), - [sym_raw_string_literal] = STATE(2389), - [sym_boolean_literal] = STATE(2389), [sym_line_comment] = STATE(466), [sym_block_comment] = STATE(466), - [aux_sym_match_block_repeat1] = STATE(472), - [aux_sym_match_arm_repeat1] = STATE(744), - [sym_identifier] = ACTIONS(1645), - [anon_sym_LPAREN] = ACTIONS(1647), - [anon_sym_LBRACK] = ACTIONS(1649), - [anon_sym_u8] = ACTIONS(1653), - [anon_sym_i8] = ACTIONS(1653), - [anon_sym_u16] = ACTIONS(1653), - [anon_sym_i16] = ACTIONS(1653), - [anon_sym_u32] = ACTIONS(1653), - [anon_sym_i32] = ACTIONS(1653), - [anon_sym_u64] = ACTIONS(1653), - [anon_sym_i64] = ACTIONS(1653), - [anon_sym_u128] = ACTIONS(1653), - [anon_sym_i128] = ACTIONS(1653), - [anon_sym_isize] = ACTIONS(1653), - [anon_sym_usize] = ACTIONS(1653), - [anon_sym_f32] = ACTIONS(1653), - [anon_sym_f64] = ACTIONS(1653), - [anon_sym_bool] = ACTIONS(1653), - [anon_sym_str] = ACTIONS(1653), - [anon_sym_char] = ACTIONS(1653), - [anon_sym_DASH] = ACTIONS(1655), - [anon_sym_AMP] = ACTIONS(1657), - [anon_sym_PIPE] = ACTIONS(1659), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1661), - [anon_sym_DOT_DOT] = ACTIONS(1663), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1665), - [anon_sym_COLON_COLON] = ACTIONS(1667), - [anon_sym_POUND] = ACTIONS(1669), - [anon_sym_const] = ACTIONS(1671), - [anon_sym_default] = ACTIONS(1673), - [anon_sym_gen] = ACTIONS(1673), - [anon_sym_union] = ACTIONS(1673), - [anon_sym_ref] = ACTIONS(1675), - [sym_mutable_specifier] = ACTIONS(1677), - [sym_integer_literal] = ACTIONS(1679), - [aux_sym_string_literal_token1] = ACTIONS(1681), - [sym_char_literal] = ACTIONS(1679), - [anon_sym_true] = ACTIONS(1683), - [anon_sym_false] = ACTIONS(1683), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1685), - [sym_super] = ACTIONS(1685), - [sym_crate] = ACTIONS(1685), - [sym_metavariable] = ACTIONS(1687), - [sym__raw_string_literal_start] = ACTIONS(1689), - [sym_float_literal] = ACTIONS(1679), + [sym_identifier] = ACTIONS(1398), + [anon_sym_LPAREN] = ACTIONS(1396), + [anon_sym_LBRACK] = ACTIONS(1396), + [anon_sym_RBRACE] = ACTIONS(1396), + [anon_sym_PLUS] = ACTIONS(1398), + [anon_sym_STAR] = ACTIONS(1398), + [anon_sym_QMARK] = ACTIONS(1396), + [anon_sym_u8] = ACTIONS(1398), + [anon_sym_i8] = ACTIONS(1398), + [anon_sym_u16] = ACTIONS(1398), + [anon_sym_i16] = ACTIONS(1398), + [anon_sym_u32] = ACTIONS(1398), + [anon_sym_i32] = ACTIONS(1398), + [anon_sym_u64] = ACTIONS(1398), + [anon_sym_i64] = ACTIONS(1398), + [anon_sym_u128] = ACTIONS(1398), + [anon_sym_i128] = ACTIONS(1398), + [anon_sym_isize] = ACTIONS(1398), + [anon_sym_usize] = ACTIONS(1398), + [anon_sym_f32] = ACTIONS(1398), + [anon_sym_f64] = ACTIONS(1398), + [anon_sym_bool] = ACTIONS(1398), + [anon_sym_str] = ACTIONS(1398), + [anon_sym_char] = ACTIONS(1398), + [anon_sym_DASH] = ACTIONS(1398), + [anon_sym_SLASH] = ACTIONS(1398), + [anon_sym_PERCENT] = ACTIONS(1398), + [anon_sym_CARET] = ACTIONS(1398), + [anon_sym_AMP] = ACTIONS(1398), + [anon_sym_PIPE] = ACTIONS(1398), + [anon_sym_AMP_AMP] = ACTIONS(1396), + [anon_sym_PIPE_PIPE] = ACTIONS(1396), + [anon_sym_LT_LT] = ACTIONS(1398), + [anon_sym_GT_GT] = ACTIONS(1398), + [anon_sym_PLUS_EQ] = ACTIONS(1396), + [anon_sym_DASH_EQ] = ACTIONS(1396), + [anon_sym_STAR_EQ] = ACTIONS(1396), + [anon_sym_SLASH_EQ] = ACTIONS(1396), + [anon_sym_PERCENT_EQ] = ACTIONS(1396), + [anon_sym_CARET_EQ] = ACTIONS(1396), + [anon_sym_AMP_EQ] = ACTIONS(1396), + [anon_sym_PIPE_EQ] = ACTIONS(1396), + [anon_sym_LT_LT_EQ] = ACTIONS(1396), + [anon_sym_GT_GT_EQ] = ACTIONS(1396), + [anon_sym_EQ] = ACTIONS(1398), + [anon_sym_EQ_EQ] = ACTIONS(1396), + [anon_sym_BANG_EQ] = ACTIONS(1396), + [anon_sym_GT] = ACTIONS(1398), + [anon_sym_LT] = ACTIONS(1398), + [anon_sym_GT_EQ] = ACTIONS(1396), + [anon_sym_LT_EQ] = ACTIONS(1396), + [anon_sym__] = ACTIONS(1398), + [anon_sym_DOT] = ACTIONS(1398), + [anon_sym_DOT_DOT] = ACTIONS(1398), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1396), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1396), + [anon_sym_COMMA] = ACTIONS(1396), + [anon_sym_COLON_COLON] = ACTIONS(1396), + [anon_sym_POUND] = ACTIONS(1396), + [anon_sym_as] = ACTIONS(1398), + [anon_sym_const] = ACTIONS(1398), + [anon_sym_default] = ACTIONS(1398), + [anon_sym_gen] = ACTIONS(1398), + [anon_sym_union] = ACTIONS(1398), + [anon_sym_ref] = ACTIONS(1398), + [anon_sym_else] = ACTIONS(1398), + [sym_mutable_specifier] = ACTIONS(1398), + [sym_integer_literal] = ACTIONS(1396), + [aux_sym_string_literal_token1] = ACTIONS(1396), + [sym_char_literal] = ACTIONS(1396), + [anon_sym_true] = ACTIONS(1398), + [anon_sym_false] = ACTIONS(1398), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1398), + [sym_super] = ACTIONS(1398), + [sym_crate] = ACTIONS(1398), + [sym_metavariable] = ACTIONS(1396), + [sym__raw_string_literal_start] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1396), }, [STATE(467)] = { - [sym_attribute_item] = STATE(1395), - [sym_inner_attribute_item] = STATE(1395), - [sym_bracketed_type] = STATE(3648), - [sym_generic_type] = STATE(3450), - [sym_generic_type_with_turbofish] = STATE(3370), - [sym_macro_invocation] = STATE(3108), - [sym_scoped_identifier] = STATE(2218), - [sym_scoped_type_identifier] = STATE(3059), - [sym_match_arm] = STATE(1396), - [sym_last_match_arm] = STATE(3592), - [sym_match_pattern] = STATE(3527), - [sym_const_block] = STATE(3108), - [sym__pattern] = STATE(2998), - [sym_generic_pattern] = STATE(3108), - [sym_tuple_pattern] = STATE(3108), - [sym_slice_pattern] = STATE(3108), - [sym_tuple_struct_pattern] = STATE(3108), - [sym_struct_pattern] = STATE(3108), - [sym_remaining_field_pattern] = STATE(3108), - [sym_mut_pattern] = STATE(3108), - [sym_range_pattern] = STATE(3108), - [sym_ref_pattern] = STATE(3108), - [sym_captured_pattern] = STATE(3108), - [sym_reference_pattern] = STATE(3108), - [sym_or_pattern] = STATE(3108), - [sym__literal_pattern] = STATE(2401), - [sym_negative_literal] = STATE(2389), - [sym_string_literal] = STATE(2389), - [sym_raw_string_literal] = STATE(2389), - [sym_boolean_literal] = STATE(2389), + [sym_attribute_item] = STATE(1403), + [sym_inner_attribute_item] = STATE(1403), + [sym_bracketed_type] = STATE(3677), + [sym_generic_type] = STATE(3475), + [sym_generic_type_with_turbofish] = STATE(3405), + [sym_macro_invocation] = STATE(2996), + [sym_scoped_identifier] = STATE(2238), + [sym_scoped_type_identifier] = STATE(3090), + [sym_match_arm] = STATE(1404), + [sym_last_match_arm] = STATE(3601), + [sym_match_pattern] = STATE(3640), + [sym_const_block] = STATE(2996), + [sym__pattern] = STATE(2947), + [sym_generic_pattern] = STATE(2996), + [sym_tuple_pattern] = STATE(2996), + [sym_slice_pattern] = STATE(2996), + [sym_tuple_struct_pattern] = STATE(2996), + [sym_struct_pattern] = STATE(2996), + [sym_remaining_field_pattern] = STATE(2996), + [sym_mut_pattern] = STATE(2996), + [sym_range_pattern] = STATE(2996), + [sym_ref_pattern] = STATE(2996), + [sym_captured_pattern] = STATE(2996), + [sym_reference_pattern] = STATE(2996), + [sym_or_pattern] = STATE(2996), + [sym__literal_pattern] = STATE(2429), + [sym_negative_literal] = STATE(2440), + [sym_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_boolean_literal] = STATE(2440), [sym_line_comment] = STATE(467), [sym_block_comment] = STATE(467), - [aux_sym_match_block_repeat1] = STATE(472), - [aux_sym_match_arm_repeat1] = STATE(744), - [sym_identifier] = ACTIONS(1645), - [anon_sym_LPAREN] = ACTIONS(1647), - [anon_sym_LBRACK] = ACTIONS(1649), - [anon_sym_u8] = ACTIONS(1653), - [anon_sym_i8] = ACTIONS(1653), - [anon_sym_u16] = ACTIONS(1653), - [anon_sym_i16] = ACTIONS(1653), - [anon_sym_u32] = ACTIONS(1653), - [anon_sym_i32] = ACTIONS(1653), - [anon_sym_u64] = ACTIONS(1653), - [anon_sym_i64] = ACTIONS(1653), - [anon_sym_u128] = ACTIONS(1653), - [anon_sym_i128] = ACTIONS(1653), - [anon_sym_isize] = ACTIONS(1653), - [anon_sym_usize] = ACTIONS(1653), - [anon_sym_f32] = ACTIONS(1653), - [anon_sym_f64] = ACTIONS(1653), - [anon_sym_bool] = ACTIONS(1653), - [anon_sym_str] = ACTIONS(1653), - [anon_sym_char] = ACTIONS(1653), - [anon_sym_DASH] = ACTIONS(1655), - [anon_sym_AMP] = ACTIONS(1657), - [anon_sym_PIPE] = ACTIONS(1659), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1661), - [anon_sym_DOT_DOT] = ACTIONS(1663), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1665), - [anon_sym_COLON_COLON] = ACTIONS(1667), - [anon_sym_POUND] = ACTIONS(1669), - [anon_sym_const] = ACTIONS(1671), - [anon_sym_default] = ACTIONS(1673), - [anon_sym_gen] = ACTIONS(1673), - [anon_sym_union] = ACTIONS(1673), - [anon_sym_ref] = ACTIONS(1675), - [sym_mutable_specifier] = ACTIONS(1677), - [sym_integer_literal] = ACTIONS(1679), - [aux_sym_string_literal_token1] = ACTIONS(1681), - [sym_char_literal] = ACTIONS(1679), - [anon_sym_true] = ACTIONS(1683), - [anon_sym_false] = ACTIONS(1683), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1685), - [sym_super] = ACTIONS(1685), - [sym_crate] = ACTIONS(1685), - [sym_metavariable] = ACTIONS(1687), - [sym__raw_string_literal_start] = ACTIONS(1689), - [sym_float_literal] = ACTIONS(1679), + [aux_sym_match_block_repeat1] = STATE(493), + [aux_sym_match_arm_repeat1] = STATE(784), + [sym_identifier] = ACTIONS(1650), + [anon_sym_LPAREN] = ACTIONS(1652), + [anon_sym_LBRACK] = ACTIONS(1654), + [anon_sym_u8] = ACTIONS(1658), + [anon_sym_i8] = ACTIONS(1658), + [anon_sym_u16] = ACTIONS(1658), + [anon_sym_i16] = ACTIONS(1658), + [anon_sym_u32] = ACTIONS(1658), + [anon_sym_i32] = ACTIONS(1658), + [anon_sym_u64] = ACTIONS(1658), + [anon_sym_i64] = ACTIONS(1658), + [anon_sym_u128] = ACTIONS(1658), + [anon_sym_i128] = ACTIONS(1658), + [anon_sym_isize] = ACTIONS(1658), + [anon_sym_usize] = ACTIONS(1658), + [anon_sym_f32] = ACTIONS(1658), + [anon_sym_f64] = ACTIONS(1658), + [anon_sym_bool] = ACTIONS(1658), + [anon_sym_str] = ACTIONS(1658), + [anon_sym_char] = ACTIONS(1658), + [anon_sym_DASH] = ACTIONS(1660), + [anon_sym_AMP] = ACTIONS(1662), + [anon_sym_PIPE] = ACTIONS(1664), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1666), + [anon_sym_DOT_DOT] = ACTIONS(1668), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1670), + [anon_sym_COLON_COLON] = ACTIONS(1672), + [anon_sym_POUND] = ACTIONS(1674), + [anon_sym_const] = ACTIONS(1676), + [anon_sym_default] = ACTIONS(1678), + [anon_sym_gen] = ACTIONS(1678), + [anon_sym_union] = ACTIONS(1678), + [anon_sym_ref] = ACTIONS(1680), + [sym_mutable_specifier] = ACTIONS(1682), + [sym_integer_literal] = ACTIONS(1684), + [aux_sym_string_literal_token1] = ACTIONS(1686), + [sym_char_literal] = ACTIONS(1684), + [anon_sym_true] = ACTIONS(1688), + [anon_sym_false] = ACTIONS(1688), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1690), + [sym_super] = ACTIONS(1690), + [sym_crate] = ACTIONS(1690), + [sym_metavariable] = ACTIONS(1692), + [sym__raw_string_literal_start] = ACTIONS(1694), + [sym_float_literal] = ACTIONS(1684), }, [STATE(468)] = { [sym_line_comment] = STATE(468), [sym_block_comment] = STATE(468), - [sym_identifier] = ACTIONS(1385), - [anon_sym_LPAREN] = ACTIONS(1383), - [anon_sym_LBRACK] = ACTIONS(1383), - [anon_sym_RBRACE] = ACTIONS(1383), - [anon_sym_PLUS] = ACTIONS(1385), - [anon_sym_STAR] = ACTIONS(1385), - [anon_sym_QMARK] = ACTIONS(1383), - [anon_sym_u8] = ACTIONS(1385), - [anon_sym_i8] = ACTIONS(1385), - [anon_sym_u16] = ACTIONS(1385), - [anon_sym_i16] = ACTIONS(1385), - [anon_sym_u32] = ACTIONS(1385), - [anon_sym_i32] = ACTIONS(1385), - [anon_sym_u64] = ACTIONS(1385), - [anon_sym_i64] = ACTIONS(1385), - [anon_sym_u128] = ACTIONS(1385), - [anon_sym_i128] = ACTIONS(1385), - [anon_sym_isize] = ACTIONS(1385), - [anon_sym_usize] = ACTIONS(1385), - [anon_sym_f32] = ACTIONS(1385), - [anon_sym_f64] = ACTIONS(1385), - [anon_sym_bool] = ACTIONS(1385), - [anon_sym_str] = ACTIONS(1385), - [anon_sym_char] = ACTIONS(1385), - [anon_sym_DASH] = ACTIONS(1385), - [anon_sym_SLASH] = ACTIONS(1385), - [anon_sym_PERCENT] = ACTIONS(1385), - [anon_sym_CARET] = ACTIONS(1385), - [anon_sym_AMP] = ACTIONS(1385), - [anon_sym_PIPE] = ACTIONS(1385), - [anon_sym_AMP_AMP] = ACTIONS(1383), - [anon_sym_PIPE_PIPE] = ACTIONS(1383), - [anon_sym_LT_LT] = ACTIONS(1385), - [anon_sym_GT_GT] = ACTIONS(1385), - [anon_sym_PLUS_EQ] = ACTIONS(1383), - [anon_sym_DASH_EQ] = ACTIONS(1383), - [anon_sym_STAR_EQ] = ACTIONS(1383), - [anon_sym_SLASH_EQ] = ACTIONS(1383), - [anon_sym_PERCENT_EQ] = ACTIONS(1383), - [anon_sym_CARET_EQ] = ACTIONS(1383), - [anon_sym_AMP_EQ] = ACTIONS(1383), - [anon_sym_PIPE_EQ] = ACTIONS(1383), - [anon_sym_LT_LT_EQ] = ACTIONS(1383), - [anon_sym_GT_GT_EQ] = ACTIONS(1383), - [anon_sym_EQ] = ACTIONS(1385), - [anon_sym_EQ_EQ] = ACTIONS(1383), - [anon_sym_BANG_EQ] = ACTIONS(1383), - [anon_sym_GT] = ACTIONS(1385), - [anon_sym_LT] = ACTIONS(1385), - [anon_sym_GT_EQ] = ACTIONS(1383), - [anon_sym_LT_EQ] = ACTIONS(1383), - [anon_sym__] = ACTIONS(1385), - [anon_sym_DOT] = ACTIONS(1385), - [anon_sym_DOT_DOT] = ACTIONS(1385), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1383), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1383), - [anon_sym_COMMA] = ACTIONS(1383), - [anon_sym_COLON_COLON] = ACTIONS(1383), - [anon_sym_POUND] = ACTIONS(1383), - [anon_sym_as] = ACTIONS(1385), - [anon_sym_const] = ACTIONS(1385), - [anon_sym_default] = ACTIONS(1385), - [anon_sym_gen] = ACTIONS(1385), - [anon_sym_union] = ACTIONS(1385), - [anon_sym_ref] = ACTIONS(1385), - [anon_sym_else] = ACTIONS(1385), - [sym_mutable_specifier] = ACTIONS(1385), - [sym_integer_literal] = ACTIONS(1383), - [aux_sym_string_literal_token1] = ACTIONS(1383), - [sym_char_literal] = ACTIONS(1383), - [anon_sym_true] = ACTIONS(1385), - [anon_sym_false] = ACTIONS(1385), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1385), - [sym_super] = ACTIONS(1385), - [sym_crate] = ACTIONS(1385), - [sym_metavariable] = ACTIONS(1383), - [sym__raw_string_literal_start] = ACTIONS(1383), - [sym_float_literal] = ACTIONS(1383), + [sym_identifier] = ACTIONS(1390), + [anon_sym_LPAREN] = ACTIONS(1388), + [anon_sym_LBRACK] = ACTIONS(1388), + [anon_sym_RBRACE] = ACTIONS(1388), + [anon_sym_PLUS] = ACTIONS(1390), + [anon_sym_STAR] = ACTIONS(1390), + [anon_sym_QMARK] = ACTIONS(1388), + [anon_sym_u8] = ACTIONS(1390), + [anon_sym_i8] = ACTIONS(1390), + [anon_sym_u16] = ACTIONS(1390), + [anon_sym_i16] = ACTIONS(1390), + [anon_sym_u32] = ACTIONS(1390), + [anon_sym_i32] = ACTIONS(1390), + [anon_sym_u64] = ACTIONS(1390), + [anon_sym_i64] = ACTIONS(1390), + [anon_sym_u128] = ACTIONS(1390), + [anon_sym_i128] = ACTIONS(1390), + [anon_sym_isize] = ACTIONS(1390), + [anon_sym_usize] = ACTIONS(1390), + [anon_sym_f32] = ACTIONS(1390), + [anon_sym_f64] = ACTIONS(1390), + [anon_sym_bool] = ACTIONS(1390), + [anon_sym_str] = ACTIONS(1390), + [anon_sym_char] = ACTIONS(1390), + [anon_sym_DASH] = ACTIONS(1390), + [anon_sym_SLASH] = ACTIONS(1390), + [anon_sym_PERCENT] = ACTIONS(1390), + [anon_sym_CARET] = ACTIONS(1390), + [anon_sym_AMP] = ACTIONS(1390), + [anon_sym_PIPE] = ACTIONS(1390), + [anon_sym_AMP_AMP] = ACTIONS(1388), + [anon_sym_PIPE_PIPE] = ACTIONS(1388), + [anon_sym_LT_LT] = ACTIONS(1390), + [anon_sym_GT_GT] = ACTIONS(1390), + [anon_sym_PLUS_EQ] = ACTIONS(1388), + [anon_sym_DASH_EQ] = ACTIONS(1388), + [anon_sym_STAR_EQ] = ACTIONS(1388), + [anon_sym_SLASH_EQ] = ACTIONS(1388), + [anon_sym_PERCENT_EQ] = ACTIONS(1388), + [anon_sym_CARET_EQ] = ACTIONS(1388), + [anon_sym_AMP_EQ] = ACTIONS(1388), + [anon_sym_PIPE_EQ] = ACTIONS(1388), + [anon_sym_LT_LT_EQ] = ACTIONS(1388), + [anon_sym_GT_GT_EQ] = ACTIONS(1388), + [anon_sym_EQ] = ACTIONS(1390), + [anon_sym_EQ_EQ] = ACTIONS(1388), + [anon_sym_BANG_EQ] = ACTIONS(1388), + [anon_sym_GT] = ACTIONS(1390), + [anon_sym_LT] = ACTIONS(1390), + [anon_sym_GT_EQ] = ACTIONS(1388), + [anon_sym_LT_EQ] = ACTIONS(1388), + [anon_sym__] = ACTIONS(1390), + [anon_sym_DOT] = ACTIONS(1390), + [anon_sym_DOT_DOT] = ACTIONS(1390), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1388), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1388), + [anon_sym_COMMA] = ACTIONS(1388), + [anon_sym_COLON_COLON] = ACTIONS(1388), + [anon_sym_POUND] = ACTIONS(1388), + [anon_sym_as] = ACTIONS(1390), + [anon_sym_const] = ACTIONS(1390), + [anon_sym_default] = ACTIONS(1390), + [anon_sym_gen] = ACTIONS(1390), + [anon_sym_union] = ACTIONS(1390), + [anon_sym_ref] = ACTIONS(1390), + [anon_sym_else] = ACTIONS(1390), + [sym_mutable_specifier] = ACTIONS(1390), + [sym_integer_literal] = ACTIONS(1388), + [aux_sym_string_literal_token1] = ACTIONS(1388), + [sym_char_literal] = ACTIONS(1388), + [anon_sym_true] = ACTIONS(1390), + [anon_sym_false] = ACTIONS(1390), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1390), + [sym_super] = ACTIONS(1390), + [sym_crate] = ACTIONS(1390), + [sym_metavariable] = ACTIONS(1388), + [sym__raw_string_literal_start] = ACTIONS(1388), + [sym_float_literal] = ACTIONS(1388), }, [STATE(469)] = { - [sym_attribute_item] = STATE(1395), - [sym_inner_attribute_item] = STATE(1395), - [sym_bracketed_type] = STATE(3648), - [sym_generic_type] = STATE(3450), - [sym_generic_type_with_turbofish] = STATE(3370), - [sym_macro_invocation] = STATE(3108), - [sym_scoped_identifier] = STATE(2218), - [sym_scoped_type_identifier] = STATE(3059), - [sym_match_arm] = STATE(1396), - [sym_last_match_arm] = STATE(3602), - [sym_match_pattern] = STATE(3527), - [sym_const_block] = STATE(3108), - [sym__pattern] = STATE(2998), - [sym_generic_pattern] = STATE(3108), - [sym_tuple_pattern] = STATE(3108), - [sym_slice_pattern] = STATE(3108), - [sym_tuple_struct_pattern] = STATE(3108), - [sym_struct_pattern] = STATE(3108), - [sym_remaining_field_pattern] = STATE(3108), - [sym_mut_pattern] = STATE(3108), - [sym_range_pattern] = STATE(3108), - [sym_ref_pattern] = STATE(3108), - [sym_captured_pattern] = STATE(3108), - [sym_reference_pattern] = STATE(3108), - [sym_or_pattern] = STATE(3108), - [sym__literal_pattern] = STATE(2401), - [sym_negative_literal] = STATE(2389), - [sym_string_literal] = STATE(2389), - [sym_raw_string_literal] = STATE(2389), - [sym_boolean_literal] = STATE(2389), [sym_line_comment] = STATE(469), [sym_block_comment] = STATE(469), - [aux_sym_match_block_repeat1] = STATE(472), - [aux_sym_match_arm_repeat1] = STATE(744), - [sym_identifier] = ACTIONS(1645), - [anon_sym_LPAREN] = ACTIONS(1647), - [anon_sym_LBRACK] = ACTIONS(1649), - [anon_sym_u8] = ACTIONS(1653), - [anon_sym_i8] = ACTIONS(1653), - [anon_sym_u16] = ACTIONS(1653), - [anon_sym_i16] = ACTIONS(1653), - [anon_sym_u32] = ACTIONS(1653), - [anon_sym_i32] = ACTIONS(1653), - [anon_sym_u64] = ACTIONS(1653), - [anon_sym_i64] = ACTIONS(1653), - [anon_sym_u128] = ACTIONS(1653), - [anon_sym_i128] = ACTIONS(1653), - [anon_sym_isize] = ACTIONS(1653), - [anon_sym_usize] = ACTIONS(1653), - [anon_sym_f32] = ACTIONS(1653), - [anon_sym_f64] = ACTIONS(1653), - [anon_sym_bool] = ACTIONS(1653), - [anon_sym_str] = ACTIONS(1653), - [anon_sym_char] = ACTIONS(1653), - [anon_sym_DASH] = ACTIONS(1655), - [anon_sym_AMP] = ACTIONS(1657), - [anon_sym_PIPE] = ACTIONS(1659), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1661), - [anon_sym_DOT_DOT] = ACTIONS(1663), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1665), - [anon_sym_COLON_COLON] = ACTIONS(1667), - [anon_sym_POUND] = ACTIONS(1669), - [anon_sym_const] = ACTIONS(1671), - [anon_sym_default] = ACTIONS(1673), - [anon_sym_gen] = ACTIONS(1673), - [anon_sym_union] = ACTIONS(1673), - [anon_sym_ref] = ACTIONS(1675), - [sym_mutable_specifier] = ACTIONS(1677), - [sym_integer_literal] = ACTIONS(1679), - [aux_sym_string_literal_token1] = ACTIONS(1681), - [sym_char_literal] = ACTIONS(1679), - [anon_sym_true] = ACTIONS(1683), - [anon_sym_false] = ACTIONS(1683), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1685), - [sym_super] = ACTIONS(1685), - [sym_crate] = ACTIONS(1685), - [sym_metavariable] = ACTIONS(1687), - [sym__raw_string_literal_start] = ACTIONS(1689), - [sym_float_literal] = ACTIONS(1679), + [sym_identifier] = ACTIONS(1360), + [anon_sym_LPAREN] = ACTIONS(1358), + [anon_sym_LBRACK] = ACTIONS(1358), + [anon_sym_RBRACE] = ACTIONS(1358), + [anon_sym_PLUS] = ACTIONS(1360), + [anon_sym_STAR] = ACTIONS(1360), + [anon_sym_QMARK] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1360), + [anon_sym_i8] = ACTIONS(1360), + [anon_sym_u16] = ACTIONS(1360), + [anon_sym_i16] = ACTIONS(1360), + [anon_sym_u32] = ACTIONS(1360), + [anon_sym_i32] = ACTIONS(1360), + [anon_sym_u64] = ACTIONS(1360), + [anon_sym_i64] = ACTIONS(1360), + [anon_sym_u128] = ACTIONS(1360), + [anon_sym_i128] = ACTIONS(1360), + [anon_sym_isize] = ACTIONS(1360), + [anon_sym_usize] = ACTIONS(1360), + [anon_sym_f32] = ACTIONS(1360), + [anon_sym_f64] = ACTIONS(1360), + [anon_sym_bool] = ACTIONS(1360), + [anon_sym_str] = ACTIONS(1360), + [anon_sym_char] = ACTIONS(1360), + [anon_sym_DASH] = ACTIONS(1360), + [anon_sym_SLASH] = ACTIONS(1360), + [anon_sym_PERCENT] = ACTIONS(1360), + [anon_sym_CARET] = ACTIONS(1360), + [anon_sym_AMP] = ACTIONS(1360), + [anon_sym_PIPE] = ACTIONS(1360), + [anon_sym_AMP_AMP] = ACTIONS(1358), + [anon_sym_PIPE_PIPE] = ACTIONS(1358), + [anon_sym_LT_LT] = ACTIONS(1360), + [anon_sym_GT_GT] = ACTIONS(1360), + [anon_sym_PLUS_EQ] = ACTIONS(1358), + [anon_sym_DASH_EQ] = ACTIONS(1358), + [anon_sym_STAR_EQ] = ACTIONS(1358), + [anon_sym_SLASH_EQ] = ACTIONS(1358), + [anon_sym_PERCENT_EQ] = ACTIONS(1358), + [anon_sym_CARET_EQ] = ACTIONS(1358), + [anon_sym_AMP_EQ] = ACTIONS(1358), + [anon_sym_PIPE_EQ] = ACTIONS(1358), + [anon_sym_LT_LT_EQ] = ACTIONS(1358), + [anon_sym_GT_GT_EQ] = ACTIONS(1358), + [anon_sym_EQ] = ACTIONS(1360), + [anon_sym_EQ_EQ] = ACTIONS(1358), + [anon_sym_BANG_EQ] = ACTIONS(1358), + [anon_sym_GT] = ACTIONS(1360), + [anon_sym_LT] = ACTIONS(1360), + [anon_sym_GT_EQ] = ACTIONS(1358), + [anon_sym_LT_EQ] = ACTIONS(1358), + [anon_sym__] = ACTIONS(1360), + [anon_sym_DOT] = ACTIONS(1360), + [anon_sym_DOT_DOT] = ACTIONS(1360), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1358), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1358), + [anon_sym_COMMA] = ACTIONS(1358), + [anon_sym_COLON_COLON] = ACTIONS(1358), + [anon_sym_POUND] = ACTIONS(1358), + [anon_sym_as] = ACTIONS(1360), + [anon_sym_const] = ACTIONS(1360), + [anon_sym_default] = ACTIONS(1360), + [anon_sym_gen] = ACTIONS(1360), + [anon_sym_union] = ACTIONS(1360), + [anon_sym_ref] = ACTIONS(1360), + [anon_sym_else] = ACTIONS(1360), + [sym_mutable_specifier] = ACTIONS(1360), + [sym_integer_literal] = ACTIONS(1358), + [aux_sym_string_literal_token1] = ACTIONS(1358), + [sym_char_literal] = ACTIONS(1358), + [anon_sym_true] = ACTIONS(1360), + [anon_sym_false] = ACTIONS(1360), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1360), + [sym_super] = ACTIONS(1360), + [sym_crate] = ACTIONS(1360), + [sym_metavariable] = ACTIONS(1358), + [sym__raw_string_literal_start] = ACTIONS(1358), + [sym_float_literal] = ACTIONS(1358), }, [STATE(470)] = { + [sym_attribute_item] = STATE(1403), + [sym_inner_attribute_item] = STATE(1403), + [sym_bracketed_type] = STATE(3677), + [sym_generic_type] = STATE(3475), + [sym_generic_type_with_turbofish] = STATE(3405), + [sym_macro_invocation] = STATE(2996), + [sym_scoped_identifier] = STATE(2238), + [sym_scoped_type_identifier] = STATE(3090), + [sym_match_arm] = STATE(1404), + [sym_last_match_arm] = STATE(3600), + [sym_match_pattern] = STATE(3640), + [sym_const_block] = STATE(2996), + [sym__pattern] = STATE(2947), + [sym_generic_pattern] = STATE(2996), + [sym_tuple_pattern] = STATE(2996), + [sym_slice_pattern] = STATE(2996), + [sym_tuple_struct_pattern] = STATE(2996), + [sym_struct_pattern] = STATE(2996), + [sym_remaining_field_pattern] = STATE(2996), + [sym_mut_pattern] = STATE(2996), + [sym_range_pattern] = STATE(2996), + [sym_ref_pattern] = STATE(2996), + [sym_captured_pattern] = STATE(2996), + [sym_reference_pattern] = STATE(2996), + [sym_or_pattern] = STATE(2996), + [sym__literal_pattern] = STATE(2429), + [sym_negative_literal] = STATE(2440), + [sym_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_boolean_literal] = STATE(2440), [sym_line_comment] = STATE(470), [sym_block_comment] = STATE(470), - [sym_identifier] = ACTIONS(1699), - [anon_sym_LPAREN] = ACTIONS(1701), - [anon_sym_LBRACK] = ACTIONS(1701), - [anon_sym_RBRACE] = ACTIONS(1431), - [anon_sym_PLUS] = ACTIONS(1429), - [anon_sym_STAR] = ACTIONS(1429), - [anon_sym_QMARK] = ACTIONS(1431), - [anon_sym_u8] = ACTIONS(1699), - [anon_sym_i8] = ACTIONS(1699), - [anon_sym_u16] = ACTIONS(1699), - [anon_sym_i16] = ACTIONS(1699), - [anon_sym_u32] = ACTIONS(1699), - [anon_sym_i32] = ACTIONS(1699), - [anon_sym_u64] = ACTIONS(1699), - [anon_sym_i64] = ACTIONS(1699), - [anon_sym_u128] = ACTIONS(1699), - [anon_sym_i128] = ACTIONS(1699), - [anon_sym_isize] = ACTIONS(1699), - [anon_sym_usize] = ACTIONS(1699), - [anon_sym_f32] = ACTIONS(1699), - [anon_sym_f64] = ACTIONS(1699), - [anon_sym_bool] = ACTIONS(1699), - [anon_sym_str] = ACTIONS(1699), - [anon_sym_char] = ACTIONS(1699), - [anon_sym_DASH] = ACTIONS(1699), - [anon_sym_SLASH] = ACTIONS(1429), - [anon_sym_PERCENT] = ACTIONS(1429), - [anon_sym_CARET] = ACTIONS(1429), - [anon_sym_AMP] = ACTIONS(1699), - [anon_sym_PIPE] = ACTIONS(1699), - [anon_sym_AMP_AMP] = ACTIONS(1431), - [anon_sym_PIPE_PIPE] = ACTIONS(1431), - [anon_sym_LT_LT] = ACTIONS(1429), - [anon_sym_GT_GT] = ACTIONS(1429), - [anon_sym_PLUS_EQ] = ACTIONS(1431), - [anon_sym_DASH_EQ] = ACTIONS(1431), - [anon_sym_STAR_EQ] = ACTIONS(1431), - [anon_sym_SLASH_EQ] = ACTIONS(1431), - [anon_sym_PERCENT_EQ] = ACTIONS(1431), - [anon_sym_CARET_EQ] = ACTIONS(1431), - [anon_sym_AMP_EQ] = ACTIONS(1431), - [anon_sym_PIPE_EQ] = ACTIONS(1431), - [anon_sym_LT_LT_EQ] = ACTIONS(1431), - [anon_sym_GT_GT_EQ] = ACTIONS(1431), - [anon_sym_EQ] = ACTIONS(1429), - [anon_sym_EQ_EQ] = ACTIONS(1431), - [anon_sym_BANG_EQ] = ACTIONS(1431), - [anon_sym_GT] = ACTIONS(1429), - [anon_sym_LT] = ACTIONS(1699), - [anon_sym_GT_EQ] = ACTIONS(1431), - [anon_sym_LT_EQ] = ACTIONS(1431), - [anon_sym__] = ACTIONS(1699), - [anon_sym_DOT] = ACTIONS(1429), - [anon_sym_DOT_DOT] = ACTIONS(1699), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1431), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1701), - [anon_sym_COMMA] = ACTIONS(1431), - [anon_sym_COLON_COLON] = ACTIONS(1701), - [anon_sym_POUND] = ACTIONS(1701), - [anon_sym_as] = ACTIONS(1429), - [anon_sym_const] = ACTIONS(1699), - [anon_sym_default] = ACTIONS(1699), - [anon_sym_gen] = ACTIONS(1699), - [anon_sym_union] = ACTIONS(1699), - [anon_sym_ref] = ACTIONS(1699), - [sym_mutable_specifier] = ACTIONS(1699), - [sym_integer_literal] = ACTIONS(1701), - [aux_sym_string_literal_token1] = ACTIONS(1701), - [sym_char_literal] = ACTIONS(1701), - [anon_sym_true] = ACTIONS(1699), - [anon_sym_false] = ACTIONS(1699), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1699), - [sym_super] = ACTIONS(1699), - [sym_crate] = ACTIONS(1699), - [sym_metavariable] = ACTIONS(1701), - [sym__raw_string_literal_start] = ACTIONS(1701), - [sym_float_literal] = ACTIONS(1701), + [aux_sym_match_block_repeat1] = STATE(493), + [aux_sym_match_arm_repeat1] = STATE(784), + [sym_identifier] = ACTIONS(1650), + [anon_sym_LPAREN] = ACTIONS(1652), + [anon_sym_LBRACK] = ACTIONS(1654), + [anon_sym_u8] = ACTIONS(1658), + [anon_sym_i8] = ACTIONS(1658), + [anon_sym_u16] = ACTIONS(1658), + [anon_sym_i16] = ACTIONS(1658), + [anon_sym_u32] = ACTIONS(1658), + [anon_sym_i32] = ACTIONS(1658), + [anon_sym_u64] = ACTIONS(1658), + [anon_sym_i64] = ACTIONS(1658), + [anon_sym_u128] = ACTIONS(1658), + [anon_sym_i128] = ACTIONS(1658), + [anon_sym_isize] = ACTIONS(1658), + [anon_sym_usize] = ACTIONS(1658), + [anon_sym_f32] = ACTIONS(1658), + [anon_sym_f64] = ACTIONS(1658), + [anon_sym_bool] = ACTIONS(1658), + [anon_sym_str] = ACTIONS(1658), + [anon_sym_char] = ACTIONS(1658), + [anon_sym_DASH] = ACTIONS(1660), + [anon_sym_AMP] = ACTIONS(1662), + [anon_sym_PIPE] = ACTIONS(1664), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1666), + [anon_sym_DOT_DOT] = ACTIONS(1668), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1670), + [anon_sym_COLON_COLON] = ACTIONS(1672), + [anon_sym_POUND] = ACTIONS(1674), + [anon_sym_const] = ACTIONS(1676), + [anon_sym_default] = ACTIONS(1678), + [anon_sym_gen] = ACTIONS(1678), + [anon_sym_union] = ACTIONS(1678), + [anon_sym_ref] = ACTIONS(1680), + [sym_mutable_specifier] = ACTIONS(1682), + [sym_integer_literal] = ACTIONS(1684), + [aux_sym_string_literal_token1] = ACTIONS(1686), + [sym_char_literal] = ACTIONS(1684), + [anon_sym_true] = ACTIONS(1688), + [anon_sym_false] = ACTIONS(1688), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1690), + [sym_super] = ACTIONS(1690), + [sym_crate] = ACTIONS(1690), + [sym_metavariable] = ACTIONS(1692), + [sym__raw_string_literal_start] = ACTIONS(1694), + [sym_float_literal] = ACTIONS(1684), }, [STATE(471)] = { + [sym_attribute_item] = STATE(1403), + [sym_inner_attribute_item] = STATE(1403), + [sym_bracketed_type] = STATE(3677), + [sym_generic_type] = STATE(3475), + [sym_generic_type_with_turbofish] = STATE(3405), + [sym_macro_invocation] = STATE(2996), + [sym_scoped_identifier] = STATE(2238), + [sym_scoped_type_identifier] = STATE(3090), + [sym_match_arm] = STATE(1404), + [sym_last_match_arm] = STATE(3535), + [sym_match_pattern] = STATE(3640), + [sym_const_block] = STATE(2996), + [sym__pattern] = STATE(2947), + [sym_generic_pattern] = STATE(2996), + [sym_tuple_pattern] = STATE(2996), + [sym_slice_pattern] = STATE(2996), + [sym_tuple_struct_pattern] = STATE(2996), + [sym_struct_pattern] = STATE(2996), + [sym_remaining_field_pattern] = STATE(2996), + [sym_mut_pattern] = STATE(2996), + [sym_range_pattern] = STATE(2996), + [sym_ref_pattern] = STATE(2996), + [sym_captured_pattern] = STATE(2996), + [sym_reference_pattern] = STATE(2996), + [sym_or_pattern] = STATE(2996), + [sym__literal_pattern] = STATE(2429), + [sym_negative_literal] = STATE(2440), + [sym_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_boolean_literal] = STATE(2440), [sym_line_comment] = STATE(471), [sym_block_comment] = STATE(471), - [sym_identifier] = ACTIONS(1519), - [anon_sym_LPAREN] = ACTIONS(1517), - [anon_sym_LBRACK] = ACTIONS(1517), - [anon_sym_RBRACE] = ACTIONS(1517), - [anon_sym_PLUS] = ACTIONS(1519), - [anon_sym_STAR] = ACTIONS(1519), - [anon_sym_QMARK] = ACTIONS(1517), - [anon_sym_u8] = ACTIONS(1519), - [anon_sym_i8] = ACTIONS(1519), - [anon_sym_u16] = ACTIONS(1519), - [anon_sym_i16] = ACTIONS(1519), - [anon_sym_u32] = ACTIONS(1519), - [anon_sym_i32] = ACTIONS(1519), - [anon_sym_u64] = ACTIONS(1519), - [anon_sym_i64] = ACTIONS(1519), - [anon_sym_u128] = ACTIONS(1519), - [anon_sym_i128] = ACTIONS(1519), - [anon_sym_isize] = ACTIONS(1519), - [anon_sym_usize] = ACTIONS(1519), - [anon_sym_f32] = ACTIONS(1519), - [anon_sym_f64] = ACTIONS(1519), - [anon_sym_bool] = ACTIONS(1519), - [anon_sym_str] = ACTIONS(1519), - [anon_sym_char] = ACTIONS(1519), - [anon_sym_DASH] = ACTIONS(1519), - [anon_sym_SLASH] = ACTIONS(1519), - [anon_sym_PERCENT] = ACTIONS(1519), - [anon_sym_CARET] = ACTIONS(1519), - [anon_sym_AMP] = ACTIONS(1519), - [anon_sym_PIPE] = ACTIONS(1519), - [anon_sym_AMP_AMP] = ACTIONS(1517), - [anon_sym_PIPE_PIPE] = ACTIONS(1517), - [anon_sym_LT_LT] = ACTIONS(1519), - [anon_sym_GT_GT] = ACTIONS(1519), - [anon_sym_PLUS_EQ] = ACTIONS(1517), - [anon_sym_DASH_EQ] = ACTIONS(1517), - [anon_sym_STAR_EQ] = ACTIONS(1517), - [anon_sym_SLASH_EQ] = ACTIONS(1517), - [anon_sym_PERCENT_EQ] = ACTIONS(1517), - [anon_sym_CARET_EQ] = ACTIONS(1517), - [anon_sym_AMP_EQ] = ACTIONS(1517), - [anon_sym_PIPE_EQ] = ACTIONS(1517), - [anon_sym_LT_LT_EQ] = ACTIONS(1517), - [anon_sym_GT_GT_EQ] = ACTIONS(1517), - [anon_sym_EQ] = ACTIONS(1519), - [anon_sym_EQ_EQ] = ACTIONS(1517), - [anon_sym_BANG_EQ] = ACTIONS(1517), - [anon_sym_GT] = ACTIONS(1519), - [anon_sym_LT] = ACTIONS(1519), - [anon_sym_GT_EQ] = ACTIONS(1517), - [anon_sym_LT_EQ] = ACTIONS(1517), - [anon_sym__] = ACTIONS(1519), - [anon_sym_DOT] = ACTIONS(1519), - [anon_sym_DOT_DOT] = ACTIONS(1519), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1517), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1517), - [anon_sym_COMMA] = ACTIONS(1517), - [anon_sym_COLON_COLON] = ACTIONS(1517), - [anon_sym_POUND] = ACTIONS(1517), - [anon_sym_as] = ACTIONS(1519), - [anon_sym_const] = ACTIONS(1519), - [anon_sym_default] = ACTIONS(1519), - [anon_sym_gen] = ACTIONS(1519), - [anon_sym_union] = ACTIONS(1519), - [anon_sym_ref] = ACTIONS(1519), - [sym_mutable_specifier] = ACTIONS(1519), - [sym_integer_literal] = ACTIONS(1517), - [aux_sym_string_literal_token1] = ACTIONS(1517), - [sym_char_literal] = ACTIONS(1517), - [anon_sym_true] = ACTIONS(1519), - [anon_sym_false] = ACTIONS(1519), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1519), - [sym_super] = ACTIONS(1519), - [sym_crate] = ACTIONS(1519), - [sym_metavariable] = ACTIONS(1517), - [sym__raw_string_literal_start] = ACTIONS(1517), - [sym_float_literal] = ACTIONS(1517), + [aux_sym_match_block_repeat1] = STATE(493), + [aux_sym_match_arm_repeat1] = STATE(784), + [sym_identifier] = ACTIONS(1650), + [anon_sym_LPAREN] = ACTIONS(1652), + [anon_sym_LBRACK] = ACTIONS(1654), + [anon_sym_u8] = ACTIONS(1658), + [anon_sym_i8] = ACTIONS(1658), + [anon_sym_u16] = ACTIONS(1658), + [anon_sym_i16] = ACTIONS(1658), + [anon_sym_u32] = ACTIONS(1658), + [anon_sym_i32] = ACTIONS(1658), + [anon_sym_u64] = ACTIONS(1658), + [anon_sym_i64] = ACTIONS(1658), + [anon_sym_u128] = ACTIONS(1658), + [anon_sym_i128] = ACTIONS(1658), + [anon_sym_isize] = ACTIONS(1658), + [anon_sym_usize] = ACTIONS(1658), + [anon_sym_f32] = ACTIONS(1658), + [anon_sym_f64] = ACTIONS(1658), + [anon_sym_bool] = ACTIONS(1658), + [anon_sym_str] = ACTIONS(1658), + [anon_sym_char] = ACTIONS(1658), + [anon_sym_DASH] = ACTIONS(1660), + [anon_sym_AMP] = ACTIONS(1662), + [anon_sym_PIPE] = ACTIONS(1664), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1666), + [anon_sym_DOT_DOT] = ACTIONS(1668), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1670), + [anon_sym_COLON_COLON] = ACTIONS(1672), + [anon_sym_POUND] = ACTIONS(1674), + [anon_sym_const] = ACTIONS(1676), + [anon_sym_default] = ACTIONS(1678), + [anon_sym_gen] = ACTIONS(1678), + [anon_sym_union] = ACTIONS(1678), + [anon_sym_ref] = ACTIONS(1680), + [sym_mutable_specifier] = ACTIONS(1682), + [sym_integer_literal] = ACTIONS(1684), + [aux_sym_string_literal_token1] = ACTIONS(1686), + [sym_char_literal] = ACTIONS(1684), + [anon_sym_true] = ACTIONS(1688), + [anon_sym_false] = ACTIONS(1688), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1690), + [sym_super] = ACTIONS(1690), + [sym_crate] = ACTIONS(1690), + [sym_metavariable] = ACTIONS(1692), + [sym__raw_string_literal_start] = ACTIONS(1694), + [sym_float_literal] = ACTIONS(1684), }, [STATE(472)] = { - [sym_attribute_item] = STATE(1395), - [sym_inner_attribute_item] = STATE(1395), - [sym_bracketed_type] = STATE(3648), - [sym_generic_type] = STATE(3450), - [sym_generic_type_with_turbofish] = STATE(3370), - [sym_macro_invocation] = STATE(3108), - [sym_scoped_identifier] = STATE(2218), - [sym_scoped_type_identifier] = STATE(3059), - [sym_match_arm] = STATE(1396), - [sym_match_pattern] = STATE(3555), - [sym_const_block] = STATE(3108), - [sym__pattern] = STATE(2998), - [sym_generic_pattern] = STATE(3108), - [sym_tuple_pattern] = STATE(3108), - [sym_slice_pattern] = STATE(3108), - [sym_tuple_struct_pattern] = STATE(3108), - [sym_struct_pattern] = STATE(3108), - [sym_remaining_field_pattern] = STATE(3108), - [sym_mut_pattern] = STATE(3108), - [sym_range_pattern] = STATE(3108), - [sym_ref_pattern] = STATE(3108), - [sym_captured_pattern] = STATE(3108), - [sym_reference_pattern] = STATE(3108), - [sym_or_pattern] = STATE(3108), - [sym__literal_pattern] = STATE(2401), - [sym_negative_literal] = STATE(2389), - [sym_string_literal] = STATE(2389), - [sym_raw_string_literal] = STATE(2389), - [sym_boolean_literal] = STATE(2389), [sym_line_comment] = STATE(472), [sym_block_comment] = STATE(472), - [aux_sym_match_block_repeat1] = STATE(472), - [aux_sym_match_arm_repeat1] = STATE(713), - [sym_identifier] = ACTIONS(1703), - [anon_sym_LPAREN] = ACTIONS(1706), - [anon_sym_LBRACK] = ACTIONS(1709), - [anon_sym_u8] = ACTIONS(1712), - [anon_sym_i8] = ACTIONS(1712), - [anon_sym_u16] = ACTIONS(1712), - [anon_sym_i16] = ACTIONS(1712), - [anon_sym_u32] = ACTIONS(1712), - [anon_sym_i32] = ACTIONS(1712), - [anon_sym_u64] = ACTIONS(1712), - [anon_sym_i64] = ACTIONS(1712), - [anon_sym_u128] = ACTIONS(1712), - [anon_sym_i128] = ACTIONS(1712), - [anon_sym_isize] = ACTIONS(1712), - [anon_sym_usize] = ACTIONS(1712), - [anon_sym_f32] = ACTIONS(1712), - [anon_sym_f64] = ACTIONS(1712), - [anon_sym_bool] = ACTIONS(1712), - [anon_sym_str] = ACTIONS(1712), - [anon_sym_char] = ACTIONS(1712), - [anon_sym_DASH] = ACTIONS(1715), - [anon_sym_AMP] = ACTIONS(1718), - [anon_sym_PIPE] = ACTIONS(1721), - [anon_sym_LT] = ACTIONS(1724), - [anon_sym__] = ACTIONS(1727), - [anon_sym_DOT_DOT] = ACTIONS(1730), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1733), - [anon_sym_COLON_COLON] = ACTIONS(1736), - [anon_sym_POUND] = ACTIONS(1739), - [anon_sym_const] = ACTIONS(1742), - [anon_sym_default] = ACTIONS(1745), - [anon_sym_gen] = ACTIONS(1745), - [anon_sym_union] = ACTIONS(1745), - [anon_sym_ref] = ACTIONS(1748), - [sym_mutable_specifier] = ACTIONS(1751), - [sym_integer_literal] = ACTIONS(1754), - [aux_sym_string_literal_token1] = ACTIONS(1757), - [sym_char_literal] = ACTIONS(1754), - [anon_sym_true] = ACTIONS(1760), - [anon_sym_false] = ACTIONS(1760), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1763), - [sym_super] = ACTIONS(1763), - [sym_crate] = ACTIONS(1763), - [sym_metavariable] = ACTIONS(1766), - [sym__raw_string_literal_start] = ACTIONS(1769), - [sym_float_literal] = ACTIONS(1754), + [sym_identifier] = ACTIONS(1532), + [anon_sym_LPAREN] = ACTIONS(1530), + [anon_sym_LBRACK] = ACTIONS(1530), + [anon_sym_RBRACE] = ACTIONS(1530), + [anon_sym_PLUS] = ACTIONS(1532), + [anon_sym_STAR] = ACTIONS(1532), + [anon_sym_QMARK] = ACTIONS(1530), + [anon_sym_u8] = ACTIONS(1532), + [anon_sym_i8] = ACTIONS(1532), + [anon_sym_u16] = ACTIONS(1532), + [anon_sym_i16] = ACTIONS(1532), + [anon_sym_u32] = ACTIONS(1532), + [anon_sym_i32] = ACTIONS(1532), + [anon_sym_u64] = ACTIONS(1532), + [anon_sym_i64] = ACTIONS(1532), + [anon_sym_u128] = ACTIONS(1532), + [anon_sym_i128] = ACTIONS(1532), + [anon_sym_isize] = ACTIONS(1532), + [anon_sym_usize] = ACTIONS(1532), + [anon_sym_f32] = ACTIONS(1532), + [anon_sym_f64] = ACTIONS(1532), + [anon_sym_bool] = ACTIONS(1532), + [anon_sym_str] = ACTIONS(1532), + [anon_sym_char] = ACTIONS(1532), + [anon_sym_DASH] = ACTIONS(1532), + [anon_sym_SLASH] = ACTIONS(1532), + [anon_sym_PERCENT] = ACTIONS(1532), + [anon_sym_CARET] = ACTIONS(1532), + [anon_sym_AMP] = ACTIONS(1532), + [anon_sym_PIPE] = ACTIONS(1532), + [anon_sym_AMP_AMP] = ACTIONS(1530), + [anon_sym_PIPE_PIPE] = ACTIONS(1530), + [anon_sym_LT_LT] = ACTIONS(1532), + [anon_sym_GT_GT] = ACTIONS(1532), + [anon_sym_PLUS_EQ] = ACTIONS(1530), + [anon_sym_DASH_EQ] = ACTIONS(1530), + [anon_sym_STAR_EQ] = ACTIONS(1530), + [anon_sym_SLASH_EQ] = ACTIONS(1530), + [anon_sym_PERCENT_EQ] = ACTIONS(1530), + [anon_sym_CARET_EQ] = ACTIONS(1530), + [anon_sym_AMP_EQ] = ACTIONS(1530), + [anon_sym_PIPE_EQ] = ACTIONS(1530), + [anon_sym_LT_LT_EQ] = ACTIONS(1530), + [anon_sym_GT_GT_EQ] = ACTIONS(1530), + [anon_sym_EQ] = ACTIONS(1532), + [anon_sym_EQ_EQ] = ACTIONS(1530), + [anon_sym_BANG_EQ] = ACTIONS(1530), + [anon_sym_GT] = ACTIONS(1532), + [anon_sym_LT] = ACTIONS(1532), + [anon_sym_GT_EQ] = ACTIONS(1530), + [anon_sym_LT_EQ] = ACTIONS(1530), + [anon_sym__] = ACTIONS(1532), + [anon_sym_DOT] = ACTIONS(1532), + [anon_sym_DOT_DOT] = ACTIONS(1532), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1530), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1530), + [anon_sym_COMMA] = ACTIONS(1530), + [anon_sym_COLON_COLON] = ACTIONS(1530), + [anon_sym_POUND] = ACTIONS(1530), + [anon_sym_as] = ACTIONS(1532), + [anon_sym_const] = ACTIONS(1532), + [anon_sym_default] = ACTIONS(1532), + [anon_sym_gen] = ACTIONS(1532), + [anon_sym_union] = ACTIONS(1532), + [anon_sym_ref] = ACTIONS(1532), + [sym_mutable_specifier] = ACTIONS(1532), + [sym_integer_literal] = ACTIONS(1530), + [aux_sym_string_literal_token1] = ACTIONS(1530), + [sym_char_literal] = ACTIONS(1530), + [anon_sym_true] = ACTIONS(1532), + [anon_sym_false] = ACTIONS(1532), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1532), + [sym_super] = ACTIONS(1532), + [sym_crate] = ACTIONS(1532), + [sym_metavariable] = ACTIONS(1530), + [sym__raw_string_literal_start] = ACTIONS(1530), + [sym_float_literal] = ACTIONS(1530), }, [STATE(473)] = { [sym_line_comment] = STATE(473), [sym_block_comment] = STATE(473), - [sym_identifier] = ACTIONS(1511), - [anon_sym_LPAREN] = ACTIONS(1509), - [anon_sym_LBRACK] = ACTIONS(1509), - [anon_sym_RBRACE] = ACTIONS(1509), - [anon_sym_PLUS] = ACTIONS(1511), - [anon_sym_STAR] = ACTIONS(1511), - [anon_sym_QMARK] = ACTIONS(1509), - [anon_sym_u8] = ACTIONS(1511), - [anon_sym_i8] = ACTIONS(1511), - [anon_sym_u16] = ACTIONS(1511), - [anon_sym_i16] = ACTIONS(1511), - [anon_sym_u32] = ACTIONS(1511), - [anon_sym_i32] = ACTIONS(1511), - [anon_sym_u64] = ACTIONS(1511), - [anon_sym_i64] = ACTIONS(1511), - [anon_sym_u128] = ACTIONS(1511), - [anon_sym_i128] = ACTIONS(1511), - [anon_sym_isize] = ACTIONS(1511), - [anon_sym_usize] = ACTIONS(1511), - [anon_sym_f32] = ACTIONS(1511), - [anon_sym_f64] = ACTIONS(1511), - [anon_sym_bool] = ACTIONS(1511), - [anon_sym_str] = ACTIONS(1511), - [anon_sym_char] = ACTIONS(1511), - [anon_sym_DASH] = ACTIONS(1511), - [anon_sym_SLASH] = ACTIONS(1511), - [anon_sym_PERCENT] = ACTIONS(1511), - [anon_sym_CARET] = ACTIONS(1511), - [anon_sym_AMP] = ACTIONS(1511), - [anon_sym_PIPE] = ACTIONS(1511), - [anon_sym_AMP_AMP] = ACTIONS(1509), - [anon_sym_PIPE_PIPE] = ACTIONS(1509), - [anon_sym_LT_LT] = ACTIONS(1511), - [anon_sym_GT_GT] = ACTIONS(1511), - [anon_sym_PLUS_EQ] = ACTIONS(1509), - [anon_sym_DASH_EQ] = ACTIONS(1509), - [anon_sym_STAR_EQ] = ACTIONS(1509), - [anon_sym_SLASH_EQ] = ACTIONS(1509), - [anon_sym_PERCENT_EQ] = ACTIONS(1509), - [anon_sym_CARET_EQ] = ACTIONS(1509), - [anon_sym_AMP_EQ] = ACTIONS(1509), - [anon_sym_PIPE_EQ] = ACTIONS(1509), - [anon_sym_LT_LT_EQ] = ACTIONS(1509), - [anon_sym_GT_GT_EQ] = ACTIONS(1509), - [anon_sym_EQ] = ACTIONS(1511), - [anon_sym_EQ_EQ] = ACTIONS(1509), - [anon_sym_BANG_EQ] = ACTIONS(1509), - [anon_sym_GT] = ACTIONS(1511), - [anon_sym_LT] = ACTIONS(1511), - [anon_sym_GT_EQ] = ACTIONS(1509), - [anon_sym_LT_EQ] = ACTIONS(1509), - [anon_sym__] = ACTIONS(1511), - [anon_sym_DOT] = ACTIONS(1511), - [anon_sym_DOT_DOT] = ACTIONS(1511), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1509), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1509), - [anon_sym_COMMA] = ACTIONS(1509), - [anon_sym_COLON_COLON] = ACTIONS(1509), - [anon_sym_POUND] = ACTIONS(1509), - [anon_sym_as] = ACTIONS(1511), - [anon_sym_const] = ACTIONS(1511), - [anon_sym_default] = ACTIONS(1511), - [anon_sym_gen] = ACTIONS(1511), - [anon_sym_union] = ACTIONS(1511), - [anon_sym_ref] = ACTIONS(1511), - [sym_mutable_specifier] = ACTIONS(1511), - [sym_integer_literal] = ACTIONS(1509), - [aux_sym_string_literal_token1] = ACTIONS(1509), - [sym_char_literal] = ACTIONS(1509), - [anon_sym_true] = ACTIONS(1511), - [anon_sym_false] = ACTIONS(1511), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1511), - [sym_super] = ACTIONS(1511), - [sym_crate] = ACTIONS(1511), - [sym_metavariable] = ACTIONS(1509), - [sym__raw_string_literal_start] = ACTIONS(1509), - [sym_float_literal] = ACTIONS(1509), + [sym_identifier] = ACTIONS(1516), + [anon_sym_LPAREN] = ACTIONS(1514), + [anon_sym_LBRACK] = ACTIONS(1514), + [anon_sym_RBRACE] = ACTIONS(1514), + [anon_sym_PLUS] = ACTIONS(1516), + [anon_sym_STAR] = ACTIONS(1516), + [anon_sym_QMARK] = ACTIONS(1514), + [anon_sym_u8] = ACTIONS(1516), + [anon_sym_i8] = ACTIONS(1516), + [anon_sym_u16] = ACTIONS(1516), + [anon_sym_i16] = ACTIONS(1516), + [anon_sym_u32] = ACTIONS(1516), + [anon_sym_i32] = ACTIONS(1516), + [anon_sym_u64] = ACTIONS(1516), + [anon_sym_i64] = ACTIONS(1516), + [anon_sym_u128] = ACTIONS(1516), + [anon_sym_i128] = ACTIONS(1516), + [anon_sym_isize] = ACTIONS(1516), + [anon_sym_usize] = ACTIONS(1516), + [anon_sym_f32] = ACTIONS(1516), + [anon_sym_f64] = ACTIONS(1516), + [anon_sym_bool] = ACTIONS(1516), + [anon_sym_str] = ACTIONS(1516), + [anon_sym_char] = ACTIONS(1516), + [anon_sym_DASH] = ACTIONS(1516), + [anon_sym_SLASH] = ACTIONS(1516), + [anon_sym_PERCENT] = ACTIONS(1516), + [anon_sym_CARET] = ACTIONS(1516), + [anon_sym_AMP] = ACTIONS(1516), + [anon_sym_PIPE] = ACTIONS(1516), + [anon_sym_AMP_AMP] = ACTIONS(1514), + [anon_sym_PIPE_PIPE] = ACTIONS(1514), + [anon_sym_LT_LT] = ACTIONS(1516), + [anon_sym_GT_GT] = ACTIONS(1516), + [anon_sym_PLUS_EQ] = ACTIONS(1514), + [anon_sym_DASH_EQ] = ACTIONS(1514), + [anon_sym_STAR_EQ] = ACTIONS(1514), + [anon_sym_SLASH_EQ] = ACTIONS(1514), + [anon_sym_PERCENT_EQ] = ACTIONS(1514), + [anon_sym_CARET_EQ] = ACTIONS(1514), + [anon_sym_AMP_EQ] = ACTIONS(1514), + [anon_sym_PIPE_EQ] = ACTIONS(1514), + [anon_sym_LT_LT_EQ] = ACTIONS(1514), + [anon_sym_GT_GT_EQ] = ACTIONS(1514), + [anon_sym_EQ] = ACTIONS(1516), + [anon_sym_EQ_EQ] = ACTIONS(1514), + [anon_sym_BANG_EQ] = ACTIONS(1514), + [anon_sym_GT] = ACTIONS(1516), + [anon_sym_LT] = ACTIONS(1516), + [anon_sym_GT_EQ] = ACTIONS(1514), + [anon_sym_LT_EQ] = ACTIONS(1514), + [anon_sym__] = ACTIONS(1516), + [anon_sym_DOT] = ACTIONS(1516), + [anon_sym_DOT_DOT] = ACTIONS(1516), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1514), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1514), + [anon_sym_COMMA] = ACTIONS(1514), + [anon_sym_COLON_COLON] = ACTIONS(1514), + [anon_sym_POUND] = ACTIONS(1514), + [anon_sym_as] = ACTIONS(1516), + [anon_sym_const] = ACTIONS(1516), + [anon_sym_default] = ACTIONS(1516), + [anon_sym_gen] = ACTIONS(1516), + [anon_sym_union] = ACTIONS(1516), + [anon_sym_ref] = ACTIONS(1516), + [sym_mutable_specifier] = ACTIONS(1516), + [sym_integer_literal] = ACTIONS(1514), + [aux_sym_string_literal_token1] = ACTIONS(1514), + [sym_char_literal] = ACTIONS(1514), + [anon_sym_true] = ACTIONS(1516), + [anon_sym_false] = ACTIONS(1516), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1516), + [sym_super] = ACTIONS(1516), + [sym_crate] = ACTIONS(1516), + [sym_metavariable] = ACTIONS(1514), + [sym__raw_string_literal_start] = ACTIONS(1514), + [sym_float_literal] = ACTIONS(1514), }, [STATE(474)] = { [sym_line_comment] = STATE(474), [sym_block_comment] = STATE(474), - [sym_identifier] = ACTIONS(1515), - [anon_sym_LPAREN] = ACTIONS(1513), - [anon_sym_LBRACK] = ACTIONS(1513), - [anon_sym_RBRACE] = ACTIONS(1513), - [anon_sym_PLUS] = ACTIONS(1515), - [anon_sym_STAR] = ACTIONS(1515), - [anon_sym_QMARK] = ACTIONS(1513), - [anon_sym_u8] = ACTIONS(1515), - [anon_sym_i8] = ACTIONS(1515), - [anon_sym_u16] = ACTIONS(1515), - [anon_sym_i16] = ACTIONS(1515), - [anon_sym_u32] = ACTIONS(1515), - [anon_sym_i32] = ACTIONS(1515), - [anon_sym_u64] = ACTIONS(1515), - [anon_sym_i64] = ACTIONS(1515), - [anon_sym_u128] = ACTIONS(1515), - [anon_sym_i128] = ACTIONS(1515), - [anon_sym_isize] = ACTIONS(1515), - [anon_sym_usize] = ACTIONS(1515), - [anon_sym_f32] = ACTIONS(1515), - [anon_sym_f64] = ACTIONS(1515), - [anon_sym_bool] = ACTIONS(1515), - [anon_sym_str] = ACTIONS(1515), - [anon_sym_char] = ACTIONS(1515), - [anon_sym_DASH] = ACTIONS(1515), - [anon_sym_SLASH] = ACTIONS(1515), - [anon_sym_PERCENT] = ACTIONS(1515), - [anon_sym_CARET] = ACTIONS(1515), - [anon_sym_AMP] = ACTIONS(1515), - [anon_sym_PIPE] = ACTIONS(1515), - [anon_sym_AMP_AMP] = ACTIONS(1513), - [anon_sym_PIPE_PIPE] = ACTIONS(1513), - [anon_sym_LT_LT] = ACTIONS(1515), - [anon_sym_GT_GT] = ACTIONS(1515), - [anon_sym_PLUS_EQ] = ACTIONS(1513), - [anon_sym_DASH_EQ] = ACTIONS(1513), - [anon_sym_STAR_EQ] = ACTIONS(1513), - [anon_sym_SLASH_EQ] = ACTIONS(1513), - [anon_sym_PERCENT_EQ] = ACTIONS(1513), - [anon_sym_CARET_EQ] = ACTIONS(1513), - [anon_sym_AMP_EQ] = ACTIONS(1513), - [anon_sym_PIPE_EQ] = ACTIONS(1513), - [anon_sym_LT_LT_EQ] = ACTIONS(1513), - [anon_sym_GT_GT_EQ] = ACTIONS(1513), - [anon_sym_EQ] = ACTIONS(1515), - [anon_sym_EQ_EQ] = ACTIONS(1513), - [anon_sym_BANG_EQ] = ACTIONS(1513), - [anon_sym_GT] = ACTIONS(1515), - [anon_sym_LT] = ACTIONS(1515), - [anon_sym_GT_EQ] = ACTIONS(1513), - [anon_sym_LT_EQ] = ACTIONS(1513), - [anon_sym__] = ACTIONS(1515), - [anon_sym_DOT] = ACTIONS(1515), - [anon_sym_DOT_DOT] = ACTIONS(1515), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1513), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1513), - [anon_sym_COMMA] = ACTIONS(1513), - [anon_sym_COLON_COLON] = ACTIONS(1513), - [anon_sym_POUND] = ACTIONS(1513), - [anon_sym_as] = ACTIONS(1515), - [anon_sym_const] = ACTIONS(1515), - [anon_sym_default] = ACTIONS(1515), - [anon_sym_gen] = ACTIONS(1515), - [anon_sym_union] = ACTIONS(1515), - [anon_sym_ref] = ACTIONS(1515), - [sym_mutable_specifier] = ACTIONS(1515), - [sym_integer_literal] = ACTIONS(1513), - [aux_sym_string_literal_token1] = ACTIONS(1513), - [sym_char_literal] = ACTIONS(1513), - [anon_sym_true] = ACTIONS(1515), - [anon_sym_false] = ACTIONS(1515), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1515), - [sym_super] = ACTIONS(1515), - [sym_crate] = ACTIONS(1515), - [sym_metavariable] = ACTIONS(1513), - [sym__raw_string_literal_start] = ACTIONS(1513), - [sym_float_literal] = ACTIONS(1513), + [sym_identifier] = ACTIONS(1454), + [anon_sym_LPAREN] = ACTIONS(1452), + [anon_sym_LBRACK] = ACTIONS(1452), + [anon_sym_RBRACE] = ACTIONS(1452), + [anon_sym_PLUS] = ACTIONS(1454), + [anon_sym_STAR] = ACTIONS(1454), + [anon_sym_QMARK] = ACTIONS(1452), + [anon_sym_u8] = ACTIONS(1454), + [anon_sym_i8] = ACTIONS(1454), + [anon_sym_u16] = ACTIONS(1454), + [anon_sym_i16] = ACTIONS(1454), + [anon_sym_u32] = ACTIONS(1454), + [anon_sym_i32] = ACTIONS(1454), + [anon_sym_u64] = ACTIONS(1454), + [anon_sym_i64] = ACTIONS(1454), + [anon_sym_u128] = ACTIONS(1454), + [anon_sym_i128] = ACTIONS(1454), + [anon_sym_isize] = ACTIONS(1454), + [anon_sym_usize] = ACTIONS(1454), + [anon_sym_f32] = ACTIONS(1454), + [anon_sym_f64] = ACTIONS(1454), + [anon_sym_bool] = ACTIONS(1454), + [anon_sym_str] = ACTIONS(1454), + [anon_sym_char] = ACTIONS(1454), + [anon_sym_DASH] = ACTIONS(1454), + [anon_sym_SLASH] = ACTIONS(1454), + [anon_sym_PERCENT] = ACTIONS(1454), + [anon_sym_CARET] = ACTIONS(1454), + [anon_sym_AMP] = ACTIONS(1454), + [anon_sym_PIPE] = ACTIONS(1454), + [anon_sym_AMP_AMP] = ACTIONS(1452), + [anon_sym_PIPE_PIPE] = ACTIONS(1452), + [anon_sym_LT_LT] = ACTIONS(1454), + [anon_sym_GT_GT] = ACTIONS(1454), + [anon_sym_PLUS_EQ] = ACTIONS(1452), + [anon_sym_DASH_EQ] = ACTIONS(1452), + [anon_sym_STAR_EQ] = ACTIONS(1452), + [anon_sym_SLASH_EQ] = ACTIONS(1452), + [anon_sym_PERCENT_EQ] = ACTIONS(1452), + [anon_sym_CARET_EQ] = ACTIONS(1452), + [anon_sym_AMP_EQ] = ACTIONS(1452), + [anon_sym_PIPE_EQ] = ACTIONS(1452), + [anon_sym_LT_LT_EQ] = ACTIONS(1452), + [anon_sym_GT_GT_EQ] = ACTIONS(1452), + [anon_sym_EQ] = ACTIONS(1454), + [anon_sym_EQ_EQ] = ACTIONS(1452), + [anon_sym_BANG_EQ] = ACTIONS(1452), + [anon_sym_GT] = ACTIONS(1454), + [anon_sym_LT] = ACTIONS(1454), + [anon_sym_GT_EQ] = ACTIONS(1452), + [anon_sym_LT_EQ] = ACTIONS(1452), + [anon_sym__] = ACTIONS(1454), + [anon_sym_DOT] = ACTIONS(1454), + [anon_sym_DOT_DOT] = ACTIONS(1454), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1452), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1452), + [anon_sym_COMMA] = ACTIONS(1452), + [anon_sym_COLON_COLON] = ACTIONS(1452), + [anon_sym_POUND] = ACTIONS(1452), + [anon_sym_as] = ACTIONS(1454), + [anon_sym_const] = ACTIONS(1454), + [anon_sym_default] = ACTIONS(1454), + [anon_sym_gen] = ACTIONS(1454), + [anon_sym_union] = ACTIONS(1454), + [anon_sym_ref] = ACTIONS(1454), + [sym_mutable_specifier] = ACTIONS(1454), + [sym_integer_literal] = ACTIONS(1452), + [aux_sym_string_literal_token1] = ACTIONS(1452), + [sym_char_literal] = ACTIONS(1452), + [anon_sym_true] = ACTIONS(1454), + [anon_sym_false] = ACTIONS(1454), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1454), + [sym_super] = ACTIONS(1454), + [sym_crate] = ACTIONS(1454), + [sym_metavariable] = ACTIONS(1452), + [sym__raw_string_literal_start] = ACTIONS(1452), + [sym_float_literal] = ACTIONS(1452), }, [STATE(475)] = { [sym_line_comment] = STATE(475), [sym_block_comment] = STATE(475), - [sym_identifier] = ACTIONS(1487), - [anon_sym_LPAREN] = ACTIONS(1485), - [anon_sym_LBRACK] = ACTIONS(1485), - [anon_sym_RBRACE] = ACTIONS(1485), - [anon_sym_PLUS] = ACTIONS(1487), - [anon_sym_STAR] = ACTIONS(1487), - [anon_sym_QMARK] = ACTIONS(1485), - [anon_sym_u8] = ACTIONS(1487), - [anon_sym_i8] = ACTIONS(1487), - [anon_sym_u16] = ACTIONS(1487), - [anon_sym_i16] = ACTIONS(1487), - [anon_sym_u32] = ACTIONS(1487), - [anon_sym_i32] = ACTIONS(1487), - [anon_sym_u64] = ACTIONS(1487), - [anon_sym_i64] = ACTIONS(1487), - [anon_sym_u128] = ACTIONS(1487), - [anon_sym_i128] = ACTIONS(1487), - [anon_sym_isize] = ACTIONS(1487), - [anon_sym_usize] = ACTIONS(1487), - [anon_sym_f32] = ACTIONS(1487), - [anon_sym_f64] = ACTIONS(1487), - [anon_sym_bool] = ACTIONS(1487), - [anon_sym_str] = ACTIONS(1487), - [anon_sym_char] = ACTIONS(1487), - [anon_sym_DASH] = ACTIONS(1487), - [anon_sym_SLASH] = ACTIONS(1487), - [anon_sym_PERCENT] = ACTIONS(1487), - [anon_sym_CARET] = ACTIONS(1487), - [anon_sym_AMP] = ACTIONS(1487), - [anon_sym_PIPE] = ACTIONS(1487), - [anon_sym_AMP_AMP] = ACTIONS(1485), - [anon_sym_PIPE_PIPE] = ACTIONS(1485), - [anon_sym_LT_LT] = ACTIONS(1487), - [anon_sym_GT_GT] = ACTIONS(1487), - [anon_sym_PLUS_EQ] = ACTIONS(1485), - [anon_sym_DASH_EQ] = ACTIONS(1485), - [anon_sym_STAR_EQ] = ACTIONS(1485), - [anon_sym_SLASH_EQ] = ACTIONS(1485), - [anon_sym_PERCENT_EQ] = ACTIONS(1485), - [anon_sym_CARET_EQ] = ACTIONS(1485), - [anon_sym_AMP_EQ] = ACTIONS(1485), - [anon_sym_PIPE_EQ] = ACTIONS(1485), - [anon_sym_LT_LT_EQ] = ACTIONS(1485), - [anon_sym_GT_GT_EQ] = ACTIONS(1485), - [anon_sym_EQ] = ACTIONS(1487), - [anon_sym_EQ_EQ] = ACTIONS(1485), - [anon_sym_BANG_EQ] = ACTIONS(1485), - [anon_sym_GT] = ACTIONS(1487), - [anon_sym_LT] = ACTIONS(1487), - [anon_sym_GT_EQ] = ACTIONS(1485), - [anon_sym_LT_EQ] = ACTIONS(1485), - [anon_sym__] = ACTIONS(1487), - [anon_sym_DOT] = ACTIONS(1487), - [anon_sym_DOT_DOT] = ACTIONS(1487), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1485), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1485), - [anon_sym_COMMA] = ACTIONS(1485), - [anon_sym_COLON_COLON] = ACTIONS(1485), - [anon_sym_POUND] = ACTIONS(1485), - [anon_sym_as] = ACTIONS(1487), - [anon_sym_const] = ACTIONS(1487), - [anon_sym_default] = ACTIONS(1487), - [anon_sym_gen] = ACTIONS(1487), - [anon_sym_union] = ACTIONS(1487), - [anon_sym_ref] = ACTIONS(1487), - [sym_mutable_specifier] = ACTIONS(1487), - [sym_integer_literal] = ACTIONS(1485), - [aux_sym_string_literal_token1] = ACTIONS(1485), - [sym_char_literal] = ACTIONS(1485), - [anon_sym_true] = ACTIONS(1487), - [anon_sym_false] = ACTIONS(1487), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1487), - [sym_super] = ACTIONS(1487), - [sym_crate] = ACTIONS(1487), - [sym_metavariable] = ACTIONS(1485), - [sym__raw_string_literal_start] = ACTIONS(1485), - [sym_float_literal] = ACTIONS(1485), + [sym_identifier] = ACTIONS(1524), + [anon_sym_LPAREN] = ACTIONS(1522), + [anon_sym_LBRACK] = ACTIONS(1522), + [anon_sym_RBRACE] = ACTIONS(1522), + [anon_sym_PLUS] = ACTIONS(1524), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_QMARK] = ACTIONS(1522), + [anon_sym_u8] = ACTIONS(1524), + [anon_sym_i8] = ACTIONS(1524), + [anon_sym_u16] = ACTIONS(1524), + [anon_sym_i16] = ACTIONS(1524), + [anon_sym_u32] = ACTIONS(1524), + [anon_sym_i32] = ACTIONS(1524), + [anon_sym_u64] = ACTIONS(1524), + [anon_sym_i64] = ACTIONS(1524), + [anon_sym_u128] = ACTIONS(1524), + [anon_sym_i128] = ACTIONS(1524), + [anon_sym_isize] = ACTIONS(1524), + [anon_sym_usize] = ACTIONS(1524), + [anon_sym_f32] = ACTIONS(1524), + [anon_sym_f64] = ACTIONS(1524), + [anon_sym_bool] = ACTIONS(1524), + [anon_sym_str] = ACTIONS(1524), + [anon_sym_char] = ACTIONS(1524), + [anon_sym_DASH] = ACTIONS(1524), + [anon_sym_SLASH] = ACTIONS(1524), + [anon_sym_PERCENT] = ACTIONS(1524), + [anon_sym_CARET] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), + [anon_sym_PIPE] = ACTIONS(1524), + [anon_sym_AMP_AMP] = ACTIONS(1522), + [anon_sym_PIPE_PIPE] = ACTIONS(1522), + [anon_sym_LT_LT] = ACTIONS(1524), + [anon_sym_GT_GT] = ACTIONS(1524), + [anon_sym_PLUS_EQ] = ACTIONS(1522), + [anon_sym_DASH_EQ] = ACTIONS(1522), + [anon_sym_STAR_EQ] = ACTIONS(1522), + [anon_sym_SLASH_EQ] = ACTIONS(1522), + [anon_sym_PERCENT_EQ] = ACTIONS(1522), + [anon_sym_CARET_EQ] = ACTIONS(1522), + [anon_sym_AMP_EQ] = ACTIONS(1522), + [anon_sym_PIPE_EQ] = ACTIONS(1522), + [anon_sym_LT_LT_EQ] = ACTIONS(1522), + [anon_sym_GT_GT_EQ] = ACTIONS(1522), + [anon_sym_EQ] = ACTIONS(1524), + [anon_sym_EQ_EQ] = ACTIONS(1522), + [anon_sym_BANG_EQ] = ACTIONS(1522), + [anon_sym_GT] = ACTIONS(1524), + [anon_sym_LT] = ACTIONS(1524), + [anon_sym_GT_EQ] = ACTIONS(1522), + [anon_sym_LT_EQ] = ACTIONS(1522), + [anon_sym__] = ACTIONS(1524), + [anon_sym_DOT] = ACTIONS(1524), + [anon_sym_DOT_DOT] = ACTIONS(1524), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1522), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1522), + [anon_sym_COMMA] = ACTIONS(1522), + [anon_sym_COLON_COLON] = ACTIONS(1522), + [anon_sym_POUND] = ACTIONS(1522), + [anon_sym_as] = ACTIONS(1524), + [anon_sym_const] = ACTIONS(1524), + [anon_sym_default] = ACTIONS(1524), + [anon_sym_gen] = ACTIONS(1524), + [anon_sym_union] = ACTIONS(1524), + [anon_sym_ref] = ACTIONS(1524), + [sym_mutable_specifier] = ACTIONS(1524), + [sym_integer_literal] = ACTIONS(1522), + [aux_sym_string_literal_token1] = ACTIONS(1522), + [sym_char_literal] = ACTIONS(1522), + [anon_sym_true] = ACTIONS(1524), + [anon_sym_false] = ACTIONS(1524), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1524), + [sym_super] = ACTIONS(1524), + [sym_crate] = ACTIONS(1524), + [sym_metavariable] = ACTIONS(1522), + [sym__raw_string_literal_start] = ACTIONS(1522), + [sym_float_literal] = ACTIONS(1522), }, [STATE(476)] = { [sym_line_comment] = STATE(476), [sym_block_comment] = STATE(476), - [sym_identifier] = ACTIONS(1479), - [anon_sym_LPAREN] = ACTIONS(1477), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_RBRACE] = ACTIONS(1477), - [anon_sym_PLUS] = ACTIONS(1479), - [anon_sym_STAR] = ACTIONS(1479), - [anon_sym_QMARK] = ACTIONS(1477), - [anon_sym_u8] = ACTIONS(1479), - [anon_sym_i8] = ACTIONS(1479), - [anon_sym_u16] = ACTIONS(1479), - [anon_sym_i16] = ACTIONS(1479), - [anon_sym_u32] = ACTIONS(1479), - [anon_sym_i32] = ACTIONS(1479), - [anon_sym_u64] = ACTIONS(1479), - [anon_sym_i64] = ACTIONS(1479), - [anon_sym_u128] = ACTIONS(1479), - [anon_sym_i128] = ACTIONS(1479), - [anon_sym_isize] = ACTIONS(1479), - [anon_sym_usize] = ACTIONS(1479), - [anon_sym_f32] = ACTIONS(1479), - [anon_sym_f64] = ACTIONS(1479), - [anon_sym_bool] = ACTIONS(1479), - [anon_sym_str] = ACTIONS(1479), - [anon_sym_char] = ACTIONS(1479), - [anon_sym_DASH] = ACTIONS(1479), - [anon_sym_SLASH] = ACTIONS(1479), - [anon_sym_PERCENT] = ACTIONS(1479), - [anon_sym_CARET] = ACTIONS(1479), - [anon_sym_AMP] = ACTIONS(1479), - [anon_sym_PIPE] = ACTIONS(1479), - [anon_sym_AMP_AMP] = ACTIONS(1477), - [anon_sym_PIPE_PIPE] = ACTIONS(1477), - [anon_sym_LT_LT] = ACTIONS(1479), - [anon_sym_GT_GT] = ACTIONS(1479), - [anon_sym_PLUS_EQ] = ACTIONS(1477), - [anon_sym_DASH_EQ] = ACTIONS(1477), - [anon_sym_STAR_EQ] = ACTIONS(1477), - [anon_sym_SLASH_EQ] = ACTIONS(1477), - [anon_sym_PERCENT_EQ] = ACTIONS(1477), - [anon_sym_CARET_EQ] = ACTIONS(1477), - [anon_sym_AMP_EQ] = ACTIONS(1477), - [anon_sym_PIPE_EQ] = ACTIONS(1477), - [anon_sym_LT_LT_EQ] = ACTIONS(1477), - [anon_sym_GT_GT_EQ] = ACTIONS(1477), - [anon_sym_EQ] = ACTIONS(1479), - [anon_sym_EQ_EQ] = ACTIONS(1477), - [anon_sym_BANG_EQ] = ACTIONS(1477), - [anon_sym_GT] = ACTIONS(1479), - [anon_sym_LT] = ACTIONS(1479), - [anon_sym_GT_EQ] = ACTIONS(1477), - [anon_sym_LT_EQ] = ACTIONS(1477), - [anon_sym__] = ACTIONS(1479), - [anon_sym_DOT] = ACTIONS(1479), - [anon_sym_DOT_DOT] = ACTIONS(1479), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1477), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1477), - [anon_sym_COMMA] = ACTIONS(1477), - [anon_sym_COLON_COLON] = ACTIONS(1477), - [anon_sym_POUND] = ACTIONS(1477), - [anon_sym_as] = ACTIONS(1479), - [anon_sym_const] = ACTIONS(1479), - [anon_sym_default] = ACTIONS(1479), - [anon_sym_gen] = ACTIONS(1479), - [anon_sym_union] = ACTIONS(1479), - [anon_sym_ref] = ACTIONS(1479), - [sym_mutable_specifier] = ACTIONS(1479), - [sym_integer_literal] = ACTIONS(1477), - [aux_sym_string_literal_token1] = ACTIONS(1477), - [sym_char_literal] = ACTIONS(1477), - [anon_sym_true] = ACTIONS(1479), - [anon_sym_false] = ACTIONS(1479), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1479), - [sym_super] = ACTIONS(1479), - [sym_crate] = ACTIONS(1479), - [sym_metavariable] = ACTIONS(1477), - [sym__raw_string_literal_start] = ACTIONS(1477), - [sym_float_literal] = ACTIONS(1477), + [sym_identifier] = ACTIONS(1520), + [anon_sym_LPAREN] = ACTIONS(1518), + [anon_sym_LBRACK] = ACTIONS(1518), + [anon_sym_RBRACE] = ACTIONS(1518), + [anon_sym_PLUS] = ACTIONS(1520), + [anon_sym_STAR] = ACTIONS(1520), + [anon_sym_QMARK] = ACTIONS(1518), + [anon_sym_u8] = ACTIONS(1520), + [anon_sym_i8] = ACTIONS(1520), + [anon_sym_u16] = ACTIONS(1520), + [anon_sym_i16] = ACTIONS(1520), + [anon_sym_u32] = ACTIONS(1520), + [anon_sym_i32] = ACTIONS(1520), + [anon_sym_u64] = ACTIONS(1520), + [anon_sym_i64] = ACTIONS(1520), + [anon_sym_u128] = ACTIONS(1520), + [anon_sym_i128] = ACTIONS(1520), + [anon_sym_isize] = ACTIONS(1520), + [anon_sym_usize] = ACTIONS(1520), + [anon_sym_f32] = ACTIONS(1520), + [anon_sym_f64] = ACTIONS(1520), + [anon_sym_bool] = ACTIONS(1520), + [anon_sym_str] = ACTIONS(1520), + [anon_sym_char] = ACTIONS(1520), + [anon_sym_DASH] = ACTIONS(1520), + [anon_sym_SLASH] = ACTIONS(1520), + [anon_sym_PERCENT] = ACTIONS(1520), + [anon_sym_CARET] = ACTIONS(1520), + [anon_sym_AMP] = ACTIONS(1520), + [anon_sym_PIPE] = ACTIONS(1520), + [anon_sym_AMP_AMP] = ACTIONS(1518), + [anon_sym_PIPE_PIPE] = ACTIONS(1518), + [anon_sym_LT_LT] = ACTIONS(1520), + [anon_sym_GT_GT] = ACTIONS(1520), + [anon_sym_PLUS_EQ] = ACTIONS(1518), + [anon_sym_DASH_EQ] = ACTIONS(1518), + [anon_sym_STAR_EQ] = ACTIONS(1518), + [anon_sym_SLASH_EQ] = ACTIONS(1518), + [anon_sym_PERCENT_EQ] = ACTIONS(1518), + [anon_sym_CARET_EQ] = ACTIONS(1518), + [anon_sym_AMP_EQ] = ACTIONS(1518), + [anon_sym_PIPE_EQ] = ACTIONS(1518), + [anon_sym_LT_LT_EQ] = ACTIONS(1518), + [anon_sym_GT_GT_EQ] = ACTIONS(1518), + [anon_sym_EQ] = ACTIONS(1520), + [anon_sym_EQ_EQ] = ACTIONS(1518), + [anon_sym_BANG_EQ] = ACTIONS(1518), + [anon_sym_GT] = ACTIONS(1520), + [anon_sym_LT] = ACTIONS(1520), + [anon_sym_GT_EQ] = ACTIONS(1518), + [anon_sym_LT_EQ] = ACTIONS(1518), + [anon_sym__] = ACTIONS(1520), + [anon_sym_DOT] = ACTIONS(1520), + [anon_sym_DOT_DOT] = ACTIONS(1520), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1518), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1518), + [anon_sym_COMMA] = ACTIONS(1518), + [anon_sym_COLON_COLON] = ACTIONS(1518), + [anon_sym_POUND] = ACTIONS(1518), + [anon_sym_as] = ACTIONS(1520), + [anon_sym_const] = ACTIONS(1520), + [anon_sym_default] = ACTIONS(1520), + [anon_sym_gen] = ACTIONS(1520), + [anon_sym_union] = ACTIONS(1520), + [anon_sym_ref] = ACTIONS(1520), + [sym_mutable_specifier] = ACTIONS(1520), + [sym_integer_literal] = ACTIONS(1518), + [aux_sym_string_literal_token1] = ACTIONS(1518), + [sym_char_literal] = ACTIONS(1518), + [anon_sym_true] = ACTIONS(1520), + [anon_sym_false] = ACTIONS(1520), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1520), + [sym_super] = ACTIONS(1520), + [sym_crate] = ACTIONS(1520), + [sym_metavariable] = ACTIONS(1518), + [sym__raw_string_literal_start] = ACTIONS(1518), + [sym_float_literal] = ACTIONS(1518), }, [STATE(477)] = { [sym_line_comment] = STATE(477), [sym_block_comment] = STATE(477), - [sym_identifier] = ACTIONS(1507), - [anon_sym_LPAREN] = ACTIONS(1505), - [anon_sym_LBRACK] = ACTIONS(1505), - [anon_sym_RBRACE] = ACTIONS(1505), - [anon_sym_PLUS] = ACTIONS(1507), - [anon_sym_STAR] = ACTIONS(1507), - [anon_sym_QMARK] = ACTIONS(1505), - [anon_sym_u8] = ACTIONS(1507), - [anon_sym_i8] = ACTIONS(1507), - [anon_sym_u16] = ACTIONS(1507), - [anon_sym_i16] = ACTIONS(1507), - [anon_sym_u32] = ACTIONS(1507), - [anon_sym_i32] = ACTIONS(1507), - [anon_sym_u64] = ACTIONS(1507), - [anon_sym_i64] = ACTIONS(1507), - [anon_sym_u128] = ACTIONS(1507), - [anon_sym_i128] = ACTIONS(1507), - [anon_sym_isize] = ACTIONS(1507), - [anon_sym_usize] = ACTIONS(1507), - [anon_sym_f32] = ACTIONS(1507), - [anon_sym_f64] = ACTIONS(1507), - [anon_sym_bool] = ACTIONS(1507), - [anon_sym_str] = ACTIONS(1507), - [anon_sym_char] = ACTIONS(1507), - [anon_sym_DASH] = ACTIONS(1507), - [anon_sym_SLASH] = ACTIONS(1507), - [anon_sym_PERCENT] = ACTIONS(1507), - [anon_sym_CARET] = ACTIONS(1507), - [anon_sym_AMP] = ACTIONS(1507), - [anon_sym_PIPE] = ACTIONS(1507), - [anon_sym_AMP_AMP] = ACTIONS(1505), - [anon_sym_PIPE_PIPE] = ACTIONS(1505), - [anon_sym_LT_LT] = ACTIONS(1507), - [anon_sym_GT_GT] = ACTIONS(1507), - [anon_sym_PLUS_EQ] = ACTIONS(1505), - [anon_sym_DASH_EQ] = ACTIONS(1505), - [anon_sym_STAR_EQ] = ACTIONS(1505), - [anon_sym_SLASH_EQ] = ACTIONS(1505), - [anon_sym_PERCENT_EQ] = ACTIONS(1505), - [anon_sym_CARET_EQ] = ACTIONS(1505), - [anon_sym_AMP_EQ] = ACTIONS(1505), - [anon_sym_PIPE_EQ] = ACTIONS(1505), - [anon_sym_LT_LT_EQ] = ACTIONS(1505), - [anon_sym_GT_GT_EQ] = ACTIONS(1505), - [anon_sym_EQ] = ACTIONS(1507), - [anon_sym_EQ_EQ] = ACTIONS(1505), - [anon_sym_BANG_EQ] = ACTIONS(1505), - [anon_sym_GT] = ACTIONS(1507), - [anon_sym_LT] = ACTIONS(1507), - [anon_sym_GT_EQ] = ACTIONS(1505), - [anon_sym_LT_EQ] = ACTIONS(1505), - [anon_sym__] = ACTIONS(1507), - [anon_sym_DOT] = ACTIONS(1507), - [anon_sym_DOT_DOT] = ACTIONS(1507), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1505), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1505), - [anon_sym_COMMA] = ACTIONS(1505), - [anon_sym_COLON_COLON] = ACTIONS(1505), - [anon_sym_POUND] = ACTIONS(1505), - [anon_sym_as] = ACTIONS(1507), - [anon_sym_const] = ACTIONS(1507), - [anon_sym_default] = ACTIONS(1507), - [anon_sym_gen] = ACTIONS(1507), - [anon_sym_union] = ACTIONS(1507), - [anon_sym_ref] = ACTIONS(1507), - [sym_mutable_specifier] = ACTIONS(1507), - [sym_integer_literal] = ACTIONS(1505), - [aux_sym_string_literal_token1] = ACTIONS(1505), - [sym_char_literal] = ACTIONS(1505), - [anon_sym_true] = ACTIONS(1507), - [anon_sym_false] = ACTIONS(1507), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1507), - [sym_super] = ACTIONS(1507), - [sym_crate] = ACTIONS(1507), - [sym_metavariable] = ACTIONS(1505), - [sym__raw_string_literal_start] = ACTIONS(1505), - [sym_float_literal] = ACTIONS(1505), + [sym_identifier] = ACTIONS(1504), + [anon_sym_LPAREN] = ACTIONS(1502), + [anon_sym_LBRACK] = ACTIONS(1502), + [anon_sym_RBRACE] = ACTIONS(1502), + [anon_sym_PLUS] = ACTIONS(1504), + [anon_sym_STAR] = ACTIONS(1504), + [anon_sym_QMARK] = ACTIONS(1502), + [anon_sym_u8] = ACTIONS(1504), + [anon_sym_i8] = ACTIONS(1504), + [anon_sym_u16] = ACTIONS(1504), + [anon_sym_i16] = ACTIONS(1504), + [anon_sym_u32] = ACTIONS(1504), + [anon_sym_i32] = ACTIONS(1504), + [anon_sym_u64] = ACTIONS(1504), + [anon_sym_i64] = ACTIONS(1504), + [anon_sym_u128] = ACTIONS(1504), + [anon_sym_i128] = ACTIONS(1504), + [anon_sym_isize] = ACTIONS(1504), + [anon_sym_usize] = ACTIONS(1504), + [anon_sym_f32] = ACTIONS(1504), + [anon_sym_f64] = ACTIONS(1504), + [anon_sym_bool] = ACTIONS(1504), + [anon_sym_str] = ACTIONS(1504), + [anon_sym_char] = ACTIONS(1504), + [anon_sym_DASH] = ACTIONS(1504), + [anon_sym_SLASH] = ACTIONS(1504), + [anon_sym_PERCENT] = ACTIONS(1504), + [anon_sym_CARET] = ACTIONS(1504), + [anon_sym_AMP] = ACTIONS(1504), + [anon_sym_PIPE] = ACTIONS(1504), + [anon_sym_AMP_AMP] = ACTIONS(1502), + [anon_sym_PIPE_PIPE] = ACTIONS(1502), + [anon_sym_LT_LT] = ACTIONS(1504), + [anon_sym_GT_GT] = ACTIONS(1504), + [anon_sym_PLUS_EQ] = ACTIONS(1502), + [anon_sym_DASH_EQ] = ACTIONS(1502), + [anon_sym_STAR_EQ] = ACTIONS(1502), + [anon_sym_SLASH_EQ] = ACTIONS(1502), + [anon_sym_PERCENT_EQ] = ACTIONS(1502), + [anon_sym_CARET_EQ] = ACTIONS(1502), + [anon_sym_AMP_EQ] = ACTIONS(1502), + [anon_sym_PIPE_EQ] = ACTIONS(1502), + [anon_sym_LT_LT_EQ] = ACTIONS(1502), + [anon_sym_GT_GT_EQ] = ACTIONS(1502), + [anon_sym_EQ] = ACTIONS(1504), + [anon_sym_EQ_EQ] = ACTIONS(1502), + [anon_sym_BANG_EQ] = ACTIONS(1502), + [anon_sym_GT] = ACTIONS(1504), + [anon_sym_LT] = ACTIONS(1504), + [anon_sym_GT_EQ] = ACTIONS(1502), + [anon_sym_LT_EQ] = ACTIONS(1502), + [anon_sym__] = ACTIONS(1504), + [anon_sym_DOT] = ACTIONS(1504), + [anon_sym_DOT_DOT] = ACTIONS(1504), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1502), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1502), + [anon_sym_COMMA] = ACTIONS(1502), + [anon_sym_COLON_COLON] = ACTIONS(1502), + [anon_sym_POUND] = ACTIONS(1502), + [anon_sym_as] = ACTIONS(1504), + [anon_sym_const] = ACTIONS(1504), + [anon_sym_default] = ACTIONS(1504), + [anon_sym_gen] = ACTIONS(1504), + [anon_sym_union] = ACTIONS(1504), + [anon_sym_ref] = ACTIONS(1504), + [sym_mutable_specifier] = ACTIONS(1504), + [sym_integer_literal] = ACTIONS(1502), + [aux_sym_string_literal_token1] = ACTIONS(1502), + [sym_char_literal] = ACTIONS(1502), + [anon_sym_true] = ACTIONS(1504), + [anon_sym_false] = ACTIONS(1504), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1504), + [sym_super] = ACTIONS(1504), + [sym_crate] = ACTIONS(1504), + [sym_metavariable] = ACTIONS(1502), + [sym__raw_string_literal_start] = ACTIONS(1502), + [sym_float_literal] = ACTIONS(1502), }, [STATE(478)] = { [sym_line_comment] = STATE(478), [sym_block_comment] = STATE(478), - [sym_identifier] = ACTIONS(1443), - [anon_sym_LPAREN] = ACTIONS(1441), - [anon_sym_LBRACK] = ACTIONS(1441), - [anon_sym_RBRACE] = ACTIONS(1441), - [anon_sym_PLUS] = ACTIONS(1443), - [anon_sym_STAR] = ACTIONS(1443), - [anon_sym_QMARK] = ACTIONS(1441), - [anon_sym_u8] = ACTIONS(1443), - [anon_sym_i8] = ACTIONS(1443), - [anon_sym_u16] = ACTIONS(1443), - [anon_sym_i16] = ACTIONS(1443), - [anon_sym_u32] = ACTIONS(1443), - [anon_sym_i32] = ACTIONS(1443), - [anon_sym_u64] = ACTIONS(1443), - [anon_sym_i64] = ACTIONS(1443), - [anon_sym_u128] = ACTIONS(1443), - [anon_sym_i128] = ACTIONS(1443), - [anon_sym_isize] = ACTIONS(1443), - [anon_sym_usize] = ACTIONS(1443), - [anon_sym_f32] = ACTIONS(1443), - [anon_sym_f64] = ACTIONS(1443), - [anon_sym_bool] = ACTIONS(1443), - [anon_sym_str] = ACTIONS(1443), - [anon_sym_char] = ACTIONS(1443), - [anon_sym_DASH] = ACTIONS(1443), - [anon_sym_SLASH] = ACTIONS(1443), - [anon_sym_PERCENT] = ACTIONS(1443), - [anon_sym_CARET] = ACTIONS(1443), - [anon_sym_AMP] = ACTIONS(1443), - [anon_sym_PIPE] = ACTIONS(1443), - [anon_sym_AMP_AMP] = ACTIONS(1441), - [anon_sym_PIPE_PIPE] = ACTIONS(1441), - [anon_sym_LT_LT] = ACTIONS(1443), - [anon_sym_GT_GT] = ACTIONS(1443), - [anon_sym_PLUS_EQ] = ACTIONS(1441), - [anon_sym_DASH_EQ] = ACTIONS(1441), - [anon_sym_STAR_EQ] = ACTIONS(1441), - [anon_sym_SLASH_EQ] = ACTIONS(1441), - [anon_sym_PERCENT_EQ] = ACTIONS(1441), - [anon_sym_CARET_EQ] = ACTIONS(1441), - [anon_sym_AMP_EQ] = ACTIONS(1441), - [anon_sym_PIPE_EQ] = ACTIONS(1441), - [anon_sym_LT_LT_EQ] = ACTIONS(1441), - [anon_sym_GT_GT_EQ] = ACTIONS(1441), - [anon_sym_EQ] = ACTIONS(1443), - [anon_sym_EQ_EQ] = ACTIONS(1441), - [anon_sym_BANG_EQ] = ACTIONS(1441), - [anon_sym_GT] = ACTIONS(1443), - [anon_sym_LT] = ACTIONS(1443), - [anon_sym_GT_EQ] = ACTIONS(1441), - [anon_sym_LT_EQ] = ACTIONS(1441), - [anon_sym__] = ACTIONS(1443), - [anon_sym_DOT] = ACTIONS(1443), - [anon_sym_DOT_DOT] = ACTIONS(1443), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1441), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1441), - [anon_sym_COMMA] = ACTIONS(1441), - [anon_sym_COLON_COLON] = ACTIONS(1441), - [anon_sym_POUND] = ACTIONS(1441), - [anon_sym_as] = ACTIONS(1443), - [anon_sym_const] = ACTIONS(1443), - [anon_sym_default] = ACTIONS(1443), - [anon_sym_gen] = ACTIONS(1443), - [anon_sym_union] = ACTIONS(1443), - [anon_sym_ref] = ACTIONS(1443), - [sym_mutable_specifier] = ACTIONS(1443), - [sym_integer_literal] = ACTIONS(1441), - [aux_sym_string_literal_token1] = ACTIONS(1441), - [sym_char_literal] = ACTIONS(1441), - [anon_sym_true] = ACTIONS(1443), - [anon_sym_false] = ACTIONS(1443), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1443), - [sym_super] = ACTIONS(1443), - [sym_crate] = ACTIONS(1443), - [sym_metavariable] = ACTIONS(1441), - [sym__raw_string_literal_start] = ACTIONS(1441), - [sym_float_literal] = ACTIONS(1441), + [sym_identifier] = ACTIONS(1704), + [anon_sym_LPAREN] = ACTIONS(1706), + [anon_sym_LBRACK] = ACTIONS(1706), + [anon_sym_RBRACE] = ACTIONS(1470), + [anon_sym_PLUS] = ACTIONS(1472), + [anon_sym_STAR] = ACTIONS(1472), + [anon_sym_QMARK] = ACTIONS(1470), + [anon_sym_u8] = ACTIONS(1704), + [anon_sym_i8] = ACTIONS(1704), + [anon_sym_u16] = ACTIONS(1704), + [anon_sym_i16] = ACTIONS(1704), + [anon_sym_u32] = ACTIONS(1704), + [anon_sym_i32] = ACTIONS(1704), + [anon_sym_u64] = ACTIONS(1704), + [anon_sym_i64] = ACTIONS(1704), + [anon_sym_u128] = ACTIONS(1704), + [anon_sym_i128] = ACTIONS(1704), + [anon_sym_isize] = ACTIONS(1704), + [anon_sym_usize] = ACTIONS(1704), + [anon_sym_f32] = ACTIONS(1704), + [anon_sym_f64] = ACTIONS(1704), + [anon_sym_bool] = ACTIONS(1704), + [anon_sym_str] = ACTIONS(1704), + [anon_sym_char] = ACTIONS(1704), + [anon_sym_DASH] = ACTIONS(1704), + [anon_sym_SLASH] = ACTIONS(1472), + [anon_sym_PERCENT] = ACTIONS(1472), + [anon_sym_CARET] = ACTIONS(1472), + [anon_sym_AMP] = ACTIONS(1704), + [anon_sym_PIPE] = ACTIONS(1704), + [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(1704), + [anon_sym_GT_EQ] = ACTIONS(1470), + [anon_sym_LT_EQ] = ACTIONS(1470), + [anon_sym__] = ACTIONS(1704), + [anon_sym_DOT] = ACTIONS(1472), + [anon_sym_DOT_DOT] = ACTIONS(1704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1470), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1706), + [anon_sym_COMMA] = ACTIONS(1470), + [anon_sym_COLON_COLON] = ACTIONS(1706), + [anon_sym_POUND] = ACTIONS(1706), + [anon_sym_as] = ACTIONS(1472), + [anon_sym_const] = ACTIONS(1704), + [anon_sym_default] = ACTIONS(1704), + [anon_sym_gen] = ACTIONS(1704), + [anon_sym_union] = ACTIONS(1704), + [anon_sym_ref] = ACTIONS(1704), + [sym_mutable_specifier] = ACTIONS(1704), + [sym_integer_literal] = ACTIONS(1706), + [aux_sym_string_literal_token1] = ACTIONS(1706), + [sym_char_literal] = ACTIONS(1706), + [anon_sym_true] = ACTIONS(1704), + [anon_sym_false] = ACTIONS(1704), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1704), + [sym_super] = ACTIONS(1704), + [sym_crate] = ACTIONS(1704), + [sym_metavariable] = ACTIONS(1706), + [sym__raw_string_literal_start] = ACTIONS(1706), + [sym_float_literal] = ACTIONS(1706), }, [STATE(479)] = { [sym_line_comment] = STATE(479), [sym_block_comment] = STATE(479), - [sym_identifier] = ACTIONS(1423), - [anon_sym_LPAREN] = ACTIONS(1421), - [anon_sym_LBRACK] = ACTIONS(1421), - [anon_sym_RBRACE] = ACTIONS(1421), - [anon_sym_PLUS] = ACTIONS(1423), - [anon_sym_STAR] = ACTIONS(1423), - [anon_sym_QMARK] = ACTIONS(1421), - [anon_sym_u8] = ACTIONS(1423), - [anon_sym_i8] = ACTIONS(1423), - [anon_sym_u16] = ACTIONS(1423), - [anon_sym_i16] = ACTIONS(1423), - [anon_sym_u32] = ACTIONS(1423), - [anon_sym_i32] = ACTIONS(1423), - [anon_sym_u64] = ACTIONS(1423), - [anon_sym_i64] = ACTIONS(1423), - [anon_sym_u128] = ACTIONS(1423), - [anon_sym_i128] = ACTIONS(1423), - [anon_sym_isize] = ACTIONS(1423), - [anon_sym_usize] = ACTIONS(1423), - [anon_sym_f32] = ACTIONS(1423), - [anon_sym_f64] = ACTIONS(1423), - [anon_sym_bool] = ACTIONS(1423), - [anon_sym_str] = ACTIONS(1423), - [anon_sym_char] = ACTIONS(1423), - [anon_sym_DASH] = ACTIONS(1423), - [anon_sym_SLASH] = ACTIONS(1423), - [anon_sym_PERCENT] = ACTIONS(1423), - [anon_sym_CARET] = ACTIONS(1423), - [anon_sym_AMP] = ACTIONS(1423), - [anon_sym_PIPE] = ACTIONS(1423), - [anon_sym_AMP_AMP] = ACTIONS(1421), - [anon_sym_PIPE_PIPE] = ACTIONS(1421), - [anon_sym_LT_LT] = ACTIONS(1423), - [anon_sym_GT_GT] = ACTIONS(1423), - [anon_sym_PLUS_EQ] = ACTIONS(1421), - [anon_sym_DASH_EQ] = ACTIONS(1421), - [anon_sym_STAR_EQ] = ACTIONS(1421), - [anon_sym_SLASH_EQ] = ACTIONS(1421), - [anon_sym_PERCENT_EQ] = ACTIONS(1421), - [anon_sym_CARET_EQ] = ACTIONS(1421), - [anon_sym_AMP_EQ] = ACTIONS(1421), - [anon_sym_PIPE_EQ] = ACTIONS(1421), - [anon_sym_LT_LT_EQ] = ACTIONS(1421), - [anon_sym_GT_GT_EQ] = ACTIONS(1421), - [anon_sym_EQ] = ACTIONS(1423), - [anon_sym_EQ_EQ] = ACTIONS(1421), - [anon_sym_BANG_EQ] = ACTIONS(1421), - [anon_sym_GT] = ACTIONS(1423), - [anon_sym_LT] = ACTIONS(1423), - [anon_sym_GT_EQ] = ACTIONS(1421), - [anon_sym_LT_EQ] = ACTIONS(1421), - [anon_sym__] = ACTIONS(1423), - [anon_sym_DOT] = ACTIONS(1423), - [anon_sym_DOT_DOT] = ACTIONS(1423), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1421), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1421), - [anon_sym_COMMA] = ACTIONS(1421), - [anon_sym_COLON_COLON] = ACTIONS(1421), - [anon_sym_POUND] = ACTIONS(1421), - [anon_sym_as] = ACTIONS(1423), - [anon_sym_const] = ACTIONS(1423), - [anon_sym_default] = ACTIONS(1423), - [anon_sym_gen] = ACTIONS(1423), - [anon_sym_union] = ACTIONS(1423), - [anon_sym_ref] = ACTIONS(1423), - [sym_mutable_specifier] = ACTIONS(1423), - [sym_integer_literal] = ACTIONS(1421), - [aux_sym_string_literal_token1] = ACTIONS(1421), - [sym_char_literal] = ACTIONS(1421), - [anon_sym_true] = ACTIONS(1423), - [anon_sym_false] = ACTIONS(1423), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1423), - [sym_super] = ACTIONS(1423), - [sym_crate] = ACTIONS(1423), - [sym_metavariable] = ACTIONS(1421), - [sym__raw_string_literal_start] = ACTIONS(1421), - [sym_float_literal] = ACTIONS(1421), + [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), + [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), }, [STATE(480)] = { [sym_line_comment] = STATE(480), [sym_block_comment] = STATE(480), - [sym_identifier] = ACTIONS(1772), - [anon_sym_LPAREN] = ACTIONS(1774), - [anon_sym_LBRACK] = ACTIONS(1774), - [anon_sym_RBRACE] = ACTIONS(1431), - [anon_sym_PLUS] = ACTIONS(1429), - [anon_sym_STAR] = ACTIONS(1429), - [anon_sym_QMARK] = ACTIONS(1431), - [anon_sym_u8] = ACTIONS(1772), - [anon_sym_i8] = ACTIONS(1772), - [anon_sym_u16] = ACTIONS(1772), - [anon_sym_i16] = ACTIONS(1772), - [anon_sym_u32] = ACTIONS(1772), - [anon_sym_i32] = ACTIONS(1772), - [anon_sym_u64] = ACTIONS(1772), - [anon_sym_i64] = ACTIONS(1772), - [anon_sym_u128] = ACTIONS(1772), - [anon_sym_i128] = ACTIONS(1772), - [anon_sym_isize] = ACTIONS(1772), - [anon_sym_usize] = ACTIONS(1772), - [anon_sym_f32] = ACTIONS(1772), - [anon_sym_f64] = ACTIONS(1772), - [anon_sym_bool] = ACTIONS(1772), - [anon_sym_str] = ACTIONS(1772), - [anon_sym_char] = ACTIONS(1772), - [anon_sym_DASH] = ACTIONS(1772), - [anon_sym_SLASH] = ACTIONS(1429), - [anon_sym_PERCENT] = ACTIONS(1429), - [anon_sym_CARET] = ACTIONS(1429), - [anon_sym_AMP] = ACTIONS(1772), - [anon_sym_PIPE] = ACTIONS(1772), - [anon_sym_AMP_AMP] = ACTIONS(1431), - [anon_sym_PIPE_PIPE] = ACTIONS(1431), - [anon_sym_LT_LT] = ACTIONS(1429), - [anon_sym_GT_GT] = ACTIONS(1429), - [anon_sym_PLUS_EQ] = ACTIONS(1431), - [anon_sym_DASH_EQ] = ACTIONS(1431), - [anon_sym_STAR_EQ] = ACTIONS(1431), - [anon_sym_SLASH_EQ] = ACTIONS(1431), - [anon_sym_PERCENT_EQ] = ACTIONS(1431), - [anon_sym_CARET_EQ] = ACTIONS(1431), - [anon_sym_AMP_EQ] = ACTIONS(1431), - [anon_sym_PIPE_EQ] = ACTIONS(1431), - [anon_sym_LT_LT_EQ] = ACTIONS(1431), - [anon_sym_GT_GT_EQ] = ACTIONS(1431), - [anon_sym_EQ] = ACTIONS(1429), - [anon_sym_EQ_EQ] = ACTIONS(1431), - [anon_sym_BANG_EQ] = ACTIONS(1431), - [anon_sym_GT] = ACTIONS(1429), - [anon_sym_LT] = ACTIONS(1772), - [anon_sym_GT_EQ] = ACTIONS(1431), - [anon_sym_LT_EQ] = ACTIONS(1431), - [anon_sym__] = ACTIONS(1772), - [anon_sym_DOT] = ACTIONS(1429), - [anon_sym_DOT_DOT] = ACTIONS(1772), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1431), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1774), - [anon_sym_COMMA] = ACTIONS(1431), - [anon_sym_COLON_COLON] = ACTIONS(1774), - [anon_sym_POUND] = ACTIONS(1774), - [anon_sym_as] = ACTIONS(1429), - [anon_sym_const] = ACTIONS(1772), - [anon_sym_default] = ACTIONS(1772), - [anon_sym_gen] = ACTIONS(1772), - [anon_sym_union] = ACTIONS(1772), - [anon_sym_ref] = ACTIONS(1772), - [sym_mutable_specifier] = ACTIONS(1772), - [sym_integer_literal] = ACTIONS(1774), - [aux_sym_string_literal_token1] = ACTIONS(1774), - [sym_char_literal] = ACTIONS(1774), - [anon_sym_true] = ACTIONS(1772), - [anon_sym_false] = ACTIONS(1772), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1772), - [sym_super] = ACTIONS(1772), - [sym_crate] = ACTIONS(1772), - [sym_metavariable] = ACTIONS(1774), - [sym__raw_string_literal_start] = ACTIONS(1774), - [sym_float_literal] = ACTIONS(1774), + [sym_identifier] = ACTIONS(1442), + [anon_sym_LPAREN] = ACTIONS(1440), + [anon_sym_LBRACK] = ACTIONS(1440), + [anon_sym_RBRACE] = ACTIONS(1440), + [anon_sym_PLUS] = ACTIONS(1442), + [anon_sym_STAR] = ACTIONS(1442), + [anon_sym_QMARK] = ACTIONS(1440), + [anon_sym_u8] = ACTIONS(1442), + [anon_sym_i8] = ACTIONS(1442), + [anon_sym_u16] = ACTIONS(1442), + [anon_sym_i16] = ACTIONS(1442), + [anon_sym_u32] = ACTIONS(1442), + [anon_sym_i32] = ACTIONS(1442), + [anon_sym_u64] = ACTIONS(1442), + [anon_sym_i64] = ACTIONS(1442), + [anon_sym_u128] = ACTIONS(1442), + [anon_sym_i128] = ACTIONS(1442), + [anon_sym_isize] = ACTIONS(1442), + [anon_sym_usize] = ACTIONS(1442), + [anon_sym_f32] = ACTIONS(1442), + [anon_sym_f64] = ACTIONS(1442), + [anon_sym_bool] = ACTIONS(1442), + [anon_sym_str] = ACTIONS(1442), + [anon_sym_char] = ACTIONS(1442), + [anon_sym_DASH] = ACTIONS(1442), + [anon_sym_SLASH] = ACTIONS(1442), + [anon_sym_PERCENT] = ACTIONS(1442), + [anon_sym_CARET] = ACTIONS(1442), + [anon_sym_AMP] = ACTIONS(1442), + [anon_sym_PIPE] = ACTIONS(1442), + [anon_sym_AMP_AMP] = ACTIONS(1440), + [anon_sym_PIPE_PIPE] = ACTIONS(1440), + [anon_sym_LT_LT] = ACTIONS(1442), + [anon_sym_GT_GT] = ACTIONS(1442), + [anon_sym_PLUS_EQ] = ACTIONS(1440), + [anon_sym_DASH_EQ] = ACTIONS(1440), + [anon_sym_STAR_EQ] = ACTIONS(1440), + [anon_sym_SLASH_EQ] = ACTIONS(1440), + [anon_sym_PERCENT_EQ] = ACTIONS(1440), + [anon_sym_CARET_EQ] = ACTIONS(1440), + [anon_sym_AMP_EQ] = ACTIONS(1440), + [anon_sym_PIPE_EQ] = ACTIONS(1440), + [anon_sym_LT_LT_EQ] = ACTIONS(1440), + [anon_sym_GT_GT_EQ] = ACTIONS(1440), + [anon_sym_EQ] = ACTIONS(1442), + [anon_sym_EQ_EQ] = ACTIONS(1440), + [anon_sym_BANG_EQ] = ACTIONS(1440), + [anon_sym_GT] = ACTIONS(1442), + [anon_sym_LT] = ACTIONS(1442), + [anon_sym_GT_EQ] = ACTIONS(1440), + [anon_sym_LT_EQ] = ACTIONS(1440), + [anon_sym__] = ACTIONS(1442), + [anon_sym_DOT] = ACTIONS(1442), + [anon_sym_DOT_DOT] = ACTIONS(1442), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1440), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1440), + [anon_sym_COMMA] = ACTIONS(1440), + [anon_sym_COLON_COLON] = ACTIONS(1440), + [anon_sym_POUND] = ACTIONS(1440), + [anon_sym_as] = ACTIONS(1442), + [anon_sym_const] = ACTIONS(1442), + [anon_sym_default] = ACTIONS(1442), + [anon_sym_gen] = ACTIONS(1442), + [anon_sym_union] = ACTIONS(1442), + [anon_sym_ref] = ACTIONS(1442), + [sym_mutable_specifier] = ACTIONS(1442), + [sym_integer_literal] = ACTIONS(1440), + [aux_sym_string_literal_token1] = ACTIONS(1440), + [sym_char_literal] = ACTIONS(1440), + [anon_sym_true] = ACTIONS(1442), + [anon_sym_false] = ACTIONS(1442), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1442), + [sym_super] = ACTIONS(1442), + [sym_crate] = ACTIONS(1442), + [sym_metavariable] = ACTIONS(1440), + [sym__raw_string_literal_start] = ACTIONS(1440), + [sym_float_literal] = ACTIONS(1440), }, [STATE(481)] = { [sym_line_comment] = STATE(481), [sym_block_comment] = STATE(481), - [sym_identifier] = ACTIONS(1527), - [anon_sym_LPAREN] = ACTIONS(1525), - [anon_sym_LBRACK] = ACTIONS(1525), - [anon_sym_RBRACE] = ACTIONS(1525), - [anon_sym_PLUS] = ACTIONS(1527), - [anon_sym_STAR] = ACTIONS(1527), - [anon_sym_QMARK] = ACTIONS(1525), - [anon_sym_u8] = ACTIONS(1527), - [anon_sym_i8] = ACTIONS(1527), - [anon_sym_u16] = ACTIONS(1527), - [anon_sym_i16] = ACTIONS(1527), - [anon_sym_u32] = ACTIONS(1527), - [anon_sym_i32] = ACTIONS(1527), - [anon_sym_u64] = ACTIONS(1527), - [anon_sym_i64] = ACTIONS(1527), - [anon_sym_u128] = ACTIONS(1527), - [anon_sym_i128] = ACTIONS(1527), - [anon_sym_isize] = ACTIONS(1527), - [anon_sym_usize] = ACTIONS(1527), - [anon_sym_f32] = ACTIONS(1527), - [anon_sym_f64] = ACTIONS(1527), - [anon_sym_bool] = ACTIONS(1527), - [anon_sym_str] = ACTIONS(1527), - [anon_sym_char] = ACTIONS(1527), - [anon_sym_DASH] = ACTIONS(1527), - [anon_sym_SLASH] = ACTIONS(1527), - [anon_sym_PERCENT] = ACTIONS(1527), - [anon_sym_CARET] = ACTIONS(1527), - [anon_sym_AMP] = ACTIONS(1527), - [anon_sym_PIPE] = ACTIONS(1527), - [anon_sym_AMP_AMP] = ACTIONS(1525), - [anon_sym_PIPE_PIPE] = ACTIONS(1525), - [anon_sym_LT_LT] = ACTIONS(1527), - [anon_sym_GT_GT] = ACTIONS(1527), - [anon_sym_PLUS_EQ] = ACTIONS(1525), - [anon_sym_DASH_EQ] = ACTIONS(1525), - [anon_sym_STAR_EQ] = ACTIONS(1525), - [anon_sym_SLASH_EQ] = ACTIONS(1525), - [anon_sym_PERCENT_EQ] = ACTIONS(1525), - [anon_sym_CARET_EQ] = ACTIONS(1525), - [anon_sym_AMP_EQ] = ACTIONS(1525), - [anon_sym_PIPE_EQ] = ACTIONS(1525), - [anon_sym_LT_LT_EQ] = ACTIONS(1525), - [anon_sym_GT_GT_EQ] = ACTIONS(1525), - [anon_sym_EQ] = ACTIONS(1527), - [anon_sym_EQ_EQ] = ACTIONS(1525), - [anon_sym_BANG_EQ] = ACTIONS(1525), - [anon_sym_GT] = ACTIONS(1527), - [anon_sym_LT] = ACTIONS(1527), - [anon_sym_GT_EQ] = ACTIONS(1525), - [anon_sym_LT_EQ] = ACTIONS(1525), - [anon_sym__] = ACTIONS(1527), - [anon_sym_DOT] = ACTIONS(1527), - [anon_sym_DOT_DOT] = ACTIONS(1527), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1525), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1525), - [anon_sym_COMMA] = ACTIONS(1525), - [anon_sym_COLON_COLON] = ACTIONS(1525), - [anon_sym_POUND] = ACTIONS(1525), - [anon_sym_as] = ACTIONS(1527), - [anon_sym_const] = ACTIONS(1527), - [anon_sym_default] = ACTIONS(1527), - [anon_sym_gen] = ACTIONS(1527), - [anon_sym_union] = ACTIONS(1527), - [anon_sym_ref] = ACTIONS(1527), - [sym_mutable_specifier] = ACTIONS(1527), - [sym_integer_literal] = ACTIONS(1525), - [aux_sym_string_literal_token1] = ACTIONS(1525), - [sym_char_literal] = ACTIONS(1525), - [anon_sym_true] = ACTIONS(1527), - [anon_sym_false] = ACTIONS(1527), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1527), - [sym_super] = ACTIONS(1527), - [sym_crate] = ACTIONS(1527), - [sym_metavariable] = ACTIONS(1525), - [sym__raw_string_literal_start] = ACTIONS(1525), - [sym_float_literal] = ACTIONS(1525), + [sym_identifier] = ACTIONS(1708), + [anon_sym_LPAREN] = ACTIONS(1710), + [anon_sym_LBRACK] = ACTIONS(1710), + [anon_sym_RBRACE] = ACTIONS(1470), + [anon_sym_PLUS] = ACTIONS(1472), + [anon_sym_STAR] = ACTIONS(1472), + [anon_sym_QMARK] = ACTIONS(1470), + [anon_sym_u8] = ACTIONS(1708), + [anon_sym_i8] = ACTIONS(1708), + [anon_sym_u16] = ACTIONS(1708), + [anon_sym_i16] = ACTIONS(1708), + [anon_sym_u32] = ACTIONS(1708), + [anon_sym_i32] = ACTIONS(1708), + [anon_sym_u64] = ACTIONS(1708), + [anon_sym_i64] = ACTIONS(1708), + [anon_sym_u128] = ACTIONS(1708), + [anon_sym_i128] = ACTIONS(1708), + [anon_sym_isize] = ACTIONS(1708), + [anon_sym_usize] = ACTIONS(1708), + [anon_sym_f32] = ACTIONS(1708), + [anon_sym_f64] = ACTIONS(1708), + [anon_sym_bool] = ACTIONS(1708), + [anon_sym_str] = ACTIONS(1708), + [anon_sym_char] = ACTIONS(1708), + [anon_sym_DASH] = ACTIONS(1708), + [anon_sym_SLASH] = ACTIONS(1472), + [anon_sym_PERCENT] = ACTIONS(1472), + [anon_sym_CARET] = ACTIONS(1472), + [anon_sym_AMP] = ACTIONS(1708), + [anon_sym_PIPE] = ACTIONS(1708), + [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(1708), + [anon_sym_GT_EQ] = ACTIONS(1470), + [anon_sym_LT_EQ] = ACTIONS(1470), + [anon_sym__] = ACTIONS(1708), + [anon_sym_DOT] = ACTIONS(1472), + [anon_sym_DOT_DOT] = ACTIONS(1708), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1470), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1710), + [anon_sym_COMMA] = ACTIONS(1470), + [anon_sym_COLON_COLON] = ACTIONS(1710), + [anon_sym_POUND] = ACTIONS(1710), + [anon_sym_as] = ACTIONS(1472), + [anon_sym_const] = ACTIONS(1708), + [anon_sym_default] = ACTIONS(1708), + [anon_sym_gen] = ACTIONS(1708), + [anon_sym_union] = ACTIONS(1708), + [anon_sym_ref] = ACTIONS(1708), + [sym_mutable_specifier] = ACTIONS(1708), + [sym_integer_literal] = ACTIONS(1710), + [aux_sym_string_literal_token1] = ACTIONS(1710), + [sym_char_literal] = ACTIONS(1710), + [anon_sym_true] = ACTIONS(1708), + [anon_sym_false] = ACTIONS(1708), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1708), + [sym_super] = ACTIONS(1708), + [sym_crate] = ACTIONS(1708), + [sym_metavariable] = ACTIONS(1710), + [sym__raw_string_literal_start] = ACTIONS(1710), + [sym_float_literal] = ACTIONS(1710), }, [STATE(482)] = { [sym_line_comment] = STATE(482), [sym_block_comment] = STATE(482), - [sym_identifier] = ACTIONS(1523), - [anon_sym_LPAREN] = ACTIONS(1521), - [anon_sym_LBRACK] = ACTIONS(1521), - [anon_sym_RBRACE] = ACTIONS(1521), - [anon_sym_PLUS] = ACTIONS(1523), - [anon_sym_STAR] = ACTIONS(1523), - [anon_sym_QMARK] = ACTIONS(1521), - [anon_sym_u8] = ACTIONS(1523), - [anon_sym_i8] = ACTIONS(1523), - [anon_sym_u16] = ACTIONS(1523), - [anon_sym_i16] = ACTIONS(1523), - [anon_sym_u32] = ACTIONS(1523), - [anon_sym_i32] = ACTIONS(1523), - [anon_sym_u64] = ACTIONS(1523), - [anon_sym_i64] = ACTIONS(1523), - [anon_sym_u128] = ACTIONS(1523), - [anon_sym_i128] = ACTIONS(1523), - [anon_sym_isize] = ACTIONS(1523), - [anon_sym_usize] = ACTIONS(1523), - [anon_sym_f32] = ACTIONS(1523), - [anon_sym_f64] = ACTIONS(1523), - [anon_sym_bool] = ACTIONS(1523), - [anon_sym_str] = ACTIONS(1523), - [anon_sym_char] = ACTIONS(1523), - [anon_sym_DASH] = ACTIONS(1523), - [anon_sym_SLASH] = ACTIONS(1523), - [anon_sym_PERCENT] = ACTIONS(1523), - [anon_sym_CARET] = ACTIONS(1523), - [anon_sym_AMP] = ACTIONS(1523), - [anon_sym_PIPE] = ACTIONS(1523), - [anon_sym_AMP_AMP] = ACTIONS(1521), - [anon_sym_PIPE_PIPE] = ACTIONS(1521), - [anon_sym_LT_LT] = ACTIONS(1523), - [anon_sym_GT_GT] = ACTIONS(1523), - [anon_sym_PLUS_EQ] = ACTIONS(1521), - [anon_sym_DASH_EQ] = ACTIONS(1521), - [anon_sym_STAR_EQ] = ACTIONS(1521), - [anon_sym_SLASH_EQ] = ACTIONS(1521), - [anon_sym_PERCENT_EQ] = ACTIONS(1521), - [anon_sym_CARET_EQ] = ACTIONS(1521), - [anon_sym_AMP_EQ] = ACTIONS(1521), - [anon_sym_PIPE_EQ] = ACTIONS(1521), - [anon_sym_LT_LT_EQ] = ACTIONS(1521), - [anon_sym_GT_GT_EQ] = ACTIONS(1521), - [anon_sym_EQ] = ACTIONS(1523), - [anon_sym_EQ_EQ] = ACTIONS(1521), - [anon_sym_BANG_EQ] = ACTIONS(1521), - [anon_sym_GT] = ACTIONS(1523), - [anon_sym_LT] = ACTIONS(1523), - [anon_sym_GT_EQ] = ACTIONS(1521), - [anon_sym_LT_EQ] = ACTIONS(1521), - [anon_sym__] = ACTIONS(1523), - [anon_sym_DOT] = ACTIONS(1523), - [anon_sym_DOT_DOT] = ACTIONS(1523), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1521), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1521), - [anon_sym_COMMA] = ACTIONS(1521), - [anon_sym_COLON_COLON] = ACTIONS(1521), - [anon_sym_POUND] = ACTIONS(1521), - [anon_sym_as] = ACTIONS(1523), - [anon_sym_const] = ACTIONS(1523), - [anon_sym_default] = ACTIONS(1523), - [anon_sym_gen] = ACTIONS(1523), - [anon_sym_union] = ACTIONS(1523), - [anon_sym_ref] = ACTIONS(1523), - [sym_mutable_specifier] = ACTIONS(1523), - [sym_integer_literal] = ACTIONS(1521), - [aux_sym_string_literal_token1] = ACTIONS(1521), - [sym_char_literal] = ACTIONS(1521), - [anon_sym_true] = ACTIONS(1523), - [anon_sym_false] = ACTIONS(1523), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1523), - [sym_super] = ACTIONS(1523), - [sym_crate] = ACTIONS(1523), - [sym_metavariable] = ACTIONS(1521), - [sym__raw_string_literal_start] = ACTIONS(1521), - [sym_float_literal] = ACTIONS(1521), + [sym_identifier] = ACTIONS(1492), + [anon_sym_LPAREN] = ACTIONS(1490), + [anon_sym_LBRACK] = ACTIONS(1490), + [anon_sym_RBRACE] = ACTIONS(1490), + [anon_sym_PLUS] = ACTIONS(1492), + [anon_sym_STAR] = ACTIONS(1492), + [anon_sym_QMARK] = ACTIONS(1490), + [anon_sym_u8] = ACTIONS(1492), + [anon_sym_i8] = ACTIONS(1492), + [anon_sym_u16] = ACTIONS(1492), + [anon_sym_i16] = ACTIONS(1492), + [anon_sym_u32] = ACTIONS(1492), + [anon_sym_i32] = ACTIONS(1492), + [anon_sym_u64] = ACTIONS(1492), + [anon_sym_i64] = ACTIONS(1492), + [anon_sym_u128] = ACTIONS(1492), + [anon_sym_i128] = ACTIONS(1492), + [anon_sym_isize] = ACTIONS(1492), + [anon_sym_usize] = ACTIONS(1492), + [anon_sym_f32] = ACTIONS(1492), + [anon_sym_f64] = ACTIONS(1492), + [anon_sym_bool] = ACTIONS(1492), + [anon_sym_str] = ACTIONS(1492), + [anon_sym_char] = ACTIONS(1492), + [anon_sym_DASH] = ACTIONS(1492), + [anon_sym_SLASH] = ACTIONS(1492), + [anon_sym_PERCENT] = ACTIONS(1492), + [anon_sym_CARET] = ACTIONS(1492), + [anon_sym_AMP] = ACTIONS(1492), + [anon_sym_PIPE] = ACTIONS(1492), + [anon_sym_AMP_AMP] = ACTIONS(1490), + [anon_sym_PIPE_PIPE] = ACTIONS(1490), + [anon_sym_LT_LT] = ACTIONS(1492), + [anon_sym_GT_GT] = ACTIONS(1492), + [anon_sym_PLUS_EQ] = ACTIONS(1490), + [anon_sym_DASH_EQ] = ACTIONS(1490), + [anon_sym_STAR_EQ] = ACTIONS(1490), + [anon_sym_SLASH_EQ] = ACTIONS(1490), + [anon_sym_PERCENT_EQ] = ACTIONS(1490), + [anon_sym_CARET_EQ] = ACTIONS(1490), + [anon_sym_AMP_EQ] = ACTIONS(1490), + [anon_sym_PIPE_EQ] = ACTIONS(1490), + [anon_sym_LT_LT_EQ] = ACTIONS(1490), + [anon_sym_GT_GT_EQ] = ACTIONS(1490), + [anon_sym_EQ] = ACTIONS(1492), + [anon_sym_EQ_EQ] = ACTIONS(1490), + [anon_sym_BANG_EQ] = ACTIONS(1490), + [anon_sym_GT] = ACTIONS(1492), + [anon_sym_LT] = ACTIONS(1492), + [anon_sym_GT_EQ] = ACTIONS(1490), + [anon_sym_LT_EQ] = ACTIONS(1490), + [anon_sym__] = ACTIONS(1492), + [anon_sym_DOT] = ACTIONS(1492), + [anon_sym_DOT_DOT] = ACTIONS(1492), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1490), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1490), + [anon_sym_COMMA] = ACTIONS(1490), + [anon_sym_COLON_COLON] = ACTIONS(1490), + [anon_sym_POUND] = ACTIONS(1490), + [anon_sym_as] = ACTIONS(1492), + [anon_sym_const] = ACTIONS(1492), + [anon_sym_default] = ACTIONS(1492), + [anon_sym_gen] = ACTIONS(1492), + [anon_sym_union] = ACTIONS(1492), + [anon_sym_ref] = ACTIONS(1492), + [sym_mutable_specifier] = ACTIONS(1492), + [sym_integer_literal] = ACTIONS(1490), + [aux_sym_string_literal_token1] = ACTIONS(1490), + [sym_char_literal] = ACTIONS(1490), + [anon_sym_true] = ACTIONS(1492), + [anon_sym_false] = ACTIONS(1492), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1492), + [sym_super] = ACTIONS(1492), + [sym_crate] = ACTIONS(1492), + [sym_metavariable] = ACTIONS(1490), + [sym__raw_string_literal_start] = ACTIONS(1490), + [sym_float_literal] = ACTIONS(1490), }, [STATE(483)] = { [sym_line_comment] = STATE(483), [sym_block_comment] = STATE(483), - [sym_identifier] = ACTIONS(1483), - [anon_sym_LPAREN] = ACTIONS(1481), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_RBRACE] = ACTIONS(1481), - [anon_sym_PLUS] = ACTIONS(1483), - [anon_sym_STAR] = ACTIONS(1483), - [anon_sym_QMARK] = ACTIONS(1481), - [anon_sym_u8] = ACTIONS(1483), - [anon_sym_i8] = ACTIONS(1483), - [anon_sym_u16] = ACTIONS(1483), - [anon_sym_i16] = ACTIONS(1483), - [anon_sym_u32] = ACTIONS(1483), - [anon_sym_i32] = ACTIONS(1483), - [anon_sym_u64] = ACTIONS(1483), - [anon_sym_i64] = ACTIONS(1483), - [anon_sym_u128] = ACTIONS(1483), - [anon_sym_i128] = ACTIONS(1483), - [anon_sym_isize] = ACTIONS(1483), - [anon_sym_usize] = ACTIONS(1483), - [anon_sym_f32] = ACTIONS(1483), - [anon_sym_f64] = ACTIONS(1483), - [anon_sym_bool] = ACTIONS(1483), - [anon_sym_str] = ACTIONS(1483), - [anon_sym_char] = ACTIONS(1483), - [anon_sym_DASH] = ACTIONS(1483), - [anon_sym_SLASH] = ACTIONS(1483), - [anon_sym_PERCENT] = ACTIONS(1483), - [anon_sym_CARET] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1483), - [anon_sym_PIPE] = ACTIONS(1483), - [anon_sym_AMP_AMP] = ACTIONS(1481), - [anon_sym_PIPE_PIPE] = ACTIONS(1481), - [anon_sym_LT_LT] = ACTIONS(1483), - [anon_sym_GT_GT] = ACTIONS(1483), - [anon_sym_PLUS_EQ] = ACTIONS(1481), - [anon_sym_DASH_EQ] = ACTIONS(1481), - [anon_sym_STAR_EQ] = ACTIONS(1481), - [anon_sym_SLASH_EQ] = ACTIONS(1481), - [anon_sym_PERCENT_EQ] = ACTIONS(1481), - [anon_sym_CARET_EQ] = ACTIONS(1481), - [anon_sym_AMP_EQ] = ACTIONS(1481), - [anon_sym_PIPE_EQ] = ACTIONS(1481), - [anon_sym_LT_LT_EQ] = ACTIONS(1481), - [anon_sym_GT_GT_EQ] = ACTIONS(1481), - [anon_sym_EQ] = ACTIONS(1483), - [anon_sym_EQ_EQ] = ACTIONS(1481), - [anon_sym_BANG_EQ] = ACTIONS(1481), - [anon_sym_GT] = ACTIONS(1483), - [anon_sym_LT] = ACTIONS(1483), - [anon_sym_GT_EQ] = ACTIONS(1481), - [anon_sym_LT_EQ] = ACTIONS(1481), - [anon_sym__] = ACTIONS(1483), - [anon_sym_DOT] = ACTIONS(1483), - [anon_sym_DOT_DOT] = ACTIONS(1483), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1481), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1481), - [anon_sym_COMMA] = ACTIONS(1481), - [anon_sym_COLON_COLON] = ACTIONS(1481), - [anon_sym_POUND] = ACTIONS(1481), - [anon_sym_as] = ACTIONS(1483), - [anon_sym_const] = ACTIONS(1483), - [anon_sym_default] = ACTIONS(1483), - [anon_sym_gen] = ACTIONS(1483), - [anon_sym_union] = ACTIONS(1483), - [anon_sym_ref] = ACTIONS(1483), - [sym_mutable_specifier] = ACTIONS(1483), - [sym_integer_literal] = ACTIONS(1481), - [aux_sym_string_literal_token1] = ACTIONS(1481), - [sym_char_literal] = ACTIONS(1481), - [anon_sym_true] = ACTIONS(1483), - [anon_sym_false] = ACTIONS(1483), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1483), - [sym_super] = ACTIONS(1483), - [sym_crate] = ACTIONS(1483), - [sym_metavariable] = ACTIONS(1481), - [sym__raw_string_literal_start] = ACTIONS(1481), - [sym_float_literal] = ACTIONS(1481), + [sym_identifier] = ACTIONS(1496), + [anon_sym_LPAREN] = ACTIONS(1494), + [anon_sym_LBRACK] = ACTIONS(1494), + [anon_sym_RBRACE] = ACTIONS(1494), + [anon_sym_PLUS] = ACTIONS(1496), + [anon_sym_STAR] = ACTIONS(1496), + [anon_sym_QMARK] = ACTIONS(1494), + [anon_sym_u8] = ACTIONS(1496), + [anon_sym_i8] = ACTIONS(1496), + [anon_sym_u16] = ACTIONS(1496), + [anon_sym_i16] = ACTIONS(1496), + [anon_sym_u32] = ACTIONS(1496), + [anon_sym_i32] = ACTIONS(1496), + [anon_sym_u64] = ACTIONS(1496), + [anon_sym_i64] = ACTIONS(1496), + [anon_sym_u128] = ACTIONS(1496), + [anon_sym_i128] = ACTIONS(1496), + [anon_sym_isize] = ACTIONS(1496), + [anon_sym_usize] = ACTIONS(1496), + [anon_sym_f32] = ACTIONS(1496), + [anon_sym_f64] = ACTIONS(1496), + [anon_sym_bool] = ACTIONS(1496), + [anon_sym_str] = ACTIONS(1496), + [anon_sym_char] = ACTIONS(1496), + [anon_sym_DASH] = ACTIONS(1496), + [anon_sym_SLASH] = ACTIONS(1496), + [anon_sym_PERCENT] = ACTIONS(1496), + [anon_sym_CARET] = ACTIONS(1496), + [anon_sym_AMP] = ACTIONS(1496), + [anon_sym_PIPE] = ACTIONS(1496), + [anon_sym_AMP_AMP] = ACTIONS(1494), + [anon_sym_PIPE_PIPE] = ACTIONS(1494), + [anon_sym_LT_LT] = ACTIONS(1496), + [anon_sym_GT_GT] = ACTIONS(1496), + [anon_sym_PLUS_EQ] = ACTIONS(1494), + [anon_sym_DASH_EQ] = ACTIONS(1494), + [anon_sym_STAR_EQ] = ACTIONS(1494), + [anon_sym_SLASH_EQ] = ACTIONS(1494), + [anon_sym_PERCENT_EQ] = ACTIONS(1494), + [anon_sym_CARET_EQ] = ACTIONS(1494), + [anon_sym_AMP_EQ] = ACTIONS(1494), + [anon_sym_PIPE_EQ] = ACTIONS(1494), + [anon_sym_LT_LT_EQ] = ACTIONS(1494), + [anon_sym_GT_GT_EQ] = ACTIONS(1494), + [anon_sym_EQ] = ACTIONS(1496), + [anon_sym_EQ_EQ] = ACTIONS(1494), + [anon_sym_BANG_EQ] = ACTIONS(1494), + [anon_sym_GT] = ACTIONS(1496), + [anon_sym_LT] = ACTIONS(1496), + [anon_sym_GT_EQ] = ACTIONS(1494), + [anon_sym_LT_EQ] = ACTIONS(1494), + [anon_sym__] = ACTIONS(1496), + [anon_sym_DOT] = ACTIONS(1496), + [anon_sym_DOT_DOT] = ACTIONS(1496), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1494), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1494), + [anon_sym_COMMA] = ACTIONS(1494), + [anon_sym_COLON_COLON] = ACTIONS(1494), + [anon_sym_POUND] = ACTIONS(1494), + [anon_sym_as] = ACTIONS(1496), + [anon_sym_const] = ACTIONS(1496), + [anon_sym_default] = ACTIONS(1496), + [anon_sym_gen] = ACTIONS(1496), + [anon_sym_union] = ACTIONS(1496), + [anon_sym_ref] = ACTIONS(1496), + [sym_mutable_specifier] = ACTIONS(1496), + [sym_integer_literal] = ACTIONS(1494), + [aux_sym_string_literal_token1] = ACTIONS(1494), + [sym_char_literal] = ACTIONS(1494), + [anon_sym_true] = ACTIONS(1496), + [anon_sym_false] = ACTIONS(1496), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1496), + [sym_super] = ACTIONS(1496), + [sym_crate] = ACTIONS(1496), + [sym_metavariable] = ACTIONS(1494), + [sym__raw_string_literal_start] = ACTIONS(1494), + [sym_float_literal] = ACTIONS(1494), }, [STATE(484)] = { [sym_line_comment] = STATE(484), [sym_block_comment] = STATE(484), - [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), - [sym_mutable_specifier] = 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(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [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), + [sym_identifier] = ACTIONS(1508), + [anon_sym_LPAREN] = ACTIONS(1506), + [anon_sym_LBRACK] = ACTIONS(1506), + [anon_sym_RBRACE] = ACTIONS(1506), + [anon_sym_PLUS] = ACTIONS(1508), + [anon_sym_STAR] = ACTIONS(1508), + [anon_sym_QMARK] = ACTIONS(1506), + [anon_sym_u8] = ACTIONS(1508), + [anon_sym_i8] = ACTIONS(1508), + [anon_sym_u16] = ACTIONS(1508), + [anon_sym_i16] = ACTIONS(1508), + [anon_sym_u32] = ACTIONS(1508), + [anon_sym_i32] = ACTIONS(1508), + [anon_sym_u64] = ACTIONS(1508), + [anon_sym_i64] = ACTIONS(1508), + [anon_sym_u128] = ACTIONS(1508), + [anon_sym_i128] = ACTIONS(1508), + [anon_sym_isize] = ACTIONS(1508), + [anon_sym_usize] = ACTIONS(1508), + [anon_sym_f32] = ACTIONS(1508), + [anon_sym_f64] = ACTIONS(1508), + [anon_sym_bool] = ACTIONS(1508), + [anon_sym_str] = ACTIONS(1508), + [anon_sym_char] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1508), + [anon_sym_SLASH] = ACTIONS(1508), + [anon_sym_PERCENT] = ACTIONS(1508), + [anon_sym_CARET] = ACTIONS(1508), + [anon_sym_AMP] = ACTIONS(1508), + [anon_sym_PIPE] = ACTIONS(1508), + [anon_sym_AMP_AMP] = ACTIONS(1506), + [anon_sym_PIPE_PIPE] = ACTIONS(1506), + [anon_sym_LT_LT] = ACTIONS(1508), + [anon_sym_GT_GT] = ACTIONS(1508), + [anon_sym_PLUS_EQ] = ACTIONS(1506), + [anon_sym_DASH_EQ] = ACTIONS(1506), + [anon_sym_STAR_EQ] = ACTIONS(1506), + [anon_sym_SLASH_EQ] = ACTIONS(1506), + [anon_sym_PERCENT_EQ] = ACTIONS(1506), + [anon_sym_CARET_EQ] = ACTIONS(1506), + [anon_sym_AMP_EQ] = ACTIONS(1506), + [anon_sym_PIPE_EQ] = ACTIONS(1506), + [anon_sym_LT_LT_EQ] = ACTIONS(1506), + [anon_sym_GT_GT_EQ] = ACTIONS(1506), + [anon_sym_EQ] = ACTIONS(1508), + [anon_sym_EQ_EQ] = ACTIONS(1506), + [anon_sym_BANG_EQ] = ACTIONS(1506), + [anon_sym_GT] = ACTIONS(1508), + [anon_sym_LT] = ACTIONS(1508), + [anon_sym_GT_EQ] = ACTIONS(1506), + [anon_sym_LT_EQ] = ACTIONS(1506), + [anon_sym__] = ACTIONS(1508), + [anon_sym_DOT] = ACTIONS(1508), + [anon_sym_DOT_DOT] = ACTIONS(1508), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1506), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1506), + [anon_sym_COMMA] = ACTIONS(1506), + [anon_sym_COLON_COLON] = ACTIONS(1506), + [anon_sym_POUND] = ACTIONS(1506), + [anon_sym_as] = ACTIONS(1508), + [anon_sym_const] = ACTIONS(1508), + [anon_sym_default] = ACTIONS(1508), + [anon_sym_gen] = ACTIONS(1508), + [anon_sym_union] = ACTIONS(1508), + [anon_sym_ref] = ACTIONS(1508), + [sym_mutable_specifier] = ACTIONS(1508), + [sym_integer_literal] = ACTIONS(1506), + [aux_sym_string_literal_token1] = ACTIONS(1506), + [sym_char_literal] = ACTIONS(1506), + [anon_sym_true] = ACTIONS(1508), + [anon_sym_false] = ACTIONS(1508), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1508), + [sym_super] = ACTIONS(1508), + [sym_crate] = ACTIONS(1508), + [sym_metavariable] = ACTIONS(1506), + [sym__raw_string_literal_start] = ACTIONS(1506), + [sym_float_literal] = ACTIONS(1506), }, [STATE(485)] = { [sym_line_comment] = STATE(485), [sym_block_comment] = STATE(485), - [sym_identifier] = ACTIONS(1495), - [anon_sym_LPAREN] = ACTIONS(1493), - [anon_sym_LBRACK] = ACTIONS(1493), - [anon_sym_RBRACE] = ACTIONS(1493), - [anon_sym_PLUS] = ACTIONS(1495), - [anon_sym_STAR] = ACTIONS(1495), - [anon_sym_QMARK] = ACTIONS(1493), - [anon_sym_u8] = ACTIONS(1495), - [anon_sym_i8] = ACTIONS(1495), - [anon_sym_u16] = ACTIONS(1495), - [anon_sym_i16] = ACTIONS(1495), - [anon_sym_u32] = ACTIONS(1495), - [anon_sym_i32] = ACTIONS(1495), - [anon_sym_u64] = ACTIONS(1495), - [anon_sym_i64] = ACTIONS(1495), - [anon_sym_u128] = ACTIONS(1495), - [anon_sym_i128] = ACTIONS(1495), - [anon_sym_isize] = ACTIONS(1495), - [anon_sym_usize] = ACTIONS(1495), - [anon_sym_f32] = ACTIONS(1495), - [anon_sym_f64] = ACTIONS(1495), - [anon_sym_bool] = ACTIONS(1495), - [anon_sym_str] = ACTIONS(1495), - [anon_sym_char] = ACTIONS(1495), - [anon_sym_DASH] = ACTIONS(1495), - [anon_sym_SLASH] = ACTIONS(1495), - [anon_sym_PERCENT] = ACTIONS(1495), - [anon_sym_CARET] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1495), - [anon_sym_PIPE] = ACTIONS(1495), - [anon_sym_AMP_AMP] = ACTIONS(1493), - [anon_sym_PIPE_PIPE] = ACTIONS(1493), - [anon_sym_LT_LT] = ACTIONS(1495), - [anon_sym_GT_GT] = ACTIONS(1495), - [anon_sym_PLUS_EQ] = ACTIONS(1493), - [anon_sym_DASH_EQ] = ACTIONS(1493), - [anon_sym_STAR_EQ] = ACTIONS(1493), - [anon_sym_SLASH_EQ] = ACTIONS(1493), - [anon_sym_PERCENT_EQ] = ACTIONS(1493), - [anon_sym_CARET_EQ] = ACTIONS(1493), - [anon_sym_AMP_EQ] = ACTIONS(1493), - [anon_sym_PIPE_EQ] = ACTIONS(1493), - [anon_sym_LT_LT_EQ] = ACTIONS(1493), - [anon_sym_GT_GT_EQ] = ACTIONS(1493), - [anon_sym_EQ] = ACTIONS(1495), - [anon_sym_EQ_EQ] = ACTIONS(1493), - [anon_sym_BANG_EQ] = ACTIONS(1493), - [anon_sym_GT] = ACTIONS(1495), - [anon_sym_LT] = ACTIONS(1495), - [anon_sym_GT_EQ] = ACTIONS(1493), - [anon_sym_LT_EQ] = ACTIONS(1493), - [anon_sym__] = ACTIONS(1495), - [anon_sym_DOT] = ACTIONS(1495), - [anon_sym_DOT_DOT] = ACTIONS(1495), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1493), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1493), - [anon_sym_COMMA] = ACTIONS(1493), - [anon_sym_COLON_COLON] = ACTIONS(1493), - [anon_sym_POUND] = ACTIONS(1493), - [anon_sym_as] = ACTIONS(1495), - [anon_sym_const] = ACTIONS(1495), - [anon_sym_default] = ACTIONS(1495), - [anon_sym_gen] = ACTIONS(1495), - [anon_sym_union] = ACTIONS(1495), - [anon_sym_ref] = ACTIONS(1495), - [sym_mutable_specifier] = ACTIONS(1495), - [sym_integer_literal] = ACTIONS(1493), - [aux_sym_string_literal_token1] = ACTIONS(1493), - [sym_char_literal] = ACTIONS(1493), - [anon_sym_true] = ACTIONS(1495), - [anon_sym_false] = ACTIONS(1495), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1495), - [sym_super] = ACTIONS(1495), - [sym_crate] = ACTIONS(1495), - [sym_metavariable] = ACTIONS(1493), - [sym__raw_string_literal_start] = ACTIONS(1493), - [sym_float_literal] = ACTIONS(1493), + [sym_identifier] = ACTIONS(1476), + [anon_sym_LPAREN] = ACTIONS(1474), + [anon_sym_LBRACK] = ACTIONS(1474), + [anon_sym_RBRACE] = ACTIONS(1474), + [anon_sym_PLUS] = ACTIONS(1476), + [anon_sym_STAR] = ACTIONS(1476), + [anon_sym_QMARK] = ACTIONS(1474), + [anon_sym_u8] = ACTIONS(1476), + [anon_sym_i8] = ACTIONS(1476), + [anon_sym_u16] = ACTIONS(1476), + [anon_sym_i16] = ACTIONS(1476), + [anon_sym_u32] = ACTIONS(1476), + [anon_sym_i32] = ACTIONS(1476), + [anon_sym_u64] = ACTIONS(1476), + [anon_sym_i64] = ACTIONS(1476), + [anon_sym_u128] = ACTIONS(1476), + [anon_sym_i128] = ACTIONS(1476), + [anon_sym_isize] = ACTIONS(1476), + [anon_sym_usize] = ACTIONS(1476), + [anon_sym_f32] = ACTIONS(1476), + [anon_sym_f64] = ACTIONS(1476), + [anon_sym_bool] = ACTIONS(1476), + [anon_sym_str] = ACTIONS(1476), + [anon_sym_char] = ACTIONS(1476), + [anon_sym_DASH] = ACTIONS(1476), + [anon_sym_SLASH] = ACTIONS(1476), + [anon_sym_PERCENT] = ACTIONS(1476), + [anon_sym_CARET] = ACTIONS(1476), + [anon_sym_AMP] = ACTIONS(1476), + [anon_sym_PIPE] = ACTIONS(1476), + [anon_sym_AMP_AMP] = ACTIONS(1474), + [anon_sym_PIPE_PIPE] = ACTIONS(1474), + [anon_sym_LT_LT] = ACTIONS(1476), + [anon_sym_GT_GT] = ACTIONS(1476), + [anon_sym_PLUS_EQ] = ACTIONS(1474), + [anon_sym_DASH_EQ] = ACTIONS(1474), + [anon_sym_STAR_EQ] = ACTIONS(1474), + [anon_sym_SLASH_EQ] = ACTIONS(1474), + [anon_sym_PERCENT_EQ] = ACTIONS(1474), + [anon_sym_CARET_EQ] = ACTIONS(1474), + [anon_sym_AMP_EQ] = ACTIONS(1474), + [anon_sym_PIPE_EQ] = ACTIONS(1474), + [anon_sym_LT_LT_EQ] = ACTIONS(1474), + [anon_sym_GT_GT_EQ] = ACTIONS(1474), + [anon_sym_EQ] = ACTIONS(1476), + [anon_sym_EQ_EQ] = ACTIONS(1474), + [anon_sym_BANG_EQ] = ACTIONS(1474), + [anon_sym_GT] = ACTIONS(1476), + [anon_sym_LT] = ACTIONS(1476), + [anon_sym_GT_EQ] = ACTIONS(1474), + [anon_sym_LT_EQ] = ACTIONS(1474), + [anon_sym__] = ACTIONS(1476), + [anon_sym_DOT] = ACTIONS(1476), + [anon_sym_DOT_DOT] = ACTIONS(1476), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1474), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1474), + [anon_sym_COMMA] = ACTIONS(1474), + [anon_sym_COLON_COLON] = ACTIONS(1474), + [anon_sym_POUND] = ACTIONS(1474), + [anon_sym_as] = ACTIONS(1476), + [anon_sym_const] = ACTIONS(1476), + [anon_sym_default] = ACTIONS(1476), + [anon_sym_gen] = ACTIONS(1476), + [anon_sym_union] = ACTIONS(1476), + [anon_sym_ref] = ACTIONS(1476), + [sym_mutable_specifier] = ACTIONS(1476), + [sym_integer_literal] = ACTIONS(1474), + [aux_sym_string_literal_token1] = ACTIONS(1474), + [sym_char_literal] = ACTIONS(1474), + [anon_sym_true] = ACTIONS(1476), + [anon_sym_false] = ACTIONS(1476), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1476), + [sym_super] = ACTIONS(1476), + [sym_crate] = ACTIONS(1476), + [sym_metavariable] = ACTIONS(1474), + [sym__raw_string_literal_start] = ACTIONS(1474), + [sym_float_literal] = ACTIONS(1474), }, [STATE(486)] = { [sym_line_comment] = STATE(486), [sym_block_comment] = STATE(486), - [sym_identifier] = ACTIONS(1469), - [anon_sym_LPAREN] = ACTIONS(1467), - [anon_sym_LBRACK] = ACTIONS(1467), - [anon_sym_RBRACE] = ACTIONS(1467), - [anon_sym_PLUS] = ACTIONS(1469), - [anon_sym_STAR] = ACTIONS(1469), - [anon_sym_QMARK] = ACTIONS(1467), - [anon_sym_u8] = ACTIONS(1469), - [anon_sym_i8] = ACTIONS(1469), - [anon_sym_u16] = ACTIONS(1469), - [anon_sym_i16] = ACTIONS(1469), - [anon_sym_u32] = ACTIONS(1469), - [anon_sym_i32] = ACTIONS(1469), - [anon_sym_u64] = ACTIONS(1469), - [anon_sym_i64] = ACTIONS(1469), - [anon_sym_u128] = ACTIONS(1469), - [anon_sym_i128] = ACTIONS(1469), - [anon_sym_isize] = ACTIONS(1469), - [anon_sym_usize] = ACTIONS(1469), - [anon_sym_f32] = ACTIONS(1469), - [anon_sym_f64] = ACTIONS(1469), - [anon_sym_bool] = ACTIONS(1469), - [anon_sym_str] = ACTIONS(1469), - [anon_sym_char] = ACTIONS(1469), - [anon_sym_DASH] = ACTIONS(1469), - [anon_sym_SLASH] = ACTIONS(1469), - [anon_sym_PERCENT] = ACTIONS(1469), - [anon_sym_CARET] = ACTIONS(1469), - [anon_sym_AMP] = ACTIONS(1469), - [anon_sym_PIPE] = ACTIONS(1469), - [anon_sym_AMP_AMP] = ACTIONS(1467), - [anon_sym_PIPE_PIPE] = ACTIONS(1467), - [anon_sym_LT_LT] = ACTIONS(1469), - [anon_sym_GT_GT] = ACTIONS(1469), - [anon_sym_PLUS_EQ] = ACTIONS(1467), - [anon_sym_DASH_EQ] = ACTIONS(1467), - [anon_sym_STAR_EQ] = ACTIONS(1467), - [anon_sym_SLASH_EQ] = ACTIONS(1467), - [anon_sym_PERCENT_EQ] = ACTIONS(1467), - [anon_sym_CARET_EQ] = ACTIONS(1467), - [anon_sym_AMP_EQ] = ACTIONS(1467), - [anon_sym_PIPE_EQ] = ACTIONS(1467), - [anon_sym_LT_LT_EQ] = ACTIONS(1467), - [anon_sym_GT_GT_EQ] = ACTIONS(1467), - [anon_sym_EQ] = ACTIONS(1469), - [anon_sym_EQ_EQ] = ACTIONS(1467), - [anon_sym_BANG_EQ] = ACTIONS(1467), - [anon_sym_GT] = ACTIONS(1469), - [anon_sym_LT] = ACTIONS(1469), - [anon_sym_GT_EQ] = ACTIONS(1467), - [anon_sym_LT_EQ] = ACTIONS(1467), - [anon_sym__] = ACTIONS(1469), - [anon_sym_DOT] = ACTIONS(1469), - [anon_sym_DOT_DOT] = ACTIONS(1469), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1467), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1467), - [anon_sym_COMMA] = ACTIONS(1467), - [anon_sym_COLON_COLON] = ACTIONS(1467), - [anon_sym_POUND] = ACTIONS(1467), - [anon_sym_as] = ACTIONS(1469), - [anon_sym_const] = ACTIONS(1469), - [anon_sym_default] = ACTIONS(1469), - [anon_sym_gen] = ACTIONS(1469), - [anon_sym_union] = ACTIONS(1469), - [anon_sym_ref] = ACTIONS(1469), - [sym_mutable_specifier] = ACTIONS(1469), - [sym_integer_literal] = ACTIONS(1467), - [aux_sym_string_literal_token1] = ACTIONS(1467), - [sym_char_literal] = ACTIONS(1467), - [anon_sym_true] = ACTIONS(1469), - [anon_sym_false] = ACTIONS(1469), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1469), - [sym_super] = ACTIONS(1469), - [sym_crate] = ACTIONS(1469), - [sym_metavariable] = ACTIONS(1467), - [sym__raw_string_literal_start] = ACTIONS(1467), - [sym_float_literal] = ACTIONS(1467), + [sym_identifier] = ACTIONS(1536), + [anon_sym_LPAREN] = ACTIONS(1534), + [anon_sym_LBRACK] = ACTIONS(1534), + [anon_sym_RBRACE] = ACTIONS(1534), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_STAR] = ACTIONS(1536), + [anon_sym_QMARK] = ACTIONS(1534), + [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(1536), + [anon_sym_PERCENT] = ACTIONS(1536), + [anon_sym_CARET] = ACTIONS(1536), + [anon_sym_AMP] = ACTIONS(1536), + [anon_sym_PIPE] = ACTIONS(1536), + [anon_sym_AMP_AMP] = ACTIONS(1534), + [anon_sym_PIPE_PIPE] = ACTIONS(1534), + [anon_sym_LT_LT] = ACTIONS(1536), + [anon_sym_GT_GT] = ACTIONS(1536), + [anon_sym_PLUS_EQ] = ACTIONS(1534), + [anon_sym_DASH_EQ] = ACTIONS(1534), + [anon_sym_STAR_EQ] = ACTIONS(1534), + [anon_sym_SLASH_EQ] = ACTIONS(1534), + [anon_sym_PERCENT_EQ] = ACTIONS(1534), + [anon_sym_CARET_EQ] = ACTIONS(1534), + [anon_sym_AMP_EQ] = ACTIONS(1534), + [anon_sym_PIPE_EQ] = ACTIONS(1534), + [anon_sym_LT_LT_EQ] = ACTIONS(1534), + [anon_sym_GT_GT_EQ] = ACTIONS(1534), + [anon_sym_EQ] = ACTIONS(1536), + [anon_sym_EQ_EQ] = ACTIONS(1534), + [anon_sym_BANG_EQ] = ACTIONS(1534), + [anon_sym_GT] = ACTIONS(1536), + [anon_sym_LT] = ACTIONS(1536), + [anon_sym_GT_EQ] = ACTIONS(1534), + [anon_sym_LT_EQ] = ACTIONS(1534), + [anon_sym__] = ACTIONS(1536), + [anon_sym_DOT] = ACTIONS(1536), + [anon_sym_DOT_DOT] = ACTIONS(1536), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1534), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1534), + [anon_sym_COMMA] = ACTIONS(1534), + [anon_sym_COLON_COLON] = ACTIONS(1534), + [anon_sym_POUND] = ACTIONS(1534), + [anon_sym_as] = ACTIONS(1536), + [anon_sym_const] = ACTIONS(1536), + [anon_sym_default] = ACTIONS(1536), + [anon_sym_gen] = ACTIONS(1536), + [anon_sym_union] = ACTIONS(1536), + [anon_sym_ref] = ACTIONS(1536), + [sym_mutable_specifier] = 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), }, [STATE(487)] = { [sym_line_comment] = STATE(487), [sym_block_comment] = STATE(487), - [sym_identifier] = ACTIONS(1419), - [anon_sym_LPAREN] = ACTIONS(1417), - [anon_sym_LBRACK] = ACTIONS(1417), - [anon_sym_RBRACE] = ACTIONS(1417), - [anon_sym_PLUS] = ACTIONS(1419), - [anon_sym_STAR] = ACTIONS(1419), - [anon_sym_QMARK] = ACTIONS(1417), - [anon_sym_u8] = ACTIONS(1419), - [anon_sym_i8] = ACTIONS(1419), - [anon_sym_u16] = ACTIONS(1419), - [anon_sym_i16] = ACTIONS(1419), - [anon_sym_u32] = ACTIONS(1419), - [anon_sym_i32] = ACTIONS(1419), - [anon_sym_u64] = ACTIONS(1419), - [anon_sym_i64] = ACTIONS(1419), - [anon_sym_u128] = ACTIONS(1419), - [anon_sym_i128] = ACTIONS(1419), - [anon_sym_isize] = ACTIONS(1419), - [anon_sym_usize] = ACTIONS(1419), - [anon_sym_f32] = ACTIONS(1419), - [anon_sym_f64] = ACTIONS(1419), - [anon_sym_bool] = ACTIONS(1419), - [anon_sym_str] = ACTIONS(1419), - [anon_sym_char] = ACTIONS(1419), - [anon_sym_DASH] = ACTIONS(1419), - [anon_sym_SLASH] = ACTIONS(1419), - [anon_sym_PERCENT] = ACTIONS(1419), - [anon_sym_CARET] = ACTIONS(1419), - [anon_sym_AMP] = ACTIONS(1419), - [anon_sym_PIPE] = ACTIONS(1419), - [anon_sym_AMP_AMP] = ACTIONS(1417), - [anon_sym_PIPE_PIPE] = ACTIONS(1417), - [anon_sym_LT_LT] = ACTIONS(1419), - [anon_sym_GT_GT] = ACTIONS(1419), - [anon_sym_PLUS_EQ] = ACTIONS(1417), - [anon_sym_DASH_EQ] = ACTIONS(1417), - [anon_sym_STAR_EQ] = ACTIONS(1417), - [anon_sym_SLASH_EQ] = ACTIONS(1417), - [anon_sym_PERCENT_EQ] = ACTIONS(1417), - [anon_sym_CARET_EQ] = ACTIONS(1417), - [anon_sym_AMP_EQ] = ACTIONS(1417), - [anon_sym_PIPE_EQ] = ACTIONS(1417), - [anon_sym_LT_LT_EQ] = ACTIONS(1417), - [anon_sym_GT_GT_EQ] = ACTIONS(1417), - [anon_sym_EQ] = ACTIONS(1419), - [anon_sym_EQ_EQ] = ACTIONS(1417), - [anon_sym_BANG_EQ] = ACTIONS(1417), - [anon_sym_GT] = ACTIONS(1419), - [anon_sym_LT] = ACTIONS(1419), - [anon_sym_GT_EQ] = ACTIONS(1417), - [anon_sym_LT_EQ] = ACTIONS(1417), - [anon_sym__] = ACTIONS(1419), - [anon_sym_DOT] = ACTIONS(1419), - [anon_sym_DOT_DOT] = ACTIONS(1419), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1417), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1417), - [anon_sym_COMMA] = ACTIONS(1417), - [anon_sym_COLON_COLON] = ACTIONS(1417), - [anon_sym_POUND] = ACTIONS(1417), - [anon_sym_as] = ACTIONS(1419), - [anon_sym_const] = ACTIONS(1419), - [anon_sym_default] = ACTIONS(1419), - [anon_sym_gen] = ACTIONS(1419), - [anon_sym_union] = ACTIONS(1419), - [anon_sym_ref] = ACTIONS(1419), - [sym_mutable_specifier] = ACTIONS(1419), - [sym_integer_literal] = ACTIONS(1417), - [aux_sym_string_literal_token1] = ACTIONS(1417), - [sym_char_literal] = ACTIONS(1417), - [anon_sym_true] = ACTIONS(1419), - [anon_sym_false] = ACTIONS(1419), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1419), - [sym_super] = ACTIONS(1419), - [sym_crate] = ACTIONS(1419), - [sym_metavariable] = ACTIONS(1417), - [sym__raw_string_literal_start] = ACTIONS(1417), - [sym_float_literal] = ACTIONS(1417), + [sym_identifier] = ACTIONS(1512), + [anon_sym_LPAREN] = ACTIONS(1510), + [anon_sym_LBRACK] = ACTIONS(1510), + [anon_sym_RBRACE] = ACTIONS(1510), + [anon_sym_PLUS] = ACTIONS(1512), + [anon_sym_STAR] = ACTIONS(1512), + [anon_sym_QMARK] = ACTIONS(1510), + [anon_sym_u8] = ACTIONS(1512), + [anon_sym_i8] = ACTIONS(1512), + [anon_sym_u16] = ACTIONS(1512), + [anon_sym_i16] = ACTIONS(1512), + [anon_sym_u32] = ACTIONS(1512), + [anon_sym_i32] = ACTIONS(1512), + [anon_sym_u64] = ACTIONS(1512), + [anon_sym_i64] = ACTIONS(1512), + [anon_sym_u128] = ACTIONS(1512), + [anon_sym_i128] = ACTIONS(1512), + [anon_sym_isize] = ACTIONS(1512), + [anon_sym_usize] = ACTIONS(1512), + [anon_sym_f32] = ACTIONS(1512), + [anon_sym_f64] = ACTIONS(1512), + [anon_sym_bool] = ACTIONS(1512), + [anon_sym_str] = ACTIONS(1512), + [anon_sym_char] = ACTIONS(1512), + [anon_sym_DASH] = ACTIONS(1512), + [anon_sym_SLASH] = ACTIONS(1512), + [anon_sym_PERCENT] = ACTIONS(1512), + [anon_sym_CARET] = ACTIONS(1512), + [anon_sym_AMP] = ACTIONS(1512), + [anon_sym_PIPE] = ACTIONS(1512), + [anon_sym_AMP_AMP] = ACTIONS(1510), + [anon_sym_PIPE_PIPE] = ACTIONS(1510), + [anon_sym_LT_LT] = ACTIONS(1512), + [anon_sym_GT_GT] = ACTIONS(1512), + [anon_sym_PLUS_EQ] = ACTIONS(1510), + [anon_sym_DASH_EQ] = ACTIONS(1510), + [anon_sym_STAR_EQ] = ACTIONS(1510), + [anon_sym_SLASH_EQ] = ACTIONS(1510), + [anon_sym_PERCENT_EQ] = ACTIONS(1510), + [anon_sym_CARET_EQ] = ACTIONS(1510), + [anon_sym_AMP_EQ] = ACTIONS(1510), + [anon_sym_PIPE_EQ] = ACTIONS(1510), + [anon_sym_LT_LT_EQ] = ACTIONS(1510), + [anon_sym_GT_GT_EQ] = ACTIONS(1510), + [anon_sym_EQ] = ACTIONS(1512), + [anon_sym_EQ_EQ] = ACTIONS(1510), + [anon_sym_BANG_EQ] = ACTIONS(1510), + [anon_sym_GT] = ACTIONS(1512), + [anon_sym_LT] = ACTIONS(1512), + [anon_sym_GT_EQ] = ACTIONS(1510), + [anon_sym_LT_EQ] = ACTIONS(1510), + [anon_sym__] = ACTIONS(1512), + [anon_sym_DOT] = ACTIONS(1512), + [anon_sym_DOT_DOT] = ACTIONS(1512), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1510), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1510), + [anon_sym_COMMA] = ACTIONS(1510), + [anon_sym_COLON_COLON] = ACTIONS(1510), + [anon_sym_POUND] = ACTIONS(1510), + [anon_sym_as] = ACTIONS(1512), + [anon_sym_const] = ACTIONS(1512), + [anon_sym_default] = ACTIONS(1512), + [anon_sym_gen] = ACTIONS(1512), + [anon_sym_union] = ACTIONS(1512), + [anon_sym_ref] = ACTIONS(1512), + [sym_mutable_specifier] = ACTIONS(1512), + [sym_integer_literal] = ACTIONS(1510), + [aux_sym_string_literal_token1] = ACTIONS(1510), + [sym_char_literal] = ACTIONS(1510), + [anon_sym_true] = ACTIONS(1512), + [anon_sym_false] = ACTIONS(1512), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1512), + [sym_super] = ACTIONS(1512), + [sym_crate] = ACTIONS(1512), + [sym_metavariable] = ACTIONS(1510), + [sym__raw_string_literal_start] = ACTIONS(1510), + [sym_float_literal] = ACTIONS(1510), }, [STATE(488)] = { [sym_line_comment] = STATE(488), [sym_block_comment] = STATE(488), - [sym_identifier] = ACTIONS(1499), - [anon_sym_LPAREN] = ACTIONS(1497), - [anon_sym_LBRACK] = ACTIONS(1497), - [anon_sym_RBRACE] = ACTIONS(1497), - [anon_sym_PLUS] = ACTIONS(1499), - [anon_sym_STAR] = ACTIONS(1499), - [anon_sym_QMARK] = ACTIONS(1497), - [anon_sym_u8] = ACTIONS(1499), - [anon_sym_i8] = ACTIONS(1499), - [anon_sym_u16] = ACTIONS(1499), - [anon_sym_i16] = ACTIONS(1499), - [anon_sym_u32] = ACTIONS(1499), - [anon_sym_i32] = ACTIONS(1499), - [anon_sym_u64] = ACTIONS(1499), - [anon_sym_i64] = ACTIONS(1499), - [anon_sym_u128] = ACTIONS(1499), - [anon_sym_i128] = ACTIONS(1499), - [anon_sym_isize] = ACTIONS(1499), - [anon_sym_usize] = ACTIONS(1499), - [anon_sym_f32] = ACTIONS(1499), - [anon_sym_f64] = ACTIONS(1499), - [anon_sym_bool] = ACTIONS(1499), - [anon_sym_str] = ACTIONS(1499), - [anon_sym_char] = ACTIONS(1499), - [anon_sym_DASH] = ACTIONS(1499), - [anon_sym_SLASH] = ACTIONS(1499), - [anon_sym_PERCENT] = ACTIONS(1499), - [anon_sym_CARET] = ACTIONS(1499), - [anon_sym_AMP] = ACTIONS(1499), - [anon_sym_PIPE] = ACTIONS(1499), - [anon_sym_AMP_AMP] = ACTIONS(1497), - [anon_sym_PIPE_PIPE] = ACTIONS(1497), - [anon_sym_LT_LT] = ACTIONS(1499), - [anon_sym_GT_GT] = ACTIONS(1499), - [anon_sym_PLUS_EQ] = ACTIONS(1497), - [anon_sym_DASH_EQ] = ACTIONS(1497), - [anon_sym_STAR_EQ] = ACTIONS(1497), - [anon_sym_SLASH_EQ] = ACTIONS(1497), - [anon_sym_PERCENT_EQ] = ACTIONS(1497), - [anon_sym_CARET_EQ] = ACTIONS(1497), - [anon_sym_AMP_EQ] = ACTIONS(1497), - [anon_sym_PIPE_EQ] = ACTIONS(1497), - [anon_sym_LT_LT_EQ] = ACTIONS(1497), - [anon_sym_GT_GT_EQ] = ACTIONS(1497), - [anon_sym_EQ] = ACTIONS(1499), - [anon_sym_EQ_EQ] = ACTIONS(1497), - [anon_sym_BANG_EQ] = ACTIONS(1497), - [anon_sym_GT] = ACTIONS(1499), - [anon_sym_LT] = ACTIONS(1499), - [anon_sym_GT_EQ] = ACTIONS(1497), - [anon_sym_LT_EQ] = ACTIONS(1497), - [anon_sym__] = ACTIONS(1499), - [anon_sym_DOT] = ACTIONS(1499), - [anon_sym_DOT_DOT] = ACTIONS(1499), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1497), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1497), - [anon_sym_COMMA] = ACTIONS(1497), - [anon_sym_COLON_COLON] = ACTIONS(1497), - [anon_sym_POUND] = ACTIONS(1497), - [anon_sym_as] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(1499), - [anon_sym_default] = ACTIONS(1499), - [anon_sym_gen] = ACTIONS(1499), - [anon_sym_union] = ACTIONS(1499), - [anon_sym_ref] = ACTIONS(1499), - [sym_mutable_specifier] = ACTIONS(1499), - [sym_integer_literal] = ACTIONS(1497), - [aux_sym_string_literal_token1] = ACTIONS(1497), - [sym_char_literal] = ACTIONS(1497), - [anon_sym_true] = ACTIONS(1499), - [anon_sym_false] = ACTIONS(1499), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1499), - [sym_super] = ACTIONS(1499), - [sym_crate] = ACTIONS(1499), - [sym_metavariable] = ACTIONS(1497), - [sym__raw_string_literal_start] = ACTIONS(1497), - [sym_float_literal] = ACTIONS(1497), + [sym_identifier] = ACTIONS(1488), + [anon_sym_LPAREN] = ACTIONS(1486), + [anon_sym_LBRACK] = ACTIONS(1486), + [anon_sym_RBRACE] = ACTIONS(1486), + [anon_sym_PLUS] = ACTIONS(1488), + [anon_sym_STAR] = ACTIONS(1488), + [anon_sym_QMARK] = ACTIONS(1486), + [anon_sym_u8] = ACTIONS(1488), + [anon_sym_i8] = ACTIONS(1488), + [anon_sym_u16] = ACTIONS(1488), + [anon_sym_i16] = ACTIONS(1488), + [anon_sym_u32] = ACTIONS(1488), + [anon_sym_i32] = ACTIONS(1488), + [anon_sym_u64] = ACTIONS(1488), + [anon_sym_i64] = ACTIONS(1488), + [anon_sym_u128] = ACTIONS(1488), + [anon_sym_i128] = ACTIONS(1488), + [anon_sym_isize] = ACTIONS(1488), + [anon_sym_usize] = ACTIONS(1488), + [anon_sym_f32] = ACTIONS(1488), + [anon_sym_f64] = ACTIONS(1488), + [anon_sym_bool] = ACTIONS(1488), + [anon_sym_str] = ACTIONS(1488), + [anon_sym_char] = ACTIONS(1488), + [anon_sym_DASH] = ACTIONS(1488), + [anon_sym_SLASH] = ACTIONS(1488), + [anon_sym_PERCENT] = ACTIONS(1488), + [anon_sym_CARET] = ACTIONS(1488), + [anon_sym_AMP] = ACTIONS(1488), + [anon_sym_PIPE] = ACTIONS(1488), + [anon_sym_AMP_AMP] = ACTIONS(1486), + [anon_sym_PIPE_PIPE] = ACTIONS(1486), + [anon_sym_LT_LT] = ACTIONS(1488), + [anon_sym_GT_GT] = ACTIONS(1488), + [anon_sym_PLUS_EQ] = ACTIONS(1486), + [anon_sym_DASH_EQ] = ACTIONS(1486), + [anon_sym_STAR_EQ] = ACTIONS(1486), + [anon_sym_SLASH_EQ] = ACTIONS(1486), + [anon_sym_PERCENT_EQ] = ACTIONS(1486), + [anon_sym_CARET_EQ] = ACTIONS(1486), + [anon_sym_AMP_EQ] = ACTIONS(1486), + [anon_sym_PIPE_EQ] = ACTIONS(1486), + [anon_sym_LT_LT_EQ] = ACTIONS(1486), + [anon_sym_GT_GT_EQ] = ACTIONS(1486), + [anon_sym_EQ] = ACTIONS(1488), + [anon_sym_EQ_EQ] = ACTIONS(1486), + [anon_sym_BANG_EQ] = ACTIONS(1486), + [anon_sym_GT] = ACTIONS(1488), + [anon_sym_LT] = ACTIONS(1488), + [anon_sym_GT_EQ] = ACTIONS(1486), + [anon_sym_LT_EQ] = ACTIONS(1486), + [anon_sym__] = ACTIONS(1488), + [anon_sym_DOT] = ACTIONS(1488), + [anon_sym_DOT_DOT] = ACTIONS(1488), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1486), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1486), + [anon_sym_COMMA] = ACTIONS(1486), + [anon_sym_COLON_COLON] = ACTIONS(1486), + [anon_sym_POUND] = ACTIONS(1486), + [anon_sym_as] = ACTIONS(1488), + [anon_sym_const] = ACTIONS(1488), + [anon_sym_default] = ACTIONS(1488), + [anon_sym_gen] = ACTIONS(1488), + [anon_sym_union] = ACTIONS(1488), + [anon_sym_ref] = ACTIONS(1488), + [sym_mutable_specifier] = ACTIONS(1488), + [sym_integer_literal] = ACTIONS(1486), + [aux_sym_string_literal_token1] = ACTIONS(1486), + [sym_char_literal] = ACTIONS(1486), + [anon_sym_true] = ACTIONS(1488), + [anon_sym_false] = ACTIONS(1488), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1488), + [sym_super] = ACTIONS(1488), + [sym_crate] = ACTIONS(1488), + [sym_metavariable] = ACTIONS(1486), + [sym__raw_string_literal_start] = ACTIONS(1486), + [sym_float_literal] = ACTIONS(1486), }, [STATE(489)] = { [sym_line_comment] = STATE(489), [sym_block_comment] = STATE(489), - [sym_identifier] = ACTIONS(1531), - [anon_sym_LPAREN] = ACTIONS(1529), - [anon_sym_LBRACK] = ACTIONS(1529), - [anon_sym_RBRACE] = ACTIONS(1529), - [anon_sym_PLUS] = ACTIONS(1531), - [anon_sym_STAR] = ACTIONS(1531), - [anon_sym_QMARK] = ACTIONS(1529), - [anon_sym_u8] = ACTIONS(1531), - [anon_sym_i8] = ACTIONS(1531), - [anon_sym_u16] = ACTIONS(1531), - [anon_sym_i16] = ACTIONS(1531), - [anon_sym_u32] = ACTIONS(1531), - [anon_sym_i32] = ACTIONS(1531), - [anon_sym_u64] = ACTIONS(1531), - [anon_sym_i64] = ACTIONS(1531), - [anon_sym_u128] = ACTIONS(1531), - [anon_sym_i128] = ACTIONS(1531), - [anon_sym_isize] = ACTIONS(1531), - [anon_sym_usize] = ACTIONS(1531), - [anon_sym_f32] = ACTIONS(1531), - [anon_sym_f64] = ACTIONS(1531), - [anon_sym_bool] = ACTIONS(1531), - [anon_sym_str] = ACTIONS(1531), - [anon_sym_char] = ACTIONS(1531), - [anon_sym_DASH] = ACTIONS(1531), - [anon_sym_SLASH] = ACTIONS(1531), - [anon_sym_PERCENT] = ACTIONS(1531), - [anon_sym_CARET] = ACTIONS(1531), - [anon_sym_AMP] = ACTIONS(1531), - [anon_sym_PIPE] = ACTIONS(1531), - [anon_sym_AMP_AMP] = ACTIONS(1529), - [anon_sym_PIPE_PIPE] = ACTIONS(1529), - [anon_sym_LT_LT] = ACTIONS(1531), - [anon_sym_GT_GT] = ACTIONS(1531), - [anon_sym_PLUS_EQ] = ACTIONS(1529), - [anon_sym_DASH_EQ] = ACTIONS(1529), - [anon_sym_STAR_EQ] = ACTIONS(1529), - [anon_sym_SLASH_EQ] = ACTIONS(1529), - [anon_sym_PERCENT_EQ] = ACTIONS(1529), - [anon_sym_CARET_EQ] = ACTIONS(1529), - [anon_sym_AMP_EQ] = ACTIONS(1529), - [anon_sym_PIPE_EQ] = ACTIONS(1529), - [anon_sym_LT_LT_EQ] = ACTIONS(1529), - [anon_sym_GT_GT_EQ] = ACTIONS(1529), - [anon_sym_EQ] = ACTIONS(1531), - [anon_sym_EQ_EQ] = ACTIONS(1529), - [anon_sym_BANG_EQ] = ACTIONS(1529), - [anon_sym_GT] = ACTIONS(1531), - [anon_sym_LT] = ACTIONS(1531), - [anon_sym_GT_EQ] = ACTIONS(1529), - [anon_sym_LT_EQ] = ACTIONS(1529), - [anon_sym__] = ACTIONS(1531), - [anon_sym_DOT] = ACTIONS(1531), - [anon_sym_DOT_DOT] = ACTIONS(1531), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1529), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1529), - [anon_sym_COMMA] = ACTIONS(1529), - [anon_sym_COLON_COLON] = ACTIONS(1529), - [anon_sym_POUND] = ACTIONS(1529), - [anon_sym_as] = ACTIONS(1531), - [anon_sym_const] = ACTIONS(1531), - [anon_sym_default] = ACTIONS(1531), - [anon_sym_gen] = ACTIONS(1531), - [anon_sym_union] = ACTIONS(1531), - [anon_sym_ref] = ACTIONS(1531), - [sym_mutable_specifier] = ACTIONS(1531), - [sym_integer_literal] = ACTIONS(1529), - [aux_sym_string_literal_token1] = ACTIONS(1529), - [sym_char_literal] = ACTIONS(1529), - [anon_sym_true] = ACTIONS(1531), - [anon_sym_false] = ACTIONS(1531), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1531), - [sym_super] = ACTIONS(1531), - [sym_crate] = ACTIONS(1531), - [sym_metavariable] = ACTIONS(1529), - [sym__raw_string_literal_start] = ACTIONS(1529), - [sym_float_literal] = ACTIONS(1529), + [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), + [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), }, [STATE(490)] = { [sym_line_comment] = STATE(490), [sym_block_comment] = STATE(490), - [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), - [sym_mutable_specifier] = 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(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [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), + [sym_identifier] = ACTIONS(1446), + [anon_sym_LPAREN] = ACTIONS(1444), + [anon_sym_LBRACK] = ACTIONS(1444), + [anon_sym_RBRACE] = ACTIONS(1444), + [anon_sym_PLUS] = ACTIONS(1446), + [anon_sym_STAR] = ACTIONS(1446), + [anon_sym_QMARK] = ACTIONS(1444), + [anon_sym_u8] = ACTIONS(1446), + [anon_sym_i8] = ACTIONS(1446), + [anon_sym_u16] = ACTIONS(1446), + [anon_sym_i16] = ACTIONS(1446), + [anon_sym_u32] = ACTIONS(1446), + [anon_sym_i32] = ACTIONS(1446), + [anon_sym_u64] = ACTIONS(1446), + [anon_sym_i64] = ACTIONS(1446), + [anon_sym_u128] = ACTIONS(1446), + [anon_sym_i128] = ACTIONS(1446), + [anon_sym_isize] = ACTIONS(1446), + [anon_sym_usize] = ACTIONS(1446), + [anon_sym_f32] = ACTIONS(1446), + [anon_sym_f64] = ACTIONS(1446), + [anon_sym_bool] = ACTIONS(1446), + [anon_sym_str] = ACTIONS(1446), + [anon_sym_char] = ACTIONS(1446), + [anon_sym_DASH] = ACTIONS(1446), + [anon_sym_SLASH] = ACTIONS(1446), + [anon_sym_PERCENT] = ACTIONS(1446), + [anon_sym_CARET] = ACTIONS(1446), + [anon_sym_AMP] = ACTIONS(1446), + [anon_sym_PIPE] = ACTIONS(1446), + [anon_sym_AMP_AMP] = ACTIONS(1444), + [anon_sym_PIPE_PIPE] = ACTIONS(1444), + [anon_sym_LT_LT] = ACTIONS(1446), + [anon_sym_GT_GT] = ACTIONS(1446), + [anon_sym_PLUS_EQ] = ACTIONS(1444), + [anon_sym_DASH_EQ] = ACTIONS(1444), + [anon_sym_STAR_EQ] = ACTIONS(1444), + [anon_sym_SLASH_EQ] = ACTIONS(1444), + [anon_sym_PERCENT_EQ] = ACTIONS(1444), + [anon_sym_CARET_EQ] = ACTIONS(1444), + [anon_sym_AMP_EQ] = ACTIONS(1444), + [anon_sym_PIPE_EQ] = ACTIONS(1444), + [anon_sym_LT_LT_EQ] = ACTIONS(1444), + [anon_sym_GT_GT_EQ] = ACTIONS(1444), + [anon_sym_EQ] = ACTIONS(1446), + [anon_sym_EQ_EQ] = ACTIONS(1444), + [anon_sym_BANG_EQ] = ACTIONS(1444), + [anon_sym_GT] = ACTIONS(1446), + [anon_sym_LT] = ACTIONS(1446), + [anon_sym_GT_EQ] = ACTIONS(1444), + [anon_sym_LT_EQ] = ACTIONS(1444), + [anon_sym__] = ACTIONS(1446), + [anon_sym_DOT] = ACTIONS(1446), + [anon_sym_DOT_DOT] = ACTIONS(1446), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1444), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1444), + [anon_sym_COMMA] = ACTIONS(1444), + [anon_sym_COLON_COLON] = ACTIONS(1444), + [anon_sym_POUND] = ACTIONS(1444), + [anon_sym_as] = ACTIONS(1446), + [anon_sym_const] = ACTIONS(1446), + [anon_sym_default] = ACTIONS(1446), + [anon_sym_gen] = ACTIONS(1446), + [anon_sym_union] = ACTIONS(1446), + [anon_sym_ref] = ACTIONS(1446), + [sym_mutable_specifier] = ACTIONS(1446), + [sym_integer_literal] = ACTIONS(1444), + [aux_sym_string_literal_token1] = ACTIONS(1444), + [sym_char_literal] = ACTIONS(1444), + [anon_sym_true] = ACTIONS(1446), + [anon_sym_false] = ACTIONS(1446), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1446), + [sym_super] = ACTIONS(1446), + [sym_crate] = ACTIONS(1446), + [sym_metavariable] = ACTIONS(1444), + [sym__raw_string_literal_start] = ACTIONS(1444), + [sym_float_literal] = ACTIONS(1444), }, [STATE(491)] = { [sym_line_comment] = STATE(491), [sym_block_comment] = STATE(491), - [sym_identifier] = ACTIONS(1491), - [anon_sym_LPAREN] = ACTIONS(1489), - [anon_sym_LBRACK] = ACTIONS(1489), - [anon_sym_RBRACE] = ACTIONS(1489), - [anon_sym_PLUS] = ACTIONS(1491), - [anon_sym_STAR] = ACTIONS(1491), - [anon_sym_QMARK] = ACTIONS(1489), - [anon_sym_u8] = ACTIONS(1491), - [anon_sym_i8] = ACTIONS(1491), - [anon_sym_u16] = ACTIONS(1491), - [anon_sym_i16] = ACTIONS(1491), - [anon_sym_u32] = ACTIONS(1491), - [anon_sym_i32] = ACTIONS(1491), - [anon_sym_u64] = ACTIONS(1491), - [anon_sym_i64] = ACTIONS(1491), - [anon_sym_u128] = ACTIONS(1491), - [anon_sym_i128] = ACTIONS(1491), - [anon_sym_isize] = ACTIONS(1491), - [anon_sym_usize] = ACTIONS(1491), - [anon_sym_f32] = ACTIONS(1491), - [anon_sym_f64] = ACTIONS(1491), - [anon_sym_bool] = ACTIONS(1491), - [anon_sym_str] = ACTIONS(1491), - [anon_sym_char] = ACTIONS(1491), - [anon_sym_DASH] = ACTIONS(1491), - [anon_sym_SLASH] = ACTIONS(1491), - [anon_sym_PERCENT] = ACTIONS(1491), - [anon_sym_CARET] = ACTIONS(1491), - [anon_sym_AMP] = ACTIONS(1491), - [anon_sym_PIPE] = ACTIONS(1491), - [anon_sym_AMP_AMP] = ACTIONS(1489), - [anon_sym_PIPE_PIPE] = ACTIONS(1489), - [anon_sym_LT_LT] = ACTIONS(1491), - [anon_sym_GT_GT] = ACTIONS(1491), - [anon_sym_PLUS_EQ] = ACTIONS(1489), - [anon_sym_DASH_EQ] = ACTIONS(1489), - [anon_sym_STAR_EQ] = ACTIONS(1489), - [anon_sym_SLASH_EQ] = ACTIONS(1489), - [anon_sym_PERCENT_EQ] = ACTIONS(1489), - [anon_sym_CARET_EQ] = ACTIONS(1489), - [anon_sym_AMP_EQ] = ACTIONS(1489), - [anon_sym_PIPE_EQ] = ACTIONS(1489), - [anon_sym_LT_LT_EQ] = ACTIONS(1489), - [anon_sym_GT_GT_EQ] = ACTIONS(1489), - [anon_sym_EQ] = ACTIONS(1491), - [anon_sym_EQ_EQ] = ACTIONS(1489), - [anon_sym_BANG_EQ] = ACTIONS(1489), - [anon_sym_GT] = ACTIONS(1491), - [anon_sym_LT] = ACTIONS(1491), - [anon_sym_GT_EQ] = ACTIONS(1489), - [anon_sym_LT_EQ] = ACTIONS(1489), - [anon_sym__] = ACTIONS(1491), - [anon_sym_DOT] = ACTIONS(1491), - [anon_sym_DOT_DOT] = ACTIONS(1491), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1489), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1489), - [anon_sym_COMMA] = ACTIONS(1489), - [anon_sym_COLON_COLON] = ACTIONS(1489), - [anon_sym_POUND] = ACTIONS(1489), - [anon_sym_as] = ACTIONS(1491), - [anon_sym_const] = ACTIONS(1491), - [anon_sym_default] = ACTIONS(1491), - [anon_sym_gen] = ACTIONS(1491), - [anon_sym_union] = ACTIONS(1491), - [anon_sym_ref] = ACTIONS(1491), - [sym_mutable_specifier] = ACTIONS(1491), - [sym_integer_literal] = ACTIONS(1489), - [aux_sym_string_literal_token1] = ACTIONS(1489), - [sym_char_literal] = ACTIONS(1489), - [anon_sym_true] = ACTIONS(1491), - [anon_sym_false] = ACTIONS(1491), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1491), - [sym_super] = ACTIONS(1491), - [sym_crate] = ACTIONS(1491), - [sym_metavariable] = ACTIONS(1489), - [sym__raw_string_literal_start] = ACTIONS(1489), - [sym_float_literal] = ACTIONS(1489), + [sym_identifier] = ACTIONS(1528), + [anon_sym_LPAREN] = ACTIONS(1526), + [anon_sym_LBRACK] = ACTIONS(1526), + [anon_sym_RBRACE] = ACTIONS(1526), + [anon_sym_PLUS] = ACTIONS(1528), + [anon_sym_STAR] = ACTIONS(1528), + [anon_sym_QMARK] = ACTIONS(1526), + [anon_sym_u8] = ACTIONS(1528), + [anon_sym_i8] = ACTIONS(1528), + [anon_sym_u16] = ACTIONS(1528), + [anon_sym_i16] = ACTIONS(1528), + [anon_sym_u32] = ACTIONS(1528), + [anon_sym_i32] = ACTIONS(1528), + [anon_sym_u64] = ACTIONS(1528), + [anon_sym_i64] = ACTIONS(1528), + [anon_sym_u128] = ACTIONS(1528), + [anon_sym_i128] = ACTIONS(1528), + [anon_sym_isize] = ACTIONS(1528), + [anon_sym_usize] = ACTIONS(1528), + [anon_sym_f32] = ACTIONS(1528), + [anon_sym_f64] = ACTIONS(1528), + [anon_sym_bool] = ACTIONS(1528), + [anon_sym_str] = ACTIONS(1528), + [anon_sym_char] = ACTIONS(1528), + [anon_sym_DASH] = ACTIONS(1528), + [anon_sym_SLASH] = ACTIONS(1528), + [anon_sym_PERCENT] = ACTIONS(1528), + [anon_sym_CARET] = ACTIONS(1528), + [anon_sym_AMP] = ACTIONS(1528), + [anon_sym_PIPE] = ACTIONS(1528), + [anon_sym_AMP_AMP] = ACTIONS(1526), + [anon_sym_PIPE_PIPE] = ACTIONS(1526), + [anon_sym_LT_LT] = ACTIONS(1528), + [anon_sym_GT_GT] = ACTIONS(1528), + [anon_sym_PLUS_EQ] = ACTIONS(1526), + [anon_sym_DASH_EQ] = ACTIONS(1526), + [anon_sym_STAR_EQ] = ACTIONS(1526), + [anon_sym_SLASH_EQ] = ACTIONS(1526), + [anon_sym_PERCENT_EQ] = ACTIONS(1526), + [anon_sym_CARET_EQ] = ACTIONS(1526), + [anon_sym_AMP_EQ] = ACTIONS(1526), + [anon_sym_PIPE_EQ] = ACTIONS(1526), + [anon_sym_LT_LT_EQ] = ACTIONS(1526), + [anon_sym_GT_GT_EQ] = ACTIONS(1526), + [anon_sym_EQ] = ACTIONS(1528), + [anon_sym_EQ_EQ] = ACTIONS(1526), + [anon_sym_BANG_EQ] = ACTIONS(1526), + [anon_sym_GT] = ACTIONS(1528), + [anon_sym_LT] = ACTIONS(1528), + [anon_sym_GT_EQ] = ACTIONS(1526), + [anon_sym_LT_EQ] = ACTIONS(1526), + [anon_sym__] = ACTIONS(1528), + [anon_sym_DOT] = ACTIONS(1528), + [anon_sym_DOT_DOT] = ACTIONS(1528), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1526), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1526), + [anon_sym_COMMA] = ACTIONS(1526), + [anon_sym_COLON_COLON] = ACTIONS(1526), + [anon_sym_POUND] = ACTIONS(1526), + [anon_sym_as] = ACTIONS(1528), + [anon_sym_const] = ACTIONS(1528), + [anon_sym_default] = ACTIONS(1528), + [anon_sym_gen] = ACTIONS(1528), + [anon_sym_union] = ACTIONS(1528), + [anon_sym_ref] = ACTIONS(1528), + [sym_mutable_specifier] = ACTIONS(1528), + [sym_integer_literal] = ACTIONS(1526), + [aux_sym_string_literal_token1] = ACTIONS(1526), + [sym_char_literal] = ACTIONS(1526), + [anon_sym_true] = ACTIONS(1528), + [anon_sym_false] = ACTIONS(1528), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1528), + [sym_super] = ACTIONS(1528), + [sym_crate] = ACTIONS(1528), + [sym_metavariable] = ACTIONS(1526), + [sym__raw_string_literal_start] = ACTIONS(1526), + [sym_float_literal] = ACTIONS(1526), }, [STATE(492)] = { - [sym_bracketed_type] = STATE(3448), - [sym_generic_type] = STATE(3450), - [sym_generic_type_with_turbofish] = STATE(3159), - [sym_macro_invocation] = STATE(2150), - [sym_scoped_identifier] = STATE(2016), - [sym_scoped_type_identifier] = STATE(2988), - [sym_const_block] = STATE(2150), - [sym_closure_expression] = STATE(3103), - [sym_closure_parameters] = STATE(239), - [sym__pattern] = STATE(2620), - [sym_generic_pattern] = STATE(2150), - [sym_tuple_pattern] = STATE(2150), - [sym_slice_pattern] = STATE(2150), - [sym_tuple_struct_pattern] = STATE(2150), - [sym_struct_pattern] = STATE(2150), - [sym_remaining_field_pattern] = STATE(2150), - [sym_mut_pattern] = STATE(2150), - [sym_range_pattern] = STATE(2150), - [sym_ref_pattern] = STATE(2150), - [sym_captured_pattern] = STATE(2150), - [sym_reference_pattern] = STATE(2150), - [sym_or_pattern] = STATE(2150), - [sym__literal_pattern] = STATE(2076), - [sym_negative_literal] = STATE(2074), - [sym_string_literal] = STATE(2074), - [sym_raw_string_literal] = STATE(2074), - [sym_boolean_literal] = STATE(2074), [sym_line_comment] = STATE(492), [sym_block_comment] = STATE(492), - [sym_identifier] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_RPAREN] = ACTIONS(1780), - [anon_sym_LBRACK] = ACTIONS(1782), - [anon_sym_u8] = ACTIONS(1784), - [anon_sym_i8] = ACTIONS(1784), - [anon_sym_u16] = ACTIONS(1784), - [anon_sym_i16] = ACTIONS(1784), - [anon_sym_u32] = ACTIONS(1784), - [anon_sym_i32] = ACTIONS(1784), - [anon_sym_u64] = ACTIONS(1784), - [anon_sym_i64] = ACTIONS(1784), - [anon_sym_u128] = ACTIONS(1784), - [anon_sym_i128] = ACTIONS(1784), - [anon_sym_isize] = ACTIONS(1784), - [anon_sym_usize] = ACTIONS(1784), - [anon_sym_f32] = ACTIONS(1784), - [anon_sym_f64] = ACTIONS(1784), - [anon_sym_bool] = ACTIONS(1784), - [anon_sym_str] = ACTIONS(1784), - [anon_sym_char] = ACTIONS(1784), - [anon_sym_DASH] = ACTIONS(1241), - [anon_sym_AMP] = ACTIONS(1786), - [anon_sym_PIPE] = ACTIONS(1449), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1451), - [anon_sym_DOT_DOT] = ACTIONS(1251), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1255), - [anon_sym_COMMA] = ACTIONS(1788), - [anon_sym_COLON_COLON] = ACTIONS(1790), - [anon_sym_const] = ACTIONS(1792), - [anon_sym_default] = ACTIONS(1794), - [anon_sym_gen] = ACTIONS(1794), - [anon_sym_static] = ACTIONS(1455), - [anon_sym_union] = ACTIONS(1794), - [anon_sym_ref] = ACTIONS(1281), - [sym_mutable_specifier] = ACTIONS(1457), - [anon_sym_move] = ACTIONS(1459), - [sym_integer_literal] = ACTIONS(1287), - [aux_sym_string_literal_token1] = ACTIONS(1289), - [sym_char_literal] = ACTIONS(1287), - [anon_sym_true] = ACTIONS(1291), - [anon_sym_false] = ACTIONS(1291), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1796), - [sym_super] = ACTIONS(1796), - [sym_crate] = ACTIONS(1796), - [sym_metavariable] = ACTIONS(1798), - [sym__raw_string_literal_start] = ACTIONS(1299), - [sym_float_literal] = ACTIONS(1287), + [sym_identifier] = ACTIONS(1500), + [anon_sym_LPAREN] = ACTIONS(1498), + [anon_sym_LBRACK] = ACTIONS(1498), + [anon_sym_RBRACE] = ACTIONS(1498), + [anon_sym_PLUS] = ACTIONS(1500), + [anon_sym_STAR] = ACTIONS(1500), + [anon_sym_QMARK] = ACTIONS(1498), + [anon_sym_u8] = ACTIONS(1500), + [anon_sym_i8] = ACTIONS(1500), + [anon_sym_u16] = ACTIONS(1500), + [anon_sym_i16] = ACTIONS(1500), + [anon_sym_u32] = ACTIONS(1500), + [anon_sym_i32] = ACTIONS(1500), + [anon_sym_u64] = ACTIONS(1500), + [anon_sym_i64] = ACTIONS(1500), + [anon_sym_u128] = ACTIONS(1500), + [anon_sym_i128] = ACTIONS(1500), + [anon_sym_isize] = ACTIONS(1500), + [anon_sym_usize] = ACTIONS(1500), + [anon_sym_f32] = ACTIONS(1500), + [anon_sym_f64] = ACTIONS(1500), + [anon_sym_bool] = ACTIONS(1500), + [anon_sym_str] = ACTIONS(1500), + [anon_sym_char] = ACTIONS(1500), + [anon_sym_DASH] = ACTIONS(1500), + [anon_sym_SLASH] = ACTIONS(1500), + [anon_sym_PERCENT] = ACTIONS(1500), + [anon_sym_CARET] = ACTIONS(1500), + [anon_sym_AMP] = ACTIONS(1500), + [anon_sym_PIPE] = ACTIONS(1500), + [anon_sym_AMP_AMP] = ACTIONS(1498), + [anon_sym_PIPE_PIPE] = ACTIONS(1498), + [anon_sym_LT_LT] = ACTIONS(1500), + [anon_sym_GT_GT] = ACTIONS(1500), + [anon_sym_PLUS_EQ] = ACTIONS(1498), + [anon_sym_DASH_EQ] = ACTIONS(1498), + [anon_sym_STAR_EQ] = ACTIONS(1498), + [anon_sym_SLASH_EQ] = ACTIONS(1498), + [anon_sym_PERCENT_EQ] = ACTIONS(1498), + [anon_sym_CARET_EQ] = ACTIONS(1498), + [anon_sym_AMP_EQ] = ACTIONS(1498), + [anon_sym_PIPE_EQ] = ACTIONS(1498), + [anon_sym_LT_LT_EQ] = ACTIONS(1498), + [anon_sym_GT_GT_EQ] = ACTIONS(1498), + [anon_sym_EQ] = ACTIONS(1500), + [anon_sym_EQ_EQ] = ACTIONS(1498), + [anon_sym_BANG_EQ] = ACTIONS(1498), + [anon_sym_GT] = ACTIONS(1500), + [anon_sym_LT] = ACTIONS(1500), + [anon_sym_GT_EQ] = ACTIONS(1498), + [anon_sym_LT_EQ] = ACTIONS(1498), + [anon_sym__] = ACTIONS(1500), + [anon_sym_DOT] = ACTIONS(1500), + [anon_sym_DOT_DOT] = ACTIONS(1500), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1498), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1498), + [anon_sym_COMMA] = ACTIONS(1498), + [anon_sym_COLON_COLON] = ACTIONS(1498), + [anon_sym_POUND] = ACTIONS(1498), + [anon_sym_as] = ACTIONS(1500), + [anon_sym_const] = ACTIONS(1500), + [anon_sym_default] = ACTIONS(1500), + [anon_sym_gen] = ACTIONS(1500), + [anon_sym_union] = ACTIONS(1500), + [anon_sym_ref] = ACTIONS(1500), + [sym_mutable_specifier] = ACTIONS(1500), + [sym_integer_literal] = ACTIONS(1498), + [aux_sym_string_literal_token1] = ACTIONS(1498), + [sym_char_literal] = ACTIONS(1498), + [anon_sym_true] = ACTIONS(1500), + [anon_sym_false] = ACTIONS(1500), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1500), + [sym_super] = ACTIONS(1500), + [sym_crate] = ACTIONS(1500), + [sym_metavariable] = ACTIONS(1498), + [sym__raw_string_literal_start] = ACTIONS(1498), + [sym_float_literal] = ACTIONS(1498), }, [STATE(493)] = { - [sym_bracketed_type] = STATE(3448), - [sym_generic_type] = STATE(3450), - [sym_generic_type_with_turbofish] = STATE(3159), - [sym_macro_invocation] = STATE(2150), - [sym_scoped_identifier] = STATE(2016), - [sym_scoped_type_identifier] = STATE(2988), - [sym_const_block] = STATE(2150), - [sym_closure_expression] = STATE(3069), - [sym_closure_parameters] = STATE(239), - [sym__pattern] = STATE(2770), - [sym_generic_pattern] = STATE(2150), - [sym_tuple_pattern] = STATE(2150), - [sym_slice_pattern] = STATE(2150), - [sym_tuple_struct_pattern] = STATE(2150), - [sym_struct_pattern] = STATE(2150), - [sym_remaining_field_pattern] = STATE(2150), - [sym_mut_pattern] = STATE(2150), - [sym_range_pattern] = STATE(2150), - [sym_ref_pattern] = STATE(2150), - [sym_captured_pattern] = STATE(2150), - [sym_reference_pattern] = STATE(2150), - [sym_or_pattern] = STATE(2150), - [sym__literal_pattern] = STATE(2076), - [sym_negative_literal] = STATE(2074), - [sym_string_literal] = STATE(2074), - [sym_raw_string_literal] = STATE(2074), - [sym_boolean_literal] = STATE(2074), + [sym_attribute_item] = STATE(1403), + [sym_inner_attribute_item] = STATE(1403), + [sym_bracketed_type] = STATE(3677), + [sym_generic_type] = STATE(3475), + [sym_generic_type_with_turbofish] = STATE(3405), + [sym_macro_invocation] = STATE(2996), + [sym_scoped_identifier] = STATE(2238), + [sym_scoped_type_identifier] = STATE(3090), + [sym_match_arm] = STATE(1404), + [sym_match_pattern] = STATE(3771), + [sym_const_block] = STATE(2996), + [sym__pattern] = STATE(2947), + [sym_generic_pattern] = STATE(2996), + [sym_tuple_pattern] = STATE(2996), + [sym_slice_pattern] = STATE(2996), + [sym_tuple_struct_pattern] = STATE(2996), + [sym_struct_pattern] = STATE(2996), + [sym_remaining_field_pattern] = STATE(2996), + [sym_mut_pattern] = STATE(2996), + [sym_range_pattern] = STATE(2996), + [sym_ref_pattern] = STATE(2996), + [sym_captured_pattern] = STATE(2996), + [sym_reference_pattern] = STATE(2996), + [sym_or_pattern] = STATE(2996), + [sym__literal_pattern] = STATE(2429), + [sym_negative_literal] = STATE(2440), + [sym_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_boolean_literal] = STATE(2440), [sym_line_comment] = STATE(493), [sym_block_comment] = STATE(493), - [sym_identifier] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_RPAREN] = ACTIONS(1800), - [anon_sym_LBRACK] = ACTIONS(1782), - [anon_sym_u8] = ACTIONS(1784), - [anon_sym_i8] = ACTIONS(1784), - [anon_sym_u16] = ACTIONS(1784), - [anon_sym_i16] = ACTIONS(1784), - [anon_sym_u32] = ACTIONS(1784), - [anon_sym_i32] = ACTIONS(1784), - [anon_sym_u64] = ACTIONS(1784), - [anon_sym_i64] = ACTIONS(1784), - [anon_sym_u128] = ACTIONS(1784), - [anon_sym_i128] = ACTIONS(1784), - [anon_sym_isize] = ACTIONS(1784), - [anon_sym_usize] = ACTIONS(1784), - [anon_sym_f32] = ACTIONS(1784), - [anon_sym_f64] = ACTIONS(1784), - [anon_sym_bool] = ACTIONS(1784), - [anon_sym_str] = ACTIONS(1784), - [anon_sym_char] = ACTIONS(1784), - [anon_sym_DASH] = ACTIONS(1241), - [anon_sym_AMP] = ACTIONS(1786), - [anon_sym_PIPE] = ACTIONS(1449), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1451), - [anon_sym_DOT_DOT] = ACTIONS(1251), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1255), - [anon_sym_COMMA] = ACTIONS(1453), - [anon_sym_COLON_COLON] = ACTIONS(1790), - [anon_sym_const] = ACTIONS(1792), - [anon_sym_default] = ACTIONS(1794), - [anon_sym_gen] = ACTIONS(1794), - [anon_sym_static] = ACTIONS(1455), - [anon_sym_union] = ACTIONS(1794), - [anon_sym_ref] = ACTIONS(1281), - [sym_mutable_specifier] = ACTIONS(1457), - [anon_sym_move] = ACTIONS(1459), - [sym_integer_literal] = ACTIONS(1287), - [aux_sym_string_literal_token1] = ACTIONS(1289), - [sym_char_literal] = ACTIONS(1287), - [anon_sym_true] = ACTIONS(1291), - [anon_sym_false] = ACTIONS(1291), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1796), - [sym_super] = ACTIONS(1796), - [sym_crate] = ACTIONS(1796), - [sym_metavariable] = ACTIONS(1798), - [sym__raw_string_literal_start] = ACTIONS(1299), - [sym_float_literal] = ACTIONS(1287), + [aux_sym_match_block_repeat1] = STATE(493), + [aux_sym_match_arm_repeat1] = STATE(787), + [sym_identifier] = ACTIONS(1712), + [anon_sym_LPAREN] = ACTIONS(1715), + [anon_sym_LBRACK] = ACTIONS(1718), + [anon_sym_u8] = ACTIONS(1721), + [anon_sym_i8] = ACTIONS(1721), + [anon_sym_u16] = ACTIONS(1721), + [anon_sym_i16] = ACTIONS(1721), + [anon_sym_u32] = ACTIONS(1721), + [anon_sym_i32] = ACTIONS(1721), + [anon_sym_u64] = ACTIONS(1721), + [anon_sym_i64] = ACTIONS(1721), + [anon_sym_u128] = ACTIONS(1721), + [anon_sym_i128] = ACTIONS(1721), + [anon_sym_isize] = ACTIONS(1721), + [anon_sym_usize] = ACTIONS(1721), + [anon_sym_f32] = ACTIONS(1721), + [anon_sym_f64] = ACTIONS(1721), + [anon_sym_bool] = ACTIONS(1721), + [anon_sym_str] = ACTIONS(1721), + [anon_sym_char] = ACTIONS(1721), + [anon_sym_DASH] = ACTIONS(1724), + [anon_sym_AMP] = ACTIONS(1727), + [anon_sym_PIPE] = ACTIONS(1730), + [anon_sym_LT] = ACTIONS(1733), + [anon_sym__] = ACTIONS(1736), + [anon_sym_DOT_DOT] = ACTIONS(1739), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1742), + [anon_sym_COLON_COLON] = ACTIONS(1745), + [anon_sym_POUND] = ACTIONS(1748), + [anon_sym_const] = ACTIONS(1751), + [anon_sym_default] = ACTIONS(1754), + [anon_sym_gen] = ACTIONS(1754), + [anon_sym_union] = ACTIONS(1754), + [anon_sym_ref] = ACTIONS(1757), + [sym_mutable_specifier] = ACTIONS(1760), + [sym_integer_literal] = ACTIONS(1763), + [aux_sym_string_literal_token1] = ACTIONS(1766), + [sym_char_literal] = ACTIONS(1763), + [anon_sym_true] = ACTIONS(1769), + [anon_sym_false] = ACTIONS(1769), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1772), + [sym_super] = ACTIONS(1772), + [sym_crate] = ACTIONS(1772), + [sym_metavariable] = ACTIONS(1775), + [sym__raw_string_literal_start] = ACTIONS(1778), + [sym_float_literal] = ACTIONS(1763), }, [STATE(494)] = { [sym_line_comment] = STATE(494), [sym_block_comment] = STATE(494), - [ts_builtin_sym_end] = ACTIONS(1802), - [sym_identifier] = ACTIONS(1804), - [anon_sym_SEMI] = ACTIONS(1802), - [anon_sym_macro_rules_BANG] = ACTIONS(1802), - [anon_sym_LPAREN] = ACTIONS(1802), - [anon_sym_LBRACK] = ACTIONS(1802), - [anon_sym_LBRACE] = ACTIONS(1802), - [anon_sym_RBRACE] = ACTIONS(1802), - [anon_sym_STAR] = ACTIONS(1802), - [anon_sym_u8] = ACTIONS(1804), - [anon_sym_i8] = ACTIONS(1804), - [anon_sym_u16] = ACTIONS(1804), - [anon_sym_i16] = ACTIONS(1804), - [anon_sym_u32] = ACTIONS(1804), - [anon_sym_i32] = ACTIONS(1804), - [anon_sym_u64] = ACTIONS(1804), - [anon_sym_i64] = ACTIONS(1804), - [anon_sym_u128] = ACTIONS(1804), - [anon_sym_i128] = ACTIONS(1804), - [anon_sym_isize] = ACTIONS(1804), - [anon_sym_usize] = ACTIONS(1804), - [anon_sym_f32] = ACTIONS(1804), - [anon_sym_f64] = ACTIONS(1804), - [anon_sym_bool] = ACTIONS(1804), - [anon_sym_str] = ACTIONS(1804), - [anon_sym_char] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1802), - [anon_sym_BANG] = ACTIONS(1802), - [anon_sym_AMP] = ACTIONS(1802), - [anon_sym_PIPE] = ACTIONS(1802), - [anon_sym_LT] = ACTIONS(1802), - [anon_sym_DOT_DOT] = ACTIONS(1802), - [anon_sym_COLON_COLON] = ACTIONS(1802), - [anon_sym_POUND] = ACTIONS(1802), - [anon_sym_SQUOTE] = ACTIONS(1804), - [anon_sym_async] = ACTIONS(1804), - [anon_sym_break] = ACTIONS(1804), - [anon_sym_const] = ACTIONS(1804), - [anon_sym_continue] = ACTIONS(1804), - [anon_sym_default] = ACTIONS(1804), - [anon_sym_enum] = ACTIONS(1804), - [anon_sym_fn] = ACTIONS(1804), - [anon_sym_for] = ACTIONS(1804), - [anon_sym_gen] = ACTIONS(1804), - [anon_sym_if] = ACTIONS(1804), - [anon_sym_impl] = ACTIONS(1804), - [anon_sym_let] = ACTIONS(1804), - [anon_sym_loop] = ACTIONS(1804), - [anon_sym_match] = ACTIONS(1804), - [anon_sym_mod] = ACTIONS(1804), - [anon_sym_pub] = ACTIONS(1804), - [anon_sym_return] = ACTIONS(1804), - [anon_sym_static] = ACTIONS(1804), - [anon_sym_struct] = ACTIONS(1804), - [anon_sym_trait] = ACTIONS(1804), - [anon_sym_type] = ACTIONS(1804), - [anon_sym_union] = ACTIONS(1804), - [anon_sym_unsafe] = ACTIONS(1804), - [anon_sym_use] = ACTIONS(1804), - [anon_sym_while] = ACTIONS(1804), - [anon_sym_extern] = ACTIONS(1804), - [anon_sym_yield] = ACTIONS(1804), - [anon_sym_move] = ACTIONS(1804), - [anon_sym_try] = ACTIONS(1804), - [sym_integer_literal] = ACTIONS(1802), - [aux_sym_string_literal_token1] = ACTIONS(1802), - [sym_char_literal] = ACTIONS(1802), - [anon_sym_true] = ACTIONS(1804), - [anon_sym_false] = ACTIONS(1804), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1804), - [sym_super] = ACTIONS(1804), - [sym_crate] = ACTIONS(1804), - [sym_metavariable] = ACTIONS(1802), - [sym__raw_string_literal_start] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1802), + [ts_builtin_sym_end] = ACTIONS(1781), + [sym_identifier] = ACTIONS(1783), + [anon_sym_SEMI] = ACTIONS(1781), + [anon_sym_macro_rules_BANG] = ACTIONS(1781), + [anon_sym_LPAREN] = ACTIONS(1781), + [anon_sym_LBRACK] = ACTIONS(1781), + [anon_sym_LBRACE] = ACTIONS(1781), + [anon_sym_RBRACE] = ACTIONS(1781), + [anon_sym_STAR] = ACTIONS(1781), + [anon_sym_u8] = ACTIONS(1783), + [anon_sym_i8] = ACTIONS(1783), + [anon_sym_u16] = ACTIONS(1783), + [anon_sym_i16] = ACTIONS(1783), + [anon_sym_u32] = ACTIONS(1783), + [anon_sym_i32] = ACTIONS(1783), + [anon_sym_u64] = ACTIONS(1783), + [anon_sym_i64] = ACTIONS(1783), + [anon_sym_u128] = ACTIONS(1783), + [anon_sym_i128] = ACTIONS(1783), + [anon_sym_isize] = ACTIONS(1783), + [anon_sym_usize] = ACTIONS(1783), + [anon_sym_f32] = ACTIONS(1783), + [anon_sym_f64] = ACTIONS(1783), + [anon_sym_bool] = ACTIONS(1783), + [anon_sym_str] = ACTIONS(1783), + [anon_sym_char] = ACTIONS(1783), + [anon_sym_DASH] = ACTIONS(1781), + [anon_sym_BANG] = ACTIONS(1781), + [anon_sym_AMP] = ACTIONS(1781), + [anon_sym_PIPE] = ACTIONS(1781), + [anon_sym_LT] = ACTIONS(1781), + [anon_sym_DOT_DOT] = ACTIONS(1781), + [anon_sym_COLON_COLON] = ACTIONS(1781), + [anon_sym_POUND] = ACTIONS(1781), + [anon_sym_SQUOTE] = ACTIONS(1783), + [anon_sym_async] = ACTIONS(1783), + [anon_sym_break] = ACTIONS(1783), + [anon_sym_const] = ACTIONS(1783), + [anon_sym_continue] = ACTIONS(1783), + [anon_sym_default] = ACTIONS(1783), + [anon_sym_enum] = ACTIONS(1783), + [anon_sym_fn] = ACTIONS(1783), + [anon_sym_for] = ACTIONS(1783), + [anon_sym_gen] = ACTIONS(1783), + [anon_sym_if] = ACTIONS(1783), + [anon_sym_impl] = ACTIONS(1783), + [anon_sym_let] = ACTIONS(1783), + [anon_sym_loop] = ACTIONS(1783), + [anon_sym_match] = ACTIONS(1783), + [anon_sym_mod] = ACTIONS(1783), + [anon_sym_pub] = ACTIONS(1783), + [anon_sym_return] = ACTIONS(1783), + [anon_sym_static] = ACTIONS(1783), + [anon_sym_struct] = ACTIONS(1783), + [anon_sym_trait] = ACTIONS(1783), + [anon_sym_type] = ACTIONS(1783), + [anon_sym_union] = ACTIONS(1783), + [anon_sym_unsafe] = ACTIONS(1783), + [anon_sym_use] = ACTIONS(1783), + [anon_sym_while] = ACTIONS(1783), + [anon_sym_extern] = ACTIONS(1783), + [anon_sym_safe] = ACTIONS(1783), + [anon_sym_yield] = ACTIONS(1783), + [anon_sym_move] = ACTIONS(1783), + [anon_sym_try] = ACTIONS(1783), + [sym_integer_literal] = ACTIONS(1781), + [aux_sym_string_literal_token1] = ACTIONS(1781), + [sym_char_literal] = ACTIONS(1781), + [anon_sym_true] = ACTIONS(1783), + [anon_sym_false] = ACTIONS(1783), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1783), + [sym_super] = ACTIONS(1783), + [sym_crate] = ACTIONS(1783), + [sym_metavariable] = ACTIONS(1781), + [sym__raw_string_literal_start] = ACTIONS(1781), + [sym_float_literal] = ACTIONS(1781), }, [STATE(495)] = { [sym_line_comment] = STATE(495), [sym_block_comment] = STATE(495), - [ts_builtin_sym_end] = ACTIONS(1806), - [sym_identifier] = ACTIONS(1808), - [anon_sym_SEMI] = ACTIONS(1806), - [anon_sym_macro_rules_BANG] = ACTIONS(1806), - [anon_sym_LPAREN] = ACTIONS(1806), - [anon_sym_LBRACK] = ACTIONS(1806), - [anon_sym_LBRACE] = ACTIONS(1806), - [anon_sym_RBRACE] = ACTIONS(1806), - [anon_sym_STAR] = ACTIONS(1806), - [anon_sym_u8] = ACTIONS(1808), - [anon_sym_i8] = ACTIONS(1808), - [anon_sym_u16] = ACTIONS(1808), - [anon_sym_i16] = ACTIONS(1808), - [anon_sym_u32] = ACTIONS(1808), - [anon_sym_i32] = ACTIONS(1808), - [anon_sym_u64] = ACTIONS(1808), - [anon_sym_i64] = ACTIONS(1808), - [anon_sym_u128] = ACTIONS(1808), - [anon_sym_i128] = ACTIONS(1808), - [anon_sym_isize] = ACTIONS(1808), - [anon_sym_usize] = ACTIONS(1808), - [anon_sym_f32] = ACTIONS(1808), - [anon_sym_f64] = ACTIONS(1808), - [anon_sym_bool] = ACTIONS(1808), - [anon_sym_str] = ACTIONS(1808), - [anon_sym_char] = ACTIONS(1808), - [anon_sym_DASH] = ACTIONS(1806), - [anon_sym_BANG] = ACTIONS(1806), - [anon_sym_AMP] = ACTIONS(1806), - [anon_sym_PIPE] = ACTIONS(1806), - [anon_sym_LT] = ACTIONS(1806), - [anon_sym_DOT_DOT] = ACTIONS(1806), - [anon_sym_COLON_COLON] = ACTIONS(1806), - [anon_sym_POUND] = ACTIONS(1806), - [anon_sym_SQUOTE] = ACTIONS(1808), - [anon_sym_async] = ACTIONS(1808), - [anon_sym_break] = ACTIONS(1808), - [anon_sym_const] = ACTIONS(1808), - [anon_sym_continue] = ACTIONS(1808), - [anon_sym_default] = ACTIONS(1808), - [anon_sym_enum] = ACTIONS(1808), - [anon_sym_fn] = ACTIONS(1808), - [anon_sym_for] = ACTIONS(1808), - [anon_sym_gen] = ACTIONS(1808), - [anon_sym_if] = ACTIONS(1808), - [anon_sym_impl] = ACTIONS(1808), - [anon_sym_let] = ACTIONS(1808), - [anon_sym_loop] = ACTIONS(1808), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_mod] = ACTIONS(1808), - [anon_sym_pub] = ACTIONS(1808), - [anon_sym_return] = ACTIONS(1808), - [anon_sym_static] = ACTIONS(1808), - [anon_sym_struct] = ACTIONS(1808), - [anon_sym_trait] = ACTIONS(1808), - [anon_sym_type] = ACTIONS(1808), - [anon_sym_union] = ACTIONS(1808), - [anon_sym_unsafe] = ACTIONS(1808), - [anon_sym_use] = ACTIONS(1808), - [anon_sym_while] = ACTIONS(1808), - [anon_sym_extern] = ACTIONS(1808), - [anon_sym_yield] = ACTIONS(1808), - [anon_sym_move] = ACTIONS(1808), - [anon_sym_try] = ACTIONS(1808), - [sym_integer_literal] = ACTIONS(1806), - [aux_sym_string_literal_token1] = ACTIONS(1806), - [sym_char_literal] = ACTIONS(1806), - [anon_sym_true] = ACTIONS(1808), - [anon_sym_false] = ACTIONS(1808), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1808), - [sym_super] = ACTIONS(1808), - [sym_crate] = ACTIONS(1808), - [sym_metavariable] = ACTIONS(1806), - [sym__raw_string_literal_start] = ACTIONS(1806), - [sym_float_literal] = ACTIONS(1806), + [ts_builtin_sym_end] = ACTIONS(1785), + [sym_identifier] = ACTIONS(1787), + [anon_sym_SEMI] = ACTIONS(1785), + [anon_sym_macro_rules_BANG] = ACTIONS(1785), + [anon_sym_LPAREN] = ACTIONS(1785), + [anon_sym_LBRACK] = ACTIONS(1785), + [anon_sym_LBRACE] = ACTIONS(1785), + [anon_sym_RBRACE] = ACTIONS(1785), + [anon_sym_STAR] = ACTIONS(1785), + [anon_sym_u8] = ACTIONS(1787), + [anon_sym_i8] = ACTIONS(1787), + [anon_sym_u16] = ACTIONS(1787), + [anon_sym_i16] = ACTIONS(1787), + [anon_sym_u32] = ACTIONS(1787), + [anon_sym_i32] = ACTIONS(1787), + [anon_sym_u64] = ACTIONS(1787), + [anon_sym_i64] = ACTIONS(1787), + [anon_sym_u128] = ACTIONS(1787), + [anon_sym_i128] = ACTIONS(1787), + [anon_sym_isize] = ACTIONS(1787), + [anon_sym_usize] = ACTIONS(1787), + [anon_sym_f32] = ACTIONS(1787), + [anon_sym_f64] = ACTIONS(1787), + [anon_sym_bool] = ACTIONS(1787), + [anon_sym_str] = ACTIONS(1787), + [anon_sym_char] = ACTIONS(1787), + [anon_sym_DASH] = ACTIONS(1785), + [anon_sym_BANG] = ACTIONS(1785), + [anon_sym_AMP] = ACTIONS(1785), + [anon_sym_PIPE] = ACTIONS(1785), + [anon_sym_LT] = ACTIONS(1785), + [anon_sym_DOT_DOT] = ACTIONS(1785), + [anon_sym_COLON_COLON] = ACTIONS(1785), + [anon_sym_POUND] = ACTIONS(1785), + [anon_sym_SQUOTE] = ACTIONS(1787), + [anon_sym_async] = ACTIONS(1787), + [anon_sym_break] = ACTIONS(1787), + [anon_sym_const] = ACTIONS(1787), + [anon_sym_continue] = ACTIONS(1787), + [anon_sym_default] = ACTIONS(1787), + [anon_sym_enum] = ACTIONS(1787), + [anon_sym_fn] = ACTIONS(1787), + [anon_sym_for] = ACTIONS(1787), + [anon_sym_gen] = ACTIONS(1787), + [anon_sym_if] = ACTIONS(1787), + [anon_sym_impl] = ACTIONS(1787), + [anon_sym_let] = ACTIONS(1787), + [anon_sym_loop] = ACTIONS(1787), + [anon_sym_match] = ACTIONS(1787), + [anon_sym_mod] = ACTIONS(1787), + [anon_sym_pub] = ACTIONS(1787), + [anon_sym_return] = ACTIONS(1787), + [anon_sym_static] = ACTIONS(1787), + [anon_sym_struct] = ACTIONS(1787), + [anon_sym_trait] = ACTIONS(1787), + [anon_sym_type] = ACTIONS(1787), + [anon_sym_union] = ACTIONS(1787), + [anon_sym_unsafe] = ACTIONS(1787), + [anon_sym_use] = ACTIONS(1787), + [anon_sym_while] = ACTIONS(1787), + [anon_sym_extern] = ACTIONS(1787), + [anon_sym_safe] = ACTIONS(1787), + [anon_sym_yield] = ACTIONS(1787), + [anon_sym_move] = ACTIONS(1787), + [anon_sym_try] = ACTIONS(1787), + [sym_integer_literal] = ACTIONS(1785), + [aux_sym_string_literal_token1] = ACTIONS(1785), + [sym_char_literal] = ACTIONS(1785), + [anon_sym_true] = ACTIONS(1787), + [anon_sym_false] = ACTIONS(1787), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1787), + [sym_super] = ACTIONS(1787), + [sym_crate] = ACTIONS(1787), + [sym_metavariable] = ACTIONS(1785), + [sym__raw_string_literal_start] = ACTIONS(1785), + [sym_float_literal] = ACTIONS(1785), }, [STATE(496)] = { [sym_line_comment] = STATE(496), [sym_block_comment] = STATE(496), - [ts_builtin_sym_end] = ACTIONS(1810), - [sym_identifier] = ACTIONS(1812), - [anon_sym_SEMI] = ACTIONS(1810), - [anon_sym_macro_rules_BANG] = ACTIONS(1810), - [anon_sym_LPAREN] = ACTIONS(1810), - [anon_sym_LBRACK] = ACTIONS(1810), - [anon_sym_LBRACE] = ACTIONS(1810), - [anon_sym_RBRACE] = ACTIONS(1810), - [anon_sym_STAR] = ACTIONS(1810), - [anon_sym_u8] = ACTIONS(1812), - [anon_sym_i8] = ACTIONS(1812), - [anon_sym_u16] = ACTIONS(1812), - [anon_sym_i16] = ACTIONS(1812), - [anon_sym_u32] = ACTIONS(1812), - [anon_sym_i32] = ACTIONS(1812), - [anon_sym_u64] = ACTIONS(1812), - [anon_sym_i64] = ACTIONS(1812), - [anon_sym_u128] = ACTIONS(1812), - [anon_sym_i128] = ACTIONS(1812), - [anon_sym_isize] = ACTIONS(1812), - [anon_sym_usize] = ACTIONS(1812), - [anon_sym_f32] = ACTIONS(1812), - [anon_sym_f64] = ACTIONS(1812), - [anon_sym_bool] = ACTIONS(1812), - [anon_sym_str] = ACTIONS(1812), - [anon_sym_char] = ACTIONS(1812), - [anon_sym_DASH] = ACTIONS(1810), - [anon_sym_BANG] = ACTIONS(1810), - [anon_sym_AMP] = ACTIONS(1810), - [anon_sym_PIPE] = ACTIONS(1810), - [anon_sym_LT] = ACTIONS(1810), - [anon_sym_DOT_DOT] = ACTIONS(1810), - [anon_sym_COLON_COLON] = ACTIONS(1810), - [anon_sym_POUND] = ACTIONS(1810), - [anon_sym_SQUOTE] = ACTIONS(1812), - [anon_sym_async] = ACTIONS(1812), - [anon_sym_break] = ACTIONS(1812), - [anon_sym_const] = ACTIONS(1812), - [anon_sym_continue] = ACTIONS(1812), - [anon_sym_default] = ACTIONS(1812), - [anon_sym_enum] = ACTIONS(1812), - [anon_sym_fn] = ACTIONS(1812), - [anon_sym_for] = ACTIONS(1812), - [anon_sym_gen] = ACTIONS(1812), - [anon_sym_if] = ACTIONS(1812), - [anon_sym_impl] = ACTIONS(1812), - [anon_sym_let] = ACTIONS(1812), - [anon_sym_loop] = ACTIONS(1812), - [anon_sym_match] = ACTIONS(1812), - [anon_sym_mod] = ACTIONS(1812), - [anon_sym_pub] = ACTIONS(1812), - [anon_sym_return] = ACTIONS(1812), - [anon_sym_static] = ACTIONS(1812), - [anon_sym_struct] = ACTIONS(1812), - [anon_sym_trait] = ACTIONS(1812), - [anon_sym_type] = ACTIONS(1812), - [anon_sym_union] = ACTIONS(1812), - [anon_sym_unsafe] = ACTIONS(1812), - [anon_sym_use] = ACTIONS(1812), - [anon_sym_while] = ACTIONS(1812), - [anon_sym_extern] = ACTIONS(1812), - [anon_sym_yield] = ACTIONS(1812), - [anon_sym_move] = ACTIONS(1812), - [anon_sym_try] = ACTIONS(1812), - [sym_integer_literal] = ACTIONS(1810), - [aux_sym_string_literal_token1] = ACTIONS(1810), - [sym_char_literal] = ACTIONS(1810), - [anon_sym_true] = ACTIONS(1812), - [anon_sym_false] = ACTIONS(1812), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1812), - [sym_super] = ACTIONS(1812), - [sym_crate] = ACTIONS(1812), - [sym_metavariable] = ACTIONS(1810), - [sym__raw_string_literal_start] = ACTIONS(1810), - [sym_float_literal] = ACTIONS(1810), + [ts_builtin_sym_end] = ACTIONS(1789), + [sym_identifier] = ACTIONS(1791), + [anon_sym_SEMI] = ACTIONS(1789), + [anon_sym_macro_rules_BANG] = ACTIONS(1789), + [anon_sym_LPAREN] = ACTIONS(1789), + [anon_sym_LBRACK] = ACTIONS(1789), + [anon_sym_LBRACE] = ACTIONS(1789), + [anon_sym_RBRACE] = ACTIONS(1789), + [anon_sym_STAR] = ACTIONS(1789), + [anon_sym_u8] = ACTIONS(1791), + [anon_sym_i8] = ACTIONS(1791), + [anon_sym_u16] = ACTIONS(1791), + [anon_sym_i16] = ACTIONS(1791), + [anon_sym_u32] = ACTIONS(1791), + [anon_sym_i32] = ACTIONS(1791), + [anon_sym_u64] = ACTIONS(1791), + [anon_sym_i64] = ACTIONS(1791), + [anon_sym_u128] = ACTIONS(1791), + [anon_sym_i128] = ACTIONS(1791), + [anon_sym_isize] = ACTIONS(1791), + [anon_sym_usize] = ACTIONS(1791), + [anon_sym_f32] = ACTIONS(1791), + [anon_sym_f64] = ACTIONS(1791), + [anon_sym_bool] = ACTIONS(1791), + [anon_sym_str] = ACTIONS(1791), + [anon_sym_char] = ACTIONS(1791), + [anon_sym_DASH] = ACTIONS(1789), + [anon_sym_BANG] = ACTIONS(1789), + [anon_sym_AMP] = ACTIONS(1789), + [anon_sym_PIPE] = ACTIONS(1789), + [anon_sym_LT] = ACTIONS(1789), + [anon_sym_DOT_DOT] = ACTIONS(1789), + [anon_sym_COLON_COLON] = ACTIONS(1789), + [anon_sym_POUND] = ACTIONS(1789), + [anon_sym_SQUOTE] = ACTIONS(1791), + [anon_sym_async] = ACTIONS(1791), + [anon_sym_break] = ACTIONS(1791), + [anon_sym_const] = ACTIONS(1791), + [anon_sym_continue] = ACTIONS(1791), + [anon_sym_default] = ACTIONS(1791), + [anon_sym_enum] = ACTIONS(1791), + [anon_sym_fn] = ACTIONS(1791), + [anon_sym_for] = ACTIONS(1791), + [anon_sym_gen] = ACTIONS(1791), + [anon_sym_if] = ACTIONS(1791), + [anon_sym_impl] = ACTIONS(1791), + [anon_sym_let] = ACTIONS(1791), + [anon_sym_loop] = ACTIONS(1791), + [anon_sym_match] = ACTIONS(1791), + [anon_sym_mod] = ACTIONS(1791), + [anon_sym_pub] = ACTIONS(1791), + [anon_sym_return] = ACTIONS(1791), + [anon_sym_static] = ACTIONS(1791), + [anon_sym_struct] = ACTIONS(1791), + [anon_sym_trait] = ACTIONS(1791), + [anon_sym_type] = ACTIONS(1791), + [anon_sym_union] = ACTIONS(1791), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_use] = ACTIONS(1791), + [anon_sym_while] = ACTIONS(1791), + [anon_sym_extern] = ACTIONS(1791), + [anon_sym_safe] = ACTIONS(1791), + [anon_sym_yield] = ACTIONS(1791), + [anon_sym_move] = ACTIONS(1791), + [anon_sym_try] = ACTIONS(1791), + [sym_integer_literal] = ACTIONS(1789), + [aux_sym_string_literal_token1] = ACTIONS(1789), + [sym_char_literal] = ACTIONS(1789), + [anon_sym_true] = ACTIONS(1791), + [anon_sym_false] = ACTIONS(1791), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1791), + [sym_super] = ACTIONS(1791), + [sym_crate] = ACTIONS(1791), + [sym_metavariable] = ACTIONS(1789), + [sym__raw_string_literal_start] = ACTIONS(1789), + [sym_float_literal] = ACTIONS(1789), }, [STATE(497)] = { [sym_line_comment] = STATE(497), [sym_block_comment] = STATE(497), - [ts_builtin_sym_end] = ACTIONS(1814), - [sym_identifier] = ACTIONS(1816), - [anon_sym_SEMI] = ACTIONS(1814), - [anon_sym_macro_rules_BANG] = ACTIONS(1814), - [anon_sym_LPAREN] = ACTIONS(1814), - [anon_sym_LBRACK] = ACTIONS(1814), - [anon_sym_LBRACE] = ACTIONS(1814), - [anon_sym_RBRACE] = ACTIONS(1814), - [anon_sym_STAR] = ACTIONS(1814), - [anon_sym_u8] = ACTIONS(1816), - [anon_sym_i8] = ACTIONS(1816), - [anon_sym_u16] = ACTIONS(1816), - [anon_sym_i16] = ACTIONS(1816), - [anon_sym_u32] = ACTIONS(1816), - [anon_sym_i32] = ACTIONS(1816), - [anon_sym_u64] = ACTIONS(1816), - [anon_sym_i64] = ACTIONS(1816), - [anon_sym_u128] = ACTIONS(1816), - [anon_sym_i128] = ACTIONS(1816), - [anon_sym_isize] = ACTIONS(1816), - [anon_sym_usize] = ACTIONS(1816), - [anon_sym_f32] = ACTIONS(1816), - [anon_sym_f64] = ACTIONS(1816), - [anon_sym_bool] = ACTIONS(1816), - [anon_sym_str] = ACTIONS(1816), - [anon_sym_char] = ACTIONS(1816), - [anon_sym_DASH] = ACTIONS(1814), - [anon_sym_BANG] = ACTIONS(1814), - [anon_sym_AMP] = ACTIONS(1814), - [anon_sym_PIPE] = ACTIONS(1814), - [anon_sym_LT] = ACTIONS(1814), - [anon_sym_DOT_DOT] = ACTIONS(1814), - [anon_sym_COLON_COLON] = ACTIONS(1814), - [anon_sym_POUND] = ACTIONS(1814), - [anon_sym_SQUOTE] = ACTIONS(1816), - [anon_sym_async] = ACTIONS(1816), - [anon_sym_break] = ACTIONS(1816), - [anon_sym_const] = ACTIONS(1816), - [anon_sym_continue] = ACTIONS(1816), - [anon_sym_default] = ACTIONS(1816), - [anon_sym_enum] = ACTIONS(1816), - [anon_sym_fn] = ACTIONS(1816), - [anon_sym_for] = ACTIONS(1816), - [anon_sym_gen] = ACTIONS(1816), - [anon_sym_if] = ACTIONS(1816), - [anon_sym_impl] = ACTIONS(1816), - [anon_sym_let] = ACTIONS(1816), - [anon_sym_loop] = ACTIONS(1816), - [anon_sym_match] = ACTIONS(1816), - [anon_sym_mod] = ACTIONS(1816), - [anon_sym_pub] = ACTIONS(1816), - [anon_sym_return] = ACTIONS(1816), - [anon_sym_static] = ACTIONS(1816), - [anon_sym_struct] = ACTIONS(1816), - [anon_sym_trait] = ACTIONS(1816), - [anon_sym_type] = ACTIONS(1816), - [anon_sym_union] = ACTIONS(1816), - [anon_sym_unsafe] = ACTIONS(1816), - [anon_sym_use] = ACTIONS(1816), - [anon_sym_while] = ACTIONS(1816), - [anon_sym_extern] = ACTIONS(1816), - [anon_sym_yield] = ACTIONS(1816), - [anon_sym_move] = ACTIONS(1816), - [anon_sym_try] = ACTIONS(1816), - [sym_integer_literal] = ACTIONS(1814), - [aux_sym_string_literal_token1] = ACTIONS(1814), - [sym_char_literal] = ACTIONS(1814), - [anon_sym_true] = ACTIONS(1816), - [anon_sym_false] = ACTIONS(1816), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1816), - [sym_super] = ACTIONS(1816), - [sym_crate] = ACTIONS(1816), - [sym_metavariable] = ACTIONS(1814), - [sym__raw_string_literal_start] = ACTIONS(1814), - [sym_float_literal] = ACTIONS(1814), + [ts_builtin_sym_end] = ACTIONS(1793), + [sym_identifier] = ACTIONS(1795), + [anon_sym_SEMI] = ACTIONS(1793), + [anon_sym_macro_rules_BANG] = ACTIONS(1793), + [anon_sym_LPAREN] = ACTIONS(1793), + [anon_sym_LBRACK] = ACTIONS(1793), + [anon_sym_LBRACE] = ACTIONS(1793), + [anon_sym_RBRACE] = ACTIONS(1793), + [anon_sym_STAR] = ACTIONS(1793), + [anon_sym_u8] = ACTIONS(1795), + [anon_sym_i8] = ACTIONS(1795), + [anon_sym_u16] = ACTIONS(1795), + [anon_sym_i16] = ACTIONS(1795), + [anon_sym_u32] = ACTIONS(1795), + [anon_sym_i32] = ACTIONS(1795), + [anon_sym_u64] = ACTIONS(1795), + [anon_sym_i64] = ACTIONS(1795), + [anon_sym_u128] = ACTIONS(1795), + [anon_sym_i128] = ACTIONS(1795), + [anon_sym_isize] = ACTIONS(1795), + [anon_sym_usize] = ACTIONS(1795), + [anon_sym_f32] = ACTIONS(1795), + [anon_sym_f64] = ACTIONS(1795), + [anon_sym_bool] = ACTIONS(1795), + [anon_sym_str] = ACTIONS(1795), + [anon_sym_char] = ACTIONS(1795), + [anon_sym_DASH] = ACTIONS(1793), + [anon_sym_BANG] = ACTIONS(1793), + [anon_sym_AMP] = ACTIONS(1793), + [anon_sym_PIPE] = ACTIONS(1793), + [anon_sym_LT] = ACTIONS(1793), + [anon_sym_DOT_DOT] = ACTIONS(1793), + [anon_sym_COLON_COLON] = ACTIONS(1793), + [anon_sym_POUND] = ACTIONS(1793), + [anon_sym_SQUOTE] = ACTIONS(1795), + [anon_sym_async] = ACTIONS(1795), + [anon_sym_break] = ACTIONS(1795), + [anon_sym_const] = ACTIONS(1795), + [anon_sym_continue] = ACTIONS(1795), + [anon_sym_default] = ACTIONS(1795), + [anon_sym_enum] = ACTIONS(1795), + [anon_sym_fn] = ACTIONS(1795), + [anon_sym_for] = ACTIONS(1795), + [anon_sym_gen] = ACTIONS(1795), + [anon_sym_if] = ACTIONS(1795), + [anon_sym_impl] = ACTIONS(1795), + [anon_sym_let] = ACTIONS(1795), + [anon_sym_loop] = ACTIONS(1795), + [anon_sym_match] = ACTIONS(1795), + [anon_sym_mod] = ACTIONS(1795), + [anon_sym_pub] = ACTIONS(1795), + [anon_sym_return] = ACTIONS(1795), + [anon_sym_static] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(1795), + [anon_sym_trait] = ACTIONS(1795), + [anon_sym_type] = ACTIONS(1795), + [anon_sym_union] = ACTIONS(1795), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_use] = ACTIONS(1795), + [anon_sym_while] = ACTIONS(1795), + [anon_sym_extern] = ACTIONS(1795), + [anon_sym_safe] = ACTIONS(1795), + [anon_sym_yield] = ACTIONS(1795), + [anon_sym_move] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1795), + [sym_integer_literal] = ACTIONS(1793), + [aux_sym_string_literal_token1] = ACTIONS(1793), + [sym_char_literal] = ACTIONS(1793), + [anon_sym_true] = ACTIONS(1795), + [anon_sym_false] = ACTIONS(1795), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1795), + [sym_super] = ACTIONS(1795), + [sym_crate] = ACTIONS(1795), + [sym_metavariable] = ACTIONS(1793), + [sym__raw_string_literal_start] = ACTIONS(1793), + [sym_float_literal] = ACTIONS(1793), }, [STATE(498)] = { [sym_line_comment] = STATE(498), [sym_block_comment] = STATE(498), - [ts_builtin_sym_end] = ACTIONS(1818), - [sym_identifier] = ACTIONS(1820), - [anon_sym_SEMI] = ACTIONS(1818), - [anon_sym_macro_rules_BANG] = ACTIONS(1818), - [anon_sym_LPAREN] = ACTIONS(1818), - [anon_sym_LBRACK] = ACTIONS(1818), - [anon_sym_LBRACE] = ACTIONS(1818), - [anon_sym_RBRACE] = ACTIONS(1818), - [anon_sym_STAR] = ACTIONS(1818), - [anon_sym_u8] = ACTIONS(1820), - [anon_sym_i8] = ACTIONS(1820), - [anon_sym_u16] = ACTIONS(1820), - [anon_sym_i16] = ACTIONS(1820), - [anon_sym_u32] = ACTIONS(1820), - [anon_sym_i32] = ACTIONS(1820), - [anon_sym_u64] = ACTIONS(1820), - [anon_sym_i64] = ACTIONS(1820), - [anon_sym_u128] = ACTIONS(1820), - [anon_sym_i128] = ACTIONS(1820), - [anon_sym_isize] = ACTIONS(1820), - [anon_sym_usize] = ACTIONS(1820), - [anon_sym_f32] = ACTIONS(1820), - [anon_sym_f64] = ACTIONS(1820), - [anon_sym_bool] = ACTIONS(1820), - [anon_sym_str] = ACTIONS(1820), - [anon_sym_char] = ACTIONS(1820), - [anon_sym_DASH] = ACTIONS(1818), - [anon_sym_BANG] = ACTIONS(1818), - [anon_sym_AMP] = ACTIONS(1818), - [anon_sym_PIPE] = ACTIONS(1818), - [anon_sym_LT] = ACTIONS(1818), - [anon_sym_DOT_DOT] = ACTIONS(1818), - [anon_sym_COLON_COLON] = ACTIONS(1818), - [anon_sym_POUND] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_async] = ACTIONS(1820), - [anon_sym_break] = ACTIONS(1820), - [anon_sym_const] = ACTIONS(1820), - [anon_sym_continue] = ACTIONS(1820), - [anon_sym_default] = ACTIONS(1820), - [anon_sym_enum] = ACTIONS(1820), - [anon_sym_fn] = ACTIONS(1820), - [anon_sym_for] = ACTIONS(1820), - [anon_sym_gen] = ACTIONS(1820), - [anon_sym_if] = ACTIONS(1820), - [anon_sym_impl] = ACTIONS(1820), - [anon_sym_let] = ACTIONS(1820), - [anon_sym_loop] = ACTIONS(1820), - [anon_sym_match] = ACTIONS(1820), - [anon_sym_mod] = ACTIONS(1820), - [anon_sym_pub] = ACTIONS(1820), - [anon_sym_return] = ACTIONS(1820), - [anon_sym_static] = ACTIONS(1820), - [anon_sym_struct] = ACTIONS(1820), - [anon_sym_trait] = ACTIONS(1820), - [anon_sym_type] = ACTIONS(1820), - [anon_sym_union] = ACTIONS(1820), - [anon_sym_unsafe] = ACTIONS(1820), - [anon_sym_use] = ACTIONS(1820), - [anon_sym_while] = ACTIONS(1820), - [anon_sym_extern] = ACTIONS(1820), - [anon_sym_yield] = ACTIONS(1820), - [anon_sym_move] = ACTIONS(1820), - [anon_sym_try] = ACTIONS(1820), - [sym_integer_literal] = ACTIONS(1818), - [aux_sym_string_literal_token1] = ACTIONS(1818), - [sym_char_literal] = ACTIONS(1818), - [anon_sym_true] = ACTIONS(1820), - [anon_sym_false] = ACTIONS(1820), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1820), - [sym_super] = ACTIONS(1820), - [sym_crate] = ACTIONS(1820), - [sym_metavariable] = ACTIONS(1818), - [sym__raw_string_literal_start] = ACTIONS(1818), - [sym_float_literal] = ACTIONS(1818), + [ts_builtin_sym_end] = ACTIONS(1797), + [sym_identifier] = ACTIONS(1799), + [anon_sym_SEMI] = ACTIONS(1797), + [anon_sym_macro_rules_BANG] = ACTIONS(1797), + [anon_sym_LPAREN] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1797), + [anon_sym_LBRACE] = ACTIONS(1797), + [anon_sym_RBRACE] = ACTIONS(1797), + [anon_sym_STAR] = ACTIONS(1797), + [anon_sym_u8] = ACTIONS(1799), + [anon_sym_i8] = ACTIONS(1799), + [anon_sym_u16] = ACTIONS(1799), + [anon_sym_i16] = ACTIONS(1799), + [anon_sym_u32] = ACTIONS(1799), + [anon_sym_i32] = ACTIONS(1799), + [anon_sym_u64] = ACTIONS(1799), + [anon_sym_i64] = ACTIONS(1799), + [anon_sym_u128] = ACTIONS(1799), + [anon_sym_i128] = ACTIONS(1799), + [anon_sym_isize] = ACTIONS(1799), + [anon_sym_usize] = ACTIONS(1799), + [anon_sym_f32] = ACTIONS(1799), + [anon_sym_f64] = ACTIONS(1799), + [anon_sym_bool] = ACTIONS(1799), + [anon_sym_str] = ACTIONS(1799), + [anon_sym_char] = ACTIONS(1799), + [anon_sym_DASH] = ACTIONS(1797), + [anon_sym_BANG] = ACTIONS(1797), + [anon_sym_AMP] = ACTIONS(1797), + [anon_sym_PIPE] = ACTIONS(1797), + [anon_sym_LT] = ACTIONS(1797), + [anon_sym_DOT_DOT] = ACTIONS(1797), + [anon_sym_COLON_COLON] = ACTIONS(1797), + [anon_sym_POUND] = ACTIONS(1797), + [anon_sym_SQUOTE] = ACTIONS(1799), + [anon_sym_async] = ACTIONS(1799), + [anon_sym_break] = ACTIONS(1799), + [anon_sym_const] = ACTIONS(1799), + [anon_sym_continue] = ACTIONS(1799), + [anon_sym_default] = ACTIONS(1799), + [anon_sym_enum] = ACTIONS(1799), + [anon_sym_fn] = ACTIONS(1799), + [anon_sym_for] = ACTIONS(1799), + [anon_sym_gen] = ACTIONS(1799), + [anon_sym_if] = ACTIONS(1799), + [anon_sym_impl] = ACTIONS(1799), + [anon_sym_let] = ACTIONS(1799), + [anon_sym_loop] = ACTIONS(1799), + [anon_sym_match] = ACTIONS(1799), + [anon_sym_mod] = ACTIONS(1799), + [anon_sym_pub] = ACTIONS(1799), + [anon_sym_return] = ACTIONS(1799), + [anon_sym_static] = ACTIONS(1799), + [anon_sym_struct] = ACTIONS(1799), + [anon_sym_trait] = ACTIONS(1799), + [anon_sym_type] = ACTIONS(1799), + [anon_sym_union] = ACTIONS(1799), + [anon_sym_unsafe] = ACTIONS(1799), + [anon_sym_use] = ACTIONS(1799), + [anon_sym_while] = ACTIONS(1799), + [anon_sym_extern] = ACTIONS(1799), + [anon_sym_safe] = ACTIONS(1799), + [anon_sym_yield] = ACTIONS(1799), + [anon_sym_move] = ACTIONS(1799), + [anon_sym_try] = ACTIONS(1799), + [sym_integer_literal] = ACTIONS(1797), + [aux_sym_string_literal_token1] = ACTIONS(1797), + [sym_char_literal] = ACTIONS(1797), + [anon_sym_true] = ACTIONS(1799), + [anon_sym_false] = ACTIONS(1799), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1799), + [sym_super] = ACTIONS(1799), + [sym_crate] = ACTIONS(1799), + [sym_metavariable] = ACTIONS(1797), + [sym__raw_string_literal_start] = ACTIONS(1797), + [sym_float_literal] = ACTIONS(1797), }, [STATE(499)] = { [sym_line_comment] = STATE(499), [sym_block_comment] = STATE(499), - [ts_builtin_sym_end] = ACTIONS(1822), - [sym_identifier] = ACTIONS(1824), - [anon_sym_SEMI] = ACTIONS(1822), - [anon_sym_macro_rules_BANG] = ACTIONS(1822), - [anon_sym_LPAREN] = ACTIONS(1822), - [anon_sym_LBRACK] = ACTIONS(1822), - [anon_sym_LBRACE] = ACTIONS(1822), - [anon_sym_RBRACE] = ACTIONS(1822), - [anon_sym_STAR] = ACTIONS(1822), - [anon_sym_u8] = ACTIONS(1824), - [anon_sym_i8] = ACTIONS(1824), - [anon_sym_u16] = ACTIONS(1824), - [anon_sym_i16] = ACTIONS(1824), - [anon_sym_u32] = ACTIONS(1824), - [anon_sym_i32] = ACTIONS(1824), - [anon_sym_u64] = ACTIONS(1824), - [anon_sym_i64] = ACTIONS(1824), - [anon_sym_u128] = ACTIONS(1824), - [anon_sym_i128] = ACTIONS(1824), - [anon_sym_isize] = ACTIONS(1824), - [anon_sym_usize] = ACTIONS(1824), - [anon_sym_f32] = ACTIONS(1824), - [anon_sym_f64] = ACTIONS(1824), - [anon_sym_bool] = ACTIONS(1824), - [anon_sym_str] = ACTIONS(1824), - [anon_sym_char] = ACTIONS(1824), - [anon_sym_DASH] = ACTIONS(1822), - [anon_sym_BANG] = ACTIONS(1822), - [anon_sym_AMP] = ACTIONS(1822), - [anon_sym_PIPE] = ACTIONS(1822), - [anon_sym_LT] = ACTIONS(1822), - [anon_sym_DOT_DOT] = ACTIONS(1822), - [anon_sym_COLON_COLON] = ACTIONS(1822), - [anon_sym_POUND] = ACTIONS(1822), - [anon_sym_SQUOTE] = ACTIONS(1824), - [anon_sym_async] = ACTIONS(1824), - [anon_sym_break] = ACTIONS(1824), - [anon_sym_const] = ACTIONS(1824), - [anon_sym_continue] = ACTIONS(1824), - [anon_sym_default] = ACTIONS(1824), - [anon_sym_enum] = ACTIONS(1824), - [anon_sym_fn] = ACTIONS(1824), - [anon_sym_for] = ACTIONS(1824), - [anon_sym_gen] = ACTIONS(1824), - [anon_sym_if] = ACTIONS(1824), - [anon_sym_impl] = ACTIONS(1824), - [anon_sym_let] = ACTIONS(1824), - [anon_sym_loop] = ACTIONS(1824), - [anon_sym_match] = ACTIONS(1824), - [anon_sym_mod] = ACTIONS(1824), - [anon_sym_pub] = ACTIONS(1824), - [anon_sym_return] = ACTIONS(1824), - [anon_sym_static] = ACTIONS(1824), - [anon_sym_struct] = ACTIONS(1824), - [anon_sym_trait] = ACTIONS(1824), - [anon_sym_type] = ACTIONS(1824), - [anon_sym_union] = ACTIONS(1824), - [anon_sym_unsafe] = ACTIONS(1824), - [anon_sym_use] = ACTIONS(1824), - [anon_sym_while] = ACTIONS(1824), - [anon_sym_extern] = ACTIONS(1824), - [anon_sym_yield] = ACTIONS(1824), - [anon_sym_move] = ACTIONS(1824), - [anon_sym_try] = ACTIONS(1824), - [sym_integer_literal] = ACTIONS(1822), - [aux_sym_string_literal_token1] = ACTIONS(1822), - [sym_char_literal] = ACTIONS(1822), - [anon_sym_true] = ACTIONS(1824), - [anon_sym_false] = ACTIONS(1824), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1824), - [sym_super] = ACTIONS(1824), - [sym_crate] = ACTIONS(1824), - [sym_metavariable] = ACTIONS(1822), - [sym__raw_string_literal_start] = ACTIONS(1822), - [sym_float_literal] = ACTIONS(1822), + [ts_builtin_sym_end] = ACTIONS(1801), + [sym_identifier] = ACTIONS(1803), + [anon_sym_SEMI] = ACTIONS(1801), + [anon_sym_macro_rules_BANG] = ACTIONS(1801), + [anon_sym_LPAREN] = ACTIONS(1801), + [anon_sym_LBRACK] = ACTIONS(1801), + [anon_sym_LBRACE] = ACTIONS(1801), + [anon_sym_RBRACE] = ACTIONS(1801), + [anon_sym_STAR] = ACTIONS(1801), + [anon_sym_u8] = ACTIONS(1803), + [anon_sym_i8] = ACTIONS(1803), + [anon_sym_u16] = ACTIONS(1803), + [anon_sym_i16] = ACTIONS(1803), + [anon_sym_u32] = ACTIONS(1803), + [anon_sym_i32] = ACTIONS(1803), + [anon_sym_u64] = ACTIONS(1803), + [anon_sym_i64] = ACTIONS(1803), + [anon_sym_u128] = ACTIONS(1803), + [anon_sym_i128] = ACTIONS(1803), + [anon_sym_isize] = ACTIONS(1803), + [anon_sym_usize] = ACTIONS(1803), + [anon_sym_f32] = ACTIONS(1803), + [anon_sym_f64] = ACTIONS(1803), + [anon_sym_bool] = ACTIONS(1803), + [anon_sym_str] = ACTIONS(1803), + [anon_sym_char] = ACTIONS(1803), + [anon_sym_DASH] = ACTIONS(1801), + [anon_sym_BANG] = ACTIONS(1801), + [anon_sym_AMP] = ACTIONS(1801), + [anon_sym_PIPE] = ACTIONS(1801), + [anon_sym_LT] = ACTIONS(1801), + [anon_sym_DOT_DOT] = ACTIONS(1801), + [anon_sym_COLON_COLON] = ACTIONS(1801), + [anon_sym_POUND] = ACTIONS(1801), + [anon_sym_SQUOTE] = ACTIONS(1803), + [anon_sym_async] = ACTIONS(1803), + [anon_sym_break] = ACTIONS(1803), + [anon_sym_const] = ACTIONS(1803), + [anon_sym_continue] = ACTIONS(1803), + [anon_sym_default] = ACTIONS(1803), + [anon_sym_enum] = ACTIONS(1803), + [anon_sym_fn] = ACTIONS(1803), + [anon_sym_for] = ACTIONS(1803), + [anon_sym_gen] = ACTIONS(1803), + [anon_sym_if] = ACTIONS(1803), + [anon_sym_impl] = ACTIONS(1803), + [anon_sym_let] = ACTIONS(1803), + [anon_sym_loop] = ACTIONS(1803), + [anon_sym_match] = ACTIONS(1803), + [anon_sym_mod] = ACTIONS(1803), + [anon_sym_pub] = ACTIONS(1803), + [anon_sym_return] = ACTIONS(1803), + [anon_sym_static] = ACTIONS(1803), + [anon_sym_struct] = ACTIONS(1803), + [anon_sym_trait] = ACTIONS(1803), + [anon_sym_type] = ACTIONS(1803), + [anon_sym_union] = ACTIONS(1803), + [anon_sym_unsafe] = ACTIONS(1803), + [anon_sym_use] = ACTIONS(1803), + [anon_sym_while] = ACTIONS(1803), + [anon_sym_extern] = ACTIONS(1803), + [anon_sym_safe] = ACTIONS(1803), + [anon_sym_yield] = ACTIONS(1803), + [anon_sym_move] = ACTIONS(1803), + [anon_sym_try] = ACTIONS(1803), + [sym_integer_literal] = ACTIONS(1801), + [aux_sym_string_literal_token1] = ACTIONS(1801), + [sym_char_literal] = ACTIONS(1801), + [anon_sym_true] = ACTIONS(1803), + [anon_sym_false] = ACTIONS(1803), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1803), + [sym_super] = ACTIONS(1803), + [sym_crate] = ACTIONS(1803), + [sym_metavariable] = ACTIONS(1801), + [sym__raw_string_literal_start] = ACTIONS(1801), + [sym_float_literal] = ACTIONS(1801), }, [STATE(500)] = { [sym_line_comment] = STATE(500), [sym_block_comment] = STATE(500), - [ts_builtin_sym_end] = ACTIONS(1826), - [sym_identifier] = ACTIONS(1828), - [anon_sym_SEMI] = ACTIONS(1826), - [anon_sym_macro_rules_BANG] = ACTIONS(1826), - [anon_sym_LPAREN] = ACTIONS(1826), - [anon_sym_LBRACK] = ACTIONS(1826), - [anon_sym_LBRACE] = ACTIONS(1826), - [anon_sym_RBRACE] = ACTIONS(1826), - [anon_sym_STAR] = ACTIONS(1826), - [anon_sym_u8] = ACTIONS(1828), - [anon_sym_i8] = ACTIONS(1828), - [anon_sym_u16] = ACTIONS(1828), - [anon_sym_i16] = ACTIONS(1828), - [anon_sym_u32] = ACTIONS(1828), - [anon_sym_i32] = ACTIONS(1828), - [anon_sym_u64] = ACTIONS(1828), - [anon_sym_i64] = ACTIONS(1828), - [anon_sym_u128] = ACTIONS(1828), - [anon_sym_i128] = ACTIONS(1828), - [anon_sym_isize] = ACTIONS(1828), - [anon_sym_usize] = ACTIONS(1828), - [anon_sym_f32] = ACTIONS(1828), - [anon_sym_f64] = ACTIONS(1828), - [anon_sym_bool] = ACTIONS(1828), - [anon_sym_str] = ACTIONS(1828), - [anon_sym_char] = ACTIONS(1828), - [anon_sym_DASH] = ACTIONS(1826), - [anon_sym_BANG] = ACTIONS(1826), - [anon_sym_AMP] = ACTIONS(1826), - [anon_sym_PIPE] = ACTIONS(1826), - [anon_sym_LT] = ACTIONS(1826), - [anon_sym_DOT_DOT] = ACTIONS(1826), - [anon_sym_COLON_COLON] = ACTIONS(1826), - [anon_sym_POUND] = ACTIONS(1826), - [anon_sym_SQUOTE] = ACTIONS(1828), - [anon_sym_async] = ACTIONS(1828), - [anon_sym_break] = ACTIONS(1828), - [anon_sym_const] = ACTIONS(1828), - [anon_sym_continue] = ACTIONS(1828), - [anon_sym_default] = ACTIONS(1828), - [anon_sym_enum] = ACTIONS(1828), - [anon_sym_fn] = ACTIONS(1828), - [anon_sym_for] = ACTIONS(1828), - [anon_sym_gen] = ACTIONS(1828), - [anon_sym_if] = ACTIONS(1828), - [anon_sym_impl] = ACTIONS(1828), - [anon_sym_let] = ACTIONS(1828), - [anon_sym_loop] = ACTIONS(1828), - [anon_sym_match] = ACTIONS(1828), - [anon_sym_mod] = ACTIONS(1828), - [anon_sym_pub] = ACTIONS(1828), - [anon_sym_return] = ACTIONS(1828), - [anon_sym_static] = ACTIONS(1828), - [anon_sym_struct] = ACTIONS(1828), - [anon_sym_trait] = ACTIONS(1828), - [anon_sym_type] = ACTIONS(1828), - [anon_sym_union] = ACTIONS(1828), - [anon_sym_unsafe] = ACTIONS(1828), - [anon_sym_use] = ACTIONS(1828), - [anon_sym_while] = ACTIONS(1828), - [anon_sym_extern] = ACTIONS(1828), - [anon_sym_yield] = ACTIONS(1828), - [anon_sym_move] = ACTIONS(1828), - [anon_sym_try] = ACTIONS(1828), - [sym_integer_literal] = ACTIONS(1826), - [aux_sym_string_literal_token1] = ACTIONS(1826), - [sym_char_literal] = ACTIONS(1826), - [anon_sym_true] = ACTIONS(1828), - [anon_sym_false] = ACTIONS(1828), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1828), - [sym_super] = ACTIONS(1828), - [sym_crate] = ACTIONS(1828), - [sym_metavariable] = ACTIONS(1826), - [sym__raw_string_literal_start] = ACTIONS(1826), - [sym_float_literal] = ACTIONS(1826), + [ts_builtin_sym_end] = ACTIONS(1805), + [sym_identifier] = ACTIONS(1807), + [anon_sym_SEMI] = ACTIONS(1805), + [anon_sym_macro_rules_BANG] = ACTIONS(1805), + [anon_sym_LPAREN] = ACTIONS(1805), + [anon_sym_LBRACK] = ACTIONS(1805), + [anon_sym_LBRACE] = ACTIONS(1805), + [anon_sym_RBRACE] = ACTIONS(1805), + [anon_sym_STAR] = ACTIONS(1805), + [anon_sym_u8] = ACTIONS(1807), + [anon_sym_i8] = ACTIONS(1807), + [anon_sym_u16] = ACTIONS(1807), + [anon_sym_i16] = ACTIONS(1807), + [anon_sym_u32] = ACTIONS(1807), + [anon_sym_i32] = ACTIONS(1807), + [anon_sym_u64] = ACTIONS(1807), + [anon_sym_i64] = ACTIONS(1807), + [anon_sym_u128] = ACTIONS(1807), + [anon_sym_i128] = ACTIONS(1807), + [anon_sym_isize] = ACTIONS(1807), + [anon_sym_usize] = ACTIONS(1807), + [anon_sym_f32] = ACTIONS(1807), + [anon_sym_f64] = ACTIONS(1807), + [anon_sym_bool] = ACTIONS(1807), + [anon_sym_str] = ACTIONS(1807), + [anon_sym_char] = ACTIONS(1807), + [anon_sym_DASH] = ACTIONS(1805), + [anon_sym_BANG] = ACTIONS(1805), + [anon_sym_AMP] = ACTIONS(1805), + [anon_sym_PIPE] = ACTIONS(1805), + [anon_sym_LT] = ACTIONS(1805), + [anon_sym_DOT_DOT] = ACTIONS(1805), + [anon_sym_COLON_COLON] = ACTIONS(1805), + [anon_sym_POUND] = ACTIONS(1805), + [anon_sym_SQUOTE] = ACTIONS(1807), + [anon_sym_async] = ACTIONS(1807), + [anon_sym_break] = ACTIONS(1807), + [anon_sym_const] = ACTIONS(1807), + [anon_sym_continue] = ACTIONS(1807), + [anon_sym_default] = ACTIONS(1807), + [anon_sym_enum] = ACTIONS(1807), + [anon_sym_fn] = ACTIONS(1807), + [anon_sym_for] = ACTIONS(1807), + [anon_sym_gen] = ACTIONS(1807), + [anon_sym_if] = ACTIONS(1807), + [anon_sym_impl] = ACTIONS(1807), + [anon_sym_let] = ACTIONS(1807), + [anon_sym_loop] = ACTIONS(1807), + [anon_sym_match] = ACTIONS(1807), + [anon_sym_mod] = ACTIONS(1807), + [anon_sym_pub] = ACTIONS(1807), + [anon_sym_return] = ACTIONS(1807), + [anon_sym_static] = ACTIONS(1807), + [anon_sym_struct] = ACTIONS(1807), + [anon_sym_trait] = ACTIONS(1807), + [anon_sym_type] = ACTIONS(1807), + [anon_sym_union] = ACTIONS(1807), + [anon_sym_unsafe] = ACTIONS(1807), + [anon_sym_use] = ACTIONS(1807), + [anon_sym_while] = ACTIONS(1807), + [anon_sym_extern] = ACTIONS(1807), + [anon_sym_safe] = ACTIONS(1807), + [anon_sym_yield] = ACTIONS(1807), + [anon_sym_move] = ACTIONS(1807), + [anon_sym_try] = ACTIONS(1807), + [sym_integer_literal] = ACTIONS(1805), + [aux_sym_string_literal_token1] = ACTIONS(1805), + [sym_char_literal] = ACTIONS(1805), + [anon_sym_true] = ACTIONS(1807), + [anon_sym_false] = ACTIONS(1807), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1807), + [sym_super] = ACTIONS(1807), + [sym_crate] = ACTIONS(1807), + [sym_metavariable] = ACTIONS(1805), + [sym__raw_string_literal_start] = ACTIONS(1805), + [sym_float_literal] = ACTIONS(1805), }, [STATE(501)] = { [sym_line_comment] = STATE(501), [sym_block_comment] = STATE(501), - [ts_builtin_sym_end] = ACTIONS(1830), - [sym_identifier] = ACTIONS(1832), - [anon_sym_SEMI] = ACTIONS(1830), - [anon_sym_macro_rules_BANG] = ACTIONS(1830), - [anon_sym_LPAREN] = ACTIONS(1830), - [anon_sym_LBRACK] = ACTIONS(1830), - [anon_sym_LBRACE] = ACTIONS(1830), - [anon_sym_RBRACE] = ACTIONS(1830), - [anon_sym_STAR] = ACTIONS(1830), - [anon_sym_u8] = ACTIONS(1832), - [anon_sym_i8] = ACTIONS(1832), - [anon_sym_u16] = ACTIONS(1832), - [anon_sym_i16] = ACTIONS(1832), - [anon_sym_u32] = ACTIONS(1832), - [anon_sym_i32] = ACTIONS(1832), - [anon_sym_u64] = ACTIONS(1832), - [anon_sym_i64] = ACTIONS(1832), - [anon_sym_u128] = ACTIONS(1832), - [anon_sym_i128] = ACTIONS(1832), - [anon_sym_isize] = ACTIONS(1832), - [anon_sym_usize] = ACTIONS(1832), - [anon_sym_f32] = ACTIONS(1832), - [anon_sym_f64] = ACTIONS(1832), - [anon_sym_bool] = ACTIONS(1832), - [anon_sym_str] = ACTIONS(1832), - [anon_sym_char] = ACTIONS(1832), - [anon_sym_DASH] = ACTIONS(1830), - [anon_sym_BANG] = ACTIONS(1830), - [anon_sym_AMP] = ACTIONS(1830), - [anon_sym_PIPE] = ACTIONS(1830), - [anon_sym_LT] = ACTIONS(1830), - [anon_sym_DOT_DOT] = ACTIONS(1830), - [anon_sym_COLON_COLON] = ACTIONS(1830), - [anon_sym_POUND] = ACTIONS(1830), - [anon_sym_SQUOTE] = ACTIONS(1832), - [anon_sym_async] = ACTIONS(1832), - [anon_sym_break] = ACTIONS(1832), - [anon_sym_const] = ACTIONS(1832), - [anon_sym_continue] = ACTIONS(1832), - [anon_sym_default] = ACTIONS(1832), - [anon_sym_enum] = ACTIONS(1832), - [anon_sym_fn] = ACTIONS(1832), - [anon_sym_for] = ACTIONS(1832), - [anon_sym_gen] = ACTIONS(1832), - [anon_sym_if] = ACTIONS(1832), - [anon_sym_impl] = ACTIONS(1832), - [anon_sym_let] = ACTIONS(1832), - [anon_sym_loop] = ACTIONS(1832), - [anon_sym_match] = ACTIONS(1832), - [anon_sym_mod] = ACTIONS(1832), - [anon_sym_pub] = ACTIONS(1832), - [anon_sym_return] = ACTIONS(1832), - [anon_sym_static] = ACTIONS(1832), - [anon_sym_struct] = ACTIONS(1832), - [anon_sym_trait] = ACTIONS(1832), - [anon_sym_type] = ACTIONS(1832), - [anon_sym_union] = ACTIONS(1832), - [anon_sym_unsafe] = ACTIONS(1832), - [anon_sym_use] = ACTIONS(1832), - [anon_sym_while] = ACTIONS(1832), - [anon_sym_extern] = ACTIONS(1832), - [anon_sym_yield] = ACTIONS(1832), - [anon_sym_move] = ACTIONS(1832), - [anon_sym_try] = ACTIONS(1832), - [sym_integer_literal] = ACTIONS(1830), - [aux_sym_string_literal_token1] = ACTIONS(1830), - [sym_char_literal] = ACTIONS(1830), - [anon_sym_true] = ACTIONS(1832), - [anon_sym_false] = ACTIONS(1832), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1832), - [sym_super] = ACTIONS(1832), - [sym_crate] = ACTIONS(1832), - [sym_metavariable] = ACTIONS(1830), - [sym__raw_string_literal_start] = ACTIONS(1830), - [sym_float_literal] = ACTIONS(1830), + [ts_builtin_sym_end] = ACTIONS(1809), + [sym_identifier] = ACTIONS(1811), + [anon_sym_SEMI] = ACTIONS(1809), + [anon_sym_macro_rules_BANG] = ACTIONS(1809), + [anon_sym_LPAREN] = ACTIONS(1809), + [anon_sym_LBRACK] = ACTIONS(1809), + [anon_sym_LBRACE] = ACTIONS(1809), + [anon_sym_RBRACE] = ACTIONS(1809), + [anon_sym_STAR] = ACTIONS(1809), + [anon_sym_u8] = ACTIONS(1811), + [anon_sym_i8] = ACTIONS(1811), + [anon_sym_u16] = ACTIONS(1811), + [anon_sym_i16] = ACTIONS(1811), + [anon_sym_u32] = ACTIONS(1811), + [anon_sym_i32] = ACTIONS(1811), + [anon_sym_u64] = ACTIONS(1811), + [anon_sym_i64] = ACTIONS(1811), + [anon_sym_u128] = ACTIONS(1811), + [anon_sym_i128] = ACTIONS(1811), + [anon_sym_isize] = ACTIONS(1811), + [anon_sym_usize] = ACTIONS(1811), + [anon_sym_f32] = ACTIONS(1811), + [anon_sym_f64] = ACTIONS(1811), + [anon_sym_bool] = ACTIONS(1811), + [anon_sym_str] = ACTIONS(1811), + [anon_sym_char] = ACTIONS(1811), + [anon_sym_DASH] = ACTIONS(1809), + [anon_sym_BANG] = ACTIONS(1809), + [anon_sym_AMP] = ACTIONS(1809), + [anon_sym_PIPE] = ACTIONS(1809), + [anon_sym_LT] = ACTIONS(1809), + [anon_sym_DOT_DOT] = ACTIONS(1809), + [anon_sym_COLON_COLON] = ACTIONS(1809), + [anon_sym_POUND] = ACTIONS(1809), + [anon_sym_SQUOTE] = ACTIONS(1811), + [anon_sym_async] = ACTIONS(1811), + [anon_sym_break] = ACTIONS(1811), + [anon_sym_const] = ACTIONS(1811), + [anon_sym_continue] = ACTIONS(1811), + [anon_sym_default] = ACTIONS(1811), + [anon_sym_enum] = ACTIONS(1811), + [anon_sym_fn] = ACTIONS(1811), + [anon_sym_for] = ACTIONS(1811), + [anon_sym_gen] = ACTIONS(1811), + [anon_sym_if] = ACTIONS(1811), + [anon_sym_impl] = ACTIONS(1811), + [anon_sym_let] = ACTIONS(1811), + [anon_sym_loop] = ACTIONS(1811), + [anon_sym_match] = ACTIONS(1811), + [anon_sym_mod] = ACTIONS(1811), + [anon_sym_pub] = ACTIONS(1811), + [anon_sym_return] = ACTIONS(1811), + [anon_sym_static] = ACTIONS(1811), + [anon_sym_struct] = ACTIONS(1811), + [anon_sym_trait] = ACTIONS(1811), + [anon_sym_type] = ACTIONS(1811), + [anon_sym_union] = ACTIONS(1811), + [anon_sym_unsafe] = ACTIONS(1811), + [anon_sym_use] = ACTIONS(1811), + [anon_sym_while] = ACTIONS(1811), + [anon_sym_extern] = ACTIONS(1811), + [anon_sym_safe] = ACTIONS(1811), + [anon_sym_yield] = ACTIONS(1811), + [anon_sym_move] = ACTIONS(1811), + [anon_sym_try] = ACTIONS(1811), + [sym_integer_literal] = ACTIONS(1809), + [aux_sym_string_literal_token1] = ACTIONS(1809), + [sym_char_literal] = ACTIONS(1809), + [anon_sym_true] = ACTIONS(1811), + [anon_sym_false] = ACTIONS(1811), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1811), + [sym_super] = ACTIONS(1811), + [sym_crate] = ACTIONS(1811), + [sym_metavariable] = ACTIONS(1809), + [sym__raw_string_literal_start] = ACTIONS(1809), + [sym_float_literal] = ACTIONS(1809), }, [STATE(502)] = { [sym_line_comment] = STATE(502), [sym_block_comment] = STATE(502), - [ts_builtin_sym_end] = ACTIONS(1834), - [sym_identifier] = ACTIONS(1836), - [anon_sym_SEMI] = ACTIONS(1834), - [anon_sym_macro_rules_BANG] = ACTIONS(1834), - [anon_sym_LPAREN] = ACTIONS(1834), - [anon_sym_LBRACK] = ACTIONS(1834), - [anon_sym_LBRACE] = ACTIONS(1834), - [anon_sym_RBRACE] = ACTIONS(1834), - [anon_sym_STAR] = ACTIONS(1834), - [anon_sym_u8] = ACTIONS(1836), - [anon_sym_i8] = ACTIONS(1836), - [anon_sym_u16] = ACTIONS(1836), - [anon_sym_i16] = ACTIONS(1836), - [anon_sym_u32] = ACTIONS(1836), - [anon_sym_i32] = ACTIONS(1836), - [anon_sym_u64] = ACTIONS(1836), - [anon_sym_i64] = ACTIONS(1836), - [anon_sym_u128] = ACTIONS(1836), - [anon_sym_i128] = ACTIONS(1836), - [anon_sym_isize] = ACTIONS(1836), - [anon_sym_usize] = ACTIONS(1836), - [anon_sym_f32] = ACTIONS(1836), - [anon_sym_f64] = ACTIONS(1836), - [anon_sym_bool] = ACTIONS(1836), - [anon_sym_str] = ACTIONS(1836), - [anon_sym_char] = ACTIONS(1836), - [anon_sym_DASH] = ACTIONS(1834), - [anon_sym_BANG] = ACTIONS(1834), - [anon_sym_AMP] = ACTIONS(1834), - [anon_sym_PIPE] = ACTIONS(1834), - [anon_sym_LT] = ACTIONS(1834), - [anon_sym_DOT_DOT] = ACTIONS(1834), - [anon_sym_COLON_COLON] = ACTIONS(1834), - [anon_sym_POUND] = ACTIONS(1834), - [anon_sym_SQUOTE] = ACTIONS(1836), - [anon_sym_async] = ACTIONS(1836), - [anon_sym_break] = ACTIONS(1836), - [anon_sym_const] = ACTIONS(1836), - [anon_sym_continue] = ACTIONS(1836), - [anon_sym_default] = ACTIONS(1836), - [anon_sym_enum] = ACTIONS(1836), - [anon_sym_fn] = ACTIONS(1836), - [anon_sym_for] = ACTIONS(1836), - [anon_sym_gen] = ACTIONS(1836), - [anon_sym_if] = ACTIONS(1836), - [anon_sym_impl] = ACTIONS(1836), - [anon_sym_let] = ACTIONS(1836), - [anon_sym_loop] = ACTIONS(1836), - [anon_sym_match] = ACTIONS(1836), - [anon_sym_mod] = ACTIONS(1836), - [anon_sym_pub] = ACTIONS(1836), - [anon_sym_return] = ACTIONS(1836), - [anon_sym_static] = ACTIONS(1836), - [anon_sym_struct] = ACTIONS(1836), - [anon_sym_trait] = ACTIONS(1836), - [anon_sym_type] = ACTIONS(1836), - [anon_sym_union] = ACTIONS(1836), - [anon_sym_unsafe] = ACTIONS(1836), - [anon_sym_use] = ACTIONS(1836), - [anon_sym_while] = ACTIONS(1836), - [anon_sym_extern] = ACTIONS(1836), - [anon_sym_yield] = ACTIONS(1836), - [anon_sym_move] = ACTIONS(1836), - [anon_sym_try] = ACTIONS(1836), - [sym_integer_literal] = ACTIONS(1834), - [aux_sym_string_literal_token1] = ACTIONS(1834), - [sym_char_literal] = ACTIONS(1834), - [anon_sym_true] = ACTIONS(1836), - [anon_sym_false] = ACTIONS(1836), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1836), - [sym_super] = ACTIONS(1836), - [sym_crate] = ACTIONS(1836), - [sym_metavariable] = ACTIONS(1834), - [sym__raw_string_literal_start] = ACTIONS(1834), - [sym_float_literal] = ACTIONS(1834), + [ts_builtin_sym_end] = ACTIONS(1813), + [sym_identifier] = ACTIONS(1815), + [anon_sym_SEMI] = ACTIONS(1813), + [anon_sym_macro_rules_BANG] = ACTIONS(1813), + [anon_sym_LPAREN] = ACTIONS(1813), + [anon_sym_LBRACK] = ACTIONS(1813), + [anon_sym_LBRACE] = ACTIONS(1813), + [anon_sym_RBRACE] = ACTIONS(1813), + [anon_sym_STAR] = ACTIONS(1813), + [anon_sym_u8] = ACTIONS(1815), + [anon_sym_i8] = ACTIONS(1815), + [anon_sym_u16] = ACTIONS(1815), + [anon_sym_i16] = ACTIONS(1815), + [anon_sym_u32] = ACTIONS(1815), + [anon_sym_i32] = ACTIONS(1815), + [anon_sym_u64] = ACTIONS(1815), + [anon_sym_i64] = ACTIONS(1815), + [anon_sym_u128] = ACTIONS(1815), + [anon_sym_i128] = ACTIONS(1815), + [anon_sym_isize] = ACTIONS(1815), + [anon_sym_usize] = ACTIONS(1815), + [anon_sym_f32] = ACTIONS(1815), + [anon_sym_f64] = ACTIONS(1815), + [anon_sym_bool] = ACTIONS(1815), + [anon_sym_str] = ACTIONS(1815), + [anon_sym_char] = ACTIONS(1815), + [anon_sym_DASH] = ACTIONS(1813), + [anon_sym_BANG] = ACTIONS(1813), + [anon_sym_AMP] = ACTIONS(1813), + [anon_sym_PIPE] = ACTIONS(1813), + [anon_sym_LT] = ACTIONS(1813), + [anon_sym_DOT_DOT] = ACTIONS(1813), + [anon_sym_COLON_COLON] = ACTIONS(1813), + [anon_sym_POUND] = ACTIONS(1813), + [anon_sym_SQUOTE] = ACTIONS(1815), + [anon_sym_async] = ACTIONS(1815), + [anon_sym_break] = ACTIONS(1815), + [anon_sym_const] = ACTIONS(1815), + [anon_sym_continue] = ACTIONS(1815), + [anon_sym_default] = ACTIONS(1815), + [anon_sym_enum] = ACTIONS(1815), + [anon_sym_fn] = ACTIONS(1815), + [anon_sym_for] = ACTIONS(1815), + [anon_sym_gen] = ACTIONS(1815), + [anon_sym_if] = ACTIONS(1815), + [anon_sym_impl] = ACTIONS(1815), + [anon_sym_let] = ACTIONS(1815), + [anon_sym_loop] = ACTIONS(1815), + [anon_sym_match] = ACTIONS(1815), + [anon_sym_mod] = ACTIONS(1815), + [anon_sym_pub] = ACTIONS(1815), + [anon_sym_return] = ACTIONS(1815), + [anon_sym_static] = ACTIONS(1815), + [anon_sym_struct] = ACTIONS(1815), + [anon_sym_trait] = ACTIONS(1815), + [anon_sym_type] = ACTIONS(1815), + [anon_sym_union] = ACTIONS(1815), + [anon_sym_unsafe] = ACTIONS(1815), + [anon_sym_use] = ACTIONS(1815), + [anon_sym_while] = ACTIONS(1815), + [anon_sym_extern] = ACTIONS(1815), + [anon_sym_safe] = ACTIONS(1815), + [anon_sym_yield] = ACTIONS(1815), + [anon_sym_move] = ACTIONS(1815), + [anon_sym_try] = ACTIONS(1815), + [sym_integer_literal] = ACTIONS(1813), + [aux_sym_string_literal_token1] = ACTIONS(1813), + [sym_char_literal] = ACTIONS(1813), + [anon_sym_true] = ACTIONS(1815), + [anon_sym_false] = ACTIONS(1815), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1815), + [sym_super] = ACTIONS(1815), + [sym_crate] = ACTIONS(1815), + [sym_metavariable] = ACTIONS(1813), + [sym__raw_string_literal_start] = ACTIONS(1813), + [sym_float_literal] = ACTIONS(1813), }, [STATE(503)] = { [sym_line_comment] = STATE(503), [sym_block_comment] = STATE(503), - [ts_builtin_sym_end] = ACTIONS(1838), - [sym_identifier] = ACTIONS(1840), - [anon_sym_SEMI] = ACTIONS(1838), - [anon_sym_macro_rules_BANG] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(1838), - [anon_sym_LBRACK] = ACTIONS(1838), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_RBRACE] = ACTIONS(1838), - [anon_sym_STAR] = ACTIONS(1838), - [anon_sym_u8] = ACTIONS(1840), - [anon_sym_i8] = ACTIONS(1840), - [anon_sym_u16] = ACTIONS(1840), - [anon_sym_i16] = ACTIONS(1840), - [anon_sym_u32] = ACTIONS(1840), - [anon_sym_i32] = ACTIONS(1840), - [anon_sym_u64] = ACTIONS(1840), - [anon_sym_i64] = ACTIONS(1840), - [anon_sym_u128] = ACTIONS(1840), - [anon_sym_i128] = ACTIONS(1840), - [anon_sym_isize] = ACTIONS(1840), - [anon_sym_usize] = ACTIONS(1840), - [anon_sym_f32] = ACTIONS(1840), - [anon_sym_f64] = ACTIONS(1840), - [anon_sym_bool] = ACTIONS(1840), - [anon_sym_str] = ACTIONS(1840), - [anon_sym_char] = ACTIONS(1840), - [anon_sym_DASH] = ACTIONS(1838), - [anon_sym_BANG] = ACTIONS(1838), - [anon_sym_AMP] = ACTIONS(1838), - [anon_sym_PIPE] = ACTIONS(1838), - [anon_sym_LT] = ACTIONS(1838), - [anon_sym_DOT_DOT] = ACTIONS(1838), - [anon_sym_COLON_COLON] = ACTIONS(1838), - [anon_sym_POUND] = ACTIONS(1838), - [anon_sym_SQUOTE] = ACTIONS(1840), - [anon_sym_async] = ACTIONS(1840), - [anon_sym_break] = ACTIONS(1840), - [anon_sym_const] = ACTIONS(1840), - [anon_sym_continue] = ACTIONS(1840), - [anon_sym_default] = ACTIONS(1840), - [anon_sym_enum] = ACTIONS(1840), - [anon_sym_fn] = ACTIONS(1840), - [anon_sym_for] = ACTIONS(1840), - [anon_sym_gen] = ACTIONS(1840), - [anon_sym_if] = ACTIONS(1840), - [anon_sym_impl] = ACTIONS(1840), - [anon_sym_let] = ACTIONS(1840), - [anon_sym_loop] = ACTIONS(1840), - [anon_sym_match] = ACTIONS(1840), - [anon_sym_mod] = ACTIONS(1840), - [anon_sym_pub] = ACTIONS(1840), - [anon_sym_return] = ACTIONS(1840), - [anon_sym_static] = ACTIONS(1840), - [anon_sym_struct] = ACTIONS(1840), - [anon_sym_trait] = ACTIONS(1840), - [anon_sym_type] = ACTIONS(1840), - [anon_sym_union] = ACTIONS(1840), - [anon_sym_unsafe] = ACTIONS(1840), - [anon_sym_use] = ACTIONS(1840), - [anon_sym_while] = ACTIONS(1840), - [anon_sym_extern] = ACTIONS(1840), - [anon_sym_yield] = ACTIONS(1840), - [anon_sym_move] = ACTIONS(1840), - [anon_sym_try] = ACTIONS(1840), - [sym_integer_literal] = ACTIONS(1838), - [aux_sym_string_literal_token1] = ACTIONS(1838), - [sym_char_literal] = ACTIONS(1838), - [anon_sym_true] = ACTIONS(1840), - [anon_sym_false] = ACTIONS(1840), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1840), - [sym_super] = ACTIONS(1840), - [sym_crate] = ACTIONS(1840), - [sym_metavariable] = ACTIONS(1838), - [sym__raw_string_literal_start] = ACTIONS(1838), - [sym_float_literal] = ACTIONS(1838), + [ts_builtin_sym_end] = ACTIONS(1817), + [sym_identifier] = ACTIONS(1819), + [anon_sym_SEMI] = ACTIONS(1817), + [anon_sym_macro_rules_BANG] = ACTIONS(1817), + [anon_sym_LPAREN] = ACTIONS(1817), + [anon_sym_LBRACK] = ACTIONS(1817), + [anon_sym_LBRACE] = ACTIONS(1817), + [anon_sym_RBRACE] = ACTIONS(1817), + [anon_sym_STAR] = ACTIONS(1817), + [anon_sym_u8] = ACTIONS(1819), + [anon_sym_i8] = ACTIONS(1819), + [anon_sym_u16] = ACTIONS(1819), + [anon_sym_i16] = ACTIONS(1819), + [anon_sym_u32] = ACTIONS(1819), + [anon_sym_i32] = ACTIONS(1819), + [anon_sym_u64] = ACTIONS(1819), + [anon_sym_i64] = ACTIONS(1819), + [anon_sym_u128] = ACTIONS(1819), + [anon_sym_i128] = ACTIONS(1819), + [anon_sym_isize] = ACTIONS(1819), + [anon_sym_usize] = ACTIONS(1819), + [anon_sym_f32] = ACTIONS(1819), + [anon_sym_f64] = ACTIONS(1819), + [anon_sym_bool] = ACTIONS(1819), + [anon_sym_str] = ACTIONS(1819), + [anon_sym_char] = ACTIONS(1819), + [anon_sym_DASH] = ACTIONS(1817), + [anon_sym_BANG] = ACTIONS(1817), + [anon_sym_AMP] = ACTIONS(1817), + [anon_sym_PIPE] = ACTIONS(1817), + [anon_sym_LT] = ACTIONS(1817), + [anon_sym_DOT_DOT] = ACTIONS(1817), + [anon_sym_COLON_COLON] = ACTIONS(1817), + [anon_sym_POUND] = ACTIONS(1817), + [anon_sym_SQUOTE] = ACTIONS(1819), + [anon_sym_async] = ACTIONS(1819), + [anon_sym_break] = ACTIONS(1819), + [anon_sym_const] = ACTIONS(1819), + [anon_sym_continue] = ACTIONS(1819), + [anon_sym_default] = ACTIONS(1819), + [anon_sym_enum] = ACTIONS(1819), + [anon_sym_fn] = ACTIONS(1819), + [anon_sym_for] = ACTIONS(1819), + [anon_sym_gen] = ACTIONS(1819), + [anon_sym_if] = ACTIONS(1819), + [anon_sym_impl] = ACTIONS(1819), + [anon_sym_let] = ACTIONS(1819), + [anon_sym_loop] = ACTIONS(1819), + [anon_sym_match] = ACTIONS(1819), + [anon_sym_mod] = ACTIONS(1819), + [anon_sym_pub] = ACTIONS(1819), + [anon_sym_return] = ACTIONS(1819), + [anon_sym_static] = ACTIONS(1819), + [anon_sym_struct] = ACTIONS(1819), + [anon_sym_trait] = ACTIONS(1819), + [anon_sym_type] = ACTIONS(1819), + [anon_sym_union] = ACTIONS(1819), + [anon_sym_unsafe] = ACTIONS(1819), + [anon_sym_use] = ACTIONS(1819), + [anon_sym_while] = ACTIONS(1819), + [anon_sym_extern] = ACTIONS(1819), + [anon_sym_safe] = ACTIONS(1819), + [anon_sym_yield] = ACTIONS(1819), + [anon_sym_move] = ACTIONS(1819), + [anon_sym_try] = ACTIONS(1819), + [sym_integer_literal] = ACTIONS(1817), + [aux_sym_string_literal_token1] = ACTIONS(1817), + [sym_char_literal] = ACTIONS(1817), + [anon_sym_true] = ACTIONS(1819), + [anon_sym_false] = ACTIONS(1819), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1819), + [sym_super] = ACTIONS(1819), + [sym_crate] = ACTIONS(1819), + [sym_metavariable] = ACTIONS(1817), + [sym__raw_string_literal_start] = ACTIONS(1817), + [sym_float_literal] = ACTIONS(1817), }, [STATE(504)] = { [sym_line_comment] = STATE(504), [sym_block_comment] = STATE(504), - [ts_builtin_sym_end] = ACTIONS(1842), - [sym_identifier] = ACTIONS(1844), - [anon_sym_SEMI] = ACTIONS(1842), - [anon_sym_macro_rules_BANG] = ACTIONS(1842), - [anon_sym_LPAREN] = ACTIONS(1842), - [anon_sym_LBRACK] = ACTIONS(1842), - [anon_sym_LBRACE] = ACTIONS(1842), - [anon_sym_RBRACE] = ACTIONS(1842), - [anon_sym_STAR] = ACTIONS(1842), - [anon_sym_u8] = ACTIONS(1844), - [anon_sym_i8] = ACTIONS(1844), - [anon_sym_u16] = ACTIONS(1844), - [anon_sym_i16] = ACTIONS(1844), - [anon_sym_u32] = ACTIONS(1844), - [anon_sym_i32] = ACTIONS(1844), - [anon_sym_u64] = ACTIONS(1844), - [anon_sym_i64] = ACTIONS(1844), - [anon_sym_u128] = ACTIONS(1844), - [anon_sym_i128] = ACTIONS(1844), - [anon_sym_isize] = ACTIONS(1844), - [anon_sym_usize] = ACTIONS(1844), - [anon_sym_f32] = ACTIONS(1844), - [anon_sym_f64] = ACTIONS(1844), - [anon_sym_bool] = ACTIONS(1844), - [anon_sym_str] = ACTIONS(1844), - [anon_sym_char] = ACTIONS(1844), - [anon_sym_DASH] = ACTIONS(1842), - [anon_sym_BANG] = ACTIONS(1842), - [anon_sym_AMP] = ACTIONS(1842), - [anon_sym_PIPE] = ACTIONS(1842), - [anon_sym_LT] = ACTIONS(1842), - [anon_sym_DOT_DOT] = ACTIONS(1842), - [anon_sym_COLON_COLON] = ACTIONS(1842), - [anon_sym_POUND] = ACTIONS(1842), - [anon_sym_SQUOTE] = ACTIONS(1844), - [anon_sym_async] = ACTIONS(1844), - [anon_sym_break] = ACTIONS(1844), - [anon_sym_const] = ACTIONS(1844), - [anon_sym_continue] = ACTIONS(1844), - [anon_sym_default] = ACTIONS(1844), - [anon_sym_enum] = ACTIONS(1844), - [anon_sym_fn] = ACTIONS(1844), - [anon_sym_for] = ACTIONS(1844), - [anon_sym_gen] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(1844), - [anon_sym_impl] = ACTIONS(1844), - [anon_sym_let] = ACTIONS(1844), - [anon_sym_loop] = ACTIONS(1844), - [anon_sym_match] = ACTIONS(1844), - [anon_sym_mod] = ACTIONS(1844), - [anon_sym_pub] = ACTIONS(1844), - [anon_sym_return] = ACTIONS(1844), - [anon_sym_static] = ACTIONS(1844), - [anon_sym_struct] = ACTIONS(1844), - [anon_sym_trait] = ACTIONS(1844), - [anon_sym_type] = ACTIONS(1844), - [anon_sym_union] = ACTIONS(1844), - [anon_sym_unsafe] = ACTIONS(1844), - [anon_sym_use] = ACTIONS(1844), - [anon_sym_while] = ACTIONS(1844), - [anon_sym_extern] = ACTIONS(1844), - [anon_sym_yield] = ACTIONS(1844), - [anon_sym_move] = ACTIONS(1844), - [anon_sym_try] = ACTIONS(1844), - [sym_integer_literal] = ACTIONS(1842), - [aux_sym_string_literal_token1] = ACTIONS(1842), - [sym_char_literal] = ACTIONS(1842), - [anon_sym_true] = ACTIONS(1844), - [anon_sym_false] = ACTIONS(1844), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1844), - [sym_super] = ACTIONS(1844), - [sym_crate] = ACTIONS(1844), - [sym_metavariable] = ACTIONS(1842), - [sym__raw_string_literal_start] = ACTIONS(1842), - [sym_float_literal] = ACTIONS(1842), + [ts_builtin_sym_end] = ACTIONS(1821), + [sym_identifier] = ACTIONS(1823), + [anon_sym_SEMI] = ACTIONS(1821), + [anon_sym_macro_rules_BANG] = ACTIONS(1821), + [anon_sym_LPAREN] = ACTIONS(1821), + [anon_sym_LBRACK] = ACTIONS(1821), + [anon_sym_LBRACE] = ACTIONS(1821), + [anon_sym_RBRACE] = ACTIONS(1821), + [anon_sym_STAR] = ACTIONS(1821), + [anon_sym_u8] = ACTIONS(1823), + [anon_sym_i8] = ACTIONS(1823), + [anon_sym_u16] = ACTIONS(1823), + [anon_sym_i16] = ACTIONS(1823), + [anon_sym_u32] = ACTIONS(1823), + [anon_sym_i32] = ACTIONS(1823), + [anon_sym_u64] = ACTIONS(1823), + [anon_sym_i64] = ACTIONS(1823), + [anon_sym_u128] = ACTIONS(1823), + [anon_sym_i128] = ACTIONS(1823), + [anon_sym_isize] = ACTIONS(1823), + [anon_sym_usize] = ACTIONS(1823), + [anon_sym_f32] = ACTIONS(1823), + [anon_sym_f64] = ACTIONS(1823), + [anon_sym_bool] = ACTIONS(1823), + [anon_sym_str] = ACTIONS(1823), + [anon_sym_char] = ACTIONS(1823), + [anon_sym_DASH] = ACTIONS(1821), + [anon_sym_BANG] = ACTIONS(1821), + [anon_sym_AMP] = ACTIONS(1821), + [anon_sym_PIPE] = ACTIONS(1821), + [anon_sym_LT] = ACTIONS(1821), + [anon_sym_DOT_DOT] = ACTIONS(1821), + [anon_sym_COLON_COLON] = ACTIONS(1821), + [anon_sym_POUND] = ACTIONS(1821), + [anon_sym_SQUOTE] = ACTIONS(1823), + [anon_sym_async] = ACTIONS(1823), + [anon_sym_break] = ACTIONS(1823), + [anon_sym_const] = ACTIONS(1823), + [anon_sym_continue] = ACTIONS(1823), + [anon_sym_default] = ACTIONS(1823), + [anon_sym_enum] = ACTIONS(1823), + [anon_sym_fn] = ACTIONS(1823), + [anon_sym_for] = ACTIONS(1823), + [anon_sym_gen] = ACTIONS(1823), + [anon_sym_if] = ACTIONS(1823), + [anon_sym_impl] = ACTIONS(1823), + [anon_sym_let] = ACTIONS(1823), + [anon_sym_loop] = ACTIONS(1823), + [anon_sym_match] = ACTIONS(1823), + [anon_sym_mod] = ACTIONS(1823), + [anon_sym_pub] = ACTIONS(1823), + [anon_sym_return] = ACTIONS(1823), + [anon_sym_static] = ACTIONS(1823), + [anon_sym_struct] = ACTIONS(1823), + [anon_sym_trait] = ACTIONS(1823), + [anon_sym_type] = ACTIONS(1823), + [anon_sym_union] = ACTIONS(1823), + [anon_sym_unsafe] = ACTIONS(1823), + [anon_sym_use] = ACTIONS(1823), + [anon_sym_while] = ACTIONS(1823), + [anon_sym_extern] = ACTIONS(1823), + [anon_sym_safe] = ACTIONS(1823), + [anon_sym_yield] = ACTIONS(1823), + [anon_sym_move] = ACTIONS(1823), + [anon_sym_try] = ACTIONS(1823), + [sym_integer_literal] = ACTIONS(1821), + [aux_sym_string_literal_token1] = ACTIONS(1821), + [sym_char_literal] = ACTIONS(1821), + [anon_sym_true] = ACTIONS(1823), + [anon_sym_false] = ACTIONS(1823), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1823), + [sym_super] = ACTIONS(1823), + [sym_crate] = ACTIONS(1823), + [sym_metavariable] = ACTIONS(1821), + [sym__raw_string_literal_start] = ACTIONS(1821), + [sym_float_literal] = ACTIONS(1821), }, [STATE(505)] = { [sym_line_comment] = STATE(505), [sym_block_comment] = STATE(505), - [ts_builtin_sym_end] = ACTIONS(1846), - [sym_identifier] = ACTIONS(1848), - [anon_sym_SEMI] = ACTIONS(1846), - [anon_sym_macro_rules_BANG] = ACTIONS(1846), - [anon_sym_LPAREN] = ACTIONS(1846), - [anon_sym_LBRACK] = ACTIONS(1846), - [anon_sym_LBRACE] = ACTIONS(1846), - [anon_sym_RBRACE] = ACTIONS(1846), - [anon_sym_STAR] = ACTIONS(1846), - [anon_sym_u8] = ACTIONS(1848), - [anon_sym_i8] = ACTIONS(1848), - [anon_sym_u16] = ACTIONS(1848), - [anon_sym_i16] = ACTIONS(1848), - [anon_sym_u32] = ACTIONS(1848), - [anon_sym_i32] = ACTIONS(1848), - [anon_sym_u64] = ACTIONS(1848), - [anon_sym_i64] = ACTIONS(1848), - [anon_sym_u128] = ACTIONS(1848), - [anon_sym_i128] = ACTIONS(1848), - [anon_sym_isize] = ACTIONS(1848), - [anon_sym_usize] = ACTIONS(1848), - [anon_sym_f32] = ACTIONS(1848), - [anon_sym_f64] = ACTIONS(1848), - [anon_sym_bool] = ACTIONS(1848), - [anon_sym_str] = ACTIONS(1848), - [anon_sym_char] = ACTIONS(1848), - [anon_sym_DASH] = ACTIONS(1846), - [anon_sym_BANG] = ACTIONS(1846), - [anon_sym_AMP] = ACTIONS(1846), - [anon_sym_PIPE] = ACTIONS(1846), - [anon_sym_LT] = ACTIONS(1846), - [anon_sym_DOT_DOT] = ACTIONS(1846), - [anon_sym_COLON_COLON] = ACTIONS(1846), - [anon_sym_POUND] = ACTIONS(1846), - [anon_sym_SQUOTE] = ACTIONS(1848), - [anon_sym_async] = ACTIONS(1848), - [anon_sym_break] = ACTIONS(1848), - [anon_sym_const] = ACTIONS(1848), - [anon_sym_continue] = ACTIONS(1848), - [anon_sym_default] = ACTIONS(1848), - [anon_sym_enum] = ACTIONS(1848), - [anon_sym_fn] = ACTIONS(1848), - [anon_sym_for] = ACTIONS(1848), - [anon_sym_gen] = ACTIONS(1848), - [anon_sym_if] = ACTIONS(1848), - [anon_sym_impl] = ACTIONS(1848), - [anon_sym_let] = ACTIONS(1848), - [anon_sym_loop] = ACTIONS(1848), - [anon_sym_match] = ACTIONS(1848), - [anon_sym_mod] = ACTIONS(1848), - [anon_sym_pub] = ACTIONS(1848), - [anon_sym_return] = ACTIONS(1848), - [anon_sym_static] = ACTIONS(1848), - [anon_sym_struct] = ACTIONS(1848), - [anon_sym_trait] = ACTIONS(1848), - [anon_sym_type] = ACTIONS(1848), - [anon_sym_union] = ACTIONS(1848), - [anon_sym_unsafe] = ACTIONS(1848), - [anon_sym_use] = ACTIONS(1848), - [anon_sym_while] = ACTIONS(1848), - [anon_sym_extern] = ACTIONS(1848), - [anon_sym_yield] = ACTIONS(1848), - [anon_sym_move] = ACTIONS(1848), - [anon_sym_try] = ACTIONS(1848), - [sym_integer_literal] = ACTIONS(1846), - [aux_sym_string_literal_token1] = ACTIONS(1846), - [sym_char_literal] = ACTIONS(1846), - [anon_sym_true] = ACTIONS(1848), - [anon_sym_false] = ACTIONS(1848), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1848), - [sym_super] = ACTIONS(1848), - [sym_crate] = ACTIONS(1848), - [sym_metavariable] = ACTIONS(1846), - [sym__raw_string_literal_start] = ACTIONS(1846), - [sym_float_literal] = ACTIONS(1846), + [ts_builtin_sym_end] = ACTIONS(1825), + [sym_identifier] = ACTIONS(1827), + [anon_sym_SEMI] = ACTIONS(1825), + [anon_sym_macro_rules_BANG] = ACTIONS(1825), + [anon_sym_LPAREN] = ACTIONS(1825), + [anon_sym_LBRACK] = ACTIONS(1825), + [anon_sym_LBRACE] = ACTIONS(1825), + [anon_sym_RBRACE] = ACTIONS(1825), + [anon_sym_STAR] = ACTIONS(1825), + [anon_sym_u8] = ACTIONS(1827), + [anon_sym_i8] = ACTIONS(1827), + [anon_sym_u16] = ACTIONS(1827), + [anon_sym_i16] = ACTIONS(1827), + [anon_sym_u32] = ACTIONS(1827), + [anon_sym_i32] = ACTIONS(1827), + [anon_sym_u64] = ACTIONS(1827), + [anon_sym_i64] = ACTIONS(1827), + [anon_sym_u128] = ACTIONS(1827), + [anon_sym_i128] = ACTIONS(1827), + [anon_sym_isize] = ACTIONS(1827), + [anon_sym_usize] = ACTIONS(1827), + [anon_sym_f32] = ACTIONS(1827), + [anon_sym_f64] = ACTIONS(1827), + [anon_sym_bool] = ACTIONS(1827), + [anon_sym_str] = ACTIONS(1827), + [anon_sym_char] = ACTIONS(1827), + [anon_sym_DASH] = ACTIONS(1825), + [anon_sym_BANG] = ACTIONS(1825), + [anon_sym_AMP] = ACTIONS(1825), + [anon_sym_PIPE] = ACTIONS(1825), + [anon_sym_LT] = ACTIONS(1825), + [anon_sym_DOT_DOT] = ACTIONS(1825), + [anon_sym_COLON_COLON] = ACTIONS(1825), + [anon_sym_POUND] = ACTIONS(1825), + [anon_sym_SQUOTE] = ACTIONS(1827), + [anon_sym_async] = ACTIONS(1827), + [anon_sym_break] = ACTIONS(1827), + [anon_sym_const] = ACTIONS(1827), + [anon_sym_continue] = ACTIONS(1827), + [anon_sym_default] = ACTIONS(1827), + [anon_sym_enum] = ACTIONS(1827), + [anon_sym_fn] = ACTIONS(1827), + [anon_sym_for] = ACTIONS(1827), + [anon_sym_gen] = ACTIONS(1827), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_impl] = ACTIONS(1827), + [anon_sym_let] = ACTIONS(1827), + [anon_sym_loop] = ACTIONS(1827), + [anon_sym_match] = ACTIONS(1827), + [anon_sym_mod] = ACTIONS(1827), + [anon_sym_pub] = ACTIONS(1827), + [anon_sym_return] = ACTIONS(1827), + [anon_sym_static] = ACTIONS(1827), + [anon_sym_struct] = ACTIONS(1827), + [anon_sym_trait] = ACTIONS(1827), + [anon_sym_type] = ACTIONS(1827), + [anon_sym_union] = ACTIONS(1827), + [anon_sym_unsafe] = ACTIONS(1827), + [anon_sym_use] = ACTIONS(1827), + [anon_sym_while] = ACTIONS(1827), + [anon_sym_extern] = ACTIONS(1827), + [anon_sym_safe] = ACTIONS(1827), + [anon_sym_yield] = ACTIONS(1827), + [anon_sym_move] = ACTIONS(1827), + [anon_sym_try] = ACTIONS(1827), + [sym_integer_literal] = ACTIONS(1825), + [aux_sym_string_literal_token1] = ACTIONS(1825), + [sym_char_literal] = ACTIONS(1825), + [anon_sym_true] = ACTIONS(1827), + [anon_sym_false] = ACTIONS(1827), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1827), + [sym_super] = ACTIONS(1827), + [sym_crate] = ACTIONS(1827), + [sym_metavariable] = ACTIONS(1825), + [sym__raw_string_literal_start] = ACTIONS(1825), + [sym_float_literal] = ACTIONS(1825), }, [STATE(506)] = { [sym_line_comment] = STATE(506), [sym_block_comment] = STATE(506), - [ts_builtin_sym_end] = ACTIONS(1850), - [sym_identifier] = ACTIONS(1852), - [anon_sym_SEMI] = ACTIONS(1850), - [anon_sym_macro_rules_BANG] = ACTIONS(1850), - [anon_sym_LPAREN] = ACTIONS(1850), - [anon_sym_LBRACK] = ACTIONS(1850), - [anon_sym_LBRACE] = ACTIONS(1850), - [anon_sym_RBRACE] = ACTIONS(1850), - [anon_sym_STAR] = ACTIONS(1850), - [anon_sym_u8] = ACTIONS(1852), - [anon_sym_i8] = ACTIONS(1852), - [anon_sym_u16] = ACTIONS(1852), - [anon_sym_i16] = ACTIONS(1852), - [anon_sym_u32] = ACTIONS(1852), - [anon_sym_i32] = ACTIONS(1852), - [anon_sym_u64] = ACTIONS(1852), - [anon_sym_i64] = ACTIONS(1852), - [anon_sym_u128] = ACTIONS(1852), - [anon_sym_i128] = ACTIONS(1852), - [anon_sym_isize] = ACTIONS(1852), - [anon_sym_usize] = ACTIONS(1852), - [anon_sym_f32] = ACTIONS(1852), - [anon_sym_f64] = ACTIONS(1852), - [anon_sym_bool] = ACTIONS(1852), - [anon_sym_str] = ACTIONS(1852), - [anon_sym_char] = ACTIONS(1852), - [anon_sym_DASH] = ACTIONS(1850), - [anon_sym_BANG] = ACTIONS(1850), - [anon_sym_AMP] = ACTIONS(1850), - [anon_sym_PIPE] = ACTIONS(1850), - [anon_sym_LT] = ACTIONS(1850), - [anon_sym_DOT_DOT] = ACTIONS(1850), - [anon_sym_COLON_COLON] = ACTIONS(1850), - [anon_sym_POUND] = ACTIONS(1850), - [anon_sym_SQUOTE] = ACTIONS(1852), - [anon_sym_async] = ACTIONS(1852), - [anon_sym_break] = ACTIONS(1852), - [anon_sym_const] = ACTIONS(1852), - [anon_sym_continue] = ACTIONS(1852), - [anon_sym_default] = ACTIONS(1852), - [anon_sym_enum] = ACTIONS(1852), - [anon_sym_fn] = ACTIONS(1852), - [anon_sym_for] = ACTIONS(1852), - [anon_sym_gen] = ACTIONS(1852), - [anon_sym_if] = ACTIONS(1852), - [anon_sym_impl] = ACTIONS(1852), - [anon_sym_let] = ACTIONS(1852), - [anon_sym_loop] = ACTIONS(1852), - [anon_sym_match] = ACTIONS(1852), - [anon_sym_mod] = ACTIONS(1852), - [anon_sym_pub] = ACTIONS(1852), - [anon_sym_return] = ACTIONS(1852), - [anon_sym_static] = ACTIONS(1852), - [anon_sym_struct] = ACTIONS(1852), - [anon_sym_trait] = ACTIONS(1852), - [anon_sym_type] = ACTIONS(1852), - [anon_sym_union] = ACTIONS(1852), - [anon_sym_unsafe] = ACTIONS(1852), - [anon_sym_use] = ACTIONS(1852), - [anon_sym_while] = ACTIONS(1852), - [anon_sym_extern] = ACTIONS(1852), - [anon_sym_yield] = ACTIONS(1852), - [anon_sym_move] = ACTIONS(1852), - [anon_sym_try] = ACTIONS(1852), - [sym_integer_literal] = ACTIONS(1850), - [aux_sym_string_literal_token1] = ACTIONS(1850), - [sym_char_literal] = ACTIONS(1850), - [anon_sym_true] = ACTIONS(1852), - [anon_sym_false] = ACTIONS(1852), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1852), - [sym_super] = ACTIONS(1852), - [sym_crate] = ACTIONS(1852), - [sym_metavariable] = ACTIONS(1850), - [sym__raw_string_literal_start] = ACTIONS(1850), - [sym_float_literal] = ACTIONS(1850), + [ts_builtin_sym_end] = ACTIONS(1829), + [sym_identifier] = ACTIONS(1831), + [anon_sym_SEMI] = ACTIONS(1829), + [anon_sym_macro_rules_BANG] = ACTIONS(1829), + [anon_sym_LPAREN] = ACTIONS(1829), + [anon_sym_LBRACK] = ACTIONS(1829), + [anon_sym_LBRACE] = ACTIONS(1829), + [anon_sym_RBRACE] = ACTIONS(1829), + [anon_sym_STAR] = ACTIONS(1829), + [anon_sym_u8] = ACTIONS(1831), + [anon_sym_i8] = ACTIONS(1831), + [anon_sym_u16] = ACTIONS(1831), + [anon_sym_i16] = ACTIONS(1831), + [anon_sym_u32] = ACTIONS(1831), + [anon_sym_i32] = ACTIONS(1831), + [anon_sym_u64] = ACTIONS(1831), + [anon_sym_i64] = ACTIONS(1831), + [anon_sym_u128] = ACTIONS(1831), + [anon_sym_i128] = ACTIONS(1831), + [anon_sym_isize] = ACTIONS(1831), + [anon_sym_usize] = ACTIONS(1831), + [anon_sym_f32] = ACTIONS(1831), + [anon_sym_f64] = ACTIONS(1831), + [anon_sym_bool] = ACTIONS(1831), + [anon_sym_str] = ACTIONS(1831), + [anon_sym_char] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1829), + [anon_sym_BANG] = ACTIONS(1829), + [anon_sym_AMP] = ACTIONS(1829), + [anon_sym_PIPE] = ACTIONS(1829), + [anon_sym_LT] = ACTIONS(1829), + [anon_sym_DOT_DOT] = ACTIONS(1829), + [anon_sym_COLON_COLON] = ACTIONS(1829), + [anon_sym_POUND] = ACTIONS(1829), + [anon_sym_SQUOTE] = ACTIONS(1831), + [anon_sym_async] = ACTIONS(1831), + [anon_sym_break] = ACTIONS(1831), + [anon_sym_const] = ACTIONS(1831), + [anon_sym_continue] = ACTIONS(1831), + [anon_sym_default] = ACTIONS(1831), + [anon_sym_enum] = ACTIONS(1831), + [anon_sym_fn] = ACTIONS(1831), + [anon_sym_for] = ACTIONS(1831), + [anon_sym_gen] = ACTIONS(1831), + [anon_sym_if] = ACTIONS(1831), + [anon_sym_impl] = ACTIONS(1831), + [anon_sym_let] = ACTIONS(1831), + [anon_sym_loop] = ACTIONS(1831), + [anon_sym_match] = ACTIONS(1831), + [anon_sym_mod] = ACTIONS(1831), + [anon_sym_pub] = ACTIONS(1831), + [anon_sym_return] = ACTIONS(1831), + [anon_sym_static] = ACTIONS(1831), + [anon_sym_struct] = ACTIONS(1831), + [anon_sym_trait] = ACTIONS(1831), + [anon_sym_type] = ACTIONS(1831), + [anon_sym_union] = ACTIONS(1831), + [anon_sym_unsafe] = ACTIONS(1831), + [anon_sym_use] = ACTIONS(1831), + [anon_sym_while] = ACTIONS(1831), + [anon_sym_extern] = ACTIONS(1831), + [anon_sym_safe] = ACTIONS(1831), + [anon_sym_yield] = ACTIONS(1831), + [anon_sym_move] = ACTIONS(1831), + [anon_sym_try] = ACTIONS(1831), + [sym_integer_literal] = ACTIONS(1829), + [aux_sym_string_literal_token1] = ACTIONS(1829), + [sym_char_literal] = ACTIONS(1829), + [anon_sym_true] = ACTIONS(1831), + [anon_sym_false] = ACTIONS(1831), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1831), + [sym_super] = ACTIONS(1831), + [sym_crate] = ACTIONS(1831), + [sym_metavariable] = ACTIONS(1829), + [sym__raw_string_literal_start] = ACTIONS(1829), + [sym_float_literal] = ACTIONS(1829), }, [STATE(507)] = { [sym_line_comment] = STATE(507), [sym_block_comment] = STATE(507), - [ts_builtin_sym_end] = ACTIONS(1854), - [sym_identifier] = ACTIONS(1856), - [anon_sym_SEMI] = ACTIONS(1854), - [anon_sym_macro_rules_BANG] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(1854), - [anon_sym_LBRACK] = ACTIONS(1854), - [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_RBRACE] = ACTIONS(1854), - [anon_sym_STAR] = ACTIONS(1854), - [anon_sym_u8] = ACTIONS(1856), - [anon_sym_i8] = ACTIONS(1856), - [anon_sym_u16] = ACTIONS(1856), - [anon_sym_i16] = ACTIONS(1856), - [anon_sym_u32] = ACTIONS(1856), - [anon_sym_i32] = ACTIONS(1856), - [anon_sym_u64] = ACTIONS(1856), - [anon_sym_i64] = ACTIONS(1856), - [anon_sym_u128] = ACTIONS(1856), - [anon_sym_i128] = ACTIONS(1856), - [anon_sym_isize] = ACTIONS(1856), - [anon_sym_usize] = ACTIONS(1856), - [anon_sym_f32] = ACTIONS(1856), - [anon_sym_f64] = ACTIONS(1856), - [anon_sym_bool] = ACTIONS(1856), - [anon_sym_str] = ACTIONS(1856), - [anon_sym_char] = ACTIONS(1856), - [anon_sym_DASH] = ACTIONS(1854), - [anon_sym_BANG] = ACTIONS(1854), - [anon_sym_AMP] = ACTIONS(1854), - [anon_sym_PIPE] = ACTIONS(1854), - [anon_sym_LT] = ACTIONS(1854), - [anon_sym_DOT_DOT] = ACTIONS(1854), - [anon_sym_COLON_COLON] = ACTIONS(1854), - [anon_sym_POUND] = ACTIONS(1854), - [anon_sym_SQUOTE] = ACTIONS(1856), - [anon_sym_async] = ACTIONS(1856), - [anon_sym_break] = ACTIONS(1856), - [anon_sym_const] = ACTIONS(1856), - [anon_sym_continue] = ACTIONS(1856), - [anon_sym_default] = ACTIONS(1856), - [anon_sym_enum] = ACTIONS(1856), - [anon_sym_fn] = ACTIONS(1856), - [anon_sym_for] = ACTIONS(1856), - [anon_sym_gen] = ACTIONS(1856), - [anon_sym_if] = ACTIONS(1856), - [anon_sym_impl] = ACTIONS(1856), - [anon_sym_let] = ACTIONS(1856), - [anon_sym_loop] = ACTIONS(1856), - [anon_sym_match] = ACTIONS(1856), - [anon_sym_mod] = ACTIONS(1856), - [anon_sym_pub] = ACTIONS(1856), - [anon_sym_return] = ACTIONS(1856), - [anon_sym_static] = ACTIONS(1856), - [anon_sym_struct] = ACTIONS(1856), - [anon_sym_trait] = ACTIONS(1856), - [anon_sym_type] = ACTIONS(1856), - [anon_sym_union] = ACTIONS(1856), - [anon_sym_unsafe] = ACTIONS(1856), - [anon_sym_use] = ACTIONS(1856), - [anon_sym_while] = ACTIONS(1856), - [anon_sym_extern] = ACTIONS(1856), - [anon_sym_yield] = ACTIONS(1856), - [anon_sym_move] = ACTIONS(1856), - [anon_sym_try] = ACTIONS(1856), - [sym_integer_literal] = ACTIONS(1854), - [aux_sym_string_literal_token1] = ACTIONS(1854), - [sym_char_literal] = ACTIONS(1854), - [anon_sym_true] = ACTIONS(1856), - [anon_sym_false] = ACTIONS(1856), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1856), - [sym_super] = ACTIONS(1856), - [sym_crate] = ACTIONS(1856), - [sym_metavariable] = ACTIONS(1854), - [sym__raw_string_literal_start] = ACTIONS(1854), - [sym_float_literal] = ACTIONS(1854), + [ts_builtin_sym_end] = ACTIONS(1833), + [sym_identifier] = ACTIONS(1835), + [anon_sym_SEMI] = ACTIONS(1833), + [anon_sym_macro_rules_BANG] = ACTIONS(1833), + [anon_sym_LPAREN] = ACTIONS(1833), + [anon_sym_LBRACK] = ACTIONS(1833), + [anon_sym_LBRACE] = ACTIONS(1833), + [anon_sym_RBRACE] = ACTIONS(1833), + [anon_sym_STAR] = ACTIONS(1833), + [anon_sym_u8] = ACTIONS(1835), + [anon_sym_i8] = ACTIONS(1835), + [anon_sym_u16] = ACTIONS(1835), + [anon_sym_i16] = ACTIONS(1835), + [anon_sym_u32] = ACTIONS(1835), + [anon_sym_i32] = ACTIONS(1835), + [anon_sym_u64] = ACTIONS(1835), + [anon_sym_i64] = ACTIONS(1835), + [anon_sym_u128] = ACTIONS(1835), + [anon_sym_i128] = ACTIONS(1835), + [anon_sym_isize] = ACTIONS(1835), + [anon_sym_usize] = ACTIONS(1835), + [anon_sym_f32] = ACTIONS(1835), + [anon_sym_f64] = ACTIONS(1835), + [anon_sym_bool] = ACTIONS(1835), + [anon_sym_str] = ACTIONS(1835), + [anon_sym_char] = ACTIONS(1835), + [anon_sym_DASH] = ACTIONS(1833), + [anon_sym_BANG] = ACTIONS(1833), + [anon_sym_AMP] = ACTIONS(1833), + [anon_sym_PIPE] = ACTIONS(1833), + [anon_sym_LT] = ACTIONS(1833), + [anon_sym_DOT_DOT] = ACTIONS(1833), + [anon_sym_COLON_COLON] = ACTIONS(1833), + [anon_sym_POUND] = ACTIONS(1833), + [anon_sym_SQUOTE] = ACTIONS(1835), + [anon_sym_async] = ACTIONS(1835), + [anon_sym_break] = ACTIONS(1835), + [anon_sym_const] = ACTIONS(1835), + [anon_sym_continue] = ACTIONS(1835), + [anon_sym_default] = ACTIONS(1835), + [anon_sym_enum] = ACTIONS(1835), + [anon_sym_fn] = ACTIONS(1835), + [anon_sym_for] = ACTIONS(1835), + [anon_sym_gen] = ACTIONS(1835), + [anon_sym_if] = ACTIONS(1835), + [anon_sym_impl] = ACTIONS(1835), + [anon_sym_let] = ACTIONS(1835), + [anon_sym_loop] = ACTIONS(1835), + [anon_sym_match] = ACTIONS(1835), + [anon_sym_mod] = ACTIONS(1835), + [anon_sym_pub] = ACTIONS(1835), + [anon_sym_return] = ACTIONS(1835), + [anon_sym_static] = ACTIONS(1835), + [anon_sym_struct] = ACTIONS(1835), + [anon_sym_trait] = ACTIONS(1835), + [anon_sym_type] = ACTIONS(1835), + [anon_sym_union] = ACTIONS(1835), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_use] = ACTIONS(1835), + [anon_sym_while] = ACTIONS(1835), + [anon_sym_extern] = ACTIONS(1835), + [anon_sym_safe] = ACTIONS(1835), + [anon_sym_yield] = ACTIONS(1835), + [anon_sym_move] = ACTIONS(1835), + [anon_sym_try] = ACTIONS(1835), + [sym_integer_literal] = ACTIONS(1833), + [aux_sym_string_literal_token1] = ACTIONS(1833), + [sym_char_literal] = ACTIONS(1833), + [anon_sym_true] = ACTIONS(1835), + [anon_sym_false] = ACTIONS(1835), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1835), + [sym_super] = ACTIONS(1835), + [sym_crate] = ACTIONS(1835), + [sym_metavariable] = ACTIONS(1833), + [sym__raw_string_literal_start] = ACTIONS(1833), + [sym_float_literal] = ACTIONS(1833), }, [STATE(508)] = { [sym_line_comment] = STATE(508), [sym_block_comment] = STATE(508), - [ts_builtin_sym_end] = ACTIONS(1858), - [sym_identifier] = ACTIONS(1860), - [anon_sym_SEMI] = ACTIONS(1858), - [anon_sym_macro_rules_BANG] = ACTIONS(1858), - [anon_sym_LPAREN] = ACTIONS(1858), - [anon_sym_LBRACK] = ACTIONS(1858), - [anon_sym_LBRACE] = ACTIONS(1858), - [anon_sym_RBRACE] = ACTIONS(1858), - [anon_sym_STAR] = ACTIONS(1858), - [anon_sym_u8] = ACTIONS(1860), - [anon_sym_i8] = ACTIONS(1860), - [anon_sym_u16] = ACTIONS(1860), - [anon_sym_i16] = ACTIONS(1860), - [anon_sym_u32] = ACTIONS(1860), - [anon_sym_i32] = ACTIONS(1860), - [anon_sym_u64] = ACTIONS(1860), - [anon_sym_i64] = ACTIONS(1860), - [anon_sym_u128] = ACTIONS(1860), - [anon_sym_i128] = ACTIONS(1860), - [anon_sym_isize] = ACTIONS(1860), - [anon_sym_usize] = ACTIONS(1860), - [anon_sym_f32] = ACTIONS(1860), - [anon_sym_f64] = ACTIONS(1860), - [anon_sym_bool] = ACTIONS(1860), - [anon_sym_str] = ACTIONS(1860), - [anon_sym_char] = ACTIONS(1860), - [anon_sym_DASH] = ACTIONS(1858), - [anon_sym_BANG] = ACTIONS(1858), - [anon_sym_AMP] = ACTIONS(1858), - [anon_sym_PIPE] = ACTIONS(1858), - [anon_sym_LT] = ACTIONS(1858), - [anon_sym_DOT_DOT] = ACTIONS(1858), - [anon_sym_COLON_COLON] = ACTIONS(1858), - [anon_sym_POUND] = ACTIONS(1858), - [anon_sym_SQUOTE] = ACTIONS(1860), - [anon_sym_async] = ACTIONS(1860), - [anon_sym_break] = ACTIONS(1860), - [anon_sym_const] = ACTIONS(1860), - [anon_sym_continue] = ACTIONS(1860), - [anon_sym_default] = ACTIONS(1860), - [anon_sym_enum] = ACTIONS(1860), - [anon_sym_fn] = ACTIONS(1860), - [anon_sym_for] = ACTIONS(1860), - [anon_sym_gen] = ACTIONS(1860), - [anon_sym_if] = ACTIONS(1860), - [anon_sym_impl] = ACTIONS(1860), - [anon_sym_let] = ACTIONS(1860), - [anon_sym_loop] = ACTIONS(1860), - [anon_sym_match] = ACTIONS(1860), - [anon_sym_mod] = ACTIONS(1860), - [anon_sym_pub] = ACTIONS(1860), - [anon_sym_return] = ACTIONS(1860), - [anon_sym_static] = ACTIONS(1860), - [anon_sym_struct] = ACTIONS(1860), - [anon_sym_trait] = ACTIONS(1860), - [anon_sym_type] = ACTIONS(1860), - [anon_sym_union] = ACTIONS(1860), - [anon_sym_unsafe] = ACTIONS(1860), - [anon_sym_use] = ACTIONS(1860), - [anon_sym_while] = ACTIONS(1860), - [anon_sym_extern] = ACTIONS(1860), - [anon_sym_yield] = ACTIONS(1860), - [anon_sym_move] = ACTIONS(1860), - [anon_sym_try] = ACTIONS(1860), - [sym_integer_literal] = ACTIONS(1858), - [aux_sym_string_literal_token1] = ACTIONS(1858), - [sym_char_literal] = ACTIONS(1858), - [anon_sym_true] = ACTIONS(1860), - [anon_sym_false] = ACTIONS(1860), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1860), - [sym_super] = ACTIONS(1860), - [sym_crate] = ACTIONS(1860), - [sym_metavariable] = ACTIONS(1858), - [sym__raw_string_literal_start] = ACTIONS(1858), - [sym_float_literal] = ACTIONS(1858), + [ts_builtin_sym_end] = ACTIONS(1837), + [sym_identifier] = ACTIONS(1839), + [anon_sym_SEMI] = ACTIONS(1837), + [anon_sym_macro_rules_BANG] = ACTIONS(1837), + [anon_sym_LPAREN] = ACTIONS(1837), + [anon_sym_LBRACK] = ACTIONS(1837), + [anon_sym_LBRACE] = ACTIONS(1837), + [anon_sym_RBRACE] = ACTIONS(1837), + [anon_sym_STAR] = ACTIONS(1837), + [anon_sym_u8] = ACTIONS(1839), + [anon_sym_i8] = ACTIONS(1839), + [anon_sym_u16] = ACTIONS(1839), + [anon_sym_i16] = ACTIONS(1839), + [anon_sym_u32] = ACTIONS(1839), + [anon_sym_i32] = ACTIONS(1839), + [anon_sym_u64] = ACTIONS(1839), + [anon_sym_i64] = ACTIONS(1839), + [anon_sym_u128] = ACTIONS(1839), + [anon_sym_i128] = ACTIONS(1839), + [anon_sym_isize] = ACTIONS(1839), + [anon_sym_usize] = ACTIONS(1839), + [anon_sym_f32] = ACTIONS(1839), + [anon_sym_f64] = ACTIONS(1839), + [anon_sym_bool] = ACTIONS(1839), + [anon_sym_str] = ACTIONS(1839), + [anon_sym_char] = ACTIONS(1839), + [anon_sym_DASH] = ACTIONS(1837), + [anon_sym_BANG] = ACTIONS(1837), + [anon_sym_AMP] = ACTIONS(1837), + [anon_sym_PIPE] = ACTIONS(1837), + [anon_sym_LT] = ACTIONS(1837), + [anon_sym_DOT_DOT] = ACTIONS(1837), + [anon_sym_COLON_COLON] = ACTIONS(1837), + [anon_sym_POUND] = ACTIONS(1837), + [anon_sym_SQUOTE] = ACTIONS(1839), + [anon_sym_async] = ACTIONS(1839), + [anon_sym_break] = ACTIONS(1839), + [anon_sym_const] = ACTIONS(1839), + [anon_sym_continue] = ACTIONS(1839), + [anon_sym_default] = ACTIONS(1839), + [anon_sym_enum] = ACTIONS(1839), + [anon_sym_fn] = ACTIONS(1839), + [anon_sym_for] = ACTIONS(1839), + [anon_sym_gen] = ACTIONS(1839), + [anon_sym_if] = ACTIONS(1839), + [anon_sym_impl] = ACTIONS(1839), + [anon_sym_let] = ACTIONS(1839), + [anon_sym_loop] = ACTIONS(1839), + [anon_sym_match] = ACTIONS(1839), + [anon_sym_mod] = ACTIONS(1839), + [anon_sym_pub] = ACTIONS(1839), + [anon_sym_return] = ACTIONS(1839), + [anon_sym_static] = ACTIONS(1839), + [anon_sym_struct] = ACTIONS(1839), + [anon_sym_trait] = ACTIONS(1839), + [anon_sym_type] = ACTIONS(1839), + [anon_sym_union] = ACTIONS(1839), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_use] = ACTIONS(1839), + [anon_sym_while] = ACTIONS(1839), + [anon_sym_extern] = ACTIONS(1839), + [anon_sym_safe] = ACTIONS(1839), + [anon_sym_yield] = ACTIONS(1839), + [anon_sym_move] = ACTIONS(1839), + [anon_sym_try] = ACTIONS(1839), + [sym_integer_literal] = ACTIONS(1837), + [aux_sym_string_literal_token1] = ACTIONS(1837), + [sym_char_literal] = ACTIONS(1837), + [anon_sym_true] = ACTIONS(1839), + [anon_sym_false] = ACTIONS(1839), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1839), + [sym_super] = ACTIONS(1839), + [sym_crate] = ACTIONS(1839), + [sym_metavariable] = ACTIONS(1837), + [sym__raw_string_literal_start] = ACTIONS(1837), + [sym_float_literal] = ACTIONS(1837), }, [STATE(509)] = { [sym_line_comment] = STATE(509), [sym_block_comment] = STATE(509), - [ts_builtin_sym_end] = ACTIONS(1862), - [sym_identifier] = ACTIONS(1864), - [anon_sym_SEMI] = ACTIONS(1862), - [anon_sym_macro_rules_BANG] = ACTIONS(1862), - [anon_sym_LPAREN] = ACTIONS(1862), - [anon_sym_LBRACK] = ACTIONS(1862), - [anon_sym_LBRACE] = ACTIONS(1862), - [anon_sym_RBRACE] = ACTIONS(1862), - [anon_sym_STAR] = ACTIONS(1862), - [anon_sym_u8] = ACTIONS(1864), - [anon_sym_i8] = ACTIONS(1864), - [anon_sym_u16] = ACTIONS(1864), - [anon_sym_i16] = ACTIONS(1864), - [anon_sym_u32] = ACTIONS(1864), - [anon_sym_i32] = ACTIONS(1864), - [anon_sym_u64] = ACTIONS(1864), - [anon_sym_i64] = ACTIONS(1864), - [anon_sym_u128] = ACTIONS(1864), - [anon_sym_i128] = ACTIONS(1864), - [anon_sym_isize] = ACTIONS(1864), - [anon_sym_usize] = ACTIONS(1864), - [anon_sym_f32] = ACTIONS(1864), - [anon_sym_f64] = ACTIONS(1864), - [anon_sym_bool] = ACTIONS(1864), - [anon_sym_str] = ACTIONS(1864), - [anon_sym_char] = ACTIONS(1864), - [anon_sym_DASH] = ACTIONS(1862), - [anon_sym_BANG] = ACTIONS(1862), - [anon_sym_AMP] = ACTIONS(1862), - [anon_sym_PIPE] = ACTIONS(1862), - [anon_sym_LT] = ACTIONS(1862), - [anon_sym_DOT_DOT] = ACTIONS(1862), - [anon_sym_COLON_COLON] = ACTIONS(1862), - [anon_sym_POUND] = ACTIONS(1862), - [anon_sym_SQUOTE] = ACTIONS(1864), - [anon_sym_async] = ACTIONS(1864), - [anon_sym_break] = ACTIONS(1864), - [anon_sym_const] = ACTIONS(1864), - [anon_sym_continue] = ACTIONS(1864), - [anon_sym_default] = ACTIONS(1864), - [anon_sym_enum] = ACTIONS(1864), - [anon_sym_fn] = ACTIONS(1864), - [anon_sym_for] = ACTIONS(1864), - [anon_sym_gen] = ACTIONS(1864), - [anon_sym_if] = ACTIONS(1864), - [anon_sym_impl] = ACTIONS(1864), - [anon_sym_let] = ACTIONS(1864), - [anon_sym_loop] = ACTIONS(1864), - [anon_sym_match] = ACTIONS(1864), - [anon_sym_mod] = ACTIONS(1864), - [anon_sym_pub] = ACTIONS(1864), - [anon_sym_return] = ACTIONS(1864), - [anon_sym_static] = ACTIONS(1864), - [anon_sym_struct] = ACTIONS(1864), - [anon_sym_trait] = ACTIONS(1864), - [anon_sym_type] = ACTIONS(1864), - [anon_sym_union] = ACTIONS(1864), - [anon_sym_unsafe] = ACTIONS(1864), - [anon_sym_use] = ACTIONS(1864), - [anon_sym_while] = ACTIONS(1864), - [anon_sym_extern] = ACTIONS(1864), - [anon_sym_yield] = ACTIONS(1864), - [anon_sym_move] = ACTIONS(1864), - [anon_sym_try] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(1862), - [aux_sym_string_literal_token1] = ACTIONS(1862), - [sym_char_literal] = ACTIONS(1862), - [anon_sym_true] = ACTIONS(1864), - [anon_sym_false] = ACTIONS(1864), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1864), - [sym_super] = ACTIONS(1864), - [sym_crate] = ACTIONS(1864), - [sym_metavariable] = ACTIONS(1862), - [sym__raw_string_literal_start] = ACTIONS(1862), - [sym_float_literal] = ACTIONS(1862), + [ts_builtin_sym_end] = ACTIONS(1841), + [sym_identifier] = ACTIONS(1843), + [anon_sym_SEMI] = ACTIONS(1841), + [anon_sym_macro_rules_BANG] = ACTIONS(1841), + [anon_sym_LPAREN] = ACTIONS(1841), + [anon_sym_LBRACK] = ACTIONS(1841), + [anon_sym_LBRACE] = ACTIONS(1841), + [anon_sym_RBRACE] = ACTIONS(1841), + [anon_sym_STAR] = ACTIONS(1841), + [anon_sym_u8] = ACTIONS(1843), + [anon_sym_i8] = ACTIONS(1843), + [anon_sym_u16] = ACTIONS(1843), + [anon_sym_i16] = ACTIONS(1843), + [anon_sym_u32] = ACTIONS(1843), + [anon_sym_i32] = ACTIONS(1843), + [anon_sym_u64] = ACTIONS(1843), + [anon_sym_i64] = ACTIONS(1843), + [anon_sym_u128] = ACTIONS(1843), + [anon_sym_i128] = ACTIONS(1843), + [anon_sym_isize] = ACTIONS(1843), + [anon_sym_usize] = ACTIONS(1843), + [anon_sym_f32] = ACTIONS(1843), + [anon_sym_f64] = ACTIONS(1843), + [anon_sym_bool] = ACTIONS(1843), + [anon_sym_str] = ACTIONS(1843), + [anon_sym_char] = ACTIONS(1843), + [anon_sym_DASH] = ACTIONS(1841), + [anon_sym_BANG] = ACTIONS(1841), + [anon_sym_AMP] = ACTIONS(1841), + [anon_sym_PIPE] = ACTIONS(1841), + [anon_sym_LT] = ACTIONS(1841), + [anon_sym_DOT_DOT] = ACTIONS(1841), + [anon_sym_COLON_COLON] = ACTIONS(1841), + [anon_sym_POUND] = ACTIONS(1841), + [anon_sym_SQUOTE] = ACTIONS(1843), + [anon_sym_async] = ACTIONS(1843), + [anon_sym_break] = ACTIONS(1843), + [anon_sym_const] = ACTIONS(1843), + [anon_sym_continue] = ACTIONS(1843), + [anon_sym_default] = ACTIONS(1843), + [anon_sym_enum] = ACTIONS(1843), + [anon_sym_fn] = ACTIONS(1843), + [anon_sym_for] = ACTIONS(1843), + [anon_sym_gen] = ACTIONS(1843), + [anon_sym_if] = ACTIONS(1843), + [anon_sym_impl] = ACTIONS(1843), + [anon_sym_let] = ACTIONS(1843), + [anon_sym_loop] = ACTIONS(1843), + [anon_sym_match] = ACTIONS(1843), + [anon_sym_mod] = ACTIONS(1843), + [anon_sym_pub] = ACTIONS(1843), + [anon_sym_return] = ACTIONS(1843), + [anon_sym_static] = ACTIONS(1843), + [anon_sym_struct] = ACTIONS(1843), + [anon_sym_trait] = ACTIONS(1843), + [anon_sym_type] = ACTIONS(1843), + [anon_sym_union] = ACTIONS(1843), + [anon_sym_unsafe] = ACTIONS(1843), + [anon_sym_use] = ACTIONS(1843), + [anon_sym_while] = ACTIONS(1843), + [anon_sym_extern] = ACTIONS(1843), + [anon_sym_safe] = ACTIONS(1843), + [anon_sym_yield] = ACTIONS(1843), + [anon_sym_move] = ACTIONS(1843), + [anon_sym_try] = ACTIONS(1843), + [sym_integer_literal] = ACTIONS(1841), + [aux_sym_string_literal_token1] = ACTIONS(1841), + [sym_char_literal] = ACTIONS(1841), + [anon_sym_true] = ACTIONS(1843), + [anon_sym_false] = ACTIONS(1843), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1843), + [sym_super] = ACTIONS(1843), + [sym_crate] = ACTIONS(1843), + [sym_metavariable] = ACTIONS(1841), + [sym__raw_string_literal_start] = ACTIONS(1841), + [sym_float_literal] = ACTIONS(1841), }, [STATE(510)] = { [sym_line_comment] = STATE(510), [sym_block_comment] = STATE(510), - [ts_builtin_sym_end] = ACTIONS(1866), - [sym_identifier] = ACTIONS(1868), - [anon_sym_SEMI] = ACTIONS(1866), - [anon_sym_macro_rules_BANG] = ACTIONS(1866), - [anon_sym_LPAREN] = ACTIONS(1866), - [anon_sym_LBRACK] = ACTIONS(1866), - [anon_sym_LBRACE] = ACTIONS(1866), - [anon_sym_RBRACE] = ACTIONS(1866), - [anon_sym_STAR] = ACTIONS(1866), - [anon_sym_u8] = ACTIONS(1868), - [anon_sym_i8] = ACTIONS(1868), - [anon_sym_u16] = ACTIONS(1868), - [anon_sym_i16] = ACTIONS(1868), - [anon_sym_u32] = ACTIONS(1868), - [anon_sym_i32] = ACTIONS(1868), - [anon_sym_u64] = ACTIONS(1868), - [anon_sym_i64] = ACTIONS(1868), - [anon_sym_u128] = ACTIONS(1868), - [anon_sym_i128] = ACTIONS(1868), - [anon_sym_isize] = ACTIONS(1868), - [anon_sym_usize] = ACTIONS(1868), - [anon_sym_f32] = ACTIONS(1868), - [anon_sym_f64] = ACTIONS(1868), - [anon_sym_bool] = ACTIONS(1868), - [anon_sym_str] = ACTIONS(1868), - [anon_sym_char] = ACTIONS(1868), - [anon_sym_DASH] = ACTIONS(1866), - [anon_sym_BANG] = ACTIONS(1866), - [anon_sym_AMP] = ACTIONS(1866), - [anon_sym_PIPE] = ACTIONS(1866), - [anon_sym_LT] = ACTIONS(1866), - [anon_sym_DOT_DOT] = ACTIONS(1866), - [anon_sym_COLON_COLON] = ACTIONS(1866), - [anon_sym_POUND] = ACTIONS(1866), - [anon_sym_SQUOTE] = ACTIONS(1868), - [anon_sym_async] = ACTIONS(1868), - [anon_sym_break] = ACTIONS(1868), - [anon_sym_const] = ACTIONS(1868), - [anon_sym_continue] = ACTIONS(1868), - [anon_sym_default] = ACTIONS(1868), - [anon_sym_enum] = ACTIONS(1868), - [anon_sym_fn] = ACTIONS(1868), - [anon_sym_for] = ACTIONS(1868), - [anon_sym_gen] = ACTIONS(1868), - [anon_sym_if] = ACTIONS(1868), - [anon_sym_impl] = ACTIONS(1868), - [anon_sym_let] = ACTIONS(1868), - [anon_sym_loop] = ACTIONS(1868), - [anon_sym_match] = ACTIONS(1868), - [anon_sym_mod] = ACTIONS(1868), - [anon_sym_pub] = ACTIONS(1868), - [anon_sym_return] = ACTIONS(1868), - [anon_sym_static] = ACTIONS(1868), - [anon_sym_struct] = ACTIONS(1868), - [anon_sym_trait] = ACTIONS(1868), - [anon_sym_type] = ACTIONS(1868), - [anon_sym_union] = ACTIONS(1868), - [anon_sym_unsafe] = ACTIONS(1868), - [anon_sym_use] = ACTIONS(1868), - [anon_sym_while] = ACTIONS(1868), - [anon_sym_extern] = ACTIONS(1868), - [anon_sym_yield] = ACTIONS(1868), - [anon_sym_move] = ACTIONS(1868), - [anon_sym_try] = ACTIONS(1868), - [sym_integer_literal] = ACTIONS(1866), - [aux_sym_string_literal_token1] = ACTIONS(1866), - [sym_char_literal] = ACTIONS(1866), - [anon_sym_true] = ACTIONS(1868), - [anon_sym_false] = ACTIONS(1868), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1868), - [sym_super] = ACTIONS(1868), - [sym_crate] = ACTIONS(1868), - [sym_metavariable] = ACTIONS(1866), - [sym__raw_string_literal_start] = ACTIONS(1866), - [sym_float_literal] = ACTIONS(1866), + [ts_builtin_sym_end] = ACTIONS(1845), + [sym_identifier] = ACTIONS(1847), + [anon_sym_SEMI] = ACTIONS(1845), + [anon_sym_macro_rules_BANG] = ACTIONS(1845), + [anon_sym_LPAREN] = ACTIONS(1845), + [anon_sym_LBRACK] = ACTIONS(1845), + [anon_sym_LBRACE] = ACTIONS(1845), + [anon_sym_RBRACE] = ACTIONS(1845), + [anon_sym_STAR] = ACTIONS(1845), + [anon_sym_u8] = ACTIONS(1847), + [anon_sym_i8] = ACTIONS(1847), + [anon_sym_u16] = ACTIONS(1847), + [anon_sym_i16] = ACTIONS(1847), + [anon_sym_u32] = ACTIONS(1847), + [anon_sym_i32] = ACTIONS(1847), + [anon_sym_u64] = ACTIONS(1847), + [anon_sym_i64] = ACTIONS(1847), + [anon_sym_u128] = ACTIONS(1847), + [anon_sym_i128] = ACTIONS(1847), + [anon_sym_isize] = ACTIONS(1847), + [anon_sym_usize] = ACTIONS(1847), + [anon_sym_f32] = ACTIONS(1847), + [anon_sym_f64] = ACTIONS(1847), + [anon_sym_bool] = ACTIONS(1847), + [anon_sym_str] = ACTIONS(1847), + [anon_sym_char] = ACTIONS(1847), + [anon_sym_DASH] = ACTIONS(1845), + [anon_sym_BANG] = ACTIONS(1845), + [anon_sym_AMP] = ACTIONS(1845), + [anon_sym_PIPE] = ACTIONS(1845), + [anon_sym_LT] = ACTIONS(1845), + [anon_sym_DOT_DOT] = ACTIONS(1845), + [anon_sym_COLON_COLON] = ACTIONS(1845), + [anon_sym_POUND] = ACTIONS(1845), + [anon_sym_SQUOTE] = ACTIONS(1847), + [anon_sym_async] = ACTIONS(1847), + [anon_sym_break] = ACTIONS(1847), + [anon_sym_const] = ACTIONS(1847), + [anon_sym_continue] = ACTIONS(1847), + [anon_sym_default] = ACTIONS(1847), + [anon_sym_enum] = ACTIONS(1847), + [anon_sym_fn] = ACTIONS(1847), + [anon_sym_for] = ACTIONS(1847), + [anon_sym_gen] = ACTIONS(1847), + [anon_sym_if] = ACTIONS(1847), + [anon_sym_impl] = ACTIONS(1847), + [anon_sym_let] = ACTIONS(1847), + [anon_sym_loop] = ACTIONS(1847), + [anon_sym_match] = ACTIONS(1847), + [anon_sym_mod] = ACTIONS(1847), + [anon_sym_pub] = ACTIONS(1847), + [anon_sym_return] = ACTIONS(1847), + [anon_sym_static] = ACTIONS(1847), + [anon_sym_struct] = ACTIONS(1847), + [anon_sym_trait] = ACTIONS(1847), + [anon_sym_type] = ACTIONS(1847), + [anon_sym_union] = ACTIONS(1847), + [anon_sym_unsafe] = ACTIONS(1847), + [anon_sym_use] = ACTIONS(1847), + [anon_sym_while] = ACTIONS(1847), + [anon_sym_extern] = ACTIONS(1847), + [anon_sym_safe] = ACTIONS(1847), + [anon_sym_yield] = ACTIONS(1847), + [anon_sym_move] = ACTIONS(1847), + [anon_sym_try] = ACTIONS(1847), + [sym_integer_literal] = ACTIONS(1845), + [aux_sym_string_literal_token1] = ACTIONS(1845), + [sym_char_literal] = ACTIONS(1845), + [anon_sym_true] = ACTIONS(1847), + [anon_sym_false] = ACTIONS(1847), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1847), + [sym_super] = ACTIONS(1847), + [sym_crate] = ACTIONS(1847), + [sym_metavariable] = ACTIONS(1845), + [sym__raw_string_literal_start] = ACTIONS(1845), + [sym_float_literal] = ACTIONS(1845), }, [STATE(511)] = { [sym_line_comment] = STATE(511), [sym_block_comment] = STATE(511), - [ts_builtin_sym_end] = ACTIONS(1870), - [sym_identifier] = ACTIONS(1872), - [anon_sym_SEMI] = ACTIONS(1870), - [anon_sym_macro_rules_BANG] = ACTIONS(1870), - [anon_sym_LPAREN] = ACTIONS(1870), - [anon_sym_LBRACK] = ACTIONS(1870), - [anon_sym_LBRACE] = ACTIONS(1870), - [anon_sym_RBRACE] = ACTIONS(1870), - [anon_sym_STAR] = ACTIONS(1870), - [anon_sym_u8] = ACTIONS(1872), - [anon_sym_i8] = ACTIONS(1872), - [anon_sym_u16] = ACTIONS(1872), - [anon_sym_i16] = ACTIONS(1872), - [anon_sym_u32] = ACTIONS(1872), - [anon_sym_i32] = ACTIONS(1872), - [anon_sym_u64] = ACTIONS(1872), - [anon_sym_i64] = ACTIONS(1872), - [anon_sym_u128] = ACTIONS(1872), - [anon_sym_i128] = ACTIONS(1872), - [anon_sym_isize] = ACTIONS(1872), - [anon_sym_usize] = ACTIONS(1872), - [anon_sym_f32] = ACTIONS(1872), - [anon_sym_f64] = ACTIONS(1872), - [anon_sym_bool] = ACTIONS(1872), - [anon_sym_str] = ACTIONS(1872), - [anon_sym_char] = ACTIONS(1872), - [anon_sym_DASH] = ACTIONS(1870), - [anon_sym_BANG] = ACTIONS(1870), - [anon_sym_AMP] = ACTIONS(1870), - [anon_sym_PIPE] = ACTIONS(1870), - [anon_sym_LT] = ACTIONS(1870), - [anon_sym_DOT_DOT] = ACTIONS(1870), - [anon_sym_COLON_COLON] = ACTIONS(1870), - [anon_sym_POUND] = ACTIONS(1870), - [anon_sym_SQUOTE] = ACTIONS(1872), - [anon_sym_async] = ACTIONS(1872), - [anon_sym_break] = ACTIONS(1872), - [anon_sym_const] = ACTIONS(1872), - [anon_sym_continue] = ACTIONS(1872), - [anon_sym_default] = ACTIONS(1872), - [anon_sym_enum] = ACTIONS(1872), - [anon_sym_fn] = ACTIONS(1872), - [anon_sym_for] = ACTIONS(1872), - [anon_sym_gen] = ACTIONS(1872), - [anon_sym_if] = ACTIONS(1872), - [anon_sym_impl] = ACTIONS(1872), - [anon_sym_let] = ACTIONS(1872), - [anon_sym_loop] = ACTIONS(1872), - [anon_sym_match] = ACTIONS(1872), - [anon_sym_mod] = ACTIONS(1872), - [anon_sym_pub] = ACTIONS(1872), - [anon_sym_return] = ACTIONS(1872), - [anon_sym_static] = ACTIONS(1872), - [anon_sym_struct] = ACTIONS(1872), - [anon_sym_trait] = ACTIONS(1872), - [anon_sym_type] = ACTIONS(1872), - [anon_sym_union] = ACTIONS(1872), - [anon_sym_unsafe] = ACTIONS(1872), - [anon_sym_use] = ACTIONS(1872), - [anon_sym_while] = ACTIONS(1872), - [anon_sym_extern] = ACTIONS(1872), - [anon_sym_yield] = ACTIONS(1872), - [anon_sym_move] = ACTIONS(1872), - [anon_sym_try] = ACTIONS(1872), - [sym_integer_literal] = ACTIONS(1870), - [aux_sym_string_literal_token1] = ACTIONS(1870), - [sym_char_literal] = ACTIONS(1870), - [anon_sym_true] = ACTIONS(1872), - [anon_sym_false] = ACTIONS(1872), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1872), - [sym_super] = ACTIONS(1872), - [sym_crate] = ACTIONS(1872), - [sym_metavariable] = ACTIONS(1870), - [sym__raw_string_literal_start] = ACTIONS(1870), - [sym_float_literal] = ACTIONS(1870), + [ts_builtin_sym_end] = ACTIONS(1849), + [sym_identifier] = ACTIONS(1851), + [anon_sym_SEMI] = ACTIONS(1849), + [anon_sym_macro_rules_BANG] = ACTIONS(1849), + [anon_sym_LPAREN] = ACTIONS(1849), + [anon_sym_LBRACK] = ACTIONS(1849), + [anon_sym_LBRACE] = ACTIONS(1849), + [anon_sym_RBRACE] = ACTIONS(1849), + [anon_sym_STAR] = ACTIONS(1849), + [anon_sym_u8] = ACTIONS(1851), + [anon_sym_i8] = ACTIONS(1851), + [anon_sym_u16] = ACTIONS(1851), + [anon_sym_i16] = ACTIONS(1851), + [anon_sym_u32] = ACTIONS(1851), + [anon_sym_i32] = ACTIONS(1851), + [anon_sym_u64] = ACTIONS(1851), + [anon_sym_i64] = ACTIONS(1851), + [anon_sym_u128] = ACTIONS(1851), + [anon_sym_i128] = ACTIONS(1851), + [anon_sym_isize] = ACTIONS(1851), + [anon_sym_usize] = ACTIONS(1851), + [anon_sym_f32] = ACTIONS(1851), + [anon_sym_f64] = ACTIONS(1851), + [anon_sym_bool] = ACTIONS(1851), + [anon_sym_str] = ACTIONS(1851), + [anon_sym_char] = ACTIONS(1851), + [anon_sym_DASH] = ACTIONS(1849), + [anon_sym_BANG] = ACTIONS(1849), + [anon_sym_AMP] = ACTIONS(1849), + [anon_sym_PIPE] = ACTIONS(1849), + [anon_sym_LT] = ACTIONS(1849), + [anon_sym_DOT_DOT] = ACTIONS(1849), + [anon_sym_COLON_COLON] = ACTIONS(1849), + [anon_sym_POUND] = ACTIONS(1849), + [anon_sym_SQUOTE] = ACTIONS(1851), + [anon_sym_async] = ACTIONS(1851), + [anon_sym_break] = ACTIONS(1851), + [anon_sym_const] = ACTIONS(1851), + [anon_sym_continue] = ACTIONS(1851), + [anon_sym_default] = ACTIONS(1851), + [anon_sym_enum] = ACTIONS(1851), + [anon_sym_fn] = ACTIONS(1851), + [anon_sym_for] = ACTIONS(1851), + [anon_sym_gen] = ACTIONS(1851), + [anon_sym_if] = ACTIONS(1851), + [anon_sym_impl] = ACTIONS(1851), + [anon_sym_let] = ACTIONS(1851), + [anon_sym_loop] = ACTIONS(1851), + [anon_sym_match] = ACTIONS(1851), + [anon_sym_mod] = ACTIONS(1851), + [anon_sym_pub] = ACTIONS(1851), + [anon_sym_return] = ACTIONS(1851), + [anon_sym_static] = ACTIONS(1851), + [anon_sym_struct] = ACTIONS(1851), + [anon_sym_trait] = ACTIONS(1851), + [anon_sym_type] = ACTIONS(1851), + [anon_sym_union] = ACTIONS(1851), + [anon_sym_unsafe] = ACTIONS(1851), + [anon_sym_use] = ACTIONS(1851), + [anon_sym_while] = ACTIONS(1851), + [anon_sym_extern] = ACTIONS(1851), + [anon_sym_safe] = ACTIONS(1851), + [anon_sym_yield] = ACTIONS(1851), + [anon_sym_move] = ACTIONS(1851), + [anon_sym_try] = ACTIONS(1851), + [sym_integer_literal] = ACTIONS(1849), + [aux_sym_string_literal_token1] = ACTIONS(1849), + [sym_char_literal] = ACTIONS(1849), + [anon_sym_true] = ACTIONS(1851), + [anon_sym_false] = ACTIONS(1851), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1851), + [sym_super] = ACTIONS(1851), + [sym_crate] = ACTIONS(1851), + [sym_metavariable] = ACTIONS(1849), + [sym__raw_string_literal_start] = ACTIONS(1849), + [sym_float_literal] = ACTIONS(1849), }, [STATE(512)] = { [sym_line_comment] = STATE(512), [sym_block_comment] = STATE(512), - [ts_builtin_sym_end] = ACTIONS(1874), - [sym_identifier] = ACTIONS(1876), - [anon_sym_SEMI] = ACTIONS(1874), - [anon_sym_macro_rules_BANG] = ACTIONS(1874), - [anon_sym_LPAREN] = ACTIONS(1874), - [anon_sym_LBRACK] = ACTIONS(1874), - [anon_sym_LBRACE] = ACTIONS(1874), - [anon_sym_RBRACE] = ACTIONS(1874), - [anon_sym_STAR] = ACTIONS(1874), - [anon_sym_u8] = ACTIONS(1876), - [anon_sym_i8] = ACTIONS(1876), - [anon_sym_u16] = ACTIONS(1876), - [anon_sym_i16] = ACTIONS(1876), - [anon_sym_u32] = ACTIONS(1876), - [anon_sym_i32] = ACTIONS(1876), - [anon_sym_u64] = ACTIONS(1876), - [anon_sym_i64] = ACTIONS(1876), - [anon_sym_u128] = ACTIONS(1876), - [anon_sym_i128] = ACTIONS(1876), - [anon_sym_isize] = ACTIONS(1876), - [anon_sym_usize] = ACTIONS(1876), - [anon_sym_f32] = ACTIONS(1876), - [anon_sym_f64] = ACTIONS(1876), - [anon_sym_bool] = ACTIONS(1876), - [anon_sym_str] = ACTIONS(1876), - [anon_sym_char] = ACTIONS(1876), - [anon_sym_DASH] = ACTIONS(1874), - [anon_sym_BANG] = ACTIONS(1874), - [anon_sym_AMP] = ACTIONS(1874), - [anon_sym_PIPE] = ACTIONS(1874), - [anon_sym_LT] = ACTIONS(1874), - [anon_sym_DOT_DOT] = ACTIONS(1874), - [anon_sym_COLON_COLON] = ACTIONS(1874), - [anon_sym_POUND] = ACTIONS(1874), - [anon_sym_SQUOTE] = ACTIONS(1876), - [anon_sym_async] = ACTIONS(1876), - [anon_sym_break] = ACTIONS(1876), - [anon_sym_const] = ACTIONS(1876), - [anon_sym_continue] = ACTIONS(1876), - [anon_sym_default] = ACTIONS(1876), - [anon_sym_enum] = ACTIONS(1876), - [anon_sym_fn] = ACTIONS(1876), - [anon_sym_for] = ACTIONS(1876), - [anon_sym_gen] = ACTIONS(1876), - [anon_sym_if] = ACTIONS(1876), - [anon_sym_impl] = ACTIONS(1876), - [anon_sym_let] = ACTIONS(1876), - [anon_sym_loop] = ACTIONS(1876), - [anon_sym_match] = ACTIONS(1876), - [anon_sym_mod] = ACTIONS(1876), - [anon_sym_pub] = ACTIONS(1876), - [anon_sym_return] = ACTIONS(1876), - [anon_sym_static] = ACTIONS(1876), - [anon_sym_struct] = ACTIONS(1876), - [anon_sym_trait] = ACTIONS(1876), - [anon_sym_type] = ACTIONS(1876), - [anon_sym_union] = ACTIONS(1876), - [anon_sym_unsafe] = ACTIONS(1876), - [anon_sym_use] = ACTIONS(1876), - [anon_sym_while] = ACTIONS(1876), - [anon_sym_extern] = ACTIONS(1876), - [anon_sym_yield] = ACTIONS(1876), - [anon_sym_move] = ACTIONS(1876), - [anon_sym_try] = ACTIONS(1876), - [sym_integer_literal] = ACTIONS(1874), - [aux_sym_string_literal_token1] = ACTIONS(1874), - [sym_char_literal] = ACTIONS(1874), - [anon_sym_true] = ACTIONS(1876), - [anon_sym_false] = ACTIONS(1876), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1876), - [sym_super] = ACTIONS(1876), - [sym_crate] = ACTIONS(1876), - [sym_metavariable] = ACTIONS(1874), - [sym__raw_string_literal_start] = ACTIONS(1874), - [sym_float_literal] = ACTIONS(1874), + [ts_builtin_sym_end] = ACTIONS(1853), + [sym_identifier] = ACTIONS(1855), + [anon_sym_SEMI] = ACTIONS(1853), + [anon_sym_macro_rules_BANG] = ACTIONS(1853), + [anon_sym_LPAREN] = ACTIONS(1853), + [anon_sym_LBRACK] = ACTIONS(1853), + [anon_sym_LBRACE] = ACTIONS(1853), + [anon_sym_RBRACE] = ACTIONS(1853), + [anon_sym_STAR] = ACTIONS(1853), + [anon_sym_u8] = ACTIONS(1855), + [anon_sym_i8] = ACTIONS(1855), + [anon_sym_u16] = ACTIONS(1855), + [anon_sym_i16] = ACTIONS(1855), + [anon_sym_u32] = ACTIONS(1855), + [anon_sym_i32] = ACTIONS(1855), + [anon_sym_u64] = ACTIONS(1855), + [anon_sym_i64] = ACTIONS(1855), + [anon_sym_u128] = ACTIONS(1855), + [anon_sym_i128] = ACTIONS(1855), + [anon_sym_isize] = ACTIONS(1855), + [anon_sym_usize] = ACTIONS(1855), + [anon_sym_f32] = ACTIONS(1855), + [anon_sym_f64] = ACTIONS(1855), + [anon_sym_bool] = ACTIONS(1855), + [anon_sym_str] = ACTIONS(1855), + [anon_sym_char] = ACTIONS(1855), + [anon_sym_DASH] = ACTIONS(1853), + [anon_sym_BANG] = ACTIONS(1853), + [anon_sym_AMP] = ACTIONS(1853), + [anon_sym_PIPE] = ACTIONS(1853), + [anon_sym_LT] = ACTIONS(1853), + [anon_sym_DOT_DOT] = ACTIONS(1853), + [anon_sym_COLON_COLON] = ACTIONS(1853), + [anon_sym_POUND] = ACTIONS(1853), + [anon_sym_SQUOTE] = ACTIONS(1855), + [anon_sym_async] = ACTIONS(1855), + [anon_sym_break] = ACTIONS(1855), + [anon_sym_const] = ACTIONS(1855), + [anon_sym_continue] = ACTIONS(1855), + [anon_sym_default] = ACTIONS(1855), + [anon_sym_enum] = ACTIONS(1855), + [anon_sym_fn] = ACTIONS(1855), + [anon_sym_for] = ACTIONS(1855), + [anon_sym_gen] = ACTIONS(1855), + [anon_sym_if] = ACTIONS(1855), + [anon_sym_impl] = ACTIONS(1855), + [anon_sym_let] = ACTIONS(1855), + [anon_sym_loop] = ACTIONS(1855), + [anon_sym_match] = ACTIONS(1855), + [anon_sym_mod] = ACTIONS(1855), + [anon_sym_pub] = ACTIONS(1855), + [anon_sym_return] = ACTIONS(1855), + [anon_sym_static] = ACTIONS(1855), + [anon_sym_struct] = ACTIONS(1855), + [anon_sym_trait] = ACTIONS(1855), + [anon_sym_type] = ACTIONS(1855), + [anon_sym_union] = ACTIONS(1855), + [anon_sym_unsafe] = ACTIONS(1855), + [anon_sym_use] = ACTIONS(1855), + [anon_sym_while] = ACTIONS(1855), + [anon_sym_extern] = ACTIONS(1855), + [anon_sym_safe] = ACTIONS(1855), + [anon_sym_yield] = ACTIONS(1855), + [anon_sym_move] = ACTIONS(1855), + [anon_sym_try] = ACTIONS(1855), + [sym_integer_literal] = ACTIONS(1853), + [aux_sym_string_literal_token1] = ACTIONS(1853), + [sym_char_literal] = ACTIONS(1853), + [anon_sym_true] = ACTIONS(1855), + [anon_sym_false] = ACTIONS(1855), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1855), + [sym_super] = ACTIONS(1855), + [sym_crate] = ACTIONS(1855), + [sym_metavariable] = ACTIONS(1853), + [sym__raw_string_literal_start] = ACTIONS(1853), + [sym_float_literal] = ACTIONS(1853), }, [STATE(513)] = { + [sym_empty_statement] = STATE(1108), + [sym_macro_definition] = STATE(1108), + [sym_attribute_item] = STATE(1108), + [sym_inner_attribute_item] = STATE(1108), + [sym_mod_item] = STATE(1108), + [sym_foreign_mod_item] = STATE(1108), + [sym_struct_item] = STATE(1108), + [sym_union_item] = STATE(1108), + [sym_enum_item] = STATE(1108), + [sym_extern_crate_declaration] = STATE(1108), + [sym_const_item] = STATE(1108), + [sym_static_item] = STATE(1108), + [sym_type_item] = STATE(1108), + [sym_function_item] = STATE(1108), + [sym_function_signature_item] = STATE(1108), + [sym_function_modifiers] = STATE(3750), + [sym_impl_item] = STATE(1108), + [sym_trait_item] = STATE(1108), + [sym_associated_type] = STATE(1108), + [sym_let_declaration] = STATE(1108), + [sym_use_declaration] = STATE(1108), + [sym_extern_modifier] = STATE(2194), + [sym_visibility_modifier] = STATE(2003), + [sym_bracketed_type] = STATE(3467), + [sym_generic_type_with_turbofish] = STATE(3493), + [sym_macro_invocation] = STATE(1108), + [sym_scoped_identifier] = STATE(3180), [sym_line_comment] = STATE(513), [sym_block_comment] = STATE(513), - [ts_builtin_sym_end] = ACTIONS(1878), - [sym_identifier] = ACTIONS(1880), - [anon_sym_SEMI] = ACTIONS(1878), - [anon_sym_macro_rules_BANG] = ACTIONS(1878), - [anon_sym_LPAREN] = ACTIONS(1878), - [anon_sym_LBRACK] = ACTIONS(1878), - [anon_sym_LBRACE] = ACTIONS(1878), - [anon_sym_RBRACE] = ACTIONS(1878), - [anon_sym_STAR] = ACTIONS(1878), - [anon_sym_u8] = ACTIONS(1880), - [anon_sym_i8] = ACTIONS(1880), - [anon_sym_u16] = ACTIONS(1880), - [anon_sym_i16] = ACTIONS(1880), - [anon_sym_u32] = ACTIONS(1880), - [anon_sym_i32] = ACTIONS(1880), - [anon_sym_u64] = ACTIONS(1880), - [anon_sym_i64] = ACTIONS(1880), - [anon_sym_u128] = ACTIONS(1880), - [anon_sym_i128] = ACTIONS(1880), - [anon_sym_isize] = ACTIONS(1880), - [anon_sym_usize] = ACTIONS(1880), - [anon_sym_f32] = ACTIONS(1880), - [anon_sym_f64] = ACTIONS(1880), - [anon_sym_bool] = ACTIONS(1880), - [anon_sym_str] = ACTIONS(1880), - [anon_sym_char] = ACTIONS(1880), - [anon_sym_DASH] = ACTIONS(1878), - [anon_sym_BANG] = ACTIONS(1878), - [anon_sym_AMP] = ACTIONS(1878), - [anon_sym_PIPE] = ACTIONS(1878), - [anon_sym_LT] = ACTIONS(1878), - [anon_sym_DOT_DOT] = ACTIONS(1878), - [anon_sym_COLON_COLON] = ACTIONS(1878), - [anon_sym_POUND] = ACTIONS(1878), - [anon_sym_SQUOTE] = ACTIONS(1880), - [anon_sym_async] = ACTIONS(1880), - [anon_sym_break] = ACTIONS(1880), - [anon_sym_const] = ACTIONS(1880), - [anon_sym_continue] = ACTIONS(1880), - [anon_sym_default] = ACTIONS(1880), - [anon_sym_enum] = ACTIONS(1880), - [anon_sym_fn] = ACTIONS(1880), - [anon_sym_for] = ACTIONS(1880), - [anon_sym_gen] = ACTIONS(1880), - [anon_sym_if] = ACTIONS(1880), - [anon_sym_impl] = ACTIONS(1880), - [anon_sym_let] = ACTIONS(1880), - [anon_sym_loop] = ACTIONS(1880), - [anon_sym_match] = ACTIONS(1880), - [anon_sym_mod] = ACTIONS(1880), - [anon_sym_pub] = ACTIONS(1880), - [anon_sym_return] = ACTIONS(1880), - [anon_sym_static] = ACTIONS(1880), - [anon_sym_struct] = ACTIONS(1880), - [anon_sym_trait] = ACTIONS(1880), - [anon_sym_type] = ACTIONS(1880), - [anon_sym_union] = ACTIONS(1880), - [anon_sym_unsafe] = ACTIONS(1880), - [anon_sym_use] = ACTIONS(1880), - [anon_sym_while] = ACTIONS(1880), - [anon_sym_extern] = ACTIONS(1880), - [anon_sym_yield] = ACTIONS(1880), - [anon_sym_move] = ACTIONS(1880), - [anon_sym_try] = ACTIONS(1880), - [sym_integer_literal] = ACTIONS(1878), - [aux_sym_string_literal_token1] = ACTIONS(1878), - [sym_char_literal] = ACTIONS(1878), - [anon_sym_true] = ACTIONS(1880), - [anon_sym_false] = ACTIONS(1880), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1880), - [sym_super] = ACTIONS(1880), - [sym_crate] = ACTIONS(1880), - [sym_metavariable] = ACTIONS(1878), - [sym__raw_string_literal_start] = ACTIONS(1878), - [sym_float_literal] = ACTIONS(1878), + [aux_sym_declaration_list_repeat1] = STATE(652), + [aux_sym_function_modifiers_repeat1] = STATE(2244), + [sym_identifier] = ACTIONS(1857), + [anon_sym_SEMI] = ACTIONS(1859), + [anon_sym_macro_rules_BANG] = ACTIONS(1861), + [anon_sym_RBRACE] = 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_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1867), + [anon_sym_POUND] = ACTIONS(1869), + [anon_sym_async] = ACTIONS(1270), + [anon_sym_const] = ACTIONS(1871), + [anon_sym_default] = ACTIONS(1873), + [anon_sym_enum] = ACTIONS(1875), + [anon_sym_fn] = ACTIONS(1877), + [anon_sym_gen] = ACTIONS(1879), + [anon_sym_impl] = ACTIONS(1881), + [anon_sym_let] = ACTIONS(1883), + [anon_sym_mod] = ACTIONS(1885), + [anon_sym_pub] = ACTIONS(69), + [anon_sym_static] = ACTIONS(1887), + [anon_sym_struct] = ACTIONS(1889), + [anon_sym_trait] = ACTIONS(1891), + [anon_sym_type] = ACTIONS(1893), + [anon_sym_union] = ACTIONS(1895), + [anon_sym_unsafe] = ACTIONS(1897), + [anon_sym_use] = ACTIONS(1899), + [anon_sym_extern] = ACTIONS(1901), + [anon_sym_safe] = ACTIONS(1903), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1905), + [sym_super] = ACTIONS(1905), + [sym_crate] = ACTIONS(1907), + [sym_metavariable] = ACTIONS(1909), }, [STATE(514)] = { [sym_line_comment] = STATE(514), [sym_block_comment] = STATE(514), - [ts_builtin_sym_end] = ACTIONS(1882), - [sym_identifier] = ACTIONS(1884), - [anon_sym_SEMI] = ACTIONS(1882), - [anon_sym_macro_rules_BANG] = ACTIONS(1882), - [anon_sym_LPAREN] = ACTIONS(1882), - [anon_sym_LBRACK] = ACTIONS(1882), - [anon_sym_LBRACE] = ACTIONS(1882), - [anon_sym_RBRACE] = ACTIONS(1882), - [anon_sym_STAR] = ACTIONS(1882), - [anon_sym_u8] = ACTIONS(1884), - [anon_sym_i8] = ACTIONS(1884), - [anon_sym_u16] = ACTIONS(1884), - [anon_sym_i16] = ACTIONS(1884), - [anon_sym_u32] = ACTIONS(1884), - [anon_sym_i32] = ACTIONS(1884), - [anon_sym_u64] = ACTIONS(1884), - [anon_sym_i64] = ACTIONS(1884), - [anon_sym_u128] = ACTIONS(1884), - [anon_sym_i128] = ACTIONS(1884), - [anon_sym_isize] = ACTIONS(1884), - [anon_sym_usize] = ACTIONS(1884), - [anon_sym_f32] = ACTIONS(1884), - [anon_sym_f64] = ACTIONS(1884), - [anon_sym_bool] = ACTIONS(1884), - [anon_sym_str] = ACTIONS(1884), - [anon_sym_char] = ACTIONS(1884), - [anon_sym_DASH] = ACTIONS(1882), - [anon_sym_BANG] = ACTIONS(1882), - [anon_sym_AMP] = ACTIONS(1882), - [anon_sym_PIPE] = ACTIONS(1882), - [anon_sym_LT] = ACTIONS(1882), - [anon_sym_DOT_DOT] = ACTIONS(1882), - [anon_sym_COLON_COLON] = ACTIONS(1882), - [anon_sym_POUND] = ACTIONS(1882), - [anon_sym_SQUOTE] = ACTIONS(1884), - [anon_sym_async] = ACTIONS(1884), - [anon_sym_break] = ACTIONS(1884), - [anon_sym_const] = ACTIONS(1884), - [anon_sym_continue] = ACTIONS(1884), - [anon_sym_default] = ACTIONS(1884), - [anon_sym_enum] = ACTIONS(1884), - [anon_sym_fn] = ACTIONS(1884), - [anon_sym_for] = ACTIONS(1884), - [anon_sym_gen] = ACTIONS(1884), - [anon_sym_if] = ACTIONS(1884), - [anon_sym_impl] = ACTIONS(1884), - [anon_sym_let] = ACTIONS(1884), - [anon_sym_loop] = ACTIONS(1884), - [anon_sym_match] = ACTIONS(1884), - [anon_sym_mod] = ACTIONS(1884), - [anon_sym_pub] = ACTIONS(1884), - [anon_sym_return] = ACTIONS(1884), - [anon_sym_static] = ACTIONS(1884), - [anon_sym_struct] = ACTIONS(1884), - [anon_sym_trait] = ACTIONS(1884), - [anon_sym_type] = ACTIONS(1884), - [anon_sym_union] = ACTIONS(1884), - [anon_sym_unsafe] = ACTIONS(1884), - [anon_sym_use] = ACTIONS(1884), - [anon_sym_while] = ACTIONS(1884), - [anon_sym_extern] = ACTIONS(1884), - [anon_sym_yield] = ACTIONS(1884), - [anon_sym_move] = ACTIONS(1884), - [anon_sym_try] = ACTIONS(1884), - [sym_integer_literal] = ACTIONS(1882), - [aux_sym_string_literal_token1] = ACTIONS(1882), - [sym_char_literal] = ACTIONS(1882), - [anon_sym_true] = ACTIONS(1884), - [anon_sym_false] = ACTIONS(1884), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1884), - [sym_super] = ACTIONS(1884), - [sym_crate] = ACTIONS(1884), - [sym_metavariable] = ACTIONS(1882), - [sym__raw_string_literal_start] = ACTIONS(1882), - [sym_float_literal] = ACTIONS(1882), + [ts_builtin_sym_end] = ACTIONS(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_safe] = 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), }, [STATE(515)] = { [sym_line_comment] = STATE(515), [sym_block_comment] = STATE(515), - [ts_builtin_sym_end] = ACTIONS(1886), - [sym_identifier] = ACTIONS(1888), - [anon_sym_SEMI] = ACTIONS(1886), - [anon_sym_macro_rules_BANG] = ACTIONS(1886), - [anon_sym_LPAREN] = ACTIONS(1886), - [anon_sym_LBRACK] = ACTIONS(1886), - [anon_sym_LBRACE] = ACTIONS(1886), - [anon_sym_RBRACE] = ACTIONS(1886), - [anon_sym_STAR] = ACTIONS(1886), - [anon_sym_u8] = ACTIONS(1888), - [anon_sym_i8] = ACTIONS(1888), - [anon_sym_u16] = ACTIONS(1888), - [anon_sym_i16] = ACTIONS(1888), - [anon_sym_u32] = ACTIONS(1888), - [anon_sym_i32] = ACTIONS(1888), - [anon_sym_u64] = ACTIONS(1888), - [anon_sym_i64] = ACTIONS(1888), - [anon_sym_u128] = ACTIONS(1888), - [anon_sym_i128] = ACTIONS(1888), - [anon_sym_isize] = ACTIONS(1888), - [anon_sym_usize] = ACTIONS(1888), - [anon_sym_f32] = ACTIONS(1888), - [anon_sym_f64] = ACTIONS(1888), - [anon_sym_bool] = ACTIONS(1888), - [anon_sym_str] = ACTIONS(1888), - [anon_sym_char] = ACTIONS(1888), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_BANG] = ACTIONS(1886), - [anon_sym_AMP] = ACTIONS(1886), - [anon_sym_PIPE] = ACTIONS(1886), - [anon_sym_LT] = ACTIONS(1886), - [anon_sym_DOT_DOT] = ACTIONS(1886), - [anon_sym_COLON_COLON] = ACTIONS(1886), - [anon_sym_POUND] = ACTIONS(1886), - [anon_sym_SQUOTE] = ACTIONS(1888), - [anon_sym_async] = ACTIONS(1888), - [anon_sym_break] = ACTIONS(1888), - [anon_sym_const] = ACTIONS(1888), - [anon_sym_continue] = ACTIONS(1888), - [anon_sym_default] = ACTIONS(1888), - [anon_sym_enum] = ACTIONS(1888), - [anon_sym_fn] = ACTIONS(1888), - [anon_sym_for] = ACTIONS(1888), - [anon_sym_gen] = ACTIONS(1888), - [anon_sym_if] = ACTIONS(1888), - [anon_sym_impl] = ACTIONS(1888), - [anon_sym_let] = ACTIONS(1888), - [anon_sym_loop] = ACTIONS(1888), - [anon_sym_match] = ACTIONS(1888), - [anon_sym_mod] = ACTIONS(1888), - [anon_sym_pub] = ACTIONS(1888), - [anon_sym_return] = ACTIONS(1888), - [anon_sym_static] = ACTIONS(1888), - [anon_sym_struct] = ACTIONS(1888), - [anon_sym_trait] = ACTIONS(1888), - [anon_sym_type] = ACTIONS(1888), - [anon_sym_union] = ACTIONS(1888), - [anon_sym_unsafe] = ACTIONS(1888), - [anon_sym_use] = ACTIONS(1888), - [anon_sym_while] = ACTIONS(1888), - [anon_sym_extern] = ACTIONS(1888), - [anon_sym_yield] = ACTIONS(1888), - [anon_sym_move] = ACTIONS(1888), - [anon_sym_try] = ACTIONS(1888), - [sym_integer_literal] = ACTIONS(1886), - [aux_sym_string_literal_token1] = ACTIONS(1886), - [sym_char_literal] = ACTIONS(1886), - [anon_sym_true] = ACTIONS(1888), - [anon_sym_false] = ACTIONS(1888), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1888), - [sym_super] = ACTIONS(1888), - [sym_crate] = ACTIONS(1888), - [sym_metavariable] = ACTIONS(1886), - [sym__raw_string_literal_start] = ACTIONS(1886), - [sym_float_literal] = ACTIONS(1886), + [ts_builtin_sym_end] = ACTIONS(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_safe] = 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), }, [STATE(516)] = { [sym_line_comment] = STATE(516), [sym_block_comment] = STATE(516), - [ts_builtin_sym_end] = ACTIONS(1890), - [sym_identifier] = ACTIONS(1892), - [anon_sym_SEMI] = ACTIONS(1890), - [anon_sym_macro_rules_BANG] = ACTIONS(1890), - [anon_sym_LPAREN] = ACTIONS(1890), - [anon_sym_LBRACK] = ACTIONS(1890), - [anon_sym_LBRACE] = ACTIONS(1890), - [anon_sym_RBRACE] = ACTIONS(1890), - [anon_sym_STAR] = ACTIONS(1890), - [anon_sym_u8] = ACTIONS(1892), - [anon_sym_i8] = ACTIONS(1892), - [anon_sym_u16] = ACTIONS(1892), - [anon_sym_i16] = ACTIONS(1892), - [anon_sym_u32] = ACTIONS(1892), - [anon_sym_i32] = ACTIONS(1892), - [anon_sym_u64] = ACTIONS(1892), - [anon_sym_i64] = ACTIONS(1892), - [anon_sym_u128] = ACTIONS(1892), - [anon_sym_i128] = ACTIONS(1892), - [anon_sym_isize] = ACTIONS(1892), - [anon_sym_usize] = ACTIONS(1892), - [anon_sym_f32] = ACTIONS(1892), - [anon_sym_f64] = ACTIONS(1892), - [anon_sym_bool] = ACTIONS(1892), - [anon_sym_str] = ACTIONS(1892), - [anon_sym_char] = ACTIONS(1892), - [anon_sym_DASH] = ACTIONS(1890), - [anon_sym_BANG] = ACTIONS(1890), - [anon_sym_AMP] = ACTIONS(1890), - [anon_sym_PIPE] = ACTIONS(1890), - [anon_sym_LT] = ACTIONS(1890), - [anon_sym_DOT_DOT] = ACTIONS(1890), - [anon_sym_COLON_COLON] = ACTIONS(1890), - [anon_sym_POUND] = ACTIONS(1890), - [anon_sym_SQUOTE] = ACTIONS(1892), - [anon_sym_async] = ACTIONS(1892), - [anon_sym_break] = ACTIONS(1892), - [anon_sym_const] = ACTIONS(1892), - [anon_sym_continue] = ACTIONS(1892), - [anon_sym_default] = ACTIONS(1892), - [anon_sym_enum] = ACTIONS(1892), - [anon_sym_fn] = ACTIONS(1892), - [anon_sym_for] = ACTIONS(1892), - [anon_sym_gen] = ACTIONS(1892), - [anon_sym_if] = ACTIONS(1892), - [anon_sym_impl] = ACTIONS(1892), - [anon_sym_let] = ACTIONS(1892), - [anon_sym_loop] = ACTIONS(1892), - [anon_sym_match] = ACTIONS(1892), - [anon_sym_mod] = ACTIONS(1892), - [anon_sym_pub] = ACTIONS(1892), - [anon_sym_return] = ACTIONS(1892), - [anon_sym_static] = ACTIONS(1892), - [anon_sym_struct] = ACTIONS(1892), - [anon_sym_trait] = ACTIONS(1892), - [anon_sym_type] = ACTIONS(1892), - [anon_sym_union] = ACTIONS(1892), - [anon_sym_unsafe] = ACTIONS(1892), - [anon_sym_use] = ACTIONS(1892), - [anon_sym_while] = ACTIONS(1892), - [anon_sym_extern] = ACTIONS(1892), - [anon_sym_yield] = ACTIONS(1892), - [anon_sym_move] = ACTIONS(1892), - [anon_sym_try] = ACTIONS(1892), - [sym_integer_literal] = ACTIONS(1890), - [aux_sym_string_literal_token1] = ACTIONS(1890), - [sym_char_literal] = ACTIONS(1890), - [anon_sym_true] = ACTIONS(1892), - [anon_sym_false] = ACTIONS(1892), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1892), - [sym_super] = ACTIONS(1892), - [sym_crate] = ACTIONS(1892), - [sym_metavariable] = ACTIONS(1890), - [sym__raw_string_literal_start] = ACTIONS(1890), - [sym_float_literal] = ACTIONS(1890), + [ts_builtin_sym_end] = ACTIONS(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_safe] = 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), }, [STATE(517)] = { [sym_line_comment] = STATE(517), [sym_block_comment] = STATE(517), - [ts_builtin_sym_end] = ACTIONS(1894), - [sym_identifier] = ACTIONS(1896), - [anon_sym_SEMI] = ACTIONS(1894), - [anon_sym_macro_rules_BANG] = ACTIONS(1894), - [anon_sym_LPAREN] = ACTIONS(1894), - [anon_sym_LBRACK] = ACTIONS(1894), - [anon_sym_LBRACE] = ACTIONS(1894), - [anon_sym_RBRACE] = ACTIONS(1894), - [anon_sym_STAR] = ACTIONS(1894), - [anon_sym_u8] = ACTIONS(1896), - [anon_sym_i8] = ACTIONS(1896), - [anon_sym_u16] = ACTIONS(1896), - [anon_sym_i16] = ACTIONS(1896), - [anon_sym_u32] = ACTIONS(1896), - [anon_sym_i32] = ACTIONS(1896), - [anon_sym_u64] = ACTIONS(1896), - [anon_sym_i64] = ACTIONS(1896), - [anon_sym_u128] = ACTIONS(1896), - [anon_sym_i128] = ACTIONS(1896), - [anon_sym_isize] = ACTIONS(1896), - [anon_sym_usize] = ACTIONS(1896), - [anon_sym_f32] = ACTIONS(1896), - [anon_sym_f64] = ACTIONS(1896), - [anon_sym_bool] = ACTIONS(1896), - [anon_sym_str] = ACTIONS(1896), - [anon_sym_char] = ACTIONS(1896), - [anon_sym_DASH] = ACTIONS(1894), - [anon_sym_BANG] = ACTIONS(1894), - [anon_sym_AMP] = ACTIONS(1894), - [anon_sym_PIPE] = ACTIONS(1894), - [anon_sym_LT] = ACTIONS(1894), - [anon_sym_DOT_DOT] = ACTIONS(1894), - [anon_sym_COLON_COLON] = ACTIONS(1894), - [anon_sym_POUND] = ACTIONS(1894), - [anon_sym_SQUOTE] = ACTIONS(1896), - [anon_sym_async] = ACTIONS(1896), - [anon_sym_break] = ACTIONS(1896), - [anon_sym_const] = ACTIONS(1896), - [anon_sym_continue] = ACTIONS(1896), - [anon_sym_default] = ACTIONS(1896), - [anon_sym_enum] = ACTIONS(1896), - [anon_sym_fn] = ACTIONS(1896), - [anon_sym_for] = ACTIONS(1896), - [anon_sym_gen] = ACTIONS(1896), - [anon_sym_if] = ACTIONS(1896), - [anon_sym_impl] = ACTIONS(1896), - [anon_sym_let] = ACTIONS(1896), - [anon_sym_loop] = ACTIONS(1896), - [anon_sym_match] = ACTIONS(1896), - [anon_sym_mod] = ACTIONS(1896), - [anon_sym_pub] = ACTIONS(1896), - [anon_sym_return] = ACTIONS(1896), - [anon_sym_static] = ACTIONS(1896), - [anon_sym_struct] = ACTIONS(1896), - [anon_sym_trait] = ACTIONS(1896), - [anon_sym_type] = ACTIONS(1896), - [anon_sym_union] = ACTIONS(1896), - [anon_sym_unsafe] = ACTIONS(1896), - [anon_sym_use] = ACTIONS(1896), - [anon_sym_while] = ACTIONS(1896), - [anon_sym_extern] = ACTIONS(1896), - [anon_sym_yield] = ACTIONS(1896), - [anon_sym_move] = ACTIONS(1896), - [anon_sym_try] = ACTIONS(1896), - [sym_integer_literal] = ACTIONS(1894), - [aux_sym_string_literal_token1] = ACTIONS(1894), - [sym_char_literal] = ACTIONS(1894), - [anon_sym_true] = ACTIONS(1896), - [anon_sym_false] = ACTIONS(1896), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1896), - [sym_super] = ACTIONS(1896), - [sym_crate] = ACTIONS(1896), - [sym_metavariable] = ACTIONS(1894), - [sym__raw_string_literal_start] = ACTIONS(1894), - [sym_float_literal] = ACTIONS(1894), + [ts_builtin_sym_end] = ACTIONS(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_safe] = 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), }, [STATE(518)] = { [sym_line_comment] = STATE(518), [sym_block_comment] = STATE(518), - [ts_builtin_sym_end] = ACTIONS(1898), - [sym_identifier] = ACTIONS(1900), - [anon_sym_SEMI] = ACTIONS(1898), - [anon_sym_macro_rules_BANG] = ACTIONS(1898), - [anon_sym_LPAREN] = ACTIONS(1898), - [anon_sym_LBRACK] = ACTIONS(1898), - [anon_sym_LBRACE] = ACTIONS(1898), - [anon_sym_RBRACE] = ACTIONS(1898), - [anon_sym_STAR] = ACTIONS(1898), - [anon_sym_u8] = ACTIONS(1900), - [anon_sym_i8] = ACTIONS(1900), - [anon_sym_u16] = ACTIONS(1900), - [anon_sym_i16] = ACTIONS(1900), - [anon_sym_u32] = ACTIONS(1900), - [anon_sym_i32] = ACTIONS(1900), - [anon_sym_u64] = ACTIONS(1900), - [anon_sym_i64] = ACTIONS(1900), - [anon_sym_u128] = ACTIONS(1900), - [anon_sym_i128] = ACTIONS(1900), - [anon_sym_isize] = ACTIONS(1900), - [anon_sym_usize] = ACTIONS(1900), - [anon_sym_f32] = ACTIONS(1900), - [anon_sym_f64] = ACTIONS(1900), - [anon_sym_bool] = ACTIONS(1900), - [anon_sym_str] = ACTIONS(1900), - [anon_sym_char] = ACTIONS(1900), - [anon_sym_DASH] = ACTIONS(1898), - [anon_sym_BANG] = ACTIONS(1898), - [anon_sym_AMP] = ACTIONS(1898), - [anon_sym_PIPE] = ACTIONS(1898), - [anon_sym_LT] = ACTIONS(1898), - [anon_sym_DOT_DOT] = ACTIONS(1898), - [anon_sym_COLON_COLON] = ACTIONS(1898), - [anon_sym_POUND] = ACTIONS(1898), - [anon_sym_SQUOTE] = ACTIONS(1900), - [anon_sym_async] = ACTIONS(1900), - [anon_sym_break] = ACTIONS(1900), - [anon_sym_const] = ACTIONS(1900), - [anon_sym_continue] = ACTIONS(1900), - [anon_sym_default] = ACTIONS(1900), - [anon_sym_enum] = ACTIONS(1900), - [anon_sym_fn] = ACTIONS(1900), - [anon_sym_for] = ACTIONS(1900), - [anon_sym_gen] = ACTIONS(1900), - [anon_sym_if] = ACTIONS(1900), - [anon_sym_impl] = ACTIONS(1900), - [anon_sym_let] = ACTIONS(1900), - [anon_sym_loop] = ACTIONS(1900), - [anon_sym_match] = ACTIONS(1900), - [anon_sym_mod] = ACTIONS(1900), - [anon_sym_pub] = ACTIONS(1900), - [anon_sym_return] = ACTIONS(1900), - [anon_sym_static] = ACTIONS(1900), - [anon_sym_struct] = ACTIONS(1900), - [anon_sym_trait] = ACTIONS(1900), - [anon_sym_type] = ACTIONS(1900), - [anon_sym_union] = ACTIONS(1900), - [anon_sym_unsafe] = ACTIONS(1900), - [anon_sym_use] = ACTIONS(1900), - [anon_sym_while] = ACTIONS(1900), - [anon_sym_extern] = ACTIONS(1900), - [anon_sym_yield] = ACTIONS(1900), - [anon_sym_move] = ACTIONS(1900), - [anon_sym_try] = ACTIONS(1900), - [sym_integer_literal] = ACTIONS(1898), - [aux_sym_string_literal_token1] = ACTIONS(1898), - [sym_char_literal] = ACTIONS(1898), - [anon_sym_true] = ACTIONS(1900), - [anon_sym_false] = ACTIONS(1900), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1900), - [sym_super] = ACTIONS(1900), - [sym_crate] = ACTIONS(1900), - [sym_metavariable] = ACTIONS(1898), - [sym__raw_string_literal_start] = ACTIONS(1898), - [sym_float_literal] = ACTIONS(1898), + [ts_builtin_sym_end] = ACTIONS(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_safe] = 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), }, [STATE(519)] = { [sym_line_comment] = STATE(519), [sym_block_comment] = STATE(519), - [ts_builtin_sym_end] = ACTIONS(1902), - [sym_identifier] = ACTIONS(1904), - [anon_sym_SEMI] = ACTIONS(1902), - [anon_sym_macro_rules_BANG] = ACTIONS(1902), - [anon_sym_LPAREN] = ACTIONS(1902), - [anon_sym_LBRACK] = ACTIONS(1902), - [anon_sym_LBRACE] = ACTIONS(1902), - [anon_sym_RBRACE] = ACTIONS(1902), - [anon_sym_STAR] = ACTIONS(1902), - [anon_sym_u8] = ACTIONS(1904), - [anon_sym_i8] = ACTIONS(1904), - [anon_sym_u16] = ACTIONS(1904), - [anon_sym_i16] = ACTIONS(1904), - [anon_sym_u32] = ACTIONS(1904), - [anon_sym_i32] = ACTIONS(1904), - [anon_sym_u64] = ACTIONS(1904), - [anon_sym_i64] = ACTIONS(1904), - [anon_sym_u128] = ACTIONS(1904), - [anon_sym_i128] = ACTIONS(1904), - [anon_sym_isize] = ACTIONS(1904), - [anon_sym_usize] = ACTIONS(1904), - [anon_sym_f32] = ACTIONS(1904), - [anon_sym_f64] = ACTIONS(1904), - [anon_sym_bool] = ACTIONS(1904), - [anon_sym_str] = ACTIONS(1904), - [anon_sym_char] = ACTIONS(1904), - [anon_sym_DASH] = ACTIONS(1902), - [anon_sym_BANG] = ACTIONS(1902), - [anon_sym_AMP] = ACTIONS(1902), - [anon_sym_PIPE] = ACTIONS(1902), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_DOT_DOT] = ACTIONS(1902), - [anon_sym_COLON_COLON] = ACTIONS(1902), - [anon_sym_POUND] = ACTIONS(1902), - [anon_sym_SQUOTE] = ACTIONS(1904), - [anon_sym_async] = ACTIONS(1904), - [anon_sym_break] = ACTIONS(1904), - [anon_sym_const] = ACTIONS(1904), - [anon_sym_continue] = ACTIONS(1904), - [anon_sym_default] = ACTIONS(1904), - [anon_sym_enum] = ACTIONS(1904), - [anon_sym_fn] = ACTIONS(1904), - [anon_sym_for] = ACTIONS(1904), - [anon_sym_gen] = ACTIONS(1904), - [anon_sym_if] = ACTIONS(1904), - [anon_sym_impl] = ACTIONS(1904), - [anon_sym_let] = ACTIONS(1904), - [anon_sym_loop] = ACTIONS(1904), - [anon_sym_match] = ACTIONS(1904), - [anon_sym_mod] = ACTIONS(1904), - [anon_sym_pub] = ACTIONS(1904), - [anon_sym_return] = ACTIONS(1904), - [anon_sym_static] = ACTIONS(1904), - [anon_sym_struct] = ACTIONS(1904), - [anon_sym_trait] = ACTIONS(1904), - [anon_sym_type] = ACTIONS(1904), - [anon_sym_union] = ACTIONS(1904), - [anon_sym_unsafe] = ACTIONS(1904), - [anon_sym_use] = ACTIONS(1904), - [anon_sym_while] = ACTIONS(1904), - [anon_sym_extern] = ACTIONS(1904), - [anon_sym_yield] = ACTIONS(1904), - [anon_sym_move] = ACTIONS(1904), - [anon_sym_try] = ACTIONS(1904), - [sym_integer_literal] = ACTIONS(1902), - [aux_sym_string_literal_token1] = ACTIONS(1902), - [sym_char_literal] = ACTIONS(1902), - [anon_sym_true] = ACTIONS(1904), - [anon_sym_false] = ACTIONS(1904), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1904), - [sym_super] = ACTIONS(1904), - [sym_crate] = ACTIONS(1904), - [sym_metavariable] = ACTIONS(1902), - [sym__raw_string_literal_start] = ACTIONS(1902), - [sym_float_literal] = ACTIONS(1902), + [ts_builtin_sym_end] = ACTIONS(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_safe] = 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), }, [STATE(520)] = { [sym_line_comment] = STATE(520), [sym_block_comment] = STATE(520), - [ts_builtin_sym_end] = ACTIONS(1906), - [sym_identifier] = ACTIONS(1908), - [anon_sym_SEMI] = ACTIONS(1906), - [anon_sym_macro_rules_BANG] = ACTIONS(1906), - [anon_sym_LPAREN] = ACTIONS(1906), - [anon_sym_LBRACK] = ACTIONS(1906), - [anon_sym_LBRACE] = ACTIONS(1906), - [anon_sym_RBRACE] = ACTIONS(1906), - [anon_sym_STAR] = ACTIONS(1906), - [anon_sym_u8] = ACTIONS(1908), - [anon_sym_i8] = ACTIONS(1908), - [anon_sym_u16] = ACTIONS(1908), - [anon_sym_i16] = ACTIONS(1908), - [anon_sym_u32] = ACTIONS(1908), - [anon_sym_i32] = ACTIONS(1908), - [anon_sym_u64] = ACTIONS(1908), - [anon_sym_i64] = ACTIONS(1908), - [anon_sym_u128] = ACTIONS(1908), - [anon_sym_i128] = ACTIONS(1908), - [anon_sym_isize] = ACTIONS(1908), - [anon_sym_usize] = ACTIONS(1908), - [anon_sym_f32] = ACTIONS(1908), - [anon_sym_f64] = ACTIONS(1908), - [anon_sym_bool] = ACTIONS(1908), - [anon_sym_str] = ACTIONS(1908), - [anon_sym_char] = ACTIONS(1908), - [anon_sym_DASH] = ACTIONS(1906), - [anon_sym_BANG] = ACTIONS(1906), - [anon_sym_AMP] = ACTIONS(1906), - [anon_sym_PIPE] = ACTIONS(1906), - [anon_sym_LT] = ACTIONS(1906), - [anon_sym_DOT_DOT] = ACTIONS(1906), - [anon_sym_COLON_COLON] = ACTIONS(1906), - [anon_sym_POUND] = ACTIONS(1906), - [anon_sym_SQUOTE] = ACTIONS(1908), - [anon_sym_async] = ACTIONS(1908), - [anon_sym_break] = ACTIONS(1908), - [anon_sym_const] = ACTIONS(1908), - [anon_sym_continue] = ACTIONS(1908), - [anon_sym_default] = ACTIONS(1908), - [anon_sym_enum] = ACTIONS(1908), - [anon_sym_fn] = ACTIONS(1908), - [anon_sym_for] = ACTIONS(1908), - [anon_sym_gen] = ACTIONS(1908), - [anon_sym_if] = ACTIONS(1908), - [anon_sym_impl] = ACTIONS(1908), - [anon_sym_let] = ACTIONS(1908), - [anon_sym_loop] = ACTIONS(1908), - [anon_sym_match] = ACTIONS(1908), - [anon_sym_mod] = ACTIONS(1908), - [anon_sym_pub] = ACTIONS(1908), - [anon_sym_return] = ACTIONS(1908), - [anon_sym_static] = ACTIONS(1908), - [anon_sym_struct] = ACTIONS(1908), - [anon_sym_trait] = ACTIONS(1908), - [anon_sym_type] = ACTIONS(1908), - [anon_sym_union] = ACTIONS(1908), - [anon_sym_unsafe] = ACTIONS(1908), - [anon_sym_use] = ACTIONS(1908), - [anon_sym_while] = ACTIONS(1908), - [anon_sym_extern] = ACTIONS(1908), - [anon_sym_yield] = ACTIONS(1908), - [anon_sym_move] = ACTIONS(1908), - [anon_sym_try] = ACTIONS(1908), - [sym_integer_literal] = ACTIONS(1906), - [aux_sym_string_literal_token1] = ACTIONS(1906), - [sym_char_literal] = ACTIONS(1906), - [anon_sym_true] = ACTIONS(1908), - [anon_sym_false] = ACTIONS(1908), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1908), - [sym_super] = ACTIONS(1908), - [sym_crate] = ACTIONS(1908), - [sym_metavariable] = ACTIONS(1906), - [sym__raw_string_literal_start] = ACTIONS(1906), - [sym_float_literal] = ACTIONS(1906), + [ts_builtin_sym_end] = ACTIONS(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_safe] = 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), }, [STATE(521)] = { [sym_line_comment] = STATE(521), [sym_block_comment] = STATE(521), - [ts_builtin_sym_end] = ACTIONS(1910), - [sym_identifier] = ACTIONS(1912), - [anon_sym_SEMI] = ACTIONS(1910), - [anon_sym_macro_rules_BANG] = ACTIONS(1910), - [anon_sym_LPAREN] = ACTIONS(1910), - [anon_sym_LBRACK] = ACTIONS(1910), - [anon_sym_LBRACE] = ACTIONS(1910), - [anon_sym_RBRACE] = ACTIONS(1910), - [anon_sym_STAR] = ACTIONS(1910), - [anon_sym_u8] = ACTIONS(1912), - [anon_sym_i8] = ACTIONS(1912), - [anon_sym_u16] = ACTIONS(1912), - [anon_sym_i16] = ACTIONS(1912), - [anon_sym_u32] = ACTIONS(1912), - [anon_sym_i32] = ACTIONS(1912), - [anon_sym_u64] = ACTIONS(1912), - [anon_sym_i64] = ACTIONS(1912), - [anon_sym_u128] = ACTIONS(1912), - [anon_sym_i128] = ACTIONS(1912), - [anon_sym_isize] = ACTIONS(1912), - [anon_sym_usize] = ACTIONS(1912), - [anon_sym_f32] = ACTIONS(1912), - [anon_sym_f64] = ACTIONS(1912), - [anon_sym_bool] = ACTIONS(1912), - [anon_sym_str] = ACTIONS(1912), - [anon_sym_char] = ACTIONS(1912), - [anon_sym_DASH] = ACTIONS(1910), - [anon_sym_BANG] = ACTIONS(1910), - [anon_sym_AMP] = ACTIONS(1910), - [anon_sym_PIPE] = ACTIONS(1910), - [anon_sym_LT] = ACTIONS(1910), - [anon_sym_DOT_DOT] = ACTIONS(1910), - [anon_sym_COLON_COLON] = ACTIONS(1910), - [anon_sym_POUND] = ACTIONS(1910), - [anon_sym_SQUOTE] = ACTIONS(1912), - [anon_sym_async] = ACTIONS(1912), - [anon_sym_break] = ACTIONS(1912), - [anon_sym_const] = ACTIONS(1912), - [anon_sym_continue] = ACTIONS(1912), - [anon_sym_default] = ACTIONS(1912), - [anon_sym_enum] = ACTIONS(1912), - [anon_sym_fn] = ACTIONS(1912), - [anon_sym_for] = ACTIONS(1912), - [anon_sym_gen] = ACTIONS(1912), - [anon_sym_if] = ACTIONS(1912), - [anon_sym_impl] = ACTIONS(1912), - [anon_sym_let] = ACTIONS(1912), - [anon_sym_loop] = ACTIONS(1912), - [anon_sym_match] = ACTIONS(1912), - [anon_sym_mod] = ACTIONS(1912), - [anon_sym_pub] = ACTIONS(1912), - [anon_sym_return] = ACTIONS(1912), - [anon_sym_static] = ACTIONS(1912), - [anon_sym_struct] = ACTIONS(1912), - [anon_sym_trait] = ACTIONS(1912), - [anon_sym_type] = ACTIONS(1912), - [anon_sym_union] = ACTIONS(1912), - [anon_sym_unsafe] = ACTIONS(1912), - [anon_sym_use] = ACTIONS(1912), - [anon_sym_while] = ACTIONS(1912), - [anon_sym_extern] = ACTIONS(1912), - [anon_sym_yield] = ACTIONS(1912), - [anon_sym_move] = ACTIONS(1912), - [anon_sym_try] = ACTIONS(1912), - [sym_integer_literal] = ACTIONS(1910), - [aux_sym_string_literal_token1] = ACTIONS(1910), - [sym_char_literal] = ACTIONS(1910), - [anon_sym_true] = ACTIONS(1912), - [anon_sym_false] = ACTIONS(1912), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1912), - [sym_super] = ACTIONS(1912), - [sym_crate] = ACTIONS(1912), - [sym_metavariable] = ACTIONS(1910), - [sym__raw_string_literal_start] = ACTIONS(1910), - [sym_float_literal] = ACTIONS(1910), + [ts_builtin_sym_end] = ACTIONS(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_safe] = 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), }, [STATE(522)] = { [sym_line_comment] = STATE(522), [sym_block_comment] = STATE(522), - [ts_builtin_sym_end] = ACTIONS(1914), - [sym_identifier] = ACTIONS(1916), - [anon_sym_SEMI] = ACTIONS(1914), - [anon_sym_macro_rules_BANG] = ACTIONS(1914), - [anon_sym_LPAREN] = ACTIONS(1914), - [anon_sym_LBRACK] = ACTIONS(1914), - [anon_sym_LBRACE] = ACTIONS(1914), - [anon_sym_RBRACE] = ACTIONS(1914), - [anon_sym_STAR] = ACTIONS(1914), - [anon_sym_u8] = ACTIONS(1916), - [anon_sym_i8] = ACTIONS(1916), - [anon_sym_u16] = ACTIONS(1916), - [anon_sym_i16] = ACTIONS(1916), - [anon_sym_u32] = ACTIONS(1916), - [anon_sym_i32] = ACTIONS(1916), - [anon_sym_u64] = ACTIONS(1916), - [anon_sym_i64] = ACTIONS(1916), - [anon_sym_u128] = ACTIONS(1916), - [anon_sym_i128] = ACTIONS(1916), - [anon_sym_isize] = ACTIONS(1916), - [anon_sym_usize] = ACTIONS(1916), - [anon_sym_f32] = ACTIONS(1916), - [anon_sym_f64] = ACTIONS(1916), - [anon_sym_bool] = ACTIONS(1916), - [anon_sym_str] = ACTIONS(1916), - [anon_sym_char] = ACTIONS(1916), - [anon_sym_DASH] = ACTIONS(1914), - [anon_sym_BANG] = ACTIONS(1914), - [anon_sym_AMP] = ACTIONS(1914), - [anon_sym_PIPE] = ACTIONS(1914), - [anon_sym_LT] = ACTIONS(1914), - [anon_sym_DOT_DOT] = ACTIONS(1914), - [anon_sym_COLON_COLON] = ACTIONS(1914), - [anon_sym_POUND] = ACTIONS(1914), - [anon_sym_SQUOTE] = ACTIONS(1916), - [anon_sym_async] = ACTIONS(1916), - [anon_sym_break] = ACTIONS(1916), - [anon_sym_const] = ACTIONS(1916), - [anon_sym_continue] = ACTIONS(1916), - [anon_sym_default] = ACTIONS(1916), - [anon_sym_enum] = ACTIONS(1916), - [anon_sym_fn] = ACTIONS(1916), - [anon_sym_for] = ACTIONS(1916), - [anon_sym_gen] = ACTIONS(1916), - [anon_sym_if] = ACTIONS(1916), - [anon_sym_impl] = ACTIONS(1916), - [anon_sym_let] = ACTIONS(1916), - [anon_sym_loop] = ACTIONS(1916), - [anon_sym_match] = ACTIONS(1916), - [anon_sym_mod] = ACTIONS(1916), - [anon_sym_pub] = ACTIONS(1916), - [anon_sym_return] = ACTIONS(1916), - [anon_sym_static] = ACTIONS(1916), - [anon_sym_struct] = ACTIONS(1916), - [anon_sym_trait] = ACTIONS(1916), - [anon_sym_type] = ACTIONS(1916), - [anon_sym_union] = ACTIONS(1916), - [anon_sym_unsafe] = ACTIONS(1916), - [anon_sym_use] = ACTIONS(1916), - [anon_sym_while] = ACTIONS(1916), - [anon_sym_extern] = ACTIONS(1916), - [anon_sym_yield] = ACTIONS(1916), - [anon_sym_move] = ACTIONS(1916), - [anon_sym_try] = ACTIONS(1916), - [sym_integer_literal] = ACTIONS(1914), - [aux_sym_string_literal_token1] = ACTIONS(1914), - [sym_char_literal] = ACTIONS(1914), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1916), - [sym_super] = ACTIONS(1916), - [sym_crate] = ACTIONS(1916), - [sym_metavariable] = ACTIONS(1914), - [sym__raw_string_literal_start] = ACTIONS(1914), - [sym_float_literal] = ACTIONS(1914), + [ts_builtin_sym_end] = ACTIONS(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_safe] = 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), }, [STATE(523)] = { [sym_line_comment] = STATE(523), [sym_block_comment] = STATE(523), - [ts_builtin_sym_end] = ACTIONS(1918), - [sym_identifier] = ACTIONS(1920), - [anon_sym_SEMI] = ACTIONS(1918), - [anon_sym_macro_rules_BANG] = ACTIONS(1918), - [anon_sym_LPAREN] = ACTIONS(1918), - [anon_sym_LBRACK] = ACTIONS(1918), - [anon_sym_LBRACE] = ACTIONS(1918), - [anon_sym_RBRACE] = ACTIONS(1918), - [anon_sym_STAR] = ACTIONS(1918), - [anon_sym_u8] = ACTIONS(1920), - [anon_sym_i8] = ACTIONS(1920), - [anon_sym_u16] = ACTIONS(1920), - [anon_sym_i16] = ACTIONS(1920), - [anon_sym_u32] = ACTIONS(1920), - [anon_sym_i32] = ACTIONS(1920), - [anon_sym_u64] = ACTIONS(1920), - [anon_sym_i64] = ACTIONS(1920), - [anon_sym_u128] = ACTIONS(1920), - [anon_sym_i128] = ACTIONS(1920), - [anon_sym_isize] = ACTIONS(1920), - [anon_sym_usize] = ACTIONS(1920), - [anon_sym_f32] = ACTIONS(1920), - [anon_sym_f64] = ACTIONS(1920), - [anon_sym_bool] = ACTIONS(1920), - [anon_sym_str] = ACTIONS(1920), - [anon_sym_char] = ACTIONS(1920), - [anon_sym_DASH] = ACTIONS(1918), - [anon_sym_BANG] = ACTIONS(1918), - [anon_sym_AMP] = ACTIONS(1918), - [anon_sym_PIPE] = ACTIONS(1918), - [anon_sym_LT] = ACTIONS(1918), - [anon_sym_DOT_DOT] = ACTIONS(1918), - [anon_sym_COLON_COLON] = ACTIONS(1918), - [anon_sym_POUND] = ACTIONS(1918), - [anon_sym_SQUOTE] = ACTIONS(1920), - [anon_sym_async] = ACTIONS(1920), - [anon_sym_break] = ACTIONS(1920), - [anon_sym_const] = ACTIONS(1920), - [anon_sym_continue] = ACTIONS(1920), - [anon_sym_default] = ACTIONS(1920), - [anon_sym_enum] = ACTIONS(1920), - [anon_sym_fn] = ACTIONS(1920), - [anon_sym_for] = ACTIONS(1920), - [anon_sym_gen] = ACTIONS(1920), - [anon_sym_if] = ACTIONS(1920), - [anon_sym_impl] = ACTIONS(1920), - [anon_sym_let] = ACTIONS(1920), - [anon_sym_loop] = ACTIONS(1920), - [anon_sym_match] = ACTIONS(1920), - [anon_sym_mod] = ACTIONS(1920), - [anon_sym_pub] = ACTIONS(1920), - [anon_sym_return] = ACTIONS(1920), - [anon_sym_static] = ACTIONS(1920), - [anon_sym_struct] = ACTIONS(1920), - [anon_sym_trait] = ACTIONS(1920), - [anon_sym_type] = ACTIONS(1920), - [anon_sym_union] = ACTIONS(1920), - [anon_sym_unsafe] = ACTIONS(1920), - [anon_sym_use] = ACTIONS(1920), - [anon_sym_while] = ACTIONS(1920), - [anon_sym_extern] = ACTIONS(1920), - [anon_sym_yield] = ACTIONS(1920), - [anon_sym_move] = ACTIONS(1920), - [anon_sym_try] = ACTIONS(1920), - [sym_integer_literal] = ACTIONS(1918), - [aux_sym_string_literal_token1] = ACTIONS(1918), - [sym_char_literal] = ACTIONS(1918), - [anon_sym_true] = ACTIONS(1920), - [anon_sym_false] = ACTIONS(1920), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1920), - [sym_super] = ACTIONS(1920), - [sym_crate] = ACTIONS(1920), - [sym_metavariable] = ACTIONS(1918), - [sym__raw_string_literal_start] = ACTIONS(1918), - [sym_float_literal] = ACTIONS(1918), + [ts_builtin_sym_end] = ACTIONS(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_safe] = 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), }, [STATE(524)] = { + [sym_empty_statement] = STATE(1108), + [sym_macro_definition] = STATE(1108), + [sym_attribute_item] = STATE(1108), + [sym_inner_attribute_item] = STATE(1108), + [sym_mod_item] = STATE(1108), + [sym_foreign_mod_item] = STATE(1108), + [sym_struct_item] = STATE(1108), + [sym_union_item] = STATE(1108), + [sym_enum_item] = STATE(1108), + [sym_extern_crate_declaration] = STATE(1108), + [sym_const_item] = STATE(1108), + [sym_static_item] = STATE(1108), + [sym_type_item] = STATE(1108), + [sym_function_item] = STATE(1108), + [sym_function_signature_item] = STATE(1108), + [sym_function_modifiers] = STATE(3750), + [sym_impl_item] = STATE(1108), + [sym_trait_item] = STATE(1108), + [sym_associated_type] = STATE(1108), + [sym_let_declaration] = STATE(1108), + [sym_use_declaration] = STATE(1108), + [sym_extern_modifier] = STATE(2194), + [sym_visibility_modifier] = STATE(2003), + [sym_bracketed_type] = STATE(3467), + [sym_generic_type_with_turbofish] = STATE(3493), + [sym_macro_invocation] = STATE(1108), + [sym_scoped_identifier] = STATE(3180), [sym_line_comment] = STATE(524), [sym_block_comment] = STATE(524), - [ts_builtin_sym_end] = ACTIONS(1922), - [sym_identifier] = ACTIONS(1924), - [anon_sym_SEMI] = ACTIONS(1922), - [anon_sym_macro_rules_BANG] = ACTIONS(1922), - [anon_sym_LPAREN] = ACTIONS(1922), - [anon_sym_LBRACK] = ACTIONS(1922), - [anon_sym_LBRACE] = ACTIONS(1922), - [anon_sym_RBRACE] = ACTIONS(1922), - [anon_sym_STAR] = ACTIONS(1922), - [anon_sym_u8] = ACTIONS(1924), - [anon_sym_i8] = ACTIONS(1924), - [anon_sym_u16] = ACTIONS(1924), - [anon_sym_i16] = ACTIONS(1924), - [anon_sym_u32] = ACTIONS(1924), - [anon_sym_i32] = ACTIONS(1924), - [anon_sym_u64] = ACTIONS(1924), - [anon_sym_i64] = ACTIONS(1924), - [anon_sym_u128] = ACTIONS(1924), - [anon_sym_i128] = ACTIONS(1924), - [anon_sym_isize] = ACTIONS(1924), - [anon_sym_usize] = ACTIONS(1924), - [anon_sym_f32] = ACTIONS(1924), - [anon_sym_f64] = ACTIONS(1924), - [anon_sym_bool] = ACTIONS(1924), - [anon_sym_str] = ACTIONS(1924), - [anon_sym_char] = ACTIONS(1924), - [anon_sym_DASH] = ACTIONS(1922), - [anon_sym_BANG] = ACTIONS(1922), - [anon_sym_AMP] = ACTIONS(1922), - [anon_sym_PIPE] = ACTIONS(1922), - [anon_sym_LT] = ACTIONS(1922), - [anon_sym_DOT_DOT] = ACTIONS(1922), - [anon_sym_COLON_COLON] = ACTIONS(1922), - [anon_sym_POUND] = ACTIONS(1922), - [anon_sym_SQUOTE] = ACTIONS(1924), - [anon_sym_async] = ACTIONS(1924), - [anon_sym_break] = ACTIONS(1924), - [anon_sym_const] = ACTIONS(1924), - [anon_sym_continue] = ACTIONS(1924), - [anon_sym_default] = ACTIONS(1924), - [anon_sym_enum] = ACTIONS(1924), - [anon_sym_fn] = ACTIONS(1924), - [anon_sym_for] = ACTIONS(1924), - [anon_sym_gen] = ACTIONS(1924), - [anon_sym_if] = ACTIONS(1924), - [anon_sym_impl] = ACTIONS(1924), - [anon_sym_let] = ACTIONS(1924), - [anon_sym_loop] = ACTIONS(1924), - [anon_sym_match] = ACTIONS(1924), - [anon_sym_mod] = ACTIONS(1924), - [anon_sym_pub] = ACTIONS(1924), - [anon_sym_return] = ACTIONS(1924), - [anon_sym_static] = ACTIONS(1924), - [anon_sym_struct] = ACTIONS(1924), - [anon_sym_trait] = ACTIONS(1924), - [anon_sym_type] = ACTIONS(1924), - [anon_sym_union] = ACTIONS(1924), - [anon_sym_unsafe] = ACTIONS(1924), - [anon_sym_use] = ACTIONS(1924), - [anon_sym_while] = ACTIONS(1924), - [anon_sym_extern] = ACTIONS(1924), - [anon_sym_yield] = ACTIONS(1924), - [anon_sym_move] = ACTIONS(1924), - [anon_sym_try] = ACTIONS(1924), - [sym_integer_literal] = ACTIONS(1922), - [aux_sym_string_literal_token1] = ACTIONS(1922), - [sym_char_literal] = ACTIONS(1922), - [anon_sym_true] = ACTIONS(1924), - [anon_sym_false] = ACTIONS(1924), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1924), - [sym_super] = ACTIONS(1924), - [sym_crate] = ACTIONS(1924), - [sym_metavariable] = ACTIONS(1922), - [sym__raw_string_literal_start] = ACTIONS(1922), - [sym_float_literal] = ACTIONS(1922), + [aux_sym_declaration_list_repeat1] = STATE(513), + [aux_sym_function_modifiers_repeat1] = STATE(2244), + [sym_identifier] = ACTIONS(1857), + [anon_sym_SEMI] = ACTIONS(1859), + [anon_sym_macro_rules_BANG] = ACTIONS(1861), + [anon_sym_RBRACE] = ACTIONS(1951), + [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_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1867), + [anon_sym_POUND] = ACTIONS(1869), + [anon_sym_async] = ACTIONS(1270), + [anon_sym_const] = ACTIONS(1871), + [anon_sym_default] = ACTIONS(1873), + [anon_sym_enum] = ACTIONS(1875), + [anon_sym_fn] = ACTIONS(1877), + [anon_sym_gen] = ACTIONS(1879), + [anon_sym_impl] = ACTIONS(1881), + [anon_sym_let] = ACTIONS(1883), + [anon_sym_mod] = ACTIONS(1885), + [anon_sym_pub] = ACTIONS(69), + [anon_sym_static] = ACTIONS(1887), + [anon_sym_struct] = ACTIONS(1889), + [anon_sym_trait] = ACTIONS(1891), + [anon_sym_type] = ACTIONS(1893), + [anon_sym_union] = ACTIONS(1895), + [anon_sym_unsafe] = ACTIONS(1897), + [anon_sym_use] = ACTIONS(1899), + [anon_sym_extern] = ACTIONS(1901), + [anon_sym_safe] = ACTIONS(1903), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1905), + [sym_super] = ACTIONS(1905), + [sym_crate] = ACTIONS(1907), + [sym_metavariable] = ACTIONS(1909), }, [STATE(525)] = { [sym_line_comment] = STATE(525), [sym_block_comment] = STATE(525), - [ts_builtin_sym_end] = ACTIONS(1926), - [sym_identifier] = ACTIONS(1928), - [anon_sym_SEMI] = ACTIONS(1926), - [anon_sym_macro_rules_BANG] = ACTIONS(1926), - [anon_sym_LPAREN] = ACTIONS(1926), - [anon_sym_LBRACK] = ACTIONS(1926), - [anon_sym_LBRACE] = ACTIONS(1926), - [anon_sym_RBRACE] = ACTIONS(1926), - [anon_sym_STAR] = ACTIONS(1926), - [anon_sym_u8] = ACTIONS(1928), - [anon_sym_i8] = ACTIONS(1928), - [anon_sym_u16] = ACTIONS(1928), - [anon_sym_i16] = ACTIONS(1928), - [anon_sym_u32] = ACTIONS(1928), - [anon_sym_i32] = ACTIONS(1928), - [anon_sym_u64] = ACTIONS(1928), - [anon_sym_i64] = ACTIONS(1928), - [anon_sym_u128] = ACTIONS(1928), - [anon_sym_i128] = ACTIONS(1928), - [anon_sym_isize] = ACTIONS(1928), - [anon_sym_usize] = ACTIONS(1928), - [anon_sym_f32] = ACTIONS(1928), - [anon_sym_f64] = ACTIONS(1928), - [anon_sym_bool] = ACTIONS(1928), - [anon_sym_str] = ACTIONS(1928), - [anon_sym_char] = ACTIONS(1928), - [anon_sym_DASH] = ACTIONS(1926), - [anon_sym_BANG] = ACTIONS(1926), - [anon_sym_AMP] = ACTIONS(1926), - [anon_sym_PIPE] = ACTIONS(1926), - [anon_sym_LT] = ACTIONS(1926), - [anon_sym_DOT_DOT] = ACTIONS(1926), - [anon_sym_COLON_COLON] = ACTIONS(1926), - [anon_sym_POUND] = ACTIONS(1926), - [anon_sym_SQUOTE] = ACTIONS(1928), - [anon_sym_async] = ACTIONS(1928), - [anon_sym_break] = ACTIONS(1928), - [anon_sym_const] = ACTIONS(1928), - [anon_sym_continue] = ACTIONS(1928), - [anon_sym_default] = ACTIONS(1928), - [anon_sym_enum] = ACTIONS(1928), - [anon_sym_fn] = ACTIONS(1928), - [anon_sym_for] = ACTIONS(1928), - [anon_sym_gen] = ACTIONS(1928), - [anon_sym_if] = ACTIONS(1928), - [anon_sym_impl] = ACTIONS(1928), - [anon_sym_let] = ACTIONS(1928), - [anon_sym_loop] = ACTIONS(1928), - [anon_sym_match] = ACTIONS(1928), - [anon_sym_mod] = ACTIONS(1928), - [anon_sym_pub] = ACTIONS(1928), - [anon_sym_return] = ACTIONS(1928), - [anon_sym_static] = ACTIONS(1928), - [anon_sym_struct] = ACTIONS(1928), - [anon_sym_trait] = ACTIONS(1928), - [anon_sym_type] = ACTIONS(1928), - [anon_sym_union] = ACTIONS(1928), - [anon_sym_unsafe] = ACTIONS(1928), - [anon_sym_use] = ACTIONS(1928), - [anon_sym_while] = ACTIONS(1928), - [anon_sym_extern] = ACTIONS(1928), - [anon_sym_yield] = ACTIONS(1928), - [anon_sym_move] = ACTIONS(1928), - [anon_sym_try] = ACTIONS(1928), - [sym_integer_literal] = ACTIONS(1926), - [aux_sym_string_literal_token1] = ACTIONS(1926), - [sym_char_literal] = ACTIONS(1926), - [anon_sym_true] = ACTIONS(1928), - [anon_sym_false] = ACTIONS(1928), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1928), - [sym_super] = ACTIONS(1928), - [sym_crate] = ACTIONS(1928), - [sym_metavariable] = ACTIONS(1926), - [sym__raw_string_literal_start] = ACTIONS(1926), - [sym_float_literal] = ACTIONS(1926), + [ts_builtin_sym_end] = ACTIONS(1953), + [sym_identifier] = ACTIONS(1955), + [anon_sym_SEMI] = ACTIONS(1953), + [anon_sym_macro_rules_BANG] = ACTIONS(1953), + [anon_sym_LPAREN] = ACTIONS(1953), + [anon_sym_LBRACK] = ACTIONS(1953), + [anon_sym_LBRACE] = ACTIONS(1953), + [anon_sym_RBRACE] = ACTIONS(1953), + [anon_sym_STAR] = ACTIONS(1953), + [anon_sym_u8] = ACTIONS(1955), + [anon_sym_i8] = ACTIONS(1955), + [anon_sym_u16] = ACTIONS(1955), + [anon_sym_i16] = ACTIONS(1955), + [anon_sym_u32] = ACTIONS(1955), + [anon_sym_i32] = ACTIONS(1955), + [anon_sym_u64] = ACTIONS(1955), + [anon_sym_i64] = ACTIONS(1955), + [anon_sym_u128] = ACTIONS(1955), + [anon_sym_i128] = ACTIONS(1955), + [anon_sym_isize] = ACTIONS(1955), + [anon_sym_usize] = ACTIONS(1955), + [anon_sym_f32] = ACTIONS(1955), + [anon_sym_f64] = ACTIONS(1955), + [anon_sym_bool] = ACTIONS(1955), + [anon_sym_str] = ACTIONS(1955), + [anon_sym_char] = ACTIONS(1955), + [anon_sym_DASH] = ACTIONS(1953), + [anon_sym_BANG] = ACTIONS(1953), + [anon_sym_AMP] = ACTIONS(1953), + [anon_sym_PIPE] = ACTIONS(1953), + [anon_sym_LT] = ACTIONS(1953), + [anon_sym_DOT_DOT] = ACTIONS(1953), + [anon_sym_COLON_COLON] = ACTIONS(1953), + [anon_sym_POUND] = ACTIONS(1953), + [anon_sym_SQUOTE] = ACTIONS(1955), + [anon_sym_async] = ACTIONS(1955), + [anon_sym_break] = ACTIONS(1955), + [anon_sym_const] = ACTIONS(1955), + [anon_sym_continue] = ACTIONS(1955), + [anon_sym_default] = ACTIONS(1955), + [anon_sym_enum] = ACTIONS(1955), + [anon_sym_fn] = ACTIONS(1955), + [anon_sym_for] = ACTIONS(1955), + [anon_sym_gen] = ACTIONS(1955), + [anon_sym_if] = ACTIONS(1955), + [anon_sym_impl] = ACTIONS(1955), + [anon_sym_let] = ACTIONS(1955), + [anon_sym_loop] = ACTIONS(1955), + [anon_sym_match] = ACTIONS(1955), + [anon_sym_mod] = ACTIONS(1955), + [anon_sym_pub] = ACTIONS(1955), + [anon_sym_return] = ACTIONS(1955), + [anon_sym_static] = ACTIONS(1955), + [anon_sym_struct] = ACTIONS(1955), + [anon_sym_trait] = ACTIONS(1955), + [anon_sym_type] = ACTIONS(1955), + [anon_sym_union] = ACTIONS(1955), + [anon_sym_unsafe] = ACTIONS(1955), + [anon_sym_use] = ACTIONS(1955), + [anon_sym_while] = ACTIONS(1955), + [anon_sym_extern] = ACTIONS(1955), + [anon_sym_safe] = ACTIONS(1955), + [anon_sym_yield] = ACTIONS(1955), + [anon_sym_move] = ACTIONS(1955), + [anon_sym_try] = ACTIONS(1955), + [sym_integer_literal] = ACTIONS(1953), + [aux_sym_string_literal_token1] = ACTIONS(1953), + [sym_char_literal] = ACTIONS(1953), + [anon_sym_true] = ACTIONS(1955), + [anon_sym_false] = ACTIONS(1955), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1955), + [sym_super] = ACTIONS(1955), + [sym_crate] = ACTIONS(1955), + [sym_metavariable] = ACTIONS(1953), + [sym__raw_string_literal_start] = ACTIONS(1953), + [sym_float_literal] = ACTIONS(1953), }, [STATE(526)] = { [sym_line_comment] = STATE(526), [sym_block_comment] = STATE(526), - [ts_builtin_sym_end] = ACTIONS(1930), - [sym_identifier] = ACTIONS(1932), - [anon_sym_SEMI] = ACTIONS(1930), - [anon_sym_macro_rules_BANG] = ACTIONS(1930), - [anon_sym_LPAREN] = ACTIONS(1930), - [anon_sym_LBRACK] = ACTIONS(1930), - [anon_sym_LBRACE] = ACTIONS(1930), - [anon_sym_RBRACE] = ACTIONS(1930), - [anon_sym_STAR] = ACTIONS(1930), - [anon_sym_u8] = ACTIONS(1932), - [anon_sym_i8] = ACTIONS(1932), - [anon_sym_u16] = ACTIONS(1932), - [anon_sym_i16] = ACTIONS(1932), - [anon_sym_u32] = ACTIONS(1932), - [anon_sym_i32] = ACTIONS(1932), - [anon_sym_u64] = ACTIONS(1932), - [anon_sym_i64] = ACTIONS(1932), - [anon_sym_u128] = ACTIONS(1932), - [anon_sym_i128] = ACTIONS(1932), - [anon_sym_isize] = ACTIONS(1932), - [anon_sym_usize] = ACTIONS(1932), - [anon_sym_f32] = ACTIONS(1932), - [anon_sym_f64] = ACTIONS(1932), - [anon_sym_bool] = ACTIONS(1932), - [anon_sym_str] = ACTIONS(1932), - [anon_sym_char] = ACTIONS(1932), - [anon_sym_DASH] = ACTIONS(1930), - [anon_sym_BANG] = ACTIONS(1930), - [anon_sym_AMP] = ACTIONS(1930), - [anon_sym_PIPE] = ACTIONS(1930), - [anon_sym_LT] = ACTIONS(1930), - [anon_sym_DOT_DOT] = ACTIONS(1930), - [anon_sym_COLON_COLON] = ACTIONS(1930), - [anon_sym_POUND] = ACTIONS(1930), - [anon_sym_SQUOTE] = ACTIONS(1932), - [anon_sym_async] = ACTIONS(1932), - [anon_sym_break] = ACTIONS(1932), - [anon_sym_const] = ACTIONS(1932), - [anon_sym_continue] = ACTIONS(1932), - [anon_sym_default] = ACTIONS(1932), - [anon_sym_enum] = ACTIONS(1932), - [anon_sym_fn] = ACTIONS(1932), - [anon_sym_for] = ACTIONS(1932), - [anon_sym_gen] = ACTIONS(1932), - [anon_sym_if] = ACTIONS(1932), - [anon_sym_impl] = ACTIONS(1932), - [anon_sym_let] = ACTIONS(1932), - [anon_sym_loop] = ACTIONS(1932), - [anon_sym_match] = ACTIONS(1932), - [anon_sym_mod] = ACTIONS(1932), - [anon_sym_pub] = ACTIONS(1932), - [anon_sym_return] = ACTIONS(1932), - [anon_sym_static] = ACTIONS(1932), - [anon_sym_struct] = ACTIONS(1932), - [anon_sym_trait] = ACTIONS(1932), - [anon_sym_type] = ACTIONS(1932), - [anon_sym_union] = ACTIONS(1932), - [anon_sym_unsafe] = ACTIONS(1932), - [anon_sym_use] = ACTIONS(1932), - [anon_sym_while] = ACTIONS(1932), - [anon_sym_extern] = ACTIONS(1932), - [anon_sym_yield] = ACTIONS(1932), - [anon_sym_move] = ACTIONS(1932), - [anon_sym_try] = ACTIONS(1932), - [sym_integer_literal] = ACTIONS(1930), - [aux_sym_string_literal_token1] = ACTIONS(1930), - [sym_char_literal] = ACTIONS(1930), - [anon_sym_true] = ACTIONS(1932), - [anon_sym_false] = ACTIONS(1932), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1932), - [sym_super] = ACTIONS(1932), - [sym_crate] = ACTIONS(1932), - [sym_metavariable] = ACTIONS(1930), - [sym__raw_string_literal_start] = ACTIONS(1930), - [sym_float_literal] = ACTIONS(1930), + [ts_builtin_sym_end] = ACTIONS(1957), + [sym_identifier] = ACTIONS(1959), + [anon_sym_SEMI] = ACTIONS(1957), + [anon_sym_macro_rules_BANG] = ACTIONS(1957), + [anon_sym_LPAREN] = ACTIONS(1957), + [anon_sym_LBRACK] = ACTIONS(1957), + [anon_sym_LBRACE] = ACTIONS(1957), + [anon_sym_RBRACE] = ACTIONS(1957), + [anon_sym_STAR] = ACTIONS(1957), + [anon_sym_u8] = ACTIONS(1959), + [anon_sym_i8] = ACTIONS(1959), + [anon_sym_u16] = ACTIONS(1959), + [anon_sym_i16] = ACTIONS(1959), + [anon_sym_u32] = ACTIONS(1959), + [anon_sym_i32] = ACTIONS(1959), + [anon_sym_u64] = ACTIONS(1959), + [anon_sym_i64] = ACTIONS(1959), + [anon_sym_u128] = ACTIONS(1959), + [anon_sym_i128] = ACTIONS(1959), + [anon_sym_isize] = ACTIONS(1959), + [anon_sym_usize] = ACTIONS(1959), + [anon_sym_f32] = ACTIONS(1959), + [anon_sym_f64] = ACTIONS(1959), + [anon_sym_bool] = ACTIONS(1959), + [anon_sym_str] = ACTIONS(1959), + [anon_sym_char] = ACTIONS(1959), + [anon_sym_DASH] = ACTIONS(1957), + [anon_sym_BANG] = ACTIONS(1957), + [anon_sym_AMP] = ACTIONS(1957), + [anon_sym_PIPE] = ACTIONS(1957), + [anon_sym_LT] = ACTIONS(1957), + [anon_sym_DOT_DOT] = ACTIONS(1957), + [anon_sym_COLON_COLON] = ACTIONS(1957), + [anon_sym_POUND] = ACTIONS(1957), + [anon_sym_SQUOTE] = ACTIONS(1959), + [anon_sym_async] = ACTIONS(1959), + [anon_sym_break] = ACTIONS(1959), + [anon_sym_const] = ACTIONS(1959), + [anon_sym_continue] = ACTIONS(1959), + [anon_sym_default] = ACTIONS(1959), + [anon_sym_enum] = ACTIONS(1959), + [anon_sym_fn] = ACTIONS(1959), + [anon_sym_for] = ACTIONS(1959), + [anon_sym_gen] = ACTIONS(1959), + [anon_sym_if] = ACTIONS(1959), + [anon_sym_impl] = ACTIONS(1959), + [anon_sym_let] = ACTIONS(1959), + [anon_sym_loop] = ACTIONS(1959), + [anon_sym_match] = ACTIONS(1959), + [anon_sym_mod] = ACTIONS(1959), + [anon_sym_pub] = ACTIONS(1959), + [anon_sym_return] = ACTIONS(1959), + [anon_sym_static] = ACTIONS(1959), + [anon_sym_struct] = ACTIONS(1959), + [anon_sym_trait] = ACTIONS(1959), + [anon_sym_type] = ACTIONS(1959), + [anon_sym_union] = ACTIONS(1959), + [anon_sym_unsafe] = ACTIONS(1959), + [anon_sym_use] = ACTIONS(1959), + [anon_sym_while] = ACTIONS(1959), + [anon_sym_extern] = ACTIONS(1959), + [anon_sym_safe] = ACTIONS(1959), + [anon_sym_yield] = ACTIONS(1959), + [anon_sym_move] = ACTIONS(1959), + [anon_sym_try] = ACTIONS(1959), + [sym_integer_literal] = ACTIONS(1957), + [aux_sym_string_literal_token1] = ACTIONS(1957), + [sym_char_literal] = ACTIONS(1957), + [anon_sym_true] = ACTIONS(1959), + [anon_sym_false] = ACTIONS(1959), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1959), + [sym_super] = ACTIONS(1959), + [sym_crate] = ACTIONS(1959), + [sym_metavariable] = ACTIONS(1957), + [sym__raw_string_literal_start] = ACTIONS(1957), + [sym_float_literal] = ACTIONS(1957), }, [STATE(527)] = { [sym_line_comment] = STATE(527), [sym_block_comment] = STATE(527), - [ts_builtin_sym_end] = ACTIONS(1934), - [sym_identifier] = ACTIONS(1936), - [anon_sym_SEMI] = ACTIONS(1934), - [anon_sym_macro_rules_BANG] = ACTIONS(1934), - [anon_sym_LPAREN] = ACTIONS(1934), - [anon_sym_LBRACK] = ACTIONS(1934), - [anon_sym_LBRACE] = ACTIONS(1934), - [anon_sym_RBRACE] = ACTIONS(1934), - [anon_sym_STAR] = ACTIONS(1934), - [anon_sym_u8] = ACTIONS(1936), - [anon_sym_i8] = ACTIONS(1936), - [anon_sym_u16] = ACTIONS(1936), - [anon_sym_i16] = ACTIONS(1936), - [anon_sym_u32] = ACTIONS(1936), - [anon_sym_i32] = ACTIONS(1936), - [anon_sym_u64] = ACTIONS(1936), - [anon_sym_i64] = ACTIONS(1936), - [anon_sym_u128] = ACTIONS(1936), - [anon_sym_i128] = ACTIONS(1936), - [anon_sym_isize] = ACTIONS(1936), - [anon_sym_usize] = ACTIONS(1936), - [anon_sym_f32] = ACTIONS(1936), - [anon_sym_f64] = ACTIONS(1936), - [anon_sym_bool] = ACTIONS(1936), - [anon_sym_str] = ACTIONS(1936), - [anon_sym_char] = ACTIONS(1936), - [anon_sym_DASH] = ACTIONS(1934), - [anon_sym_BANG] = ACTIONS(1934), - [anon_sym_AMP] = ACTIONS(1934), - [anon_sym_PIPE] = ACTIONS(1934), - [anon_sym_LT] = ACTIONS(1934), - [anon_sym_DOT_DOT] = ACTIONS(1934), - [anon_sym_COLON_COLON] = ACTIONS(1934), - [anon_sym_POUND] = ACTIONS(1934), - [anon_sym_SQUOTE] = ACTIONS(1936), - [anon_sym_async] = ACTIONS(1936), - [anon_sym_break] = ACTIONS(1936), - [anon_sym_const] = ACTIONS(1936), - [anon_sym_continue] = ACTIONS(1936), - [anon_sym_default] = ACTIONS(1936), - [anon_sym_enum] = ACTIONS(1936), - [anon_sym_fn] = ACTIONS(1936), - [anon_sym_for] = ACTIONS(1936), - [anon_sym_gen] = ACTIONS(1936), - [anon_sym_if] = ACTIONS(1936), - [anon_sym_impl] = ACTIONS(1936), - [anon_sym_let] = ACTIONS(1936), - [anon_sym_loop] = ACTIONS(1936), - [anon_sym_match] = ACTIONS(1936), - [anon_sym_mod] = ACTIONS(1936), - [anon_sym_pub] = ACTIONS(1936), - [anon_sym_return] = ACTIONS(1936), - [anon_sym_static] = ACTIONS(1936), - [anon_sym_struct] = ACTIONS(1936), - [anon_sym_trait] = ACTIONS(1936), - [anon_sym_type] = ACTIONS(1936), - [anon_sym_union] = ACTIONS(1936), - [anon_sym_unsafe] = ACTIONS(1936), - [anon_sym_use] = ACTIONS(1936), - [anon_sym_while] = ACTIONS(1936), - [anon_sym_extern] = ACTIONS(1936), - [anon_sym_yield] = ACTIONS(1936), - [anon_sym_move] = ACTIONS(1936), - [anon_sym_try] = ACTIONS(1936), - [sym_integer_literal] = ACTIONS(1934), - [aux_sym_string_literal_token1] = ACTIONS(1934), - [sym_char_literal] = ACTIONS(1934), - [anon_sym_true] = ACTIONS(1936), - [anon_sym_false] = ACTIONS(1936), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1936), - [sym_super] = ACTIONS(1936), - [sym_crate] = ACTIONS(1936), - [sym_metavariable] = ACTIONS(1934), - [sym__raw_string_literal_start] = ACTIONS(1934), - [sym_float_literal] = ACTIONS(1934), + [ts_builtin_sym_end] = ACTIONS(1961), + [sym_identifier] = ACTIONS(1963), + [anon_sym_SEMI] = ACTIONS(1961), + [anon_sym_macro_rules_BANG] = ACTIONS(1961), + [anon_sym_LPAREN] = ACTIONS(1961), + [anon_sym_LBRACK] = ACTIONS(1961), + [anon_sym_LBRACE] = ACTIONS(1961), + [anon_sym_RBRACE] = ACTIONS(1961), + [anon_sym_STAR] = ACTIONS(1961), + [anon_sym_u8] = ACTIONS(1963), + [anon_sym_i8] = ACTIONS(1963), + [anon_sym_u16] = ACTIONS(1963), + [anon_sym_i16] = ACTIONS(1963), + [anon_sym_u32] = ACTIONS(1963), + [anon_sym_i32] = ACTIONS(1963), + [anon_sym_u64] = ACTIONS(1963), + [anon_sym_i64] = ACTIONS(1963), + [anon_sym_u128] = ACTIONS(1963), + [anon_sym_i128] = ACTIONS(1963), + [anon_sym_isize] = ACTIONS(1963), + [anon_sym_usize] = ACTIONS(1963), + [anon_sym_f32] = ACTIONS(1963), + [anon_sym_f64] = ACTIONS(1963), + [anon_sym_bool] = ACTIONS(1963), + [anon_sym_str] = ACTIONS(1963), + [anon_sym_char] = ACTIONS(1963), + [anon_sym_DASH] = ACTIONS(1961), + [anon_sym_BANG] = ACTIONS(1961), + [anon_sym_AMP] = ACTIONS(1961), + [anon_sym_PIPE] = ACTIONS(1961), + [anon_sym_LT] = ACTIONS(1961), + [anon_sym_DOT_DOT] = ACTIONS(1961), + [anon_sym_COLON_COLON] = ACTIONS(1961), + [anon_sym_POUND] = ACTIONS(1961), + [anon_sym_SQUOTE] = ACTIONS(1963), + [anon_sym_async] = ACTIONS(1963), + [anon_sym_break] = ACTIONS(1963), + [anon_sym_const] = ACTIONS(1963), + [anon_sym_continue] = ACTIONS(1963), + [anon_sym_default] = ACTIONS(1963), + [anon_sym_enum] = ACTIONS(1963), + [anon_sym_fn] = ACTIONS(1963), + [anon_sym_for] = ACTIONS(1963), + [anon_sym_gen] = ACTIONS(1963), + [anon_sym_if] = ACTIONS(1963), + [anon_sym_impl] = ACTIONS(1963), + [anon_sym_let] = ACTIONS(1963), + [anon_sym_loop] = ACTIONS(1963), + [anon_sym_match] = ACTIONS(1963), + [anon_sym_mod] = ACTIONS(1963), + [anon_sym_pub] = ACTIONS(1963), + [anon_sym_return] = ACTIONS(1963), + [anon_sym_static] = ACTIONS(1963), + [anon_sym_struct] = ACTIONS(1963), + [anon_sym_trait] = ACTIONS(1963), + [anon_sym_type] = ACTIONS(1963), + [anon_sym_union] = ACTIONS(1963), + [anon_sym_unsafe] = ACTIONS(1963), + [anon_sym_use] = ACTIONS(1963), + [anon_sym_while] = ACTIONS(1963), + [anon_sym_extern] = ACTIONS(1963), + [anon_sym_safe] = ACTIONS(1963), + [anon_sym_yield] = ACTIONS(1963), + [anon_sym_move] = ACTIONS(1963), + [anon_sym_try] = ACTIONS(1963), + [sym_integer_literal] = ACTIONS(1961), + [aux_sym_string_literal_token1] = ACTIONS(1961), + [sym_char_literal] = ACTIONS(1961), + [anon_sym_true] = ACTIONS(1963), + [anon_sym_false] = ACTIONS(1963), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1963), + [sym_super] = ACTIONS(1963), + [sym_crate] = ACTIONS(1963), + [sym_metavariable] = ACTIONS(1961), + [sym__raw_string_literal_start] = ACTIONS(1961), + [sym_float_literal] = ACTIONS(1961), }, [STATE(528)] = { [sym_line_comment] = STATE(528), [sym_block_comment] = STATE(528), - [ts_builtin_sym_end] = ACTIONS(1938), - [sym_identifier] = ACTIONS(1940), - [anon_sym_SEMI] = ACTIONS(1938), - [anon_sym_macro_rules_BANG] = ACTIONS(1938), - [anon_sym_LPAREN] = ACTIONS(1938), - [anon_sym_LBRACK] = ACTIONS(1938), - [anon_sym_LBRACE] = ACTIONS(1938), - [anon_sym_RBRACE] = ACTIONS(1938), - [anon_sym_STAR] = ACTIONS(1938), - [anon_sym_u8] = ACTIONS(1940), - [anon_sym_i8] = ACTIONS(1940), - [anon_sym_u16] = ACTIONS(1940), - [anon_sym_i16] = ACTIONS(1940), - [anon_sym_u32] = ACTIONS(1940), - [anon_sym_i32] = ACTIONS(1940), - [anon_sym_u64] = ACTIONS(1940), - [anon_sym_i64] = ACTIONS(1940), - [anon_sym_u128] = ACTIONS(1940), - [anon_sym_i128] = ACTIONS(1940), - [anon_sym_isize] = ACTIONS(1940), - [anon_sym_usize] = ACTIONS(1940), - [anon_sym_f32] = ACTIONS(1940), - [anon_sym_f64] = ACTIONS(1940), - [anon_sym_bool] = ACTIONS(1940), - [anon_sym_str] = ACTIONS(1940), - [anon_sym_char] = ACTIONS(1940), - [anon_sym_DASH] = ACTIONS(1938), - [anon_sym_BANG] = ACTIONS(1938), - [anon_sym_AMP] = ACTIONS(1938), - [anon_sym_PIPE] = ACTIONS(1938), - [anon_sym_LT] = ACTIONS(1938), - [anon_sym_DOT_DOT] = ACTIONS(1938), - [anon_sym_COLON_COLON] = ACTIONS(1938), - [anon_sym_POUND] = ACTIONS(1938), - [anon_sym_SQUOTE] = ACTIONS(1940), - [anon_sym_async] = ACTIONS(1940), - [anon_sym_break] = ACTIONS(1940), - [anon_sym_const] = ACTIONS(1940), - [anon_sym_continue] = ACTIONS(1940), - [anon_sym_default] = ACTIONS(1940), - [anon_sym_enum] = ACTIONS(1940), - [anon_sym_fn] = ACTIONS(1940), - [anon_sym_for] = ACTIONS(1940), - [anon_sym_gen] = ACTIONS(1940), - [anon_sym_if] = ACTIONS(1940), - [anon_sym_impl] = ACTIONS(1940), - [anon_sym_let] = ACTIONS(1940), - [anon_sym_loop] = ACTIONS(1940), - [anon_sym_match] = ACTIONS(1940), - [anon_sym_mod] = ACTIONS(1940), - [anon_sym_pub] = ACTIONS(1940), - [anon_sym_return] = ACTIONS(1940), - [anon_sym_static] = ACTIONS(1940), - [anon_sym_struct] = ACTIONS(1940), - [anon_sym_trait] = ACTIONS(1940), - [anon_sym_type] = ACTIONS(1940), - [anon_sym_union] = ACTIONS(1940), - [anon_sym_unsafe] = ACTIONS(1940), - [anon_sym_use] = ACTIONS(1940), - [anon_sym_while] = ACTIONS(1940), - [anon_sym_extern] = ACTIONS(1940), - [anon_sym_yield] = ACTIONS(1940), - [anon_sym_move] = ACTIONS(1940), - [anon_sym_try] = ACTIONS(1940), - [sym_integer_literal] = ACTIONS(1938), - [aux_sym_string_literal_token1] = ACTIONS(1938), - [sym_char_literal] = ACTIONS(1938), - [anon_sym_true] = ACTIONS(1940), - [anon_sym_false] = ACTIONS(1940), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1940), - [sym_super] = ACTIONS(1940), - [sym_crate] = ACTIONS(1940), - [sym_metavariable] = ACTIONS(1938), - [sym__raw_string_literal_start] = ACTIONS(1938), - [sym_float_literal] = ACTIONS(1938), + [ts_builtin_sym_end] = ACTIONS(1965), + [sym_identifier] = ACTIONS(1967), + [anon_sym_SEMI] = ACTIONS(1965), + [anon_sym_macro_rules_BANG] = ACTIONS(1965), + [anon_sym_LPAREN] = ACTIONS(1965), + [anon_sym_LBRACK] = ACTIONS(1965), + [anon_sym_LBRACE] = ACTIONS(1965), + [anon_sym_RBRACE] = ACTIONS(1965), + [anon_sym_STAR] = ACTIONS(1965), + [anon_sym_u8] = ACTIONS(1967), + [anon_sym_i8] = ACTIONS(1967), + [anon_sym_u16] = ACTIONS(1967), + [anon_sym_i16] = ACTIONS(1967), + [anon_sym_u32] = ACTIONS(1967), + [anon_sym_i32] = ACTIONS(1967), + [anon_sym_u64] = ACTIONS(1967), + [anon_sym_i64] = ACTIONS(1967), + [anon_sym_u128] = ACTIONS(1967), + [anon_sym_i128] = ACTIONS(1967), + [anon_sym_isize] = ACTIONS(1967), + [anon_sym_usize] = ACTIONS(1967), + [anon_sym_f32] = ACTIONS(1967), + [anon_sym_f64] = ACTIONS(1967), + [anon_sym_bool] = ACTIONS(1967), + [anon_sym_str] = ACTIONS(1967), + [anon_sym_char] = ACTIONS(1967), + [anon_sym_DASH] = ACTIONS(1965), + [anon_sym_BANG] = ACTIONS(1965), + [anon_sym_AMP] = ACTIONS(1965), + [anon_sym_PIPE] = ACTIONS(1965), + [anon_sym_LT] = ACTIONS(1965), + [anon_sym_DOT_DOT] = ACTIONS(1965), + [anon_sym_COLON_COLON] = ACTIONS(1965), + [anon_sym_POUND] = ACTIONS(1965), + [anon_sym_SQUOTE] = ACTIONS(1967), + [anon_sym_async] = ACTIONS(1967), + [anon_sym_break] = ACTIONS(1967), + [anon_sym_const] = ACTIONS(1967), + [anon_sym_continue] = ACTIONS(1967), + [anon_sym_default] = ACTIONS(1967), + [anon_sym_enum] = ACTIONS(1967), + [anon_sym_fn] = ACTIONS(1967), + [anon_sym_for] = ACTIONS(1967), + [anon_sym_gen] = ACTIONS(1967), + [anon_sym_if] = ACTIONS(1967), + [anon_sym_impl] = ACTIONS(1967), + [anon_sym_let] = ACTIONS(1967), + [anon_sym_loop] = ACTIONS(1967), + [anon_sym_match] = ACTIONS(1967), + [anon_sym_mod] = ACTIONS(1967), + [anon_sym_pub] = ACTIONS(1967), + [anon_sym_return] = ACTIONS(1967), + [anon_sym_static] = ACTIONS(1967), + [anon_sym_struct] = ACTIONS(1967), + [anon_sym_trait] = ACTIONS(1967), + [anon_sym_type] = ACTIONS(1967), + [anon_sym_union] = ACTIONS(1967), + [anon_sym_unsafe] = ACTIONS(1967), + [anon_sym_use] = ACTIONS(1967), + [anon_sym_while] = ACTIONS(1967), + [anon_sym_extern] = ACTIONS(1967), + [anon_sym_safe] = ACTIONS(1967), + [anon_sym_yield] = ACTIONS(1967), + [anon_sym_move] = ACTIONS(1967), + [anon_sym_try] = ACTIONS(1967), + [sym_integer_literal] = ACTIONS(1965), + [aux_sym_string_literal_token1] = ACTIONS(1965), + [sym_char_literal] = ACTIONS(1965), + [anon_sym_true] = ACTIONS(1967), + [anon_sym_false] = ACTIONS(1967), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1967), + [sym_super] = ACTIONS(1967), + [sym_crate] = ACTIONS(1967), + [sym_metavariable] = ACTIONS(1965), + [sym__raw_string_literal_start] = ACTIONS(1965), + [sym_float_literal] = ACTIONS(1965), }, [STATE(529)] = { [sym_line_comment] = STATE(529), [sym_block_comment] = STATE(529), - [ts_builtin_sym_end] = ACTIONS(1942), - [sym_identifier] = ACTIONS(1944), - [anon_sym_SEMI] = ACTIONS(1942), - [anon_sym_macro_rules_BANG] = ACTIONS(1942), - [anon_sym_LPAREN] = ACTIONS(1942), - [anon_sym_LBRACK] = ACTIONS(1942), - [anon_sym_LBRACE] = ACTIONS(1942), - [anon_sym_RBRACE] = ACTIONS(1942), - [anon_sym_STAR] = ACTIONS(1942), - [anon_sym_u8] = ACTIONS(1944), - [anon_sym_i8] = ACTIONS(1944), - [anon_sym_u16] = ACTIONS(1944), - [anon_sym_i16] = ACTIONS(1944), - [anon_sym_u32] = ACTIONS(1944), - [anon_sym_i32] = ACTIONS(1944), - [anon_sym_u64] = ACTIONS(1944), - [anon_sym_i64] = ACTIONS(1944), - [anon_sym_u128] = ACTIONS(1944), - [anon_sym_i128] = ACTIONS(1944), - [anon_sym_isize] = ACTIONS(1944), - [anon_sym_usize] = ACTIONS(1944), - [anon_sym_f32] = ACTIONS(1944), - [anon_sym_f64] = ACTIONS(1944), - [anon_sym_bool] = ACTIONS(1944), - [anon_sym_str] = ACTIONS(1944), - [anon_sym_char] = ACTIONS(1944), - [anon_sym_DASH] = ACTIONS(1942), - [anon_sym_BANG] = ACTIONS(1942), - [anon_sym_AMP] = ACTIONS(1942), - [anon_sym_PIPE] = ACTIONS(1942), - [anon_sym_LT] = ACTIONS(1942), - [anon_sym_DOT_DOT] = ACTIONS(1942), - [anon_sym_COLON_COLON] = ACTIONS(1942), - [anon_sym_POUND] = ACTIONS(1942), - [anon_sym_SQUOTE] = ACTIONS(1944), - [anon_sym_async] = ACTIONS(1944), - [anon_sym_break] = ACTIONS(1944), - [anon_sym_const] = ACTIONS(1944), - [anon_sym_continue] = ACTIONS(1944), - [anon_sym_default] = ACTIONS(1944), - [anon_sym_enum] = ACTIONS(1944), - [anon_sym_fn] = ACTIONS(1944), - [anon_sym_for] = ACTIONS(1944), - [anon_sym_gen] = ACTIONS(1944), - [anon_sym_if] = ACTIONS(1944), - [anon_sym_impl] = ACTIONS(1944), - [anon_sym_let] = ACTIONS(1944), - [anon_sym_loop] = ACTIONS(1944), - [anon_sym_match] = ACTIONS(1944), - [anon_sym_mod] = ACTIONS(1944), - [anon_sym_pub] = ACTIONS(1944), - [anon_sym_return] = ACTIONS(1944), - [anon_sym_static] = ACTIONS(1944), - [anon_sym_struct] = ACTIONS(1944), - [anon_sym_trait] = ACTIONS(1944), - [anon_sym_type] = ACTIONS(1944), - [anon_sym_union] = ACTIONS(1944), - [anon_sym_unsafe] = ACTIONS(1944), - [anon_sym_use] = ACTIONS(1944), - [anon_sym_while] = ACTIONS(1944), - [anon_sym_extern] = ACTIONS(1944), - [anon_sym_yield] = ACTIONS(1944), - [anon_sym_move] = ACTIONS(1944), - [anon_sym_try] = ACTIONS(1944), - [sym_integer_literal] = ACTIONS(1942), - [aux_sym_string_literal_token1] = ACTIONS(1942), - [sym_char_literal] = ACTIONS(1942), - [anon_sym_true] = ACTIONS(1944), - [anon_sym_false] = ACTIONS(1944), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1944), - [sym_super] = ACTIONS(1944), - [sym_crate] = ACTIONS(1944), - [sym_metavariable] = ACTIONS(1942), - [sym__raw_string_literal_start] = ACTIONS(1942), - [sym_float_literal] = ACTIONS(1942), + [ts_builtin_sym_end] = ACTIONS(1969), + [sym_identifier] = ACTIONS(1971), + [anon_sym_SEMI] = ACTIONS(1969), + [anon_sym_macro_rules_BANG] = ACTIONS(1969), + [anon_sym_LPAREN] = ACTIONS(1969), + [anon_sym_LBRACK] = ACTIONS(1969), + [anon_sym_LBRACE] = ACTIONS(1969), + [anon_sym_RBRACE] = ACTIONS(1969), + [anon_sym_STAR] = ACTIONS(1969), + [anon_sym_u8] = ACTIONS(1971), + [anon_sym_i8] = ACTIONS(1971), + [anon_sym_u16] = ACTIONS(1971), + [anon_sym_i16] = ACTIONS(1971), + [anon_sym_u32] = ACTIONS(1971), + [anon_sym_i32] = ACTIONS(1971), + [anon_sym_u64] = ACTIONS(1971), + [anon_sym_i64] = ACTIONS(1971), + [anon_sym_u128] = ACTIONS(1971), + [anon_sym_i128] = ACTIONS(1971), + [anon_sym_isize] = ACTIONS(1971), + [anon_sym_usize] = ACTIONS(1971), + [anon_sym_f32] = ACTIONS(1971), + [anon_sym_f64] = ACTIONS(1971), + [anon_sym_bool] = ACTIONS(1971), + [anon_sym_str] = ACTIONS(1971), + [anon_sym_char] = ACTIONS(1971), + [anon_sym_DASH] = ACTIONS(1969), + [anon_sym_BANG] = ACTIONS(1969), + [anon_sym_AMP] = ACTIONS(1969), + [anon_sym_PIPE] = ACTIONS(1969), + [anon_sym_LT] = ACTIONS(1969), + [anon_sym_DOT_DOT] = ACTIONS(1969), + [anon_sym_COLON_COLON] = ACTIONS(1969), + [anon_sym_POUND] = ACTIONS(1969), + [anon_sym_SQUOTE] = ACTIONS(1971), + [anon_sym_async] = ACTIONS(1971), + [anon_sym_break] = ACTIONS(1971), + [anon_sym_const] = ACTIONS(1971), + [anon_sym_continue] = ACTIONS(1971), + [anon_sym_default] = ACTIONS(1971), + [anon_sym_enum] = ACTIONS(1971), + [anon_sym_fn] = ACTIONS(1971), + [anon_sym_for] = ACTIONS(1971), + [anon_sym_gen] = ACTIONS(1971), + [anon_sym_if] = ACTIONS(1971), + [anon_sym_impl] = ACTIONS(1971), + [anon_sym_let] = ACTIONS(1971), + [anon_sym_loop] = ACTIONS(1971), + [anon_sym_match] = ACTIONS(1971), + [anon_sym_mod] = ACTIONS(1971), + [anon_sym_pub] = ACTIONS(1971), + [anon_sym_return] = ACTIONS(1971), + [anon_sym_static] = ACTIONS(1971), + [anon_sym_struct] = ACTIONS(1971), + [anon_sym_trait] = ACTIONS(1971), + [anon_sym_type] = ACTIONS(1971), + [anon_sym_union] = ACTIONS(1971), + [anon_sym_unsafe] = ACTIONS(1971), + [anon_sym_use] = ACTIONS(1971), + [anon_sym_while] = ACTIONS(1971), + [anon_sym_extern] = ACTIONS(1971), + [anon_sym_safe] = ACTIONS(1971), + [anon_sym_yield] = ACTIONS(1971), + [anon_sym_move] = ACTIONS(1971), + [anon_sym_try] = ACTIONS(1971), + [sym_integer_literal] = ACTIONS(1969), + [aux_sym_string_literal_token1] = ACTIONS(1969), + [sym_char_literal] = ACTIONS(1969), + [anon_sym_true] = ACTIONS(1971), + [anon_sym_false] = ACTIONS(1971), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1971), + [sym_super] = ACTIONS(1971), + [sym_crate] = ACTIONS(1971), + [sym_metavariable] = ACTIONS(1969), + [sym__raw_string_literal_start] = ACTIONS(1969), + [sym_float_literal] = ACTIONS(1969), }, [STATE(530)] = { [sym_line_comment] = STATE(530), [sym_block_comment] = STATE(530), - [ts_builtin_sym_end] = ACTIONS(1946), - [sym_identifier] = ACTIONS(1948), - [anon_sym_SEMI] = ACTIONS(1946), - [anon_sym_macro_rules_BANG] = ACTIONS(1946), - [anon_sym_LPAREN] = ACTIONS(1946), - [anon_sym_LBRACK] = ACTIONS(1946), - [anon_sym_LBRACE] = ACTIONS(1946), - [anon_sym_RBRACE] = ACTIONS(1946), - [anon_sym_STAR] = ACTIONS(1946), - [anon_sym_u8] = ACTIONS(1948), - [anon_sym_i8] = ACTIONS(1948), - [anon_sym_u16] = ACTIONS(1948), - [anon_sym_i16] = ACTIONS(1948), - [anon_sym_u32] = ACTIONS(1948), - [anon_sym_i32] = ACTIONS(1948), - [anon_sym_u64] = ACTIONS(1948), - [anon_sym_i64] = ACTIONS(1948), - [anon_sym_u128] = ACTIONS(1948), - [anon_sym_i128] = ACTIONS(1948), - [anon_sym_isize] = ACTIONS(1948), - [anon_sym_usize] = ACTIONS(1948), - [anon_sym_f32] = ACTIONS(1948), - [anon_sym_f64] = ACTIONS(1948), - [anon_sym_bool] = ACTIONS(1948), - [anon_sym_str] = ACTIONS(1948), - [anon_sym_char] = ACTIONS(1948), - [anon_sym_DASH] = ACTIONS(1946), - [anon_sym_BANG] = ACTIONS(1946), - [anon_sym_AMP] = ACTIONS(1946), - [anon_sym_PIPE] = ACTIONS(1946), - [anon_sym_LT] = ACTIONS(1946), - [anon_sym_DOT_DOT] = ACTIONS(1946), - [anon_sym_COLON_COLON] = ACTIONS(1946), - [anon_sym_POUND] = ACTIONS(1946), - [anon_sym_SQUOTE] = ACTIONS(1948), - [anon_sym_async] = ACTIONS(1948), - [anon_sym_break] = ACTIONS(1948), - [anon_sym_const] = ACTIONS(1948), - [anon_sym_continue] = ACTIONS(1948), - [anon_sym_default] = ACTIONS(1948), - [anon_sym_enum] = ACTIONS(1948), - [anon_sym_fn] = ACTIONS(1948), - [anon_sym_for] = ACTIONS(1948), - [anon_sym_gen] = ACTIONS(1948), - [anon_sym_if] = ACTIONS(1948), - [anon_sym_impl] = ACTIONS(1948), - [anon_sym_let] = ACTIONS(1948), - [anon_sym_loop] = ACTIONS(1948), - [anon_sym_match] = ACTIONS(1948), - [anon_sym_mod] = ACTIONS(1948), - [anon_sym_pub] = ACTIONS(1948), - [anon_sym_return] = ACTIONS(1948), - [anon_sym_static] = ACTIONS(1948), - [anon_sym_struct] = ACTIONS(1948), - [anon_sym_trait] = ACTIONS(1948), - [anon_sym_type] = ACTIONS(1948), - [anon_sym_union] = ACTIONS(1948), - [anon_sym_unsafe] = ACTIONS(1948), - [anon_sym_use] = ACTIONS(1948), - [anon_sym_while] = ACTIONS(1948), - [anon_sym_extern] = ACTIONS(1948), - [anon_sym_yield] = ACTIONS(1948), - [anon_sym_move] = ACTIONS(1948), - [anon_sym_try] = ACTIONS(1948), - [sym_integer_literal] = ACTIONS(1946), - [aux_sym_string_literal_token1] = ACTIONS(1946), - [sym_char_literal] = ACTIONS(1946), - [anon_sym_true] = ACTIONS(1948), - [anon_sym_false] = ACTIONS(1948), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1948), - [sym_super] = ACTIONS(1948), - [sym_crate] = ACTIONS(1948), - [sym_metavariable] = ACTIONS(1946), - [sym__raw_string_literal_start] = ACTIONS(1946), - [sym_float_literal] = ACTIONS(1946), + [ts_builtin_sym_end] = ACTIONS(1973), + [sym_identifier] = ACTIONS(1975), + [anon_sym_SEMI] = ACTIONS(1973), + [anon_sym_macro_rules_BANG] = ACTIONS(1973), + [anon_sym_LPAREN] = ACTIONS(1973), + [anon_sym_LBRACK] = ACTIONS(1973), + [anon_sym_LBRACE] = ACTIONS(1973), + [anon_sym_RBRACE] = ACTIONS(1973), + [anon_sym_STAR] = ACTIONS(1973), + [anon_sym_u8] = ACTIONS(1975), + [anon_sym_i8] = ACTIONS(1975), + [anon_sym_u16] = ACTIONS(1975), + [anon_sym_i16] = ACTIONS(1975), + [anon_sym_u32] = ACTIONS(1975), + [anon_sym_i32] = ACTIONS(1975), + [anon_sym_u64] = ACTIONS(1975), + [anon_sym_i64] = ACTIONS(1975), + [anon_sym_u128] = ACTIONS(1975), + [anon_sym_i128] = ACTIONS(1975), + [anon_sym_isize] = ACTIONS(1975), + [anon_sym_usize] = ACTIONS(1975), + [anon_sym_f32] = ACTIONS(1975), + [anon_sym_f64] = ACTIONS(1975), + [anon_sym_bool] = ACTIONS(1975), + [anon_sym_str] = ACTIONS(1975), + [anon_sym_char] = ACTIONS(1975), + [anon_sym_DASH] = ACTIONS(1973), + [anon_sym_BANG] = ACTIONS(1973), + [anon_sym_AMP] = ACTIONS(1973), + [anon_sym_PIPE] = ACTIONS(1973), + [anon_sym_LT] = ACTIONS(1973), + [anon_sym_DOT_DOT] = ACTIONS(1973), + [anon_sym_COLON_COLON] = ACTIONS(1973), + [anon_sym_POUND] = ACTIONS(1973), + [anon_sym_SQUOTE] = ACTIONS(1975), + [anon_sym_async] = ACTIONS(1975), + [anon_sym_break] = ACTIONS(1975), + [anon_sym_const] = ACTIONS(1975), + [anon_sym_continue] = ACTIONS(1975), + [anon_sym_default] = ACTIONS(1975), + [anon_sym_enum] = ACTIONS(1975), + [anon_sym_fn] = ACTIONS(1975), + [anon_sym_for] = ACTIONS(1975), + [anon_sym_gen] = ACTIONS(1975), + [anon_sym_if] = ACTIONS(1975), + [anon_sym_impl] = ACTIONS(1975), + [anon_sym_let] = ACTIONS(1975), + [anon_sym_loop] = ACTIONS(1975), + [anon_sym_match] = ACTIONS(1975), + [anon_sym_mod] = ACTIONS(1975), + [anon_sym_pub] = ACTIONS(1975), + [anon_sym_return] = ACTIONS(1975), + [anon_sym_static] = ACTIONS(1975), + [anon_sym_struct] = ACTIONS(1975), + [anon_sym_trait] = ACTIONS(1975), + [anon_sym_type] = ACTIONS(1975), + [anon_sym_union] = ACTIONS(1975), + [anon_sym_unsafe] = ACTIONS(1975), + [anon_sym_use] = ACTIONS(1975), + [anon_sym_while] = ACTIONS(1975), + [anon_sym_extern] = ACTIONS(1975), + [anon_sym_safe] = ACTIONS(1975), + [anon_sym_yield] = ACTIONS(1975), + [anon_sym_move] = ACTIONS(1975), + [anon_sym_try] = ACTIONS(1975), + [sym_integer_literal] = ACTIONS(1973), + [aux_sym_string_literal_token1] = ACTIONS(1973), + [sym_char_literal] = ACTIONS(1973), + [anon_sym_true] = ACTIONS(1975), + [anon_sym_false] = ACTIONS(1975), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1975), + [sym_super] = ACTIONS(1975), + [sym_crate] = ACTIONS(1975), + [sym_metavariable] = ACTIONS(1973), + [sym__raw_string_literal_start] = ACTIONS(1973), + [sym_float_literal] = ACTIONS(1973), }, [STATE(531)] = { [sym_line_comment] = STATE(531), [sym_block_comment] = STATE(531), - [ts_builtin_sym_end] = ACTIONS(1950), - [sym_identifier] = ACTIONS(1952), - [anon_sym_SEMI] = ACTIONS(1950), - [anon_sym_macro_rules_BANG] = ACTIONS(1950), - [anon_sym_LPAREN] = ACTIONS(1950), - [anon_sym_LBRACK] = ACTIONS(1950), - [anon_sym_LBRACE] = ACTIONS(1950), - [anon_sym_RBRACE] = ACTIONS(1950), - [anon_sym_STAR] = ACTIONS(1950), - [anon_sym_u8] = ACTIONS(1952), - [anon_sym_i8] = ACTIONS(1952), - [anon_sym_u16] = ACTIONS(1952), - [anon_sym_i16] = ACTIONS(1952), - [anon_sym_u32] = ACTIONS(1952), - [anon_sym_i32] = ACTIONS(1952), - [anon_sym_u64] = ACTIONS(1952), - [anon_sym_i64] = ACTIONS(1952), - [anon_sym_u128] = ACTIONS(1952), - [anon_sym_i128] = ACTIONS(1952), - [anon_sym_isize] = ACTIONS(1952), - [anon_sym_usize] = ACTIONS(1952), - [anon_sym_f32] = ACTIONS(1952), - [anon_sym_f64] = ACTIONS(1952), - [anon_sym_bool] = ACTIONS(1952), - [anon_sym_str] = ACTIONS(1952), - [anon_sym_char] = ACTIONS(1952), - [anon_sym_DASH] = ACTIONS(1950), - [anon_sym_BANG] = ACTIONS(1950), - [anon_sym_AMP] = ACTIONS(1950), - [anon_sym_PIPE] = ACTIONS(1950), - [anon_sym_LT] = ACTIONS(1950), - [anon_sym_DOT_DOT] = ACTIONS(1950), - [anon_sym_COLON_COLON] = ACTIONS(1950), - [anon_sym_POUND] = ACTIONS(1950), - [anon_sym_SQUOTE] = ACTIONS(1952), - [anon_sym_async] = ACTIONS(1952), - [anon_sym_break] = ACTIONS(1952), - [anon_sym_const] = ACTIONS(1952), - [anon_sym_continue] = ACTIONS(1952), - [anon_sym_default] = ACTIONS(1952), - [anon_sym_enum] = ACTIONS(1952), - [anon_sym_fn] = ACTIONS(1952), - [anon_sym_for] = ACTIONS(1952), - [anon_sym_gen] = ACTIONS(1952), - [anon_sym_if] = ACTIONS(1952), - [anon_sym_impl] = ACTIONS(1952), - [anon_sym_let] = ACTIONS(1952), - [anon_sym_loop] = ACTIONS(1952), - [anon_sym_match] = ACTIONS(1952), - [anon_sym_mod] = ACTIONS(1952), - [anon_sym_pub] = ACTIONS(1952), - [anon_sym_return] = ACTIONS(1952), - [anon_sym_static] = ACTIONS(1952), - [anon_sym_struct] = ACTIONS(1952), - [anon_sym_trait] = ACTIONS(1952), - [anon_sym_type] = ACTIONS(1952), - [anon_sym_union] = ACTIONS(1952), - [anon_sym_unsafe] = ACTIONS(1952), - [anon_sym_use] = ACTIONS(1952), - [anon_sym_while] = ACTIONS(1952), - [anon_sym_extern] = ACTIONS(1952), - [anon_sym_yield] = ACTIONS(1952), - [anon_sym_move] = ACTIONS(1952), - [anon_sym_try] = ACTIONS(1952), - [sym_integer_literal] = ACTIONS(1950), - [aux_sym_string_literal_token1] = ACTIONS(1950), - [sym_char_literal] = ACTIONS(1950), - [anon_sym_true] = ACTIONS(1952), - [anon_sym_false] = ACTIONS(1952), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1952), - [sym_super] = ACTIONS(1952), - [sym_crate] = ACTIONS(1952), - [sym_metavariable] = ACTIONS(1950), - [sym__raw_string_literal_start] = ACTIONS(1950), - [sym_float_literal] = ACTIONS(1950), + [ts_builtin_sym_end] = ACTIONS(1977), + [sym_identifier] = ACTIONS(1979), + [anon_sym_SEMI] = ACTIONS(1977), + [anon_sym_macro_rules_BANG] = ACTIONS(1977), + [anon_sym_LPAREN] = ACTIONS(1977), + [anon_sym_LBRACK] = ACTIONS(1977), + [anon_sym_LBRACE] = ACTIONS(1977), + [anon_sym_RBRACE] = ACTIONS(1977), + [anon_sym_STAR] = ACTIONS(1977), + [anon_sym_u8] = ACTIONS(1979), + [anon_sym_i8] = ACTIONS(1979), + [anon_sym_u16] = ACTIONS(1979), + [anon_sym_i16] = ACTIONS(1979), + [anon_sym_u32] = ACTIONS(1979), + [anon_sym_i32] = ACTIONS(1979), + [anon_sym_u64] = ACTIONS(1979), + [anon_sym_i64] = ACTIONS(1979), + [anon_sym_u128] = ACTIONS(1979), + [anon_sym_i128] = ACTIONS(1979), + [anon_sym_isize] = ACTIONS(1979), + [anon_sym_usize] = ACTIONS(1979), + [anon_sym_f32] = ACTIONS(1979), + [anon_sym_f64] = ACTIONS(1979), + [anon_sym_bool] = ACTIONS(1979), + [anon_sym_str] = ACTIONS(1979), + [anon_sym_char] = ACTIONS(1979), + [anon_sym_DASH] = ACTIONS(1977), + [anon_sym_BANG] = ACTIONS(1977), + [anon_sym_AMP] = ACTIONS(1977), + [anon_sym_PIPE] = ACTIONS(1977), + [anon_sym_LT] = ACTIONS(1977), + [anon_sym_DOT_DOT] = ACTIONS(1977), + [anon_sym_COLON_COLON] = ACTIONS(1977), + [anon_sym_POUND] = ACTIONS(1977), + [anon_sym_SQUOTE] = ACTIONS(1979), + [anon_sym_async] = ACTIONS(1979), + [anon_sym_break] = ACTIONS(1979), + [anon_sym_const] = ACTIONS(1979), + [anon_sym_continue] = ACTIONS(1979), + [anon_sym_default] = ACTIONS(1979), + [anon_sym_enum] = ACTIONS(1979), + [anon_sym_fn] = ACTIONS(1979), + [anon_sym_for] = ACTIONS(1979), + [anon_sym_gen] = ACTIONS(1979), + [anon_sym_if] = ACTIONS(1979), + [anon_sym_impl] = ACTIONS(1979), + [anon_sym_let] = ACTIONS(1979), + [anon_sym_loop] = ACTIONS(1979), + [anon_sym_match] = ACTIONS(1979), + [anon_sym_mod] = ACTIONS(1979), + [anon_sym_pub] = ACTIONS(1979), + [anon_sym_return] = ACTIONS(1979), + [anon_sym_static] = ACTIONS(1979), + [anon_sym_struct] = ACTIONS(1979), + [anon_sym_trait] = ACTIONS(1979), + [anon_sym_type] = ACTIONS(1979), + [anon_sym_union] = ACTIONS(1979), + [anon_sym_unsafe] = ACTIONS(1979), + [anon_sym_use] = ACTIONS(1979), + [anon_sym_while] = ACTIONS(1979), + [anon_sym_extern] = ACTIONS(1979), + [anon_sym_safe] = ACTIONS(1979), + [anon_sym_yield] = ACTIONS(1979), + [anon_sym_move] = ACTIONS(1979), + [anon_sym_try] = ACTIONS(1979), + [sym_integer_literal] = ACTIONS(1977), + [aux_sym_string_literal_token1] = ACTIONS(1977), + [sym_char_literal] = ACTIONS(1977), + [anon_sym_true] = ACTIONS(1979), + [anon_sym_false] = ACTIONS(1979), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1979), + [sym_super] = ACTIONS(1979), + [sym_crate] = ACTIONS(1979), + [sym_metavariable] = ACTIONS(1977), + [sym__raw_string_literal_start] = ACTIONS(1977), + [sym_float_literal] = ACTIONS(1977), }, [STATE(532)] = { [sym_line_comment] = STATE(532), [sym_block_comment] = STATE(532), - [ts_builtin_sym_end] = ACTIONS(1954), - [sym_identifier] = ACTIONS(1956), - [anon_sym_SEMI] = ACTIONS(1954), - [anon_sym_macro_rules_BANG] = ACTIONS(1954), - [anon_sym_LPAREN] = ACTIONS(1954), - [anon_sym_LBRACK] = ACTIONS(1954), - [anon_sym_LBRACE] = ACTIONS(1954), - [anon_sym_RBRACE] = ACTIONS(1954), - [anon_sym_STAR] = ACTIONS(1954), - [anon_sym_u8] = ACTIONS(1956), - [anon_sym_i8] = ACTIONS(1956), - [anon_sym_u16] = ACTIONS(1956), - [anon_sym_i16] = ACTIONS(1956), - [anon_sym_u32] = ACTIONS(1956), - [anon_sym_i32] = ACTIONS(1956), - [anon_sym_u64] = ACTIONS(1956), - [anon_sym_i64] = ACTIONS(1956), - [anon_sym_u128] = ACTIONS(1956), - [anon_sym_i128] = ACTIONS(1956), - [anon_sym_isize] = ACTIONS(1956), - [anon_sym_usize] = ACTIONS(1956), - [anon_sym_f32] = ACTIONS(1956), - [anon_sym_f64] = ACTIONS(1956), - [anon_sym_bool] = ACTIONS(1956), - [anon_sym_str] = ACTIONS(1956), - [anon_sym_char] = ACTIONS(1956), - [anon_sym_DASH] = ACTIONS(1954), - [anon_sym_BANG] = ACTIONS(1954), - [anon_sym_AMP] = ACTIONS(1954), - [anon_sym_PIPE] = ACTIONS(1954), - [anon_sym_LT] = ACTIONS(1954), - [anon_sym_DOT_DOT] = ACTIONS(1954), - [anon_sym_COLON_COLON] = ACTIONS(1954), - [anon_sym_POUND] = ACTIONS(1954), - [anon_sym_SQUOTE] = ACTIONS(1956), - [anon_sym_async] = ACTIONS(1956), - [anon_sym_break] = ACTIONS(1956), - [anon_sym_const] = ACTIONS(1956), - [anon_sym_continue] = ACTIONS(1956), - [anon_sym_default] = ACTIONS(1956), - [anon_sym_enum] = ACTIONS(1956), - [anon_sym_fn] = ACTIONS(1956), - [anon_sym_for] = ACTIONS(1956), - [anon_sym_gen] = ACTIONS(1956), - [anon_sym_if] = ACTIONS(1956), - [anon_sym_impl] = ACTIONS(1956), - [anon_sym_let] = ACTIONS(1956), - [anon_sym_loop] = ACTIONS(1956), - [anon_sym_match] = ACTIONS(1956), - [anon_sym_mod] = ACTIONS(1956), - [anon_sym_pub] = ACTIONS(1956), - [anon_sym_return] = ACTIONS(1956), - [anon_sym_static] = ACTIONS(1956), - [anon_sym_struct] = ACTIONS(1956), - [anon_sym_trait] = ACTIONS(1956), - [anon_sym_type] = ACTIONS(1956), - [anon_sym_union] = ACTIONS(1956), - [anon_sym_unsafe] = ACTIONS(1956), - [anon_sym_use] = ACTIONS(1956), - [anon_sym_while] = ACTIONS(1956), - [anon_sym_extern] = ACTIONS(1956), - [anon_sym_yield] = ACTIONS(1956), - [anon_sym_move] = ACTIONS(1956), - [anon_sym_try] = ACTIONS(1956), - [sym_integer_literal] = ACTIONS(1954), - [aux_sym_string_literal_token1] = ACTIONS(1954), - [sym_char_literal] = ACTIONS(1954), - [anon_sym_true] = ACTIONS(1956), - [anon_sym_false] = ACTIONS(1956), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1956), - [sym_super] = ACTIONS(1956), - [sym_crate] = ACTIONS(1956), - [sym_metavariable] = ACTIONS(1954), - [sym__raw_string_literal_start] = ACTIONS(1954), - [sym_float_literal] = ACTIONS(1954), + [ts_builtin_sym_end] = ACTIONS(1981), + [sym_identifier] = ACTIONS(1983), + [anon_sym_SEMI] = ACTIONS(1981), + [anon_sym_macro_rules_BANG] = ACTIONS(1981), + [anon_sym_LPAREN] = ACTIONS(1981), + [anon_sym_LBRACK] = ACTIONS(1981), + [anon_sym_LBRACE] = ACTIONS(1981), + [anon_sym_RBRACE] = ACTIONS(1981), + [anon_sym_STAR] = ACTIONS(1981), + [anon_sym_u8] = ACTIONS(1983), + [anon_sym_i8] = ACTIONS(1983), + [anon_sym_u16] = ACTIONS(1983), + [anon_sym_i16] = ACTIONS(1983), + [anon_sym_u32] = ACTIONS(1983), + [anon_sym_i32] = ACTIONS(1983), + [anon_sym_u64] = ACTIONS(1983), + [anon_sym_i64] = ACTIONS(1983), + [anon_sym_u128] = ACTIONS(1983), + [anon_sym_i128] = ACTIONS(1983), + [anon_sym_isize] = ACTIONS(1983), + [anon_sym_usize] = ACTIONS(1983), + [anon_sym_f32] = ACTIONS(1983), + [anon_sym_f64] = ACTIONS(1983), + [anon_sym_bool] = ACTIONS(1983), + [anon_sym_str] = ACTIONS(1983), + [anon_sym_char] = ACTIONS(1983), + [anon_sym_DASH] = ACTIONS(1981), + [anon_sym_BANG] = ACTIONS(1981), + [anon_sym_AMP] = ACTIONS(1981), + [anon_sym_PIPE] = ACTIONS(1981), + [anon_sym_LT] = ACTIONS(1981), + [anon_sym_DOT_DOT] = ACTIONS(1981), + [anon_sym_COLON_COLON] = ACTIONS(1981), + [anon_sym_POUND] = ACTIONS(1981), + [anon_sym_SQUOTE] = ACTIONS(1983), + [anon_sym_async] = ACTIONS(1983), + [anon_sym_break] = ACTIONS(1983), + [anon_sym_const] = ACTIONS(1983), + [anon_sym_continue] = ACTIONS(1983), + [anon_sym_default] = ACTIONS(1983), + [anon_sym_enum] = ACTIONS(1983), + [anon_sym_fn] = ACTIONS(1983), + [anon_sym_for] = ACTIONS(1983), + [anon_sym_gen] = ACTIONS(1983), + [anon_sym_if] = ACTIONS(1983), + [anon_sym_impl] = ACTIONS(1983), + [anon_sym_let] = ACTIONS(1983), + [anon_sym_loop] = ACTIONS(1983), + [anon_sym_match] = ACTIONS(1983), + [anon_sym_mod] = ACTIONS(1983), + [anon_sym_pub] = ACTIONS(1983), + [anon_sym_return] = ACTIONS(1983), + [anon_sym_static] = ACTIONS(1983), + [anon_sym_struct] = ACTIONS(1983), + [anon_sym_trait] = ACTIONS(1983), + [anon_sym_type] = ACTIONS(1983), + [anon_sym_union] = ACTIONS(1983), + [anon_sym_unsafe] = ACTIONS(1983), + [anon_sym_use] = ACTIONS(1983), + [anon_sym_while] = ACTIONS(1983), + [anon_sym_extern] = ACTIONS(1983), + [anon_sym_safe] = ACTIONS(1983), + [anon_sym_yield] = ACTIONS(1983), + [anon_sym_move] = ACTIONS(1983), + [anon_sym_try] = ACTIONS(1983), + [sym_integer_literal] = ACTIONS(1981), + [aux_sym_string_literal_token1] = ACTIONS(1981), + [sym_char_literal] = ACTIONS(1981), + [anon_sym_true] = ACTIONS(1983), + [anon_sym_false] = ACTIONS(1983), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1983), + [sym_super] = ACTIONS(1983), + [sym_crate] = ACTIONS(1983), + [sym_metavariable] = ACTIONS(1981), + [sym__raw_string_literal_start] = ACTIONS(1981), + [sym_float_literal] = ACTIONS(1981), }, [STATE(533)] = { [sym_line_comment] = STATE(533), [sym_block_comment] = STATE(533), - [ts_builtin_sym_end] = ACTIONS(1958), - [sym_identifier] = ACTIONS(1960), - [anon_sym_SEMI] = ACTIONS(1958), - [anon_sym_macro_rules_BANG] = ACTIONS(1958), - [anon_sym_LPAREN] = ACTIONS(1958), - [anon_sym_LBRACK] = ACTIONS(1958), - [anon_sym_LBRACE] = ACTIONS(1958), - [anon_sym_RBRACE] = ACTIONS(1958), - [anon_sym_STAR] = ACTIONS(1958), - [anon_sym_u8] = ACTIONS(1960), - [anon_sym_i8] = ACTIONS(1960), - [anon_sym_u16] = ACTIONS(1960), - [anon_sym_i16] = ACTIONS(1960), - [anon_sym_u32] = ACTIONS(1960), - [anon_sym_i32] = ACTIONS(1960), - [anon_sym_u64] = ACTIONS(1960), - [anon_sym_i64] = ACTIONS(1960), - [anon_sym_u128] = ACTIONS(1960), - [anon_sym_i128] = ACTIONS(1960), - [anon_sym_isize] = ACTIONS(1960), - [anon_sym_usize] = ACTIONS(1960), - [anon_sym_f32] = ACTIONS(1960), - [anon_sym_f64] = ACTIONS(1960), - [anon_sym_bool] = ACTIONS(1960), - [anon_sym_str] = ACTIONS(1960), - [anon_sym_char] = ACTIONS(1960), - [anon_sym_DASH] = ACTIONS(1958), - [anon_sym_BANG] = ACTIONS(1958), - [anon_sym_AMP] = ACTIONS(1958), - [anon_sym_PIPE] = ACTIONS(1958), - [anon_sym_LT] = ACTIONS(1958), - [anon_sym_DOT_DOT] = ACTIONS(1958), - [anon_sym_COLON_COLON] = ACTIONS(1958), - [anon_sym_POUND] = ACTIONS(1958), - [anon_sym_SQUOTE] = ACTIONS(1960), - [anon_sym_async] = ACTIONS(1960), - [anon_sym_break] = ACTIONS(1960), - [anon_sym_const] = ACTIONS(1960), - [anon_sym_continue] = ACTIONS(1960), - [anon_sym_default] = ACTIONS(1960), - [anon_sym_enum] = ACTIONS(1960), - [anon_sym_fn] = ACTIONS(1960), - [anon_sym_for] = ACTIONS(1960), - [anon_sym_gen] = ACTIONS(1960), - [anon_sym_if] = ACTIONS(1960), - [anon_sym_impl] = ACTIONS(1960), - [anon_sym_let] = ACTIONS(1960), - [anon_sym_loop] = ACTIONS(1960), - [anon_sym_match] = ACTIONS(1960), - [anon_sym_mod] = ACTIONS(1960), - [anon_sym_pub] = ACTIONS(1960), - [anon_sym_return] = ACTIONS(1960), - [anon_sym_static] = ACTIONS(1960), - [anon_sym_struct] = ACTIONS(1960), - [anon_sym_trait] = ACTIONS(1960), - [anon_sym_type] = ACTIONS(1960), - [anon_sym_union] = ACTIONS(1960), - [anon_sym_unsafe] = ACTIONS(1960), - [anon_sym_use] = ACTIONS(1960), - [anon_sym_while] = ACTIONS(1960), - [anon_sym_extern] = ACTIONS(1960), - [anon_sym_yield] = ACTIONS(1960), - [anon_sym_move] = ACTIONS(1960), - [anon_sym_try] = ACTIONS(1960), - [sym_integer_literal] = ACTIONS(1958), - [aux_sym_string_literal_token1] = ACTIONS(1958), - [sym_char_literal] = ACTIONS(1958), - [anon_sym_true] = ACTIONS(1960), - [anon_sym_false] = ACTIONS(1960), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1960), - [sym_super] = ACTIONS(1960), - [sym_crate] = ACTIONS(1960), - [sym_metavariable] = ACTIONS(1958), - [sym__raw_string_literal_start] = ACTIONS(1958), - [sym_float_literal] = ACTIONS(1958), + [ts_builtin_sym_end] = ACTIONS(1985), + [sym_identifier] = ACTIONS(1987), + [anon_sym_SEMI] = ACTIONS(1985), + [anon_sym_macro_rules_BANG] = ACTIONS(1985), + [anon_sym_LPAREN] = ACTIONS(1985), + [anon_sym_LBRACK] = ACTIONS(1985), + [anon_sym_LBRACE] = ACTIONS(1985), + [anon_sym_RBRACE] = ACTIONS(1985), + [anon_sym_STAR] = ACTIONS(1985), + [anon_sym_u8] = ACTIONS(1987), + [anon_sym_i8] = ACTIONS(1987), + [anon_sym_u16] = ACTIONS(1987), + [anon_sym_i16] = ACTIONS(1987), + [anon_sym_u32] = ACTIONS(1987), + [anon_sym_i32] = ACTIONS(1987), + [anon_sym_u64] = ACTIONS(1987), + [anon_sym_i64] = ACTIONS(1987), + [anon_sym_u128] = ACTIONS(1987), + [anon_sym_i128] = ACTIONS(1987), + [anon_sym_isize] = ACTIONS(1987), + [anon_sym_usize] = ACTIONS(1987), + [anon_sym_f32] = ACTIONS(1987), + [anon_sym_f64] = ACTIONS(1987), + [anon_sym_bool] = ACTIONS(1987), + [anon_sym_str] = ACTIONS(1987), + [anon_sym_char] = ACTIONS(1987), + [anon_sym_DASH] = ACTIONS(1985), + [anon_sym_BANG] = ACTIONS(1985), + [anon_sym_AMP] = ACTIONS(1985), + [anon_sym_PIPE] = ACTIONS(1985), + [anon_sym_LT] = ACTIONS(1985), + [anon_sym_DOT_DOT] = ACTIONS(1985), + [anon_sym_COLON_COLON] = ACTIONS(1985), + [anon_sym_POUND] = ACTIONS(1985), + [anon_sym_SQUOTE] = ACTIONS(1987), + [anon_sym_async] = ACTIONS(1987), + [anon_sym_break] = ACTIONS(1987), + [anon_sym_const] = ACTIONS(1987), + [anon_sym_continue] = ACTIONS(1987), + [anon_sym_default] = ACTIONS(1987), + [anon_sym_enum] = ACTIONS(1987), + [anon_sym_fn] = ACTIONS(1987), + [anon_sym_for] = ACTIONS(1987), + [anon_sym_gen] = ACTIONS(1987), + [anon_sym_if] = ACTIONS(1987), + [anon_sym_impl] = ACTIONS(1987), + [anon_sym_let] = ACTIONS(1987), + [anon_sym_loop] = ACTIONS(1987), + [anon_sym_match] = ACTIONS(1987), + [anon_sym_mod] = ACTIONS(1987), + [anon_sym_pub] = ACTIONS(1987), + [anon_sym_return] = ACTIONS(1987), + [anon_sym_static] = ACTIONS(1987), + [anon_sym_struct] = ACTIONS(1987), + [anon_sym_trait] = ACTIONS(1987), + [anon_sym_type] = ACTIONS(1987), + [anon_sym_union] = ACTIONS(1987), + [anon_sym_unsafe] = ACTIONS(1987), + [anon_sym_use] = ACTIONS(1987), + [anon_sym_while] = ACTIONS(1987), + [anon_sym_extern] = ACTIONS(1987), + [anon_sym_safe] = ACTIONS(1987), + [anon_sym_yield] = ACTIONS(1987), + [anon_sym_move] = ACTIONS(1987), + [anon_sym_try] = ACTIONS(1987), + [sym_integer_literal] = ACTIONS(1985), + [aux_sym_string_literal_token1] = ACTIONS(1985), + [sym_char_literal] = ACTIONS(1985), + [anon_sym_true] = ACTIONS(1987), + [anon_sym_false] = ACTIONS(1987), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1987), + [sym_super] = ACTIONS(1987), + [sym_crate] = ACTIONS(1987), + [sym_metavariable] = ACTIONS(1985), + [sym__raw_string_literal_start] = ACTIONS(1985), + [sym_float_literal] = ACTIONS(1985), }, [STATE(534)] = { [sym_line_comment] = STATE(534), [sym_block_comment] = STATE(534), - [ts_builtin_sym_end] = ACTIONS(1962), - [sym_identifier] = ACTIONS(1964), - [anon_sym_SEMI] = ACTIONS(1962), - [anon_sym_macro_rules_BANG] = ACTIONS(1962), - [anon_sym_LPAREN] = ACTIONS(1962), - [anon_sym_LBRACK] = ACTIONS(1962), - [anon_sym_LBRACE] = ACTIONS(1962), - [anon_sym_RBRACE] = ACTIONS(1962), - [anon_sym_STAR] = ACTIONS(1962), - [anon_sym_u8] = ACTIONS(1964), - [anon_sym_i8] = ACTIONS(1964), - [anon_sym_u16] = ACTIONS(1964), - [anon_sym_i16] = ACTIONS(1964), - [anon_sym_u32] = ACTIONS(1964), - [anon_sym_i32] = ACTIONS(1964), - [anon_sym_u64] = ACTIONS(1964), - [anon_sym_i64] = ACTIONS(1964), - [anon_sym_u128] = ACTIONS(1964), - [anon_sym_i128] = ACTIONS(1964), - [anon_sym_isize] = ACTIONS(1964), - [anon_sym_usize] = ACTIONS(1964), - [anon_sym_f32] = ACTIONS(1964), - [anon_sym_f64] = ACTIONS(1964), - [anon_sym_bool] = ACTIONS(1964), - [anon_sym_str] = ACTIONS(1964), - [anon_sym_char] = ACTIONS(1964), - [anon_sym_DASH] = ACTIONS(1962), - [anon_sym_BANG] = ACTIONS(1962), - [anon_sym_AMP] = ACTIONS(1962), - [anon_sym_PIPE] = ACTIONS(1962), - [anon_sym_LT] = ACTIONS(1962), - [anon_sym_DOT_DOT] = ACTIONS(1962), - [anon_sym_COLON_COLON] = ACTIONS(1962), - [anon_sym_POUND] = ACTIONS(1962), - [anon_sym_SQUOTE] = ACTIONS(1964), - [anon_sym_async] = ACTIONS(1964), - [anon_sym_break] = ACTIONS(1964), - [anon_sym_const] = ACTIONS(1964), - [anon_sym_continue] = ACTIONS(1964), - [anon_sym_default] = ACTIONS(1964), - [anon_sym_enum] = ACTIONS(1964), - [anon_sym_fn] = ACTIONS(1964), - [anon_sym_for] = ACTIONS(1964), - [anon_sym_gen] = ACTIONS(1964), - [anon_sym_if] = ACTIONS(1964), - [anon_sym_impl] = ACTIONS(1964), - [anon_sym_let] = ACTIONS(1964), - [anon_sym_loop] = ACTIONS(1964), - [anon_sym_match] = ACTIONS(1964), - [anon_sym_mod] = ACTIONS(1964), - [anon_sym_pub] = ACTIONS(1964), - [anon_sym_return] = ACTIONS(1964), - [anon_sym_static] = ACTIONS(1964), - [anon_sym_struct] = ACTIONS(1964), - [anon_sym_trait] = ACTIONS(1964), - [anon_sym_type] = ACTIONS(1964), - [anon_sym_union] = ACTIONS(1964), - [anon_sym_unsafe] = ACTIONS(1964), - [anon_sym_use] = ACTIONS(1964), - [anon_sym_while] = ACTIONS(1964), - [anon_sym_extern] = ACTIONS(1964), - [anon_sym_yield] = ACTIONS(1964), - [anon_sym_move] = ACTIONS(1964), - [anon_sym_try] = ACTIONS(1964), - [sym_integer_literal] = ACTIONS(1962), - [aux_sym_string_literal_token1] = ACTIONS(1962), - [sym_char_literal] = ACTIONS(1962), - [anon_sym_true] = ACTIONS(1964), - [anon_sym_false] = ACTIONS(1964), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1964), - [sym_super] = ACTIONS(1964), - [sym_crate] = ACTIONS(1964), - [sym_metavariable] = ACTIONS(1962), - [sym__raw_string_literal_start] = ACTIONS(1962), - [sym_float_literal] = ACTIONS(1962), + [ts_builtin_sym_end] = ACTIONS(1989), + [sym_identifier] = ACTIONS(1991), + [anon_sym_SEMI] = ACTIONS(1989), + [anon_sym_macro_rules_BANG] = ACTIONS(1989), + [anon_sym_LPAREN] = ACTIONS(1989), + [anon_sym_LBRACK] = ACTIONS(1989), + [anon_sym_LBRACE] = ACTIONS(1989), + [anon_sym_RBRACE] = ACTIONS(1989), + [anon_sym_STAR] = ACTIONS(1989), + [anon_sym_u8] = ACTIONS(1991), + [anon_sym_i8] = ACTIONS(1991), + [anon_sym_u16] = ACTIONS(1991), + [anon_sym_i16] = ACTIONS(1991), + [anon_sym_u32] = ACTIONS(1991), + [anon_sym_i32] = ACTIONS(1991), + [anon_sym_u64] = ACTIONS(1991), + [anon_sym_i64] = ACTIONS(1991), + [anon_sym_u128] = ACTIONS(1991), + [anon_sym_i128] = ACTIONS(1991), + [anon_sym_isize] = ACTIONS(1991), + [anon_sym_usize] = ACTIONS(1991), + [anon_sym_f32] = ACTIONS(1991), + [anon_sym_f64] = ACTIONS(1991), + [anon_sym_bool] = ACTIONS(1991), + [anon_sym_str] = ACTIONS(1991), + [anon_sym_char] = ACTIONS(1991), + [anon_sym_DASH] = ACTIONS(1989), + [anon_sym_BANG] = ACTIONS(1989), + [anon_sym_AMP] = ACTIONS(1989), + [anon_sym_PIPE] = ACTIONS(1989), + [anon_sym_LT] = ACTIONS(1989), + [anon_sym_DOT_DOT] = ACTIONS(1989), + [anon_sym_COLON_COLON] = ACTIONS(1989), + [anon_sym_POUND] = ACTIONS(1989), + [anon_sym_SQUOTE] = ACTIONS(1991), + [anon_sym_async] = ACTIONS(1991), + [anon_sym_break] = ACTIONS(1991), + [anon_sym_const] = ACTIONS(1991), + [anon_sym_continue] = ACTIONS(1991), + [anon_sym_default] = ACTIONS(1991), + [anon_sym_enum] = ACTIONS(1991), + [anon_sym_fn] = ACTIONS(1991), + [anon_sym_for] = ACTIONS(1991), + [anon_sym_gen] = ACTIONS(1991), + [anon_sym_if] = ACTIONS(1991), + [anon_sym_impl] = ACTIONS(1991), + [anon_sym_let] = ACTIONS(1991), + [anon_sym_loop] = ACTIONS(1991), + [anon_sym_match] = ACTIONS(1991), + [anon_sym_mod] = ACTIONS(1991), + [anon_sym_pub] = ACTIONS(1991), + [anon_sym_return] = ACTIONS(1991), + [anon_sym_static] = ACTIONS(1991), + [anon_sym_struct] = ACTIONS(1991), + [anon_sym_trait] = ACTIONS(1991), + [anon_sym_type] = ACTIONS(1991), + [anon_sym_union] = ACTIONS(1991), + [anon_sym_unsafe] = ACTIONS(1991), + [anon_sym_use] = ACTIONS(1991), + [anon_sym_while] = ACTIONS(1991), + [anon_sym_extern] = ACTIONS(1991), + [anon_sym_safe] = ACTIONS(1991), + [anon_sym_yield] = ACTIONS(1991), + [anon_sym_move] = ACTIONS(1991), + [anon_sym_try] = ACTIONS(1991), + [sym_integer_literal] = ACTIONS(1989), + [aux_sym_string_literal_token1] = ACTIONS(1989), + [sym_char_literal] = ACTIONS(1989), + [anon_sym_true] = ACTIONS(1991), + [anon_sym_false] = ACTIONS(1991), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1991), + [sym_super] = ACTIONS(1991), + [sym_crate] = ACTIONS(1991), + [sym_metavariable] = ACTIONS(1989), + [sym__raw_string_literal_start] = ACTIONS(1989), + [sym_float_literal] = ACTIONS(1989), }, [STATE(535)] = { [sym_line_comment] = STATE(535), [sym_block_comment] = STATE(535), - [ts_builtin_sym_end] = ACTIONS(1966), - [sym_identifier] = ACTIONS(1968), - [anon_sym_SEMI] = ACTIONS(1966), - [anon_sym_macro_rules_BANG] = ACTIONS(1966), - [anon_sym_LPAREN] = ACTIONS(1966), - [anon_sym_LBRACK] = ACTIONS(1966), - [anon_sym_LBRACE] = ACTIONS(1966), - [anon_sym_RBRACE] = ACTIONS(1966), - [anon_sym_STAR] = ACTIONS(1966), - [anon_sym_u8] = ACTIONS(1968), - [anon_sym_i8] = ACTIONS(1968), - [anon_sym_u16] = ACTIONS(1968), - [anon_sym_i16] = ACTIONS(1968), - [anon_sym_u32] = ACTIONS(1968), - [anon_sym_i32] = ACTIONS(1968), - [anon_sym_u64] = ACTIONS(1968), - [anon_sym_i64] = ACTIONS(1968), - [anon_sym_u128] = ACTIONS(1968), - [anon_sym_i128] = ACTIONS(1968), - [anon_sym_isize] = ACTIONS(1968), - [anon_sym_usize] = ACTIONS(1968), - [anon_sym_f32] = ACTIONS(1968), - [anon_sym_f64] = ACTIONS(1968), - [anon_sym_bool] = ACTIONS(1968), - [anon_sym_str] = ACTIONS(1968), - [anon_sym_char] = ACTIONS(1968), - [anon_sym_DASH] = ACTIONS(1966), - [anon_sym_BANG] = ACTIONS(1966), - [anon_sym_AMP] = ACTIONS(1966), - [anon_sym_PIPE] = ACTIONS(1966), - [anon_sym_LT] = ACTIONS(1966), - [anon_sym_DOT_DOT] = ACTIONS(1966), - [anon_sym_COLON_COLON] = ACTIONS(1966), - [anon_sym_POUND] = ACTIONS(1966), - [anon_sym_SQUOTE] = ACTIONS(1968), - [anon_sym_async] = ACTIONS(1968), - [anon_sym_break] = ACTIONS(1968), - [anon_sym_const] = ACTIONS(1968), - [anon_sym_continue] = ACTIONS(1968), - [anon_sym_default] = ACTIONS(1968), - [anon_sym_enum] = ACTIONS(1968), - [anon_sym_fn] = ACTIONS(1968), - [anon_sym_for] = ACTIONS(1968), - [anon_sym_gen] = ACTIONS(1968), - [anon_sym_if] = ACTIONS(1968), - [anon_sym_impl] = ACTIONS(1968), - [anon_sym_let] = ACTIONS(1968), - [anon_sym_loop] = ACTIONS(1968), - [anon_sym_match] = ACTIONS(1968), - [anon_sym_mod] = ACTIONS(1968), - [anon_sym_pub] = ACTIONS(1968), - [anon_sym_return] = ACTIONS(1968), - [anon_sym_static] = ACTIONS(1968), - [anon_sym_struct] = ACTIONS(1968), - [anon_sym_trait] = ACTIONS(1968), - [anon_sym_type] = ACTIONS(1968), - [anon_sym_union] = ACTIONS(1968), - [anon_sym_unsafe] = ACTIONS(1968), - [anon_sym_use] = ACTIONS(1968), - [anon_sym_while] = ACTIONS(1968), - [anon_sym_extern] = ACTIONS(1968), - [anon_sym_yield] = ACTIONS(1968), - [anon_sym_move] = ACTIONS(1968), - [anon_sym_try] = ACTIONS(1968), - [sym_integer_literal] = ACTIONS(1966), - [aux_sym_string_literal_token1] = ACTIONS(1966), - [sym_char_literal] = ACTIONS(1966), - [anon_sym_true] = ACTIONS(1968), - [anon_sym_false] = ACTIONS(1968), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1968), - [sym_super] = ACTIONS(1968), - [sym_crate] = ACTIONS(1968), - [sym_metavariable] = ACTIONS(1966), - [sym__raw_string_literal_start] = ACTIONS(1966), - [sym_float_literal] = ACTIONS(1966), + [ts_builtin_sym_end] = ACTIONS(1993), + [sym_identifier] = ACTIONS(1995), + [anon_sym_SEMI] = ACTIONS(1993), + [anon_sym_macro_rules_BANG] = ACTIONS(1993), + [anon_sym_LPAREN] = ACTIONS(1993), + [anon_sym_LBRACK] = ACTIONS(1993), + [anon_sym_LBRACE] = ACTIONS(1993), + [anon_sym_RBRACE] = ACTIONS(1993), + [anon_sym_STAR] = ACTIONS(1993), + [anon_sym_u8] = ACTIONS(1995), + [anon_sym_i8] = ACTIONS(1995), + [anon_sym_u16] = ACTIONS(1995), + [anon_sym_i16] = ACTIONS(1995), + [anon_sym_u32] = ACTIONS(1995), + [anon_sym_i32] = ACTIONS(1995), + [anon_sym_u64] = ACTIONS(1995), + [anon_sym_i64] = ACTIONS(1995), + [anon_sym_u128] = ACTIONS(1995), + [anon_sym_i128] = ACTIONS(1995), + [anon_sym_isize] = ACTIONS(1995), + [anon_sym_usize] = ACTIONS(1995), + [anon_sym_f32] = ACTIONS(1995), + [anon_sym_f64] = ACTIONS(1995), + [anon_sym_bool] = ACTIONS(1995), + [anon_sym_str] = ACTIONS(1995), + [anon_sym_char] = ACTIONS(1995), + [anon_sym_DASH] = ACTIONS(1993), + [anon_sym_BANG] = ACTIONS(1993), + [anon_sym_AMP] = ACTIONS(1993), + [anon_sym_PIPE] = ACTIONS(1993), + [anon_sym_LT] = ACTIONS(1993), + [anon_sym_DOT_DOT] = ACTIONS(1993), + [anon_sym_COLON_COLON] = ACTIONS(1993), + [anon_sym_POUND] = ACTIONS(1993), + [anon_sym_SQUOTE] = ACTIONS(1995), + [anon_sym_async] = ACTIONS(1995), + [anon_sym_break] = ACTIONS(1995), + [anon_sym_const] = ACTIONS(1995), + [anon_sym_continue] = ACTIONS(1995), + [anon_sym_default] = ACTIONS(1995), + [anon_sym_enum] = ACTIONS(1995), + [anon_sym_fn] = ACTIONS(1995), + [anon_sym_for] = ACTIONS(1995), + [anon_sym_gen] = ACTIONS(1995), + [anon_sym_if] = ACTIONS(1995), + [anon_sym_impl] = ACTIONS(1995), + [anon_sym_let] = ACTIONS(1995), + [anon_sym_loop] = ACTIONS(1995), + [anon_sym_match] = ACTIONS(1995), + [anon_sym_mod] = ACTIONS(1995), + [anon_sym_pub] = ACTIONS(1995), + [anon_sym_return] = ACTIONS(1995), + [anon_sym_static] = ACTIONS(1995), + [anon_sym_struct] = ACTIONS(1995), + [anon_sym_trait] = ACTIONS(1995), + [anon_sym_type] = ACTIONS(1995), + [anon_sym_union] = ACTIONS(1995), + [anon_sym_unsafe] = ACTIONS(1995), + [anon_sym_use] = ACTIONS(1995), + [anon_sym_while] = ACTIONS(1995), + [anon_sym_extern] = ACTIONS(1995), + [anon_sym_safe] = ACTIONS(1995), + [anon_sym_yield] = ACTIONS(1995), + [anon_sym_move] = ACTIONS(1995), + [anon_sym_try] = ACTIONS(1995), + [sym_integer_literal] = ACTIONS(1993), + [aux_sym_string_literal_token1] = ACTIONS(1993), + [sym_char_literal] = ACTIONS(1993), + [anon_sym_true] = ACTIONS(1995), + [anon_sym_false] = ACTIONS(1995), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1995), + [sym_super] = ACTIONS(1995), + [sym_crate] = ACTIONS(1995), + [sym_metavariable] = ACTIONS(1993), + [sym__raw_string_literal_start] = ACTIONS(1993), + [sym_float_literal] = ACTIONS(1993), }, [STATE(536)] = { [sym_line_comment] = STATE(536), [sym_block_comment] = STATE(536), - [ts_builtin_sym_end] = ACTIONS(1970), - [sym_identifier] = ACTIONS(1972), - [anon_sym_SEMI] = ACTIONS(1970), - [anon_sym_macro_rules_BANG] = ACTIONS(1970), - [anon_sym_LPAREN] = ACTIONS(1970), - [anon_sym_LBRACK] = ACTIONS(1970), - [anon_sym_LBRACE] = ACTIONS(1970), - [anon_sym_RBRACE] = ACTIONS(1970), - [anon_sym_STAR] = ACTIONS(1970), - [anon_sym_u8] = ACTIONS(1972), - [anon_sym_i8] = ACTIONS(1972), - [anon_sym_u16] = ACTIONS(1972), - [anon_sym_i16] = ACTIONS(1972), - [anon_sym_u32] = ACTIONS(1972), - [anon_sym_i32] = ACTIONS(1972), - [anon_sym_u64] = ACTIONS(1972), - [anon_sym_i64] = ACTIONS(1972), - [anon_sym_u128] = ACTIONS(1972), - [anon_sym_i128] = ACTIONS(1972), - [anon_sym_isize] = ACTIONS(1972), - [anon_sym_usize] = ACTIONS(1972), - [anon_sym_f32] = ACTIONS(1972), - [anon_sym_f64] = ACTIONS(1972), - [anon_sym_bool] = ACTIONS(1972), - [anon_sym_str] = ACTIONS(1972), - [anon_sym_char] = ACTIONS(1972), - [anon_sym_DASH] = ACTIONS(1970), - [anon_sym_BANG] = ACTIONS(1970), - [anon_sym_AMP] = ACTIONS(1970), - [anon_sym_PIPE] = ACTIONS(1970), - [anon_sym_LT] = ACTIONS(1970), - [anon_sym_DOT_DOT] = ACTIONS(1970), - [anon_sym_COLON_COLON] = ACTIONS(1970), - [anon_sym_POUND] = ACTIONS(1970), - [anon_sym_SQUOTE] = ACTIONS(1972), - [anon_sym_async] = ACTIONS(1972), - [anon_sym_break] = ACTIONS(1972), - [anon_sym_const] = ACTIONS(1972), - [anon_sym_continue] = ACTIONS(1972), - [anon_sym_default] = ACTIONS(1972), - [anon_sym_enum] = ACTIONS(1972), - [anon_sym_fn] = ACTIONS(1972), - [anon_sym_for] = ACTIONS(1972), - [anon_sym_gen] = ACTIONS(1972), - [anon_sym_if] = ACTIONS(1972), - [anon_sym_impl] = ACTIONS(1972), - [anon_sym_let] = ACTIONS(1972), - [anon_sym_loop] = ACTIONS(1972), - [anon_sym_match] = ACTIONS(1972), - [anon_sym_mod] = ACTIONS(1972), - [anon_sym_pub] = ACTIONS(1972), - [anon_sym_return] = ACTIONS(1972), - [anon_sym_static] = ACTIONS(1972), - [anon_sym_struct] = ACTIONS(1972), - [anon_sym_trait] = ACTIONS(1972), - [anon_sym_type] = ACTIONS(1972), - [anon_sym_union] = ACTIONS(1972), - [anon_sym_unsafe] = ACTIONS(1972), - [anon_sym_use] = ACTIONS(1972), - [anon_sym_while] = ACTIONS(1972), - [anon_sym_extern] = ACTIONS(1972), - [anon_sym_yield] = ACTIONS(1972), - [anon_sym_move] = ACTIONS(1972), - [anon_sym_try] = ACTIONS(1972), - [sym_integer_literal] = ACTIONS(1970), - [aux_sym_string_literal_token1] = ACTIONS(1970), - [sym_char_literal] = ACTIONS(1970), - [anon_sym_true] = ACTIONS(1972), - [anon_sym_false] = ACTIONS(1972), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1972), - [sym_super] = ACTIONS(1972), - [sym_crate] = ACTIONS(1972), - [sym_metavariable] = ACTIONS(1970), - [sym__raw_string_literal_start] = ACTIONS(1970), - [sym_float_literal] = ACTIONS(1970), + [ts_builtin_sym_end] = ACTIONS(1997), + [sym_identifier] = ACTIONS(1999), + [anon_sym_SEMI] = ACTIONS(1997), + [anon_sym_macro_rules_BANG] = ACTIONS(1997), + [anon_sym_LPAREN] = ACTIONS(1997), + [anon_sym_LBRACK] = ACTIONS(1997), + [anon_sym_LBRACE] = ACTIONS(1997), + [anon_sym_RBRACE] = ACTIONS(1997), + [anon_sym_STAR] = ACTIONS(1997), + [anon_sym_u8] = ACTIONS(1999), + [anon_sym_i8] = ACTIONS(1999), + [anon_sym_u16] = ACTIONS(1999), + [anon_sym_i16] = ACTIONS(1999), + [anon_sym_u32] = ACTIONS(1999), + [anon_sym_i32] = ACTIONS(1999), + [anon_sym_u64] = ACTIONS(1999), + [anon_sym_i64] = ACTIONS(1999), + [anon_sym_u128] = ACTIONS(1999), + [anon_sym_i128] = ACTIONS(1999), + [anon_sym_isize] = ACTIONS(1999), + [anon_sym_usize] = ACTIONS(1999), + [anon_sym_f32] = ACTIONS(1999), + [anon_sym_f64] = ACTIONS(1999), + [anon_sym_bool] = ACTIONS(1999), + [anon_sym_str] = ACTIONS(1999), + [anon_sym_char] = ACTIONS(1999), + [anon_sym_DASH] = ACTIONS(1997), + [anon_sym_BANG] = ACTIONS(1997), + [anon_sym_AMP] = ACTIONS(1997), + [anon_sym_PIPE] = ACTIONS(1997), + [anon_sym_LT] = ACTIONS(1997), + [anon_sym_DOT_DOT] = ACTIONS(1997), + [anon_sym_COLON_COLON] = ACTIONS(1997), + [anon_sym_POUND] = ACTIONS(1997), + [anon_sym_SQUOTE] = ACTIONS(1999), + [anon_sym_async] = ACTIONS(1999), + [anon_sym_break] = ACTIONS(1999), + [anon_sym_const] = ACTIONS(1999), + [anon_sym_continue] = ACTIONS(1999), + [anon_sym_default] = ACTIONS(1999), + [anon_sym_enum] = ACTIONS(1999), + [anon_sym_fn] = ACTIONS(1999), + [anon_sym_for] = ACTIONS(1999), + [anon_sym_gen] = ACTIONS(1999), + [anon_sym_if] = ACTIONS(1999), + [anon_sym_impl] = ACTIONS(1999), + [anon_sym_let] = ACTIONS(1999), + [anon_sym_loop] = ACTIONS(1999), + [anon_sym_match] = ACTIONS(1999), + [anon_sym_mod] = ACTIONS(1999), + [anon_sym_pub] = ACTIONS(1999), + [anon_sym_return] = ACTIONS(1999), + [anon_sym_static] = ACTIONS(1999), + [anon_sym_struct] = ACTIONS(1999), + [anon_sym_trait] = ACTIONS(1999), + [anon_sym_type] = ACTIONS(1999), + [anon_sym_union] = ACTIONS(1999), + [anon_sym_unsafe] = ACTIONS(1999), + [anon_sym_use] = ACTIONS(1999), + [anon_sym_while] = ACTIONS(1999), + [anon_sym_extern] = ACTIONS(1999), + [anon_sym_safe] = ACTIONS(1999), + [anon_sym_yield] = ACTIONS(1999), + [anon_sym_move] = ACTIONS(1999), + [anon_sym_try] = ACTIONS(1999), + [sym_integer_literal] = ACTIONS(1997), + [aux_sym_string_literal_token1] = ACTIONS(1997), + [sym_char_literal] = ACTIONS(1997), + [anon_sym_true] = ACTIONS(1999), + [anon_sym_false] = ACTIONS(1999), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1999), + [sym_super] = ACTIONS(1999), + [sym_crate] = ACTIONS(1999), + [sym_metavariable] = ACTIONS(1997), + [sym__raw_string_literal_start] = ACTIONS(1997), + [sym_float_literal] = ACTIONS(1997), }, [STATE(537)] = { [sym_line_comment] = STATE(537), [sym_block_comment] = STATE(537), - [ts_builtin_sym_end] = ACTIONS(1974), - [sym_identifier] = ACTIONS(1976), - [anon_sym_SEMI] = ACTIONS(1974), - [anon_sym_macro_rules_BANG] = ACTIONS(1974), - [anon_sym_LPAREN] = ACTIONS(1974), - [anon_sym_LBRACK] = ACTIONS(1974), - [anon_sym_LBRACE] = ACTIONS(1974), - [anon_sym_RBRACE] = ACTIONS(1974), - [anon_sym_STAR] = ACTIONS(1974), - [anon_sym_u8] = ACTIONS(1976), - [anon_sym_i8] = ACTIONS(1976), - [anon_sym_u16] = ACTIONS(1976), - [anon_sym_i16] = ACTIONS(1976), - [anon_sym_u32] = ACTIONS(1976), - [anon_sym_i32] = ACTIONS(1976), - [anon_sym_u64] = ACTIONS(1976), - [anon_sym_i64] = ACTIONS(1976), - [anon_sym_u128] = ACTIONS(1976), - [anon_sym_i128] = ACTIONS(1976), - [anon_sym_isize] = ACTIONS(1976), - [anon_sym_usize] = ACTIONS(1976), - [anon_sym_f32] = ACTIONS(1976), - [anon_sym_f64] = ACTIONS(1976), - [anon_sym_bool] = ACTIONS(1976), - [anon_sym_str] = ACTIONS(1976), - [anon_sym_char] = ACTIONS(1976), - [anon_sym_DASH] = ACTIONS(1974), - [anon_sym_BANG] = ACTIONS(1974), - [anon_sym_AMP] = ACTIONS(1974), - [anon_sym_PIPE] = ACTIONS(1974), - [anon_sym_LT] = ACTIONS(1974), - [anon_sym_DOT_DOT] = ACTIONS(1974), - [anon_sym_COLON_COLON] = ACTIONS(1974), - [anon_sym_POUND] = ACTIONS(1974), - [anon_sym_SQUOTE] = ACTIONS(1976), - [anon_sym_async] = ACTIONS(1976), - [anon_sym_break] = ACTIONS(1976), - [anon_sym_const] = ACTIONS(1976), - [anon_sym_continue] = ACTIONS(1976), - [anon_sym_default] = ACTIONS(1976), - [anon_sym_enum] = ACTIONS(1976), - [anon_sym_fn] = ACTIONS(1976), - [anon_sym_for] = ACTIONS(1976), - [anon_sym_gen] = ACTIONS(1976), - [anon_sym_if] = ACTIONS(1976), - [anon_sym_impl] = ACTIONS(1976), - [anon_sym_let] = ACTIONS(1976), - [anon_sym_loop] = ACTIONS(1976), - [anon_sym_match] = ACTIONS(1976), - [anon_sym_mod] = ACTIONS(1976), - [anon_sym_pub] = ACTIONS(1976), - [anon_sym_return] = ACTIONS(1976), - [anon_sym_static] = ACTIONS(1976), - [anon_sym_struct] = ACTIONS(1976), - [anon_sym_trait] = ACTIONS(1976), - [anon_sym_type] = ACTIONS(1976), - [anon_sym_union] = ACTIONS(1976), - [anon_sym_unsafe] = ACTIONS(1976), - [anon_sym_use] = ACTIONS(1976), - [anon_sym_while] = ACTIONS(1976), - [anon_sym_extern] = ACTIONS(1976), - [anon_sym_yield] = ACTIONS(1976), - [anon_sym_move] = ACTIONS(1976), - [anon_sym_try] = ACTIONS(1976), - [sym_integer_literal] = ACTIONS(1974), - [aux_sym_string_literal_token1] = ACTIONS(1974), - [sym_char_literal] = ACTIONS(1974), - [anon_sym_true] = ACTIONS(1976), - [anon_sym_false] = ACTIONS(1976), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1976), - [sym_super] = ACTIONS(1976), - [sym_crate] = ACTIONS(1976), - [sym_metavariable] = ACTIONS(1974), - [sym__raw_string_literal_start] = ACTIONS(1974), - [sym_float_literal] = ACTIONS(1974), + [ts_builtin_sym_end] = ACTIONS(2001), + [sym_identifier] = ACTIONS(2003), + [anon_sym_SEMI] = ACTIONS(2001), + [anon_sym_macro_rules_BANG] = ACTIONS(2001), + [anon_sym_LPAREN] = ACTIONS(2001), + [anon_sym_LBRACK] = ACTIONS(2001), + [anon_sym_LBRACE] = ACTIONS(2001), + [anon_sym_RBRACE] = ACTIONS(2001), + [anon_sym_STAR] = ACTIONS(2001), + [anon_sym_u8] = ACTIONS(2003), + [anon_sym_i8] = ACTIONS(2003), + [anon_sym_u16] = ACTIONS(2003), + [anon_sym_i16] = ACTIONS(2003), + [anon_sym_u32] = ACTIONS(2003), + [anon_sym_i32] = ACTIONS(2003), + [anon_sym_u64] = ACTIONS(2003), + [anon_sym_i64] = ACTIONS(2003), + [anon_sym_u128] = ACTIONS(2003), + [anon_sym_i128] = ACTIONS(2003), + [anon_sym_isize] = ACTIONS(2003), + [anon_sym_usize] = ACTIONS(2003), + [anon_sym_f32] = ACTIONS(2003), + [anon_sym_f64] = ACTIONS(2003), + [anon_sym_bool] = ACTIONS(2003), + [anon_sym_str] = ACTIONS(2003), + [anon_sym_char] = ACTIONS(2003), + [anon_sym_DASH] = ACTIONS(2001), + [anon_sym_BANG] = ACTIONS(2001), + [anon_sym_AMP] = ACTIONS(2001), + [anon_sym_PIPE] = ACTIONS(2001), + [anon_sym_LT] = ACTIONS(2001), + [anon_sym_DOT_DOT] = ACTIONS(2001), + [anon_sym_COLON_COLON] = ACTIONS(2001), + [anon_sym_POUND] = ACTIONS(2001), + [anon_sym_SQUOTE] = ACTIONS(2003), + [anon_sym_async] = ACTIONS(2003), + [anon_sym_break] = ACTIONS(2003), + [anon_sym_const] = ACTIONS(2003), + [anon_sym_continue] = ACTIONS(2003), + [anon_sym_default] = ACTIONS(2003), + [anon_sym_enum] = ACTIONS(2003), + [anon_sym_fn] = ACTIONS(2003), + [anon_sym_for] = ACTIONS(2003), + [anon_sym_gen] = ACTIONS(2003), + [anon_sym_if] = ACTIONS(2003), + [anon_sym_impl] = ACTIONS(2003), + [anon_sym_let] = ACTIONS(2003), + [anon_sym_loop] = ACTIONS(2003), + [anon_sym_match] = ACTIONS(2003), + [anon_sym_mod] = ACTIONS(2003), + [anon_sym_pub] = ACTIONS(2003), + [anon_sym_return] = ACTIONS(2003), + [anon_sym_static] = ACTIONS(2003), + [anon_sym_struct] = ACTIONS(2003), + [anon_sym_trait] = ACTIONS(2003), + [anon_sym_type] = ACTIONS(2003), + [anon_sym_union] = ACTIONS(2003), + [anon_sym_unsafe] = ACTIONS(2003), + [anon_sym_use] = ACTIONS(2003), + [anon_sym_while] = ACTIONS(2003), + [anon_sym_extern] = ACTIONS(2003), + [anon_sym_safe] = ACTIONS(2003), + [anon_sym_yield] = ACTIONS(2003), + [anon_sym_move] = ACTIONS(2003), + [anon_sym_try] = ACTIONS(2003), + [sym_integer_literal] = ACTIONS(2001), + [aux_sym_string_literal_token1] = ACTIONS(2001), + [sym_char_literal] = ACTIONS(2001), + [anon_sym_true] = ACTIONS(2003), + [anon_sym_false] = ACTIONS(2003), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(2003), + [sym_super] = ACTIONS(2003), + [sym_crate] = ACTIONS(2003), + [sym_metavariable] = ACTIONS(2001), + [sym__raw_string_literal_start] = ACTIONS(2001), + [sym_float_literal] = ACTIONS(2001), }, [STATE(538)] = { [sym_line_comment] = STATE(538), [sym_block_comment] = STATE(538), - [ts_builtin_sym_end] = ACTIONS(1978), - [sym_identifier] = ACTIONS(1980), - [anon_sym_SEMI] = ACTIONS(1978), - [anon_sym_macro_rules_BANG] = ACTIONS(1978), - [anon_sym_LPAREN] = ACTIONS(1978), - [anon_sym_LBRACK] = ACTIONS(1978), - [anon_sym_LBRACE] = ACTIONS(1978), - [anon_sym_RBRACE] = ACTIONS(1978), - [anon_sym_STAR] = ACTIONS(1978), - [anon_sym_u8] = ACTIONS(1980), - [anon_sym_i8] = ACTIONS(1980), - [anon_sym_u16] = ACTIONS(1980), - [anon_sym_i16] = ACTIONS(1980), - [anon_sym_u32] = ACTIONS(1980), - [anon_sym_i32] = ACTIONS(1980), - [anon_sym_u64] = ACTIONS(1980), - [anon_sym_i64] = ACTIONS(1980), - [anon_sym_u128] = ACTIONS(1980), - [anon_sym_i128] = ACTIONS(1980), - [anon_sym_isize] = ACTIONS(1980), - [anon_sym_usize] = ACTIONS(1980), - [anon_sym_f32] = ACTIONS(1980), - [anon_sym_f64] = ACTIONS(1980), - [anon_sym_bool] = ACTIONS(1980), - [anon_sym_str] = ACTIONS(1980), - [anon_sym_char] = ACTIONS(1980), - [anon_sym_DASH] = ACTIONS(1978), - [anon_sym_BANG] = ACTIONS(1978), - [anon_sym_AMP] = ACTIONS(1978), - [anon_sym_PIPE] = ACTIONS(1978), - [anon_sym_LT] = ACTIONS(1978), - [anon_sym_DOT_DOT] = ACTIONS(1978), - [anon_sym_COLON_COLON] = ACTIONS(1978), - [anon_sym_POUND] = ACTIONS(1978), - [anon_sym_SQUOTE] = ACTIONS(1980), - [anon_sym_async] = ACTIONS(1980), - [anon_sym_break] = ACTIONS(1980), - [anon_sym_const] = ACTIONS(1980), - [anon_sym_continue] = ACTIONS(1980), - [anon_sym_default] = ACTIONS(1980), - [anon_sym_enum] = ACTIONS(1980), - [anon_sym_fn] = ACTIONS(1980), - [anon_sym_for] = ACTIONS(1980), - [anon_sym_gen] = ACTIONS(1980), - [anon_sym_if] = ACTIONS(1980), - [anon_sym_impl] = ACTIONS(1980), - [anon_sym_let] = ACTIONS(1980), - [anon_sym_loop] = ACTIONS(1980), - [anon_sym_match] = ACTIONS(1980), - [anon_sym_mod] = ACTIONS(1980), - [anon_sym_pub] = ACTIONS(1980), - [anon_sym_return] = ACTIONS(1980), - [anon_sym_static] = ACTIONS(1980), - [anon_sym_struct] = ACTIONS(1980), - [anon_sym_trait] = ACTIONS(1980), - [anon_sym_type] = ACTIONS(1980), - [anon_sym_union] = ACTIONS(1980), - [anon_sym_unsafe] = ACTIONS(1980), - [anon_sym_use] = ACTIONS(1980), - [anon_sym_while] = ACTIONS(1980), - [anon_sym_extern] = ACTIONS(1980), - [anon_sym_yield] = ACTIONS(1980), - [anon_sym_move] = ACTIONS(1980), - [anon_sym_try] = ACTIONS(1980), - [sym_integer_literal] = ACTIONS(1978), - [aux_sym_string_literal_token1] = ACTIONS(1978), - [sym_char_literal] = ACTIONS(1978), - [anon_sym_true] = ACTIONS(1980), - [anon_sym_false] = ACTIONS(1980), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1980), - [sym_super] = ACTIONS(1980), - [sym_crate] = ACTIONS(1980), - [sym_metavariable] = ACTIONS(1978), - [sym__raw_string_literal_start] = ACTIONS(1978), - [sym_float_literal] = ACTIONS(1978), + [ts_builtin_sym_end] = ACTIONS(2005), + [sym_identifier] = ACTIONS(2007), + [anon_sym_SEMI] = ACTIONS(2005), + [anon_sym_macro_rules_BANG] = ACTIONS(2005), + [anon_sym_LPAREN] = ACTIONS(2005), + [anon_sym_LBRACK] = ACTIONS(2005), + [anon_sym_LBRACE] = ACTIONS(2005), + [anon_sym_RBRACE] = ACTIONS(2005), + [anon_sym_STAR] = ACTIONS(2005), + [anon_sym_u8] = ACTIONS(2007), + [anon_sym_i8] = ACTIONS(2007), + [anon_sym_u16] = ACTIONS(2007), + [anon_sym_i16] = ACTIONS(2007), + [anon_sym_u32] = ACTIONS(2007), + [anon_sym_i32] = ACTIONS(2007), + [anon_sym_u64] = ACTIONS(2007), + [anon_sym_i64] = ACTIONS(2007), + [anon_sym_u128] = ACTIONS(2007), + [anon_sym_i128] = ACTIONS(2007), + [anon_sym_isize] = ACTIONS(2007), + [anon_sym_usize] = ACTIONS(2007), + [anon_sym_f32] = ACTIONS(2007), + [anon_sym_f64] = ACTIONS(2007), + [anon_sym_bool] = ACTIONS(2007), + [anon_sym_str] = ACTIONS(2007), + [anon_sym_char] = ACTIONS(2007), + [anon_sym_DASH] = ACTIONS(2005), + [anon_sym_BANG] = ACTIONS(2005), + [anon_sym_AMP] = ACTIONS(2005), + [anon_sym_PIPE] = ACTIONS(2005), + [anon_sym_LT] = ACTIONS(2005), + [anon_sym_DOT_DOT] = ACTIONS(2005), + [anon_sym_COLON_COLON] = ACTIONS(2005), + [anon_sym_POUND] = ACTIONS(2005), + [anon_sym_SQUOTE] = ACTIONS(2007), + [anon_sym_async] = ACTIONS(2007), + [anon_sym_break] = ACTIONS(2007), + [anon_sym_const] = ACTIONS(2007), + [anon_sym_continue] = ACTIONS(2007), + [anon_sym_default] = ACTIONS(2007), + [anon_sym_enum] = ACTIONS(2007), + [anon_sym_fn] = ACTIONS(2007), + [anon_sym_for] = ACTIONS(2007), + [anon_sym_gen] = ACTIONS(2007), + [anon_sym_if] = ACTIONS(2007), + [anon_sym_impl] = ACTIONS(2007), + [anon_sym_let] = ACTIONS(2007), + [anon_sym_loop] = ACTIONS(2007), + [anon_sym_match] = ACTIONS(2007), + [anon_sym_mod] = ACTIONS(2007), + [anon_sym_pub] = ACTIONS(2007), + [anon_sym_return] = ACTIONS(2007), + [anon_sym_static] = ACTIONS(2007), + [anon_sym_struct] = ACTIONS(2007), + [anon_sym_trait] = ACTIONS(2007), + [anon_sym_type] = ACTIONS(2007), + [anon_sym_union] = ACTIONS(2007), + [anon_sym_unsafe] = ACTIONS(2007), + [anon_sym_use] = ACTIONS(2007), + [anon_sym_while] = ACTIONS(2007), + [anon_sym_extern] = ACTIONS(2007), + [anon_sym_safe] = ACTIONS(2007), + [anon_sym_yield] = ACTIONS(2007), + [anon_sym_move] = ACTIONS(2007), + [anon_sym_try] = ACTIONS(2007), + [sym_integer_literal] = ACTIONS(2005), + [aux_sym_string_literal_token1] = ACTIONS(2005), + [sym_char_literal] = ACTIONS(2005), + [anon_sym_true] = ACTIONS(2007), + [anon_sym_false] = ACTIONS(2007), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(2007), + [sym_super] = ACTIONS(2007), + [sym_crate] = ACTIONS(2007), + [sym_metavariable] = ACTIONS(2005), + [sym__raw_string_literal_start] = ACTIONS(2005), + [sym_float_literal] = ACTIONS(2005), }, [STATE(539)] = { [sym_line_comment] = STATE(539), [sym_block_comment] = STATE(539), - [ts_builtin_sym_end] = ACTIONS(1982), - [sym_identifier] = ACTIONS(1984), - [anon_sym_SEMI] = ACTIONS(1982), - [anon_sym_macro_rules_BANG] = ACTIONS(1982), - [anon_sym_LPAREN] = ACTIONS(1982), - [anon_sym_LBRACK] = ACTIONS(1982), - [anon_sym_LBRACE] = ACTIONS(1982), - [anon_sym_RBRACE] = ACTIONS(1982), - [anon_sym_STAR] = ACTIONS(1982), - [anon_sym_u8] = ACTIONS(1984), - [anon_sym_i8] = ACTIONS(1984), - [anon_sym_u16] = ACTIONS(1984), - [anon_sym_i16] = ACTIONS(1984), - [anon_sym_u32] = ACTIONS(1984), - [anon_sym_i32] = ACTIONS(1984), - [anon_sym_u64] = ACTIONS(1984), - [anon_sym_i64] = ACTIONS(1984), - [anon_sym_u128] = ACTIONS(1984), - [anon_sym_i128] = ACTIONS(1984), - [anon_sym_isize] = ACTIONS(1984), - [anon_sym_usize] = ACTIONS(1984), - [anon_sym_f32] = ACTIONS(1984), - [anon_sym_f64] = ACTIONS(1984), - [anon_sym_bool] = ACTIONS(1984), - [anon_sym_str] = ACTIONS(1984), - [anon_sym_char] = ACTIONS(1984), - [anon_sym_DASH] = ACTIONS(1982), - [anon_sym_BANG] = ACTIONS(1982), - [anon_sym_AMP] = ACTIONS(1982), - [anon_sym_PIPE] = ACTIONS(1982), - [anon_sym_LT] = ACTIONS(1982), - [anon_sym_DOT_DOT] = ACTIONS(1982), - [anon_sym_COLON_COLON] = ACTIONS(1982), - [anon_sym_POUND] = ACTIONS(1982), - [anon_sym_SQUOTE] = ACTIONS(1984), - [anon_sym_async] = ACTIONS(1984), - [anon_sym_break] = ACTIONS(1984), - [anon_sym_const] = ACTIONS(1984), - [anon_sym_continue] = ACTIONS(1984), - [anon_sym_default] = ACTIONS(1984), - [anon_sym_enum] = ACTIONS(1984), - [anon_sym_fn] = ACTIONS(1984), - [anon_sym_for] = ACTIONS(1984), - [anon_sym_gen] = ACTIONS(1984), - [anon_sym_if] = ACTIONS(1984), - [anon_sym_impl] = ACTIONS(1984), - [anon_sym_let] = ACTIONS(1984), - [anon_sym_loop] = ACTIONS(1984), - [anon_sym_match] = ACTIONS(1984), - [anon_sym_mod] = ACTIONS(1984), - [anon_sym_pub] = ACTIONS(1984), - [anon_sym_return] = ACTIONS(1984), - [anon_sym_static] = ACTIONS(1984), - [anon_sym_struct] = ACTIONS(1984), - [anon_sym_trait] = ACTIONS(1984), - [anon_sym_type] = ACTIONS(1984), - [anon_sym_union] = ACTIONS(1984), - [anon_sym_unsafe] = ACTIONS(1984), - [anon_sym_use] = ACTIONS(1984), - [anon_sym_while] = ACTIONS(1984), - [anon_sym_extern] = ACTIONS(1984), - [anon_sym_yield] = ACTIONS(1984), - [anon_sym_move] = ACTIONS(1984), - [anon_sym_try] = ACTIONS(1984), - [sym_integer_literal] = ACTIONS(1982), - [aux_sym_string_literal_token1] = ACTIONS(1982), - [sym_char_literal] = ACTIONS(1982), - [anon_sym_true] = ACTIONS(1984), - [anon_sym_false] = ACTIONS(1984), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1984), - [sym_super] = ACTIONS(1984), - [sym_crate] = ACTIONS(1984), - [sym_metavariable] = ACTIONS(1982), - [sym__raw_string_literal_start] = ACTIONS(1982), - [sym_float_literal] = ACTIONS(1982), + [ts_builtin_sym_end] = ACTIONS(2009), + [sym_identifier] = ACTIONS(2011), + [anon_sym_SEMI] = ACTIONS(2009), + [anon_sym_macro_rules_BANG] = ACTIONS(2009), + [anon_sym_LPAREN] = ACTIONS(2009), + [anon_sym_LBRACK] = ACTIONS(2009), + [anon_sym_LBRACE] = ACTIONS(2009), + [anon_sym_RBRACE] = ACTIONS(2009), + [anon_sym_STAR] = ACTIONS(2009), + [anon_sym_u8] = ACTIONS(2011), + [anon_sym_i8] = ACTIONS(2011), + [anon_sym_u16] = ACTIONS(2011), + [anon_sym_i16] = ACTIONS(2011), + [anon_sym_u32] = ACTIONS(2011), + [anon_sym_i32] = ACTIONS(2011), + [anon_sym_u64] = ACTIONS(2011), + [anon_sym_i64] = ACTIONS(2011), + [anon_sym_u128] = ACTIONS(2011), + [anon_sym_i128] = ACTIONS(2011), + [anon_sym_isize] = ACTIONS(2011), + [anon_sym_usize] = ACTIONS(2011), + [anon_sym_f32] = ACTIONS(2011), + [anon_sym_f64] = ACTIONS(2011), + [anon_sym_bool] = ACTIONS(2011), + [anon_sym_str] = ACTIONS(2011), + [anon_sym_char] = ACTIONS(2011), + [anon_sym_DASH] = ACTIONS(2009), + [anon_sym_BANG] = ACTIONS(2009), + [anon_sym_AMP] = ACTIONS(2009), + [anon_sym_PIPE] = ACTIONS(2009), + [anon_sym_LT] = ACTIONS(2009), + [anon_sym_DOT_DOT] = ACTIONS(2009), + [anon_sym_COLON_COLON] = ACTIONS(2009), + [anon_sym_POUND] = ACTIONS(2009), + [anon_sym_SQUOTE] = ACTIONS(2011), + [anon_sym_async] = ACTIONS(2011), + [anon_sym_break] = ACTIONS(2011), + [anon_sym_const] = ACTIONS(2011), + [anon_sym_continue] = ACTIONS(2011), + [anon_sym_default] = ACTIONS(2011), + [anon_sym_enum] = ACTIONS(2011), + [anon_sym_fn] = ACTIONS(2011), + [anon_sym_for] = ACTIONS(2011), + [anon_sym_gen] = ACTIONS(2011), + [anon_sym_if] = ACTIONS(2011), + [anon_sym_impl] = ACTIONS(2011), + [anon_sym_let] = ACTIONS(2011), + [anon_sym_loop] = ACTIONS(2011), + [anon_sym_match] = ACTIONS(2011), + [anon_sym_mod] = ACTIONS(2011), + [anon_sym_pub] = ACTIONS(2011), + [anon_sym_return] = ACTIONS(2011), + [anon_sym_static] = ACTIONS(2011), + [anon_sym_struct] = ACTIONS(2011), + [anon_sym_trait] = ACTIONS(2011), + [anon_sym_type] = ACTIONS(2011), + [anon_sym_union] = ACTIONS(2011), + [anon_sym_unsafe] = ACTIONS(2011), + [anon_sym_use] = ACTIONS(2011), + [anon_sym_while] = ACTIONS(2011), + [anon_sym_extern] = ACTIONS(2011), + [anon_sym_safe] = ACTIONS(2011), + [anon_sym_yield] = ACTIONS(2011), + [anon_sym_move] = ACTIONS(2011), + [anon_sym_try] = ACTIONS(2011), + [sym_integer_literal] = ACTIONS(2009), + [aux_sym_string_literal_token1] = ACTIONS(2009), + [sym_char_literal] = ACTIONS(2009), + [anon_sym_true] = ACTIONS(2011), + [anon_sym_false] = ACTIONS(2011), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(2011), + [sym_super] = ACTIONS(2011), + [sym_crate] = ACTIONS(2011), + [sym_metavariable] = ACTIONS(2009), + [sym__raw_string_literal_start] = ACTIONS(2009), + [sym_float_literal] = ACTIONS(2009), }, [STATE(540)] = { [sym_line_comment] = STATE(540), [sym_block_comment] = STATE(540), - [ts_builtin_sym_end] = ACTIONS(1986), - [sym_identifier] = ACTIONS(1988), - [anon_sym_SEMI] = ACTIONS(1986), - [anon_sym_macro_rules_BANG] = ACTIONS(1986), - [anon_sym_LPAREN] = ACTIONS(1986), - [anon_sym_LBRACK] = ACTIONS(1986), - [anon_sym_LBRACE] = ACTIONS(1986), - [anon_sym_RBRACE] = ACTIONS(1986), - [anon_sym_STAR] = ACTIONS(1986), - [anon_sym_u8] = ACTIONS(1988), - [anon_sym_i8] = ACTIONS(1988), - [anon_sym_u16] = ACTIONS(1988), - [anon_sym_i16] = ACTIONS(1988), - [anon_sym_u32] = ACTIONS(1988), - [anon_sym_i32] = ACTIONS(1988), - [anon_sym_u64] = ACTIONS(1988), - [anon_sym_i64] = ACTIONS(1988), - [anon_sym_u128] = ACTIONS(1988), - [anon_sym_i128] = ACTIONS(1988), - [anon_sym_isize] = ACTIONS(1988), - [anon_sym_usize] = ACTIONS(1988), - [anon_sym_f32] = ACTIONS(1988), - [anon_sym_f64] = ACTIONS(1988), - [anon_sym_bool] = ACTIONS(1988), - [anon_sym_str] = ACTIONS(1988), - [anon_sym_char] = ACTIONS(1988), - [anon_sym_DASH] = ACTIONS(1986), - [anon_sym_BANG] = ACTIONS(1986), - [anon_sym_AMP] = ACTIONS(1986), - [anon_sym_PIPE] = ACTIONS(1986), - [anon_sym_LT] = ACTIONS(1986), - [anon_sym_DOT_DOT] = ACTIONS(1986), - [anon_sym_COLON_COLON] = ACTIONS(1986), - [anon_sym_POUND] = ACTIONS(1986), - [anon_sym_SQUOTE] = ACTIONS(1988), - [anon_sym_async] = ACTIONS(1988), - [anon_sym_break] = ACTIONS(1988), - [anon_sym_const] = ACTIONS(1988), - [anon_sym_continue] = ACTIONS(1988), - [anon_sym_default] = ACTIONS(1988), - [anon_sym_enum] = ACTIONS(1988), - [anon_sym_fn] = ACTIONS(1988), - [anon_sym_for] = ACTIONS(1988), - [anon_sym_gen] = ACTIONS(1988), - [anon_sym_if] = ACTIONS(1988), - [anon_sym_impl] = ACTIONS(1988), - [anon_sym_let] = ACTIONS(1988), - [anon_sym_loop] = ACTIONS(1988), - [anon_sym_match] = ACTIONS(1988), - [anon_sym_mod] = ACTIONS(1988), - [anon_sym_pub] = ACTIONS(1988), - [anon_sym_return] = ACTIONS(1988), - [anon_sym_static] = ACTIONS(1988), - [anon_sym_struct] = ACTIONS(1988), - [anon_sym_trait] = ACTIONS(1988), - [anon_sym_type] = ACTIONS(1988), - [anon_sym_union] = ACTIONS(1988), - [anon_sym_unsafe] = ACTIONS(1988), - [anon_sym_use] = ACTIONS(1988), - [anon_sym_while] = ACTIONS(1988), - [anon_sym_extern] = ACTIONS(1988), - [anon_sym_yield] = ACTIONS(1988), - [anon_sym_move] = ACTIONS(1988), - [anon_sym_try] = ACTIONS(1988), - [sym_integer_literal] = ACTIONS(1986), - [aux_sym_string_literal_token1] = ACTIONS(1986), - [sym_char_literal] = ACTIONS(1986), - [anon_sym_true] = ACTIONS(1988), - [anon_sym_false] = ACTIONS(1988), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1988), - [sym_super] = ACTIONS(1988), - [sym_crate] = ACTIONS(1988), - [sym_metavariable] = ACTIONS(1986), - [sym__raw_string_literal_start] = ACTIONS(1986), - [sym_float_literal] = ACTIONS(1986), + [ts_builtin_sym_end] = ACTIONS(2013), + [sym_identifier] = ACTIONS(2015), + [anon_sym_SEMI] = ACTIONS(2013), + [anon_sym_macro_rules_BANG] = ACTIONS(2013), + [anon_sym_LPAREN] = ACTIONS(2013), + [anon_sym_LBRACK] = ACTIONS(2013), + [anon_sym_LBRACE] = ACTIONS(2013), + [anon_sym_RBRACE] = ACTIONS(2013), + [anon_sym_STAR] = ACTIONS(2013), + [anon_sym_u8] = ACTIONS(2015), + [anon_sym_i8] = ACTIONS(2015), + [anon_sym_u16] = ACTIONS(2015), + [anon_sym_i16] = ACTIONS(2015), + [anon_sym_u32] = ACTIONS(2015), + [anon_sym_i32] = ACTIONS(2015), + [anon_sym_u64] = ACTIONS(2015), + [anon_sym_i64] = ACTIONS(2015), + [anon_sym_u128] = ACTIONS(2015), + [anon_sym_i128] = ACTIONS(2015), + [anon_sym_isize] = ACTIONS(2015), + [anon_sym_usize] = ACTIONS(2015), + [anon_sym_f32] = ACTIONS(2015), + [anon_sym_f64] = ACTIONS(2015), + [anon_sym_bool] = ACTIONS(2015), + [anon_sym_str] = ACTIONS(2015), + [anon_sym_char] = ACTIONS(2015), + [anon_sym_DASH] = ACTIONS(2013), + [anon_sym_BANG] = ACTIONS(2013), + [anon_sym_AMP] = ACTIONS(2013), + [anon_sym_PIPE] = ACTIONS(2013), + [anon_sym_LT] = ACTIONS(2013), + [anon_sym_DOT_DOT] = ACTIONS(2013), + [anon_sym_COLON_COLON] = ACTIONS(2013), + [anon_sym_POUND] = ACTIONS(2013), + [anon_sym_SQUOTE] = ACTIONS(2015), + [anon_sym_async] = ACTIONS(2015), + [anon_sym_break] = ACTIONS(2015), + [anon_sym_const] = ACTIONS(2015), + [anon_sym_continue] = ACTIONS(2015), + [anon_sym_default] = ACTIONS(2015), + [anon_sym_enum] = ACTIONS(2015), + [anon_sym_fn] = ACTIONS(2015), + [anon_sym_for] = ACTIONS(2015), + [anon_sym_gen] = ACTIONS(2015), + [anon_sym_if] = ACTIONS(2015), + [anon_sym_impl] = ACTIONS(2015), + [anon_sym_let] = ACTIONS(2015), + [anon_sym_loop] = ACTIONS(2015), + [anon_sym_match] = ACTIONS(2015), + [anon_sym_mod] = ACTIONS(2015), + [anon_sym_pub] = ACTIONS(2015), + [anon_sym_return] = ACTIONS(2015), + [anon_sym_static] = ACTIONS(2015), + [anon_sym_struct] = ACTIONS(2015), + [anon_sym_trait] = ACTIONS(2015), + [anon_sym_type] = ACTIONS(2015), + [anon_sym_union] = ACTIONS(2015), + [anon_sym_unsafe] = ACTIONS(2015), + [anon_sym_use] = ACTIONS(2015), + [anon_sym_while] = ACTIONS(2015), + [anon_sym_extern] = ACTIONS(2015), + [anon_sym_safe] = ACTIONS(2015), + [anon_sym_yield] = ACTIONS(2015), + [anon_sym_move] = ACTIONS(2015), + [anon_sym_try] = ACTIONS(2015), + [sym_integer_literal] = ACTIONS(2013), + [aux_sym_string_literal_token1] = ACTIONS(2013), + [sym_char_literal] = ACTIONS(2013), + [anon_sym_true] = ACTIONS(2015), + [anon_sym_false] = ACTIONS(2015), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(2015), + [sym_super] = ACTIONS(2015), + [sym_crate] = ACTIONS(2015), + [sym_metavariable] = ACTIONS(2013), + [sym__raw_string_literal_start] = ACTIONS(2013), + [sym_float_literal] = ACTIONS(2013), }, [STATE(541)] = { [sym_line_comment] = STATE(541), [sym_block_comment] = STATE(541), - [ts_builtin_sym_end] = ACTIONS(1990), - [sym_identifier] = ACTIONS(1992), - [anon_sym_SEMI] = ACTIONS(1990), - [anon_sym_macro_rules_BANG] = ACTIONS(1990), - [anon_sym_LPAREN] = ACTIONS(1990), - [anon_sym_LBRACK] = ACTIONS(1990), - [anon_sym_LBRACE] = ACTIONS(1990), - [anon_sym_RBRACE] = ACTIONS(1990), - [anon_sym_STAR] = ACTIONS(1990), - [anon_sym_u8] = ACTIONS(1992), - [anon_sym_i8] = ACTIONS(1992), - [anon_sym_u16] = ACTIONS(1992), - [anon_sym_i16] = ACTIONS(1992), - [anon_sym_u32] = ACTIONS(1992), - [anon_sym_i32] = ACTIONS(1992), - [anon_sym_u64] = ACTIONS(1992), - [anon_sym_i64] = ACTIONS(1992), - [anon_sym_u128] = ACTIONS(1992), - [anon_sym_i128] = ACTIONS(1992), - [anon_sym_isize] = ACTIONS(1992), - [anon_sym_usize] = ACTIONS(1992), - [anon_sym_f32] = ACTIONS(1992), - [anon_sym_f64] = ACTIONS(1992), - [anon_sym_bool] = ACTIONS(1992), - [anon_sym_str] = ACTIONS(1992), - [anon_sym_char] = ACTIONS(1992), - [anon_sym_DASH] = ACTIONS(1990), - [anon_sym_BANG] = ACTIONS(1990), - [anon_sym_AMP] = ACTIONS(1990), - [anon_sym_PIPE] = ACTIONS(1990), - [anon_sym_LT] = ACTIONS(1990), - [anon_sym_DOT_DOT] = ACTIONS(1990), - [anon_sym_COLON_COLON] = ACTIONS(1990), - [anon_sym_POUND] = ACTIONS(1990), - [anon_sym_SQUOTE] = ACTIONS(1992), - [anon_sym_async] = ACTIONS(1992), - [anon_sym_break] = ACTIONS(1992), - [anon_sym_const] = ACTIONS(1992), - [anon_sym_continue] = ACTIONS(1992), - [anon_sym_default] = ACTIONS(1992), - [anon_sym_enum] = ACTIONS(1992), - [anon_sym_fn] = ACTIONS(1992), - [anon_sym_for] = ACTIONS(1992), - [anon_sym_gen] = ACTIONS(1992), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_impl] = ACTIONS(1992), - [anon_sym_let] = ACTIONS(1992), - [anon_sym_loop] = ACTIONS(1992), - [anon_sym_match] = ACTIONS(1992), - [anon_sym_mod] = ACTIONS(1992), - [anon_sym_pub] = ACTIONS(1992), - [anon_sym_return] = ACTIONS(1992), - [anon_sym_static] = ACTIONS(1992), - [anon_sym_struct] = ACTIONS(1992), - [anon_sym_trait] = ACTIONS(1992), - [anon_sym_type] = ACTIONS(1992), - [anon_sym_union] = ACTIONS(1992), - [anon_sym_unsafe] = ACTIONS(1992), - [anon_sym_use] = ACTIONS(1992), - [anon_sym_while] = ACTIONS(1992), - [anon_sym_extern] = ACTIONS(1992), - [anon_sym_yield] = ACTIONS(1992), - [anon_sym_move] = ACTIONS(1992), - [anon_sym_try] = ACTIONS(1992), - [sym_integer_literal] = ACTIONS(1990), - [aux_sym_string_literal_token1] = ACTIONS(1990), - [sym_char_literal] = ACTIONS(1990), - [anon_sym_true] = ACTIONS(1992), - [anon_sym_false] = ACTIONS(1992), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1992), - [sym_super] = ACTIONS(1992), - [sym_crate] = ACTIONS(1992), - [sym_metavariable] = ACTIONS(1990), - [sym__raw_string_literal_start] = ACTIONS(1990), - [sym_float_literal] = ACTIONS(1990), + [ts_builtin_sym_end] = ACTIONS(2017), + [sym_identifier] = ACTIONS(2019), + [anon_sym_SEMI] = ACTIONS(2017), + [anon_sym_macro_rules_BANG] = ACTIONS(2017), + [anon_sym_LPAREN] = ACTIONS(2017), + [anon_sym_LBRACK] = ACTIONS(2017), + [anon_sym_LBRACE] = ACTIONS(2017), + [anon_sym_RBRACE] = ACTIONS(2017), + [anon_sym_STAR] = ACTIONS(2017), + [anon_sym_u8] = ACTIONS(2019), + [anon_sym_i8] = ACTIONS(2019), + [anon_sym_u16] = ACTIONS(2019), + [anon_sym_i16] = ACTIONS(2019), + [anon_sym_u32] = ACTIONS(2019), + [anon_sym_i32] = ACTIONS(2019), + [anon_sym_u64] = ACTIONS(2019), + [anon_sym_i64] = ACTIONS(2019), + [anon_sym_u128] = ACTIONS(2019), + [anon_sym_i128] = ACTIONS(2019), + [anon_sym_isize] = ACTIONS(2019), + [anon_sym_usize] = ACTIONS(2019), + [anon_sym_f32] = ACTIONS(2019), + [anon_sym_f64] = ACTIONS(2019), + [anon_sym_bool] = ACTIONS(2019), + [anon_sym_str] = ACTIONS(2019), + [anon_sym_char] = ACTIONS(2019), + [anon_sym_DASH] = ACTIONS(2017), + [anon_sym_BANG] = ACTIONS(2017), + [anon_sym_AMP] = ACTIONS(2017), + [anon_sym_PIPE] = ACTIONS(2017), + [anon_sym_LT] = ACTIONS(2017), + [anon_sym_DOT_DOT] = ACTIONS(2017), + [anon_sym_COLON_COLON] = ACTIONS(2017), + [anon_sym_POUND] = ACTIONS(2017), + [anon_sym_SQUOTE] = ACTIONS(2019), + [anon_sym_async] = ACTIONS(2019), + [anon_sym_break] = ACTIONS(2019), + [anon_sym_const] = ACTIONS(2019), + [anon_sym_continue] = ACTIONS(2019), + [anon_sym_default] = ACTIONS(2019), + [anon_sym_enum] = ACTIONS(2019), + [anon_sym_fn] = ACTIONS(2019), + [anon_sym_for] = ACTIONS(2019), + [anon_sym_gen] = ACTIONS(2019), + [anon_sym_if] = ACTIONS(2019), + [anon_sym_impl] = ACTIONS(2019), + [anon_sym_let] = ACTIONS(2019), + [anon_sym_loop] = ACTIONS(2019), + [anon_sym_match] = ACTIONS(2019), + [anon_sym_mod] = ACTIONS(2019), + [anon_sym_pub] = ACTIONS(2019), + [anon_sym_return] = ACTIONS(2019), + [anon_sym_static] = ACTIONS(2019), + [anon_sym_struct] = ACTIONS(2019), + [anon_sym_trait] = ACTIONS(2019), + [anon_sym_type] = ACTIONS(2019), + [anon_sym_union] = ACTIONS(2019), + [anon_sym_unsafe] = ACTIONS(2019), + [anon_sym_use] = ACTIONS(2019), + [anon_sym_while] = ACTIONS(2019), + [anon_sym_extern] = ACTIONS(2019), + [anon_sym_safe] = ACTIONS(2019), + [anon_sym_yield] = ACTIONS(2019), + [anon_sym_move] = ACTIONS(2019), + [anon_sym_try] = ACTIONS(2019), + [sym_integer_literal] = ACTIONS(2017), + [aux_sym_string_literal_token1] = ACTIONS(2017), + [sym_char_literal] = ACTIONS(2017), + [anon_sym_true] = ACTIONS(2019), + [anon_sym_false] = ACTIONS(2019), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(2019), + [sym_super] = ACTIONS(2019), + [sym_crate] = ACTIONS(2019), + [sym_metavariable] = ACTIONS(2017), + [sym__raw_string_literal_start] = ACTIONS(2017), + [sym_float_literal] = ACTIONS(2017), }, [STATE(542)] = { [sym_line_comment] = STATE(542), [sym_block_comment] = STATE(542), - [ts_builtin_sym_end] = ACTIONS(1994), - [sym_identifier] = ACTIONS(1996), - [anon_sym_SEMI] = ACTIONS(1994), - [anon_sym_macro_rules_BANG] = ACTIONS(1994), - [anon_sym_LPAREN] = ACTIONS(1994), - [anon_sym_LBRACK] = ACTIONS(1994), - [anon_sym_LBRACE] = ACTIONS(1994), - [anon_sym_RBRACE] = ACTIONS(1994), - [anon_sym_STAR] = ACTIONS(1994), - [anon_sym_u8] = ACTIONS(1996), - [anon_sym_i8] = ACTIONS(1996), - [anon_sym_u16] = ACTIONS(1996), - [anon_sym_i16] = ACTIONS(1996), - [anon_sym_u32] = ACTIONS(1996), - [anon_sym_i32] = ACTIONS(1996), - [anon_sym_u64] = ACTIONS(1996), - [anon_sym_i64] = ACTIONS(1996), - [anon_sym_u128] = ACTIONS(1996), - [anon_sym_i128] = ACTIONS(1996), - [anon_sym_isize] = ACTIONS(1996), - [anon_sym_usize] = ACTIONS(1996), - [anon_sym_f32] = ACTIONS(1996), - [anon_sym_f64] = ACTIONS(1996), - [anon_sym_bool] = ACTIONS(1996), - [anon_sym_str] = ACTIONS(1996), - [anon_sym_char] = ACTIONS(1996), - [anon_sym_DASH] = ACTIONS(1994), - [anon_sym_BANG] = ACTIONS(1994), - [anon_sym_AMP] = ACTIONS(1994), - [anon_sym_PIPE] = ACTIONS(1994), - [anon_sym_LT] = ACTIONS(1994), - [anon_sym_DOT_DOT] = ACTIONS(1994), - [anon_sym_COLON_COLON] = ACTIONS(1994), - [anon_sym_POUND] = ACTIONS(1994), - [anon_sym_SQUOTE] = ACTIONS(1996), - [anon_sym_async] = ACTIONS(1996), - [anon_sym_break] = ACTIONS(1996), - [anon_sym_const] = ACTIONS(1996), - [anon_sym_continue] = ACTIONS(1996), - [anon_sym_default] = ACTIONS(1996), - [anon_sym_enum] = ACTIONS(1996), - [anon_sym_fn] = ACTIONS(1996), - [anon_sym_for] = ACTIONS(1996), - [anon_sym_gen] = ACTIONS(1996), - [anon_sym_if] = ACTIONS(1996), - [anon_sym_impl] = ACTIONS(1996), - [anon_sym_let] = ACTIONS(1996), - [anon_sym_loop] = ACTIONS(1996), - [anon_sym_match] = ACTIONS(1996), - [anon_sym_mod] = ACTIONS(1996), - [anon_sym_pub] = ACTIONS(1996), - [anon_sym_return] = ACTIONS(1996), - [anon_sym_static] = ACTIONS(1996), - [anon_sym_struct] = ACTIONS(1996), - [anon_sym_trait] = ACTIONS(1996), - [anon_sym_type] = ACTIONS(1996), - [anon_sym_union] = ACTIONS(1996), - [anon_sym_unsafe] = ACTIONS(1996), - [anon_sym_use] = ACTIONS(1996), - [anon_sym_while] = ACTIONS(1996), - [anon_sym_extern] = ACTIONS(1996), - [anon_sym_yield] = ACTIONS(1996), - [anon_sym_move] = ACTIONS(1996), - [anon_sym_try] = ACTIONS(1996), - [sym_integer_literal] = ACTIONS(1994), - [aux_sym_string_literal_token1] = ACTIONS(1994), - [sym_char_literal] = ACTIONS(1994), - [anon_sym_true] = ACTIONS(1996), - [anon_sym_false] = ACTIONS(1996), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1996), - [sym_super] = ACTIONS(1996), - [sym_crate] = ACTIONS(1996), - [sym_metavariable] = ACTIONS(1994), - [sym__raw_string_literal_start] = ACTIONS(1994), - [sym_float_literal] = ACTIONS(1994), + [ts_builtin_sym_end] = ACTIONS(2021), + [sym_identifier] = ACTIONS(2023), + [anon_sym_SEMI] = ACTIONS(2021), + [anon_sym_macro_rules_BANG] = ACTIONS(2021), + [anon_sym_LPAREN] = ACTIONS(2021), + [anon_sym_LBRACK] = ACTIONS(2021), + [anon_sym_LBRACE] = ACTIONS(2021), + [anon_sym_RBRACE] = ACTIONS(2021), + [anon_sym_STAR] = ACTIONS(2021), + [anon_sym_u8] = ACTIONS(2023), + [anon_sym_i8] = ACTIONS(2023), + [anon_sym_u16] = ACTIONS(2023), + [anon_sym_i16] = ACTIONS(2023), + [anon_sym_u32] = ACTIONS(2023), + [anon_sym_i32] = ACTIONS(2023), + [anon_sym_u64] = ACTIONS(2023), + [anon_sym_i64] = ACTIONS(2023), + [anon_sym_u128] = ACTIONS(2023), + [anon_sym_i128] = ACTIONS(2023), + [anon_sym_isize] = ACTIONS(2023), + [anon_sym_usize] = ACTIONS(2023), + [anon_sym_f32] = ACTIONS(2023), + [anon_sym_f64] = ACTIONS(2023), + [anon_sym_bool] = ACTIONS(2023), + [anon_sym_str] = ACTIONS(2023), + [anon_sym_char] = ACTIONS(2023), + [anon_sym_DASH] = ACTIONS(2021), + [anon_sym_BANG] = ACTIONS(2021), + [anon_sym_AMP] = ACTIONS(2021), + [anon_sym_PIPE] = ACTIONS(2021), + [anon_sym_LT] = ACTIONS(2021), + [anon_sym_DOT_DOT] = ACTIONS(2021), + [anon_sym_COLON_COLON] = ACTIONS(2021), + [anon_sym_POUND] = ACTIONS(2021), + [anon_sym_SQUOTE] = ACTIONS(2023), + [anon_sym_async] = ACTIONS(2023), + [anon_sym_break] = ACTIONS(2023), + [anon_sym_const] = ACTIONS(2023), + [anon_sym_continue] = ACTIONS(2023), + [anon_sym_default] = ACTIONS(2023), + [anon_sym_enum] = ACTIONS(2023), + [anon_sym_fn] = ACTIONS(2023), + [anon_sym_for] = ACTIONS(2023), + [anon_sym_gen] = ACTIONS(2023), + [anon_sym_if] = ACTIONS(2023), + [anon_sym_impl] = ACTIONS(2023), + [anon_sym_let] = ACTIONS(2023), + [anon_sym_loop] = ACTIONS(2023), + [anon_sym_match] = ACTIONS(2023), + [anon_sym_mod] = ACTIONS(2023), + [anon_sym_pub] = ACTIONS(2023), + [anon_sym_return] = ACTIONS(2023), + [anon_sym_static] = ACTIONS(2023), + [anon_sym_struct] = ACTIONS(2023), + [anon_sym_trait] = ACTIONS(2023), + [anon_sym_type] = ACTIONS(2023), + [anon_sym_union] = ACTIONS(2023), + [anon_sym_unsafe] = ACTIONS(2023), + [anon_sym_use] = ACTIONS(2023), + [anon_sym_while] = ACTIONS(2023), + [anon_sym_extern] = ACTIONS(2023), + [anon_sym_safe] = ACTIONS(2023), + [anon_sym_yield] = ACTIONS(2023), + [anon_sym_move] = ACTIONS(2023), + [anon_sym_try] = ACTIONS(2023), + [sym_integer_literal] = ACTIONS(2021), + [aux_sym_string_literal_token1] = ACTIONS(2021), + [sym_char_literal] = ACTIONS(2021), + [anon_sym_true] = ACTIONS(2023), + [anon_sym_false] = ACTIONS(2023), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(2023), + [sym_super] = ACTIONS(2023), + [sym_crate] = ACTIONS(2023), + [sym_metavariable] = ACTIONS(2021), + [sym__raw_string_literal_start] = ACTIONS(2021), + [sym_float_literal] = ACTIONS(2021), }, [STATE(543)] = { [sym_line_comment] = STATE(543), [sym_block_comment] = STATE(543), - [ts_builtin_sym_end] = ACTIONS(1998), - [sym_identifier] = ACTIONS(2000), - [anon_sym_SEMI] = ACTIONS(1998), - [anon_sym_macro_rules_BANG] = ACTIONS(1998), - [anon_sym_LPAREN] = ACTIONS(1998), - [anon_sym_LBRACK] = ACTIONS(1998), - [anon_sym_LBRACE] = ACTIONS(1998), - [anon_sym_RBRACE] = ACTIONS(1998), - [anon_sym_STAR] = ACTIONS(1998), - [anon_sym_u8] = ACTIONS(2000), - [anon_sym_i8] = ACTIONS(2000), - [anon_sym_u16] = ACTIONS(2000), - [anon_sym_i16] = ACTIONS(2000), - [anon_sym_u32] = ACTIONS(2000), - [anon_sym_i32] = ACTIONS(2000), - [anon_sym_u64] = ACTIONS(2000), - [anon_sym_i64] = ACTIONS(2000), - [anon_sym_u128] = ACTIONS(2000), - [anon_sym_i128] = ACTIONS(2000), - [anon_sym_isize] = ACTIONS(2000), - [anon_sym_usize] = ACTIONS(2000), - [anon_sym_f32] = ACTIONS(2000), - [anon_sym_f64] = ACTIONS(2000), - [anon_sym_bool] = ACTIONS(2000), - [anon_sym_str] = ACTIONS(2000), - [anon_sym_char] = ACTIONS(2000), - [anon_sym_DASH] = ACTIONS(1998), - [anon_sym_BANG] = ACTIONS(1998), - [anon_sym_AMP] = ACTIONS(1998), - [anon_sym_PIPE] = ACTIONS(1998), - [anon_sym_LT] = ACTIONS(1998), - [anon_sym_DOT_DOT] = ACTIONS(1998), - [anon_sym_COLON_COLON] = ACTIONS(1998), - [anon_sym_POUND] = ACTIONS(1998), - [anon_sym_SQUOTE] = ACTIONS(2000), - [anon_sym_async] = ACTIONS(2000), - [anon_sym_break] = ACTIONS(2000), - [anon_sym_const] = ACTIONS(2000), - [anon_sym_continue] = ACTIONS(2000), - [anon_sym_default] = ACTIONS(2000), - [anon_sym_enum] = ACTIONS(2000), - [anon_sym_fn] = ACTIONS(2000), - [anon_sym_for] = ACTIONS(2000), - [anon_sym_gen] = ACTIONS(2000), - [anon_sym_if] = ACTIONS(2000), - [anon_sym_impl] = ACTIONS(2000), - [anon_sym_let] = ACTIONS(2000), - [anon_sym_loop] = ACTIONS(2000), - [anon_sym_match] = ACTIONS(2000), - [anon_sym_mod] = ACTIONS(2000), - [anon_sym_pub] = ACTIONS(2000), - [anon_sym_return] = ACTIONS(2000), - [anon_sym_static] = ACTIONS(2000), - [anon_sym_struct] = ACTIONS(2000), - [anon_sym_trait] = ACTIONS(2000), - [anon_sym_type] = ACTIONS(2000), - [anon_sym_union] = ACTIONS(2000), - [anon_sym_unsafe] = ACTIONS(2000), - [anon_sym_use] = ACTIONS(2000), - [anon_sym_while] = ACTIONS(2000), - [anon_sym_extern] = ACTIONS(2000), - [anon_sym_yield] = ACTIONS(2000), - [anon_sym_move] = ACTIONS(2000), - [anon_sym_try] = ACTIONS(2000), - [sym_integer_literal] = ACTIONS(1998), - [aux_sym_string_literal_token1] = ACTIONS(1998), - [sym_char_literal] = ACTIONS(1998), - [anon_sym_true] = ACTIONS(2000), - [anon_sym_false] = ACTIONS(2000), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2000), - [sym_super] = ACTIONS(2000), - [sym_crate] = ACTIONS(2000), - [sym_metavariable] = ACTIONS(1998), - [sym__raw_string_literal_start] = ACTIONS(1998), - [sym_float_literal] = ACTIONS(1998), + [ts_builtin_sym_end] = ACTIONS(2025), + [sym_identifier] = ACTIONS(2027), + [anon_sym_SEMI] = ACTIONS(2025), + [anon_sym_macro_rules_BANG] = ACTIONS(2025), + [anon_sym_LPAREN] = ACTIONS(2025), + [anon_sym_LBRACK] = ACTIONS(2025), + [anon_sym_LBRACE] = ACTIONS(2025), + [anon_sym_RBRACE] = ACTIONS(2025), + [anon_sym_STAR] = ACTIONS(2025), + [anon_sym_u8] = ACTIONS(2027), + [anon_sym_i8] = ACTIONS(2027), + [anon_sym_u16] = ACTIONS(2027), + [anon_sym_i16] = ACTIONS(2027), + [anon_sym_u32] = ACTIONS(2027), + [anon_sym_i32] = ACTIONS(2027), + [anon_sym_u64] = ACTIONS(2027), + [anon_sym_i64] = ACTIONS(2027), + [anon_sym_u128] = ACTIONS(2027), + [anon_sym_i128] = ACTIONS(2027), + [anon_sym_isize] = ACTIONS(2027), + [anon_sym_usize] = ACTIONS(2027), + [anon_sym_f32] = ACTIONS(2027), + [anon_sym_f64] = ACTIONS(2027), + [anon_sym_bool] = ACTIONS(2027), + [anon_sym_str] = ACTIONS(2027), + [anon_sym_char] = ACTIONS(2027), + [anon_sym_DASH] = ACTIONS(2025), + [anon_sym_BANG] = ACTIONS(2025), + [anon_sym_AMP] = ACTIONS(2025), + [anon_sym_PIPE] = ACTIONS(2025), + [anon_sym_LT] = ACTIONS(2025), + [anon_sym_DOT_DOT] = ACTIONS(2025), + [anon_sym_COLON_COLON] = ACTIONS(2025), + [anon_sym_POUND] = ACTIONS(2025), + [anon_sym_SQUOTE] = ACTIONS(2027), + [anon_sym_async] = ACTIONS(2027), + [anon_sym_break] = ACTIONS(2027), + [anon_sym_const] = ACTIONS(2027), + [anon_sym_continue] = ACTIONS(2027), + [anon_sym_default] = ACTIONS(2027), + [anon_sym_enum] = ACTIONS(2027), + [anon_sym_fn] = ACTIONS(2027), + [anon_sym_for] = ACTIONS(2027), + [anon_sym_gen] = ACTIONS(2027), + [anon_sym_if] = ACTIONS(2027), + [anon_sym_impl] = ACTIONS(2027), + [anon_sym_let] = ACTIONS(2027), + [anon_sym_loop] = ACTIONS(2027), + [anon_sym_match] = ACTIONS(2027), + [anon_sym_mod] = ACTIONS(2027), + [anon_sym_pub] = ACTIONS(2027), + [anon_sym_return] = ACTIONS(2027), + [anon_sym_static] = ACTIONS(2027), + [anon_sym_struct] = ACTIONS(2027), + [anon_sym_trait] = ACTIONS(2027), + [anon_sym_type] = ACTIONS(2027), + [anon_sym_union] = ACTIONS(2027), + [anon_sym_unsafe] = ACTIONS(2027), + [anon_sym_use] = ACTIONS(2027), + [anon_sym_while] = ACTIONS(2027), + [anon_sym_extern] = ACTIONS(2027), + [anon_sym_safe] = ACTIONS(2027), + [anon_sym_yield] = ACTIONS(2027), + [anon_sym_move] = ACTIONS(2027), + [anon_sym_try] = ACTIONS(2027), + [sym_integer_literal] = ACTIONS(2025), + [aux_sym_string_literal_token1] = ACTIONS(2025), + [sym_char_literal] = ACTIONS(2025), + [anon_sym_true] = ACTIONS(2027), + [anon_sym_false] = ACTIONS(2027), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(2027), + [sym_super] = ACTIONS(2027), + [sym_crate] = ACTIONS(2027), + [sym_metavariable] = ACTIONS(2025), + [sym__raw_string_literal_start] = ACTIONS(2025), + [sym_float_literal] = ACTIONS(2025), }, [STATE(544)] = { [sym_line_comment] = STATE(544), [sym_block_comment] = STATE(544), - [ts_builtin_sym_end] = ACTIONS(2002), - [sym_identifier] = ACTIONS(2004), - [anon_sym_SEMI] = ACTIONS(2002), - [anon_sym_macro_rules_BANG] = ACTIONS(2002), - [anon_sym_LPAREN] = ACTIONS(2002), - [anon_sym_LBRACK] = ACTIONS(2002), - [anon_sym_LBRACE] = ACTIONS(2002), - [anon_sym_RBRACE] = ACTIONS(2002), - [anon_sym_STAR] = ACTIONS(2002), - [anon_sym_u8] = ACTIONS(2004), - [anon_sym_i8] = ACTIONS(2004), - [anon_sym_u16] = ACTIONS(2004), - [anon_sym_i16] = ACTIONS(2004), - [anon_sym_u32] = ACTIONS(2004), - [anon_sym_i32] = ACTIONS(2004), - [anon_sym_u64] = ACTIONS(2004), - [anon_sym_i64] = ACTIONS(2004), - [anon_sym_u128] = ACTIONS(2004), - [anon_sym_i128] = ACTIONS(2004), - [anon_sym_isize] = ACTIONS(2004), - [anon_sym_usize] = ACTIONS(2004), - [anon_sym_f32] = ACTIONS(2004), - [anon_sym_f64] = ACTIONS(2004), - [anon_sym_bool] = ACTIONS(2004), - [anon_sym_str] = ACTIONS(2004), - [anon_sym_char] = ACTIONS(2004), - [anon_sym_DASH] = ACTIONS(2002), - [anon_sym_BANG] = ACTIONS(2002), - [anon_sym_AMP] = ACTIONS(2002), - [anon_sym_PIPE] = ACTIONS(2002), - [anon_sym_LT] = ACTIONS(2002), - [anon_sym_DOT_DOT] = ACTIONS(2002), - [anon_sym_COLON_COLON] = ACTIONS(2002), - [anon_sym_POUND] = ACTIONS(2002), - [anon_sym_SQUOTE] = ACTIONS(2004), - [anon_sym_async] = ACTIONS(2004), - [anon_sym_break] = ACTIONS(2004), - [anon_sym_const] = ACTIONS(2004), - [anon_sym_continue] = ACTIONS(2004), - [anon_sym_default] = ACTIONS(2004), - [anon_sym_enum] = ACTIONS(2004), - [anon_sym_fn] = ACTIONS(2004), - [anon_sym_for] = ACTIONS(2004), - [anon_sym_gen] = ACTIONS(2004), - [anon_sym_if] = ACTIONS(2004), - [anon_sym_impl] = ACTIONS(2004), - [anon_sym_let] = ACTIONS(2004), - [anon_sym_loop] = ACTIONS(2004), - [anon_sym_match] = ACTIONS(2004), - [anon_sym_mod] = ACTIONS(2004), - [anon_sym_pub] = ACTIONS(2004), - [anon_sym_return] = ACTIONS(2004), - [anon_sym_static] = ACTIONS(2004), - [anon_sym_struct] = ACTIONS(2004), - [anon_sym_trait] = ACTIONS(2004), - [anon_sym_type] = ACTIONS(2004), - [anon_sym_union] = ACTIONS(2004), - [anon_sym_unsafe] = ACTIONS(2004), - [anon_sym_use] = ACTIONS(2004), - [anon_sym_while] = ACTIONS(2004), - [anon_sym_extern] = ACTIONS(2004), - [anon_sym_yield] = ACTIONS(2004), - [anon_sym_move] = ACTIONS(2004), - [anon_sym_try] = ACTIONS(2004), - [sym_integer_literal] = ACTIONS(2002), - [aux_sym_string_literal_token1] = ACTIONS(2002), - [sym_char_literal] = ACTIONS(2002), - [anon_sym_true] = ACTIONS(2004), - [anon_sym_false] = ACTIONS(2004), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2004), - [sym_super] = ACTIONS(2004), - [sym_crate] = ACTIONS(2004), - [sym_metavariable] = ACTIONS(2002), - [sym__raw_string_literal_start] = ACTIONS(2002), - [sym_float_literal] = ACTIONS(2002), + [ts_builtin_sym_end] = ACTIONS(2029), + [sym_identifier] = ACTIONS(2031), + [anon_sym_SEMI] = ACTIONS(2029), + [anon_sym_macro_rules_BANG] = ACTIONS(2029), + [anon_sym_LPAREN] = ACTIONS(2029), + [anon_sym_LBRACK] = ACTIONS(2029), + [anon_sym_LBRACE] = ACTIONS(2029), + [anon_sym_RBRACE] = ACTIONS(2029), + [anon_sym_STAR] = ACTIONS(2029), + [anon_sym_u8] = ACTIONS(2031), + [anon_sym_i8] = ACTIONS(2031), + [anon_sym_u16] = ACTIONS(2031), + [anon_sym_i16] = ACTIONS(2031), + [anon_sym_u32] = ACTIONS(2031), + [anon_sym_i32] = ACTIONS(2031), + [anon_sym_u64] = ACTIONS(2031), + [anon_sym_i64] = ACTIONS(2031), + [anon_sym_u128] = ACTIONS(2031), + [anon_sym_i128] = ACTIONS(2031), + [anon_sym_isize] = ACTIONS(2031), + [anon_sym_usize] = ACTIONS(2031), + [anon_sym_f32] = ACTIONS(2031), + [anon_sym_f64] = ACTIONS(2031), + [anon_sym_bool] = ACTIONS(2031), + [anon_sym_str] = ACTIONS(2031), + [anon_sym_char] = ACTIONS(2031), + [anon_sym_DASH] = ACTIONS(2029), + [anon_sym_BANG] = ACTIONS(2029), + [anon_sym_AMP] = ACTIONS(2029), + [anon_sym_PIPE] = ACTIONS(2029), + [anon_sym_LT] = ACTIONS(2029), + [anon_sym_DOT_DOT] = ACTIONS(2029), + [anon_sym_COLON_COLON] = ACTIONS(2029), + [anon_sym_POUND] = ACTIONS(2029), + [anon_sym_SQUOTE] = ACTIONS(2031), + [anon_sym_async] = ACTIONS(2031), + [anon_sym_break] = ACTIONS(2031), + [anon_sym_const] = ACTIONS(2031), + [anon_sym_continue] = ACTIONS(2031), + [anon_sym_default] = ACTIONS(2031), + [anon_sym_enum] = ACTIONS(2031), + [anon_sym_fn] = ACTIONS(2031), + [anon_sym_for] = ACTIONS(2031), + [anon_sym_gen] = ACTIONS(2031), + [anon_sym_if] = ACTIONS(2031), + [anon_sym_impl] = ACTIONS(2031), + [anon_sym_let] = ACTIONS(2031), + [anon_sym_loop] = ACTIONS(2031), + [anon_sym_match] = ACTIONS(2031), + [anon_sym_mod] = ACTIONS(2031), + [anon_sym_pub] = ACTIONS(2031), + [anon_sym_return] = ACTIONS(2031), + [anon_sym_static] = ACTIONS(2031), + [anon_sym_struct] = ACTIONS(2031), + [anon_sym_trait] = ACTIONS(2031), + [anon_sym_type] = ACTIONS(2031), + [anon_sym_union] = ACTIONS(2031), + [anon_sym_unsafe] = ACTIONS(2031), + [anon_sym_use] = ACTIONS(2031), + [anon_sym_while] = ACTIONS(2031), + [anon_sym_extern] = ACTIONS(2031), + [anon_sym_safe] = ACTIONS(2031), + [anon_sym_yield] = ACTIONS(2031), + [anon_sym_move] = ACTIONS(2031), + [anon_sym_try] = ACTIONS(2031), + [sym_integer_literal] = ACTIONS(2029), + [aux_sym_string_literal_token1] = ACTIONS(2029), + [sym_char_literal] = ACTIONS(2029), + [anon_sym_true] = ACTIONS(2031), + [anon_sym_false] = ACTIONS(2031), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(2031), + [sym_super] = ACTIONS(2031), + [sym_crate] = ACTIONS(2031), + [sym_metavariable] = ACTIONS(2029), + [sym__raw_string_literal_start] = ACTIONS(2029), + [sym_float_literal] = ACTIONS(2029), }, [STATE(545)] = { [sym_line_comment] = STATE(545), [sym_block_comment] = STATE(545), - [ts_builtin_sym_end] = ACTIONS(2006), - [sym_identifier] = ACTIONS(2008), - [anon_sym_SEMI] = ACTIONS(2006), - [anon_sym_macro_rules_BANG] = ACTIONS(2006), - [anon_sym_LPAREN] = ACTIONS(2006), - [anon_sym_LBRACK] = ACTIONS(2006), - [anon_sym_LBRACE] = ACTIONS(2006), - [anon_sym_RBRACE] = ACTIONS(2006), - [anon_sym_STAR] = ACTIONS(2006), - [anon_sym_u8] = ACTIONS(2008), - [anon_sym_i8] = ACTIONS(2008), - [anon_sym_u16] = ACTIONS(2008), - [anon_sym_i16] = ACTIONS(2008), - [anon_sym_u32] = ACTIONS(2008), - [anon_sym_i32] = ACTIONS(2008), - [anon_sym_u64] = ACTIONS(2008), - [anon_sym_i64] = ACTIONS(2008), - [anon_sym_u128] = ACTIONS(2008), - [anon_sym_i128] = ACTIONS(2008), - [anon_sym_isize] = ACTIONS(2008), - [anon_sym_usize] = ACTIONS(2008), - [anon_sym_f32] = ACTIONS(2008), - [anon_sym_f64] = ACTIONS(2008), - [anon_sym_bool] = ACTIONS(2008), - [anon_sym_str] = ACTIONS(2008), - [anon_sym_char] = ACTIONS(2008), - [anon_sym_DASH] = ACTIONS(2006), - [anon_sym_BANG] = ACTIONS(2006), - [anon_sym_AMP] = ACTIONS(2006), - [anon_sym_PIPE] = ACTIONS(2006), - [anon_sym_LT] = ACTIONS(2006), - [anon_sym_DOT_DOT] = ACTIONS(2006), - [anon_sym_COLON_COLON] = ACTIONS(2006), - [anon_sym_POUND] = ACTIONS(2006), - [anon_sym_SQUOTE] = ACTIONS(2008), - [anon_sym_async] = ACTIONS(2008), - [anon_sym_break] = ACTIONS(2008), - [anon_sym_const] = ACTIONS(2008), - [anon_sym_continue] = ACTIONS(2008), - [anon_sym_default] = ACTIONS(2008), - [anon_sym_enum] = ACTIONS(2008), - [anon_sym_fn] = ACTIONS(2008), - [anon_sym_for] = ACTIONS(2008), - [anon_sym_gen] = ACTIONS(2008), - [anon_sym_if] = ACTIONS(2008), - [anon_sym_impl] = ACTIONS(2008), - [anon_sym_let] = ACTIONS(2008), - [anon_sym_loop] = ACTIONS(2008), - [anon_sym_match] = ACTIONS(2008), - [anon_sym_mod] = ACTIONS(2008), - [anon_sym_pub] = ACTIONS(2008), - [anon_sym_return] = ACTIONS(2008), - [anon_sym_static] = ACTIONS(2008), - [anon_sym_struct] = ACTIONS(2008), - [anon_sym_trait] = ACTIONS(2008), - [anon_sym_type] = ACTIONS(2008), - [anon_sym_union] = ACTIONS(2008), - [anon_sym_unsafe] = ACTIONS(2008), - [anon_sym_use] = ACTIONS(2008), - [anon_sym_while] = ACTIONS(2008), - [anon_sym_extern] = ACTIONS(2008), - [anon_sym_yield] = ACTIONS(2008), - [anon_sym_move] = ACTIONS(2008), - [anon_sym_try] = ACTIONS(2008), - [sym_integer_literal] = ACTIONS(2006), - [aux_sym_string_literal_token1] = ACTIONS(2006), - [sym_char_literal] = ACTIONS(2006), - [anon_sym_true] = ACTIONS(2008), - [anon_sym_false] = ACTIONS(2008), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2008), - [sym_super] = ACTIONS(2008), - [sym_crate] = ACTIONS(2008), - [sym_metavariable] = ACTIONS(2006), - [sym__raw_string_literal_start] = ACTIONS(2006), - [sym_float_literal] = ACTIONS(2006), + [ts_builtin_sym_end] = ACTIONS(2033), + [sym_identifier] = ACTIONS(2035), + [anon_sym_SEMI] = ACTIONS(2033), + [anon_sym_macro_rules_BANG] = ACTIONS(2033), + [anon_sym_LPAREN] = ACTIONS(2033), + [anon_sym_LBRACK] = ACTIONS(2033), + [anon_sym_LBRACE] = ACTIONS(2033), + [anon_sym_RBRACE] = ACTIONS(2033), + [anon_sym_STAR] = ACTIONS(2033), + [anon_sym_u8] = ACTIONS(2035), + [anon_sym_i8] = ACTIONS(2035), + [anon_sym_u16] = ACTIONS(2035), + [anon_sym_i16] = ACTIONS(2035), + [anon_sym_u32] = ACTIONS(2035), + [anon_sym_i32] = ACTIONS(2035), + [anon_sym_u64] = ACTIONS(2035), + [anon_sym_i64] = ACTIONS(2035), + [anon_sym_u128] = ACTIONS(2035), + [anon_sym_i128] = ACTIONS(2035), + [anon_sym_isize] = ACTIONS(2035), + [anon_sym_usize] = ACTIONS(2035), + [anon_sym_f32] = ACTIONS(2035), + [anon_sym_f64] = ACTIONS(2035), + [anon_sym_bool] = ACTIONS(2035), + [anon_sym_str] = ACTIONS(2035), + [anon_sym_char] = ACTIONS(2035), + [anon_sym_DASH] = ACTIONS(2033), + [anon_sym_BANG] = ACTIONS(2033), + [anon_sym_AMP] = ACTIONS(2033), + [anon_sym_PIPE] = ACTIONS(2033), + [anon_sym_LT] = ACTIONS(2033), + [anon_sym_DOT_DOT] = ACTIONS(2033), + [anon_sym_COLON_COLON] = ACTIONS(2033), + [anon_sym_POUND] = ACTIONS(2033), + [anon_sym_SQUOTE] = ACTIONS(2035), + [anon_sym_async] = ACTIONS(2035), + [anon_sym_break] = ACTIONS(2035), + [anon_sym_const] = ACTIONS(2035), + [anon_sym_continue] = ACTIONS(2035), + [anon_sym_default] = ACTIONS(2035), + [anon_sym_enum] = ACTIONS(2035), + [anon_sym_fn] = ACTIONS(2035), + [anon_sym_for] = ACTIONS(2035), + [anon_sym_gen] = ACTIONS(2035), + [anon_sym_if] = ACTIONS(2035), + [anon_sym_impl] = ACTIONS(2035), + [anon_sym_let] = ACTIONS(2035), + [anon_sym_loop] = ACTIONS(2035), + [anon_sym_match] = ACTIONS(2035), + [anon_sym_mod] = ACTIONS(2035), + [anon_sym_pub] = ACTIONS(2035), + [anon_sym_return] = ACTIONS(2035), + [anon_sym_static] = ACTIONS(2035), + [anon_sym_struct] = ACTIONS(2035), + [anon_sym_trait] = ACTIONS(2035), + [anon_sym_type] = ACTIONS(2035), + [anon_sym_union] = ACTIONS(2035), + [anon_sym_unsafe] = ACTIONS(2035), + [anon_sym_use] = ACTIONS(2035), + [anon_sym_while] = ACTIONS(2035), + [anon_sym_extern] = ACTIONS(2035), + [anon_sym_safe] = ACTIONS(2035), + [anon_sym_yield] = ACTIONS(2035), + [anon_sym_move] = ACTIONS(2035), + [anon_sym_try] = ACTIONS(2035), + [sym_integer_literal] = ACTIONS(2033), + [aux_sym_string_literal_token1] = ACTIONS(2033), + [sym_char_literal] = ACTIONS(2033), + [anon_sym_true] = ACTIONS(2035), + [anon_sym_false] = ACTIONS(2035), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(2035), + [sym_super] = ACTIONS(2035), + [sym_crate] = ACTIONS(2035), + [sym_metavariable] = ACTIONS(2033), + [sym__raw_string_literal_start] = ACTIONS(2033), + [sym_float_literal] = ACTIONS(2033), }, [STATE(546)] = { [sym_line_comment] = STATE(546), [sym_block_comment] = STATE(546), - [ts_builtin_sym_end] = ACTIONS(2010), - [sym_identifier] = ACTIONS(2012), - [anon_sym_SEMI] = ACTIONS(2010), - [anon_sym_macro_rules_BANG] = ACTIONS(2010), - [anon_sym_LPAREN] = ACTIONS(2010), - [anon_sym_LBRACK] = ACTIONS(2010), - [anon_sym_LBRACE] = ACTIONS(2010), - [anon_sym_RBRACE] = ACTIONS(2010), - [anon_sym_STAR] = ACTIONS(2010), - [anon_sym_u8] = ACTIONS(2012), - [anon_sym_i8] = ACTIONS(2012), - [anon_sym_u16] = ACTIONS(2012), - [anon_sym_i16] = ACTIONS(2012), - [anon_sym_u32] = ACTIONS(2012), - [anon_sym_i32] = ACTIONS(2012), - [anon_sym_u64] = ACTIONS(2012), - [anon_sym_i64] = ACTIONS(2012), - [anon_sym_u128] = ACTIONS(2012), - [anon_sym_i128] = ACTIONS(2012), - [anon_sym_isize] = ACTIONS(2012), - [anon_sym_usize] = ACTIONS(2012), - [anon_sym_f32] = ACTIONS(2012), - [anon_sym_f64] = ACTIONS(2012), - [anon_sym_bool] = ACTIONS(2012), - [anon_sym_str] = ACTIONS(2012), - [anon_sym_char] = ACTIONS(2012), - [anon_sym_DASH] = ACTIONS(2010), - [anon_sym_BANG] = ACTIONS(2010), - [anon_sym_AMP] = ACTIONS(2010), - [anon_sym_PIPE] = ACTIONS(2010), - [anon_sym_LT] = ACTIONS(2010), - [anon_sym_DOT_DOT] = ACTIONS(2010), - [anon_sym_COLON_COLON] = ACTIONS(2010), - [anon_sym_POUND] = ACTIONS(2010), - [anon_sym_SQUOTE] = ACTIONS(2012), - [anon_sym_async] = ACTIONS(2012), - [anon_sym_break] = ACTIONS(2012), - [anon_sym_const] = ACTIONS(2012), - [anon_sym_continue] = ACTIONS(2012), - [anon_sym_default] = ACTIONS(2012), - [anon_sym_enum] = ACTIONS(2012), - [anon_sym_fn] = ACTIONS(2012), - [anon_sym_for] = ACTIONS(2012), - [anon_sym_gen] = ACTIONS(2012), - [anon_sym_if] = ACTIONS(2012), - [anon_sym_impl] = ACTIONS(2012), - [anon_sym_let] = ACTIONS(2012), - [anon_sym_loop] = ACTIONS(2012), - [anon_sym_match] = ACTIONS(2012), - [anon_sym_mod] = ACTIONS(2012), - [anon_sym_pub] = ACTIONS(2012), - [anon_sym_return] = ACTIONS(2012), - [anon_sym_static] = ACTIONS(2012), - [anon_sym_struct] = ACTIONS(2012), - [anon_sym_trait] = ACTIONS(2012), - [anon_sym_type] = ACTIONS(2012), - [anon_sym_union] = ACTIONS(2012), - [anon_sym_unsafe] = ACTIONS(2012), - [anon_sym_use] = ACTIONS(2012), - [anon_sym_while] = ACTIONS(2012), - [anon_sym_extern] = ACTIONS(2012), - [anon_sym_yield] = ACTIONS(2012), - [anon_sym_move] = ACTIONS(2012), - [anon_sym_try] = ACTIONS(2012), - [sym_integer_literal] = ACTIONS(2010), - [aux_sym_string_literal_token1] = ACTIONS(2010), - [sym_char_literal] = ACTIONS(2010), - [anon_sym_true] = ACTIONS(2012), - [anon_sym_false] = ACTIONS(2012), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2012), - [sym_super] = ACTIONS(2012), - [sym_crate] = ACTIONS(2012), - [sym_metavariable] = ACTIONS(2010), - [sym__raw_string_literal_start] = ACTIONS(2010), - [sym_float_literal] = ACTIONS(2010), + [ts_builtin_sym_end] = ACTIONS(2037), + [sym_identifier] = ACTIONS(2039), + [anon_sym_SEMI] = ACTIONS(2037), + [anon_sym_macro_rules_BANG] = ACTIONS(2037), + [anon_sym_LPAREN] = ACTIONS(2037), + [anon_sym_LBRACK] = ACTIONS(2037), + [anon_sym_LBRACE] = ACTIONS(2037), + [anon_sym_RBRACE] = ACTIONS(2037), + [anon_sym_STAR] = ACTIONS(2037), + [anon_sym_u8] = ACTIONS(2039), + [anon_sym_i8] = ACTIONS(2039), + [anon_sym_u16] = ACTIONS(2039), + [anon_sym_i16] = ACTIONS(2039), + [anon_sym_u32] = ACTIONS(2039), + [anon_sym_i32] = ACTIONS(2039), + [anon_sym_u64] = ACTIONS(2039), + [anon_sym_i64] = ACTIONS(2039), + [anon_sym_u128] = ACTIONS(2039), + [anon_sym_i128] = ACTIONS(2039), + [anon_sym_isize] = ACTIONS(2039), + [anon_sym_usize] = ACTIONS(2039), + [anon_sym_f32] = ACTIONS(2039), + [anon_sym_f64] = ACTIONS(2039), + [anon_sym_bool] = ACTIONS(2039), + [anon_sym_str] = ACTIONS(2039), + [anon_sym_char] = ACTIONS(2039), + [anon_sym_DASH] = ACTIONS(2037), + [anon_sym_BANG] = ACTIONS(2037), + [anon_sym_AMP] = ACTIONS(2037), + [anon_sym_PIPE] = ACTIONS(2037), + [anon_sym_LT] = ACTIONS(2037), + [anon_sym_DOT_DOT] = ACTIONS(2037), + [anon_sym_COLON_COLON] = ACTIONS(2037), + [anon_sym_POUND] = ACTIONS(2037), + [anon_sym_SQUOTE] = ACTIONS(2039), + [anon_sym_async] = ACTIONS(2039), + [anon_sym_break] = ACTIONS(2039), + [anon_sym_const] = ACTIONS(2039), + [anon_sym_continue] = ACTIONS(2039), + [anon_sym_default] = ACTIONS(2039), + [anon_sym_enum] = ACTIONS(2039), + [anon_sym_fn] = ACTIONS(2039), + [anon_sym_for] = ACTIONS(2039), + [anon_sym_gen] = ACTIONS(2039), + [anon_sym_if] = ACTIONS(2039), + [anon_sym_impl] = ACTIONS(2039), + [anon_sym_let] = ACTIONS(2039), + [anon_sym_loop] = ACTIONS(2039), + [anon_sym_match] = ACTIONS(2039), + [anon_sym_mod] = ACTIONS(2039), + [anon_sym_pub] = ACTIONS(2039), + [anon_sym_return] = ACTIONS(2039), + [anon_sym_static] = ACTIONS(2039), + [anon_sym_struct] = ACTIONS(2039), + [anon_sym_trait] = ACTIONS(2039), + [anon_sym_type] = ACTIONS(2039), + [anon_sym_union] = ACTIONS(2039), + [anon_sym_unsafe] = ACTIONS(2039), + [anon_sym_use] = ACTIONS(2039), + [anon_sym_while] = ACTIONS(2039), + [anon_sym_extern] = ACTIONS(2039), + [anon_sym_safe] = ACTIONS(2039), + [anon_sym_yield] = ACTIONS(2039), + [anon_sym_move] = ACTIONS(2039), + [anon_sym_try] = ACTIONS(2039), + [sym_integer_literal] = ACTIONS(2037), + [aux_sym_string_literal_token1] = ACTIONS(2037), + [sym_char_literal] = ACTIONS(2037), + [anon_sym_true] = ACTIONS(2039), + [anon_sym_false] = ACTIONS(2039), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(2039), + [sym_super] = ACTIONS(2039), + [sym_crate] = ACTIONS(2039), + [sym_metavariable] = ACTIONS(2037), + [sym__raw_string_literal_start] = ACTIONS(2037), + [sym_float_literal] = ACTIONS(2037), }, [STATE(547)] = { [sym_line_comment] = STATE(547), [sym_block_comment] = STATE(547), - [ts_builtin_sym_end] = ACTIONS(2014), - [sym_identifier] = ACTIONS(2016), - [anon_sym_SEMI] = ACTIONS(2014), - [anon_sym_macro_rules_BANG] = ACTIONS(2014), - [anon_sym_LPAREN] = ACTIONS(2014), - [anon_sym_LBRACK] = ACTIONS(2014), - [anon_sym_LBRACE] = ACTIONS(2014), - [anon_sym_RBRACE] = ACTIONS(2014), - [anon_sym_STAR] = ACTIONS(2014), - [anon_sym_u8] = ACTIONS(2016), - [anon_sym_i8] = ACTIONS(2016), - [anon_sym_u16] = ACTIONS(2016), - [anon_sym_i16] = ACTIONS(2016), - [anon_sym_u32] = ACTIONS(2016), - [anon_sym_i32] = ACTIONS(2016), - [anon_sym_u64] = ACTIONS(2016), - [anon_sym_i64] = ACTIONS(2016), - [anon_sym_u128] = ACTIONS(2016), - [anon_sym_i128] = ACTIONS(2016), - [anon_sym_isize] = ACTIONS(2016), - [anon_sym_usize] = ACTIONS(2016), - [anon_sym_f32] = ACTIONS(2016), - [anon_sym_f64] = ACTIONS(2016), - [anon_sym_bool] = ACTIONS(2016), - [anon_sym_str] = ACTIONS(2016), - [anon_sym_char] = ACTIONS(2016), - [anon_sym_DASH] = ACTIONS(2014), - [anon_sym_BANG] = ACTIONS(2014), - [anon_sym_AMP] = ACTIONS(2014), - [anon_sym_PIPE] = ACTIONS(2014), - [anon_sym_LT] = ACTIONS(2014), - [anon_sym_DOT_DOT] = ACTIONS(2014), - [anon_sym_COLON_COLON] = ACTIONS(2014), - [anon_sym_POUND] = ACTIONS(2014), - [anon_sym_SQUOTE] = ACTIONS(2016), - [anon_sym_async] = ACTIONS(2016), - [anon_sym_break] = ACTIONS(2016), - [anon_sym_const] = ACTIONS(2016), - [anon_sym_continue] = ACTIONS(2016), - [anon_sym_default] = ACTIONS(2016), - [anon_sym_enum] = ACTIONS(2016), - [anon_sym_fn] = ACTIONS(2016), - [anon_sym_for] = ACTIONS(2016), - [anon_sym_gen] = ACTIONS(2016), - [anon_sym_if] = ACTIONS(2016), - [anon_sym_impl] = ACTIONS(2016), - [anon_sym_let] = ACTIONS(2016), - [anon_sym_loop] = ACTIONS(2016), - [anon_sym_match] = ACTIONS(2016), - [anon_sym_mod] = ACTIONS(2016), - [anon_sym_pub] = ACTIONS(2016), - [anon_sym_return] = ACTIONS(2016), - [anon_sym_static] = ACTIONS(2016), - [anon_sym_struct] = ACTIONS(2016), - [anon_sym_trait] = ACTIONS(2016), - [anon_sym_type] = ACTIONS(2016), - [anon_sym_union] = ACTIONS(2016), - [anon_sym_unsafe] = ACTIONS(2016), - [anon_sym_use] = ACTIONS(2016), - [anon_sym_while] = ACTIONS(2016), - [anon_sym_extern] = ACTIONS(2016), - [anon_sym_yield] = ACTIONS(2016), - [anon_sym_move] = ACTIONS(2016), - [anon_sym_try] = ACTIONS(2016), - [sym_integer_literal] = ACTIONS(2014), - [aux_sym_string_literal_token1] = ACTIONS(2014), - [sym_char_literal] = ACTIONS(2014), - [anon_sym_true] = ACTIONS(2016), - [anon_sym_false] = ACTIONS(2016), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2016), - [sym_super] = ACTIONS(2016), - [sym_crate] = ACTIONS(2016), - [sym_metavariable] = ACTIONS(2014), - [sym__raw_string_literal_start] = ACTIONS(2014), - [sym_float_literal] = ACTIONS(2014), + [ts_builtin_sym_end] = ACTIONS(2041), + [sym_identifier] = ACTIONS(2043), + [anon_sym_SEMI] = ACTIONS(2041), + [anon_sym_macro_rules_BANG] = ACTIONS(2041), + [anon_sym_LPAREN] = ACTIONS(2041), + [anon_sym_LBRACK] = ACTIONS(2041), + [anon_sym_LBRACE] = ACTIONS(2041), + [anon_sym_RBRACE] = ACTIONS(2041), + [anon_sym_STAR] = ACTIONS(2041), + [anon_sym_u8] = ACTIONS(2043), + [anon_sym_i8] = ACTIONS(2043), + [anon_sym_u16] = ACTIONS(2043), + [anon_sym_i16] = ACTIONS(2043), + [anon_sym_u32] = ACTIONS(2043), + [anon_sym_i32] = ACTIONS(2043), + [anon_sym_u64] = ACTIONS(2043), + [anon_sym_i64] = ACTIONS(2043), + [anon_sym_u128] = ACTIONS(2043), + [anon_sym_i128] = ACTIONS(2043), + [anon_sym_isize] = ACTIONS(2043), + [anon_sym_usize] = ACTIONS(2043), + [anon_sym_f32] = ACTIONS(2043), + [anon_sym_f64] = ACTIONS(2043), + [anon_sym_bool] = ACTIONS(2043), + [anon_sym_str] = ACTIONS(2043), + [anon_sym_char] = ACTIONS(2043), + [anon_sym_DASH] = ACTIONS(2041), + [anon_sym_BANG] = ACTIONS(2041), + [anon_sym_AMP] = ACTIONS(2041), + [anon_sym_PIPE] = ACTIONS(2041), + [anon_sym_LT] = ACTIONS(2041), + [anon_sym_DOT_DOT] = ACTIONS(2041), + [anon_sym_COLON_COLON] = ACTIONS(2041), + [anon_sym_POUND] = ACTIONS(2041), + [anon_sym_SQUOTE] = ACTIONS(2043), + [anon_sym_async] = ACTIONS(2043), + [anon_sym_break] = ACTIONS(2043), + [anon_sym_const] = ACTIONS(2043), + [anon_sym_continue] = ACTIONS(2043), + [anon_sym_default] = ACTIONS(2043), + [anon_sym_enum] = ACTIONS(2043), + [anon_sym_fn] = ACTIONS(2043), + [anon_sym_for] = ACTIONS(2043), + [anon_sym_gen] = ACTIONS(2043), + [anon_sym_if] = ACTIONS(2043), + [anon_sym_impl] = ACTIONS(2043), + [anon_sym_let] = ACTIONS(2043), + [anon_sym_loop] = ACTIONS(2043), + [anon_sym_match] = ACTIONS(2043), + [anon_sym_mod] = ACTIONS(2043), + [anon_sym_pub] = ACTIONS(2043), + [anon_sym_return] = ACTIONS(2043), + [anon_sym_static] = ACTIONS(2043), + [anon_sym_struct] = ACTIONS(2043), + [anon_sym_trait] = ACTIONS(2043), + [anon_sym_type] = ACTIONS(2043), + [anon_sym_union] = ACTIONS(2043), + [anon_sym_unsafe] = ACTIONS(2043), + [anon_sym_use] = ACTIONS(2043), + [anon_sym_while] = ACTIONS(2043), + [anon_sym_extern] = ACTIONS(2043), + [anon_sym_safe] = ACTIONS(2043), + [anon_sym_yield] = ACTIONS(2043), + [anon_sym_move] = ACTIONS(2043), + [anon_sym_try] = ACTIONS(2043), + [sym_integer_literal] = ACTIONS(2041), + [aux_sym_string_literal_token1] = ACTIONS(2041), + [sym_char_literal] = ACTIONS(2041), + [anon_sym_true] = ACTIONS(2043), + [anon_sym_false] = ACTIONS(2043), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(2043), + [sym_super] = ACTIONS(2043), + [sym_crate] = ACTIONS(2043), + [sym_metavariable] = ACTIONS(2041), + [sym__raw_string_literal_start] = ACTIONS(2041), + [sym_float_literal] = ACTIONS(2041), }, [STATE(548)] = { [sym_line_comment] = STATE(548), [sym_block_comment] = STATE(548), - [ts_builtin_sym_end] = ACTIONS(2018), - [sym_identifier] = ACTIONS(2020), - [anon_sym_SEMI] = ACTIONS(2018), - [anon_sym_macro_rules_BANG] = ACTIONS(2018), - [anon_sym_LPAREN] = ACTIONS(2018), - [anon_sym_LBRACK] = ACTIONS(2018), - [anon_sym_LBRACE] = ACTIONS(2018), - [anon_sym_RBRACE] = ACTIONS(2018), - [anon_sym_STAR] = ACTIONS(2018), - [anon_sym_u8] = ACTIONS(2020), - [anon_sym_i8] = ACTIONS(2020), - [anon_sym_u16] = ACTIONS(2020), - [anon_sym_i16] = ACTIONS(2020), - [anon_sym_u32] = ACTIONS(2020), - [anon_sym_i32] = ACTIONS(2020), - [anon_sym_u64] = ACTIONS(2020), - [anon_sym_i64] = ACTIONS(2020), - [anon_sym_u128] = ACTIONS(2020), - [anon_sym_i128] = ACTIONS(2020), - [anon_sym_isize] = ACTIONS(2020), - [anon_sym_usize] = ACTIONS(2020), - [anon_sym_f32] = ACTIONS(2020), - [anon_sym_f64] = ACTIONS(2020), - [anon_sym_bool] = ACTIONS(2020), - [anon_sym_str] = ACTIONS(2020), - [anon_sym_char] = ACTIONS(2020), - [anon_sym_DASH] = ACTIONS(2018), - [anon_sym_BANG] = ACTIONS(2018), - [anon_sym_AMP] = ACTIONS(2018), - [anon_sym_PIPE] = ACTIONS(2018), - [anon_sym_LT] = ACTIONS(2018), - [anon_sym_DOT_DOT] = ACTIONS(2018), - [anon_sym_COLON_COLON] = ACTIONS(2018), - [anon_sym_POUND] = ACTIONS(2018), - [anon_sym_SQUOTE] = ACTIONS(2020), - [anon_sym_async] = ACTIONS(2020), - [anon_sym_break] = ACTIONS(2020), - [anon_sym_const] = ACTIONS(2020), - [anon_sym_continue] = ACTIONS(2020), - [anon_sym_default] = ACTIONS(2020), - [anon_sym_enum] = ACTIONS(2020), - [anon_sym_fn] = ACTIONS(2020), - [anon_sym_for] = ACTIONS(2020), - [anon_sym_gen] = ACTIONS(2020), - [anon_sym_if] = ACTIONS(2020), - [anon_sym_impl] = ACTIONS(2020), - [anon_sym_let] = ACTIONS(2020), - [anon_sym_loop] = ACTIONS(2020), - [anon_sym_match] = ACTIONS(2020), - [anon_sym_mod] = ACTIONS(2020), - [anon_sym_pub] = ACTIONS(2020), - [anon_sym_return] = ACTIONS(2020), - [anon_sym_static] = ACTIONS(2020), - [anon_sym_struct] = ACTIONS(2020), - [anon_sym_trait] = ACTIONS(2020), - [anon_sym_type] = ACTIONS(2020), - [anon_sym_union] = ACTIONS(2020), - [anon_sym_unsafe] = ACTIONS(2020), - [anon_sym_use] = ACTIONS(2020), - [anon_sym_while] = ACTIONS(2020), - [anon_sym_extern] = ACTIONS(2020), - [anon_sym_yield] = ACTIONS(2020), - [anon_sym_move] = ACTIONS(2020), - [anon_sym_try] = ACTIONS(2020), - [sym_integer_literal] = ACTIONS(2018), - [aux_sym_string_literal_token1] = ACTIONS(2018), - [sym_char_literal] = ACTIONS(2018), - [anon_sym_true] = ACTIONS(2020), - [anon_sym_false] = ACTIONS(2020), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2020), - [sym_super] = ACTIONS(2020), - [sym_crate] = ACTIONS(2020), - [sym_metavariable] = ACTIONS(2018), - [sym__raw_string_literal_start] = ACTIONS(2018), - [sym_float_literal] = ACTIONS(2018), + [ts_builtin_sym_end] = ACTIONS(2045), + [sym_identifier] = ACTIONS(2047), + [anon_sym_SEMI] = ACTIONS(2045), + [anon_sym_macro_rules_BANG] = ACTIONS(2045), + [anon_sym_LPAREN] = ACTIONS(2045), + [anon_sym_LBRACK] = ACTIONS(2045), + [anon_sym_LBRACE] = ACTIONS(2045), + [anon_sym_RBRACE] = ACTIONS(2045), + [anon_sym_STAR] = ACTIONS(2045), + [anon_sym_u8] = ACTIONS(2047), + [anon_sym_i8] = ACTIONS(2047), + [anon_sym_u16] = ACTIONS(2047), + [anon_sym_i16] = ACTIONS(2047), + [anon_sym_u32] = ACTIONS(2047), + [anon_sym_i32] = ACTIONS(2047), + [anon_sym_u64] = ACTIONS(2047), + [anon_sym_i64] = ACTIONS(2047), + [anon_sym_u128] = ACTIONS(2047), + [anon_sym_i128] = ACTIONS(2047), + [anon_sym_isize] = ACTIONS(2047), + [anon_sym_usize] = ACTIONS(2047), + [anon_sym_f32] = ACTIONS(2047), + [anon_sym_f64] = ACTIONS(2047), + [anon_sym_bool] = ACTIONS(2047), + [anon_sym_str] = ACTIONS(2047), + [anon_sym_char] = ACTIONS(2047), + [anon_sym_DASH] = ACTIONS(2045), + [anon_sym_BANG] = ACTIONS(2045), + [anon_sym_AMP] = ACTIONS(2045), + [anon_sym_PIPE] = ACTIONS(2045), + [anon_sym_LT] = ACTIONS(2045), + [anon_sym_DOT_DOT] = ACTIONS(2045), + [anon_sym_COLON_COLON] = ACTIONS(2045), + [anon_sym_POUND] = ACTIONS(2045), + [anon_sym_SQUOTE] = ACTIONS(2047), + [anon_sym_async] = ACTIONS(2047), + [anon_sym_break] = ACTIONS(2047), + [anon_sym_const] = ACTIONS(2047), + [anon_sym_continue] = ACTIONS(2047), + [anon_sym_default] = ACTIONS(2047), + [anon_sym_enum] = ACTIONS(2047), + [anon_sym_fn] = ACTIONS(2047), + [anon_sym_for] = ACTIONS(2047), + [anon_sym_gen] = ACTIONS(2047), + [anon_sym_if] = ACTIONS(2047), + [anon_sym_impl] = ACTIONS(2047), + [anon_sym_let] = ACTIONS(2047), + [anon_sym_loop] = ACTIONS(2047), + [anon_sym_match] = ACTIONS(2047), + [anon_sym_mod] = ACTIONS(2047), + [anon_sym_pub] = ACTIONS(2047), + [anon_sym_return] = ACTIONS(2047), + [anon_sym_static] = ACTIONS(2047), + [anon_sym_struct] = ACTIONS(2047), + [anon_sym_trait] = ACTIONS(2047), + [anon_sym_type] = ACTIONS(2047), + [anon_sym_union] = ACTIONS(2047), + [anon_sym_unsafe] = ACTIONS(2047), + [anon_sym_use] = ACTIONS(2047), + [anon_sym_while] = ACTIONS(2047), + [anon_sym_extern] = ACTIONS(2047), + [anon_sym_safe] = ACTIONS(2047), + [anon_sym_yield] = ACTIONS(2047), + [anon_sym_move] = ACTIONS(2047), + [anon_sym_try] = ACTIONS(2047), + [sym_integer_literal] = ACTIONS(2045), + [aux_sym_string_literal_token1] = ACTIONS(2045), + [sym_char_literal] = ACTIONS(2045), + [anon_sym_true] = ACTIONS(2047), + [anon_sym_false] = ACTIONS(2047), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(2047), + [sym_super] = ACTIONS(2047), + [sym_crate] = ACTIONS(2047), + [sym_metavariable] = ACTIONS(2045), + [sym__raw_string_literal_start] = ACTIONS(2045), + [sym_float_literal] = ACTIONS(2045), }, [STATE(549)] = { [sym_line_comment] = STATE(549), [sym_block_comment] = STATE(549), - [ts_builtin_sym_end] = ACTIONS(2022), - [sym_identifier] = ACTIONS(2024), - [anon_sym_SEMI] = ACTIONS(2022), - [anon_sym_macro_rules_BANG] = ACTIONS(2022), - [anon_sym_LPAREN] = ACTIONS(2022), - [anon_sym_LBRACK] = ACTIONS(2022), - [anon_sym_LBRACE] = ACTIONS(2022), - [anon_sym_RBRACE] = ACTIONS(2022), - [anon_sym_STAR] = ACTIONS(2022), - [anon_sym_u8] = ACTIONS(2024), - [anon_sym_i8] = ACTIONS(2024), - [anon_sym_u16] = ACTIONS(2024), - [anon_sym_i16] = ACTIONS(2024), - [anon_sym_u32] = ACTIONS(2024), - [anon_sym_i32] = ACTIONS(2024), - [anon_sym_u64] = ACTIONS(2024), - [anon_sym_i64] = ACTIONS(2024), - [anon_sym_u128] = ACTIONS(2024), - [anon_sym_i128] = ACTIONS(2024), - [anon_sym_isize] = ACTIONS(2024), - [anon_sym_usize] = ACTIONS(2024), - [anon_sym_f32] = ACTIONS(2024), - [anon_sym_f64] = ACTIONS(2024), - [anon_sym_bool] = ACTIONS(2024), - [anon_sym_str] = ACTIONS(2024), - [anon_sym_char] = ACTIONS(2024), - [anon_sym_DASH] = ACTIONS(2022), - [anon_sym_BANG] = ACTIONS(2022), - [anon_sym_AMP] = ACTIONS(2022), - [anon_sym_PIPE] = ACTIONS(2022), - [anon_sym_LT] = ACTIONS(2022), - [anon_sym_DOT_DOT] = ACTIONS(2022), - [anon_sym_COLON_COLON] = ACTIONS(2022), - [anon_sym_POUND] = ACTIONS(2022), - [anon_sym_SQUOTE] = ACTIONS(2024), - [anon_sym_async] = ACTIONS(2024), - [anon_sym_break] = ACTIONS(2024), - [anon_sym_const] = ACTIONS(2024), - [anon_sym_continue] = ACTIONS(2024), - [anon_sym_default] = ACTIONS(2024), - [anon_sym_enum] = ACTIONS(2024), - [anon_sym_fn] = ACTIONS(2024), - [anon_sym_for] = ACTIONS(2024), - [anon_sym_gen] = ACTIONS(2024), - [anon_sym_if] = ACTIONS(2024), - [anon_sym_impl] = ACTIONS(2024), - [anon_sym_let] = ACTIONS(2024), - [anon_sym_loop] = ACTIONS(2024), - [anon_sym_match] = ACTIONS(2024), - [anon_sym_mod] = ACTIONS(2024), - [anon_sym_pub] = ACTIONS(2024), - [anon_sym_return] = ACTIONS(2024), - [anon_sym_static] = ACTIONS(2024), - [anon_sym_struct] = ACTIONS(2024), - [anon_sym_trait] = ACTIONS(2024), - [anon_sym_type] = ACTIONS(2024), - [anon_sym_union] = ACTIONS(2024), - [anon_sym_unsafe] = ACTIONS(2024), - [anon_sym_use] = ACTIONS(2024), - [anon_sym_while] = ACTIONS(2024), - [anon_sym_extern] = ACTIONS(2024), - [anon_sym_yield] = ACTIONS(2024), - [anon_sym_move] = ACTIONS(2024), - [anon_sym_try] = ACTIONS(2024), - [sym_integer_literal] = ACTIONS(2022), - [aux_sym_string_literal_token1] = ACTIONS(2022), - [sym_char_literal] = ACTIONS(2022), - [anon_sym_true] = ACTIONS(2024), - [anon_sym_false] = ACTIONS(2024), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2024), - [sym_super] = ACTIONS(2024), - [sym_crate] = ACTIONS(2024), - [sym_metavariable] = ACTIONS(2022), - [sym__raw_string_literal_start] = ACTIONS(2022), - [sym_float_literal] = ACTIONS(2022), + [ts_builtin_sym_end] = ACTIONS(2049), + [sym_identifier] = ACTIONS(2051), + [anon_sym_SEMI] = ACTIONS(2049), + [anon_sym_macro_rules_BANG] = ACTIONS(2049), + [anon_sym_LPAREN] = ACTIONS(2049), + [anon_sym_LBRACK] = ACTIONS(2049), + [anon_sym_LBRACE] = ACTIONS(2049), + [anon_sym_RBRACE] = ACTIONS(2049), + [anon_sym_STAR] = ACTIONS(2049), + [anon_sym_u8] = ACTIONS(2051), + [anon_sym_i8] = ACTIONS(2051), + [anon_sym_u16] = ACTIONS(2051), + [anon_sym_i16] = ACTIONS(2051), + [anon_sym_u32] = ACTIONS(2051), + [anon_sym_i32] = ACTIONS(2051), + [anon_sym_u64] = ACTIONS(2051), + [anon_sym_i64] = ACTIONS(2051), + [anon_sym_u128] = ACTIONS(2051), + [anon_sym_i128] = ACTIONS(2051), + [anon_sym_isize] = ACTIONS(2051), + [anon_sym_usize] = ACTIONS(2051), + [anon_sym_f32] = ACTIONS(2051), + [anon_sym_f64] = ACTIONS(2051), + [anon_sym_bool] = ACTIONS(2051), + [anon_sym_str] = ACTIONS(2051), + [anon_sym_char] = ACTIONS(2051), + [anon_sym_DASH] = ACTIONS(2049), + [anon_sym_BANG] = ACTIONS(2049), + [anon_sym_AMP] = ACTIONS(2049), + [anon_sym_PIPE] = ACTIONS(2049), + [anon_sym_LT] = ACTIONS(2049), + [anon_sym_DOT_DOT] = ACTIONS(2049), + [anon_sym_COLON_COLON] = ACTIONS(2049), + [anon_sym_POUND] = ACTIONS(2049), + [anon_sym_SQUOTE] = ACTIONS(2051), + [anon_sym_async] = ACTIONS(2051), + [anon_sym_break] = ACTIONS(2051), + [anon_sym_const] = ACTIONS(2051), + [anon_sym_continue] = ACTIONS(2051), + [anon_sym_default] = ACTIONS(2051), + [anon_sym_enum] = ACTIONS(2051), + [anon_sym_fn] = ACTIONS(2051), + [anon_sym_for] = ACTIONS(2051), + [anon_sym_gen] = ACTIONS(2051), + [anon_sym_if] = ACTIONS(2051), + [anon_sym_impl] = ACTIONS(2051), + [anon_sym_let] = ACTIONS(2051), + [anon_sym_loop] = ACTIONS(2051), + [anon_sym_match] = ACTIONS(2051), + [anon_sym_mod] = ACTIONS(2051), + [anon_sym_pub] = ACTIONS(2051), + [anon_sym_return] = ACTIONS(2051), + [anon_sym_static] = ACTIONS(2051), + [anon_sym_struct] = ACTIONS(2051), + [anon_sym_trait] = ACTIONS(2051), + [anon_sym_type] = ACTIONS(2051), + [anon_sym_union] = ACTIONS(2051), + [anon_sym_unsafe] = ACTIONS(2051), + [anon_sym_use] = ACTIONS(2051), + [anon_sym_while] = ACTIONS(2051), + [anon_sym_extern] = ACTIONS(2051), + [anon_sym_safe] = ACTIONS(2051), + [anon_sym_yield] = ACTIONS(2051), + [anon_sym_move] = ACTIONS(2051), + [anon_sym_try] = ACTIONS(2051), + [sym_integer_literal] = ACTIONS(2049), + [aux_sym_string_literal_token1] = ACTIONS(2049), + [sym_char_literal] = ACTIONS(2049), + [anon_sym_true] = ACTIONS(2051), + [anon_sym_false] = ACTIONS(2051), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(2051), + [sym_super] = ACTIONS(2051), + [sym_crate] = ACTIONS(2051), + [sym_metavariable] = ACTIONS(2049), + [sym__raw_string_literal_start] = ACTIONS(2049), + [sym_float_literal] = ACTIONS(2049), }, [STATE(550)] = { [sym_line_comment] = STATE(550), [sym_block_comment] = STATE(550), - [ts_builtin_sym_end] = ACTIONS(2026), - [sym_identifier] = ACTIONS(2028), - [anon_sym_SEMI] = ACTIONS(2026), - [anon_sym_macro_rules_BANG] = ACTIONS(2026), - [anon_sym_LPAREN] = ACTIONS(2026), - [anon_sym_LBRACK] = ACTIONS(2026), - [anon_sym_LBRACE] = ACTIONS(2026), - [anon_sym_RBRACE] = ACTIONS(2026), - [anon_sym_STAR] = ACTIONS(2026), - [anon_sym_u8] = ACTIONS(2028), - [anon_sym_i8] = ACTIONS(2028), - [anon_sym_u16] = ACTIONS(2028), - [anon_sym_i16] = ACTIONS(2028), - [anon_sym_u32] = ACTIONS(2028), - [anon_sym_i32] = ACTIONS(2028), - [anon_sym_u64] = ACTIONS(2028), - [anon_sym_i64] = ACTIONS(2028), - [anon_sym_u128] = ACTIONS(2028), - [anon_sym_i128] = ACTIONS(2028), - [anon_sym_isize] = ACTIONS(2028), - [anon_sym_usize] = ACTIONS(2028), - [anon_sym_f32] = ACTIONS(2028), - [anon_sym_f64] = ACTIONS(2028), - [anon_sym_bool] = ACTIONS(2028), - [anon_sym_str] = ACTIONS(2028), - [anon_sym_char] = ACTIONS(2028), - [anon_sym_DASH] = ACTIONS(2026), - [anon_sym_BANG] = ACTIONS(2026), - [anon_sym_AMP] = ACTIONS(2026), - [anon_sym_PIPE] = ACTIONS(2026), - [anon_sym_LT] = ACTIONS(2026), - [anon_sym_DOT_DOT] = ACTIONS(2026), - [anon_sym_COLON_COLON] = ACTIONS(2026), - [anon_sym_POUND] = ACTIONS(2026), - [anon_sym_SQUOTE] = ACTIONS(2028), - [anon_sym_async] = ACTIONS(2028), - [anon_sym_break] = ACTIONS(2028), - [anon_sym_const] = ACTIONS(2028), - [anon_sym_continue] = ACTIONS(2028), - [anon_sym_default] = ACTIONS(2028), - [anon_sym_enum] = ACTIONS(2028), - [anon_sym_fn] = ACTIONS(2028), - [anon_sym_for] = ACTIONS(2028), - [anon_sym_gen] = ACTIONS(2028), - [anon_sym_if] = ACTIONS(2028), - [anon_sym_impl] = ACTIONS(2028), - [anon_sym_let] = ACTIONS(2028), - [anon_sym_loop] = ACTIONS(2028), - [anon_sym_match] = ACTIONS(2028), - [anon_sym_mod] = ACTIONS(2028), - [anon_sym_pub] = ACTIONS(2028), - [anon_sym_return] = ACTIONS(2028), - [anon_sym_static] = ACTIONS(2028), - [anon_sym_struct] = ACTIONS(2028), - [anon_sym_trait] = ACTIONS(2028), - [anon_sym_type] = ACTIONS(2028), - [anon_sym_union] = ACTIONS(2028), - [anon_sym_unsafe] = ACTIONS(2028), - [anon_sym_use] = ACTIONS(2028), - [anon_sym_while] = ACTIONS(2028), - [anon_sym_extern] = ACTIONS(2028), - [anon_sym_yield] = ACTIONS(2028), - [anon_sym_move] = ACTIONS(2028), - [anon_sym_try] = ACTIONS(2028), - [sym_integer_literal] = ACTIONS(2026), - [aux_sym_string_literal_token1] = ACTIONS(2026), - [sym_char_literal] = ACTIONS(2026), - [anon_sym_true] = ACTIONS(2028), - [anon_sym_false] = ACTIONS(2028), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2028), - [sym_super] = ACTIONS(2028), - [sym_crate] = ACTIONS(2028), - [sym_metavariable] = ACTIONS(2026), - [sym__raw_string_literal_start] = ACTIONS(2026), - [sym_float_literal] = ACTIONS(2026), + [ts_builtin_sym_end] = ACTIONS(2053), + [sym_identifier] = ACTIONS(2055), + [anon_sym_SEMI] = ACTIONS(2053), + [anon_sym_macro_rules_BANG] = ACTIONS(2053), + [anon_sym_LPAREN] = ACTIONS(2053), + [anon_sym_LBRACK] = ACTIONS(2053), + [anon_sym_LBRACE] = ACTIONS(2053), + [anon_sym_RBRACE] = ACTIONS(2053), + [anon_sym_STAR] = ACTIONS(2053), + [anon_sym_u8] = ACTIONS(2055), + [anon_sym_i8] = ACTIONS(2055), + [anon_sym_u16] = ACTIONS(2055), + [anon_sym_i16] = ACTIONS(2055), + [anon_sym_u32] = ACTIONS(2055), + [anon_sym_i32] = ACTIONS(2055), + [anon_sym_u64] = ACTIONS(2055), + [anon_sym_i64] = ACTIONS(2055), + [anon_sym_u128] = ACTIONS(2055), + [anon_sym_i128] = ACTIONS(2055), + [anon_sym_isize] = ACTIONS(2055), + [anon_sym_usize] = ACTIONS(2055), + [anon_sym_f32] = ACTIONS(2055), + [anon_sym_f64] = ACTIONS(2055), + [anon_sym_bool] = ACTIONS(2055), + [anon_sym_str] = ACTIONS(2055), + [anon_sym_char] = ACTIONS(2055), + [anon_sym_DASH] = ACTIONS(2053), + [anon_sym_BANG] = ACTIONS(2053), + [anon_sym_AMP] = ACTIONS(2053), + [anon_sym_PIPE] = ACTIONS(2053), + [anon_sym_LT] = ACTIONS(2053), + [anon_sym_DOT_DOT] = ACTIONS(2053), + [anon_sym_COLON_COLON] = ACTIONS(2053), + [anon_sym_POUND] = ACTIONS(2053), + [anon_sym_SQUOTE] = ACTIONS(2055), + [anon_sym_async] = ACTIONS(2055), + [anon_sym_break] = ACTIONS(2055), + [anon_sym_const] = ACTIONS(2055), + [anon_sym_continue] = ACTIONS(2055), + [anon_sym_default] = ACTIONS(2055), + [anon_sym_enum] = ACTIONS(2055), + [anon_sym_fn] = ACTIONS(2055), + [anon_sym_for] = ACTIONS(2055), + [anon_sym_gen] = ACTIONS(2055), + [anon_sym_if] = ACTIONS(2055), + [anon_sym_impl] = ACTIONS(2055), + [anon_sym_let] = ACTIONS(2055), + [anon_sym_loop] = ACTIONS(2055), + [anon_sym_match] = ACTIONS(2055), + [anon_sym_mod] = ACTIONS(2055), + [anon_sym_pub] = ACTIONS(2055), + [anon_sym_return] = ACTIONS(2055), + [anon_sym_static] = ACTIONS(2055), + [anon_sym_struct] = ACTIONS(2055), + [anon_sym_trait] = ACTIONS(2055), + [anon_sym_type] = ACTIONS(2055), + [anon_sym_union] = ACTIONS(2055), + [anon_sym_unsafe] = ACTIONS(2055), + [anon_sym_use] = ACTIONS(2055), + [anon_sym_while] = ACTIONS(2055), + [anon_sym_extern] = ACTIONS(2055), + [anon_sym_safe] = ACTIONS(2055), + [anon_sym_yield] = ACTIONS(2055), + [anon_sym_move] = ACTIONS(2055), + [anon_sym_try] = ACTIONS(2055), + [sym_integer_literal] = ACTIONS(2053), + [aux_sym_string_literal_token1] = ACTIONS(2053), + [sym_char_literal] = ACTIONS(2053), + [anon_sym_true] = ACTIONS(2055), + [anon_sym_false] = ACTIONS(2055), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(2055), + [sym_super] = ACTIONS(2055), + [sym_crate] = ACTIONS(2055), + [sym_metavariable] = ACTIONS(2053), + [sym__raw_string_literal_start] = ACTIONS(2053), + [sym_float_literal] = ACTIONS(2053), }, [STATE(551)] = { [sym_line_comment] = STATE(551), [sym_block_comment] = STATE(551), - [ts_builtin_sym_end] = ACTIONS(2030), - [sym_identifier] = ACTIONS(2032), - [anon_sym_SEMI] = ACTIONS(2030), - [anon_sym_macro_rules_BANG] = ACTIONS(2030), - [anon_sym_LPAREN] = ACTIONS(2030), - [anon_sym_LBRACK] = ACTIONS(2030), - [anon_sym_LBRACE] = ACTIONS(2030), - [anon_sym_RBRACE] = ACTIONS(2030), - [anon_sym_STAR] = ACTIONS(2030), - [anon_sym_u8] = ACTIONS(2032), - [anon_sym_i8] = ACTIONS(2032), - [anon_sym_u16] = ACTIONS(2032), - [anon_sym_i16] = ACTIONS(2032), - [anon_sym_u32] = ACTIONS(2032), - [anon_sym_i32] = ACTIONS(2032), - [anon_sym_u64] = ACTIONS(2032), - [anon_sym_i64] = ACTIONS(2032), - [anon_sym_u128] = ACTIONS(2032), - [anon_sym_i128] = ACTIONS(2032), - [anon_sym_isize] = ACTIONS(2032), - [anon_sym_usize] = ACTIONS(2032), - [anon_sym_f32] = ACTIONS(2032), - [anon_sym_f64] = ACTIONS(2032), - [anon_sym_bool] = ACTIONS(2032), - [anon_sym_str] = ACTIONS(2032), - [anon_sym_char] = ACTIONS(2032), - [anon_sym_DASH] = ACTIONS(2030), - [anon_sym_BANG] = ACTIONS(2030), - [anon_sym_AMP] = ACTIONS(2030), - [anon_sym_PIPE] = ACTIONS(2030), - [anon_sym_LT] = ACTIONS(2030), - [anon_sym_DOT_DOT] = ACTIONS(2030), - [anon_sym_COLON_COLON] = ACTIONS(2030), - [anon_sym_POUND] = ACTIONS(2030), - [anon_sym_SQUOTE] = ACTIONS(2032), - [anon_sym_async] = ACTIONS(2032), - [anon_sym_break] = ACTIONS(2032), - [anon_sym_const] = ACTIONS(2032), - [anon_sym_continue] = ACTIONS(2032), - [anon_sym_default] = ACTIONS(2032), - [anon_sym_enum] = ACTIONS(2032), - [anon_sym_fn] = ACTIONS(2032), - [anon_sym_for] = ACTIONS(2032), - [anon_sym_gen] = ACTIONS(2032), - [anon_sym_if] = ACTIONS(2032), - [anon_sym_impl] = ACTIONS(2032), - [anon_sym_let] = ACTIONS(2032), - [anon_sym_loop] = ACTIONS(2032), - [anon_sym_match] = ACTIONS(2032), - [anon_sym_mod] = ACTIONS(2032), - [anon_sym_pub] = ACTIONS(2032), - [anon_sym_return] = ACTIONS(2032), - [anon_sym_static] = ACTIONS(2032), - [anon_sym_struct] = ACTIONS(2032), - [anon_sym_trait] = ACTIONS(2032), - [anon_sym_type] = ACTIONS(2032), - [anon_sym_union] = ACTIONS(2032), - [anon_sym_unsafe] = ACTIONS(2032), - [anon_sym_use] = ACTIONS(2032), - [anon_sym_while] = ACTIONS(2032), - [anon_sym_extern] = ACTIONS(2032), - [anon_sym_yield] = ACTIONS(2032), - [anon_sym_move] = ACTIONS(2032), - [anon_sym_try] = ACTIONS(2032), - [sym_integer_literal] = ACTIONS(2030), - [aux_sym_string_literal_token1] = ACTIONS(2030), - [sym_char_literal] = ACTIONS(2030), - [anon_sym_true] = ACTIONS(2032), - [anon_sym_false] = ACTIONS(2032), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2032), - [sym_super] = ACTIONS(2032), - [sym_crate] = ACTIONS(2032), - [sym_metavariable] = ACTIONS(2030), - [sym__raw_string_literal_start] = ACTIONS(2030), - [sym_float_literal] = ACTIONS(2030), + [ts_builtin_sym_end] = ACTIONS(2057), + [sym_identifier] = ACTIONS(2059), + [anon_sym_SEMI] = ACTIONS(2057), + [anon_sym_macro_rules_BANG] = ACTIONS(2057), + [anon_sym_LPAREN] = ACTIONS(2057), + [anon_sym_LBRACK] = ACTIONS(2057), + [anon_sym_LBRACE] = ACTIONS(2057), + [anon_sym_RBRACE] = ACTIONS(2057), + [anon_sym_STAR] = ACTIONS(2057), + [anon_sym_u8] = ACTIONS(2059), + [anon_sym_i8] = ACTIONS(2059), + [anon_sym_u16] = ACTIONS(2059), + [anon_sym_i16] = ACTIONS(2059), + [anon_sym_u32] = ACTIONS(2059), + [anon_sym_i32] = ACTIONS(2059), + [anon_sym_u64] = ACTIONS(2059), + [anon_sym_i64] = ACTIONS(2059), + [anon_sym_u128] = ACTIONS(2059), + [anon_sym_i128] = ACTIONS(2059), + [anon_sym_isize] = ACTIONS(2059), + [anon_sym_usize] = ACTIONS(2059), + [anon_sym_f32] = ACTIONS(2059), + [anon_sym_f64] = ACTIONS(2059), + [anon_sym_bool] = ACTIONS(2059), + [anon_sym_str] = ACTIONS(2059), + [anon_sym_char] = ACTIONS(2059), + [anon_sym_DASH] = ACTIONS(2057), + [anon_sym_BANG] = ACTIONS(2057), + [anon_sym_AMP] = ACTIONS(2057), + [anon_sym_PIPE] = ACTIONS(2057), + [anon_sym_LT] = ACTIONS(2057), + [anon_sym_DOT_DOT] = ACTIONS(2057), + [anon_sym_COLON_COLON] = ACTIONS(2057), + [anon_sym_POUND] = ACTIONS(2057), + [anon_sym_SQUOTE] = ACTIONS(2059), + [anon_sym_async] = ACTIONS(2059), + [anon_sym_break] = ACTIONS(2059), + [anon_sym_const] = ACTIONS(2059), + [anon_sym_continue] = ACTIONS(2059), + [anon_sym_default] = ACTIONS(2059), + [anon_sym_enum] = ACTIONS(2059), + [anon_sym_fn] = ACTIONS(2059), + [anon_sym_for] = ACTIONS(2059), + [anon_sym_gen] = ACTIONS(2059), + [anon_sym_if] = ACTIONS(2059), + [anon_sym_impl] = ACTIONS(2059), + [anon_sym_let] = ACTIONS(2059), + [anon_sym_loop] = ACTIONS(2059), + [anon_sym_match] = ACTIONS(2059), + [anon_sym_mod] = ACTIONS(2059), + [anon_sym_pub] = ACTIONS(2059), + [anon_sym_return] = ACTIONS(2059), + [anon_sym_static] = ACTIONS(2059), + [anon_sym_struct] = ACTIONS(2059), + [anon_sym_trait] = ACTIONS(2059), + [anon_sym_type] = ACTIONS(2059), + [anon_sym_union] = ACTIONS(2059), + [anon_sym_unsafe] = ACTIONS(2059), + [anon_sym_use] = ACTIONS(2059), + [anon_sym_while] = ACTIONS(2059), + [anon_sym_extern] = ACTIONS(2059), + [anon_sym_safe] = ACTIONS(2059), + [anon_sym_yield] = ACTIONS(2059), + [anon_sym_move] = ACTIONS(2059), + [anon_sym_try] = ACTIONS(2059), + [sym_integer_literal] = ACTIONS(2057), + [aux_sym_string_literal_token1] = ACTIONS(2057), + [sym_char_literal] = ACTIONS(2057), + [anon_sym_true] = ACTIONS(2059), + [anon_sym_false] = ACTIONS(2059), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(2059), + [sym_super] = ACTIONS(2059), + [sym_crate] = ACTIONS(2059), + [sym_metavariable] = ACTIONS(2057), + [sym__raw_string_literal_start] = ACTIONS(2057), + [sym_float_literal] = ACTIONS(2057), }, [STATE(552)] = { [sym_line_comment] = STATE(552), [sym_block_comment] = STATE(552), - [ts_builtin_sym_end] = ACTIONS(2034), - [sym_identifier] = ACTIONS(2036), - [anon_sym_SEMI] = ACTIONS(2034), - [anon_sym_macro_rules_BANG] = ACTIONS(2034), - [anon_sym_LPAREN] = ACTIONS(2034), - [anon_sym_LBRACK] = ACTIONS(2034), - [anon_sym_LBRACE] = ACTIONS(2034), - [anon_sym_RBRACE] = ACTIONS(2034), - [anon_sym_STAR] = ACTIONS(2034), - [anon_sym_u8] = ACTIONS(2036), - [anon_sym_i8] = ACTIONS(2036), - [anon_sym_u16] = ACTIONS(2036), - [anon_sym_i16] = ACTIONS(2036), - [anon_sym_u32] = ACTIONS(2036), - [anon_sym_i32] = ACTIONS(2036), - [anon_sym_u64] = ACTIONS(2036), - [anon_sym_i64] = ACTIONS(2036), - [anon_sym_u128] = ACTIONS(2036), - [anon_sym_i128] = ACTIONS(2036), - [anon_sym_isize] = ACTIONS(2036), - [anon_sym_usize] = ACTIONS(2036), - [anon_sym_f32] = ACTIONS(2036), - [anon_sym_f64] = ACTIONS(2036), - [anon_sym_bool] = ACTIONS(2036), - [anon_sym_str] = ACTIONS(2036), - [anon_sym_char] = ACTIONS(2036), - [anon_sym_DASH] = ACTIONS(2034), - [anon_sym_BANG] = ACTIONS(2034), - [anon_sym_AMP] = ACTIONS(2034), - [anon_sym_PIPE] = ACTIONS(2034), - [anon_sym_LT] = ACTIONS(2034), - [anon_sym_DOT_DOT] = ACTIONS(2034), - [anon_sym_COLON_COLON] = ACTIONS(2034), - [anon_sym_POUND] = ACTIONS(2034), - [anon_sym_SQUOTE] = ACTIONS(2036), - [anon_sym_async] = ACTIONS(2036), - [anon_sym_break] = ACTIONS(2036), - [anon_sym_const] = ACTIONS(2036), - [anon_sym_continue] = ACTIONS(2036), - [anon_sym_default] = ACTIONS(2036), - [anon_sym_enum] = ACTIONS(2036), - [anon_sym_fn] = ACTIONS(2036), - [anon_sym_for] = ACTIONS(2036), - [anon_sym_gen] = ACTIONS(2036), - [anon_sym_if] = ACTIONS(2036), - [anon_sym_impl] = ACTIONS(2036), - [anon_sym_let] = ACTIONS(2036), - [anon_sym_loop] = ACTIONS(2036), - [anon_sym_match] = ACTIONS(2036), - [anon_sym_mod] = ACTIONS(2036), - [anon_sym_pub] = ACTIONS(2036), - [anon_sym_return] = ACTIONS(2036), - [anon_sym_static] = ACTIONS(2036), - [anon_sym_struct] = ACTIONS(2036), - [anon_sym_trait] = ACTIONS(2036), - [anon_sym_type] = ACTIONS(2036), - [anon_sym_union] = ACTIONS(2036), - [anon_sym_unsafe] = ACTIONS(2036), - [anon_sym_use] = ACTIONS(2036), - [anon_sym_while] = ACTIONS(2036), - [anon_sym_extern] = ACTIONS(2036), - [anon_sym_yield] = ACTIONS(2036), - [anon_sym_move] = ACTIONS(2036), - [anon_sym_try] = ACTIONS(2036), - [sym_integer_literal] = ACTIONS(2034), - [aux_sym_string_literal_token1] = ACTIONS(2034), - [sym_char_literal] = ACTIONS(2034), - [anon_sym_true] = ACTIONS(2036), - [anon_sym_false] = ACTIONS(2036), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2036), - [sym_super] = ACTIONS(2036), - [sym_crate] = ACTIONS(2036), - [sym_metavariable] = ACTIONS(2034), - [sym__raw_string_literal_start] = ACTIONS(2034), - [sym_float_literal] = ACTIONS(2034), + [ts_builtin_sym_end] = ACTIONS(2061), + [sym_identifier] = ACTIONS(2063), + [anon_sym_SEMI] = ACTIONS(2061), + [anon_sym_macro_rules_BANG] = ACTIONS(2061), + [anon_sym_LPAREN] = ACTIONS(2061), + [anon_sym_LBRACK] = ACTIONS(2061), + [anon_sym_LBRACE] = ACTIONS(2061), + [anon_sym_RBRACE] = ACTIONS(2061), + [anon_sym_STAR] = ACTIONS(2061), + [anon_sym_u8] = ACTIONS(2063), + [anon_sym_i8] = ACTIONS(2063), + [anon_sym_u16] = ACTIONS(2063), + [anon_sym_i16] = ACTIONS(2063), + [anon_sym_u32] = ACTIONS(2063), + [anon_sym_i32] = ACTIONS(2063), + [anon_sym_u64] = ACTIONS(2063), + [anon_sym_i64] = ACTIONS(2063), + [anon_sym_u128] = ACTIONS(2063), + [anon_sym_i128] = ACTIONS(2063), + [anon_sym_isize] = ACTIONS(2063), + [anon_sym_usize] = ACTIONS(2063), + [anon_sym_f32] = ACTIONS(2063), + [anon_sym_f64] = ACTIONS(2063), + [anon_sym_bool] = ACTIONS(2063), + [anon_sym_str] = ACTIONS(2063), + [anon_sym_char] = ACTIONS(2063), + [anon_sym_DASH] = ACTIONS(2061), + [anon_sym_BANG] = ACTIONS(2061), + [anon_sym_AMP] = ACTIONS(2061), + [anon_sym_PIPE] = ACTIONS(2061), + [anon_sym_LT] = ACTIONS(2061), + [anon_sym_DOT_DOT] = ACTIONS(2061), + [anon_sym_COLON_COLON] = ACTIONS(2061), + [anon_sym_POUND] = ACTIONS(2061), + [anon_sym_SQUOTE] = ACTIONS(2063), + [anon_sym_async] = ACTIONS(2063), + [anon_sym_break] = ACTIONS(2063), + [anon_sym_const] = ACTIONS(2063), + [anon_sym_continue] = ACTIONS(2063), + [anon_sym_default] = ACTIONS(2063), + [anon_sym_enum] = ACTIONS(2063), + [anon_sym_fn] = ACTIONS(2063), + [anon_sym_for] = ACTIONS(2063), + [anon_sym_gen] = ACTIONS(2063), + [anon_sym_if] = ACTIONS(2063), + [anon_sym_impl] = ACTIONS(2063), + [anon_sym_let] = ACTIONS(2063), + [anon_sym_loop] = ACTIONS(2063), + [anon_sym_match] = ACTIONS(2063), + [anon_sym_mod] = ACTIONS(2063), + [anon_sym_pub] = ACTIONS(2063), + [anon_sym_return] = ACTIONS(2063), + [anon_sym_static] = ACTIONS(2063), + [anon_sym_struct] = ACTIONS(2063), + [anon_sym_trait] = ACTIONS(2063), + [anon_sym_type] = ACTIONS(2063), + [anon_sym_union] = ACTIONS(2063), + [anon_sym_unsafe] = ACTIONS(2063), + [anon_sym_use] = ACTIONS(2063), + [anon_sym_while] = ACTIONS(2063), + [anon_sym_extern] = ACTIONS(2063), + [anon_sym_safe] = ACTIONS(2063), + [anon_sym_yield] = ACTIONS(2063), + [anon_sym_move] = ACTIONS(2063), + [anon_sym_try] = ACTIONS(2063), + [sym_integer_literal] = ACTIONS(2061), + [aux_sym_string_literal_token1] = ACTIONS(2061), + [sym_char_literal] = ACTIONS(2061), + [anon_sym_true] = ACTIONS(2063), + [anon_sym_false] = ACTIONS(2063), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(2063), + [sym_super] = ACTIONS(2063), + [sym_crate] = ACTIONS(2063), + [sym_metavariable] = ACTIONS(2061), + [sym__raw_string_literal_start] = ACTIONS(2061), + [sym_float_literal] = ACTIONS(2061), }, [STATE(553)] = { [sym_line_comment] = STATE(553), [sym_block_comment] = STATE(553), - [ts_builtin_sym_end] = ACTIONS(2038), - [sym_identifier] = ACTIONS(2040), - [anon_sym_SEMI] = ACTIONS(2038), - [anon_sym_macro_rules_BANG] = ACTIONS(2038), - [anon_sym_LPAREN] = ACTIONS(2038), - [anon_sym_LBRACK] = ACTIONS(2038), - [anon_sym_LBRACE] = ACTIONS(2038), - [anon_sym_RBRACE] = ACTIONS(2038), - [anon_sym_STAR] = ACTIONS(2038), - [anon_sym_u8] = ACTIONS(2040), - [anon_sym_i8] = ACTIONS(2040), - [anon_sym_u16] = ACTIONS(2040), - [anon_sym_i16] = ACTIONS(2040), - [anon_sym_u32] = ACTIONS(2040), - [anon_sym_i32] = ACTIONS(2040), - [anon_sym_u64] = ACTIONS(2040), - [anon_sym_i64] = ACTIONS(2040), - [anon_sym_u128] = ACTIONS(2040), - [anon_sym_i128] = ACTIONS(2040), - [anon_sym_isize] = ACTIONS(2040), - [anon_sym_usize] = ACTIONS(2040), - [anon_sym_f32] = ACTIONS(2040), - [anon_sym_f64] = ACTIONS(2040), - [anon_sym_bool] = ACTIONS(2040), - [anon_sym_str] = ACTIONS(2040), - [anon_sym_char] = ACTIONS(2040), - [anon_sym_DASH] = ACTIONS(2038), - [anon_sym_BANG] = ACTIONS(2038), - [anon_sym_AMP] = ACTIONS(2038), - [anon_sym_PIPE] = ACTIONS(2038), - [anon_sym_LT] = ACTIONS(2038), - [anon_sym_DOT_DOT] = ACTIONS(2038), - [anon_sym_COLON_COLON] = ACTIONS(2038), - [anon_sym_POUND] = ACTIONS(2038), - [anon_sym_SQUOTE] = ACTIONS(2040), - [anon_sym_async] = ACTIONS(2040), - [anon_sym_break] = ACTIONS(2040), - [anon_sym_const] = ACTIONS(2040), - [anon_sym_continue] = ACTIONS(2040), - [anon_sym_default] = ACTIONS(2040), - [anon_sym_enum] = ACTIONS(2040), - [anon_sym_fn] = ACTIONS(2040), - [anon_sym_for] = ACTIONS(2040), - [anon_sym_gen] = ACTIONS(2040), - [anon_sym_if] = ACTIONS(2040), - [anon_sym_impl] = ACTIONS(2040), - [anon_sym_let] = ACTIONS(2040), - [anon_sym_loop] = ACTIONS(2040), - [anon_sym_match] = ACTIONS(2040), - [anon_sym_mod] = ACTIONS(2040), - [anon_sym_pub] = ACTIONS(2040), - [anon_sym_return] = ACTIONS(2040), - [anon_sym_static] = ACTIONS(2040), - [anon_sym_struct] = ACTIONS(2040), - [anon_sym_trait] = ACTIONS(2040), - [anon_sym_type] = ACTIONS(2040), - [anon_sym_union] = ACTIONS(2040), - [anon_sym_unsafe] = ACTIONS(2040), - [anon_sym_use] = ACTIONS(2040), - [anon_sym_while] = ACTIONS(2040), - [anon_sym_extern] = ACTIONS(2040), - [anon_sym_yield] = ACTIONS(2040), - [anon_sym_move] = ACTIONS(2040), - [anon_sym_try] = ACTIONS(2040), - [sym_integer_literal] = ACTIONS(2038), - [aux_sym_string_literal_token1] = ACTIONS(2038), - [sym_char_literal] = ACTIONS(2038), - [anon_sym_true] = ACTIONS(2040), - [anon_sym_false] = ACTIONS(2040), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2040), - [sym_super] = ACTIONS(2040), - [sym_crate] = ACTIONS(2040), - [sym_metavariable] = ACTIONS(2038), - [sym__raw_string_literal_start] = ACTIONS(2038), - [sym_float_literal] = ACTIONS(2038), + [ts_builtin_sym_end] = ACTIONS(2065), + [sym_identifier] = ACTIONS(2067), + [anon_sym_SEMI] = ACTIONS(2065), + [anon_sym_macro_rules_BANG] = ACTIONS(2065), + [anon_sym_LPAREN] = ACTIONS(2065), + [anon_sym_LBRACK] = ACTIONS(2065), + [anon_sym_LBRACE] = ACTIONS(2065), + [anon_sym_RBRACE] = ACTIONS(2065), + [anon_sym_STAR] = ACTIONS(2065), + [anon_sym_u8] = ACTIONS(2067), + [anon_sym_i8] = ACTIONS(2067), + [anon_sym_u16] = ACTIONS(2067), + [anon_sym_i16] = ACTIONS(2067), + [anon_sym_u32] = ACTIONS(2067), + [anon_sym_i32] = ACTIONS(2067), + [anon_sym_u64] = ACTIONS(2067), + [anon_sym_i64] = ACTIONS(2067), + [anon_sym_u128] = ACTIONS(2067), + [anon_sym_i128] = ACTIONS(2067), + [anon_sym_isize] = ACTIONS(2067), + [anon_sym_usize] = ACTIONS(2067), + [anon_sym_f32] = ACTIONS(2067), + [anon_sym_f64] = ACTIONS(2067), + [anon_sym_bool] = ACTIONS(2067), + [anon_sym_str] = ACTIONS(2067), + [anon_sym_char] = ACTIONS(2067), + [anon_sym_DASH] = ACTIONS(2065), + [anon_sym_BANG] = ACTIONS(2065), + [anon_sym_AMP] = ACTIONS(2065), + [anon_sym_PIPE] = ACTIONS(2065), + [anon_sym_LT] = ACTIONS(2065), + [anon_sym_DOT_DOT] = ACTIONS(2065), + [anon_sym_COLON_COLON] = ACTIONS(2065), + [anon_sym_POUND] = ACTIONS(2065), + [anon_sym_SQUOTE] = ACTIONS(2067), + [anon_sym_async] = ACTIONS(2067), + [anon_sym_break] = ACTIONS(2067), + [anon_sym_const] = ACTIONS(2067), + [anon_sym_continue] = ACTIONS(2067), + [anon_sym_default] = ACTIONS(2067), + [anon_sym_enum] = ACTIONS(2067), + [anon_sym_fn] = ACTIONS(2067), + [anon_sym_for] = ACTIONS(2067), + [anon_sym_gen] = ACTIONS(2067), + [anon_sym_if] = ACTIONS(2067), + [anon_sym_impl] = ACTIONS(2067), + [anon_sym_let] = ACTIONS(2067), + [anon_sym_loop] = ACTIONS(2067), + [anon_sym_match] = ACTIONS(2067), + [anon_sym_mod] = ACTIONS(2067), + [anon_sym_pub] = ACTIONS(2067), + [anon_sym_return] = ACTIONS(2067), + [anon_sym_static] = ACTIONS(2067), + [anon_sym_struct] = ACTIONS(2067), + [anon_sym_trait] = ACTIONS(2067), + [anon_sym_type] = ACTIONS(2067), + [anon_sym_union] = ACTIONS(2067), + [anon_sym_unsafe] = ACTIONS(2067), + [anon_sym_use] = ACTIONS(2067), + [anon_sym_while] = ACTIONS(2067), + [anon_sym_extern] = ACTIONS(2067), + [anon_sym_safe] = ACTIONS(2067), + [anon_sym_yield] = ACTIONS(2067), + [anon_sym_move] = ACTIONS(2067), + [anon_sym_try] = ACTIONS(2067), + [sym_integer_literal] = ACTIONS(2065), + [aux_sym_string_literal_token1] = ACTIONS(2065), + [sym_char_literal] = ACTIONS(2065), + [anon_sym_true] = ACTIONS(2067), + [anon_sym_false] = ACTIONS(2067), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(2067), + [sym_super] = ACTIONS(2067), + [sym_crate] = ACTIONS(2067), + [sym_metavariable] = ACTIONS(2065), + [sym__raw_string_literal_start] = ACTIONS(2065), + [sym_float_literal] = ACTIONS(2065), }, [STATE(554)] = { [sym_line_comment] = STATE(554), [sym_block_comment] = STATE(554), - [ts_builtin_sym_end] = ACTIONS(2042), - [sym_identifier] = ACTIONS(2044), - [anon_sym_SEMI] = ACTIONS(2042), - [anon_sym_macro_rules_BANG] = ACTIONS(2042), - [anon_sym_LPAREN] = ACTIONS(2042), - [anon_sym_LBRACK] = ACTIONS(2042), - [anon_sym_LBRACE] = ACTIONS(2042), - [anon_sym_RBRACE] = ACTIONS(2042), - [anon_sym_STAR] = ACTIONS(2042), - [anon_sym_u8] = ACTIONS(2044), - [anon_sym_i8] = ACTIONS(2044), - [anon_sym_u16] = ACTIONS(2044), - [anon_sym_i16] = ACTIONS(2044), - [anon_sym_u32] = ACTIONS(2044), - [anon_sym_i32] = ACTIONS(2044), - [anon_sym_u64] = ACTIONS(2044), - [anon_sym_i64] = ACTIONS(2044), - [anon_sym_u128] = ACTIONS(2044), - [anon_sym_i128] = ACTIONS(2044), - [anon_sym_isize] = ACTIONS(2044), - [anon_sym_usize] = ACTIONS(2044), - [anon_sym_f32] = ACTIONS(2044), - [anon_sym_f64] = ACTIONS(2044), - [anon_sym_bool] = ACTIONS(2044), - [anon_sym_str] = ACTIONS(2044), - [anon_sym_char] = ACTIONS(2044), - [anon_sym_DASH] = ACTIONS(2042), - [anon_sym_BANG] = ACTIONS(2042), - [anon_sym_AMP] = ACTIONS(2042), - [anon_sym_PIPE] = ACTIONS(2042), - [anon_sym_LT] = ACTIONS(2042), - [anon_sym_DOT_DOT] = ACTIONS(2042), - [anon_sym_COLON_COLON] = ACTIONS(2042), - [anon_sym_POUND] = ACTIONS(2042), - [anon_sym_SQUOTE] = ACTIONS(2044), - [anon_sym_async] = ACTIONS(2044), - [anon_sym_break] = ACTIONS(2044), - [anon_sym_const] = ACTIONS(2044), - [anon_sym_continue] = ACTIONS(2044), - [anon_sym_default] = ACTIONS(2044), - [anon_sym_enum] = ACTIONS(2044), - [anon_sym_fn] = ACTIONS(2044), - [anon_sym_for] = ACTIONS(2044), - [anon_sym_gen] = ACTIONS(2044), - [anon_sym_if] = ACTIONS(2044), - [anon_sym_impl] = ACTIONS(2044), - [anon_sym_let] = ACTIONS(2044), - [anon_sym_loop] = ACTIONS(2044), - [anon_sym_match] = ACTIONS(2044), - [anon_sym_mod] = ACTIONS(2044), - [anon_sym_pub] = ACTIONS(2044), - [anon_sym_return] = ACTIONS(2044), - [anon_sym_static] = ACTIONS(2044), - [anon_sym_struct] = ACTIONS(2044), - [anon_sym_trait] = ACTIONS(2044), - [anon_sym_type] = ACTIONS(2044), - [anon_sym_union] = ACTIONS(2044), - [anon_sym_unsafe] = ACTIONS(2044), - [anon_sym_use] = ACTIONS(2044), - [anon_sym_while] = ACTIONS(2044), - [anon_sym_extern] = ACTIONS(2044), - [anon_sym_yield] = ACTIONS(2044), - [anon_sym_move] = ACTIONS(2044), - [anon_sym_try] = ACTIONS(2044), - [sym_integer_literal] = ACTIONS(2042), - [aux_sym_string_literal_token1] = ACTIONS(2042), - [sym_char_literal] = ACTIONS(2042), - [anon_sym_true] = ACTIONS(2044), - [anon_sym_false] = ACTIONS(2044), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2044), - [sym_super] = ACTIONS(2044), - [sym_crate] = ACTIONS(2044), - [sym_metavariable] = ACTIONS(2042), - [sym__raw_string_literal_start] = ACTIONS(2042), - [sym_float_literal] = ACTIONS(2042), + [ts_builtin_sym_end] = ACTIONS(2069), + [sym_identifier] = ACTIONS(2071), + [anon_sym_SEMI] = ACTIONS(2069), + [anon_sym_macro_rules_BANG] = ACTIONS(2069), + [anon_sym_LPAREN] = ACTIONS(2069), + [anon_sym_LBRACK] = ACTIONS(2069), + [anon_sym_LBRACE] = ACTIONS(2069), + [anon_sym_RBRACE] = ACTIONS(2069), + [anon_sym_STAR] = ACTIONS(2069), + [anon_sym_u8] = ACTIONS(2071), + [anon_sym_i8] = ACTIONS(2071), + [anon_sym_u16] = ACTIONS(2071), + [anon_sym_i16] = ACTIONS(2071), + [anon_sym_u32] = ACTIONS(2071), + [anon_sym_i32] = ACTIONS(2071), + [anon_sym_u64] = ACTIONS(2071), + [anon_sym_i64] = ACTIONS(2071), + [anon_sym_u128] = ACTIONS(2071), + [anon_sym_i128] = ACTIONS(2071), + [anon_sym_isize] = ACTIONS(2071), + [anon_sym_usize] = ACTIONS(2071), + [anon_sym_f32] = ACTIONS(2071), + [anon_sym_f64] = ACTIONS(2071), + [anon_sym_bool] = ACTIONS(2071), + [anon_sym_str] = ACTIONS(2071), + [anon_sym_char] = ACTIONS(2071), + [anon_sym_DASH] = ACTIONS(2069), + [anon_sym_BANG] = ACTIONS(2069), + [anon_sym_AMP] = ACTIONS(2069), + [anon_sym_PIPE] = ACTIONS(2069), + [anon_sym_LT] = ACTIONS(2069), + [anon_sym_DOT_DOT] = ACTIONS(2069), + [anon_sym_COLON_COLON] = ACTIONS(2069), + [anon_sym_POUND] = ACTIONS(2069), + [anon_sym_SQUOTE] = ACTIONS(2071), + [anon_sym_async] = ACTIONS(2071), + [anon_sym_break] = ACTIONS(2071), + [anon_sym_const] = ACTIONS(2071), + [anon_sym_continue] = ACTIONS(2071), + [anon_sym_default] = ACTIONS(2071), + [anon_sym_enum] = ACTIONS(2071), + [anon_sym_fn] = ACTIONS(2071), + [anon_sym_for] = ACTIONS(2071), + [anon_sym_gen] = ACTIONS(2071), + [anon_sym_if] = ACTIONS(2071), + [anon_sym_impl] = ACTIONS(2071), + [anon_sym_let] = ACTIONS(2071), + [anon_sym_loop] = ACTIONS(2071), + [anon_sym_match] = ACTIONS(2071), + [anon_sym_mod] = ACTIONS(2071), + [anon_sym_pub] = ACTIONS(2071), + [anon_sym_return] = ACTIONS(2071), + [anon_sym_static] = ACTIONS(2071), + [anon_sym_struct] = ACTIONS(2071), + [anon_sym_trait] = ACTIONS(2071), + [anon_sym_type] = ACTIONS(2071), + [anon_sym_union] = ACTIONS(2071), + [anon_sym_unsafe] = ACTIONS(2071), + [anon_sym_use] = ACTIONS(2071), + [anon_sym_while] = ACTIONS(2071), + [anon_sym_extern] = ACTIONS(2071), + [anon_sym_safe] = ACTIONS(2071), + [anon_sym_yield] = ACTIONS(2071), + [anon_sym_move] = ACTIONS(2071), + [anon_sym_try] = ACTIONS(2071), + [sym_integer_literal] = ACTIONS(2069), + [aux_sym_string_literal_token1] = ACTIONS(2069), + [sym_char_literal] = ACTIONS(2069), + [anon_sym_true] = ACTIONS(2071), + [anon_sym_false] = ACTIONS(2071), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(2071), + [sym_super] = ACTIONS(2071), + [sym_crate] = ACTIONS(2071), + [sym_metavariable] = ACTIONS(2069), + [sym__raw_string_literal_start] = ACTIONS(2069), + [sym_float_literal] = ACTIONS(2069), }, [STATE(555)] = { [sym_line_comment] = STATE(555), [sym_block_comment] = STATE(555), - [ts_builtin_sym_end] = ACTIONS(2046), - [sym_identifier] = ACTIONS(2048), - [anon_sym_SEMI] = ACTIONS(2046), - [anon_sym_macro_rules_BANG] = ACTIONS(2046), - [anon_sym_LPAREN] = ACTIONS(2046), - [anon_sym_LBRACK] = ACTIONS(2046), - [anon_sym_LBRACE] = ACTIONS(2046), - [anon_sym_RBRACE] = ACTIONS(2046), - [anon_sym_STAR] = ACTIONS(2046), - [anon_sym_u8] = ACTIONS(2048), - [anon_sym_i8] = ACTIONS(2048), - [anon_sym_u16] = ACTIONS(2048), - [anon_sym_i16] = ACTIONS(2048), - [anon_sym_u32] = ACTIONS(2048), - [anon_sym_i32] = ACTIONS(2048), - [anon_sym_u64] = ACTIONS(2048), - [anon_sym_i64] = ACTIONS(2048), - [anon_sym_u128] = ACTIONS(2048), - [anon_sym_i128] = ACTIONS(2048), - [anon_sym_isize] = ACTIONS(2048), - [anon_sym_usize] = ACTIONS(2048), - [anon_sym_f32] = ACTIONS(2048), - [anon_sym_f64] = ACTIONS(2048), - [anon_sym_bool] = ACTIONS(2048), - [anon_sym_str] = ACTIONS(2048), - [anon_sym_char] = ACTIONS(2048), - [anon_sym_DASH] = ACTIONS(2046), - [anon_sym_BANG] = ACTIONS(2046), - [anon_sym_AMP] = ACTIONS(2046), - [anon_sym_PIPE] = ACTIONS(2046), - [anon_sym_LT] = ACTIONS(2046), - [anon_sym_DOT_DOT] = ACTIONS(2046), - [anon_sym_COLON_COLON] = ACTIONS(2046), - [anon_sym_POUND] = ACTIONS(2046), - [anon_sym_SQUOTE] = ACTIONS(2048), - [anon_sym_async] = ACTIONS(2048), - [anon_sym_break] = ACTIONS(2048), - [anon_sym_const] = ACTIONS(2048), - [anon_sym_continue] = ACTIONS(2048), - [anon_sym_default] = ACTIONS(2048), - [anon_sym_enum] = ACTIONS(2048), - [anon_sym_fn] = ACTIONS(2048), - [anon_sym_for] = ACTIONS(2048), - [anon_sym_gen] = ACTIONS(2048), - [anon_sym_if] = ACTIONS(2048), - [anon_sym_impl] = ACTIONS(2048), - [anon_sym_let] = ACTIONS(2048), - [anon_sym_loop] = ACTIONS(2048), - [anon_sym_match] = ACTIONS(2048), - [anon_sym_mod] = ACTIONS(2048), - [anon_sym_pub] = ACTIONS(2048), - [anon_sym_return] = ACTIONS(2048), - [anon_sym_static] = ACTIONS(2048), - [anon_sym_struct] = ACTIONS(2048), - [anon_sym_trait] = ACTIONS(2048), - [anon_sym_type] = ACTIONS(2048), - [anon_sym_union] = ACTIONS(2048), - [anon_sym_unsafe] = ACTIONS(2048), - [anon_sym_use] = ACTIONS(2048), - [anon_sym_while] = ACTIONS(2048), - [anon_sym_extern] = ACTIONS(2048), - [anon_sym_yield] = ACTIONS(2048), - [anon_sym_move] = ACTIONS(2048), - [anon_sym_try] = ACTIONS(2048), - [sym_integer_literal] = ACTIONS(2046), - [aux_sym_string_literal_token1] = ACTIONS(2046), - [sym_char_literal] = ACTIONS(2046), - [anon_sym_true] = ACTIONS(2048), - [anon_sym_false] = ACTIONS(2048), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2048), - [sym_super] = ACTIONS(2048), - [sym_crate] = ACTIONS(2048), - [sym_metavariable] = ACTIONS(2046), - [sym__raw_string_literal_start] = ACTIONS(2046), - [sym_float_literal] = ACTIONS(2046), + [ts_builtin_sym_end] = ACTIONS(2073), + [sym_identifier] = ACTIONS(2075), + [anon_sym_SEMI] = ACTIONS(2073), + [anon_sym_macro_rules_BANG] = ACTIONS(2073), + [anon_sym_LPAREN] = ACTIONS(2073), + [anon_sym_LBRACK] = ACTIONS(2073), + [anon_sym_LBRACE] = ACTIONS(2073), + [anon_sym_RBRACE] = ACTIONS(2073), + [anon_sym_STAR] = ACTIONS(2073), + [anon_sym_u8] = ACTIONS(2075), + [anon_sym_i8] = ACTIONS(2075), + [anon_sym_u16] = ACTIONS(2075), + [anon_sym_i16] = ACTIONS(2075), + [anon_sym_u32] = ACTIONS(2075), + [anon_sym_i32] = ACTIONS(2075), + [anon_sym_u64] = ACTIONS(2075), + [anon_sym_i64] = ACTIONS(2075), + [anon_sym_u128] = ACTIONS(2075), + [anon_sym_i128] = ACTIONS(2075), + [anon_sym_isize] = ACTIONS(2075), + [anon_sym_usize] = ACTIONS(2075), + [anon_sym_f32] = ACTIONS(2075), + [anon_sym_f64] = ACTIONS(2075), + [anon_sym_bool] = ACTIONS(2075), + [anon_sym_str] = ACTIONS(2075), + [anon_sym_char] = ACTIONS(2075), + [anon_sym_DASH] = ACTIONS(2073), + [anon_sym_BANG] = ACTIONS(2073), + [anon_sym_AMP] = ACTIONS(2073), + [anon_sym_PIPE] = ACTIONS(2073), + [anon_sym_LT] = ACTIONS(2073), + [anon_sym_DOT_DOT] = ACTIONS(2073), + [anon_sym_COLON_COLON] = ACTIONS(2073), + [anon_sym_POUND] = ACTIONS(2073), + [anon_sym_SQUOTE] = ACTIONS(2075), + [anon_sym_async] = ACTIONS(2075), + [anon_sym_break] = ACTIONS(2075), + [anon_sym_const] = ACTIONS(2075), + [anon_sym_continue] = ACTIONS(2075), + [anon_sym_default] = ACTIONS(2075), + [anon_sym_enum] = ACTIONS(2075), + [anon_sym_fn] = ACTIONS(2075), + [anon_sym_for] = ACTIONS(2075), + [anon_sym_gen] = ACTIONS(2075), + [anon_sym_if] = ACTIONS(2075), + [anon_sym_impl] = ACTIONS(2075), + [anon_sym_let] = ACTIONS(2075), + [anon_sym_loop] = ACTIONS(2075), + [anon_sym_match] = ACTIONS(2075), + [anon_sym_mod] = ACTIONS(2075), + [anon_sym_pub] = ACTIONS(2075), + [anon_sym_return] = ACTIONS(2075), + [anon_sym_static] = ACTIONS(2075), + [anon_sym_struct] = ACTIONS(2075), + [anon_sym_trait] = ACTIONS(2075), + [anon_sym_type] = ACTIONS(2075), + [anon_sym_union] = ACTIONS(2075), + [anon_sym_unsafe] = ACTIONS(2075), + [anon_sym_use] = ACTIONS(2075), + [anon_sym_while] = ACTIONS(2075), + [anon_sym_extern] = ACTIONS(2075), + [anon_sym_safe] = ACTIONS(2075), + [anon_sym_yield] = ACTIONS(2075), + [anon_sym_move] = ACTIONS(2075), + [anon_sym_try] = ACTIONS(2075), + [sym_integer_literal] = ACTIONS(2073), + [aux_sym_string_literal_token1] = ACTIONS(2073), + [sym_char_literal] = ACTIONS(2073), + [anon_sym_true] = ACTIONS(2075), + [anon_sym_false] = ACTIONS(2075), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(2075), + [sym_super] = ACTIONS(2075), + [sym_crate] = ACTIONS(2075), + [sym_metavariable] = ACTIONS(2073), + [sym__raw_string_literal_start] = ACTIONS(2073), + [sym_float_literal] = ACTIONS(2073), }, [STATE(556)] = { [sym_line_comment] = STATE(556), [sym_block_comment] = STATE(556), - [ts_builtin_sym_end] = ACTIONS(2050), - [sym_identifier] = ACTIONS(2052), - [anon_sym_SEMI] = ACTIONS(2050), - [anon_sym_macro_rules_BANG] = ACTIONS(2050), - [anon_sym_LPAREN] = ACTIONS(2050), - [anon_sym_LBRACK] = ACTIONS(2050), - [anon_sym_LBRACE] = ACTIONS(2050), - [anon_sym_RBRACE] = ACTIONS(2050), - [anon_sym_STAR] = ACTIONS(2050), - [anon_sym_u8] = ACTIONS(2052), - [anon_sym_i8] = ACTIONS(2052), - [anon_sym_u16] = ACTIONS(2052), - [anon_sym_i16] = ACTIONS(2052), - [anon_sym_u32] = ACTIONS(2052), - [anon_sym_i32] = ACTIONS(2052), - [anon_sym_u64] = ACTIONS(2052), - [anon_sym_i64] = ACTIONS(2052), - [anon_sym_u128] = ACTIONS(2052), - [anon_sym_i128] = ACTIONS(2052), - [anon_sym_isize] = ACTIONS(2052), - [anon_sym_usize] = ACTIONS(2052), - [anon_sym_f32] = ACTIONS(2052), - [anon_sym_f64] = ACTIONS(2052), - [anon_sym_bool] = ACTIONS(2052), - [anon_sym_str] = ACTIONS(2052), - [anon_sym_char] = ACTIONS(2052), - [anon_sym_DASH] = ACTIONS(2050), - [anon_sym_BANG] = ACTIONS(2050), - [anon_sym_AMP] = ACTIONS(2050), - [anon_sym_PIPE] = ACTIONS(2050), - [anon_sym_LT] = ACTIONS(2050), - [anon_sym_DOT_DOT] = ACTIONS(2050), - [anon_sym_COLON_COLON] = ACTIONS(2050), - [anon_sym_POUND] = ACTIONS(2050), - [anon_sym_SQUOTE] = ACTIONS(2052), - [anon_sym_async] = ACTIONS(2052), - [anon_sym_break] = ACTIONS(2052), - [anon_sym_const] = ACTIONS(2052), - [anon_sym_continue] = ACTIONS(2052), - [anon_sym_default] = ACTIONS(2052), - [anon_sym_enum] = ACTIONS(2052), - [anon_sym_fn] = ACTIONS(2052), - [anon_sym_for] = ACTIONS(2052), - [anon_sym_gen] = ACTIONS(2052), - [anon_sym_if] = ACTIONS(2052), - [anon_sym_impl] = ACTIONS(2052), - [anon_sym_let] = ACTIONS(2052), - [anon_sym_loop] = ACTIONS(2052), - [anon_sym_match] = ACTIONS(2052), - [anon_sym_mod] = ACTIONS(2052), - [anon_sym_pub] = ACTIONS(2052), - [anon_sym_return] = ACTIONS(2052), - [anon_sym_static] = ACTIONS(2052), - [anon_sym_struct] = ACTIONS(2052), - [anon_sym_trait] = ACTIONS(2052), - [anon_sym_type] = ACTIONS(2052), - [anon_sym_union] = ACTIONS(2052), - [anon_sym_unsafe] = ACTIONS(2052), - [anon_sym_use] = ACTIONS(2052), - [anon_sym_while] = ACTIONS(2052), - [anon_sym_extern] = ACTIONS(2052), - [anon_sym_yield] = ACTIONS(2052), - [anon_sym_move] = ACTIONS(2052), - [anon_sym_try] = ACTIONS(2052), - [sym_integer_literal] = ACTIONS(2050), - [aux_sym_string_literal_token1] = ACTIONS(2050), - [sym_char_literal] = ACTIONS(2050), - [anon_sym_true] = ACTIONS(2052), - [anon_sym_false] = ACTIONS(2052), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2052), - [sym_super] = ACTIONS(2052), - [sym_crate] = ACTIONS(2052), - [sym_metavariable] = ACTIONS(2050), - [sym__raw_string_literal_start] = ACTIONS(2050), - [sym_float_literal] = ACTIONS(2050), + [ts_builtin_sym_end] = ACTIONS(2077), + [sym_identifier] = ACTIONS(2079), + [anon_sym_SEMI] = ACTIONS(2077), + [anon_sym_macro_rules_BANG] = ACTIONS(2077), + [anon_sym_LPAREN] = ACTIONS(2077), + [anon_sym_LBRACK] = ACTIONS(2077), + [anon_sym_LBRACE] = ACTIONS(2077), + [anon_sym_RBRACE] = ACTIONS(2077), + [anon_sym_STAR] = ACTIONS(2077), + [anon_sym_u8] = ACTIONS(2079), + [anon_sym_i8] = ACTIONS(2079), + [anon_sym_u16] = ACTIONS(2079), + [anon_sym_i16] = ACTIONS(2079), + [anon_sym_u32] = ACTIONS(2079), + [anon_sym_i32] = ACTIONS(2079), + [anon_sym_u64] = ACTIONS(2079), + [anon_sym_i64] = ACTIONS(2079), + [anon_sym_u128] = ACTIONS(2079), + [anon_sym_i128] = ACTIONS(2079), + [anon_sym_isize] = ACTIONS(2079), + [anon_sym_usize] = ACTIONS(2079), + [anon_sym_f32] = ACTIONS(2079), + [anon_sym_f64] = ACTIONS(2079), + [anon_sym_bool] = ACTIONS(2079), + [anon_sym_str] = ACTIONS(2079), + [anon_sym_char] = ACTIONS(2079), + [anon_sym_DASH] = ACTIONS(2077), + [anon_sym_BANG] = ACTIONS(2077), + [anon_sym_AMP] = ACTIONS(2077), + [anon_sym_PIPE] = ACTIONS(2077), + [anon_sym_LT] = ACTIONS(2077), + [anon_sym_DOT_DOT] = ACTIONS(2077), + [anon_sym_COLON_COLON] = ACTIONS(2077), + [anon_sym_POUND] = ACTIONS(2077), + [anon_sym_SQUOTE] = ACTIONS(2079), + [anon_sym_async] = ACTIONS(2079), + [anon_sym_break] = ACTIONS(2079), + [anon_sym_const] = ACTIONS(2079), + [anon_sym_continue] = ACTIONS(2079), + [anon_sym_default] = ACTIONS(2079), + [anon_sym_enum] = ACTIONS(2079), + [anon_sym_fn] = ACTIONS(2079), + [anon_sym_for] = ACTIONS(2079), + [anon_sym_gen] = ACTIONS(2079), + [anon_sym_if] = ACTIONS(2079), + [anon_sym_impl] = ACTIONS(2079), + [anon_sym_let] = ACTIONS(2079), + [anon_sym_loop] = ACTIONS(2079), + [anon_sym_match] = ACTIONS(2079), + [anon_sym_mod] = ACTIONS(2079), + [anon_sym_pub] = ACTIONS(2079), + [anon_sym_return] = ACTIONS(2079), + [anon_sym_static] = ACTIONS(2079), + [anon_sym_struct] = ACTIONS(2079), + [anon_sym_trait] = ACTIONS(2079), + [anon_sym_type] = ACTIONS(2079), + [anon_sym_union] = ACTIONS(2079), + [anon_sym_unsafe] = ACTIONS(2079), + [anon_sym_use] = ACTIONS(2079), + [anon_sym_while] = ACTIONS(2079), + [anon_sym_extern] = ACTIONS(2079), + [anon_sym_safe] = ACTIONS(2079), + [anon_sym_yield] = ACTIONS(2079), + [anon_sym_move] = ACTIONS(2079), + [anon_sym_try] = ACTIONS(2079), + [sym_integer_literal] = ACTIONS(2077), + [aux_sym_string_literal_token1] = ACTIONS(2077), + [sym_char_literal] = ACTIONS(2077), + [anon_sym_true] = ACTIONS(2079), + [anon_sym_false] = ACTIONS(2079), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(2079), + [sym_super] = ACTIONS(2079), + [sym_crate] = ACTIONS(2079), + [sym_metavariable] = ACTIONS(2077), + [sym__raw_string_literal_start] = ACTIONS(2077), + [sym_float_literal] = ACTIONS(2077), }, [STATE(557)] = { [sym_line_comment] = STATE(557), [sym_block_comment] = STATE(557), - [ts_builtin_sym_end] = ACTIONS(2054), - [sym_identifier] = ACTIONS(2056), - [anon_sym_SEMI] = ACTIONS(2054), - [anon_sym_macro_rules_BANG] = ACTIONS(2054), - [anon_sym_LPAREN] = ACTIONS(2054), - [anon_sym_LBRACK] = ACTIONS(2054), - [anon_sym_LBRACE] = ACTIONS(2054), - [anon_sym_RBRACE] = ACTIONS(2054), - [anon_sym_STAR] = ACTIONS(2054), - [anon_sym_u8] = ACTIONS(2056), - [anon_sym_i8] = ACTIONS(2056), - [anon_sym_u16] = ACTIONS(2056), - [anon_sym_i16] = ACTIONS(2056), - [anon_sym_u32] = ACTIONS(2056), - [anon_sym_i32] = ACTIONS(2056), - [anon_sym_u64] = ACTIONS(2056), - [anon_sym_i64] = ACTIONS(2056), - [anon_sym_u128] = ACTIONS(2056), - [anon_sym_i128] = ACTIONS(2056), - [anon_sym_isize] = ACTIONS(2056), - [anon_sym_usize] = ACTIONS(2056), - [anon_sym_f32] = ACTIONS(2056), - [anon_sym_f64] = ACTIONS(2056), - [anon_sym_bool] = ACTIONS(2056), - [anon_sym_str] = ACTIONS(2056), - [anon_sym_char] = ACTIONS(2056), - [anon_sym_DASH] = ACTIONS(2054), - [anon_sym_BANG] = ACTIONS(2054), - [anon_sym_AMP] = ACTIONS(2054), - [anon_sym_PIPE] = ACTIONS(2054), - [anon_sym_LT] = ACTIONS(2054), - [anon_sym_DOT_DOT] = ACTIONS(2054), - [anon_sym_COLON_COLON] = ACTIONS(2054), - [anon_sym_POUND] = ACTIONS(2054), - [anon_sym_SQUOTE] = ACTIONS(2056), - [anon_sym_async] = ACTIONS(2056), - [anon_sym_break] = ACTIONS(2056), - [anon_sym_const] = ACTIONS(2056), - [anon_sym_continue] = ACTIONS(2056), - [anon_sym_default] = ACTIONS(2056), - [anon_sym_enum] = ACTIONS(2056), - [anon_sym_fn] = ACTIONS(2056), - [anon_sym_for] = ACTIONS(2056), - [anon_sym_gen] = ACTIONS(2056), - [anon_sym_if] = ACTIONS(2056), - [anon_sym_impl] = ACTIONS(2056), - [anon_sym_let] = ACTIONS(2056), - [anon_sym_loop] = ACTIONS(2056), - [anon_sym_match] = ACTIONS(2056), - [anon_sym_mod] = ACTIONS(2056), - [anon_sym_pub] = ACTIONS(2056), - [anon_sym_return] = ACTIONS(2056), - [anon_sym_static] = ACTIONS(2056), - [anon_sym_struct] = ACTIONS(2056), - [anon_sym_trait] = ACTIONS(2056), - [anon_sym_type] = ACTIONS(2056), - [anon_sym_union] = ACTIONS(2056), - [anon_sym_unsafe] = ACTIONS(2056), - [anon_sym_use] = ACTIONS(2056), - [anon_sym_while] = ACTIONS(2056), - [anon_sym_extern] = ACTIONS(2056), - [anon_sym_yield] = ACTIONS(2056), - [anon_sym_move] = ACTIONS(2056), - [anon_sym_try] = ACTIONS(2056), - [sym_integer_literal] = ACTIONS(2054), - [aux_sym_string_literal_token1] = ACTIONS(2054), - [sym_char_literal] = ACTIONS(2054), - [anon_sym_true] = ACTIONS(2056), - [anon_sym_false] = ACTIONS(2056), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2056), - [sym_super] = ACTIONS(2056), - [sym_crate] = ACTIONS(2056), - [sym_metavariable] = ACTIONS(2054), - [sym__raw_string_literal_start] = ACTIONS(2054), - [sym_float_literal] = ACTIONS(2054), + [ts_builtin_sym_end] = ACTIONS(2081), + [sym_identifier] = ACTIONS(2083), + [anon_sym_SEMI] = ACTIONS(2081), + [anon_sym_macro_rules_BANG] = ACTIONS(2081), + [anon_sym_LPAREN] = ACTIONS(2081), + [anon_sym_LBRACK] = ACTIONS(2081), + [anon_sym_LBRACE] = ACTIONS(2081), + [anon_sym_RBRACE] = ACTIONS(2081), + [anon_sym_STAR] = ACTIONS(2081), + [anon_sym_u8] = ACTIONS(2083), + [anon_sym_i8] = ACTIONS(2083), + [anon_sym_u16] = ACTIONS(2083), + [anon_sym_i16] = ACTIONS(2083), + [anon_sym_u32] = ACTIONS(2083), + [anon_sym_i32] = ACTIONS(2083), + [anon_sym_u64] = ACTIONS(2083), + [anon_sym_i64] = ACTIONS(2083), + [anon_sym_u128] = ACTIONS(2083), + [anon_sym_i128] = ACTIONS(2083), + [anon_sym_isize] = ACTIONS(2083), + [anon_sym_usize] = ACTIONS(2083), + [anon_sym_f32] = ACTIONS(2083), + [anon_sym_f64] = ACTIONS(2083), + [anon_sym_bool] = ACTIONS(2083), + [anon_sym_str] = ACTIONS(2083), + [anon_sym_char] = ACTIONS(2083), + [anon_sym_DASH] = ACTIONS(2081), + [anon_sym_BANG] = ACTIONS(2081), + [anon_sym_AMP] = ACTIONS(2081), + [anon_sym_PIPE] = ACTIONS(2081), + [anon_sym_LT] = ACTIONS(2081), + [anon_sym_DOT_DOT] = ACTIONS(2081), + [anon_sym_COLON_COLON] = ACTIONS(2081), + [anon_sym_POUND] = ACTIONS(2081), + [anon_sym_SQUOTE] = ACTIONS(2083), + [anon_sym_async] = ACTIONS(2083), + [anon_sym_break] = ACTIONS(2083), + [anon_sym_const] = ACTIONS(2083), + [anon_sym_continue] = ACTIONS(2083), + [anon_sym_default] = ACTIONS(2083), + [anon_sym_enum] = ACTIONS(2083), + [anon_sym_fn] = ACTIONS(2083), + [anon_sym_for] = ACTIONS(2083), + [anon_sym_gen] = ACTIONS(2083), + [anon_sym_if] = ACTIONS(2083), + [anon_sym_impl] = ACTIONS(2083), + [anon_sym_let] = ACTIONS(2083), + [anon_sym_loop] = ACTIONS(2083), + [anon_sym_match] = ACTIONS(2083), + [anon_sym_mod] = ACTIONS(2083), + [anon_sym_pub] = ACTIONS(2083), + [anon_sym_return] = ACTIONS(2083), + [anon_sym_static] = ACTIONS(2083), + [anon_sym_struct] = ACTIONS(2083), + [anon_sym_trait] = ACTIONS(2083), + [anon_sym_type] = ACTIONS(2083), + [anon_sym_union] = ACTIONS(2083), + [anon_sym_unsafe] = ACTIONS(2083), + [anon_sym_use] = ACTIONS(2083), + [anon_sym_while] = ACTIONS(2083), + [anon_sym_extern] = ACTIONS(2083), + [anon_sym_safe] = ACTIONS(2083), + [anon_sym_yield] = ACTIONS(2083), + [anon_sym_move] = ACTIONS(2083), + [anon_sym_try] = ACTIONS(2083), + [sym_integer_literal] = ACTIONS(2081), + [aux_sym_string_literal_token1] = ACTIONS(2081), + [sym_char_literal] = ACTIONS(2081), + [anon_sym_true] = ACTIONS(2083), + [anon_sym_false] = ACTIONS(2083), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(2083), + [sym_super] = ACTIONS(2083), + [sym_crate] = ACTIONS(2083), + [sym_metavariable] = ACTIONS(2081), + [sym__raw_string_literal_start] = ACTIONS(2081), + [sym_float_literal] = ACTIONS(2081), }, [STATE(558)] = { [sym_line_comment] = STATE(558), [sym_block_comment] = STATE(558), - [ts_builtin_sym_end] = ACTIONS(2058), - [sym_identifier] = ACTIONS(2060), - [anon_sym_SEMI] = ACTIONS(2058), - [anon_sym_macro_rules_BANG] = ACTIONS(2058), - [anon_sym_LPAREN] = ACTIONS(2058), - [anon_sym_LBRACK] = ACTIONS(2058), - [anon_sym_LBRACE] = ACTIONS(2058), - [anon_sym_RBRACE] = ACTIONS(2058), - [anon_sym_STAR] = ACTIONS(2058), - [anon_sym_u8] = ACTIONS(2060), - [anon_sym_i8] = ACTIONS(2060), - [anon_sym_u16] = ACTIONS(2060), - [anon_sym_i16] = ACTIONS(2060), - [anon_sym_u32] = ACTIONS(2060), - [anon_sym_i32] = ACTIONS(2060), - [anon_sym_u64] = ACTIONS(2060), - [anon_sym_i64] = ACTIONS(2060), - [anon_sym_u128] = ACTIONS(2060), - [anon_sym_i128] = ACTIONS(2060), - [anon_sym_isize] = ACTIONS(2060), - [anon_sym_usize] = ACTIONS(2060), - [anon_sym_f32] = ACTIONS(2060), - [anon_sym_f64] = ACTIONS(2060), - [anon_sym_bool] = ACTIONS(2060), - [anon_sym_str] = ACTIONS(2060), - [anon_sym_char] = ACTIONS(2060), - [anon_sym_DASH] = ACTIONS(2058), - [anon_sym_BANG] = ACTIONS(2058), - [anon_sym_AMP] = ACTIONS(2058), - [anon_sym_PIPE] = ACTIONS(2058), - [anon_sym_LT] = ACTIONS(2058), - [anon_sym_DOT_DOT] = ACTIONS(2058), - [anon_sym_COLON_COLON] = ACTIONS(2058), - [anon_sym_POUND] = ACTIONS(2058), - [anon_sym_SQUOTE] = ACTIONS(2060), - [anon_sym_async] = ACTIONS(2060), - [anon_sym_break] = ACTIONS(2060), - [anon_sym_const] = ACTIONS(2060), - [anon_sym_continue] = ACTIONS(2060), - [anon_sym_default] = ACTIONS(2060), - [anon_sym_enum] = ACTIONS(2060), - [anon_sym_fn] = ACTIONS(2060), - [anon_sym_for] = ACTIONS(2060), - [anon_sym_gen] = ACTIONS(2060), - [anon_sym_if] = ACTIONS(2060), - [anon_sym_impl] = ACTIONS(2060), - [anon_sym_let] = ACTIONS(2060), - [anon_sym_loop] = ACTIONS(2060), - [anon_sym_match] = ACTIONS(2060), - [anon_sym_mod] = ACTIONS(2060), - [anon_sym_pub] = ACTIONS(2060), - [anon_sym_return] = ACTIONS(2060), - [anon_sym_static] = ACTIONS(2060), - [anon_sym_struct] = ACTIONS(2060), - [anon_sym_trait] = ACTIONS(2060), - [anon_sym_type] = ACTIONS(2060), - [anon_sym_union] = ACTIONS(2060), - [anon_sym_unsafe] = ACTIONS(2060), - [anon_sym_use] = ACTIONS(2060), - [anon_sym_while] = ACTIONS(2060), - [anon_sym_extern] = ACTIONS(2060), - [anon_sym_yield] = ACTIONS(2060), - [anon_sym_move] = ACTIONS(2060), - [anon_sym_try] = ACTIONS(2060), - [sym_integer_literal] = ACTIONS(2058), - [aux_sym_string_literal_token1] = ACTIONS(2058), - [sym_char_literal] = ACTIONS(2058), - [anon_sym_true] = ACTIONS(2060), - [anon_sym_false] = ACTIONS(2060), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2060), - [sym_super] = ACTIONS(2060), - [sym_crate] = ACTIONS(2060), - [sym_metavariable] = ACTIONS(2058), - [sym__raw_string_literal_start] = ACTIONS(2058), - [sym_float_literal] = ACTIONS(2058), + [ts_builtin_sym_end] = ACTIONS(2085), + [sym_identifier] = ACTIONS(2087), + [anon_sym_SEMI] = ACTIONS(2085), + [anon_sym_macro_rules_BANG] = ACTIONS(2085), + [anon_sym_LPAREN] = ACTIONS(2085), + [anon_sym_LBRACK] = ACTIONS(2085), + [anon_sym_LBRACE] = ACTIONS(2085), + [anon_sym_RBRACE] = ACTIONS(2085), + [anon_sym_STAR] = ACTIONS(2085), + [anon_sym_u8] = ACTIONS(2087), + [anon_sym_i8] = ACTIONS(2087), + [anon_sym_u16] = ACTIONS(2087), + [anon_sym_i16] = ACTIONS(2087), + [anon_sym_u32] = ACTIONS(2087), + [anon_sym_i32] = ACTIONS(2087), + [anon_sym_u64] = ACTIONS(2087), + [anon_sym_i64] = ACTIONS(2087), + [anon_sym_u128] = ACTIONS(2087), + [anon_sym_i128] = ACTIONS(2087), + [anon_sym_isize] = ACTIONS(2087), + [anon_sym_usize] = ACTIONS(2087), + [anon_sym_f32] = ACTIONS(2087), + [anon_sym_f64] = ACTIONS(2087), + [anon_sym_bool] = ACTIONS(2087), + [anon_sym_str] = ACTIONS(2087), + [anon_sym_char] = ACTIONS(2087), + [anon_sym_DASH] = ACTIONS(2085), + [anon_sym_BANG] = ACTIONS(2085), + [anon_sym_AMP] = ACTIONS(2085), + [anon_sym_PIPE] = ACTIONS(2085), + [anon_sym_LT] = ACTIONS(2085), + [anon_sym_DOT_DOT] = ACTIONS(2085), + [anon_sym_COLON_COLON] = ACTIONS(2085), + [anon_sym_POUND] = ACTIONS(2085), + [anon_sym_SQUOTE] = ACTIONS(2087), + [anon_sym_async] = ACTIONS(2087), + [anon_sym_break] = ACTIONS(2087), + [anon_sym_const] = ACTIONS(2087), + [anon_sym_continue] = ACTIONS(2087), + [anon_sym_default] = ACTIONS(2087), + [anon_sym_enum] = ACTIONS(2087), + [anon_sym_fn] = ACTIONS(2087), + [anon_sym_for] = ACTIONS(2087), + [anon_sym_gen] = ACTIONS(2087), + [anon_sym_if] = ACTIONS(2087), + [anon_sym_impl] = ACTIONS(2087), + [anon_sym_let] = ACTIONS(2087), + [anon_sym_loop] = ACTIONS(2087), + [anon_sym_match] = ACTIONS(2087), + [anon_sym_mod] = ACTIONS(2087), + [anon_sym_pub] = ACTIONS(2087), + [anon_sym_return] = ACTIONS(2087), + [anon_sym_static] = ACTIONS(2087), + [anon_sym_struct] = ACTIONS(2087), + [anon_sym_trait] = ACTIONS(2087), + [anon_sym_type] = ACTIONS(2087), + [anon_sym_union] = ACTIONS(2087), + [anon_sym_unsafe] = ACTIONS(2087), + [anon_sym_use] = ACTIONS(2087), + [anon_sym_while] = ACTIONS(2087), + [anon_sym_extern] = ACTIONS(2087), + [anon_sym_safe] = ACTIONS(2087), + [anon_sym_yield] = ACTIONS(2087), + [anon_sym_move] = ACTIONS(2087), + [anon_sym_try] = ACTIONS(2087), + [sym_integer_literal] = ACTIONS(2085), + [aux_sym_string_literal_token1] = ACTIONS(2085), + [sym_char_literal] = ACTIONS(2085), + [anon_sym_true] = ACTIONS(2087), + [anon_sym_false] = ACTIONS(2087), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(2087), + [sym_super] = ACTIONS(2087), + [sym_crate] = ACTIONS(2087), + [sym_metavariable] = ACTIONS(2085), + [sym__raw_string_literal_start] = ACTIONS(2085), + [sym_float_literal] = ACTIONS(2085), }, [STATE(559)] = { [sym_line_comment] = STATE(559), [sym_block_comment] = STATE(559), - [ts_builtin_sym_end] = ACTIONS(2062), - [sym_identifier] = ACTIONS(2064), - [anon_sym_SEMI] = ACTIONS(2062), - [anon_sym_macro_rules_BANG] = ACTIONS(2062), - [anon_sym_LPAREN] = ACTIONS(2062), - [anon_sym_LBRACK] = ACTIONS(2062), - [anon_sym_LBRACE] = ACTIONS(2062), - [anon_sym_RBRACE] = ACTIONS(2062), - [anon_sym_STAR] = ACTIONS(2062), - [anon_sym_u8] = ACTIONS(2064), - [anon_sym_i8] = ACTIONS(2064), - [anon_sym_u16] = ACTIONS(2064), - [anon_sym_i16] = ACTIONS(2064), - [anon_sym_u32] = ACTIONS(2064), - [anon_sym_i32] = ACTIONS(2064), - [anon_sym_u64] = ACTIONS(2064), - [anon_sym_i64] = ACTIONS(2064), - [anon_sym_u128] = ACTIONS(2064), - [anon_sym_i128] = ACTIONS(2064), - [anon_sym_isize] = ACTIONS(2064), - [anon_sym_usize] = ACTIONS(2064), - [anon_sym_f32] = ACTIONS(2064), - [anon_sym_f64] = ACTIONS(2064), - [anon_sym_bool] = ACTIONS(2064), - [anon_sym_str] = ACTIONS(2064), - [anon_sym_char] = ACTIONS(2064), - [anon_sym_DASH] = ACTIONS(2062), - [anon_sym_BANG] = ACTIONS(2062), - [anon_sym_AMP] = ACTIONS(2062), - [anon_sym_PIPE] = ACTIONS(2062), - [anon_sym_LT] = ACTIONS(2062), - [anon_sym_DOT_DOT] = ACTIONS(2062), - [anon_sym_COLON_COLON] = ACTIONS(2062), - [anon_sym_POUND] = ACTIONS(2062), - [anon_sym_SQUOTE] = ACTIONS(2064), - [anon_sym_async] = ACTIONS(2064), - [anon_sym_break] = ACTIONS(2064), - [anon_sym_const] = ACTIONS(2064), - [anon_sym_continue] = ACTIONS(2064), - [anon_sym_default] = ACTIONS(2064), - [anon_sym_enum] = ACTIONS(2064), - [anon_sym_fn] = ACTIONS(2064), - [anon_sym_for] = ACTIONS(2064), - [anon_sym_gen] = ACTIONS(2064), - [anon_sym_if] = ACTIONS(2064), - [anon_sym_impl] = ACTIONS(2064), - [anon_sym_let] = ACTIONS(2064), - [anon_sym_loop] = ACTIONS(2064), - [anon_sym_match] = ACTIONS(2064), - [anon_sym_mod] = ACTIONS(2064), - [anon_sym_pub] = ACTIONS(2064), - [anon_sym_return] = ACTIONS(2064), - [anon_sym_static] = ACTIONS(2064), - [anon_sym_struct] = ACTIONS(2064), - [anon_sym_trait] = ACTIONS(2064), - [anon_sym_type] = ACTIONS(2064), - [anon_sym_union] = ACTIONS(2064), - [anon_sym_unsafe] = ACTIONS(2064), - [anon_sym_use] = ACTIONS(2064), - [anon_sym_while] = ACTIONS(2064), - [anon_sym_extern] = ACTIONS(2064), - [anon_sym_yield] = ACTIONS(2064), - [anon_sym_move] = ACTIONS(2064), - [anon_sym_try] = ACTIONS(2064), - [sym_integer_literal] = ACTIONS(2062), - [aux_sym_string_literal_token1] = ACTIONS(2062), - [sym_char_literal] = ACTIONS(2062), - [anon_sym_true] = ACTIONS(2064), - [anon_sym_false] = ACTIONS(2064), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2064), - [sym_super] = ACTIONS(2064), - [sym_crate] = ACTIONS(2064), - [sym_metavariable] = ACTIONS(2062), - [sym__raw_string_literal_start] = ACTIONS(2062), - [sym_float_literal] = ACTIONS(2062), + [ts_builtin_sym_end] = ACTIONS(2089), + [sym_identifier] = ACTIONS(2091), + [anon_sym_SEMI] = ACTIONS(2089), + [anon_sym_macro_rules_BANG] = ACTIONS(2089), + [anon_sym_LPAREN] = ACTIONS(2089), + [anon_sym_LBRACK] = ACTIONS(2089), + [anon_sym_LBRACE] = ACTIONS(2089), + [anon_sym_RBRACE] = ACTIONS(2089), + [anon_sym_STAR] = ACTIONS(2089), + [anon_sym_u8] = ACTIONS(2091), + [anon_sym_i8] = ACTIONS(2091), + [anon_sym_u16] = ACTIONS(2091), + [anon_sym_i16] = ACTIONS(2091), + [anon_sym_u32] = ACTIONS(2091), + [anon_sym_i32] = ACTIONS(2091), + [anon_sym_u64] = ACTIONS(2091), + [anon_sym_i64] = ACTIONS(2091), + [anon_sym_u128] = ACTIONS(2091), + [anon_sym_i128] = ACTIONS(2091), + [anon_sym_isize] = ACTIONS(2091), + [anon_sym_usize] = ACTIONS(2091), + [anon_sym_f32] = ACTIONS(2091), + [anon_sym_f64] = ACTIONS(2091), + [anon_sym_bool] = ACTIONS(2091), + [anon_sym_str] = ACTIONS(2091), + [anon_sym_char] = ACTIONS(2091), + [anon_sym_DASH] = ACTIONS(2089), + [anon_sym_BANG] = ACTIONS(2089), + [anon_sym_AMP] = ACTIONS(2089), + [anon_sym_PIPE] = ACTIONS(2089), + [anon_sym_LT] = ACTIONS(2089), + [anon_sym_DOT_DOT] = ACTIONS(2089), + [anon_sym_COLON_COLON] = ACTIONS(2089), + [anon_sym_POUND] = ACTIONS(2089), + [anon_sym_SQUOTE] = ACTIONS(2091), + [anon_sym_async] = ACTIONS(2091), + [anon_sym_break] = ACTIONS(2091), + [anon_sym_const] = ACTIONS(2091), + [anon_sym_continue] = ACTIONS(2091), + [anon_sym_default] = ACTIONS(2091), + [anon_sym_enum] = ACTIONS(2091), + [anon_sym_fn] = ACTIONS(2091), + [anon_sym_for] = ACTIONS(2091), + [anon_sym_gen] = ACTIONS(2091), + [anon_sym_if] = ACTIONS(2091), + [anon_sym_impl] = ACTIONS(2091), + [anon_sym_let] = ACTIONS(2091), + [anon_sym_loop] = ACTIONS(2091), + [anon_sym_match] = ACTIONS(2091), + [anon_sym_mod] = ACTIONS(2091), + [anon_sym_pub] = ACTIONS(2091), + [anon_sym_return] = ACTIONS(2091), + [anon_sym_static] = ACTIONS(2091), + [anon_sym_struct] = ACTIONS(2091), + [anon_sym_trait] = ACTIONS(2091), + [anon_sym_type] = ACTIONS(2091), + [anon_sym_union] = ACTIONS(2091), + [anon_sym_unsafe] = ACTIONS(2091), + [anon_sym_use] = ACTIONS(2091), + [anon_sym_while] = ACTIONS(2091), + [anon_sym_extern] = ACTIONS(2091), + [anon_sym_safe] = ACTIONS(2091), + [anon_sym_yield] = ACTIONS(2091), + [anon_sym_move] = ACTIONS(2091), + [anon_sym_try] = ACTIONS(2091), + [sym_integer_literal] = ACTIONS(2089), + [aux_sym_string_literal_token1] = ACTIONS(2089), + [sym_char_literal] = ACTIONS(2089), + [anon_sym_true] = ACTIONS(2091), + [anon_sym_false] = ACTIONS(2091), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(2091), + [sym_super] = ACTIONS(2091), + [sym_crate] = ACTIONS(2091), + [sym_metavariable] = ACTIONS(2089), + [sym__raw_string_literal_start] = ACTIONS(2089), + [sym_float_literal] = ACTIONS(2089), }, [STATE(560)] = { [sym_line_comment] = STATE(560), [sym_block_comment] = STATE(560), - [ts_builtin_sym_end] = ACTIONS(2066), - [sym_identifier] = ACTIONS(2068), - [anon_sym_SEMI] = ACTIONS(2066), - [anon_sym_macro_rules_BANG] = ACTIONS(2066), - [anon_sym_LPAREN] = ACTIONS(2066), - [anon_sym_LBRACK] = ACTIONS(2066), - [anon_sym_LBRACE] = ACTIONS(2066), - [anon_sym_RBRACE] = ACTIONS(2066), - [anon_sym_STAR] = ACTIONS(2066), - [anon_sym_u8] = ACTIONS(2068), - [anon_sym_i8] = ACTIONS(2068), - [anon_sym_u16] = ACTIONS(2068), - [anon_sym_i16] = ACTIONS(2068), - [anon_sym_u32] = ACTIONS(2068), - [anon_sym_i32] = ACTIONS(2068), - [anon_sym_u64] = ACTIONS(2068), - [anon_sym_i64] = ACTIONS(2068), - [anon_sym_u128] = ACTIONS(2068), - [anon_sym_i128] = ACTIONS(2068), - [anon_sym_isize] = ACTIONS(2068), - [anon_sym_usize] = ACTIONS(2068), - [anon_sym_f32] = ACTIONS(2068), - [anon_sym_f64] = ACTIONS(2068), - [anon_sym_bool] = ACTIONS(2068), - [anon_sym_str] = ACTIONS(2068), - [anon_sym_char] = ACTIONS(2068), - [anon_sym_DASH] = ACTIONS(2066), - [anon_sym_BANG] = ACTIONS(2066), - [anon_sym_AMP] = ACTIONS(2066), - [anon_sym_PIPE] = ACTIONS(2066), - [anon_sym_LT] = ACTIONS(2066), - [anon_sym_DOT_DOT] = ACTIONS(2066), - [anon_sym_COLON_COLON] = ACTIONS(2066), - [anon_sym_POUND] = ACTIONS(2066), - [anon_sym_SQUOTE] = ACTIONS(2068), - [anon_sym_async] = ACTIONS(2068), - [anon_sym_break] = ACTIONS(2068), - [anon_sym_const] = ACTIONS(2068), - [anon_sym_continue] = ACTIONS(2068), - [anon_sym_default] = ACTIONS(2068), - [anon_sym_enum] = ACTIONS(2068), - [anon_sym_fn] = ACTIONS(2068), - [anon_sym_for] = ACTIONS(2068), - [anon_sym_gen] = ACTIONS(2068), - [anon_sym_if] = ACTIONS(2068), - [anon_sym_impl] = ACTIONS(2068), - [anon_sym_let] = ACTIONS(2068), - [anon_sym_loop] = ACTIONS(2068), - [anon_sym_match] = ACTIONS(2068), - [anon_sym_mod] = ACTIONS(2068), - [anon_sym_pub] = ACTIONS(2068), - [anon_sym_return] = ACTIONS(2068), - [anon_sym_static] = ACTIONS(2068), - [anon_sym_struct] = ACTIONS(2068), - [anon_sym_trait] = ACTIONS(2068), - [anon_sym_type] = ACTIONS(2068), - [anon_sym_union] = ACTIONS(2068), - [anon_sym_unsafe] = ACTIONS(2068), - [anon_sym_use] = ACTIONS(2068), - [anon_sym_while] = ACTIONS(2068), - [anon_sym_extern] = ACTIONS(2068), - [anon_sym_yield] = ACTIONS(2068), - [anon_sym_move] = ACTIONS(2068), - [anon_sym_try] = ACTIONS(2068), - [sym_integer_literal] = ACTIONS(2066), - [aux_sym_string_literal_token1] = ACTIONS(2066), - [sym_char_literal] = ACTIONS(2066), - [anon_sym_true] = ACTIONS(2068), - [anon_sym_false] = ACTIONS(2068), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2068), - [sym_super] = ACTIONS(2068), - [sym_crate] = ACTIONS(2068), - [sym_metavariable] = ACTIONS(2066), - [sym__raw_string_literal_start] = ACTIONS(2066), - [sym_float_literal] = ACTIONS(2066), + [ts_builtin_sym_end] = ACTIONS(2093), + [sym_identifier] = ACTIONS(2095), + [anon_sym_SEMI] = ACTIONS(2093), + [anon_sym_macro_rules_BANG] = ACTIONS(2093), + [anon_sym_LPAREN] = ACTIONS(2093), + [anon_sym_LBRACK] = ACTIONS(2093), + [anon_sym_LBRACE] = ACTIONS(2093), + [anon_sym_RBRACE] = ACTIONS(2093), + [anon_sym_STAR] = ACTIONS(2093), + [anon_sym_u8] = ACTIONS(2095), + [anon_sym_i8] = ACTIONS(2095), + [anon_sym_u16] = ACTIONS(2095), + [anon_sym_i16] = ACTIONS(2095), + [anon_sym_u32] = ACTIONS(2095), + [anon_sym_i32] = ACTIONS(2095), + [anon_sym_u64] = ACTIONS(2095), + [anon_sym_i64] = ACTIONS(2095), + [anon_sym_u128] = ACTIONS(2095), + [anon_sym_i128] = ACTIONS(2095), + [anon_sym_isize] = ACTIONS(2095), + [anon_sym_usize] = ACTIONS(2095), + [anon_sym_f32] = ACTIONS(2095), + [anon_sym_f64] = ACTIONS(2095), + [anon_sym_bool] = ACTIONS(2095), + [anon_sym_str] = ACTIONS(2095), + [anon_sym_char] = ACTIONS(2095), + [anon_sym_DASH] = ACTIONS(2093), + [anon_sym_BANG] = ACTIONS(2093), + [anon_sym_AMP] = ACTIONS(2093), + [anon_sym_PIPE] = ACTIONS(2093), + [anon_sym_LT] = ACTIONS(2093), + [anon_sym_DOT_DOT] = ACTIONS(2093), + [anon_sym_COLON_COLON] = ACTIONS(2093), + [anon_sym_POUND] = ACTIONS(2093), + [anon_sym_SQUOTE] = ACTIONS(2095), + [anon_sym_async] = ACTIONS(2095), + [anon_sym_break] = ACTIONS(2095), + [anon_sym_const] = ACTIONS(2095), + [anon_sym_continue] = ACTIONS(2095), + [anon_sym_default] = ACTIONS(2095), + [anon_sym_enum] = ACTIONS(2095), + [anon_sym_fn] = ACTIONS(2095), + [anon_sym_for] = ACTIONS(2095), + [anon_sym_gen] = ACTIONS(2095), + [anon_sym_if] = ACTIONS(2095), + [anon_sym_impl] = ACTIONS(2095), + [anon_sym_let] = ACTIONS(2095), + [anon_sym_loop] = ACTIONS(2095), + [anon_sym_match] = ACTIONS(2095), + [anon_sym_mod] = ACTIONS(2095), + [anon_sym_pub] = ACTIONS(2095), + [anon_sym_return] = ACTIONS(2095), + [anon_sym_static] = ACTIONS(2095), + [anon_sym_struct] = ACTIONS(2095), + [anon_sym_trait] = ACTIONS(2095), + [anon_sym_type] = ACTIONS(2095), + [anon_sym_union] = ACTIONS(2095), + [anon_sym_unsafe] = ACTIONS(2095), + [anon_sym_use] = ACTIONS(2095), + [anon_sym_while] = ACTIONS(2095), + [anon_sym_extern] = ACTIONS(2095), + [anon_sym_safe] = ACTIONS(2095), + [anon_sym_yield] = ACTIONS(2095), + [anon_sym_move] = ACTIONS(2095), + [anon_sym_try] = ACTIONS(2095), + [sym_integer_literal] = ACTIONS(2093), + [aux_sym_string_literal_token1] = ACTIONS(2093), + [sym_char_literal] = ACTIONS(2093), + [anon_sym_true] = ACTIONS(2095), + [anon_sym_false] = ACTIONS(2095), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(2095), + [sym_super] = ACTIONS(2095), + [sym_crate] = ACTIONS(2095), + [sym_metavariable] = ACTIONS(2093), + [sym__raw_string_literal_start] = ACTIONS(2093), + [sym_float_literal] = ACTIONS(2093), }, [STATE(561)] = { [sym_line_comment] = STATE(561), [sym_block_comment] = STATE(561), - [ts_builtin_sym_end] = ACTIONS(2070), - [sym_identifier] = ACTIONS(2072), - [anon_sym_SEMI] = ACTIONS(2070), - [anon_sym_macro_rules_BANG] = ACTIONS(2070), - [anon_sym_LPAREN] = ACTIONS(2070), - [anon_sym_LBRACK] = ACTIONS(2070), - [anon_sym_LBRACE] = ACTIONS(2070), - [anon_sym_RBRACE] = ACTIONS(2070), - [anon_sym_STAR] = ACTIONS(2070), - [anon_sym_u8] = ACTIONS(2072), - [anon_sym_i8] = ACTIONS(2072), - [anon_sym_u16] = ACTIONS(2072), - [anon_sym_i16] = ACTIONS(2072), - [anon_sym_u32] = ACTIONS(2072), - [anon_sym_i32] = ACTIONS(2072), - [anon_sym_u64] = ACTIONS(2072), - [anon_sym_i64] = ACTIONS(2072), - [anon_sym_u128] = ACTIONS(2072), - [anon_sym_i128] = ACTIONS(2072), - [anon_sym_isize] = ACTIONS(2072), - [anon_sym_usize] = ACTIONS(2072), - [anon_sym_f32] = ACTIONS(2072), - [anon_sym_f64] = ACTIONS(2072), - [anon_sym_bool] = ACTIONS(2072), - [anon_sym_str] = ACTIONS(2072), - [anon_sym_char] = ACTIONS(2072), - [anon_sym_DASH] = ACTIONS(2070), - [anon_sym_BANG] = ACTIONS(2070), - [anon_sym_AMP] = ACTIONS(2070), - [anon_sym_PIPE] = ACTIONS(2070), - [anon_sym_LT] = ACTIONS(2070), - [anon_sym_DOT_DOT] = ACTIONS(2070), - [anon_sym_COLON_COLON] = ACTIONS(2070), - [anon_sym_POUND] = ACTIONS(2070), - [anon_sym_SQUOTE] = ACTIONS(2072), - [anon_sym_async] = ACTIONS(2072), - [anon_sym_break] = ACTIONS(2072), - [anon_sym_const] = ACTIONS(2072), - [anon_sym_continue] = ACTIONS(2072), - [anon_sym_default] = ACTIONS(2072), - [anon_sym_enum] = ACTIONS(2072), - [anon_sym_fn] = ACTIONS(2072), - [anon_sym_for] = ACTIONS(2072), - [anon_sym_gen] = ACTIONS(2072), - [anon_sym_if] = ACTIONS(2072), - [anon_sym_impl] = ACTIONS(2072), - [anon_sym_let] = ACTIONS(2072), - [anon_sym_loop] = ACTIONS(2072), - [anon_sym_match] = ACTIONS(2072), - [anon_sym_mod] = ACTIONS(2072), - [anon_sym_pub] = ACTIONS(2072), - [anon_sym_return] = ACTIONS(2072), - [anon_sym_static] = ACTIONS(2072), - [anon_sym_struct] = ACTIONS(2072), - [anon_sym_trait] = ACTIONS(2072), - [anon_sym_type] = ACTIONS(2072), - [anon_sym_union] = ACTIONS(2072), - [anon_sym_unsafe] = ACTIONS(2072), - [anon_sym_use] = ACTIONS(2072), - [anon_sym_while] = ACTIONS(2072), - [anon_sym_extern] = ACTIONS(2072), - [anon_sym_yield] = ACTIONS(2072), - [anon_sym_move] = ACTIONS(2072), - [anon_sym_try] = ACTIONS(2072), - [sym_integer_literal] = ACTIONS(2070), - [aux_sym_string_literal_token1] = ACTIONS(2070), - [sym_char_literal] = ACTIONS(2070), - [anon_sym_true] = ACTIONS(2072), - [anon_sym_false] = ACTIONS(2072), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2072), - [sym_super] = ACTIONS(2072), - [sym_crate] = ACTIONS(2072), - [sym_metavariable] = ACTIONS(2070), - [sym__raw_string_literal_start] = ACTIONS(2070), - [sym_float_literal] = ACTIONS(2070), + [ts_builtin_sym_end] = ACTIONS(2097), + [sym_identifier] = ACTIONS(2099), + [anon_sym_SEMI] = ACTIONS(2097), + [anon_sym_macro_rules_BANG] = ACTIONS(2097), + [anon_sym_LPAREN] = ACTIONS(2097), + [anon_sym_LBRACK] = ACTIONS(2097), + [anon_sym_LBRACE] = ACTIONS(2097), + [anon_sym_RBRACE] = ACTIONS(2097), + [anon_sym_STAR] = ACTIONS(2097), + [anon_sym_u8] = ACTIONS(2099), + [anon_sym_i8] = ACTIONS(2099), + [anon_sym_u16] = ACTIONS(2099), + [anon_sym_i16] = ACTIONS(2099), + [anon_sym_u32] = ACTIONS(2099), + [anon_sym_i32] = ACTIONS(2099), + [anon_sym_u64] = ACTIONS(2099), + [anon_sym_i64] = ACTIONS(2099), + [anon_sym_u128] = ACTIONS(2099), + [anon_sym_i128] = ACTIONS(2099), + [anon_sym_isize] = ACTIONS(2099), + [anon_sym_usize] = ACTIONS(2099), + [anon_sym_f32] = ACTIONS(2099), + [anon_sym_f64] = ACTIONS(2099), + [anon_sym_bool] = ACTIONS(2099), + [anon_sym_str] = ACTIONS(2099), + [anon_sym_char] = ACTIONS(2099), + [anon_sym_DASH] = ACTIONS(2097), + [anon_sym_BANG] = ACTIONS(2097), + [anon_sym_AMP] = ACTIONS(2097), + [anon_sym_PIPE] = ACTIONS(2097), + [anon_sym_LT] = ACTIONS(2097), + [anon_sym_DOT_DOT] = ACTIONS(2097), + [anon_sym_COLON_COLON] = ACTIONS(2097), + [anon_sym_POUND] = ACTIONS(2097), + [anon_sym_SQUOTE] = ACTIONS(2099), + [anon_sym_async] = ACTIONS(2099), + [anon_sym_break] = ACTIONS(2099), + [anon_sym_const] = ACTIONS(2099), + [anon_sym_continue] = ACTIONS(2099), + [anon_sym_default] = ACTIONS(2099), + [anon_sym_enum] = ACTIONS(2099), + [anon_sym_fn] = ACTIONS(2099), + [anon_sym_for] = ACTIONS(2099), + [anon_sym_gen] = ACTIONS(2099), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_impl] = ACTIONS(2099), + [anon_sym_let] = ACTIONS(2099), + [anon_sym_loop] = ACTIONS(2099), + [anon_sym_match] = ACTIONS(2099), + [anon_sym_mod] = ACTIONS(2099), + [anon_sym_pub] = ACTIONS(2099), + [anon_sym_return] = ACTIONS(2099), + [anon_sym_static] = ACTIONS(2099), + [anon_sym_struct] = ACTIONS(2099), + [anon_sym_trait] = ACTIONS(2099), + [anon_sym_type] = ACTIONS(2099), + [anon_sym_union] = ACTIONS(2099), + [anon_sym_unsafe] = ACTIONS(2099), + [anon_sym_use] = ACTIONS(2099), + [anon_sym_while] = ACTIONS(2099), + [anon_sym_extern] = ACTIONS(2099), + [anon_sym_safe] = ACTIONS(2099), + [anon_sym_yield] = ACTIONS(2099), + [anon_sym_move] = ACTIONS(2099), + [anon_sym_try] = ACTIONS(2099), + [sym_integer_literal] = ACTIONS(2097), + [aux_sym_string_literal_token1] = ACTIONS(2097), + [sym_char_literal] = ACTIONS(2097), + [anon_sym_true] = ACTIONS(2099), + [anon_sym_false] = ACTIONS(2099), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(2099), + [sym_super] = ACTIONS(2099), + [sym_crate] = ACTIONS(2099), + [sym_metavariable] = ACTIONS(2097), + [sym__raw_string_literal_start] = ACTIONS(2097), + [sym_float_literal] = ACTIONS(2097), }, [STATE(562)] = { [sym_line_comment] = STATE(562), [sym_block_comment] = STATE(562), - [ts_builtin_sym_end] = ACTIONS(2074), - [sym_identifier] = ACTIONS(2076), - [anon_sym_SEMI] = ACTIONS(2074), - [anon_sym_macro_rules_BANG] = ACTIONS(2074), - [anon_sym_LPAREN] = ACTIONS(2074), - [anon_sym_LBRACK] = ACTIONS(2074), - [anon_sym_LBRACE] = ACTIONS(2074), - [anon_sym_RBRACE] = ACTIONS(2074), - [anon_sym_STAR] = ACTIONS(2074), - [anon_sym_u8] = ACTIONS(2076), - [anon_sym_i8] = ACTIONS(2076), - [anon_sym_u16] = ACTIONS(2076), - [anon_sym_i16] = ACTIONS(2076), - [anon_sym_u32] = ACTIONS(2076), - [anon_sym_i32] = ACTIONS(2076), - [anon_sym_u64] = ACTIONS(2076), - [anon_sym_i64] = ACTIONS(2076), - [anon_sym_u128] = ACTIONS(2076), - [anon_sym_i128] = ACTIONS(2076), - [anon_sym_isize] = ACTIONS(2076), - [anon_sym_usize] = ACTIONS(2076), - [anon_sym_f32] = ACTIONS(2076), - [anon_sym_f64] = ACTIONS(2076), - [anon_sym_bool] = ACTIONS(2076), - [anon_sym_str] = ACTIONS(2076), - [anon_sym_char] = ACTIONS(2076), - [anon_sym_DASH] = ACTIONS(2074), - [anon_sym_BANG] = ACTIONS(2074), - [anon_sym_AMP] = ACTIONS(2074), - [anon_sym_PIPE] = ACTIONS(2074), - [anon_sym_LT] = ACTIONS(2074), - [anon_sym_DOT_DOT] = ACTIONS(2074), - [anon_sym_COLON_COLON] = ACTIONS(2074), - [anon_sym_POUND] = ACTIONS(2074), - [anon_sym_SQUOTE] = ACTIONS(2076), - [anon_sym_async] = ACTIONS(2076), - [anon_sym_break] = ACTIONS(2076), - [anon_sym_const] = ACTIONS(2076), - [anon_sym_continue] = ACTIONS(2076), - [anon_sym_default] = ACTIONS(2076), - [anon_sym_enum] = ACTIONS(2076), - [anon_sym_fn] = ACTIONS(2076), - [anon_sym_for] = ACTIONS(2076), - [anon_sym_gen] = ACTIONS(2076), - [anon_sym_if] = ACTIONS(2076), - [anon_sym_impl] = ACTIONS(2076), - [anon_sym_let] = ACTIONS(2076), - [anon_sym_loop] = ACTIONS(2076), - [anon_sym_match] = ACTIONS(2076), - [anon_sym_mod] = ACTIONS(2076), - [anon_sym_pub] = ACTIONS(2076), - [anon_sym_return] = ACTIONS(2076), - [anon_sym_static] = ACTIONS(2076), - [anon_sym_struct] = ACTIONS(2076), - [anon_sym_trait] = ACTIONS(2076), - [anon_sym_type] = ACTIONS(2076), - [anon_sym_union] = ACTIONS(2076), - [anon_sym_unsafe] = ACTIONS(2076), - [anon_sym_use] = ACTIONS(2076), - [anon_sym_while] = ACTIONS(2076), - [anon_sym_extern] = ACTIONS(2076), - [anon_sym_yield] = ACTIONS(2076), - [anon_sym_move] = ACTIONS(2076), - [anon_sym_try] = ACTIONS(2076), - [sym_integer_literal] = ACTIONS(2074), - [aux_sym_string_literal_token1] = ACTIONS(2074), - [sym_char_literal] = ACTIONS(2074), - [anon_sym_true] = ACTIONS(2076), - [anon_sym_false] = ACTIONS(2076), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2076), - [sym_super] = ACTIONS(2076), - [sym_crate] = ACTIONS(2076), - [sym_metavariable] = ACTIONS(2074), - [sym__raw_string_literal_start] = ACTIONS(2074), - [sym_float_literal] = ACTIONS(2074), + [ts_builtin_sym_end] = ACTIONS(2101), + [sym_identifier] = ACTIONS(2103), + [anon_sym_SEMI] = ACTIONS(2101), + [anon_sym_macro_rules_BANG] = ACTIONS(2101), + [anon_sym_LPAREN] = ACTIONS(2101), + [anon_sym_LBRACK] = ACTIONS(2101), + [anon_sym_LBRACE] = ACTIONS(2101), + [anon_sym_RBRACE] = ACTIONS(2101), + [anon_sym_STAR] = ACTIONS(2101), + [anon_sym_u8] = ACTIONS(2103), + [anon_sym_i8] = ACTIONS(2103), + [anon_sym_u16] = ACTIONS(2103), + [anon_sym_i16] = ACTIONS(2103), + [anon_sym_u32] = ACTIONS(2103), + [anon_sym_i32] = ACTIONS(2103), + [anon_sym_u64] = ACTIONS(2103), + [anon_sym_i64] = ACTIONS(2103), + [anon_sym_u128] = ACTIONS(2103), + [anon_sym_i128] = ACTIONS(2103), + [anon_sym_isize] = ACTIONS(2103), + [anon_sym_usize] = ACTIONS(2103), + [anon_sym_f32] = ACTIONS(2103), + [anon_sym_f64] = ACTIONS(2103), + [anon_sym_bool] = ACTIONS(2103), + [anon_sym_str] = ACTIONS(2103), + [anon_sym_char] = ACTIONS(2103), + [anon_sym_DASH] = ACTIONS(2101), + [anon_sym_BANG] = ACTIONS(2101), + [anon_sym_AMP] = ACTIONS(2101), + [anon_sym_PIPE] = ACTIONS(2101), + [anon_sym_LT] = ACTIONS(2101), + [anon_sym_DOT_DOT] = ACTIONS(2101), + [anon_sym_COLON_COLON] = ACTIONS(2101), + [anon_sym_POUND] = ACTIONS(2101), + [anon_sym_SQUOTE] = ACTIONS(2103), + [anon_sym_async] = ACTIONS(2103), + [anon_sym_break] = ACTIONS(2103), + [anon_sym_const] = ACTIONS(2103), + [anon_sym_continue] = ACTIONS(2103), + [anon_sym_default] = ACTIONS(2103), + [anon_sym_enum] = ACTIONS(2103), + [anon_sym_fn] = ACTIONS(2103), + [anon_sym_for] = ACTIONS(2103), + [anon_sym_gen] = ACTIONS(2103), + [anon_sym_if] = ACTIONS(2103), + [anon_sym_impl] = ACTIONS(2103), + [anon_sym_let] = ACTIONS(2103), + [anon_sym_loop] = ACTIONS(2103), + [anon_sym_match] = ACTIONS(2103), + [anon_sym_mod] = ACTIONS(2103), + [anon_sym_pub] = ACTIONS(2103), + [anon_sym_return] = ACTIONS(2103), + [anon_sym_static] = ACTIONS(2103), + [anon_sym_struct] = ACTIONS(2103), + [anon_sym_trait] = ACTIONS(2103), + [anon_sym_type] = ACTIONS(2103), + [anon_sym_union] = ACTIONS(2103), + [anon_sym_unsafe] = ACTIONS(2103), + [anon_sym_use] = ACTIONS(2103), + [anon_sym_while] = ACTIONS(2103), + [anon_sym_extern] = ACTIONS(2103), + [anon_sym_safe] = ACTIONS(2103), + [anon_sym_yield] = ACTIONS(2103), + [anon_sym_move] = ACTIONS(2103), + [anon_sym_try] = ACTIONS(2103), + [sym_integer_literal] = ACTIONS(2101), + [aux_sym_string_literal_token1] = ACTIONS(2101), + [sym_char_literal] = ACTIONS(2101), + [anon_sym_true] = ACTIONS(2103), + [anon_sym_false] = ACTIONS(2103), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(2103), + [sym_super] = ACTIONS(2103), + [sym_crate] = ACTIONS(2103), + [sym_metavariable] = ACTIONS(2101), + [sym__raw_string_literal_start] = ACTIONS(2101), + [sym_float_literal] = ACTIONS(2101), }, [STATE(563)] = { [sym_line_comment] = STATE(563), [sym_block_comment] = STATE(563), - [ts_builtin_sym_end] = ACTIONS(2078), - [sym_identifier] = ACTIONS(2080), - [anon_sym_SEMI] = ACTIONS(2078), - [anon_sym_macro_rules_BANG] = ACTIONS(2078), - [anon_sym_LPAREN] = ACTIONS(2078), - [anon_sym_LBRACK] = ACTIONS(2078), - [anon_sym_LBRACE] = ACTIONS(2078), - [anon_sym_RBRACE] = ACTIONS(2078), - [anon_sym_STAR] = ACTIONS(2078), - [anon_sym_u8] = ACTIONS(2080), - [anon_sym_i8] = ACTIONS(2080), - [anon_sym_u16] = ACTIONS(2080), - [anon_sym_i16] = ACTIONS(2080), - [anon_sym_u32] = ACTIONS(2080), - [anon_sym_i32] = ACTIONS(2080), - [anon_sym_u64] = ACTIONS(2080), - [anon_sym_i64] = ACTIONS(2080), - [anon_sym_u128] = ACTIONS(2080), - [anon_sym_i128] = ACTIONS(2080), - [anon_sym_isize] = ACTIONS(2080), - [anon_sym_usize] = ACTIONS(2080), - [anon_sym_f32] = ACTIONS(2080), - [anon_sym_f64] = ACTIONS(2080), - [anon_sym_bool] = ACTIONS(2080), - [anon_sym_str] = ACTIONS(2080), - [anon_sym_char] = ACTIONS(2080), - [anon_sym_DASH] = ACTIONS(2078), - [anon_sym_BANG] = ACTIONS(2078), - [anon_sym_AMP] = ACTIONS(2078), - [anon_sym_PIPE] = ACTIONS(2078), - [anon_sym_LT] = ACTIONS(2078), - [anon_sym_DOT_DOT] = ACTIONS(2078), - [anon_sym_COLON_COLON] = ACTIONS(2078), - [anon_sym_POUND] = ACTIONS(2078), - [anon_sym_SQUOTE] = ACTIONS(2080), - [anon_sym_async] = ACTIONS(2080), - [anon_sym_break] = ACTIONS(2080), - [anon_sym_const] = ACTIONS(2080), - [anon_sym_continue] = ACTIONS(2080), - [anon_sym_default] = ACTIONS(2080), - [anon_sym_enum] = ACTIONS(2080), - [anon_sym_fn] = ACTIONS(2080), - [anon_sym_for] = ACTIONS(2080), - [anon_sym_gen] = ACTIONS(2080), - [anon_sym_if] = ACTIONS(2080), - [anon_sym_impl] = ACTIONS(2080), - [anon_sym_let] = ACTIONS(2080), - [anon_sym_loop] = ACTIONS(2080), - [anon_sym_match] = ACTIONS(2080), - [anon_sym_mod] = ACTIONS(2080), - [anon_sym_pub] = ACTIONS(2080), - [anon_sym_return] = ACTIONS(2080), - [anon_sym_static] = ACTIONS(2080), - [anon_sym_struct] = ACTIONS(2080), - [anon_sym_trait] = ACTIONS(2080), - [anon_sym_type] = ACTIONS(2080), - [anon_sym_union] = ACTIONS(2080), - [anon_sym_unsafe] = ACTIONS(2080), - [anon_sym_use] = ACTIONS(2080), - [anon_sym_while] = ACTIONS(2080), - [anon_sym_extern] = ACTIONS(2080), - [anon_sym_yield] = ACTIONS(2080), - [anon_sym_move] = ACTIONS(2080), - [anon_sym_try] = ACTIONS(2080), - [sym_integer_literal] = ACTIONS(2078), - [aux_sym_string_literal_token1] = ACTIONS(2078), - [sym_char_literal] = ACTIONS(2078), - [anon_sym_true] = ACTIONS(2080), - [anon_sym_false] = ACTIONS(2080), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2080), - [sym_super] = ACTIONS(2080), - [sym_crate] = ACTIONS(2080), - [sym_metavariable] = ACTIONS(2078), - [sym__raw_string_literal_start] = ACTIONS(2078), - [sym_float_literal] = ACTIONS(2078), + [ts_builtin_sym_end] = ACTIONS(2105), + [sym_identifier] = ACTIONS(2107), + [anon_sym_SEMI] = ACTIONS(2105), + [anon_sym_macro_rules_BANG] = ACTIONS(2105), + [anon_sym_LPAREN] = ACTIONS(2105), + [anon_sym_LBRACK] = ACTIONS(2105), + [anon_sym_LBRACE] = ACTIONS(2105), + [anon_sym_RBRACE] = ACTIONS(2105), + [anon_sym_STAR] = ACTIONS(2105), + [anon_sym_u8] = ACTIONS(2107), + [anon_sym_i8] = ACTIONS(2107), + [anon_sym_u16] = ACTIONS(2107), + [anon_sym_i16] = ACTIONS(2107), + [anon_sym_u32] = ACTIONS(2107), + [anon_sym_i32] = ACTIONS(2107), + [anon_sym_u64] = ACTIONS(2107), + [anon_sym_i64] = ACTIONS(2107), + [anon_sym_u128] = ACTIONS(2107), + [anon_sym_i128] = ACTIONS(2107), + [anon_sym_isize] = ACTIONS(2107), + [anon_sym_usize] = ACTIONS(2107), + [anon_sym_f32] = ACTIONS(2107), + [anon_sym_f64] = ACTIONS(2107), + [anon_sym_bool] = ACTIONS(2107), + [anon_sym_str] = ACTIONS(2107), + [anon_sym_char] = ACTIONS(2107), + [anon_sym_DASH] = ACTIONS(2105), + [anon_sym_BANG] = ACTIONS(2105), + [anon_sym_AMP] = ACTIONS(2105), + [anon_sym_PIPE] = ACTIONS(2105), + [anon_sym_LT] = ACTIONS(2105), + [anon_sym_DOT_DOT] = ACTIONS(2105), + [anon_sym_COLON_COLON] = ACTIONS(2105), + [anon_sym_POUND] = ACTIONS(2105), + [anon_sym_SQUOTE] = ACTIONS(2107), + [anon_sym_async] = ACTIONS(2107), + [anon_sym_break] = ACTIONS(2107), + [anon_sym_const] = ACTIONS(2107), + [anon_sym_continue] = ACTIONS(2107), + [anon_sym_default] = ACTIONS(2107), + [anon_sym_enum] = ACTIONS(2107), + [anon_sym_fn] = ACTIONS(2107), + [anon_sym_for] = ACTIONS(2107), + [anon_sym_gen] = ACTIONS(2107), + [anon_sym_if] = ACTIONS(2107), + [anon_sym_impl] = ACTIONS(2107), + [anon_sym_let] = ACTIONS(2107), + [anon_sym_loop] = ACTIONS(2107), + [anon_sym_match] = ACTIONS(2107), + [anon_sym_mod] = ACTIONS(2107), + [anon_sym_pub] = ACTIONS(2107), + [anon_sym_return] = ACTIONS(2107), + [anon_sym_static] = ACTIONS(2107), + [anon_sym_struct] = ACTIONS(2107), + [anon_sym_trait] = ACTIONS(2107), + [anon_sym_type] = ACTIONS(2107), + [anon_sym_union] = ACTIONS(2107), + [anon_sym_unsafe] = ACTIONS(2107), + [anon_sym_use] = ACTIONS(2107), + [anon_sym_while] = ACTIONS(2107), + [anon_sym_extern] = ACTIONS(2107), + [anon_sym_safe] = ACTIONS(2107), + [anon_sym_yield] = ACTIONS(2107), + [anon_sym_move] = ACTIONS(2107), + [anon_sym_try] = ACTIONS(2107), + [sym_integer_literal] = ACTIONS(2105), + [aux_sym_string_literal_token1] = ACTIONS(2105), + [sym_char_literal] = ACTIONS(2105), + [anon_sym_true] = ACTIONS(2107), + [anon_sym_false] = ACTIONS(2107), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(2107), + [sym_super] = ACTIONS(2107), + [sym_crate] = ACTIONS(2107), + [sym_metavariable] = ACTIONS(2105), + [sym__raw_string_literal_start] = ACTIONS(2105), + [sym_float_literal] = ACTIONS(2105), }, [STATE(564)] = { [sym_line_comment] = STATE(564), [sym_block_comment] = STATE(564), - [ts_builtin_sym_end] = ACTIONS(2082), - [sym_identifier] = ACTIONS(2084), - [anon_sym_SEMI] = ACTIONS(2082), - [anon_sym_macro_rules_BANG] = ACTIONS(2082), - [anon_sym_LPAREN] = ACTIONS(2082), - [anon_sym_LBRACK] = ACTIONS(2082), - [anon_sym_LBRACE] = ACTIONS(2082), - [anon_sym_RBRACE] = ACTIONS(2082), - [anon_sym_STAR] = ACTIONS(2082), - [anon_sym_u8] = ACTIONS(2084), - [anon_sym_i8] = ACTIONS(2084), - [anon_sym_u16] = ACTIONS(2084), - [anon_sym_i16] = ACTIONS(2084), - [anon_sym_u32] = ACTIONS(2084), - [anon_sym_i32] = ACTIONS(2084), - [anon_sym_u64] = ACTIONS(2084), - [anon_sym_i64] = ACTIONS(2084), - [anon_sym_u128] = ACTIONS(2084), - [anon_sym_i128] = ACTIONS(2084), - [anon_sym_isize] = ACTIONS(2084), - [anon_sym_usize] = ACTIONS(2084), - [anon_sym_f32] = ACTIONS(2084), - [anon_sym_f64] = ACTIONS(2084), - [anon_sym_bool] = ACTIONS(2084), - [anon_sym_str] = ACTIONS(2084), - [anon_sym_char] = ACTIONS(2084), - [anon_sym_DASH] = ACTIONS(2082), - [anon_sym_BANG] = ACTIONS(2082), - [anon_sym_AMP] = ACTIONS(2082), - [anon_sym_PIPE] = ACTIONS(2082), - [anon_sym_LT] = ACTIONS(2082), - [anon_sym_DOT_DOT] = ACTIONS(2082), - [anon_sym_COLON_COLON] = ACTIONS(2082), - [anon_sym_POUND] = ACTIONS(2082), - [anon_sym_SQUOTE] = ACTIONS(2084), - [anon_sym_async] = ACTIONS(2084), - [anon_sym_break] = ACTIONS(2084), - [anon_sym_const] = ACTIONS(2084), - [anon_sym_continue] = ACTIONS(2084), - [anon_sym_default] = ACTIONS(2084), - [anon_sym_enum] = ACTIONS(2084), - [anon_sym_fn] = ACTIONS(2084), - [anon_sym_for] = ACTIONS(2084), - [anon_sym_gen] = ACTIONS(2084), - [anon_sym_if] = ACTIONS(2084), - [anon_sym_impl] = ACTIONS(2084), - [anon_sym_let] = ACTIONS(2084), - [anon_sym_loop] = ACTIONS(2084), - [anon_sym_match] = ACTIONS(2084), - [anon_sym_mod] = ACTIONS(2084), - [anon_sym_pub] = ACTIONS(2084), - [anon_sym_return] = ACTIONS(2084), - [anon_sym_static] = ACTIONS(2084), - [anon_sym_struct] = ACTIONS(2084), - [anon_sym_trait] = ACTIONS(2084), - [anon_sym_type] = ACTIONS(2084), - [anon_sym_union] = ACTIONS(2084), - [anon_sym_unsafe] = ACTIONS(2084), - [anon_sym_use] = ACTIONS(2084), - [anon_sym_while] = ACTIONS(2084), - [anon_sym_extern] = ACTIONS(2084), - [anon_sym_yield] = ACTIONS(2084), - [anon_sym_move] = ACTIONS(2084), - [anon_sym_try] = ACTIONS(2084), - [sym_integer_literal] = ACTIONS(2082), - [aux_sym_string_literal_token1] = ACTIONS(2082), - [sym_char_literal] = ACTIONS(2082), - [anon_sym_true] = ACTIONS(2084), - [anon_sym_false] = ACTIONS(2084), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2084), - [sym_super] = ACTIONS(2084), - [sym_crate] = ACTIONS(2084), - [sym_metavariable] = ACTIONS(2082), - [sym__raw_string_literal_start] = ACTIONS(2082), - [sym_float_literal] = ACTIONS(2082), + [ts_builtin_sym_end] = ACTIONS(2109), + [sym_identifier] = ACTIONS(2111), + [anon_sym_SEMI] = ACTIONS(2109), + [anon_sym_macro_rules_BANG] = ACTIONS(2109), + [anon_sym_LPAREN] = ACTIONS(2109), + [anon_sym_LBRACK] = ACTIONS(2109), + [anon_sym_LBRACE] = ACTIONS(2109), + [anon_sym_RBRACE] = ACTIONS(2109), + [anon_sym_STAR] = ACTIONS(2109), + [anon_sym_u8] = ACTIONS(2111), + [anon_sym_i8] = ACTIONS(2111), + [anon_sym_u16] = ACTIONS(2111), + [anon_sym_i16] = ACTIONS(2111), + [anon_sym_u32] = ACTIONS(2111), + [anon_sym_i32] = ACTIONS(2111), + [anon_sym_u64] = ACTIONS(2111), + [anon_sym_i64] = ACTIONS(2111), + [anon_sym_u128] = ACTIONS(2111), + [anon_sym_i128] = ACTIONS(2111), + [anon_sym_isize] = ACTIONS(2111), + [anon_sym_usize] = ACTIONS(2111), + [anon_sym_f32] = ACTIONS(2111), + [anon_sym_f64] = ACTIONS(2111), + [anon_sym_bool] = ACTIONS(2111), + [anon_sym_str] = ACTIONS(2111), + [anon_sym_char] = ACTIONS(2111), + [anon_sym_DASH] = ACTIONS(2109), + [anon_sym_BANG] = ACTIONS(2109), + [anon_sym_AMP] = ACTIONS(2109), + [anon_sym_PIPE] = ACTIONS(2109), + [anon_sym_LT] = ACTIONS(2109), + [anon_sym_DOT_DOT] = ACTIONS(2109), + [anon_sym_COLON_COLON] = ACTIONS(2109), + [anon_sym_POUND] = ACTIONS(2109), + [anon_sym_SQUOTE] = ACTIONS(2111), + [anon_sym_async] = ACTIONS(2111), + [anon_sym_break] = ACTIONS(2111), + [anon_sym_const] = ACTIONS(2111), + [anon_sym_continue] = ACTIONS(2111), + [anon_sym_default] = ACTIONS(2111), + [anon_sym_enum] = ACTIONS(2111), + [anon_sym_fn] = ACTIONS(2111), + [anon_sym_for] = ACTIONS(2111), + [anon_sym_gen] = ACTIONS(2111), + [anon_sym_if] = ACTIONS(2111), + [anon_sym_impl] = ACTIONS(2111), + [anon_sym_let] = ACTIONS(2111), + [anon_sym_loop] = ACTIONS(2111), + [anon_sym_match] = ACTIONS(2111), + [anon_sym_mod] = ACTIONS(2111), + [anon_sym_pub] = ACTIONS(2111), + [anon_sym_return] = ACTIONS(2111), + [anon_sym_static] = ACTIONS(2111), + [anon_sym_struct] = ACTIONS(2111), + [anon_sym_trait] = ACTIONS(2111), + [anon_sym_type] = ACTIONS(2111), + [anon_sym_union] = ACTIONS(2111), + [anon_sym_unsafe] = ACTIONS(2111), + [anon_sym_use] = ACTIONS(2111), + [anon_sym_while] = ACTIONS(2111), + [anon_sym_extern] = ACTIONS(2111), + [anon_sym_safe] = ACTIONS(2111), + [anon_sym_yield] = ACTIONS(2111), + [anon_sym_move] = ACTIONS(2111), + [anon_sym_try] = ACTIONS(2111), + [sym_integer_literal] = ACTIONS(2109), + [aux_sym_string_literal_token1] = ACTIONS(2109), + [sym_char_literal] = ACTIONS(2109), + [anon_sym_true] = ACTIONS(2111), + [anon_sym_false] = ACTIONS(2111), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(2111), + [sym_super] = ACTIONS(2111), + [sym_crate] = ACTIONS(2111), + [sym_metavariable] = ACTIONS(2109), + [sym__raw_string_literal_start] = ACTIONS(2109), + [sym_float_literal] = ACTIONS(2109), }, [STATE(565)] = { [sym_line_comment] = STATE(565), [sym_block_comment] = STATE(565), - [ts_builtin_sym_end] = ACTIONS(2086), - [sym_identifier] = ACTIONS(2088), - [anon_sym_SEMI] = ACTIONS(2086), - [anon_sym_macro_rules_BANG] = ACTIONS(2086), - [anon_sym_LPAREN] = ACTIONS(2086), - [anon_sym_LBRACK] = ACTIONS(2086), - [anon_sym_LBRACE] = ACTIONS(2086), - [anon_sym_RBRACE] = ACTIONS(2086), - [anon_sym_STAR] = ACTIONS(2086), - [anon_sym_u8] = ACTIONS(2088), - [anon_sym_i8] = ACTIONS(2088), - [anon_sym_u16] = ACTIONS(2088), - [anon_sym_i16] = ACTIONS(2088), - [anon_sym_u32] = ACTIONS(2088), - [anon_sym_i32] = ACTIONS(2088), - [anon_sym_u64] = ACTIONS(2088), - [anon_sym_i64] = ACTIONS(2088), - [anon_sym_u128] = ACTIONS(2088), - [anon_sym_i128] = ACTIONS(2088), - [anon_sym_isize] = ACTIONS(2088), - [anon_sym_usize] = ACTIONS(2088), - [anon_sym_f32] = ACTIONS(2088), - [anon_sym_f64] = ACTIONS(2088), - [anon_sym_bool] = ACTIONS(2088), - [anon_sym_str] = ACTIONS(2088), - [anon_sym_char] = ACTIONS(2088), - [anon_sym_DASH] = ACTIONS(2086), - [anon_sym_BANG] = ACTIONS(2086), - [anon_sym_AMP] = ACTIONS(2086), - [anon_sym_PIPE] = ACTIONS(2086), - [anon_sym_LT] = ACTIONS(2086), - [anon_sym_DOT_DOT] = ACTIONS(2086), - [anon_sym_COLON_COLON] = ACTIONS(2086), - [anon_sym_POUND] = ACTIONS(2086), - [anon_sym_SQUOTE] = ACTIONS(2088), - [anon_sym_async] = ACTIONS(2088), - [anon_sym_break] = ACTIONS(2088), - [anon_sym_const] = ACTIONS(2088), - [anon_sym_continue] = ACTIONS(2088), - [anon_sym_default] = ACTIONS(2088), - [anon_sym_enum] = ACTIONS(2088), - [anon_sym_fn] = ACTIONS(2088), - [anon_sym_for] = ACTIONS(2088), - [anon_sym_gen] = ACTIONS(2088), - [anon_sym_if] = ACTIONS(2088), - [anon_sym_impl] = ACTIONS(2088), - [anon_sym_let] = ACTIONS(2088), - [anon_sym_loop] = ACTIONS(2088), - [anon_sym_match] = ACTIONS(2088), - [anon_sym_mod] = ACTIONS(2088), - [anon_sym_pub] = ACTIONS(2088), - [anon_sym_return] = ACTIONS(2088), - [anon_sym_static] = ACTIONS(2088), - [anon_sym_struct] = ACTIONS(2088), - [anon_sym_trait] = ACTIONS(2088), - [anon_sym_type] = ACTIONS(2088), - [anon_sym_union] = ACTIONS(2088), - [anon_sym_unsafe] = ACTIONS(2088), - [anon_sym_use] = ACTIONS(2088), - [anon_sym_while] = ACTIONS(2088), - [anon_sym_extern] = ACTIONS(2088), - [anon_sym_yield] = ACTIONS(2088), - [anon_sym_move] = ACTIONS(2088), - [anon_sym_try] = ACTIONS(2088), - [sym_integer_literal] = ACTIONS(2086), - [aux_sym_string_literal_token1] = ACTIONS(2086), - [sym_char_literal] = ACTIONS(2086), - [anon_sym_true] = ACTIONS(2088), - [anon_sym_false] = ACTIONS(2088), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2088), - [sym_super] = ACTIONS(2088), - [sym_crate] = ACTIONS(2088), - [sym_metavariable] = ACTIONS(2086), - [sym__raw_string_literal_start] = ACTIONS(2086), - [sym_float_literal] = ACTIONS(2086), + [ts_builtin_sym_end] = ACTIONS(2113), + [sym_identifier] = ACTIONS(2115), + [anon_sym_SEMI] = ACTIONS(2113), + [anon_sym_macro_rules_BANG] = ACTIONS(2113), + [anon_sym_LPAREN] = ACTIONS(2113), + [anon_sym_LBRACK] = ACTIONS(2113), + [anon_sym_LBRACE] = ACTIONS(2113), + [anon_sym_RBRACE] = ACTIONS(2113), + [anon_sym_STAR] = ACTIONS(2113), + [anon_sym_u8] = ACTIONS(2115), + [anon_sym_i8] = ACTIONS(2115), + [anon_sym_u16] = ACTIONS(2115), + [anon_sym_i16] = ACTIONS(2115), + [anon_sym_u32] = ACTIONS(2115), + [anon_sym_i32] = ACTIONS(2115), + [anon_sym_u64] = ACTIONS(2115), + [anon_sym_i64] = ACTIONS(2115), + [anon_sym_u128] = ACTIONS(2115), + [anon_sym_i128] = ACTIONS(2115), + [anon_sym_isize] = ACTIONS(2115), + [anon_sym_usize] = ACTIONS(2115), + [anon_sym_f32] = ACTIONS(2115), + [anon_sym_f64] = ACTIONS(2115), + [anon_sym_bool] = ACTIONS(2115), + [anon_sym_str] = ACTIONS(2115), + [anon_sym_char] = ACTIONS(2115), + [anon_sym_DASH] = ACTIONS(2113), + [anon_sym_BANG] = ACTIONS(2113), + [anon_sym_AMP] = ACTIONS(2113), + [anon_sym_PIPE] = ACTIONS(2113), + [anon_sym_LT] = ACTIONS(2113), + [anon_sym_DOT_DOT] = ACTIONS(2113), + [anon_sym_COLON_COLON] = ACTIONS(2113), + [anon_sym_POUND] = ACTIONS(2113), + [anon_sym_SQUOTE] = ACTIONS(2115), + [anon_sym_async] = ACTIONS(2115), + [anon_sym_break] = ACTIONS(2115), + [anon_sym_const] = ACTIONS(2115), + [anon_sym_continue] = ACTIONS(2115), + [anon_sym_default] = ACTIONS(2115), + [anon_sym_enum] = ACTIONS(2115), + [anon_sym_fn] = ACTIONS(2115), + [anon_sym_for] = ACTIONS(2115), + [anon_sym_gen] = ACTIONS(2115), + [anon_sym_if] = ACTIONS(2115), + [anon_sym_impl] = ACTIONS(2115), + [anon_sym_let] = ACTIONS(2115), + [anon_sym_loop] = ACTIONS(2115), + [anon_sym_match] = ACTIONS(2115), + [anon_sym_mod] = ACTIONS(2115), + [anon_sym_pub] = ACTIONS(2115), + [anon_sym_return] = ACTIONS(2115), + [anon_sym_static] = ACTIONS(2115), + [anon_sym_struct] = ACTIONS(2115), + [anon_sym_trait] = ACTIONS(2115), + [anon_sym_type] = ACTIONS(2115), + [anon_sym_union] = ACTIONS(2115), + [anon_sym_unsafe] = ACTIONS(2115), + [anon_sym_use] = ACTIONS(2115), + [anon_sym_while] = ACTIONS(2115), + [anon_sym_extern] = ACTIONS(2115), + [anon_sym_safe] = ACTIONS(2115), + [anon_sym_yield] = ACTIONS(2115), + [anon_sym_move] = ACTIONS(2115), + [anon_sym_try] = ACTIONS(2115), + [sym_integer_literal] = ACTIONS(2113), + [aux_sym_string_literal_token1] = ACTIONS(2113), + [sym_char_literal] = ACTIONS(2113), + [anon_sym_true] = ACTIONS(2115), + [anon_sym_false] = ACTIONS(2115), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(2115), + [sym_super] = ACTIONS(2115), + [sym_crate] = ACTIONS(2115), + [sym_metavariable] = ACTIONS(2113), + [sym__raw_string_literal_start] = ACTIONS(2113), + [sym_float_literal] = ACTIONS(2113), }, [STATE(566)] = { [sym_line_comment] = STATE(566), [sym_block_comment] = STATE(566), - [ts_builtin_sym_end] = ACTIONS(2090), - [sym_identifier] = ACTIONS(2092), - [anon_sym_SEMI] = ACTIONS(2090), - [anon_sym_macro_rules_BANG] = ACTIONS(2090), - [anon_sym_LPAREN] = ACTIONS(2090), - [anon_sym_LBRACK] = ACTIONS(2090), - [anon_sym_LBRACE] = ACTIONS(2090), - [anon_sym_RBRACE] = ACTIONS(2090), - [anon_sym_STAR] = ACTIONS(2090), - [anon_sym_u8] = ACTIONS(2092), - [anon_sym_i8] = ACTIONS(2092), - [anon_sym_u16] = ACTIONS(2092), - [anon_sym_i16] = ACTIONS(2092), - [anon_sym_u32] = ACTIONS(2092), - [anon_sym_i32] = ACTIONS(2092), - [anon_sym_u64] = ACTIONS(2092), - [anon_sym_i64] = ACTIONS(2092), - [anon_sym_u128] = ACTIONS(2092), - [anon_sym_i128] = ACTIONS(2092), - [anon_sym_isize] = ACTIONS(2092), - [anon_sym_usize] = ACTIONS(2092), - [anon_sym_f32] = ACTIONS(2092), - [anon_sym_f64] = ACTIONS(2092), - [anon_sym_bool] = ACTIONS(2092), - [anon_sym_str] = ACTIONS(2092), - [anon_sym_char] = ACTIONS(2092), - [anon_sym_DASH] = ACTIONS(2090), - [anon_sym_BANG] = ACTIONS(2090), - [anon_sym_AMP] = ACTIONS(2090), - [anon_sym_PIPE] = ACTIONS(2090), - [anon_sym_LT] = ACTIONS(2090), - [anon_sym_DOT_DOT] = ACTIONS(2090), - [anon_sym_COLON_COLON] = ACTIONS(2090), - [anon_sym_POUND] = ACTIONS(2090), - [anon_sym_SQUOTE] = ACTIONS(2092), - [anon_sym_async] = ACTIONS(2092), - [anon_sym_break] = ACTIONS(2092), - [anon_sym_const] = ACTIONS(2092), - [anon_sym_continue] = ACTIONS(2092), - [anon_sym_default] = ACTIONS(2092), - [anon_sym_enum] = ACTIONS(2092), - [anon_sym_fn] = ACTIONS(2092), - [anon_sym_for] = ACTIONS(2092), - [anon_sym_gen] = ACTIONS(2092), - [anon_sym_if] = ACTIONS(2092), - [anon_sym_impl] = ACTIONS(2092), - [anon_sym_let] = ACTIONS(2092), - [anon_sym_loop] = ACTIONS(2092), - [anon_sym_match] = ACTIONS(2092), - [anon_sym_mod] = ACTIONS(2092), - [anon_sym_pub] = ACTIONS(2092), - [anon_sym_return] = ACTIONS(2092), - [anon_sym_static] = ACTIONS(2092), - [anon_sym_struct] = ACTIONS(2092), - [anon_sym_trait] = ACTIONS(2092), - [anon_sym_type] = ACTIONS(2092), - [anon_sym_union] = ACTIONS(2092), - [anon_sym_unsafe] = ACTIONS(2092), - [anon_sym_use] = ACTIONS(2092), - [anon_sym_while] = ACTIONS(2092), - [anon_sym_extern] = ACTIONS(2092), - [anon_sym_yield] = ACTIONS(2092), - [anon_sym_move] = ACTIONS(2092), - [anon_sym_try] = ACTIONS(2092), - [sym_integer_literal] = ACTIONS(2090), - [aux_sym_string_literal_token1] = ACTIONS(2090), - [sym_char_literal] = ACTIONS(2090), - [anon_sym_true] = ACTIONS(2092), - [anon_sym_false] = ACTIONS(2092), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2092), - [sym_super] = ACTIONS(2092), - [sym_crate] = ACTIONS(2092), - [sym_metavariable] = ACTIONS(2090), - [sym__raw_string_literal_start] = ACTIONS(2090), - [sym_float_literal] = ACTIONS(2090), + [ts_builtin_sym_end] = ACTIONS(2117), + [sym_identifier] = ACTIONS(2119), + [anon_sym_SEMI] = ACTIONS(2117), + [anon_sym_macro_rules_BANG] = ACTIONS(2117), + [anon_sym_LPAREN] = ACTIONS(2117), + [anon_sym_LBRACK] = ACTIONS(2117), + [anon_sym_LBRACE] = ACTIONS(2117), + [anon_sym_RBRACE] = ACTIONS(2117), + [anon_sym_STAR] = ACTIONS(2117), + [anon_sym_u8] = ACTIONS(2119), + [anon_sym_i8] = ACTIONS(2119), + [anon_sym_u16] = ACTIONS(2119), + [anon_sym_i16] = ACTIONS(2119), + [anon_sym_u32] = ACTIONS(2119), + [anon_sym_i32] = ACTIONS(2119), + [anon_sym_u64] = ACTIONS(2119), + [anon_sym_i64] = ACTIONS(2119), + [anon_sym_u128] = ACTIONS(2119), + [anon_sym_i128] = ACTIONS(2119), + [anon_sym_isize] = ACTIONS(2119), + [anon_sym_usize] = ACTIONS(2119), + [anon_sym_f32] = ACTIONS(2119), + [anon_sym_f64] = ACTIONS(2119), + [anon_sym_bool] = ACTIONS(2119), + [anon_sym_str] = ACTIONS(2119), + [anon_sym_char] = ACTIONS(2119), + [anon_sym_DASH] = ACTIONS(2117), + [anon_sym_BANG] = ACTIONS(2117), + [anon_sym_AMP] = ACTIONS(2117), + [anon_sym_PIPE] = ACTIONS(2117), + [anon_sym_LT] = ACTIONS(2117), + [anon_sym_DOT_DOT] = ACTIONS(2117), + [anon_sym_COLON_COLON] = ACTIONS(2117), + [anon_sym_POUND] = ACTIONS(2117), + [anon_sym_SQUOTE] = ACTIONS(2119), + [anon_sym_async] = ACTIONS(2119), + [anon_sym_break] = ACTIONS(2119), + [anon_sym_const] = ACTIONS(2119), + [anon_sym_continue] = ACTIONS(2119), + [anon_sym_default] = ACTIONS(2119), + [anon_sym_enum] = ACTIONS(2119), + [anon_sym_fn] = ACTIONS(2119), + [anon_sym_for] = ACTIONS(2119), + [anon_sym_gen] = ACTIONS(2119), + [anon_sym_if] = ACTIONS(2119), + [anon_sym_impl] = ACTIONS(2119), + [anon_sym_let] = ACTIONS(2119), + [anon_sym_loop] = ACTIONS(2119), + [anon_sym_match] = ACTIONS(2119), + [anon_sym_mod] = ACTIONS(2119), + [anon_sym_pub] = ACTIONS(2119), + [anon_sym_return] = ACTIONS(2119), + [anon_sym_static] = ACTIONS(2119), + [anon_sym_struct] = ACTIONS(2119), + [anon_sym_trait] = ACTIONS(2119), + [anon_sym_type] = ACTIONS(2119), + [anon_sym_union] = ACTIONS(2119), + [anon_sym_unsafe] = ACTIONS(2119), + [anon_sym_use] = ACTIONS(2119), + [anon_sym_while] = ACTIONS(2119), + [anon_sym_extern] = ACTIONS(2119), + [anon_sym_safe] = ACTIONS(2119), + [anon_sym_yield] = ACTIONS(2119), + [anon_sym_move] = ACTIONS(2119), + [anon_sym_try] = ACTIONS(2119), + [sym_integer_literal] = ACTIONS(2117), + [aux_sym_string_literal_token1] = ACTIONS(2117), + [sym_char_literal] = ACTIONS(2117), + [anon_sym_true] = ACTIONS(2119), + [anon_sym_false] = ACTIONS(2119), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(2119), + [sym_super] = ACTIONS(2119), + [sym_crate] = ACTIONS(2119), + [sym_metavariable] = ACTIONS(2117), + [sym__raw_string_literal_start] = ACTIONS(2117), + [sym_float_literal] = ACTIONS(2117), }, [STATE(567)] = { [sym_line_comment] = STATE(567), [sym_block_comment] = STATE(567), - [ts_builtin_sym_end] = ACTIONS(2094), - [sym_identifier] = ACTIONS(2096), - [anon_sym_SEMI] = ACTIONS(2094), - [anon_sym_macro_rules_BANG] = ACTIONS(2094), - [anon_sym_LPAREN] = ACTIONS(2094), - [anon_sym_LBRACK] = ACTIONS(2094), - [anon_sym_LBRACE] = ACTIONS(2094), - [anon_sym_RBRACE] = ACTIONS(2094), - [anon_sym_STAR] = ACTIONS(2094), - [anon_sym_u8] = ACTIONS(2096), - [anon_sym_i8] = ACTIONS(2096), - [anon_sym_u16] = ACTIONS(2096), - [anon_sym_i16] = ACTIONS(2096), - [anon_sym_u32] = ACTIONS(2096), - [anon_sym_i32] = ACTIONS(2096), - [anon_sym_u64] = ACTIONS(2096), - [anon_sym_i64] = ACTIONS(2096), - [anon_sym_u128] = ACTIONS(2096), - [anon_sym_i128] = ACTIONS(2096), - [anon_sym_isize] = ACTIONS(2096), - [anon_sym_usize] = ACTIONS(2096), - [anon_sym_f32] = ACTIONS(2096), - [anon_sym_f64] = ACTIONS(2096), - [anon_sym_bool] = ACTIONS(2096), - [anon_sym_str] = ACTIONS(2096), - [anon_sym_char] = ACTIONS(2096), - [anon_sym_DASH] = ACTIONS(2094), - [anon_sym_BANG] = ACTIONS(2094), - [anon_sym_AMP] = ACTIONS(2094), - [anon_sym_PIPE] = ACTIONS(2094), - [anon_sym_LT] = ACTIONS(2094), - [anon_sym_DOT_DOT] = ACTIONS(2094), - [anon_sym_COLON_COLON] = ACTIONS(2094), - [anon_sym_POUND] = ACTIONS(2094), - [anon_sym_SQUOTE] = ACTIONS(2096), - [anon_sym_async] = ACTIONS(2096), - [anon_sym_break] = ACTIONS(2096), - [anon_sym_const] = ACTIONS(2096), - [anon_sym_continue] = ACTIONS(2096), - [anon_sym_default] = ACTIONS(2096), - [anon_sym_enum] = ACTIONS(2096), - [anon_sym_fn] = ACTIONS(2096), - [anon_sym_for] = ACTIONS(2096), - [anon_sym_gen] = ACTIONS(2096), - [anon_sym_if] = ACTIONS(2096), - [anon_sym_impl] = ACTIONS(2096), - [anon_sym_let] = ACTIONS(2096), - [anon_sym_loop] = ACTIONS(2096), - [anon_sym_match] = ACTIONS(2096), - [anon_sym_mod] = ACTIONS(2096), - [anon_sym_pub] = ACTIONS(2096), - [anon_sym_return] = ACTIONS(2096), - [anon_sym_static] = ACTIONS(2096), - [anon_sym_struct] = ACTIONS(2096), - [anon_sym_trait] = ACTIONS(2096), - [anon_sym_type] = ACTIONS(2096), - [anon_sym_union] = ACTIONS(2096), - [anon_sym_unsafe] = ACTIONS(2096), - [anon_sym_use] = ACTIONS(2096), - [anon_sym_while] = ACTIONS(2096), - [anon_sym_extern] = ACTIONS(2096), - [anon_sym_yield] = ACTIONS(2096), - [anon_sym_move] = ACTIONS(2096), - [anon_sym_try] = ACTIONS(2096), - [sym_integer_literal] = ACTIONS(2094), - [aux_sym_string_literal_token1] = ACTIONS(2094), - [sym_char_literal] = ACTIONS(2094), - [anon_sym_true] = ACTIONS(2096), - [anon_sym_false] = ACTIONS(2096), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2096), - [sym_super] = ACTIONS(2096), - [sym_crate] = ACTIONS(2096), - [sym_metavariable] = ACTIONS(2094), - [sym__raw_string_literal_start] = ACTIONS(2094), - [sym_float_literal] = ACTIONS(2094), + [ts_builtin_sym_end] = ACTIONS(2121), + [sym_identifier] = ACTIONS(2123), + [anon_sym_SEMI] = ACTIONS(2121), + [anon_sym_macro_rules_BANG] = ACTIONS(2121), + [anon_sym_LPAREN] = ACTIONS(2121), + [anon_sym_LBRACK] = ACTIONS(2121), + [anon_sym_LBRACE] = ACTIONS(2121), + [anon_sym_RBRACE] = ACTIONS(2121), + [anon_sym_STAR] = ACTIONS(2121), + [anon_sym_u8] = ACTIONS(2123), + [anon_sym_i8] = ACTIONS(2123), + [anon_sym_u16] = ACTIONS(2123), + [anon_sym_i16] = ACTIONS(2123), + [anon_sym_u32] = ACTIONS(2123), + [anon_sym_i32] = ACTIONS(2123), + [anon_sym_u64] = ACTIONS(2123), + [anon_sym_i64] = ACTIONS(2123), + [anon_sym_u128] = ACTIONS(2123), + [anon_sym_i128] = ACTIONS(2123), + [anon_sym_isize] = ACTIONS(2123), + [anon_sym_usize] = ACTIONS(2123), + [anon_sym_f32] = ACTIONS(2123), + [anon_sym_f64] = ACTIONS(2123), + [anon_sym_bool] = ACTIONS(2123), + [anon_sym_str] = ACTIONS(2123), + [anon_sym_char] = ACTIONS(2123), + [anon_sym_DASH] = ACTIONS(2121), + [anon_sym_BANG] = ACTIONS(2121), + [anon_sym_AMP] = ACTIONS(2121), + [anon_sym_PIPE] = ACTIONS(2121), + [anon_sym_LT] = ACTIONS(2121), + [anon_sym_DOT_DOT] = ACTIONS(2121), + [anon_sym_COLON_COLON] = ACTIONS(2121), + [anon_sym_POUND] = ACTIONS(2121), + [anon_sym_SQUOTE] = ACTIONS(2123), + [anon_sym_async] = ACTIONS(2123), + [anon_sym_break] = ACTIONS(2123), + [anon_sym_const] = ACTIONS(2123), + [anon_sym_continue] = ACTIONS(2123), + [anon_sym_default] = ACTIONS(2123), + [anon_sym_enum] = ACTIONS(2123), + [anon_sym_fn] = ACTIONS(2123), + [anon_sym_for] = ACTIONS(2123), + [anon_sym_gen] = ACTIONS(2123), + [anon_sym_if] = ACTIONS(2123), + [anon_sym_impl] = ACTIONS(2123), + [anon_sym_let] = ACTIONS(2123), + [anon_sym_loop] = ACTIONS(2123), + [anon_sym_match] = ACTIONS(2123), + [anon_sym_mod] = ACTIONS(2123), + [anon_sym_pub] = ACTIONS(2123), + [anon_sym_return] = ACTIONS(2123), + [anon_sym_static] = ACTIONS(2123), + [anon_sym_struct] = ACTIONS(2123), + [anon_sym_trait] = ACTIONS(2123), + [anon_sym_type] = ACTIONS(2123), + [anon_sym_union] = ACTIONS(2123), + [anon_sym_unsafe] = ACTIONS(2123), + [anon_sym_use] = ACTIONS(2123), + [anon_sym_while] = ACTIONS(2123), + [anon_sym_extern] = ACTIONS(2123), + [anon_sym_safe] = ACTIONS(2123), + [anon_sym_yield] = ACTIONS(2123), + [anon_sym_move] = ACTIONS(2123), + [anon_sym_try] = ACTIONS(2123), + [sym_integer_literal] = ACTIONS(2121), + [aux_sym_string_literal_token1] = ACTIONS(2121), + [sym_char_literal] = ACTIONS(2121), + [anon_sym_true] = ACTIONS(2123), + [anon_sym_false] = ACTIONS(2123), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(2123), + [sym_super] = ACTIONS(2123), + [sym_crate] = ACTIONS(2123), + [sym_metavariable] = ACTIONS(2121), + [sym__raw_string_literal_start] = ACTIONS(2121), + [sym_float_literal] = ACTIONS(2121), }, [STATE(568)] = { [sym_line_comment] = STATE(568), [sym_block_comment] = STATE(568), - [ts_builtin_sym_end] = ACTIONS(2098), - [sym_identifier] = ACTIONS(2100), - [anon_sym_SEMI] = ACTIONS(2098), - [anon_sym_macro_rules_BANG] = ACTIONS(2098), - [anon_sym_LPAREN] = ACTIONS(2098), - [anon_sym_LBRACK] = ACTIONS(2098), - [anon_sym_LBRACE] = ACTIONS(2098), - [anon_sym_RBRACE] = ACTIONS(2098), - [anon_sym_STAR] = ACTIONS(2098), - [anon_sym_u8] = ACTIONS(2100), - [anon_sym_i8] = ACTIONS(2100), - [anon_sym_u16] = ACTIONS(2100), - [anon_sym_i16] = ACTIONS(2100), - [anon_sym_u32] = ACTIONS(2100), - [anon_sym_i32] = ACTIONS(2100), - [anon_sym_u64] = ACTIONS(2100), - [anon_sym_i64] = ACTIONS(2100), - [anon_sym_u128] = ACTIONS(2100), - [anon_sym_i128] = ACTIONS(2100), - [anon_sym_isize] = ACTIONS(2100), - [anon_sym_usize] = ACTIONS(2100), - [anon_sym_f32] = ACTIONS(2100), - [anon_sym_f64] = ACTIONS(2100), - [anon_sym_bool] = ACTIONS(2100), - [anon_sym_str] = ACTIONS(2100), - [anon_sym_char] = ACTIONS(2100), - [anon_sym_DASH] = ACTIONS(2098), - [anon_sym_BANG] = ACTIONS(2098), - [anon_sym_AMP] = ACTIONS(2098), - [anon_sym_PIPE] = ACTIONS(2098), - [anon_sym_LT] = ACTIONS(2098), - [anon_sym_DOT_DOT] = ACTIONS(2098), - [anon_sym_COLON_COLON] = ACTIONS(2098), - [anon_sym_POUND] = ACTIONS(2098), - [anon_sym_SQUOTE] = ACTIONS(2100), - [anon_sym_async] = ACTIONS(2100), - [anon_sym_break] = ACTIONS(2100), - [anon_sym_const] = ACTIONS(2100), - [anon_sym_continue] = ACTIONS(2100), - [anon_sym_default] = ACTIONS(2100), - [anon_sym_enum] = ACTIONS(2100), - [anon_sym_fn] = ACTIONS(2100), - [anon_sym_for] = ACTIONS(2100), - [anon_sym_gen] = ACTIONS(2100), - [anon_sym_if] = ACTIONS(2100), - [anon_sym_impl] = ACTIONS(2100), - [anon_sym_let] = ACTIONS(2100), - [anon_sym_loop] = ACTIONS(2100), - [anon_sym_match] = ACTIONS(2100), - [anon_sym_mod] = ACTIONS(2100), - [anon_sym_pub] = ACTIONS(2100), - [anon_sym_return] = ACTIONS(2100), - [anon_sym_static] = ACTIONS(2100), - [anon_sym_struct] = ACTIONS(2100), - [anon_sym_trait] = ACTIONS(2100), - [anon_sym_type] = ACTIONS(2100), - [anon_sym_union] = ACTIONS(2100), - [anon_sym_unsafe] = ACTIONS(2100), - [anon_sym_use] = ACTIONS(2100), - [anon_sym_while] = ACTIONS(2100), - [anon_sym_extern] = ACTIONS(2100), - [anon_sym_yield] = ACTIONS(2100), - [anon_sym_move] = ACTIONS(2100), - [anon_sym_try] = ACTIONS(2100), - [sym_integer_literal] = ACTIONS(2098), - [aux_sym_string_literal_token1] = ACTIONS(2098), - [sym_char_literal] = ACTIONS(2098), - [anon_sym_true] = ACTIONS(2100), - [anon_sym_false] = ACTIONS(2100), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2100), - [sym_super] = ACTIONS(2100), - [sym_crate] = ACTIONS(2100), - [sym_metavariable] = ACTIONS(2098), - [sym__raw_string_literal_start] = ACTIONS(2098), - [sym_float_literal] = ACTIONS(2098), + [ts_builtin_sym_end] = ACTIONS(2125), + [sym_identifier] = ACTIONS(2127), + [anon_sym_SEMI] = ACTIONS(2125), + [anon_sym_macro_rules_BANG] = ACTIONS(2125), + [anon_sym_LPAREN] = ACTIONS(2125), + [anon_sym_LBRACK] = ACTIONS(2125), + [anon_sym_LBRACE] = ACTIONS(2125), + [anon_sym_RBRACE] = ACTIONS(2125), + [anon_sym_STAR] = ACTIONS(2125), + [anon_sym_u8] = ACTIONS(2127), + [anon_sym_i8] = ACTIONS(2127), + [anon_sym_u16] = ACTIONS(2127), + [anon_sym_i16] = ACTIONS(2127), + [anon_sym_u32] = ACTIONS(2127), + [anon_sym_i32] = ACTIONS(2127), + [anon_sym_u64] = ACTIONS(2127), + [anon_sym_i64] = ACTIONS(2127), + [anon_sym_u128] = ACTIONS(2127), + [anon_sym_i128] = ACTIONS(2127), + [anon_sym_isize] = ACTIONS(2127), + [anon_sym_usize] = ACTIONS(2127), + [anon_sym_f32] = ACTIONS(2127), + [anon_sym_f64] = ACTIONS(2127), + [anon_sym_bool] = ACTIONS(2127), + [anon_sym_str] = ACTIONS(2127), + [anon_sym_char] = ACTIONS(2127), + [anon_sym_DASH] = ACTIONS(2125), + [anon_sym_BANG] = ACTIONS(2125), + [anon_sym_AMP] = ACTIONS(2125), + [anon_sym_PIPE] = ACTIONS(2125), + [anon_sym_LT] = ACTIONS(2125), + [anon_sym_DOT_DOT] = ACTIONS(2125), + [anon_sym_COLON_COLON] = ACTIONS(2125), + [anon_sym_POUND] = ACTIONS(2125), + [anon_sym_SQUOTE] = ACTIONS(2127), + [anon_sym_async] = ACTIONS(2127), + [anon_sym_break] = ACTIONS(2127), + [anon_sym_const] = ACTIONS(2127), + [anon_sym_continue] = ACTIONS(2127), + [anon_sym_default] = ACTIONS(2127), + [anon_sym_enum] = ACTIONS(2127), + [anon_sym_fn] = ACTIONS(2127), + [anon_sym_for] = ACTIONS(2127), + [anon_sym_gen] = ACTIONS(2127), + [anon_sym_if] = ACTIONS(2127), + [anon_sym_impl] = ACTIONS(2127), + [anon_sym_let] = ACTIONS(2127), + [anon_sym_loop] = ACTIONS(2127), + [anon_sym_match] = ACTIONS(2127), + [anon_sym_mod] = ACTIONS(2127), + [anon_sym_pub] = ACTIONS(2127), + [anon_sym_return] = ACTIONS(2127), + [anon_sym_static] = ACTIONS(2127), + [anon_sym_struct] = ACTIONS(2127), + [anon_sym_trait] = ACTIONS(2127), + [anon_sym_type] = ACTIONS(2127), + [anon_sym_union] = ACTIONS(2127), + [anon_sym_unsafe] = ACTIONS(2127), + [anon_sym_use] = ACTIONS(2127), + [anon_sym_while] = ACTIONS(2127), + [anon_sym_extern] = ACTIONS(2127), + [anon_sym_safe] = ACTIONS(2127), + [anon_sym_yield] = ACTIONS(2127), + [anon_sym_move] = ACTIONS(2127), + [anon_sym_try] = ACTIONS(2127), + [sym_integer_literal] = ACTIONS(2125), + [aux_sym_string_literal_token1] = ACTIONS(2125), + [sym_char_literal] = ACTIONS(2125), + [anon_sym_true] = ACTIONS(2127), + [anon_sym_false] = ACTIONS(2127), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(2127), + [sym_super] = ACTIONS(2127), + [sym_crate] = ACTIONS(2127), + [sym_metavariable] = ACTIONS(2125), + [sym__raw_string_literal_start] = ACTIONS(2125), + [sym_float_literal] = ACTIONS(2125), }, [STATE(569)] = { [sym_line_comment] = STATE(569), [sym_block_comment] = STATE(569), - [ts_builtin_sym_end] = ACTIONS(2102), - [sym_identifier] = ACTIONS(2104), - [anon_sym_SEMI] = ACTIONS(2102), - [anon_sym_macro_rules_BANG] = ACTIONS(2102), - [anon_sym_LPAREN] = ACTIONS(2102), - [anon_sym_LBRACK] = ACTIONS(2102), - [anon_sym_LBRACE] = ACTIONS(2102), - [anon_sym_RBRACE] = ACTIONS(2102), - [anon_sym_STAR] = ACTIONS(2102), - [anon_sym_u8] = ACTIONS(2104), - [anon_sym_i8] = ACTIONS(2104), - [anon_sym_u16] = ACTIONS(2104), - [anon_sym_i16] = ACTIONS(2104), - [anon_sym_u32] = ACTIONS(2104), - [anon_sym_i32] = ACTIONS(2104), - [anon_sym_u64] = ACTIONS(2104), - [anon_sym_i64] = ACTIONS(2104), - [anon_sym_u128] = ACTIONS(2104), - [anon_sym_i128] = ACTIONS(2104), - [anon_sym_isize] = ACTIONS(2104), - [anon_sym_usize] = ACTIONS(2104), - [anon_sym_f32] = ACTIONS(2104), - [anon_sym_f64] = ACTIONS(2104), - [anon_sym_bool] = ACTIONS(2104), - [anon_sym_str] = ACTIONS(2104), - [anon_sym_char] = ACTIONS(2104), - [anon_sym_DASH] = ACTIONS(2102), - [anon_sym_BANG] = ACTIONS(2102), - [anon_sym_AMP] = ACTIONS(2102), - [anon_sym_PIPE] = ACTIONS(2102), - [anon_sym_LT] = ACTIONS(2102), - [anon_sym_DOT_DOT] = ACTIONS(2102), - [anon_sym_COLON_COLON] = ACTIONS(2102), - [anon_sym_POUND] = ACTIONS(2102), - [anon_sym_SQUOTE] = ACTIONS(2104), - [anon_sym_async] = ACTIONS(2104), - [anon_sym_break] = ACTIONS(2104), - [anon_sym_const] = ACTIONS(2104), - [anon_sym_continue] = ACTIONS(2104), - [anon_sym_default] = ACTIONS(2104), - [anon_sym_enum] = ACTIONS(2104), - [anon_sym_fn] = ACTIONS(2104), - [anon_sym_for] = ACTIONS(2104), - [anon_sym_gen] = ACTIONS(2104), - [anon_sym_if] = ACTIONS(2104), - [anon_sym_impl] = ACTIONS(2104), - [anon_sym_let] = ACTIONS(2104), - [anon_sym_loop] = ACTIONS(2104), - [anon_sym_match] = ACTIONS(2104), - [anon_sym_mod] = ACTIONS(2104), - [anon_sym_pub] = ACTIONS(2104), - [anon_sym_return] = ACTIONS(2104), - [anon_sym_static] = ACTIONS(2104), - [anon_sym_struct] = ACTIONS(2104), - [anon_sym_trait] = ACTIONS(2104), - [anon_sym_type] = ACTIONS(2104), - [anon_sym_union] = ACTIONS(2104), - [anon_sym_unsafe] = ACTIONS(2104), - [anon_sym_use] = ACTIONS(2104), - [anon_sym_while] = ACTIONS(2104), - [anon_sym_extern] = ACTIONS(2104), - [anon_sym_yield] = ACTIONS(2104), - [anon_sym_move] = ACTIONS(2104), - [anon_sym_try] = ACTIONS(2104), - [sym_integer_literal] = ACTIONS(2102), - [aux_sym_string_literal_token1] = ACTIONS(2102), - [sym_char_literal] = ACTIONS(2102), - [anon_sym_true] = ACTIONS(2104), - [anon_sym_false] = ACTIONS(2104), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2104), - [sym_super] = ACTIONS(2104), - [sym_crate] = ACTIONS(2104), - [sym_metavariable] = ACTIONS(2102), - [sym__raw_string_literal_start] = ACTIONS(2102), - [sym_float_literal] = ACTIONS(2102), + [ts_builtin_sym_end] = ACTIONS(2129), + [sym_identifier] = ACTIONS(2131), + [anon_sym_SEMI] = ACTIONS(2129), + [anon_sym_macro_rules_BANG] = ACTIONS(2129), + [anon_sym_LPAREN] = ACTIONS(2129), + [anon_sym_LBRACK] = ACTIONS(2129), + [anon_sym_LBRACE] = ACTIONS(2129), + [anon_sym_RBRACE] = ACTIONS(2129), + [anon_sym_STAR] = ACTIONS(2129), + [anon_sym_u8] = ACTIONS(2131), + [anon_sym_i8] = ACTIONS(2131), + [anon_sym_u16] = ACTIONS(2131), + [anon_sym_i16] = ACTIONS(2131), + [anon_sym_u32] = ACTIONS(2131), + [anon_sym_i32] = ACTIONS(2131), + [anon_sym_u64] = ACTIONS(2131), + [anon_sym_i64] = ACTIONS(2131), + [anon_sym_u128] = ACTIONS(2131), + [anon_sym_i128] = ACTIONS(2131), + [anon_sym_isize] = ACTIONS(2131), + [anon_sym_usize] = ACTIONS(2131), + [anon_sym_f32] = ACTIONS(2131), + [anon_sym_f64] = ACTIONS(2131), + [anon_sym_bool] = ACTIONS(2131), + [anon_sym_str] = ACTIONS(2131), + [anon_sym_char] = ACTIONS(2131), + [anon_sym_DASH] = ACTIONS(2129), + [anon_sym_BANG] = ACTIONS(2129), + [anon_sym_AMP] = ACTIONS(2129), + [anon_sym_PIPE] = ACTIONS(2129), + [anon_sym_LT] = ACTIONS(2129), + [anon_sym_DOT_DOT] = ACTIONS(2129), + [anon_sym_COLON_COLON] = ACTIONS(2129), + [anon_sym_POUND] = ACTIONS(2129), + [anon_sym_SQUOTE] = ACTIONS(2131), + [anon_sym_async] = ACTIONS(2131), + [anon_sym_break] = ACTIONS(2131), + [anon_sym_const] = ACTIONS(2131), + [anon_sym_continue] = ACTIONS(2131), + [anon_sym_default] = ACTIONS(2131), + [anon_sym_enum] = ACTIONS(2131), + [anon_sym_fn] = ACTIONS(2131), + [anon_sym_for] = ACTIONS(2131), + [anon_sym_gen] = ACTIONS(2131), + [anon_sym_if] = ACTIONS(2131), + [anon_sym_impl] = ACTIONS(2131), + [anon_sym_let] = ACTIONS(2131), + [anon_sym_loop] = ACTIONS(2131), + [anon_sym_match] = ACTIONS(2131), + [anon_sym_mod] = ACTIONS(2131), + [anon_sym_pub] = ACTIONS(2131), + [anon_sym_return] = ACTIONS(2131), + [anon_sym_static] = ACTIONS(2131), + [anon_sym_struct] = ACTIONS(2131), + [anon_sym_trait] = ACTIONS(2131), + [anon_sym_type] = ACTIONS(2131), + [anon_sym_union] = ACTIONS(2131), + [anon_sym_unsafe] = ACTIONS(2131), + [anon_sym_use] = ACTIONS(2131), + [anon_sym_while] = ACTIONS(2131), + [anon_sym_extern] = ACTIONS(2131), + [anon_sym_safe] = ACTIONS(2131), + [anon_sym_yield] = ACTIONS(2131), + [anon_sym_move] = ACTIONS(2131), + [anon_sym_try] = ACTIONS(2131), + [sym_integer_literal] = ACTIONS(2129), + [aux_sym_string_literal_token1] = ACTIONS(2129), + [sym_char_literal] = ACTIONS(2129), + [anon_sym_true] = ACTIONS(2131), + [anon_sym_false] = ACTIONS(2131), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(2131), + [sym_super] = ACTIONS(2131), + [sym_crate] = ACTIONS(2131), + [sym_metavariable] = ACTIONS(2129), + [sym__raw_string_literal_start] = ACTIONS(2129), + [sym_float_literal] = ACTIONS(2129), }, [STATE(570)] = { [sym_line_comment] = STATE(570), [sym_block_comment] = STATE(570), - [ts_builtin_sym_end] = ACTIONS(2106), - [sym_identifier] = ACTIONS(2108), - [anon_sym_SEMI] = ACTIONS(2106), - [anon_sym_macro_rules_BANG] = ACTIONS(2106), - [anon_sym_LPAREN] = ACTIONS(2106), - [anon_sym_LBRACK] = ACTIONS(2106), - [anon_sym_LBRACE] = ACTIONS(2106), - [anon_sym_RBRACE] = ACTIONS(2106), - [anon_sym_STAR] = ACTIONS(2106), - [anon_sym_u8] = ACTIONS(2108), - [anon_sym_i8] = ACTIONS(2108), - [anon_sym_u16] = ACTIONS(2108), - [anon_sym_i16] = ACTIONS(2108), - [anon_sym_u32] = ACTIONS(2108), - [anon_sym_i32] = ACTIONS(2108), - [anon_sym_u64] = ACTIONS(2108), - [anon_sym_i64] = ACTIONS(2108), - [anon_sym_u128] = ACTIONS(2108), - [anon_sym_i128] = ACTIONS(2108), - [anon_sym_isize] = ACTIONS(2108), - [anon_sym_usize] = ACTIONS(2108), - [anon_sym_f32] = ACTIONS(2108), - [anon_sym_f64] = ACTIONS(2108), - [anon_sym_bool] = ACTIONS(2108), - [anon_sym_str] = ACTIONS(2108), - [anon_sym_char] = ACTIONS(2108), - [anon_sym_DASH] = ACTIONS(2106), - [anon_sym_BANG] = ACTIONS(2106), - [anon_sym_AMP] = ACTIONS(2106), - [anon_sym_PIPE] = ACTIONS(2106), - [anon_sym_LT] = ACTIONS(2106), - [anon_sym_DOT_DOT] = ACTIONS(2106), - [anon_sym_COLON_COLON] = ACTIONS(2106), - [anon_sym_POUND] = ACTIONS(2106), - [anon_sym_SQUOTE] = ACTIONS(2108), - [anon_sym_async] = ACTIONS(2108), - [anon_sym_break] = ACTIONS(2108), - [anon_sym_const] = ACTIONS(2108), - [anon_sym_continue] = ACTIONS(2108), - [anon_sym_default] = ACTIONS(2108), - [anon_sym_enum] = ACTIONS(2108), - [anon_sym_fn] = ACTIONS(2108), - [anon_sym_for] = ACTIONS(2108), - [anon_sym_gen] = ACTIONS(2108), - [anon_sym_if] = ACTIONS(2108), - [anon_sym_impl] = ACTIONS(2108), - [anon_sym_let] = ACTIONS(2108), - [anon_sym_loop] = ACTIONS(2108), - [anon_sym_match] = ACTIONS(2108), - [anon_sym_mod] = ACTIONS(2108), - [anon_sym_pub] = ACTIONS(2108), - [anon_sym_return] = ACTIONS(2108), - [anon_sym_static] = ACTIONS(2108), - [anon_sym_struct] = ACTIONS(2108), - [anon_sym_trait] = ACTIONS(2108), - [anon_sym_type] = ACTIONS(2108), - [anon_sym_union] = ACTIONS(2108), - [anon_sym_unsafe] = ACTIONS(2108), - [anon_sym_use] = ACTIONS(2108), - [anon_sym_while] = ACTIONS(2108), - [anon_sym_extern] = ACTIONS(2108), - [anon_sym_yield] = ACTIONS(2108), - [anon_sym_move] = ACTIONS(2108), - [anon_sym_try] = ACTIONS(2108), - [sym_integer_literal] = ACTIONS(2106), - [aux_sym_string_literal_token1] = ACTIONS(2106), - [sym_char_literal] = ACTIONS(2106), - [anon_sym_true] = ACTIONS(2108), - [anon_sym_false] = ACTIONS(2108), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2108), - [sym_super] = ACTIONS(2108), - [sym_crate] = ACTIONS(2108), - [sym_metavariable] = ACTIONS(2106), - [sym__raw_string_literal_start] = ACTIONS(2106), - [sym_float_literal] = ACTIONS(2106), + [ts_builtin_sym_end] = ACTIONS(2133), + [sym_identifier] = ACTIONS(2135), + [anon_sym_SEMI] = ACTIONS(2133), + [anon_sym_macro_rules_BANG] = ACTIONS(2133), + [anon_sym_LPAREN] = ACTIONS(2133), + [anon_sym_LBRACK] = ACTIONS(2133), + [anon_sym_LBRACE] = ACTIONS(2133), + [anon_sym_RBRACE] = ACTIONS(2133), + [anon_sym_STAR] = ACTIONS(2133), + [anon_sym_u8] = ACTIONS(2135), + [anon_sym_i8] = ACTIONS(2135), + [anon_sym_u16] = ACTIONS(2135), + [anon_sym_i16] = ACTIONS(2135), + [anon_sym_u32] = ACTIONS(2135), + [anon_sym_i32] = ACTIONS(2135), + [anon_sym_u64] = ACTIONS(2135), + [anon_sym_i64] = ACTIONS(2135), + [anon_sym_u128] = ACTIONS(2135), + [anon_sym_i128] = ACTIONS(2135), + [anon_sym_isize] = ACTIONS(2135), + [anon_sym_usize] = ACTIONS(2135), + [anon_sym_f32] = ACTIONS(2135), + [anon_sym_f64] = ACTIONS(2135), + [anon_sym_bool] = ACTIONS(2135), + [anon_sym_str] = ACTIONS(2135), + [anon_sym_char] = ACTIONS(2135), + [anon_sym_DASH] = ACTIONS(2133), + [anon_sym_BANG] = ACTIONS(2133), + [anon_sym_AMP] = ACTIONS(2133), + [anon_sym_PIPE] = ACTIONS(2133), + [anon_sym_LT] = ACTIONS(2133), + [anon_sym_DOT_DOT] = ACTIONS(2133), + [anon_sym_COLON_COLON] = ACTIONS(2133), + [anon_sym_POUND] = ACTIONS(2133), + [anon_sym_SQUOTE] = ACTIONS(2135), + [anon_sym_async] = ACTIONS(2135), + [anon_sym_break] = ACTIONS(2135), + [anon_sym_const] = ACTIONS(2135), + [anon_sym_continue] = ACTIONS(2135), + [anon_sym_default] = ACTIONS(2135), + [anon_sym_enum] = ACTIONS(2135), + [anon_sym_fn] = ACTIONS(2135), + [anon_sym_for] = ACTIONS(2135), + [anon_sym_gen] = ACTIONS(2135), + [anon_sym_if] = ACTIONS(2135), + [anon_sym_impl] = ACTIONS(2135), + [anon_sym_let] = ACTIONS(2135), + [anon_sym_loop] = ACTIONS(2135), + [anon_sym_match] = ACTIONS(2135), + [anon_sym_mod] = ACTIONS(2135), + [anon_sym_pub] = ACTIONS(2135), + [anon_sym_return] = ACTIONS(2135), + [anon_sym_static] = ACTIONS(2135), + [anon_sym_struct] = ACTIONS(2135), + [anon_sym_trait] = ACTIONS(2135), + [anon_sym_type] = ACTIONS(2135), + [anon_sym_union] = ACTIONS(2135), + [anon_sym_unsafe] = ACTIONS(2135), + [anon_sym_use] = ACTIONS(2135), + [anon_sym_while] = ACTIONS(2135), + [anon_sym_extern] = ACTIONS(2135), + [anon_sym_safe] = ACTIONS(2135), + [anon_sym_yield] = ACTIONS(2135), + [anon_sym_move] = ACTIONS(2135), + [anon_sym_try] = ACTIONS(2135), + [sym_integer_literal] = ACTIONS(2133), + [aux_sym_string_literal_token1] = ACTIONS(2133), + [sym_char_literal] = ACTIONS(2133), + [anon_sym_true] = ACTIONS(2135), + [anon_sym_false] = ACTIONS(2135), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(2135), + [sym_super] = ACTIONS(2135), + [sym_crate] = ACTIONS(2135), + [sym_metavariable] = ACTIONS(2133), + [sym__raw_string_literal_start] = ACTIONS(2133), + [sym_float_literal] = ACTIONS(2133), }, [STATE(571)] = { [sym_line_comment] = STATE(571), [sym_block_comment] = STATE(571), - [ts_builtin_sym_end] = ACTIONS(2110), - [sym_identifier] = ACTIONS(2112), - [anon_sym_SEMI] = ACTIONS(2110), - [anon_sym_macro_rules_BANG] = ACTIONS(2110), - [anon_sym_LPAREN] = ACTIONS(2110), - [anon_sym_LBRACK] = ACTIONS(2110), - [anon_sym_LBRACE] = ACTIONS(2110), - [anon_sym_RBRACE] = ACTIONS(2110), - [anon_sym_STAR] = ACTIONS(2110), - [anon_sym_u8] = ACTIONS(2112), - [anon_sym_i8] = ACTIONS(2112), - [anon_sym_u16] = ACTIONS(2112), - [anon_sym_i16] = ACTIONS(2112), - [anon_sym_u32] = ACTIONS(2112), - [anon_sym_i32] = ACTIONS(2112), - [anon_sym_u64] = ACTIONS(2112), - [anon_sym_i64] = ACTIONS(2112), - [anon_sym_u128] = ACTIONS(2112), - [anon_sym_i128] = ACTIONS(2112), - [anon_sym_isize] = ACTIONS(2112), - [anon_sym_usize] = ACTIONS(2112), - [anon_sym_f32] = ACTIONS(2112), - [anon_sym_f64] = ACTIONS(2112), - [anon_sym_bool] = ACTIONS(2112), - [anon_sym_str] = ACTIONS(2112), - [anon_sym_char] = ACTIONS(2112), - [anon_sym_DASH] = ACTIONS(2110), - [anon_sym_BANG] = ACTIONS(2110), - [anon_sym_AMP] = ACTIONS(2110), - [anon_sym_PIPE] = ACTIONS(2110), - [anon_sym_LT] = ACTIONS(2110), - [anon_sym_DOT_DOT] = ACTIONS(2110), - [anon_sym_COLON_COLON] = ACTIONS(2110), - [anon_sym_POUND] = ACTIONS(2110), - [anon_sym_SQUOTE] = ACTIONS(2112), - [anon_sym_async] = ACTIONS(2112), - [anon_sym_break] = ACTIONS(2112), - [anon_sym_const] = ACTIONS(2112), - [anon_sym_continue] = ACTIONS(2112), - [anon_sym_default] = ACTIONS(2112), - [anon_sym_enum] = ACTIONS(2112), - [anon_sym_fn] = ACTIONS(2112), - [anon_sym_for] = ACTIONS(2112), - [anon_sym_gen] = ACTIONS(2112), - [anon_sym_if] = ACTIONS(2112), - [anon_sym_impl] = ACTIONS(2112), - [anon_sym_let] = ACTIONS(2112), - [anon_sym_loop] = ACTIONS(2112), - [anon_sym_match] = ACTIONS(2112), - [anon_sym_mod] = ACTIONS(2112), - [anon_sym_pub] = ACTIONS(2112), - [anon_sym_return] = ACTIONS(2112), - [anon_sym_static] = ACTIONS(2112), - [anon_sym_struct] = ACTIONS(2112), - [anon_sym_trait] = ACTIONS(2112), - [anon_sym_type] = ACTIONS(2112), - [anon_sym_union] = ACTIONS(2112), - [anon_sym_unsafe] = ACTIONS(2112), - [anon_sym_use] = ACTIONS(2112), - [anon_sym_while] = ACTIONS(2112), - [anon_sym_extern] = ACTIONS(2112), - [anon_sym_yield] = ACTIONS(2112), - [anon_sym_move] = ACTIONS(2112), - [anon_sym_try] = ACTIONS(2112), - [sym_integer_literal] = ACTIONS(2110), - [aux_sym_string_literal_token1] = ACTIONS(2110), - [sym_char_literal] = ACTIONS(2110), - [anon_sym_true] = ACTIONS(2112), - [anon_sym_false] = ACTIONS(2112), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2112), - [sym_super] = ACTIONS(2112), - [sym_crate] = ACTIONS(2112), - [sym_metavariable] = ACTIONS(2110), - [sym__raw_string_literal_start] = ACTIONS(2110), - [sym_float_literal] = ACTIONS(2110), + [ts_builtin_sym_end] = ACTIONS(2137), + [sym_identifier] = ACTIONS(2139), + [anon_sym_SEMI] = ACTIONS(2137), + [anon_sym_macro_rules_BANG] = ACTIONS(2137), + [anon_sym_LPAREN] = ACTIONS(2137), + [anon_sym_LBRACK] = ACTIONS(2137), + [anon_sym_LBRACE] = ACTIONS(2137), + [anon_sym_RBRACE] = ACTIONS(2137), + [anon_sym_STAR] = ACTIONS(2137), + [anon_sym_u8] = ACTIONS(2139), + [anon_sym_i8] = ACTIONS(2139), + [anon_sym_u16] = ACTIONS(2139), + [anon_sym_i16] = ACTIONS(2139), + [anon_sym_u32] = ACTIONS(2139), + [anon_sym_i32] = ACTIONS(2139), + [anon_sym_u64] = ACTIONS(2139), + [anon_sym_i64] = ACTIONS(2139), + [anon_sym_u128] = ACTIONS(2139), + [anon_sym_i128] = ACTIONS(2139), + [anon_sym_isize] = ACTIONS(2139), + [anon_sym_usize] = ACTIONS(2139), + [anon_sym_f32] = ACTIONS(2139), + [anon_sym_f64] = ACTIONS(2139), + [anon_sym_bool] = ACTIONS(2139), + [anon_sym_str] = ACTIONS(2139), + [anon_sym_char] = ACTIONS(2139), + [anon_sym_DASH] = ACTIONS(2137), + [anon_sym_BANG] = ACTIONS(2137), + [anon_sym_AMP] = ACTIONS(2137), + [anon_sym_PIPE] = ACTIONS(2137), + [anon_sym_LT] = ACTIONS(2137), + [anon_sym_DOT_DOT] = ACTIONS(2137), + [anon_sym_COLON_COLON] = ACTIONS(2137), + [anon_sym_POUND] = ACTIONS(2137), + [anon_sym_SQUOTE] = ACTIONS(2139), + [anon_sym_async] = ACTIONS(2139), + [anon_sym_break] = ACTIONS(2139), + [anon_sym_const] = ACTIONS(2139), + [anon_sym_continue] = ACTIONS(2139), + [anon_sym_default] = ACTIONS(2139), + [anon_sym_enum] = ACTIONS(2139), + [anon_sym_fn] = ACTIONS(2139), + [anon_sym_for] = ACTIONS(2139), + [anon_sym_gen] = ACTIONS(2139), + [anon_sym_if] = ACTIONS(2139), + [anon_sym_impl] = ACTIONS(2139), + [anon_sym_let] = ACTIONS(2139), + [anon_sym_loop] = ACTIONS(2139), + [anon_sym_match] = ACTIONS(2139), + [anon_sym_mod] = ACTIONS(2139), + [anon_sym_pub] = ACTIONS(2139), + [anon_sym_return] = ACTIONS(2139), + [anon_sym_static] = ACTIONS(2139), + [anon_sym_struct] = ACTIONS(2139), + [anon_sym_trait] = ACTIONS(2139), + [anon_sym_type] = ACTIONS(2139), + [anon_sym_union] = ACTIONS(2139), + [anon_sym_unsafe] = ACTIONS(2139), + [anon_sym_use] = ACTIONS(2139), + [anon_sym_while] = ACTIONS(2139), + [anon_sym_extern] = ACTIONS(2139), + [anon_sym_safe] = ACTIONS(2139), + [anon_sym_yield] = ACTIONS(2139), + [anon_sym_move] = ACTIONS(2139), + [anon_sym_try] = ACTIONS(2139), + [sym_integer_literal] = ACTIONS(2137), + [aux_sym_string_literal_token1] = ACTIONS(2137), + [sym_char_literal] = ACTIONS(2137), + [anon_sym_true] = ACTIONS(2139), + [anon_sym_false] = ACTIONS(2139), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(2139), + [sym_super] = ACTIONS(2139), + [sym_crate] = ACTIONS(2139), + [sym_metavariable] = ACTIONS(2137), + [sym__raw_string_literal_start] = ACTIONS(2137), + [sym_float_literal] = ACTIONS(2137), }, [STATE(572)] = { [sym_line_comment] = STATE(572), [sym_block_comment] = STATE(572), - [ts_builtin_sym_end] = ACTIONS(2114), - [sym_identifier] = ACTIONS(2116), - [anon_sym_SEMI] = ACTIONS(2114), - [anon_sym_macro_rules_BANG] = ACTIONS(2114), - [anon_sym_LPAREN] = ACTIONS(2114), - [anon_sym_LBRACK] = ACTIONS(2114), - [anon_sym_LBRACE] = ACTIONS(2114), - [anon_sym_RBRACE] = ACTIONS(2114), - [anon_sym_STAR] = ACTIONS(2114), - [anon_sym_u8] = ACTIONS(2116), - [anon_sym_i8] = ACTIONS(2116), - [anon_sym_u16] = ACTIONS(2116), - [anon_sym_i16] = ACTIONS(2116), - [anon_sym_u32] = ACTIONS(2116), - [anon_sym_i32] = ACTIONS(2116), - [anon_sym_u64] = ACTIONS(2116), - [anon_sym_i64] = ACTIONS(2116), - [anon_sym_u128] = ACTIONS(2116), - [anon_sym_i128] = ACTIONS(2116), - [anon_sym_isize] = ACTIONS(2116), - [anon_sym_usize] = ACTIONS(2116), - [anon_sym_f32] = ACTIONS(2116), - [anon_sym_f64] = ACTIONS(2116), - [anon_sym_bool] = ACTIONS(2116), - [anon_sym_str] = ACTIONS(2116), - [anon_sym_char] = ACTIONS(2116), - [anon_sym_DASH] = ACTIONS(2114), - [anon_sym_BANG] = ACTIONS(2114), - [anon_sym_AMP] = ACTIONS(2114), - [anon_sym_PIPE] = ACTIONS(2114), - [anon_sym_LT] = ACTIONS(2114), - [anon_sym_DOT_DOT] = ACTIONS(2114), - [anon_sym_COLON_COLON] = ACTIONS(2114), - [anon_sym_POUND] = ACTIONS(2114), - [anon_sym_SQUOTE] = ACTIONS(2116), - [anon_sym_async] = ACTIONS(2116), - [anon_sym_break] = ACTIONS(2116), - [anon_sym_const] = ACTIONS(2116), - [anon_sym_continue] = ACTIONS(2116), - [anon_sym_default] = ACTIONS(2116), - [anon_sym_enum] = ACTIONS(2116), - [anon_sym_fn] = ACTIONS(2116), - [anon_sym_for] = ACTIONS(2116), - [anon_sym_gen] = ACTIONS(2116), - [anon_sym_if] = ACTIONS(2116), - [anon_sym_impl] = ACTIONS(2116), - [anon_sym_let] = ACTIONS(2116), - [anon_sym_loop] = ACTIONS(2116), - [anon_sym_match] = ACTIONS(2116), - [anon_sym_mod] = ACTIONS(2116), - [anon_sym_pub] = ACTIONS(2116), - [anon_sym_return] = ACTIONS(2116), - [anon_sym_static] = ACTIONS(2116), - [anon_sym_struct] = ACTIONS(2116), - [anon_sym_trait] = ACTIONS(2116), - [anon_sym_type] = ACTIONS(2116), - [anon_sym_union] = ACTIONS(2116), - [anon_sym_unsafe] = ACTIONS(2116), - [anon_sym_use] = ACTIONS(2116), - [anon_sym_while] = ACTIONS(2116), - [anon_sym_extern] = ACTIONS(2116), - [anon_sym_yield] = ACTIONS(2116), - [anon_sym_move] = ACTIONS(2116), - [anon_sym_try] = ACTIONS(2116), - [sym_integer_literal] = ACTIONS(2114), - [aux_sym_string_literal_token1] = ACTIONS(2114), - [sym_char_literal] = ACTIONS(2114), - [anon_sym_true] = ACTIONS(2116), - [anon_sym_false] = ACTIONS(2116), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2116), - [sym_super] = ACTIONS(2116), - [sym_crate] = ACTIONS(2116), - [sym_metavariable] = ACTIONS(2114), - [sym__raw_string_literal_start] = ACTIONS(2114), - [sym_float_literal] = ACTIONS(2114), + [ts_builtin_sym_end] = ACTIONS(2141), + [sym_identifier] = ACTIONS(2143), + [anon_sym_SEMI] = ACTIONS(2141), + [anon_sym_macro_rules_BANG] = ACTIONS(2141), + [anon_sym_LPAREN] = ACTIONS(2141), + [anon_sym_LBRACK] = ACTIONS(2141), + [anon_sym_LBRACE] = ACTIONS(2141), + [anon_sym_RBRACE] = ACTIONS(2141), + [anon_sym_STAR] = ACTIONS(2141), + [anon_sym_u8] = ACTIONS(2143), + [anon_sym_i8] = ACTIONS(2143), + [anon_sym_u16] = ACTIONS(2143), + [anon_sym_i16] = ACTIONS(2143), + [anon_sym_u32] = ACTIONS(2143), + [anon_sym_i32] = ACTIONS(2143), + [anon_sym_u64] = ACTIONS(2143), + [anon_sym_i64] = ACTIONS(2143), + [anon_sym_u128] = ACTIONS(2143), + [anon_sym_i128] = ACTIONS(2143), + [anon_sym_isize] = ACTIONS(2143), + [anon_sym_usize] = ACTIONS(2143), + [anon_sym_f32] = ACTIONS(2143), + [anon_sym_f64] = ACTIONS(2143), + [anon_sym_bool] = ACTIONS(2143), + [anon_sym_str] = ACTIONS(2143), + [anon_sym_char] = ACTIONS(2143), + [anon_sym_DASH] = ACTIONS(2141), + [anon_sym_BANG] = ACTIONS(2141), + [anon_sym_AMP] = ACTIONS(2141), + [anon_sym_PIPE] = ACTIONS(2141), + [anon_sym_LT] = ACTIONS(2141), + [anon_sym_DOT_DOT] = ACTIONS(2141), + [anon_sym_COLON_COLON] = ACTIONS(2141), + [anon_sym_POUND] = ACTIONS(2141), + [anon_sym_SQUOTE] = ACTIONS(2143), + [anon_sym_async] = ACTIONS(2143), + [anon_sym_break] = ACTIONS(2143), + [anon_sym_const] = ACTIONS(2143), + [anon_sym_continue] = ACTIONS(2143), + [anon_sym_default] = ACTIONS(2143), + [anon_sym_enum] = ACTIONS(2143), + [anon_sym_fn] = ACTIONS(2143), + [anon_sym_for] = ACTIONS(2143), + [anon_sym_gen] = ACTIONS(2143), + [anon_sym_if] = ACTIONS(2143), + [anon_sym_impl] = ACTIONS(2143), + [anon_sym_let] = ACTIONS(2143), + [anon_sym_loop] = ACTIONS(2143), + [anon_sym_match] = ACTIONS(2143), + [anon_sym_mod] = ACTIONS(2143), + [anon_sym_pub] = ACTIONS(2143), + [anon_sym_return] = ACTIONS(2143), + [anon_sym_static] = ACTIONS(2143), + [anon_sym_struct] = ACTIONS(2143), + [anon_sym_trait] = ACTIONS(2143), + [anon_sym_type] = ACTIONS(2143), + [anon_sym_union] = ACTIONS(2143), + [anon_sym_unsafe] = ACTIONS(2143), + [anon_sym_use] = ACTIONS(2143), + [anon_sym_while] = ACTIONS(2143), + [anon_sym_extern] = ACTIONS(2143), + [anon_sym_safe] = ACTIONS(2143), + [anon_sym_yield] = ACTIONS(2143), + [anon_sym_move] = ACTIONS(2143), + [anon_sym_try] = ACTIONS(2143), + [sym_integer_literal] = ACTIONS(2141), + [aux_sym_string_literal_token1] = ACTIONS(2141), + [sym_char_literal] = ACTIONS(2141), + [anon_sym_true] = ACTIONS(2143), + [anon_sym_false] = ACTIONS(2143), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(2143), + [sym_super] = ACTIONS(2143), + [sym_crate] = ACTIONS(2143), + [sym_metavariable] = ACTIONS(2141), + [sym__raw_string_literal_start] = ACTIONS(2141), + [sym_float_literal] = ACTIONS(2141), }, [STATE(573)] = { [sym_line_comment] = STATE(573), [sym_block_comment] = STATE(573), - [ts_builtin_sym_end] = ACTIONS(2118), - [sym_identifier] = ACTIONS(2120), - [anon_sym_SEMI] = ACTIONS(2118), - [anon_sym_macro_rules_BANG] = ACTIONS(2118), - [anon_sym_LPAREN] = ACTIONS(2118), - [anon_sym_LBRACK] = ACTIONS(2118), - [anon_sym_LBRACE] = ACTIONS(2118), - [anon_sym_RBRACE] = ACTIONS(2118), - [anon_sym_STAR] = ACTIONS(2118), - [anon_sym_u8] = ACTIONS(2120), - [anon_sym_i8] = ACTIONS(2120), - [anon_sym_u16] = ACTIONS(2120), - [anon_sym_i16] = ACTIONS(2120), - [anon_sym_u32] = ACTIONS(2120), - [anon_sym_i32] = ACTIONS(2120), - [anon_sym_u64] = ACTIONS(2120), - [anon_sym_i64] = ACTIONS(2120), - [anon_sym_u128] = ACTIONS(2120), - [anon_sym_i128] = ACTIONS(2120), - [anon_sym_isize] = ACTIONS(2120), - [anon_sym_usize] = ACTIONS(2120), - [anon_sym_f32] = ACTIONS(2120), - [anon_sym_f64] = ACTIONS(2120), - [anon_sym_bool] = ACTIONS(2120), - [anon_sym_str] = ACTIONS(2120), - [anon_sym_char] = ACTIONS(2120), - [anon_sym_DASH] = ACTIONS(2118), - [anon_sym_BANG] = ACTIONS(2118), - [anon_sym_AMP] = ACTIONS(2118), - [anon_sym_PIPE] = ACTIONS(2118), - [anon_sym_LT] = ACTIONS(2118), - [anon_sym_DOT_DOT] = ACTIONS(2118), - [anon_sym_COLON_COLON] = ACTIONS(2118), - [anon_sym_POUND] = ACTIONS(2118), - [anon_sym_SQUOTE] = ACTIONS(2120), - [anon_sym_async] = ACTIONS(2120), - [anon_sym_break] = ACTIONS(2120), - [anon_sym_const] = ACTIONS(2120), - [anon_sym_continue] = ACTIONS(2120), - [anon_sym_default] = ACTIONS(2120), - [anon_sym_enum] = ACTIONS(2120), - [anon_sym_fn] = ACTIONS(2120), - [anon_sym_for] = ACTIONS(2120), - [anon_sym_gen] = ACTIONS(2120), - [anon_sym_if] = ACTIONS(2120), - [anon_sym_impl] = ACTIONS(2120), - [anon_sym_let] = ACTIONS(2120), - [anon_sym_loop] = ACTIONS(2120), - [anon_sym_match] = ACTIONS(2120), - [anon_sym_mod] = ACTIONS(2120), - [anon_sym_pub] = ACTIONS(2120), - [anon_sym_return] = ACTIONS(2120), - [anon_sym_static] = ACTIONS(2120), - [anon_sym_struct] = ACTIONS(2120), - [anon_sym_trait] = ACTIONS(2120), - [anon_sym_type] = ACTIONS(2120), - [anon_sym_union] = ACTIONS(2120), - [anon_sym_unsafe] = ACTIONS(2120), - [anon_sym_use] = ACTIONS(2120), - [anon_sym_while] = ACTIONS(2120), - [anon_sym_extern] = ACTIONS(2120), - [anon_sym_yield] = ACTIONS(2120), - [anon_sym_move] = ACTIONS(2120), - [anon_sym_try] = ACTIONS(2120), - [sym_integer_literal] = ACTIONS(2118), - [aux_sym_string_literal_token1] = ACTIONS(2118), - [sym_char_literal] = ACTIONS(2118), - [anon_sym_true] = ACTIONS(2120), - [anon_sym_false] = ACTIONS(2120), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2120), - [sym_super] = ACTIONS(2120), - [sym_crate] = ACTIONS(2120), - [sym_metavariable] = ACTIONS(2118), - [sym__raw_string_literal_start] = ACTIONS(2118), - [sym_float_literal] = ACTIONS(2118), + [ts_builtin_sym_end] = ACTIONS(2145), + [sym_identifier] = ACTIONS(2147), + [anon_sym_SEMI] = ACTIONS(2145), + [anon_sym_macro_rules_BANG] = ACTIONS(2145), + [anon_sym_LPAREN] = ACTIONS(2145), + [anon_sym_LBRACK] = ACTIONS(2145), + [anon_sym_LBRACE] = ACTIONS(2145), + [anon_sym_RBRACE] = ACTIONS(2145), + [anon_sym_STAR] = ACTIONS(2145), + [anon_sym_u8] = ACTIONS(2147), + [anon_sym_i8] = ACTIONS(2147), + [anon_sym_u16] = ACTIONS(2147), + [anon_sym_i16] = ACTIONS(2147), + [anon_sym_u32] = ACTIONS(2147), + [anon_sym_i32] = ACTIONS(2147), + [anon_sym_u64] = ACTIONS(2147), + [anon_sym_i64] = ACTIONS(2147), + [anon_sym_u128] = ACTIONS(2147), + [anon_sym_i128] = ACTIONS(2147), + [anon_sym_isize] = ACTIONS(2147), + [anon_sym_usize] = ACTIONS(2147), + [anon_sym_f32] = ACTIONS(2147), + [anon_sym_f64] = ACTIONS(2147), + [anon_sym_bool] = ACTIONS(2147), + [anon_sym_str] = ACTIONS(2147), + [anon_sym_char] = ACTIONS(2147), + [anon_sym_DASH] = ACTIONS(2145), + [anon_sym_BANG] = ACTIONS(2145), + [anon_sym_AMP] = ACTIONS(2145), + [anon_sym_PIPE] = ACTIONS(2145), + [anon_sym_LT] = ACTIONS(2145), + [anon_sym_DOT_DOT] = ACTIONS(2145), + [anon_sym_COLON_COLON] = ACTIONS(2145), + [anon_sym_POUND] = ACTIONS(2145), + [anon_sym_SQUOTE] = ACTIONS(2147), + [anon_sym_async] = ACTIONS(2147), + [anon_sym_break] = ACTIONS(2147), + [anon_sym_const] = ACTIONS(2147), + [anon_sym_continue] = ACTIONS(2147), + [anon_sym_default] = ACTIONS(2147), + [anon_sym_enum] = ACTIONS(2147), + [anon_sym_fn] = ACTIONS(2147), + [anon_sym_for] = ACTIONS(2147), + [anon_sym_gen] = ACTIONS(2147), + [anon_sym_if] = ACTIONS(2147), + [anon_sym_impl] = ACTIONS(2147), + [anon_sym_let] = ACTIONS(2147), + [anon_sym_loop] = ACTIONS(2147), + [anon_sym_match] = ACTIONS(2147), + [anon_sym_mod] = ACTIONS(2147), + [anon_sym_pub] = ACTIONS(2147), + [anon_sym_return] = ACTIONS(2147), + [anon_sym_static] = ACTIONS(2147), + [anon_sym_struct] = ACTIONS(2147), + [anon_sym_trait] = ACTIONS(2147), + [anon_sym_type] = ACTIONS(2147), + [anon_sym_union] = ACTIONS(2147), + [anon_sym_unsafe] = ACTIONS(2147), + [anon_sym_use] = ACTIONS(2147), + [anon_sym_while] = ACTIONS(2147), + [anon_sym_extern] = ACTIONS(2147), + [anon_sym_safe] = ACTIONS(2147), + [anon_sym_yield] = ACTIONS(2147), + [anon_sym_move] = ACTIONS(2147), + [anon_sym_try] = ACTIONS(2147), + [sym_integer_literal] = ACTIONS(2145), + [aux_sym_string_literal_token1] = ACTIONS(2145), + [sym_char_literal] = ACTIONS(2145), + [anon_sym_true] = ACTIONS(2147), + [anon_sym_false] = ACTIONS(2147), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(2147), + [sym_super] = ACTIONS(2147), + [sym_crate] = ACTIONS(2147), + [sym_metavariable] = ACTIONS(2145), + [sym__raw_string_literal_start] = ACTIONS(2145), + [sym_float_literal] = ACTIONS(2145), }, [STATE(574)] = { [sym_line_comment] = STATE(574), [sym_block_comment] = STATE(574), - [ts_builtin_sym_end] = ACTIONS(2122), - [sym_identifier] = ACTIONS(2124), - [anon_sym_SEMI] = ACTIONS(2122), - [anon_sym_macro_rules_BANG] = ACTIONS(2122), - [anon_sym_LPAREN] = ACTIONS(2122), - [anon_sym_LBRACK] = ACTIONS(2122), - [anon_sym_LBRACE] = ACTIONS(2122), - [anon_sym_RBRACE] = ACTIONS(2122), - [anon_sym_STAR] = ACTIONS(2122), - [anon_sym_u8] = ACTIONS(2124), - [anon_sym_i8] = ACTIONS(2124), - [anon_sym_u16] = ACTIONS(2124), - [anon_sym_i16] = ACTIONS(2124), - [anon_sym_u32] = ACTIONS(2124), - [anon_sym_i32] = ACTIONS(2124), - [anon_sym_u64] = ACTIONS(2124), - [anon_sym_i64] = ACTIONS(2124), - [anon_sym_u128] = ACTIONS(2124), - [anon_sym_i128] = ACTIONS(2124), - [anon_sym_isize] = ACTIONS(2124), - [anon_sym_usize] = ACTIONS(2124), - [anon_sym_f32] = ACTIONS(2124), - [anon_sym_f64] = ACTIONS(2124), - [anon_sym_bool] = ACTIONS(2124), - [anon_sym_str] = ACTIONS(2124), - [anon_sym_char] = ACTIONS(2124), - [anon_sym_DASH] = ACTIONS(2122), - [anon_sym_BANG] = ACTIONS(2122), - [anon_sym_AMP] = ACTIONS(2122), - [anon_sym_PIPE] = ACTIONS(2122), - [anon_sym_LT] = ACTIONS(2122), - [anon_sym_DOT_DOT] = ACTIONS(2122), - [anon_sym_COLON_COLON] = ACTIONS(2122), - [anon_sym_POUND] = ACTIONS(2122), - [anon_sym_SQUOTE] = ACTIONS(2124), - [anon_sym_async] = ACTIONS(2124), - [anon_sym_break] = ACTIONS(2124), - [anon_sym_const] = ACTIONS(2124), - [anon_sym_continue] = ACTIONS(2124), - [anon_sym_default] = ACTIONS(2124), - [anon_sym_enum] = ACTIONS(2124), - [anon_sym_fn] = ACTIONS(2124), - [anon_sym_for] = ACTIONS(2124), - [anon_sym_gen] = ACTIONS(2124), - [anon_sym_if] = ACTIONS(2124), - [anon_sym_impl] = ACTIONS(2124), - [anon_sym_let] = ACTIONS(2124), - [anon_sym_loop] = ACTIONS(2124), - [anon_sym_match] = ACTIONS(2124), - [anon_sym_mod] = ACTIONS(2124), - [anon_sym_pub] = ACTIONS(2124), - [anon_sym_return] = ACTIONS(2124), - [anon_sym_static] = ACTIONS(2124), - [anon_sym_struct] = ACTIONS(2124), - [anon_sym_trait] = ACTIONS(2124), - [anon_sym_type] = ACTIONS(2124), - [anon_sym_union] = ACTIONS(2124), - [anon_sym_unsafe] = ACTIONS(2124), - [anon_sym_use] = ACTIONS(2124), - [anon_sym_while] = ACTIONS(2124), - [anon_sym_extern] = ACTIONS(2124), - [anon_sym_yield] = ACTIONS(2124), - [anon_sym_move] = ACTIONS(2124), - [anon_sym_try] = ACTIONS(2124), - [sym_integer_literal] = ACTIONS(2122), - [aux_sym_string_literal_token1] = ACTIONS(2122), - [sym_char_literal] = ACTIONS(2122), - [anon_sym_true] = ACTIONS(2124), - [anon_sym_false] = ACTIONS(2124), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2124), - [sym_super] = ACTIONS(2124), - [sym_crate] = ACTIONS(2124), - [sym_metavariable] = ACTIONS(2122), - [sym__raw_string_literal_start] = ACTIONS(2122), - [sym_float_literal] = ACTIONS(2122), + [ts_builtin_sym_end] = ACTIONS(2149), + [sym_identifier] = ACTIONS(2151), + [anon_sym_SEMI] = ACTIONS(2149), + [anon_sym_macro_rules_BANG] = ACTIONS(2149), + [anon_sym_LPAREN] = ACTIONS(2149), + [anon_sym_LBRACK] = ACTIONS(2149), + [anon_sym_LBRACE] = ACTIONS(2149), + [anon_sym_RBRACE] = ACTIONS(2149), + [anon_sym_STAR] = ACTIONS(2149), + [anon_sym_u8] = ACTIONS(2151), + [anon_sym_i8] = ACTIONS(2151), + [anon_sym_u16] = ACTIONS(2151), + [anon_sym_i16] = ACTIONS(2151), + [anon_sym_u32] = ACTIONS(2151), + [anon_sym_i32] = ACTIONS(2151), + [anon_sym_u64] = ACTIONS(2151), + [anon_sym_i64] = ACTIONS(2151), + [anon_sym_u128] = ACTIONS(2151), + [anon_sym_i128] = ACTIONS(2151), + [anon_sym_isize] = ACTIONS(2151), + [anon_sym_usize] = ACTIONS(2151), + [anon_sym_f32] = ACTIONS(2151), + [anon_sym_f64] = ACTIONS(2151), + [anon_sym_bool] = ACTIONS(2151), + [anon_sym_str] = ACTIONS(2151), + [anon_sym_char] = ACTIONS(2151), + [anon_sym_DASH] = ACTIONS(2149), + [anon_sym_BANG] = ACTIONS(2149), + [anon_sym_AMP] = ACTIONS(2149), + [anon_sym_PIPE] = ACTIONS(2149), + [anon_sym_LT] = ACTIONS(2149), + [anon_sym_DOT_DOT] = ACTIONS(2149), + [anon_sym_COLON_COLON] = ACTIONS(2149), + [anon_sym_POUND] = ACTIONS(2149), + [anon_sym_SQUOTE] = ACTIONS(2151), + [anon_sym_async] = ACTIONS(2151), + [anon_sym_break] = ACTIONS(2151), + [anon_sym_const] = ACTIONS(2151), + [anon_sym_continue] = ACTIONS(2151), + [anon_sym_default] = ACTIONS(2151), + [anon_sym_enum] = ACTIONS(2151), + [anon_sym_fn] = ACTIONS(2151), + [anon_sym_for] = ACTIONS(2151), + [anon_sym_gen] = ACTIONS(2151), + [anon_sym_if] = ACTIONS(2151), + [anon_sym_impl] = ACTIONS(2151), + [anon_sym_let] = ACTIONS(2151), + [anon_sym_loop] = ACTIONS(2151), + [anon_sym_match] = ACTIONS(2151), + [anon_sym_mod] = ACTIONS(2151), + [anon_sym_pub] = ACTIONS(2151), + [anon_sym_return] = ACTIONS(2151), + [anon_sym_static] = ACTIONS(2151), + [anon_sym_struct] = ACTIONS(2151), + [anon_sym_trait] = ACTIONS(2151), + [anon_sym_type] = ACTIONS(2151), + [anon_sym_union] = ACTIONS(2151), + [anon_sym_unsafe] = ACTIONS(2151), + [anon_sym_use] = ACTIONS(2151), + [anon_sym_while] = ACTIONS(2151), + [anon_sym_extern] = ACTIONS(2151), + [anon_sym_safe] = ACTIONS(2151), + [anon_sym_yield] = ACTIONS(2151), + [anon_sym_move] = ACTIONS(2151), + [anon_sym_try] = ACTIONS(2151), + [sym_integer_literal] = ACTIONS(2149), + [aux_sym_string_literal_token1] = ACTIONS(2149), + [sym_char_literal] = ACTIONS(2149), + [anon_sym_true] = ACTIONS(2151), + [anon_sym_false] = ACTIONS(2151), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(2151), + [sym_super] = ACTIONS(2151), + [sym_crate] = ACTIONS(2151), + [sym_metavariable] = ACTIONS(2149), + [sym__raw_string_literal_start] = ACTIONS(2149), + [sym_float_literal] = ACTIONS(2149), }, [STATE(575)] = { [sym_line_comment] = STATE(575), [sym_block_comment] = STATE(575), - [ts_builtin_sym_end] = ACTIONS(2126), - [sym_identifier] = ACTIONS(2128), - [anon_sym_SEMI] = ACTIONS(2126), - [anon_sym_macro_rules_BANG] = ACTIONS(2126), - [anon_sym_LPAREN] = ACTIONS(2126), - [anon_sym_LBRACK] = ACTIONS(2126), - [anon_sym_LBRACE] = ACTIONS(2126), - [anon_sym_RBRACE] = ACTIONS(2126), - [anon_sym_STAR] = ACTIONS(2126), - [anon_sym_u8] = ACTIONS(2128), - [anon_sym_i8] = ACTIONS(2128), - [anon_sym_u16] = ACTIONS(2128), - [anon_sym_i16] = ACTIONS(2128), - [anon_sym_u32] = ACTIONS(2128), - [anon_sym_i32] = ACTIONS(2128), - [anon_sym_u64] = ACTIONS(2128), - [anon_sym_i64] = ACTIONS(2128), - [anon_sym_u128] = ACTIONS(2128), - [anon_sym_i128] = ACTIONS(2128), - [anon_sym_isize] = ACTIONS(2128), - [anon_sym_usize] = ACTIONS(2128), - [anon_sym_f32] = ACTIONS(2128), - [anon_sym_f64] = ACTIONS(2128), - [anon_sym_bool] = ACTIONS(2128), - [anon_sym_str] = ACTIONS(2128), - [anon_sym_char] = ACTIONS(2128), - [anon_sym_DASH] = ACTIONS(2126), - [anon_sym_BANG] = ACTIONS(2126), - [anon_sym_AMP] = ACTIONS(2126), - [anon_sym_PIPE] = ACTIONS(2126), - [anon_sym_LT] = ACTIONS(2126), - [anon_sym_DOT_DOT] = ACTIONS(2126), - [anon_sym_COLON_COLON] = ACTIONS(2126), - [anon_sym_POUND] = ACTIONS(2126), - [anon_sym_SQUOTE] = ACTIONS(2128), - [anon_sym_async] = ACTIONS(2128), - [anon_sym_break] = ACTIONS(2128), - [anon_sym_const] = ACTIONS(2128), - [anon_sym_continue] = ACTIONS(2128), - [anon_sym_default] = ACTIONS(2128), - [anon_sym_enum] = ACTIONS(2128), - [anon_sym_fn] = ACTIONS(2128), - [anon_sym_for] = ACTIONS(2128), - [anon_sym_gen] = ACTIONS(2128), - [anon_sym_if] = ACTIONS(2128), - [anon_sym_impl] = ACTIONS(2128), - [anon_sym_let] = ACTIONS(2128), - [anon_sym_loop] = ACTIONS(2128), - [anon_sym_match] = ACTIONS(2128), - [anon_sym_mod] = ACTIONS(2128), - [anon_sym_pub] = ACTIONS(2128), - [anon_sym_return] = ACTIONS(2128), - [anon_sym_static] = ACTIONS(2128), - [anon_sym_struct] = ACTIONS(2128), - [anon_sym_trait] = ACTIONS(2128), - [anon_sym_type] = ACTIONS(2128), - [anon_sym_union] = ACTIONS(2128), - [anon_sym_unsafe] = ACTIONS(2128), - [anon_sym_use] = ACTIONS(2128), - [anon_sym_while] = ACTIONS(2128), - [anon_sym_extern] = ACTIONS(2128), - [anon_sym_yield] = ACTIONS(2128), - [anon_sym_move] = ACTIONS(2128), - [anon_sym_try] = ACTIONS(2128), - [sym_integer_literal] = ACTIONS(2126), - [aux_sym_string_literal_token1] = ACTIONS(2126), - [sym_char_literal] = ACTIONS(2126), - [anon_sym_true] = ACTIONS(2128), - [anon_sym_false] = ACTIONS(2128), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2128), - [sym_super] = ACTIONS(2128), - [sym_crate] = ACTIONS(2128), - [sym_metavariable] = ACTIONS(2126), - [sym__raw_string_literal_start] = ACTIONS(2126), - [sym_float_literal] = ACTIONS(2126), + [ts_builtin_sym_end] = ACTIONS(2153), + [sym_identifier] = ACTIONS(2155), + [anon_sym_SEMI] = ACTIONS(2153), + [anon_sym_macro_rules_BANG] = ACTIONS(2153), + [anon_sym_LPAREN] = ACTIONS(2153), + [anon_sym_LBRACK] = ACTIONS(2153), + [anon_sym_LBRACE] = ACTIONS(2153), + [anon_sym_RBRACE] = ACTIONS(2153), + [anon_sym_STAR] = ACTIONS(2153), + [anon_sym_u8] = ACTIONS(2155), + [anon_sym_i8] = ACTIONS(2155), + [anon_sym_u16] = ACTIONS(2155), + [anon_sym_i16] = ACTIONS(2155), + [anon_sym_u32] = ACTIONS(2155), + [anon_sym_i32] = ACTIONS(2155), + [anon_sym_u64] = ACTIONS(2155), + [anon_sym_i64] = ACTIONS(2155), + [anon_sym_u128] = ACTIONS(2155), + [anon_sym_i128] = ACTIONS(2155), + [anon_sym_isize] = ACTIONS(2155), + [anon_sym_usize] = ACTIONS(2155), + [anon_sym_f32] = ACTIONS(2155), + [anon_sym_f64] = ACTIONS(2155), + [anon_sym_bool] = ACTIONS(2155), + [anon_sym_str] = ACTIONS(2155), + [anon_sym_char] = ACTIONS(2155), + [anon_sym_DASH] = ACTIONS(2153), + [anon_sym_BANG] = ACTIONS(2153), + [anon_sym_AMP] = ACTIONS(2153), + [anon_sym_PIPE] = ACTIONS(2153), + [anon_sym_LT] = ACTIONS(2153), + [anon_sym_DOT_DOT] = ACTIONS(2153), + [anon_sym_COLON_COLON] = ACTIONS(2153), + [anon_sym_POUND] = ACTIONS(2153), + [anon_sym_SQUOTE] = ACTIONS(2155), + [anon_sym_async] = ACTIONS(2155), + [anon_sym_break] = ACTIONS(2155), + [anon_sym_const] = ACTIONS(2155), + [anon_sym_continue] = ACTIONS(2155), + [anon_sym_default] = ACTIONS(2155), + [anon_sym_enum] = ACTIONS(2155), + [anon_sym_fn] = ACTIONS(2155), + [anon_sym_for] = ACTIONS(2155), + [anon_sym_gen] = ACTIONS(2155), + [anon_sym_if] = ACTIONS(2155), + [anon_sym_impl] = ACTIONS(2155), + [anon_sym_let] = ACTIONS(2155), + [anon_sym_loop] = ACTIONS(2155), + [anon_sym_match] = ACTIONS(2155), + [anon_sym_mod] = ACTIONS(2155), + [anon_sym_pub] = ACTIONS(2155), + [anon_sym_return] = ACTIONS(2155), + [anon_sym_static] = ACTIONS(2155), + [anon_sym_struct] = ACTIONS(2155), + [anon_sym_trait] = ACTIONS(2155), + [anon_sym_type] = ACTIONS(2155), + [anon_sym_union] = ACTIONS(2155), + [anon_sym_unsafe] = ACTIONS(2155), + [anon_sym_use] = ACTIONS(2155), + [anon_sym_while] = ACTIONS(2155), + [anon_sym_extern] = ACTIONS(2155), + [anon_sym_safe] = ACTIONS(2155), + [anon_sym_yield] = ACTIONS(2155), + [anon_sym_move] = ACTIONS(2155), + [anon_sym_try] = ACTIONS(2155), + [sym_integer_literal] = ACTIONS(2153), + [aux_sym_string_literal_token1] = ACTIONS(2153), + [sym_char_literal] = ACTIONS(2153), + [anon_sym_true] = ACTIONS(2155), + [anon_sym_false] = ACTIONS(2155), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(2155), + [sym_super] = ACTIONS(2155), + [sym_crate] = ACTIONS(2155), + [sym_metavariable] = ACTIONS(2153), + [sym__raw_string_literal_start] = ACTIONS(2153), + [sym_float_literal] = ACTIONS(2153), }, [STATE(576)] = { [sym_line_comment] = STATE(576), [sym_block_comment] = STATE(576), - [ts_builtin_sym_end] = ACTIONS(2130), - [sym_identifier] = ACTIONS(2132), - [anon_sym_SEMI] = ACTIONS(2130), - [anon_sym_macro_rules_BANG] = ACTIONS(2130), - [anon_sym_LPAREN] = ACTIONS(2130), - [anon_sym_LBRACK] = ACTIONS(2130), - [anon_sym_LBRACE] = ACTIONS(2130), - [anon_sym_RBRACE] = ACTIONS(2130), - [anon_sym_STAR] = ACTIONS(2130), - [anon_sym_u8] = ACTIONS(2132), - [anon_sym_i8] = ACTIONS(2132), - [anon_sym_u16] = ACTIONS(2132), - [anon_sym_i16] = ACTIONS(2132), - [anon_sym_u32] = ACTIONS(2132), - [anon_sym_i32] = ACTIONS(2132), - [anon_sym_u64] = ACTIONS(2132), - [anon_sym_i64] = ACTIONS(2132), - [anon_sym_u128] = ACTIONS(2132), - [anon_sym_i128] = ACTIONS(2132), - [anon_sym_isize] = ACTIONS(2132), - [anon_sym_usize] = ACTIONS(2132), - [anon_sym_f32] = ACTIONS(2132), - [anon_sym_f64] = ACTIONS(2132), - [anon_sym_bool] = ACTIONS(2132), - [anon_sym_str] = ACTIONS(2132), - [anon_sym_char] = ACTIONS(2132), - [anon_sym_DASH] = ACTIONS(2130), - [anon_sym_BANG] = ACTIONS(2130), - [anon_sym_AMP] = ACTIONS(2130), - [anon_sym_PIPE] = ACTIONS(2130), - [anon_sym_LT] = ACTIONS(2130), - [anon_sym_DOT_DOT] = ACTIONS(2130), - [anon_sym_COLON_COLON] = ACTIONS(2130), - [anon_sym_POUND] = ACTIONS(2130), - [anon_sym_SQUOTE] = ACTIONS(2132), - [anon_sym_async] = ACTIONS(2132), - [anon_sym_break] = ACTIONS(2132), - [anon_sym_const] = ACTIONS(2132), - [anon_sym_continue] = ACTIONS(2132), - [anon_sym_default] = ACTIONS(2132), - [anon_sym_enum] = ACTIONS(2132), - [anon_sym_fn] = ACTIONS(2132), - [anon_sym_for] = ACTIONS(2132), - [anon_sym_gen] = ACTIONS(2132), - [anon_sym_if] = ACTIONS(2132), - [anon_sym_impl] = ACTIONS(2132), - [anon_sym_let] = ACTIONS(2132), - [anon_sym_loop] = ACTIONS(2132), - [anon_sym_match] = ACTIONS(2132), - [anon_sym_mod] = ACTIONS(2132), - [anon_sym_pub] = ACTIONS(2132), - [anon_sym_return] = ACTIONS(2132), - [anon_sym_static] = ACTIONS(2132), - [anon_sym_struct] = ACTIONS(2132), - [anon_sym_trait] = ACTIONS(2132), - [anon_sym_type] = ACTIONS(2132), - [anon_sym_union] = ACTIONS(2132), - [anon_sym_unsafe] = ACTIONS(2132), - [anon_sym_use] = ACTIONS(2132), - [anon_sym_while] = ACTIONS(2132), - [anon_sym_extern] = ACTIONS(2132), - [anon_sym_yield] = ACTIONS(2132), - [anon_sym_move] = ACTIONS(2132), - [anon_sym_try] = ACTIONS(2132), - [sym_integer_literal] = ACTIONS(2130), - [aux_sym_string_literal_token1] = ACTIONS(2130), - [sym_char_literal] = ACTIONS(2130), - [anon_sym_true] = ACTIONS(2132), - [anon_sym_false] = ACTIONS(2132), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2132), - [sym_super] = ACTIONS(2132), - [sym_crate] = ACTIONS(2132), - [sym_metavariable] = ACTIONS(2130), - [sym__raw_string_literal_start] = ACTIONS(2130), - [sym_float_literal] = ACTIONS(2130), + [ts_builtin_sym_end] = ACTIONS(2157), + [sym_identifier] = ACTIONS(2159), + [anon_sym_SEMI] = ACTIONS(2157), + [anon_sym_macro_rules_BANG] = ACTIONS(2157), + [anon_sym_LPAREN] = ACTIONS(2157), + [anon_sym_LBRACK] = ACTIONS(2157), + [anon_sym_LBRACE] = ACTIONS(2157), + [anon_sym_RBRACE] = ACTIONS(2157), + [anon_sym_STAR] = ACTIONS(2157), + [anon_sym_u8] = ACTIONS(2159), + [anon_sym_i8] = ACTIONS(2159), + [anon_sym_u16] = ACTIONS(2159), + [anon_sym_i16] = ACTIONS(2159), + [anon_sym_u32] = ACTIONS(2159), + [anon_sym_i32] = ACTIONS(2159), + [anon_sym_u64] = ACTIONS(2159), + [anon_sym_i64] = ACTIONS(2159), + [anon_sym_u128] = ACTIONS(2159), + [anon_sym_i128] = ACTIONS(2159), + [anon_sym_isize] = ACTIONS(2159), + [anon_sym_usize] = ACTIONS(2159), + [anon_sym_f32] = ACTIONS(2159), + [anon_sym_f64] = ACTIONS(2159), + [anon_sym_bool] = ACTIONS(2159), + [anon_sym_str] = ACTIONS(2159), + [anon_sym_char] = ACTIONS(2159), + [anon_sym_DASH] = ACTIONS(2157), + [anon_sym_BANG] = ACTIONS(2157), + [anon_sym_AMP] = ACTIONS(2157), + [anon_sym_PIPE] = ACTIONS(2157), + [anon_sym_LT] = ACTIONS(2157), + [anon_sym_DOT_DOT] = ACTIONS(2157), + [anon_sym_COLON_COLON] = ACTIONS(2157), + [anon_sym_POUND] = ACTIONS(2157), + [anon_sym_SQUOTE] = ACTIONS(2159), + [anon_sym_async] = ACTIONS(2159), + [anon_sym_break] = ACTIONS(2159), + [anon_sym_const] = ACTIONS(2159), + [anon_sym_continue] = ACTIONS(2159), + [anon_sym_default] = ACTIONS(2159), + [anon_sym_enum] = ACTIONS(2159), + [anon_sym_fn] = ACTIONS(2159), + [anon_sym_for] = ACTIONS(2159), + [anon_sym_gen] = ACTIONS(2159), + [anon_sym_if] = ACTIONS(2159), + [anon_sym_impl] = ACTIONS(2159), + [anon_sym_let] = ACTIONS(2159), + [anon_sym_loop] = ACTIONS(2159), + [anon_sym_match] = ACTIONS(2159), + [anon_sym_mod] = ACTIONS(2159), + [anon_sym_pub] = ACTIONS(2159), + [anon_sym_return] = ACTIONS(2159), + [anon_sym_static] = ACTIONS(2159), + [anon_sym_struct] = ACTIONS(2159), + [anon_sym_trait] = ACTIONS(2159), + [anon_sym_type] = ACTIONS(2159), + [anon_sym_union] = ACTIONS(2159), + [anon_sym_unsafe] = ACTIONS(2159), + [anon_sym_use] = ACTIONS(2159), + [anon_sym_while] = ACTIONS(2159), + [anon_sym_extern] = ACTIONS(2159), + [anon_sym_safe] = ACTIONS(2159), + [anon_sym_yield] = ACTIONS(2159), + [anon_sym_move] = ACTIONS(2159), + [anon_sym_try] = ACTIONS(2159), + [sym_integer_literal] = ACTIONS(2157), + [aux_sym_string_literal_token1] = ACTIONS(2157), + [sym_char_literal] = ACTIONS(2157), + [anon_sym_true] = ACTIONS(2159), + [anon_sym_false] = ACTIONS(2159), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(2159), + [sym_super] = ACTIONS(2159), + [sym_crate] = ACTIONS(2159), + [sym_metavariable] = ACTIONS(2157), + [sym__raw_string_literal_start] = ACTIONS(2157), + [sym_float_literal] = ACTIONS(2157), }, [STATE(577)] = { [sym_line_comment] = STATE(577), [sym_block_comment] = STATE(577), - [ts_builtin_sym_end] = ACTIONS(2134), - [sym_identifier] = ACTIONS(2136), - [anon_sym_SEMI] = ACTIONS(2134), - [anon_sym_macro_rules_BANG] = ACTIONS(2134), - [anon_sym_LPAREN] = ACTIONS(2134), - [anon_sym_LBRACK] = ACTIONS(2134), - [anon_sym_LBRACE] = ACTIONS(2134), - [anon_sym_RBRACE] = ACTIONS(2134), - [anon_sym_STAR] = ACTIONS(2134), - [anon_sym_u8] = ACTIONS(2136), - [anon_sym_i8] = ACTIONS(2136), - [anon_sym_u16] = ACTIONS(2136), - [anon_sym_i16] = ACTIONS(2136), - [anon_sym_u32] = ACTIONS(2136), - [anon_sym_i32] = ACTIONS(2136), - [anon_sym_u64] = ACTIONS(2136), - [anon_sym_i64] = ACTIONS(2136), - [anon_sym_u128] = ACTIONS(2136), - [anon_sym_i128] = ACTIONS(2136), - [anon_sym_isize] = ACTIONS(2136), - [anon_sym_usize] = ACTIONS(2136), - [anon_sym_f32] = ACTIONS(2136), - [anon_sym_f64] = ACTIONS(2136), - [anon_sym_bool] = ACTIONS(2136), - [anon_sym_str] = ACTIONS(2136), - [anon_sym_char] = ACTIONS(2136), - [anon_sym_DASH] = ACTIONS(2134), - [anon_sym_BANG] = ACTIONS(2134), - [anon_sym_AMP] = ACTIONS(2134), - [anon_sym_PIPE] = ACTIONS(2134), - [anon_sym_LT] = ACTIONS(2134), - [anon_sym_DOT_DOT] = ACTIONS(2134), - [anon_sym_COLON_COLON] = ACTIONS(2134), - [anon_sym_POUND] = ACTIONS(2134), - [anon_sym_SQUOTE] = ACTIONS(2136), - [anon_sym_async] = ACTIONS(2136), - [anon_sym_break] = ACTIONS(2136), - [anon_sym_const] = ACTIONS(2136), - [anon_sym_continue] = ACTIONS(2136), - [anon_sym_default] = ACTIONS(2136), - [anon_sym_enum] = ACTIONS(2136), - [anon_sym_fn] = ACTIONS(2136), - [anon_sym_for] = ACTIONS(2136), - [anon_sym_gen] = ACTIONS(2136), - [anon_sym_if] = ACTIONS(2136), - [anon_sym_impl] = ACTIONS(2136), - [anon_sym_let] = ACTIONS(2136), - [anon_sym_loop] = ACTIONS(2136), - [anon_sym_match] = ACTIONS(2136), - [anon_sym_mod] = ACTIONS(2136), - [anon_sym_pub] = ACTIONS(2136), - [anon_sym_return] = ACTIONS(2136), - [anon_sym_static] = ACTIONS(2136), - [anon_sym_struct] = ACTIONS(2136), - [anon_sym_trait] = ACTIONS(2136), - [anon_sym_type] = ACTIONS(2136), - [anon_sym_union] = ACTIONS(2136), - [anon_sym_unsafe] = ACTIONS(2136), - [anon_sym_use] = ACTIONS(2136), - [anon_sym_while] = ACTIONS(2136), - [anon_sym_extern] = ACTIONS(2136), - [anon_sym_yield] = ACTIONS(2136), - [anon_sym_move] = ACTIONS(2136), - [anon_sym_try] = ACTIONS(2136), - [sym_integer_literal] = ACTIONS(2134), - [aux_sym_string_literal_token1] = ACTIONS(2134), - [sym_char_literal] = ACTIONS(2134), - [anon_sym_true] = ACTIONS(2136), - [anon_sym_false] = ACTIONS(2136), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2136), - [sym_super] = ACTIONS(2136), - [sym_crate] = ACTIONS(2136), - [sym_metavariable] = ACTIONS(2134), - [sym__raw_string_literal_start] = ACTIONS(2134), - [sym_float_literal] = ACTIONS(2134), + [ts_builtin_sym_end] = ACTIONS(2161), + [sym_identifier] = ACTIONS(2163), + [anon_sym_SEMI] = ACTIONS(2161), + [anon_sym_macro_rules_BANG] = ACTIONS(2161), + [anon_sym_LPAREN] = ACTIONS(2161), + [anon_sym_LBRACK] = ACTIONS(2161), + [anon_sym_LBRACE] = ACTIONS(2161), + [anon_sym_RBRACE] = ACTIONS(2161), + [anon_sym_STAR] = ACTIONS(2161), + [anon_sym_u8] = ACTIONS(2163), + [anon_sym_i8] = ACTIONS(2163), + [anon_sym_u16] = ACTIONS(2163), + [anon_sym_i16] = ACTIONS(2163), + [anon_sym_u32] = ACTIONS(2163), + [anon_sym_i32] = ACTIONS(2163), + [anon_sym_u64] = ACTIONS(2163), + [anon_sym_i64] = ACTIONS(2163), + [anon_sym_u128] = ACTIONS(2163), + [anon_sym_i128] = ACTIONS(2163), + [anon_sym_isize] = ACTIONS(2163), + [anon_sym_usize] = ACTIONS(2163), + [anon_sym_f32] = ACTIONS(2163), + [anon_sym_f64] = ACTIONS(2163), + [anon_sym_bool] = ACTIONS(2163), + [anon_sym_str] = ACTIONS(2163), + [anon_sym_char] = ACTIONS(2163), + [anon_sym_DASH] = ACTIONS(2161), + [anon_sym_BANG] = ACTIONS(2161), + [anon_sym_AMP] = ACTIONS(2161), + [anon_sym_PIPE] = ACTIONS(2161), + [anon_sym_LT] = ACTIONS(2161), + [anon_sym_DOT_DOT] = ACTIONS(2161), + [anon_sym_COLON_COLON] = ACTIONS(2161), + [anon_sym_POUND] = ACTIONS(2161), + [anon_sym_SQUOTE] = ACTIONS(2163), + [anon_sym_async] = ACTIONS(2163), + [anon_sym_break] = ACTIONS(2163), + [anon_sym_const] = ACTIONS(2163), + [anon_sym_continue] = ACTIONS(2163), + [anon_sym_default] = ACTIONS(2163), + [anon_sym_enum] = ACTIONS(2163), + [anon_sym_fn] = ACTIONS(2163), + [anon_sym_for] = ACTIONS(2163), + [anon_sym_gen] = ACTIONS(2163), + [anon_sym_if] = ACTIONS(2163), + [anon_sym_impl] = ACTIONS(2163), + [anon_sym_let] = ACTIONS(2163), + [anon_sym_loop] = ACTIONS(2163), + [anon_sym_match] = ACTIONS(2163), + [anon_sym_mod] = ACTIONS(2163), + [anon_sym_pub] = ACTIONS(2163), + [anon_sym_return] = ACTIONS(2163), + [anon_sym_static] = ACTIONS(2163), + [anon_sym_struct] = ACTIONS(2163), + [anon_sym_trait] = ACTIONS(2163), + [anon_sym_type] = ACTIONS(2163), + [anon_sym_union] = ACTIONS(2163), + [anon_sym_unsafe] = ACTIONS(2163), + [anon_sym_use] = ACTIONS(2163), + [anon_sym_while] = ACTIONS(2163), + [anon_sym_extern] = ACTIONS(2163), + [anon_sym_safe] = ACTIONS(2163), + [anon_sym_yield] = ACTIONS(2163), + [anon_sym_move] = ACTIONS(2163), + [anon_sym_try] = ACTIONS(2163), + [sym_integer_literal] = ACTIONS(2161), + [aux_sym_string_literal_token1] = ACTIONS(2161), + [sym_char_literal] = ACTIONS(2161), + [anon_sym_true] = ACTIONS(2163), + [anon_sym_false] = ACTIONS(2163), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(2163), + [sym_super] = ACTIONS(2163), + [sym_crate] = ACTIONS(2163), + [sym_metavariable] = ACTIONS(2161), + [sym__raw_string_literal_start] = ACTIONS(2161), + [sym_float_literal] = ACTIONS(2161), }, [STATE(578)] = { [sym_line_comment] = STATE(578), [sym_block_comment] = STATE(578), - [ts_builtin_sym_end] = ACTIONS(2138), - [sym_identifier] = ACTIONS(2140), - [anon_sym_SEMI] = ACTIONS(2138), - [anon_sym_macro_rules_BANG] = ACTIONS(2138), - [anon_sym_LPAREN] = ACTIONS(2138), - [anon_sym_LBRACK] = ACTIONS(2138), - [anon_sym_LBRACE] = ACTIONS(2138), - [anon_sym_RBRACE] = ACTIONS(2138), - [anon_sym_STAR] = ACTIONS(2138), - [anon_sym_u8] = ACTIONS(2140), - [anon_sym_i8] = ACTIONS(2140), - [anon_sym_u16] = ACTIONS(2140), - [anon_sym_i16] = ACTIONS(2140), - [anon_sym_u32] = ACTIONS(2140), - [anon_sym_i32] = ACTIONS(2140), - [anon_sym_u64] = ACTIONS(2140), - [anon_sym_i64] = ACTIONS(2140), - [anon_sym_u128] = ACTIONS(2140), - [anon_sym_i128] = ACTIONS(2140), - [anon_sym_isize] = ACTIONS(2140), - [anon_sym_usize] = ACTIONS(2140), - [anon_sym_f32] = ACTIONS(2140), - [anon_sym_f64] = ACTIONS(2140), - [anon_sym_bool] = ACTIONS(2140), - [anon_sym_str] = ACTIONS(2140), - [anon_sym_char] = ACTIONS(2140), - [anon_sym_DASH] = ACTIONS(2138), - [anon_sym_BANG] = ACTIONS(2138), - [anon_sym_AMP] = ACTIONS(2138), - [anon_sym_PIPE] = ACTIONS(2138), - [anon_sym_LT] = ACTIONS(2138), - [anon_sym_DOT_DOT] = ACTIONS(2138), - [anon_sym_COLON_COLON] = ACTIONS(2138), - [anon_sym_POUND] = ACTIONS(2138), - [anon_sym_SQUOTE] = ACTIONS(2140), - [anon_sym_async] = ACTIONS(2140), - [anon_sym_break] = ACTIONS(2140), - [anon_sym_const] = ACTIONS(2140), - [anon_sym_continue] = ACTIONS(2140), - [anon_sym_default] = ACTIONS(2140), - [anon_sym_enum] = ACTIONS(2140), - [anon_sym_fn] = ACTIONS(2140), - [anon_sym_for] = ACTIONS(2140), - [anon_sym_gen] = ACTIONS(2140), - [anon_sym_if] = ACTIONS(2140), - [anon_sym_impl] = ACTIONS(2140), - [anon_sym_let] = ACTIONS(2140), - [anon_sym_loop] = ACTIONS(2140), - [anon_sym_match] = ACTIONS(2140), - [anon_sym_mod] = ACTIONS(2140), - [anon_sym_pub] = ACTIONS(2140), - [anon_sym_return] = ACTIONS(2140), - [anon_sym_static] = ACTIONS(2140), - [anon_sym_struct] = ACTIONS(2140), - [anon_sym_trait] = ACTIONS(2140), - [anon_sym_type] = ACTIONS(2140), - [anon_sym_union] = ACTIONS(2140), - [anon_sym_unsafe] = ACTIONS(2140), - [anon_sym_use] = ACTIONS(2140), - [anon_sym_while] = ACTIONS(2140), - [anon_sym_extern] = ACTIONS(2140), - [anon_sym_yield] = ACTIONS(2140), - [anon_sym_move] = ACTIONS(2140), - [anon_sym_try] = ACTIONS(2140), - [sym_integer_literal] = ACTIONS(2138), - [aux_sym_string_literal_token1] = ACTIONS(2138), - [sym_char_literal] = ACTIONS(2138), - [anon_sym_true] = ACTIONS(2140), - [anon_sym_false] = ACTIONS(2140), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2140), - [sym_super] = ACTIONS(2140), - [sym_crate] = ACTIONS(2140), - [sym_metavariable] = ACTIONS(2138), - [sym__raw_string_literal_start] = ACTIONS(2138), - [sym_float_literal] = ACTIONS(2138), + [ts_builtin_sym_end] = ACTIONS(2165), + [sym_identifier] = ACTIONS(2167), + [anon_sym_SEMI] = ACTIONS(2165), + [anon_sym_macro_rules_BANG] = ACTIONS(2165), + [anon_sym_LPAREN] = ACTIONS(2165), + [anon_sym_LBRACK] = ACTIONS(2165), + [anon_sym_LBRACE] = ACTIONS(2165), + [anon_sym_RBRACE] = ACTIONS(2165), + [anon_sym_STAR] = ACTIONS(2165), + [anon_sym_u8] = ACTIONS(2167), + [anon_sym_i8] = ACTIONS(2167), + [anon_sym_u16] = ACTIONS(2167), + [anon_sym_i16] = ACTIONS(2167), + [anon_sym_u32] = ACTIONS(2167), + [anon_sym_i32] = ACTIONS(2167), + [anon_sym_u64] = ACTIONS(2167), + [anon_sym_i64] = ACTIONS(2167), + [anon_sym_u128] = ACTIONS(2167), + [anon_sym_i128] = ACTIONS(2167), + [anon_sym_isize] = ACTIONS(2167), + [anon_sym_usize] = ACTIONS(2167), + [anon_sym_f32] = ACTIONS(2167), + [anon_sym_f64] = ACTIONS(2167), + [anon_sym_bool] = ACTIONS(2167), + [anon_sym_str] = ACTIONS(2167), + [anon_sym_char] = ACTIONS(2167), + [anon_sym_DASH] = ACTIONS(2165), + [anon_sym_BANG] = ACTIONS(2165), + [anon_sym_AMP] = ACTIONS(2165), + [anon_sym_PIPE] = ACTIONS(2165), + [anon_sym_LT] = ACTIONS(2165), + [anon_sym_DOT_DOT] = ACTIONS(2165), + [anon_sym_COLON_COLON] = ACTIONS(2165), + [anon_sym_POUND] = ACTIONS(2165), + [anon_sym_SQUOTE] = ACTIONS(2167), + [anon_sym_async] = ACTIONS(2167), + [anon_sym_break] = ACTIONS(2167), + [anon_sym_const] = ACTIONS(2167), + [anon_sym_continue] = ACTIONS(2167), + [anon_sym_default] = ACTIONS(2167), + [anon_sym_enum] = ACTIONS(2167), + [anon_sym_fn] = ACTIONS(2167), + [anon_sym_for] = ACTIONS(2167), + [anon_sym_gen] = ACTIONS(2167), + [anon_sym_if] = ACTIONS(2167), + [anon_sym_impl] = ACTIONS(2167), + [anon_sym_let] = ACTIONS(2167), + [anon_sym_loop] = ACTIONS(2167), + [anon_sym_match] = ACTIONS(2167), + [anon_sym_mod] = ACTIONS(2167), + [anon_sym_pub] = ACTIONS(2167), + [anon_sym_return] = ACTIONS(2167), + [anon_sym_static] = ACTIONS(2167), + [anon_sym_struct] = ACTIONS(2167), + [anon_sym_trait] = ACTIONS(2167), + [anon_sym_type] = ACTIONS(2167), + [anon_sym_union] = ACTIONS(2167), + [anon_sym_unsafe] = ACTIONS(2167), + [anon_sym_use] = ACTIONS(2167), + [anon_sym_while] = ACTIONS(2167), + [anon_sym_extern] = ACTIONS(2167), + [anon_sym_safe] = ACTIONS(2167), + [anon_sym_yield] = ACTIONS(2167), + [anon_sym_move] = ACTIONS(2167), + [anon_sym_try] = ACTIONS(2167), + [sym_integer_literal] = ACTIONS(2165), + [aux_sym_string_literal_token1] = ACTIONS(2165), + [sym_char_literal] = ACTIONS(2165), + [anon_sym_true] = ACTIONS(2167), + [anon_sym_false] = ACTIONS(2167), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(2167), + [sym_super] = ACTIONS(2167), + [sym_crate] = ACTIONS(2167), + [sym_metavariable] = ACTIONS(2165), + [sym__raw_string_literal_start] = ACTIONS(2165), + [sym_float_literal] = ACTIONS(2165), }, [STATE(579)] = { [sym_line_comment] = STATE(579), [sym_block_comment] = STATE(579), - [ts_builtin_sym_end] = ACTIONS(2142), - [sym_identifier] = ACTIONS(2144), - [anon_sym_SEMI] = ACTIONS(2142), - [anon_sym_macro_rules_BANG] = ACTIONS(2142), - [anon_sym_LPAREN] = ACTIONS(2142), - [anon_sym_LBRACK] = ACTIONS(2142), - [anon_sym_LBRACE] = ACTIONS(2142), - [anon_sym_RBRACE] = ACTIONS(2142), - [anon_sym_STAR] = ACTIONS(2142), - [anon_sym_u8] = ACTIONS(2144), - [anon_sym_i8] = ACTIONS(2144), - [anon_sym_u16] = ACTIONS(2144), - [anon_sym_i16] = ACTIONS(2144), - [anon_sym_u32] = ACTIONS(2144), - [anon_sym_i32] = ACTIONS(2144), - [anon_sym_u64] = ACTIONS(2144), - [anon_sym_i64] = ACTIONS(2144), - [anon_sym_u128] = ACTIONS(2144), - [anon_sym_i128] = ACTIONS(2144), - [anon_sym_isize] = ACTIONS(2144), - [anon_sym_usize] = ACTIONS(2144), - [anon_sym_f32] = ACTIONS(2144), - [anon_sym_f64] = ACTIONS(2144), - [anon_sym_bool] = ACTIONS(2144), - [anon_sym_str] = ACTIONS(2144), - [anon_sym_char] = ACTIONS(2144), - [anon_sym_DASH] = ACTIONS(2142), - [anon_sym_BANG] = ACTIONS(2142), - [anon_sym_AMP] = ACTIONS(2142), - [anon_sym_PIPE] = ACTIONS(2142), - [anon_sym_LT] = ACTIONS(2142), - [anon_sym_DOT_DOT] = ACTIONS(2142), - [anon_sym_COLON_COLON] = ACTIONS(2142), - [anon_sym_POUND] = ACTIONS(2142), - [anon_sym_SQUOTE] = ACTIONS(2144), - [anon_sym_async] = ACTIONS(2144), - [anon_sym_break] = ACTIONS(2144), - [anon_sym_const] = ACTIONS(2144), - [anon_sym_continue] = ACTIONS(2144), - [anon_sym_default] = ACTIONS(2144), - [anon_sym_enum] = ACTIONS(2144), - [anon_sym_fn] = ACTIONS(2144), - [anon_sym_for] = ACTIONS(2144), - [anon_sym_gen] = ACTIONS(2144), - [anon_sym_if] = ACTIONS(2144), - [anon_sym_impl] = ACTIONS(2144), - [anon_sym_let] = ACTIONS(2144), - [anon_sym_loop] = ACTIONS(2144), - [anon_sym_match] = ACTIONS(2144), - [anon_sym_mod] = ACTIONS(2144), - [anon_sym_pub] = ACTIONS(2144), - [anon_sym_return] = ACTIONS(2144), - [anon_sym_static] = ACTIONS(2144), - [anon_sym_struct] = ACTIONS(2144), - [anon_sym_trait] = ACTIONS(2144), - [anon_sym_type] = ACTIONS(2144), - [anon_sym_union] = ACTIONS(2144), - [anon_sym_unsafe] = ACTIONS(2144), - [anon_sym_use] = ACTIONS(2144), - [anon_sym_while] = ACTIONS(2144), - [anon_sym_extern] = ACTIONS(2144), - [anon_sym_yield] = ACTIONS(2144), - [anon_sym_move] = ACTIONS(2144), - [anon_sym_try] = ACTIONS(2144), - [sym_integer_literal] = ACTIONS(2142), - [aux_sym_string_literal_token1] = ACTIONS(2142), - [sym_char_literal] = ACTIONS(2142), - [anon_sym_true] = ACTIONS(2144), - [anon_sym_false] = ACTIONS(2144), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2144), - [sym_super] = ACTIONS(2144), - [sym_crate] = ACTIONS(2144), - [sym_metavariable] = ACTIONS(2142), - [sym__raw_string_literal_start] = ACTIONS(2142), - [sym_float_literal] = ACTIONS(2142), + [ts_builtin_sym_end] = ACTIONS(2169), + [sym_identifier] = ACTIONS(2171), + [anon_sym_SEMI] = ACTIONS(2169), + [anon_sym_macro_rules_BANG] = ACTIONS(2169), + [anon_sym_LPAREN] = ACTIONS(2169), + [anon_sym_LBRACK] = ACTIONS(2169), + [anon_sym_LBRACE] = ACTIONS(2169), + [anon_sym_RBRACE] = ACTIONS(2169), + [anon_sym_STAR] = ACTIONS(2169), + [anon_sym_u8] = ACTIONS(2171), + [anon_sym_i8] = ACTIONS(2171), + [anon_sym_u16] = ACTIONS(2171), + [anon_sym_i16] = ACTIONS(2171), + [anon_sym_u32] = ACTIONS(2171), + [anon_sym_i32] = ACTIONS(2171), + [anon_sym_u64] = ACTIONS(2171), + [anon_sym_i64] = ACTIONS(2171), + [anon_sym_u128] = ACTIONS(2171), + [anon_sym_i128] = ACTIONS(2171), + [anon_sym_isize] = ACTIONS(2171), + [anon_sym_usize] = ACTIONS(2171), + [anon_sym_f32] = ACTIONS(2171), + [anon_sym_f64] = ACTIONS(2171), + [anon_sym_bool] = ACTIONS(2171), + [anon_sym_str] = ACTIONS(2171), + [anon_sym_char] = ACTIONS(2171), + [anon_sym_DASH] = ACTIONS(2169), + [anon_sym_BANG] = ACTIONS(2169), + [anon_sym_AMP] = ACTIONS(2169), + [anon_sym_PIPE] = ACTIONS(2169), + [anon_sym_LT] = ACTIONS(2169), + [anon_sym_DOT_DOT] = ACTIONS(2169), + [anon_sym_COLON_COLON] = ACTIONS(2169), + [anon_sym_POUND] = ACTIONS(2169), + [anon_sym_SQUOTE] = ACTIONS(2171), + [anon_sym_async] = ACTIONS(2171), + [anon_sym_break] = ACTIONS(2171), + [anon_sym_const] = ACTIONS(2171), + [anon_sym_continue] = ACTIONS(2171), + [anon_sym_default] = ACTIONS(2171), + [anon_sym_enum] = ACTIONS(2171), + [anon_sym_fn] = ACTIONS(2171), + [anon_sym_for] = ACTIONS(2171), + [anon_sym_gen] = ACTIONS(2171), + [anon_sym_if] = ACTIONS(2171), + [anon_sym_impl] = ACTIONS(2171), + [anon_sym_let] = ACTIONS(2171), + [anon_sym_loop] = ACTIONS(2171), + [anon_sym_match] = ACTIONS(2171), + [anon_sym_mod] = ACTIONS(2171), + [anon_sym_pub] = ACTIONS(2171), + [anon_sym_return] = ACTIONS(2171), + [anon_sym_static] = ACTIONS(2171), + [anon_sym_struct] = ACTIONS(2171), + [anon_sym_trait] = ACTIONS(2171), + [anon_sym_type] = ACTIONS(2171), + [anon_sym_union] = ACTIONS(2171), + [anon_sym_unsafe] = ACTIONS(2171), + [anon_sym_use] = ACTIONS(2171), + [anon_sym_while] = ACTIONS(2171), + [anon_sym_extern] = ACTIONS(2171), + [anon_sym_safe] = ACTIONS(2171), + [anon_sym_yield] = ACTIONS(2171), + [anon_sym_move] = ACTIONS(2171), + [anon_sym_try] = ACTIONS(2171), + [sym_integer_literal] = ACTIONS(2169), + [aux_sym_string_literal_token1] = ACTIONS(2169), + [sym_char_literal] = ACTIONS(2169), + [anon_sym_true] = ACTIONS(2171), + [anon_sym_false] = ACTIONS(2171), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(2171), + [sym_super] = ACTIONS(2171), + [sym_crate] = ACTIONS(2171), + [sym_metavariable] = ACTIONS(2169), + [sym__raw_string_literal_start] = ACTIONS(2169), + [sym_float_literal] = ACTIONS(2169), }, [STATE(580)] = { [sym_line_comment] = STATE(580), [sym_block_comment] = STATE(580), - [ts_builtin_sym_end] = ACTIONS(2146), - [sym_identifier] = ACTIONS(2148), - [anon_sym_SEMI] = ACTIONS(2146), - [anon_sym_macro_rules_BANG] = ACTIONS(2146), - [anon_sym_LPAREN] = ACTIONS(2146), - [anon_sym_LBRACK] = ACTIONS(2146), - [anon_sym_LBRACE] = ACTIONS(2146), - [anon_sym_RBRACE] = ACTIONS(2146), - [anon_sym_STAR] = ACTIONS(2146), - [anon_sym_u8] = ACTIONS(2148), - [anon_sym_i8] = ACTIONS(2148), - [anon_sym_u16] = ACTIONS(2148), - [anon_sym_i16] = ACTIONS(2148), - [anon_sym_u32] = ACTIONS(2148), - [anon_sym_i32] = ACTIONS(2148), - [anon_sym_u64] = ACTIONS(2148), - [anon_sym_i64] = ACTIONS(2148), - [anon_sym_u128] = ACTIONS(2148), - [anon_sym_i128] = ACTIONS(2148), - [anon_sym_isize] = ACTIONS(2148), - [anon_sym_usize] = ACTIONS(2148), - [anon_sym_f32] = ACTIONS(2148), - [anon_sym_f64] = ACTIONS(2148), - [anon_sym_bool] = ACTIONS(2148), - [anon_sym_str] = ACTIONS(2148), - [anon_sym_char] = ACTIONS(2148), - [anon_sym_DASH] = ACTIONS(2146), - [anon_sym_BANG] = ACTIONS(2146), - [anon_sym_AMP] = ACTIONS(2146), - [anon_sym_PIPE] = ACTIONS(2146), - [anon_sym_LT] = ACTIONS(2146), - [anon_sym_DOT_DOT] = ACTIONS(2146), - [anon_sym_COLON_COLON] = ACTIONS(2146), - [anon_sym_POUND] = ACTIONS(2146), - [anon_sym_SQUOTE] = ACTIONS(2148), - [anon_sym_async] = ACTIONS(2148), - [anon_sym_break] = ACTIONS(2148), - [anon_sym_const] = ACTIONS(2148), - [anon_sym_continue] = ACTIONS(2148), - [anon_sym_default] = ACTIONS(2148), - [anon_sym_enum] = ACTIONS(2148), - [anon_sym_fn] = ACTIONS(2148), - [anon_sym_for] = ACTIONS(2148), - [anon_sym_gen] = ACTIONS(2148), - [anon_sym_if] = ACTIONS(2148), - [anon_sym_impl] = ACTIONS(2148), - [anon_sym_let] = ACTIONS(2148), - [anon_sym_loop] = ACTIONS(2148), - [anon_sym_match] = ACTIONS(2148), - [anon_sym_mod] = ACTIONS(2148), - [anon_sym_pub] = ACTIONS(2148), - [anon_sym_return] = ACTIONS(2148), - [anon_sym_static] = ACTIONS(2148), - [anon_sym_struct] = ACTIONS(2148), - [anon_sym_trait] = ACTIONS(2148), - [anon_sym_type] = ACTIONS(2148), - [anon_sym_union] = ACTIONS(2148), - [anon_sym_unsafe] = ACTIONS(2148), - [anon_sym_use] = ACTIONS(2148), - [anon_sym_while] = ACTIONS(2148), - [anon_sym_extern] = ACTIONS(2148), - [anon_sym_yield] = ACTIONS(2148), - [anon_sym_move] = ACTIONS(2148), - [anon_sym_try] = ACTIONS(2148), - [sym_integer_literal] = ACTIONS(2146), - [aux_sym_string_literal_token1] = ACTIONS(2146), - [sym_char_literal] = ACTIONS(2146), - [anon_sym_true] = ACTIONS(2148), - [anon_sym_false] = ACTIONS(2148), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2148), - [sym_super] = ACTIONS(2148), - [sym_crate] = ACTIONS(2148), - [sym_metavariable] = ACTIONS(2146), - [sym__raw_string_literal_start] = ACTIONS(2146), - [sym_float_literal] = ACTIONS(2146), + [ts_builtin_sym_end] = ACTIONS(2173), + [sym_identifier] = ACTIONS(2175), + [anon_sym_SEMI] = ACTIONS(2173), + [anon_sym_macro_rules_BANG] = ACTIONS(2173), + [anon_sym_LPAREN] = ACTIONS(2173), + [anon_sym_LBRACK] = ACTIONS(2173), + [anon_sym_LBRACE] = ACTIONS(2173), + [anon_sym_RBRACE] = ACTIONS(2173), + [anon_sym_STAR] = ACTIONS(2173), + [anon_sym_u8] = ACTIONS(2175), + [anon_sym_i8] = ACTIONS(2175), + [anon_sym_u16] = ACTIONS(2175), + [anon_sym_i16] = ACTIONS(2175), + [anon_sym_u32] = ACTIONS(2175), + [anon_sym_i32] = ACTIONS(2175), + [anon_sym_u64] = ACTIONS(2175), + [anon_sym_i64] = ACTIONS(2175), + [anon_sym_u128] = ACTIONS(2175), + [anon_sym_i128] = ACTIONS(2175), + [anon_sym_isize] = ACTIONS(2175), + [anon_sym_usize] = ACTIONS(2175), + [anon_sym_f32] = ACTIONS(2175), + [anon_sym_f64] = ACTIONS(2175), + [anon_sym_bool] = ACTIONS(2175), + [anon_sym_str] = ACTIONS(2175), + [anon_sym_char] = ACTIONS(2175), + [anon_sym_DASH] = ACTIONS(2173), + [anon_sym_BANG] = ACTIONS(2173), + [anon_sym_AMP] = ACTIONS(2173), + [anon_sym_PIPE] = ACTIONS(2173), + [anon_sym_LT] = ACTIONS(2173), + [anon_sym_DOT_DOT] = ACTIONS(2173), + [anon_sym_COLON_COLON] = ACTIONS(2173), + [anon_sym_POUND] = ACTIONS(2173), + [anon_sym_SQUOTE] = ACTIONS(2175), + [anon_sym_async] = ACTIONS(2175), + [anon_sym_break] = ACTIONS(2175), + [anon_sym_const] = ACTIONS(2175), + [anon_sym_continue] = ACTIONS(2175), + [anon_sym_default] = ACTIONS(2175), + [anon_sym_enum] = ACTIONS(2175), + [anon_sym_fn] = ACTIONS(2175), + [anon_sym_for] = ACTIONS(2175), + [anon_sym_gen] = ACTIONS(2175), + [anon_sym_if] = ACTIONS(2175), + [anon_sym_impl] = ACTIONS(2175), + [anon_sym_let] = ACTIONS(2175), + [anon_sym_loop] = ACTIONS(2175), + [anon_sym_match] = ACTIONS(2175), + [anon_sym_mod] = ACTIONS(2175), + [anon_sym_pub] = ACTIONS(2175), + [anon_sym_return] = ACTIONS(2175), + [anon_sym_static] = ACTIONS(2175), + [anon_sym_struct] = ACTIONS(2175), + [anon_sym_trait] = ACTIONS(2175), + [anon_sym_type] = ACTIONS(2175), + [anon_sym_union] = ACTIONS(2175), + [anon_sym_unsafe] = ACTIONS(2175), + [anon_sym_use] = ACTIONS(2175), + [anon_sym_while] = ACTIONS(2175), + [anon_sym_extern] = ACTIONS(2175), + [anon_sym_safe] = ACTIONS(2175), + [anon_sym_yield] = ACTIONS(2175), + [anon_sym_move] = ACTIONS(2175), + [anon_sym_try] = ACTIONS(2175), + [sym_integer_literal] = ACTIONS(2173), + [aux_sym_string_literal_token1] = ACTIONS(2173), + [sym_char_literal] = ACTIONS(2173), + [anon_sym_true] = ACTIONS(2175), + [anon_sym_false] = ACTIONS(2175), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(2175), + [sym_super] = ACTIONS(2175), + [sym_crate] = ACTIONS(2175), + [sym_metavariable] = ACTIONS(2173), + [sym__raw_string_literal_start] = ACTIONS(2173), + [sym_float_literal] = ACTIONS(2173), }, [STATE(581)] = { [sym_line_comment] = STATE(581), [sym_block_comment] = STATE(581), - [ts_builtin_sym_end] = ACTIONS(2150), - [sym_identifier] = ACTIONS(2152), - [anon_sym_SEMI] = ACTIONS(2150), - [anon_sym_macro_rules_BANG] = ACTIONS(2150), - [anon_sym_LPAREN] = ACTIONS(2150), - [anon_sym_LBRACK] = ACTIONS(2150), - [anon_sym_LBRACE] = ACTIONS(2150), - [anon_sym_RBRACE] = ACTIONS(2150), - [anon_sym_STAR] = ACTIONS(2150), - [anon_sym_u8] = ACTIONS(2152), - [anon_sym_i8] = ACTIONS(2152), - [anon_sym_u16] = ACTIONS(2152), - [anon_sym_i16] = ACTIONS(2152), - [anon_sym_u32] = ACTIONS(2152), - [anon_sym_i32] = ACTIONS(2152), - [anon_sym_u64] = ACTIONS(2152), - [anon_sym_i64] = ACTIONS(2152), - [anon_sym_u128] = ACTIONS(2152), - [anon_sym_i128] = ACTIONS(2152), - [anon_sym_isize] = ACTIONS(2152), - [anon_sym_usize] = ACTIONS(2152), - [anon_sym_f32] = ACTIONS(2152), - [anon_sym_f64] = ACTIONS(2152), - [anon_sym_bool] = ACTIONS(2152), - [anon_sym_str] = ACTIONS(2152), - [anon_sym_char] = ACTIONS(2152), - [anon_sym_DASH] = ACTIONS(2150), - [anon_sym_BANG] = ACTIONS(2150), - [anon_sym_AMP] = ACTIONS(2150), - [anon_sym_PIPE] = ACTIONS(2150), - [anon_sym_LT] = ACTIONS(2150), - [anon_sym_DOT_DOT] = ACTIONS(2150), - [anon_sym_COLON_COLON] = ACTIONS(2150), - [anon_sym_POUND] = ACTIONS(2150), - [anon_sym_SQUOTE] = ACTIONS(2152), - [anon_sym_async] = ACTIONS(2152), - [anon_sym_break] = ACTIONS(2152), - [anon_sym_const] = ACTIONS(2152), - [anon_sym_continue] = ACTIONS(2152), - [anon_sym_default] = ACTIONS(2152), - [anon_sym_enum] = ACTIONS(2152), - [anon_sym_fn] = ACTIONS(2152), - [anon_sym_for] = ACTIONS(2152), - [anon_sym_gen] = ACTIONS(2152), - [anon_sym_if] = ACTIONS(2152), - [anon_sym_impl] = ACTIONS(2152), - [anon_sym_let] = ACTIONS(2152), - [anon_sym_loop] = ACTIONS(2152), - [anon_sym_match] = ACTIONS(2152), - [anon_sym_mod] = ACTIONS(2152), - [anon_sym_pub] = ACTIONS(2152), - [anon_sym_return] = ACTIONS(2152), - [anon_sym_static] = ACTIONS(2152), - [anon_sym_struct] = ACTIONS(2152), - [anon_sym_trait] = ACTIONS(2152), - [anon_sym_type] = ACTIONS(2152), - [anon_sym_union] = ACTIONS(2152), - [anon_sym_unsafe] = ACTIONS(2152), - [anon_sym_use] = ACTIONS(2152), - [anon_sym_while] = ACTIONS(2152), - [anon_sym_extern] = ACTIONS(2152), - [anon_sym_yield] = ACTIONS(2152), - [anon_sym_move] = ACTIONS(2152), - [anon_sym_try] = ACTIONS(2152), - [sym_integer_literal] = ACTIONS(2150), - [aux_sym_string_literal_token1] = ACTIONS(2150), - [sym_char_literal] = ACTIONS(2150), - [anon_sym_true] = ACTIONS(2152), - [anon_sym_false] = ACTIONS(2152), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2152), - [sym_super] = ACTIONS(2152), - [sym_crate] = ACTIONS(2152), - [sym_metavariable] = ACTIONS(2150), - [sym__raw_string_literal_start] = ACTIONS(2150), - [sym_float_literal] = ACTIONS(2150), + [ts_builtin_sym_end] = ACTIONS(1402), + [sym_identifier] = ACTIONS(1404), + [anon_sym_SEMI] = ACTIONS(1402), + [anon_sym_macro_rules_BANG] = ACTIONS(1402), + [anon_sym_LPAREN] = ACTIONS(1402), + [anon_sym_LBRACK] = ACTIONS(1402), + [anon_sym_LBRACE] = ACTIONS(1402), + [anon_sym_RBRACE] = ACTIONS(1402), + [anon_sym_STAR] = ACTIONS(1402), + [anon_sym_u8] = ACTIONS(1404), + [anon_sym_i8] = ACTIONS(1404), + [anon_sym_u16] = ACTIONS(1404), + [anon_sym_i16] = ACTIONS(1404), + [anon_sym_u32] = ACTIONS(1404), + [anon_sym_i32] = ACTIONS(1404), + [anon_sym_u64] = ACTIONS(1404), + [anon_sym_i64] = ACTIONS(1404), + [anon_sym_u128] = ACTIONS(1404), + [anon_sym_i128] = ACTIONS(1404), + [anon_sym_isize] = ACTIONS(1404), + [anon_sym_usize] = ACTIONS(1404), + [anon_sym_f32] = ACTIONS(1404), + [anon_sym_f64] = ACTIONS(1404), + [anon_sym_bool] = ACTIONS(1404), + [anon_sym_str] = ACTIONS(1404), + [anon_sym_char] = ACTIONS(1404), + [anon_sym_DASH] = ACTIONS(1402), + [anon_sym_BANG] = ACTIONS(1402), + [anon_sym_AMP] = ACTIONS(1402), + [anon_sym_PIPE] = ACTIONS(1402), + [anon_sym_LT] = ACTIONS(1402), + [anon_sym_DOT_DOT] = ACTIONS(1402), + [anon_sym_COLON_COLON] = ACTIONS(1402), + [anon_sym_POUND] = ACTIONS(1402), + [anon_sym_SQUOTE] = ACTIONS(1404), + [anon_sym_async] = ACTIONS(1404), + [anon_sym_break] = ACTIONS(1404), + [anon_sym_const] = ACTIONS(1404), + [anon_sym_continue] = ACTIONS(1404), + [anon_sym_default] = ACTIONS(1404), + [anon_sym_enum] = ACTIONS(1404), + [anon_sym_fn] = ACTIONS(1404), + [anon_sym_for] = ACTIONS(1404), + [anon_sym_gen] = ACTIONS(1404), + [anon_sym_if] = ACTIONS(1404), + [anon_sym_impl] = ACTIONS(1404), + [anon_sym_let] = ACTIONS(1404), + [anon_sym_loop] = ACTIONS(1404), + [anon_sym_match] = ACTIONS(1404), + [anon_sym_mod] = ACTIONS(1404), + [anon_sym_pub] = ACTIONS(1404), + [anon_sym_return] = ACTIONS(1404), + [anon_sym_static] = ACTIONS(1404), + [anon_sym_struct] = ACTIONS(1404), + [anon_sym_trait] = ACTIONS(1404), + [anon_sym_type] = ACTIONS(1404), + [anon_sym_union] = ACTIONS(1404), + [anon_sym_unsafe] = ACTIONS(1404), + [anon_sym_use] = ACTIONS(1404), + [anon_sym_while] = ACTIONS(1404), + [anon_sym_extern] = ACTIONS(1404), + [anon_sym_safe] = ACTIONS(1404), + [anon_sym_yield] = ACTIONS(1404), + [anon_sym_move] = ACTIONS(1404), + [anon_sym_try] = ACTIONS(1404), + [sym_integer_literal] = ACTIONS(1402), + [aux_sym_string_literal_token1] = ACTIONS(1402), + [sym_char_literal] = ACTIONS(1402), + [anon_sym_true] = ACTIONS(1404), + [anon_sym_false] = ACTIONS(1404), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1404), + [sym_super] = ACTIONS(1404), + [sym_crate] = ACTIONS(1404), + [sym_metavariable] = ACTIONS(1402), + [sym__raw_string_literal_start] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1402), }, [STATE(582)] = { [sym_line_comment] = STATE(582), [sym_block_comment] = STATE(582), - [ts_builtin_sym_end] = ACTIONS(2154), - [sym_identifier] = ACTIONS(2156), - [anon_sym_SEMI] = ACTIONS(2154), - [anon_sym_macro_rules_BANG] = ACTIONS(2154), - [anon_sym_LPAREN] = ACTIONS(2154), - [anon_sym_LBRACK] = ACTIONS(2154), - [anon_sym_LBRACE] = ACTIONS(2154), - [anon_sym_RBRACE] = ACTIONS(2154), - [anon_sym_STAR] = ACTIONS(2154), - [anon_sym_u8] = ACTIONS(2156), - [anon_sym_i8] = ACTIONS(2156), - [anon_sym_u16] = ACTIONS(2156), - [anon_sym_i16] = ACTIONS(2156), - [anon_sym_u32] = ACTIONS(2156), - [anon_sym_i32] = ACTIONS(2156), - [anon_sym_u64] = ACTIONS(2156), - [anon_sym_i64] = ACTIONS(2156), - [anon_sym_u128] = ACTIONS(2156), - [anon_sym_i128] = ACTIONS(2156), - [anon_sym_isize] = ACTIONS(2156), - [anon_sym_usize] = ACTIONS(2156), - [anon_sym_f32] = ACTIONS(2156), - [anon_sym_f64] = ACTIONS(2156), - [anon_sym_bool] = ACTIONS(2156), - [anon_sym_str] = ACTIONS(2156), - [anon_sym_char] = ACTIONS(2156), - [anon_sym_DASH] = ACTIONS(2154), - [anon_sym_BANG] = ACTIONS(2154), - [anon_sym_AMP] = ACTIONS(2154), - [anon_sym_PIPE] = ACTIONS(2154), - [anon_sym_LT] = ACTIONS(2154), - [anon_sym_DOT_DOT] = ACTIONS(2154), - [anon_sym_COLON_COLON] = ACTIONS(2154), - [anon_sym_POUND] = ACTIONS(2154), - [anon_sym_SQUOTE] = ACTIONS(2156), - [anon_sym_async] = ACTIONS(2156), - [anon_sym_break] = ACTIONS(2156), - [anon_sym_const] = ACTIONS(2156), - [anon_sym_continue] = ACTIONS(2156), - [anon_sym_default] = ACTIONS(2156), - [anon_sym_enum] = ACTIONS(2156), - [anon_sym_fn] = ACTIONS(2156), - [anon_sym_for] = ACTIONS(2156), - [anon_sym_gen] = ACTIONS(2156), - [anon_sym_if] = ACTIONS(2156), - [anon_sym_impl] = ACTIONS(2156), - [anon_sym_let] = ACTIONS(2156), - [anon_sym_loop] = ACTIONS(2156), - [anon_sym_match] = ACTIONS(2156), - [anon_sym_mod] = ACTIONS(2156), - [anon_sym_pub] = ACTIONS(2156), - [anon_sym_return] = ACTIONS(2156), - [anon_sym_static] = ACTIONS(2156), - [anon_sym_struct] = ACTIONS(2156), - [anon_sym_trait] = ACTIONS(2156), - [anon_sym_type] = ACTIONS(2156), - [anon_sym_union] = ACTIONS(2156), - [anon_sym_unsafe] = ACTIONS(2156), - [anon_sym_use] = ACTIONS(2156), - [anon_sym_while] = ACTIONS(2156), - [anon_sym_extern] = ACTIONS(2156), - [anon_sym_yield] = ACTIONS(2156), - [anon_sym_move] = ACTIONS(2156), - [anon_sym_try] = ACTIONS(2156), - [sym_integer_literal] = ACTIONS(2154), - [aux_sym_string_literal_token1] = ACTIONS(2154), - [sym_char_literal] = ACTIONS(2154), - [anon_sym_true] = ACTIONS(2156), - [anon_sym_false] = ACTIONS(2156), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2156), - [sym_super] = ACTIONS(2156), - [sym_crate] = ACTIONS(2156), - [sym_metavariable] = ACTIONS(2154), - [sym__raw_string_literal_start] = ACTIONS(2154), - [sym_float_literal] = ACTIONS(2154), + [ts_builtin_sym_end] = ACTIONS(2177), + [sym_identifier] = ACTIONS(2179), + [anon_sym_SEMI] = ACTIONS(2177), + [anon_sym_macro_rules_BANG] = ACTIONS(2177), + [anon_sym_LPAREN] = ACTIONS(2177), + [anon_sym_LBRACK] = ACTIONS(2177), + [anon_sym_LBRACE] = ACTIONS(2177), + [anon_sym_RBRACE] = ACTIONS(2177), + [anon_sym_STAR] = ACTIONS(2177), + [anon_sym_u8] = ACTIONS(2179), + [anon_sym_i8] = ACTIONS(2179), + [anon_sym_u16] = ACTIONS(2179), + [anon_sym_i16] = ACTIONS(2179), + [anon_sym_u32] = ACTIONS(2179), + [anon_sym_i32] = ACTIONS(2179), + [anon_sym_u64] = ACTIONS(2179), + [anon_sym_i64] = ACTIONS(2179), + [anon_sym_u128] = ACTIONS(2179), + [anon_sym_i128] = ACTIONS(2179), + [anon_sym_isize] = ACTIONS(2179), + [anon_sym_usize] = ACTIONS(2179), + [anon_sym_f32] = ACTIONS(2179), + [anon_sym_f64] = ACTIONS(2179), + [anon_sym_bool] = ACTIONS(2179), + [anon_sym_str] = ACTIONS(2179), + [anon_sym_char] = ACTIONS(2179), + [anon_sym_DASH] = ACTIONS(2177), + [anon_sym_BANG] = ACTIONS(2177), + [anon_sym_AMP] = ACTIONS(2177), + [anon_sym_PIPE] = ACTIONS(2177), + [anon_sym_LT] = ACTIONS(2177), + [anon_sym_DOT_DOT] = ACTIONS(2177), + [anon_sym_COLON_COLON] = ACTIONS(2177), + [anon_sym_POUND] = ACTIONS(2177), + [anon_sym_SQUOTE] = ACTIONS(2179), + [anon_sym_async] = ACTIONS(2179), + [anon_sym_break] = ACTIONS(2179), + [anon_sym_const] = ACTIONS(2179), + [anon_sym_continue] = ACTIONS(2179), + [anon_sym_default] = ACTIONS(2179), + [anon_sym_enum] = ACTIONS(2179), + [anon_sym_fn] = ACTIONS(2179), + [anon_sym_for] = ACTIONS(2179), + [anon_sym_gen] = ACTIONS(2179), + [anon_sym_if] = ACTIONS(2179), + [anon_sym_impl] = ACTIONS(2179), + [anon_sym_let] = ACTIONS(2179), + [anon_sym_loop] = ACTIONS(2179), + [anon_sym_match] = ACTIONS(2179), + [anon_sym_mod] = ACTIONS(2179), + [anon_sym_pub] = ACTIONS(2179), + [anon_sym_return] = ACTIONS(2179), + [anon_sym_static] = ACTIONS(2179), + [anon_sym_struct] = ACTIONS(2179), + [anon_sym_trait] = ACTIONS(2179), + [anon_sym_type] = ACTIONS(2179), + [anon_sym_union] = ACTIONS(2179), + [anon_sym_unsafe] = ACTIONS(2179), + [anon_sym_use] = ACTIONS(2179), + [anon_sym_while] = ACTIONS(2179), + [anon_sym_extern] = ACTIONS(2179), + [anon_sym_safe] = ACTIONS(2179), + [anon_sym_yield] = ACTIONS(2179), + [anon_sym_move] = ACTIONS(2179), + [anon_sym_try] = ACTIONS(2179), + [sym_integer_literal] = ACTIONS(2177), + [aux_sym_string_literal_token1] = ACTIONS(2177), + [sym_char_literal] = ACTIONS(2177), + [anon_sym_true] = ACTIONS(2179), + [anon_sym_false] = ACTIONS(2179), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(2179), + [sym_super] = ACTIONS(2179), + [sym_crate] = ACTIONS(2179), + [sym_metavariable] = ACTIONS(2177), + [sym__raw_string_literal_start] = ACTIONS(2177), + [sym_float_literal] = ACTIONS(2177), }, [STATE(583)] = { [sym_line_comment] = STATE(583), [sym_block_comment] = STATE(583), - [ts_builtin_sym_end] = ACTIONS(2158), - [sym_identifier] = ACTIONS(2160), - [anon_sym_SEMI] = ACTIONS(2158), - [anon_sym_macro_rules_BANG] = ACTIONS(2158), - [anon_sym_LPAREN] = ACTIONS(2158), - [anon_sym_LBRACK] = ACTIONS(2158), - [anon_sym_LBRACE] = ACTIONS(2158), - [anon_sym_RBRACE] = ACTIONS(2158), - [anon_sym_STAR] = ACTIONS(2158), - [anon_sym_u8] = ACTIONS(2160), - [anon_sym_i8] = ACTIONS(2160), - [anon_sym_u16] = ACTIONS(2160), - [anon_sym_i16] = ACTIONS(2160), - [anon_sym_u32] = ACTIONS(2160), - [anon_sym_i32] = ACTIONS(2160), - [anon_sym_u64] = ACTIONS(2160), - [anon_sym_i64] = ACTIONS(2160), - [anon_sym_u128] = ACTIONS(2160), - [anon_sym_i128] = ACTIONS(2160), - [anon_sym_isize] = ACTIONS(2160), - [anon_sym_usize] = ACTIONS(2160), - [anon_sym_f32] = ACTIONS(2160), - [anon_sym_f64] = ACTIONS(2160), - [anon_sym_bool] = ACTIONS(2160), - [anon_sym_str] = ACTIONS(2160), - [anon_sym_char] = ACTIONS(2160), - [anon_sym_DASH] = ACTIONS(2158), - [anon_sym_BANG] = ACTIONS(2158), - [anon_sym_AMP] = ACTIONS(2158), - [anon_sym_PIPE] = ACTIONS(2158), - [anon_sym_LT] = ACTIONS(2158), - [anon_sym_DOT_DOT] = ACTIONS(2158), - [anon_sym_COLON_COLON] = ACTIONS(2158), - [anon_sym_POUND] = ACTIONS(2158), - [anon_sym_SQUOTE] = ACTIONS(2160), - [anon_sym_async] = ACTIONS(2160), - [anon_sym_break] = ACTIONS(2160), - [anon_sym_const] = ACTIONS(2160), - [anon_sym_continue] = ACTIONS(2160), - [anon_sym_default] = ACTIONS(2160), - [anon_sym_enum] = ACTIONS(2160), - [anon_sym_fn] = ACTIONS(2160), - [anon_sym_for] = ACTIONS(2160), - [anon_sym_gen] = ACTIONS(2160), - [anon_sym_if] = ACTIONS(2160), - [anon_sym_impl] = ACTIONS(2160), - [anon_sym_let] = ACTIONS(2160), - [anon_sym_loop] = ACTIONS(2160), - [anon_sym_match] = ACTIONS(2160), - [anon_sym_mod] = ACTIONS(2160), - [anon_sym_pub] = ACTIONS(2160), - [anon_sym_return] = ACTIONS(2160), - [anon_sym_static] = ACTIONS(2160), - [anon_sym_struct] = ACTIONS(2160), - [anon_sym_trait] = ACTIONS(2160), - [anon_sym_type] = ACTIONS(2160), - [anon_sym_union] = ACTIONS(2160), - [anon_sym_unsafe] = ACTIONS(2160), - [anon_sym_use] = ACTIONS(2160), - [anon_sym_while] = ACTIONS(2160), - [anon_sym_extern] = ACTIONS(2160), - [anon_sym_yield] = ACTIONS(2160), - [anon_sym_move] = ACTIONS(2160), - [anon_sym_try] = ACTIONS(2160), - [sym_integer_literal] = ACTIONS(2158), - [aux_sym_string_literal_token1] = ACTIONS(2158), - [sym_char_literal] = ACTIONS(2158), - [anon_sym_true] = ACTIONS(2160), - [anon_sym_false] = ACTIONS(2160), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2160), - [sym_super] = ACTIONS(2160), - [sym_crate] = ACTIONS(2160), - [sym_metavariable] = ACTIONS(2158), - [sym__raw_string_literal_start] = ACTIONS(2158), - [sym_float_literal] = ACTIONS(2158), + [ts_builtin_sym_end] = ACTIONS(2181), + [sym_identifier] = ACTIONS(2183), + [anon_sym_SEMI] = ACTIONS(2181), + [anon_sym_macro_rules_BANG] = ACTIONS(2181), + [anon_sym_LPAREN] = ACTIONS(2181), + [anon_sym_LBRACK] = ACTIONS(2181), + [anon_sym_LBRACE] = ACTIONS(2181), + [anon_sym_RBRACE] = ACTIONS(2181), + [anon_sym_STAR] = ACTIONS(2181), + [anon_sym_u8] = ACTIONS(2183), + [anon_sym_i8] = ACTIONS(2183), + [anon_sym_u16] = ACTIONS(2183), + [anon_sym_i16] = ACTIONS(2183), + [anon_sym_u32] = ACTIONS(2183), + [anon_sym_i32] = ACTIONS(2183), + [anon_sym_u64] = ACTIONS(2183), + [anon_sym_i64] = ACTIONS(2183), + [anon_sym_u128] = ACTIONS(2183), + [anon_sym_i128] = ACTIONS(2183), + [anon_sym_isize] = ACTIONS(2183), + [anon_sym_usize] = ACTIONS(2183), + [anon_sym_f32] = ACTIONS(2183), + [anon_sym_f64] = ACTIONS(2183), + [anon_sym_bool] = ACTIONS(2183), + [anon_sym_str] = ACTIONS(2183), + [anon_sym_char] = ACTIONS(2183), + [anon_sym_DASH] = ACTIONS(2181), + [anon_sym_BANG] = ACTIONS(2181), + [anon_sym_AMP] = ACTIONS(2181), + [anon_sym_PIPE] = ACTIONS(2181), + [anon_sym_LT] = ACTIONS(2181), + [anon_sym_DOT_DOT] = ACTIONS(2181), + [anon_sym_COLON_COLON] = ACTIONS(2181), + [anon_sym_POUND] = ACTIONS(2181), + [anon_sym_SQUOTE] = ACTIONS(2183), + [anon_sym_async] = ACTIONS(2183), + [anon_sym_break] = ACTIONS(2183), + [anon_sym_const] = ACTIONS(2183), + [anon_sym_continue] = ACTIONS(2183), + [anon_sym_default] = ACTIONS(2183), + [anon_sym_enum] = ACTIONS(2183), + [anon_sym_fn] = ACTIONS(2183), + [anon_sym_for] = ACTIONS(2183), + [anon_sym_gen] = ACTIONS(2183), + [anon_sym_if] = ACTIONS(2183), + [anon_sym_impl] = ACTIONS(2183), + [anon_sym_let] = ACTIONS(2183), + [anon_sym_loop] = ACTIONS(2183), + [anon_sym_match] = ACTIONS(2183), + [anon_sym_mod] = ACTIONS(2183), + [anon_sym_pub] = ACTIONS(2183), + [anon_sym_return] = ACTIONS(2183), + [anon_sym_static] = ACTIONS(2183), + [anon_sym_struct] = ACTIONS(2183), + [anon_sym_trait] = ACTIONS(2183), + [anon_sym_type] = ACTIONS(2183), + [anon_sym_union] = ACTIONS(2183), + [anon_sym_unsafe] = ACTIONS(2183), + [anon_sym_use] = ACTIONS(2183), + [anon_sym_while] = ACTIONS(2183), + [anon_sym_extern] = ACTIONS(2183), + [anon_sym_safe] = ACTIONS(2183), + [anon_sym_yield] = ACTIONS(2183), + [anon_sym_move] = ACTIONS(2183), + [anon_sym_try] = ACTIONS(2183), + [sym_integer_literal] = ACTIONS(2181), + [aux_sym_string_literal_token1] = ACTIONS(2181), + [sym_char_literal] = ACTIONS(2181), + [anon_sym_true] = ACTIONS(2183), + [anon_sym_false] = ACTIONS(2183), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(2183), + [sym_super] = ACTIONS(2183), + [sym_crate] = ACTIONS(2183), + [sym_metavariable] = ACTIONS(2181), + [sym__raw_string_literal_start] = ACTIONS(2181), + [sym_float_literal] = ACTIONS(2181), }, [STATE(584)] = { [sym_line_comment] = STATE(584), [sym_block_comment] = STATE(584), - [ts_builtin_sym_end] = ACTIONS(2162), - [sym_identifier] = ACTIONS(2164), - [anon_sym_SEMI] = ACTIONS(2162), - [anon_sym_macro_rules_BANG] = ACTIONS(2162), - [anon_sym_LPAREN] = ACTIONS(2162), - [anon_sym_LBRACK] = ACTIONS(2162), - [anon_sym_LBRACE] = ACTIONS(2162), - [anon_sym_RBRACE] = ACTIONS(2162), - [anon_sym_STAR] = ACTIONS(2162), - [anon_sym_u8] = ACTIONS(2164), - [anon_sym_i8] = ACTIONS(2164), - [anon_sym_u16] = ACTIONS(2164), - [anon_sym_i16] = ACTIONS(2164), - [anon_sym_u32] = ACTIONS(2164), - [anon_sym_i32] = ACTIONS(2164), - [anon_sym_u64] = ACTIONS(2164), - [anon_sym_i64] = ACTIONS(2164), - [anon_sym_u128] = ACTIONS(2164), - [anon_sym_i128] = ACTIONS(2164), - [anon_sym_isize] = ACTIONS(2164), - [anon_sym_usize] = ACTIONS(2164), - [anon_sym_f32] = ACTIONS(2164), - [anon_sym_f64] = ACTIONS(2164), - [anon_sym_bool] = ACTIONS(2164), - [anon_sym_str] = ACTIONS(2164), - [anon_sym_char] = ACTIONS(2164), - [anon_sym_DASH] = ACTIONS(2162), - [anon_sym_BANG] = ACTIONS(2162), - [anon_sym_AMP] = ACTIONS(2162), - [anon_sym_PIPE] = ACTIONS(2162), - [anon_sym_LT] = ACTIONS(2162), - [anon_sym_DOT_DOT] = ACTIONS(2162), - [anon_sym_COLON_COLON] = ACTIONS(2162), - [anon_sym_POUND] = ACTIONS(2162), - [anon_sym_SQUOTE] = ACTIONS(2164), - [anon_sym_async] = ACTIONS(2164), - [anon_sym_break] = ACTIONS(2164), - [anon_sym_const] = ACTIONS(2164), - [anon_sym_continue] = ACTIONS(2164), - [anon_sym_default] = ACTIONS(2164), - [anon_sym_enum] = ACTIONS(2164), - [anon_sym_fn] = ACTIONS(2164), - [anon_sym_for] = ACTIONS(2164), - [anon_sym_gen] = ACTIONS(2164), - [anon_sym_if] = ACTIONS(2164), - [anon_sym_impl] = ACTIONS(2164), - [anon_sym_let] = ACTIONS(2164), - [anon_sym_loop] = ACTIONS(2164), - [anon_sym_match] = ACTIONS(2164), - [anon_sym_mod] = ACTIONS(2164), - [anon_sym_pub] = ACTIONS(2164), - [anon_sym_return] = ACTIONS(2164), - [anon_sym_static] = ACTIONS(2164), - [anon_sym_struct] = ACTIONS(2164), - [anon_sym_trait] = ACTIONS(2164), - [anon_sym_type] = ACTIONS(2164), - [anon_sym_union] = ACTIONS(2164), - [anon_sym_unsafe] = ACTIONS(2164), - [anon_sym_use] = ACTIONS(2164), - [anon_sym_while] = ACTIONS(2164), - [anon_sym_extern] = ACTIONS(2164), - [anon_sym_yield] = ACTIONS(2164), - [anon_sym_move] = ACTIONS(2164), - [anon_sym_try] = ACTIONS(2164), - [sym_integer_literal] = ACTIONS(2162), - [aux_sym_string_literal_token1] = ACTIONS(2162), - [sym_char_literal] = ACTIONS(2162), - [anon_sym_true] = ACTIONS(2164), - [anon_sym_false] = ACTIONS(2164), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2164), - [sym_super] = ACTIONS(2164), - [sym_crate] = ACTIONS(2164), - [sym_metavariable] = ACTIONS(2162), - [sym__raw_string_literal_start] = ACTIONS(2162), - [sym_float_literal] = ACTIONS(2162), + [ts_builtin_sym_end] = ACTIONS(2185), + [sym_identifier] = ACTIONS(2187), + [anon_sym_SEMI] = ACTIONS(2185), + [anon_sym_macro_rules_BANG] = ACTIONS(2185), + [anon_sym_LPAREN] = ACTIONS(2185), + [anon_sym_LBRACK] = ACTIONS(2185), + [anon_sym_LBRACE] = ACTIONS(2185), + [anon_sym_RBRACE] = ACTIONS(2185), + [anon_sym_STAR] = ACTIONS(2185), + [anon_sym_u8] = ACTIONS(2187), + [anon_sym_i8] = ACTIONS(2187), + [anon_sym_u16] = ACTIONS(2187), + [anon_sym_i16] = ACTIONS(2187), + [anon_sym_u32] = ACTIONS(2187), + [anon_sym_i32] = ACTIONS(2187), + [anon_sym_u64] = ACTIONS(2187), + [anon_sym_i64] = ACTIONS(2187), + [anon_sym_u128] = ACTIONS(2187), + [anon_sym_i128] = ACTIONS(2187), + [anon_sym_isize] = ACTIONS(2187), + [anon_sym_usize] = ACTIONS(2187), + [anon_sym_f32] = ACTIONS(2187), + [anon_sym_f64] = ACTIONS(2187), + [anon_sym_bool] = ACTIONS(2187), + [anon_sym_str] = ACTIONS(2187), + [anon_sym_char] = ACTIONS(2187), + [anon_sym_DASH] = ACTIONS(2185), + [anon_sym_BANG] = ACTIONS(2185), + [anon_sym_AMP] = ACTIONS(2185), + [anon_sym_PIPE] = ACTIONS(2185), + [anon_sym_LT] = ACTIONS(2185), + [anon_sym_DOT_DOT] = ACTIONS(2185), + [anon_sym_COLON_COLON] = ACTIONS(2185), + [anon_sym_POUND] = ACTIONS(2185), + [anon_sym_SQUOTE] = ACTIONS(2187), + [anon_sym_async] = ACTIONS(2187), + [anon_sym_break] = ACTIONS(2187), + [anon_sym_const] = ACTIONS(2187), + [anon_sym_continue] = ACTIONS(2187), + [anon_sym_default] = ACTIONS(2187), + [anon_sym_enum] = ACTIONS(2187), + [anon_sym_fn] = ACTIONS(2187), + [anon_sym_for] = ACTIONS(2187), + [anon_sym_gen] = ACTIONS(2187), + [anon_sym_if] = ACTIONS(2187), + [anon_sym_impl] = ACTIONS(2187), + [anon_sym_let] = ACTIONS(2187), + [anon_sym_loop] = ACTIONS(2187), + [anon_sym_match] = ACTIONS(2187), + [anon_sym_mod] = ACTIONS(2187), + [anon_sym_pub] = ACTIONS(2187), + [anon_sym_return] = ACTIONS(2187), + [anon_sym_static] = ACTIONS(2187), + [anon_sym_struct] = ACTIONS(2187), + [anon_sym_trait] = ACTIONS(2187), + [anon_sym_type] = ACTIONS(2187), + [anon_sym_union] = ACTIONS(2187), + [anon_sym_unsafe] = ACTIONS(2187), + [anon_sym_use] = ACTIONS(2187), + [anon_sym_while] = ACTIONS(2187), + [anon_sym_extern] = ACTIONS(2187), + [anon_sym_safe] = ACTIONS(2187), + [anon_sym_yield] = ACTIONS(2187), + [anon_sym_move] = ACTIONS(2187), + [anon_sym_try] = ACTIONS(2187), + [sym_integer_literal] = ACTIONS(2185), + [aux_sym_string_literal_token1] = ACTIONS(2185), + [sym_char_literal] = ACTIONS(2185), + [anon_sym_true] = ACTIONS(2187), + [anon_sym_false] = ACTIONS(2187), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(2187), + [sym_super] = ACTIONS(2187), + [sym_crate] = ACTIONS(2187), + [sym_metavariable] = ACTIONS(2185), + [sym__raw_string_literal_start] = ACTIONS(2185), + [sym_float_literal] = ACTIONS(2185), }, [STATE(585)] = { [sym_line_comment] = STATE(585), [sym_block_comment] = STATE(585), - [ts_builtin_sym_end] = ACTIONS(2166), - [sym_identifier] = ACTIONS(2168), - [anon_sym_SEMI] = ACTIONS(2166), - [anon_sym_macro_rules_BANG] = ACTIONS(2166), - [anon_sym_LPAREN] = ACTIONS(2166), - [anon_sym_LBRACK] = ACTIONS(2166), - [anon_sym_LBRACE] = ACTIONS(2166), - [anon_sym_RBRACE] = ACTIONS(2166), - [anon_sym_STAR] = ACTIONS(2166), - [anon_sym_u8] = ACTIONS(2168), - [anon_sym_i8] = ACTIONS(2168), - [anon_sym_u16] = ACTIONS(2168), - [anon_sym_i16] = ACTIONS(2168), - [anon_sym_u32] = ACTIONS(2168), - [anon_sym_i32] = ACTIONS(2168), - [anon_sym_u64] = ACTIONS(2168), - [anon_sym_i64] = ACTIONS(2168), - [anon_sym_u128] = ACTIONS(2168), - [anon_sym_i128] = ACTIONS(2168), - [anon_sym_isize] = ACTIONS(2168), - [anon_sym_usize] = ACTIONS(2168), - [anon_sym_f32] = ACTIONS(2168), - [anon_sym_f64] = ACTIONS(2168), - [anon_sym_bool] = ACTIONS(2168), - [anon_sym_str] = ACTIONS(2168), - [anon_sym_char] = ACTIONS(2168), - [anon_sym_DASH] = ACTIONS(2166), - [anon_sym_BANG] = ACTIONS(2166), - [anon_sym_AMP] = ACTIONS(2166), - [anon_sym_PIPE] = ACTIONS(2166), - [anon_sym_LT] = ACTIONS(2166), - [anon_sym_DOT_DOT] = ACTIONS(2166), - [anon_sym_COLON_COLON] = ACTIONS(2166), - [anon_sym_POUND] = ACTIONS(2166), - [anon_sym_SQUOTE] = ACTIONS(2168), - [anon_sym_async] = ACTIONS(2168), - [anon_sym_break] = ACTIONS(2168), - [anon_sym_const] = ACTIONS(2168), - [anon_sym_continue] = ACTIONS(2168), - [anon_sym_default] = ACTIONS(2168), - [anon_sym_enum] = ACTIONS(2168), - [anon_sym_fn] = ACTIONS(2168), - [anon_sym_for] = ACTIONS(2168), - [anon_sym_gen] = ACTIONS(2168), - [anon_sym_if] = ACTIONS(2168), - [anon_sym_impl] = ACTIONS(2168), - [anon_sym_let] = ACTIONS(2168), - [anon_sym_loop] = ACTIONS(2168), - [anon_sym_match] = ACTIONS(2168), - [anon_sym_mod] = ACTIONS(2168), - [anon_sym_pub] = ACTIONS(2168), - [anon_sym_return] = ACTIONS(2168), - [anon_sym_static] = ACTIONS(2168), - [anon_sym_struct] = ACTIONS(2168), - [anon_sym_trait] = ACTIONS(2168), - [anon_sym_type] = ACTIONS(2168), - [anon_sym_union] = ACTIONS(2168), - [anon_sym_unsafe] = ACTIONS(2168), - [anon_sym_use] = ACTIONS(2168), - [anon_sym_while] = ACTIONS(2168), - [anon_sym_extern] = ACTIONS(2168), - [anon_sym_yield] = ACTIONS(2168), - [anon_sym_move] = ACTIONS(2168), - [anon_sym_try] = ACTIONS(2168), - [sym_integer_literal] = ACTIONS(2166), - [aux_sym_string_literal_token1] = ACTIONS(2166), - [sym_char_literal] = ACTIONS(2166), - [anon_sym_true] = ACTIONS(2168), - [anon_sym_false] = ACTIONS(2168), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2168), - [sym_super] = ACTIONS(2168), - [sym_crate] = ACTIONS(2168), - [sym_metavariable] = ACTIONS(2166), - [sym__raw_string_literal_start] = ACTIONS(2166), - [sym_float_literal] = ACTIONS(2166), + [ts_builtin_sym_end] = ACTIONS(2189), + [sym_identifier] = ACTIONS(2191), + [anon_sym_SEMI] = ACTIONS(2189), + [anon_sym_macro_rules_BANG] = ACTIONS(2189), + [anon_sym_LPAREN] = ACTIONS(2189), + [anon_sym_LBRACK] = ACTIONS(2189), + [anon_sym_LBRACE] = ACTIONS(2189), + [anon_sym_RBRACE] = ACTIONS(2189), + [anon_sym_STAR] = ACTIONS(2189), + [anon_sym_u8] = ACTIONS(2191), + [anon_sym_i8] = ACTIONS(2191), + [anon_sym_u16] = ACTIONS(2191), + [anon_sym_i16] = ACTIONS(2191), + [anon_sym_u32] = ACTIONS(2191), + [anon_sym_i32] = ACTIONS(2191), + [anon_sym_u64] = ACTIONS(2191), + [anon_sym_i64] = ACTIONS(2191), + [anon_sym_u128] = ACTIONS(2191), + [anon_sym_i128] = ACTIONS(2191), + [anon_sym_isize] = ACTIONS(2191), + [anon_sym_usize] = ACTIONS(2191), + [anon_sym_f32] = ACTIONS(2191), + [anon_sym_f64] = ACTIONS(2191), + [anon_sym_bool] = ACTIONS(2191), + [anon_sym_str] = ACTIONS(2191), + [anon_sym_char] = ACTIONS(2191), + [anon_sym_DASH] = ACTIONS(2189), + [anon_sym_BANG] = ACTIONS(2189), + [anon_sym_AMP] = ACTIONS(2189), + [anon_sym_PIPE] = ACTIONS(2189), + [anon_sym_LT] = ACTIONS(2189), + [anon_sym_DOT_DOT] = ACTIONS(2189), + [anon_sym_COLON_COLON] = ACTIONS(2189), + [anon_sym_POUND] = ACTIONS(2189), + [anon_sym_SQUOTE] = ACTIONS(2191), + [anon_sym_async] = ACTIONS(2191), + [anon_sym_break] = ACTIONS(2191), + [anon_sym_const] = ACTIONS(2191), + [anon_sym_continue] = ACTIONS(2191), + [anon_sym_default] = ACTIONS(2191), + [anon_sym_enum] = ACTIONS(2191), + [anon_sym_fn] = ACTIONS(2191), + [anon_sym_for] = ACTIONS(2191), + [anon_sym_gen] = ACTIONS(2191), + [anon_sym_if] = ACTIONS(2191), + [anon_sym_impl] = ACTIONS(2191), + [anon_sym_let] = ACTIONS(2191), + [anon_sym_loop] = ACTIONS(2191), + [anon_sym_match] = ACTIONS(2191), + [anon_sym_mod] = ACTIONS(2191), + [anon_sym_pub] = ACTIONS(2191), + [anon_sym_return] = ACTIONS(2191), + [anon_sym_static] = ACTIONS(2191), + [anon_sym_struct] = ACTIONS(2191), + [anon_sym_trait] = ACTIONS(2191), + [anon_sym_type] = ACTIONS(2191), + [anon_sym_union] = ACTIONS(2191), + [anon_sym_unsafe] = ACTIONS(2191), + [anon_sym_use] = ACTIONS(2191), + [anon_sym_while] = ACTIONS(2191), + [anon_sym_extern] = ACTIONS(2191), + [anon_sym_safe] = ACTIONS(2191), + [anon_sym_yield] = ACTIONS(2191), + [anon_sym_move] = ACTIONS(2191), + [anon_sym_try] = ACTIONS(2191), + [sym_integer_literal] = ACTIONS(2189), + [aux_sym_string_literal_token1] = ACTIONS(2189), + [sym_char_literal] = ACTIONS(2189), + [anon_sym_true] = ACTIONS(2191), + [anon_sym_false] = ACTIONS(2191), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(2191), + [sym_super] = ACTIONS(2191), + [sym_crate] = ACTIONS(2191), + [sym_metavariable] = ACTIONS(2189), + [sym__raw_string_literal_start] = ACTIONS(2189), + [sym_float_literal] = ACTIONS(2189), }, [STATE(586)] = { [sym_line_comment] = STATE(586), [sym_block_comment] = STATE(586), - [ts_builtin_sym_end] = ACTIONS(2170), - [sym_identifier] = ACTIONS(2172), - [anon_sym_SEMI] = ACTIONS(2170), - [anon_sym_macro_rules_BANG] = ACTIONS(2170), - [anon_sym_LPAREN] = ACTIONS(2170), - [anon_sym_LBRACK] = ACTIONS(2170), - [anon_sym_LBRACE] = ACTIONS(2170), - [anon_sym_RBRACE] = ACTIONS(2170), - [anon_sym_STAR] = ACTIONS(2170), - [anon_sym_u8] = ACTIONS(2172), - [anon_sym_i8] = ACTIONS(2172), - [anon_sym_u16] = ACTIONS(2172), - [anon_sym_i16] = ACTIONS(2172), - [anon_sym_u32] = ACTIONS(2172), - [anon_sym_i32] = ACTIONS(2172), - [anon_sym_u64] = ACTIONS(2172), - [anon_sym_i64] = ACTIONS(2172), - [anon_sym_u128] = ACTIONS(2172), - [anon_sym_i128] = ACTIONS(2172), - [anon_sym_isize] = ACTIONS(2172), - [anon_sym_usize] = ACTIONS(2172), - [anon_sym_f32] = ACTIONS(2172), - [anon_sym_f64] = ACTIONS(2172), - [anon_sym_bool] = ACTIONS(2172), - [anon_sym_str] = ACTIONS(2172), - [anon_sym_char] = ACTIONS(2172), - [anon_sym_DASH] = ACTIONS(2170), - [anon_sym_BANG] = ACTIONS(2170), - [anon_sym_AMP] = ACTIONS(2170), - [anon_sym_PIPE] = ACTIONS(2170), - [anon_sym_LT] = ACTIONS(2170), - [anon_sym_DOT_DOT] = ACTIONS(2170), - [anon_sym_COLON_COLON] = ACTIONS(2170), - [anon_sym_POUND] = ACTIONS(2170), - [anon_sym_SQUOTE] = ACTIONS(2172), - [anon_sym_async] = ACTIONS(2172), - [anon_sym_break] = ACTIONS(2172), - [anon_sym_const] = ACTIONS(2172), - [anon_sym_continue] = ACTIONS(2172), - [anon_sym_default] = ACTIONS(2172), - [anon_sym_enum] = ACTIONS(2172), - [anon_sym_fn] = ACTIONS(2172), - [anon_sym_for] = ACTIONS(2172), - [anon_sym_gen] = ACTIONS(2172), - [anon_sym_if] = ACTIONS(2172), - [anon_sym_impl] = ACTIONS(2172), - [anon_sym_let] = ACTIONS(2172), - [anon_sym_loop] = ACTIONS(2172), - [anon_sym_match] = ACTIONS(2172), - [anon_sym_mod] = ACTIONS(2172), - [anon_sym_pub] = ACTIONS(2172), - [anon_sym_return] = ACTIONS(2172), - [anon_sym_static] = ACTIONS(2172), - [anon_sym_struct] = ACTIONS(2172), - [anon_sym_trait] = ACTIONS(2172), - [anon_sym_type] = ACTIONS(2172), - [anon_sym_union] = ACTIONS(2172), - [anon_sym_unsafe] = ACTIONS(2172), - [anon_sym_use] = ACTIONS(2172), - [anon_sym_while] = ACTIONS(2172), - [anon_sym_extern] = ACTIONS(2172), - [anon_sym_yield] = ACTIONS(2172), - [anon_sym_move] = ACTIONS(2172), - [anon_sym_try] = ACTIONS(2172), - [sym_integer_literal] = ACTIONS(2170), - [aux_sym_string_literal_token1] = ACTIONS(2170), - [sym_char_literal] = ACTIONS(2170), - [anon_sym_true] = ACTIONS(2172), - [anon_sym_false] = ACTIONS(2172), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2172), - [sym_super] = ACTIONS(2172), - [sym_crate] = ACTIONS(2172), - [sym_metavariable] = ACTIONS(2170), - [sym__raw_string_literal_start] = ACTIONS(2170), - [sym_float_literal] = ACTIONS(2170), + [ts_builtin_sym_end] = ACTIONS(2193), + [sym_identifier] = ACTIONS(2195), + [anon_sym_SEMI] = ACTIONS(2193), + [anon_sym_macro_rules_BANG] = ACTIONS(2193), + [anon_sym_LPAREN] = ACTIONS(2193), + [anon_sym_LBRACK] = ACTIONS(2193), + [anon_sym_LBRACE] = ACTIONS(2193), + [anon_sym_RBRACE] = ACTIONS(2193), + [anon_sym_STAR] = ACTIONS(2193), + [anon_sym_u8] = ACTIONS(2195), + [anon_sym_i8] = ACTIONS(2195), + [anon_sym_u16] = ACTIONS(2195), + [anon_sym_i16] = ACTIONS(2195), + [anon_sym_u32] = ACTIONS(2195), + [anon_sym_i32] = ACTIONS(2195), + [anon_sym_u64] = ACTIONS(2195), + [anon_sym_i64] = ACTIONS(2195), + [anon_sym_u128] = ACTIONS(2195), + [anon_sym_i128] = ACTIONS(2195), + [anon_sym_isize] = ACTIONS(2195), + [anon_sym_usize] = ACTIONS(2195), + [anon_sym_f32] = ACTIONS(2195), + [anon_sym_f64] = ACTIONS(2195), + [anon_sym_bool] = ACTIONS(2195), + [anon_sym_str] = ACTIONS(2195), + [anon_sym_char] = ACTIONS(2195), + [anon_sym_DASH] = ACTIONS(2193), + [anon_sym_BANG] = ACTIONS(2193), + [anon_sym_AMP] = ACTIONS(2193), + [anon_sym_PIPE] = ACTIONS(2193), + [anon_sym_LT] = ACTIONS(2193), + [anon_sym_DOT_DOT] = ACTIONS(2193), + [anon_sym_COLON_COLON] = ACTIONS(2193), + [anon_sym_POUND] = ACTIONS(2193), + [anon_sym_SQUOTE] = ACTIONS(2195), + [anon_sym_async] = ACTIONS(2195), + [anon_sym_break] = ACTIONS(2195), + [anon_sym_const] = ACTIONS(2195), + [anon_sym_continue] = ACTIONS(2195), + [anon_sym_default] = ACTIONS(2195), + [anon_sym_enum] = ACTIONS(2195), + [anon_sym_fn] = ACTIONS(2195), + [anon_sym_for] = ACTIONS(2195), + [anon_sym_gen] = ACTIONS(2195), + [anon_sym_if] = ACTIONS(2195), + [anon_sym_impl] = ACTIONS(2195), + [anon_sym_let] = ACTIONS(2195), + [anon_sym_loop] = ACTIONS(2195), + [anon_sym_match] = ACTIONS(2195), + [anon_sym_mod] = ACTIONS(2195), + [anon_sym_pub] = ACTIONS(2195), + [anon_sym_return] = ACTIONS(2195), + [anon_sym_static] = ACTIONS(2195), + [anon_sym_struct] = ACTIONS(2195), + [anon_sym_trait] = ACTIONS(2195), + [anon_sym_type] = ACTIONS(2195), + [anon_sym_union] = ACTIONS(2195), + [anon_sym_unsafe] = ACTIONS(2195), + [anon_sym_use] = ACTIONS(2195), + [anon_sym_while] = ACTIONS(2195), + [anon_sym_extern] = ACTIONS(2195), + [anon_sym_safe] = ACTIONS(2195), + [anon_sym_yield] = ACTIONS(2195), + [anon_sym_move] = ACTIONS(2195), + [anon_sym_try] = ACTIONS(2195), + [sym_integer_literal] = ACTIONS(2193), + [aux_sym_string_literal_token1] = ACTIONS(2193), + [sym_char_literal] = ACTIONS(2193), + [anon_sym_true] = ACTIONS(2195), + [anon_sym_false] = ACTIONS(2195), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(2195), + [sym_super] = ACTIONS(2195), + [sym_crate] = ACTIONS(2195), + [sym_metavariable] = ACTIONS(2193), + [sym__raw_string_literal_start] = ACTIONS(2193), + [sym_float_literal] = ACTIONS(2193), }, [STATE(587)] = { [sym_line_comment] = STATE(587), [sym_block_comment] = STATE(587), - [ts_builtin_sym_end] = ACTIONS(2174), - [sym_identifier] = ACTIONS(2176), - [anon_sym_SEMI] = ACTIONS(2174), - [anon_sym_macro_rules_BANG] = ACTIONS(2174), - [anon_sym_LPAREN] = ACTIONS(2174), - [anon_sym_LBRACK] = ACTIONS(2174), - [anon_sym_LBRACE] = ACTIONS(2174), - [anon_sym_RBRACE] = ACTIONS(2174), - [anon_sym_STAR] = ACTIONS(2174), - [anon_sym_u8] = ACTIONS(2176), - [anon_sym_i8] = ACTIONS(2176), - [anon_sym_u16] = ACTIONS(2176), - [anon_sym_i16] = ACTIONS(2176), - [anon_sym_u32] = ACTIONS(2176), - [anon_sym_i32] = ACTIONS(2176), - [anon_sym_u64] = ACTIONS(2176), - [anon_sym_i64] = ACTIONS(2176), - [anon_sym_u128] = ACTIONS(2176), - [anon_sym_i128] = ACTIONS(2176), - [anon_sym_isize] = ACTIONS(2176), - [anon_sym_usize] = ACTIONS(2176), - [anon_sym_f32] = ACTIONS(2176), - [anon_sym_f64] = ACTIONS(2176), - [anon_sym_bool] = ACTIONS(2176), - [anon_sym_str] = ACTIONS(2176), - [anon_sym_char] = ACTIONS(2176), - [anon_sym_DASH] = ACTIONS(2174), - [anon_sym_BANG] = ACTIONS(2174), - [anon_sym_AMP] = ACTIONS(2174), - [anon_sym_PIPE] = ACTIONS(2174), - [anon_sym_LT] = ACTIONS(2174), - [anon_sym_DOT_DOT] = ACTIONS(2174), - [anon_sym_COLON_COLON] = ACTIONS(2174), - [anon_sym_POUND] = ACTIONS(2174), - [anon_sym_SQUOTE] = ACTIONS(2176), - [anon_sym_async] = ACTIONS(2176), - [anon_sym_break] = ACTIONS(2176), - [anon_sym_const] = ACTIONS(2176), - [anon_sym_continue] = ACTIONS(2176), - [anon_sym_default] = ACTIONS(2176), - [anon_sym_enum] = ACTIONS(2176), - [anon_sym_fn] = ACTIONS(2176), - [anon_sym_for] = ACTIONS(2176), - [anon_sym_gen] = ACTIONS(2176), - [anon_sym_if] = ACTIONS(2176), - [anon_sym_impl] = ACTIONS(2176), - [anon_sym_let] = ACTIONS(2176), - [anon_sym_loop] = ACTIONS(2176), - [anon_sym_match] = ACTIONS(2176), - [anon_sym_mod] = ACTIONS(2176), - [anon_sym_pub] = ACTIONS(2176), - [anon_sym_return] = ACTIONS(2176), - [anon_sym_static] = ACTIONS(2176), - [anon_sym_struct] = ACTIONS(2176), - [anon_sym_trait] = ACTIONS(2176), - [anon_sym_type] = ACTIONS(2176), - [anon_sym_union] = ACTIONS(2176), - [anon_sym_unsafe] = ACTIONS(2176), - [anon_sym_use] = ACTIONS(2176), - [anon_sym_while] = ACTIONS(2176), - [anon_sym_extern] = ACTIONS(2176), - [anon_sym_yield] = ACTIONS(2176), - [anon_sym_move] = ACTIONS(2176), - [anon_sym_try] = ACTIONS(2176), - [sym_integer_literal] = ACTIONS(2174), - [aux_sym_string_literal_token1] = ACTIONS(2174), - [sym_char_literal] = ACTIONS(2174), - [anon_sym_true] = ACTIONS(2176), - [anon_sym_false] = ACTIONS(2176), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2176), - [sym_super] = ACTIONS(2176), - [sym_crate] = ACTIONS(2176), - [sym_metavariable] = ACTIONS(2174), - [sym__raw_string_literal_start] = ACTIONS(2174), - [sym_float_literal] = ACTIONS(2174), + [ts_builtin_sym_end] = ACTIONS(2197), + [sym_identifier] = ACTIONS(2199), + [anon_sym_SEMI] = ACTIONS(2197), + [anon_sym_macro_rules_BANG] = ACTIONS(2197), + [anon_sym_LPAREN] = ACTIONS(2197), + [anon_sym_LBRACK] = ACTIONS(2197), + [anon_sym_LBRACE] = ACTIONS(2197), + [anon_sym_RBRACE] = ACTIONS(2197), + [anon_sym_STAR] = ACTIONS(2197), + [anon_sym_u8] = ACTIONS(2199), + [anon_sym_i8] = ACTIONS(2199), + [anon_sym_u16] = ACTIONS(2199), + [anon_sym_i16] = ACTIONS(2199), + [anon_sym_u32] = ACTIONS(2199), + [anon_sym_i32] = ACTIONS(2199), + [anon_sym_u64] = ACTIONS(2199), + [anon_sym_i64] = ACTIONS(2199), + [anon_sym_u128] = ACTIONS(2199), + [anon_sym_i128] = ACTIONS(2199), + [anon_sym_isize] = ACTIONS(2199), + [anon_sym_usize] = ACTIONS(2199), + [anon_sym_f32] = ACTIONS(2199), + [anon_sym_f64] = ACTIONS(2199), + [anon_sym_bool] = ACTIONS(2199), + [anon_sym_str] = ACTIONS(2199), + [anon_sym_char] = ACTIONS(2199), + [anon_sym_DASH] = ACTIONS(2197), + [anon_sym_BANG] = ACTIONS(2197), + [anon_sym_AMP] = ACTIONS(2197), + [anon_sym_PIPE] = ACTIONS(2197), + [anon_sym_LT] = ACTIONS(2197), + [anon_sym_DOT_DOT] = ACTIONS(2197), + [anon_sym_COLON_COLON] = ACTIONS(2197), + [anon_sym_POUND] = ACTIONS(2197), + [anon_sym_SQUOTE] = ACTIONS(2199), + [anon_sym_async] = ACTIONS(2199), + [anon_sym_break] = ACTIONS(2199), + [anon_sym_const] = ACTIONS(2199), + [anon_sym_continue] = ACTIONS(2199), + [anon_sym_default] = ACTIONS(2199), + [anon_sym_enum] = ACTIONS(2199), + [anon_sym_fn] = ACTIONS(2199), + [anon_sym_for] = ACTIONS(2199), + [anon_sym_gen] = ACTIONS(2199), + [anon_sym_if] = ACTIONS(2199), + [anon_sym_impl] = ACTIONS(2199), + [anon_sym_let] = ACTIONS(2199), + [anon_sym_loop] = ACTIONS(2199), + [anon_sym_match] = ACTIONS(2199), + [anon_sym_mod] = ACTIONS(2199), + [anon_sym_pub] = ACTIONS(2199), + [anon_sym_return] = ACTIONS(2199), + [anon_sym_static] = ACTIONS(2199), + [anon_sym_struct] = ACTIONS(2199), + [anon_sym_trait] = ACTIONS(2199), + [anon_sym_type] = ACTIONS(2199), + [anon_sym_union] = ACTIONS(2199), + [anon_sym_unsafe] = ACTIONS(2199), + [anon_sym_use] = ACTIONS(2199), + [anon_sym_while] = ACTIONS(2199), + [anon_sym_extern] = ACTIONS(2199), + [anon_sym_safe] = ACTIONS(2199), + [anon_sym_yield] = ACTIONS(2199), + [anon_sym_move] = ACTIONS(2199), + [anon_sym_try] = ACTIONS(2199), + [sym_integer_literal] = ACTIONS(2197), + [aux_sym_string_literal_token1] = ACTIONS(2197), + [sym_char_literal] = ACTIONS(2197), + [anon_sym_true] = ACTIONS(2199), + [anon_sym_false] = ACTIONS(2199), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(2199), + [sym_super] = ACTIONS(2199), + [sym_crate] = ACTIONS(2199), + [sym_metavariable] = ACTIONS(2197), + [sym__raw_string_literal_start] = ACTIONS(2197), + [sym_float_literal] = ACTIONS(2197), }, [STATE(588)] = { [sym_line_comment] = STATE(588), [sym_block_comment] = STATE(588), - [ts_builtin_sym_end] = ACTIONS(2178), - [sym_identifier] = ACTIONS(2180), - [anon_sym_SEMI] = ACTIONS(2178), - [anon_sym_macro_rules_BANG] = ACTIONS(2178), - [anon_sym_LPAREN] = ACTIONS(2178), - [anon_sym_LBRACK] = ACTIONS(2178), - [anon_sym_LBRACE] = ACTIONS(2178), - [anon_sym_RBRACE] = ACTIONS(2178), - [anon_sym_STAR] = ACTIONS(2178), - [anon_sym_u8] = ACTIONS(2180), - [anon_sym_i8] = ACTIONS(2180), - [anon_sym_u16] = ACTIONS(2180), - [anon_sym_i16] = ACTIONS(2180), - [anon_sym_u32] = ACTIONS(2180), - [anon_sym_i32] = ACTIONS(2180), - [anon_sym_u64] = ACTIONS(2180), - [anon_sym_i64] = ACTIONS(2180), - [anon_sym_u128] = ACTIONS(2180), - [anon_sym_i128] = ACTIONS(2180), - [anon_sym_isize] = ACTIONS(2180), - [anon_sym_usize] = ACTIONS(2180), - [anon_sym_f32] = ACTIONS(2180), - [anon_sym_f64] = ACTIONS(2180), - [anon_sym_bool] = ACTIONS(2180), - [anon_sym_str] = ACTIONS(2180), - [anon_sym_char] = ACTIONS(2180), - [anon_sym_DASH] = ACTIONS(2178), - [anon_sym_BANG] = ACTIONS(2178), - [anon_sym_AMP] = ACTIONS(2178), - [anon_sym_PIPE] = ACTIONS(2178), - [anon_sym_LT] = ACTIONS(2178), - [anon_sym_DOT_DOT] = ACTIONS(2178), - [anon_sym_COLON_COLON] = ACTIONS(2178), - [anon_sym_POUND] = ACTIONS(2178), - [anon_sym_SQUOTE] = ACTIONS(2180), - [anon_sym_async] = ACTIONS(2180), - [anon_sym_break] = ACTIONS(2180), - [anon_sym_const] = ACTIONS(2180), - [anon_sym_continue] = ACTIONS(2180), - [anon_sym_default] = ACTIONS(2180), - [anon_sym_enum] = ACTIONS(2180), - [anon_sym_fn] = ACTIONS(2180), - [anon_sym_for] = ACTIONS(2180), - [anon_sym_gen] = ACTIONS(2180), - [anon_sym_if] = ACTIONS(2180), - [anon_sym_impl] = ACTIONS(2180), - [anon_sym_let] = ACTIONS(2180), - [anon_sym_loop] = ACTIONS(2180), - [anon_sym_match] = ACTIONS(2180), - [anon_sym_mod] = ACTIONS(2180), - [anon_sym_pub] = ACTIONS(2180), - [anon_sym_return] = ACTIONS(2180), - [anon_sym_static] = ACTIONS(2180), - [anon_sym_struct] = ACTIONS(2180), - [anon_sym_trait] = ACTIONS(2180), - [anon_sym_type] = ACTIONS(2180), - [anon_sym_union] = ACTIONS(2180), - [anon_sym_unsafe] = ACTIONS(2180), - [anon_sym_use] = ACTIONS(2180), - [anon_sym_while] = ACTIONS(2180), - [anon_sym_extern] = ACTIONS(2180), - [anon_sym_yield] = ACTIONS(2180), - [anon_sym_move] = ACTIONS(2180), - [anon_sym_try] = ACTIONS(2180), - [sym_integer_literal] = ACTIONS(2178), - [aux_sym_string_literal_token1] = ACTIONS(2178), - [sym_char_literal] = ACTIONS(2178), - [anon_sym_true] = ACTIONS(2180), - [anon_sym_false] = ACTIONS(2180), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2180), - [sym_super] = ACTIONS(2180), - [sym_crate] = ACTIONS(2180), - [sym_metavariable] = ACTIONS(2178), - [sym__raw_string_literal_start] = ACTIONS(2178), - [sym_float_literal] = ACTIONS(2178), + [ts_builtin_sym_end] = ACTIONS(2201), + [sym_identifier] = ACTIONS(2203), + [anon_sym_SEMI] = ACTIONS(2201), + [anon_sym_macro_rules_BANG] = ACTIONS(2201), + [anon_sym_LPAREN] = ACTIONS(2201), + [anon_sym_LBRACK] = ACTIONS(2201), + [anon_sym_LBRACE] = ACTIONS(2201), + [anon_sym_RBRACE] = ACTIONS(2201), + [anon_sym_STAR] = ACTIONS(2201), + [anon_sym_u8] = ACTIONS(2203), + [anon_sym_i8] = ACTIONS(2203), + [anon_sym_u16] = ACTIONS(2203), + [anon_sym_i16] = ACTIONS(2203), + [anon_sym_u32] = ACTIONS(2203), + [anon_sym_i32] = ACTIONS(2203), + [anon_sym_u64] = ACTIONS(2203), + [anon_sym_i64] = ACTIONS(2203), + [anon_sym_u128] = ACTIONS(2203), + [anon_sym_i128] = ACTIONS(2203), + [anon_sym_isize] = ACTIONS(2203), + [anon_sym_usize] = ACTIONS(2203), + [anon_sym_f32] = ACTIONS(2203), + [anon_sym_f64] = ACTIONS(2203), + [anon_sym_bool] = ACTIONS(2203), + [anon_sym_str] = ACTIONS(2203), + [anon_sym_char] = ACTIONS(2203), + [anon_sym_DASH] = ACTIONS(2201), + [anon_sym_BANG] = ACTIONS(2201), + [anon_sym_AMP] = ACTIONS(2201), + [anon_sym_PIPE] = ACTIONS(2201), + [anon_sym_LT] = ACTIONS(2201), + [anon_sym_DOT_DOT] = ACTIONS(2201), + [anon_sym_COLON_COLON] = ACTIONS(2201), + [anon_sym_POUND] = ACTIONS(2201), + [anon_sym_SQUOTE] = ACTIONS(2203), + [anon_sym_async] = ACTIONS(2203), + [anon_sym_break] = ACTIONS(2203), + [anon_sym_const] = ACTIONS(2203), + [anon_sym_continue] = ACTIONS(2203), + [anon_sym_default] = ACTIONS(2203), + [anon_sym_enum] = ACTIONS(2203), + [anon_sym_fn] = ACTIONS(2203), + [anon_sym_for] = ACTIONS(2203), + [anon_sym_gen] = ACTIONS(2203), + [anon_sym_if] = ACTIONS(2203), + [anon_sym_impl] = ACTIONS(2203), + [anon_sym_let] = ACTIONS(2203), + [anon_sym_loop] = ACTIONS(2203), + [anon_sym_match] = ACTIONS(2203), + [anon_sym_mod] = ACTIONS(2203), + [anon_sym_pub] = ACTIONS(2203), + [anon_sym_return] = ACTIONS(2203), + [anon_sym_static] = ACTIONS(2203), + [anon_sym_struct] = ACTIONS(2203), + [anon_sym_trait] = ACTIONS(2203), + [anon_sym_type] = ACTIONS(2203), + [anon_sym_union] = ACTIONS(2203), + [anon_sym_unsafe] = ACTIONS(2203), + [anon_sym_use] = ACTIONS(2203), + [anon_sym_while] = ACTIONS(2203), + [anon_sym_extern] = ACTIONS(2203), + [anon_sym_safe] = ACTIONS(2203), + [anon_sym_yield] = ACTIONS(2203), + [anon_sym_move] = ACTIONS(2203), + [anon_sym_try] = ACTIONS(2203), + [sym_integer_literal] = ACTIONS(2201), + [aux_sym_string_literal_token1] = ACTIONS(2201), + [sym_char_literal] = ACTIONS(2201), + [anon_sym_true] = ACTIONS(2203), + [anon_sym_false] = ACTIONS(2203), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(2203), + [sym_super] = ACTIONS(2203), + [sym_crate] = ACTIONS(2203), + [sym_metavariable] = ACTIONS(2201), + [sym__raw_string_literal_start] = ACTIONS(2201), + [sym_float_literal] = ACTIONS(2201), }, [STATE(589)] = { [sym_line_comment] = STATE(589), [sym_block_comment] = STATE(589), - [ts_builtin_sym_end] = ACTIONS(2182), - [sym_identifier] = ACTIONS(2184), - [anon_sym_SEMI] = ACTIONS(2182), - [anon_sym_macro_rules_BANG] = ACTIONS(2182), - [anon_sym_LPAREN] = ACTIONS(2182), - [anon_sym_LBRACK] = ACTIONS(2182), - [anon_sym_LBRACE] = ACTIONS(2182), - [anon_sym_RBRACE] = ACTIONS(2182), - [anon_sym_STAR] = ACTIONS(2182), - [anon_sym_u8] = ACTIONS(2184), - [anon_sym_i8] = ACTIONS(2184), - [anon_sym_u16] = ACTIONS(2184), - [anon_sym_i16] = ACTIONS(2184), - [anon_sym_u32] = ACTIONS(2184), - [anon_sym_i32] = ACTIONS(2184), - [anon_sym_u64] = ACTIONS(2184), - [anon_sym_i64] = ACTIONS(2184), - [anon_sym_u128] = ACTIONS(2184), - [anon_sym_i128] = ACTIONS(2184), - [anon_sym_isize] = ACTIONS(2184), - [anon_sym_usize] = ACTIONS(2184), - [anon_sym_f32] = ACTIONS(2184), - [anon_sym_f64] = ACTIONS(2184), - [anon_sym_bool] = ACTIONS(2184), - [anon_sym_str] = ACTIONS(2184), - [anon_sym_char] = ACTIONS(2184), - [anon_sym_DASH] = ACTIONS(2182), - [anon_sym_BANG] = ACTIONS(2182), - [anon_sym_AMP] = ACTIONS(2182), - [anon_sym_PIPE] = ACTIONS(2182), - [anon_sym_LT] = ACTIONS(2182), - [anon_sym_DOT_DOT] = ACTIONS(2182), - [anon_sym_COLON_COLON] = ACTIONS(2182), - [anon_sym_POUND] = ACTIONS(2182), - [anon_sym_SQUOTE] = ACTIONS(2184), - [anon_sym_async] = ACTIONS(2184), - [anon_sym_break] = ACTIONS(2184), - [anon_sym_const] = ACTIONS(2184), - [anon_sym_continue] = ACTIONS(2184), - [anon_sym_default] = ACTIONS(2184), - [anon_sym_enum] = ACTIONS(2184), - [anon_sym_fn] = ACTIONS(2184), - [anon_sym_for] = ACTIONS(2184), - [anon_sym_gen] = ACTIONS(2184), - [anon_sym_if] = ACTIONS(2184), - [anon_sym_impl] = ACTIONS(2184), - [anon_sym_let] = ACTIONS(2184), - [anon_sym_loop] = ACTIONS(2184), - [anon_sym_match] = ACTIONS(2184), - [anon_sym_mod] = ACTIONS(2184), - [anon_sym_pub] = ACTIONS(2184), - [anon_sym_return] = ACTIONS(2184), - [anon_sym_static] = ACTIONS(2184), - [anon_sym_struct] = ACTIONS(2184), - [anon_sym_trait] = ACTIONS(2184), - [anon_sym_type] = ACTIONS(2184), - [anon_sym_union] = ACTIONS(2184), - [anon_sym_unsafe] = ACTIONS(2184), - [anon_sym_use] = ACTIONS(2184), - [anon_sym_while] = ACTIONS(2184), - [anon_sym_extern] = ACTIONS(2184), - [anon_sym_yield] = ACTIONS(2184), - [anon_sym_move] = ACTIONS(2184), - [anon_sym_try] = ACTIONS(2184), - [sym_integer_literal] = ACTIONS(2182), - [aux_sym_string_literal_token1] = ACTIONS(2182), - [sym_char_literal] = ACTIONS(2182), - [anon_sym_true] = ACTIONS(2184), - [anon_sym_false] = ACTIONS(2184), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2184), - [sym_super] = ACTIONS(2184), - [sym_crate] = ACTIONS(2184), - [sym_metavariable] = ACTIONS(2182), - [sym__raw_string_literal_start] = ACTIONS(2182), - [sym_float_literal] = ACTIONS(2182), + [ts_builtin_sym_end] = ACTIONS(2205), + [sym_identifier] = ACTIONS(2207), + [anon_sym_SEMI] = ACTIONS(2205), + [anon_sym_macro_rules_BANG] = ACTIONS(2205), + [anon_sym_LPAREN] = ACTIONS(2205), + [anon_sym_LBRACK] = ACTIONS(2205), + [anon_sym_LBRACE] = ACTIONS(2205), + [anon_sym_RBRACE] = ACTIONS(2205), + [anon_sym_STAR] = ACTIONS(2205), + [anon_sym_u8] = ACTIONS(2207), + [anon_sym_i8] = ACTIONS(2207), + [anon_sym_u16] = ACTIONS(2207), + [anon_sym_i16] = ACTIONS(2207), + [anon_sym_u32] = ACTIONS(2207), + [anon_sym_i32] = ACTIONS(2207), + [anon_sym_u64] = ACTIONS(2207), + [anon_sym_i64] = ACTIONS(2207), + [anon_sym_u128] = ACTIONS(2207), + [anon_sym_i128] = ACTIONS(2207), + [anon_sym_isize] = ACTIONS(2207), + [anon_sym_usize] = ACTIONS(2207), + [anon_sym_f32] = ACTIONS(2207), + [anon_sym_f64] = ACTIONS(2207), + [anon_sym_bool] = ACTIONS(2207), + [anon_sym_str] = ACTIONS(2207), + [anon_sym_char] = ACTIONS(2207), + [anon_sym_DASH] = ACTIONS(2205), + [anon_sym_BANG] = ACTIONS(2205), + [anon_sym_AMP] = ACTIONS(2205), + [anon_sym_PIPE] = ACTIONS(2205), + [anon_sym_LT] = ACTIONS(2205), + [anon_sym_DOT_DOT] = ACTIONS(2205), + [anon_sym_COLON_COLON] = ACTIONS(2205), + [anon_sym_POUND] = ACTIONS(2205), + [anon_sym_SQUOTE] = ACTIONS(2207), + [anon_sym_async] = ACTIONS(2207), + [anon_sym_break] = ACTIONS(2207), + [anon_sym_const] = ACTIONS(2207), + [anon_sym_continue] = ACTIONS(2207), + [anon_sym_default] = ACTIONS(2207), + [anon_sym_enum] = ACTIONS(2207), + [anon_sym_fn] = ACTIONS(2207), + [anon_sym_for] = ACTIONS(2207), + [anon_sym_gen] = ACTIONS(2207), + [anon_sym_if] = ACTIONS(2207), + [anon_sym_impl] = ACTIONS(2207), + [anon_sym_let] = ACTIONS(2207), + [anon_sym_loop] = ACTIONS(2207), + [anon_sym_match] = ACTIONS(2207), + [anon_sym_mod] = ACTIONS(2207), + [anon_sym_pub] = ACTIONS(2207), + [anon_sym_return] = ACTIONS(2207), + [anon_sym_static] = ACTIONS(2207), + [anon_sym_struct] = ACTIONS(2207), + [anon_sym_trait] = ACTIONS(2207), + [anon_sym_type] = ACTIONS(2207), + [anon_sym_union] = ACTIONS(2207), + [anon_sym_unsafe] = ACTIONS(2207), + [anon_sym_use] = ACTIONS(2207), + [anon_sym_while] = ACTIONS(2207), + [anon_sym_extern] = ACTIONS(2207), + [anon_sym_safe] = ACTIONS(2207), + [anon_sym_yield] = ACTIONS(2207), + [anon_sym_move] = ACTIONS(2207), + [anon_sym_try] = ACTIONS(2207), + [sym_integer_literal] = ACTIONS(2205), + [aux_sym_string_literal_token1] = ACTIONS(2205), + [sym_char_literal] = ACTIONS(2205), + [anon_sym_true] = ACTIONS(2207), + [anon_sym_false] = ACTIONS(2207), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(2207), + [sym_super] = ACTIONS(2207), + [sym_crate] = ACTIONS(2207), + [sym_metavariable] = ACTIONS(2205), + [sym__raw_string_literal_start] = ACTIONS(2205), + [sym_float_literal] = ACTIONS(2205), }, [STATE(590)] = { [sym_line_comment] = STATE(590), [sym_block_comment] = STATE(590), - [ts_builtin_sym_end] = ACTIONS(2186), - [sym_identifier] = ACTIONS(2188), - [anon_sym_SEMI] = ACTIONS(2186), - [anon_sym_macro_rules_BANG] = ACTIONS(2186), - [anon_sym_LPAREN] = ACTIONS(2186), - [anon_sym_LBRACK] = ACTIONS(2186), - [anon_sym_LBRACE] = ACTIONS(2186), - [anon_sym_RBRACE] = ACTIONS(2186), - [anon_sym_STAR] = ACTIONS(2186), - [anon_sym_u8] = ACTIONS(2188), - [anon_sym_i8] = ACTIONS(2188), - [anon_sym_u16] = ACTIONS(2188), - [anon_sym_i16] = ACTIONS(2188), - [anon_sym_u32] = ACTIONS(2188), - [anon_sym_i32] = ACTIONS(2188), - [anon_sym_u64] = ACTIONS(2188), - [anon_sym_i64] = ACTIONS(2188), - [anon_sym_u128] = ACTIONS(2188), - [anon_sym_i128] = ACTIONS(2188), - [anon_sym_isize] = ACTIONS(2188), - [anon_sym_usize] = ACTIONS(2188), - [anon_sym_f32] = ACTIONS(2188), - [anon_sym_f64] = ACTIONS(2188), - [anon_sym_bool] = ACTIONS(2188), - [anon_sym_str] = ACTIONS(2188), - [anon_sym_char] = ACTIONS(2188), - [anon_sym_DASH] = ACTIONS(2186), - [anon_sym_BANG] = ACTIONS(2186), - [anon_sym_AMP] = ACTIONS(2186), - [anon_sym_PIPE] = ACTIONS(2186), - [anon_sym_LT] = ACTIONS(2186), - [anon_sym_DOT_DOT] = ACTIONS(2186), - [anon_sym_COLON_COLON] = ACTIONS(2186), - [anon_sym_POUND] = ACTIONS(2186), - [anon_sym_SQUOTE] = ACTIONS(2188), - [anon_sym_async] = ACTIONS(2188), - [anon_sym_break] = ACTIONS(2188), - [anon_sym_const] = ACTIONS(2188), - [anon_sym_continue] = ACTIONS(2188), - [anon_sym_default] = ACTIONS(2188), - [anon_sym_enum] = ACTIONS(2188), - [anon_sym_fn] = ACTIONS(2188), - [anon_sym_for] = ACTIONS(2188), - [anon_sym_gen] = ACTIONS(2188), - [anon_sym_if] = ACTIONS(2188), - [anon_sym_impl] = ACTIONS(2188), - [anon_sym_let] = ACTIONS(2188), - [anon_sym_loop] = ACTIONS(2188), - [anon_sym_match] = ACTIONS(2188), - [anon_sym_mod] = ACTIONS(2188), - [anon_sym_pub] = ACTIONS(2188), - [anon_sym_return] = ACTIONS(2188), - [anon_sym_static] = ACTIONS(2188), - [anon_sym_struct] = ACTIONS(2188), - [anon_sym_trait] = ACTIONS(2188), - [anon_sym_type] = ACTIONS(2188), - [anon_sym_union] = ACTIONS(2188), - [anon_sym_unsafe] = ACTIONS(2188), - [anon_sym_use] = ACTIONS(2188), - [anon_sym_while] = ACTIONS(2188), - [anon_sym_extern] = ACTIONS(2188), - [anon_sym_yield] = ACTIONS(2188), - [anon_sym_move] = ACTIONS(2188), - [anon_sym_try] = ACTIONS(2188), - [sym_integer_literal] = ACTIONS(2186), - [aux_sym_string_literal_token1] = ACTIONS(2186), - [sym_char_literal] = ACTIONS(2186), - [anon_sym_true] = ACTIONS(2188), - [anon_sym_false] = ACTIONS(2188), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2188), - [sym_super] = ACTIONS(2188), - [sym_crate] = ACTIONS(2188), - [sym_metavariable] = ACTIONS(2186), - [sym__raw_string_literal_start] = ACTIONS(2186), - [sym_float_literal] = ACTIONS(2186), + [ts_builtin_sym_end] = ACTIONS(2209), + [sym_identifier] = ACTIONS(2211), + [anon_sym_SEMI] = ACTIONS(2209), + [anon_sym_macro_rules_BANG] = ACTIONS(2209), + [anon_sym_LPAREN] = ACTIONS(2209), + [anon_sym_LBRACK] = ACTIONS(2209), + [anon_sym_LBRACE] = ACTIONS(2209), + [anon_sym_RBRACE] = ACTIONS(2209), + [anon_sym_STAR] = ACTIONS(2209), + [anon_sym_u8] = ACTIONS(2211), + [anon_sym_i8] = ACTIONS(2211), + [anon_sym_u16] = ACTIONS(2211), + [anon_sym_i16] = ACTIONS(2211), + [anon_sym_u32] = ACTIONS(2211), + [anon_sym_i32] = ACTIONS(2211), + [anon_sym_u64] = ACTIONS(2211), + [anon_sym_i64] = ACTIONS(2211), + [anon_sym_u128] = ACTIONS(2211), + [anon_sym_i128] = ACTIONS(2211), + [anon_sym_isize] = ACTIONS(2211), + [anon_sym_usize] = ACTIONS(2211), + [anon_sym_f32] = ACTIONS(2211), + [anon_sym_f64] = ACTIONS(2211), + [anon_sym_bool] = ACTIONS(2211), + [anon_sym_str] = ACTIONS(2211), + [anon_sym_char] = ACTIONS(2211), + [anon_sym_DASH] = ACTIONS(2209), + [anon_sym_BANG] = ACTIONS(2209), + [anon_sym_AMP] = ACTIONS(2209), + [anon_sym_PIPE] = ACTIONS(2209), + [anon_sym_LT] = ACTIONS(2209), + [anon_sym_DOT_DOT] = ACTIONS(2209), + [anon_sym_COLON_COLON] = ACTIONS(2209), + [anon_sym_POUND] = ACTIONS(2209), + [anon_sym_SQUOTE] = ACTIONS(2211), + [anon_sym_async] = ACTIONS(2211), + [anon_sym_break] = ACTIONS(2211), + [anon_sym_const] = ACTIONS(2211), + [anon_sym_continue] = ACTIONS(2211), + [anon_sym_default] = ACTIONS(2211), + [anon_sym_enum] = ACTIONS(2211), + [anon_sym_fn] = ACTIONS(2211), + [anon_sym_for] = ACTIONS(2211), + [anon_sym_gen] = ACTIONS(2211), + [anon_sym_if] = ACTIONS(2211), + [anon_sym_impl] = ACTIONS(2211), + [anon_sym_let] = ACTIONS(2211), + [anon_sym_loop] = ACTIONS(2211), + [anon_sym_match] = ACTIONS(2211), + [anon_sym_mod] = ACTIONS(2211), + [anon_sym_pub] = ACTIONS(2211), + [anon_sym_return] = ACTIONS(2211), + [anon_sym_static] = ACTIONS(2211), + [anon_sym_struct] = ACTIONS(2211), + [anon_sym_trait] = ACTIONS(2211), + [anon_sym_type] = ACTIONS(2211), + [anon_sym_union] = ACTIONS(2211), + [anon_sym_unsafe] = ACTIONS(2211), + [anon_sym_use] = ACTIONS(2211), + [anon_sym_while] = ACTIONS(2211), + [anon_sym_extern] = ACTIONS(2211), + [anon_sym_safe] = ACTIONS(2211), + [anon_sym_yield] = ACTIONS(2211), + [anon_sym_move] = ACTIONS(2211), + [anon_sym_try] = ACTIONS(2211), + [sym_integer_literal] = ACTIONS(2209), + [aux_sym_string_literal_token1] = ACTIONS(2209), + [sym_char_literal] = ACTIONS(2209), + [anon_sym_true] = ACTIONS(2211), + [anon_sym_false] = ACTIONS(2211), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(2211), + [sym_super] = ACTIONS(2211), + [sym_crate] = ACTIONS(2211), + [sym_metavariable] = ACTIONS(2209), + [sym__raw_string_literal_start] = ACTIONS(2209), + [sym_float_literal] = ACTIONS(2209), }, [STATE(591)] = { [sym_line_comment] = STATE(591), [sym_block_comment] = STATE(591), - [ts_builtin_sym_end] = ACTIONS(2190), - [sym_identifier] = ACTIONS(2192), - [anon_sym_SEMI] = ACTIONS(2190), - [anon_sym_macro_rules_BANG] = ACTIONS(2190), - [anon_sym_LPAREN] = ACTIONS(2190), - [anon_sym_LBRACK] = ACTIONS(2190), - [anon_sym_LBRACE] = ACTIONS(2190), - [anon_sym_RBRACE] = ACTIONS(2190), - [anon_sym_STAR] = ACTIONS(2190), - [anon_sym_u8] = ACTIONS(2192), - [anon_sym_i8] = ACTIONS(2192), - [anon_sym_u16] = ACTIONS(2192), - [anon_sym_i16] = ACTIONS(2192), - [anon_sym_u32] = ACTIONS(2192), - [anon_sym_i32] = ACTIONS(2192), - [anon_sym_u64] = ACTIONS(2192), - [anon_sym_i64] = ACTIONS(2192), - [anon_sym_u128] = ACTIONS(2192), - [anon_sym_i128] = ACTIONS(2192), - [anon_sym_isize] = ACTIONS(2192), - [anon_sym_usize] = ACTIONS(2192), - [anon_sym_f32] = ACTIONS(2192), - [anon_sym_f64] = ACTIONS(2192), - [anon_sym_bool] = ACTIONS(2192), - [anon_sym_str] = ACTIONS(2192), - [anon_sym_char] = ACTIONS(2192), - [anon_sym_DASH] = ACTIONS(2190), - [anon_sym_BANG] = ACTIONS(2190), - [anon_sym_AMP] = ACTIONS(2190), - [anon_sym_PIPE] = ACTIONS(2190), - [anon_sym_LT] = ACTIONS(2190), - [anon_sym_DOT_DOT] = ACTIONS(2190), - [anon_sym_COLON_COLON] = ACTIONS(2190), - [anon_sym_POUND] = ACTIONS(2190), - [anon_sym_SQUOTE] = ACTIONS(2192), - [anon_sym_async] = ACTIONS(2192), - [anon_sym_break] = ACTIONS(2192), - [anon_sym_const] = ACTIONS(2192), - [anon_sym_continue] = ACTIONS(2192), - [anon_sym_default] = ACTIONS(2192), - [anon_sym_enum] = ACTIONS(2192), - [anon_sym_fn] = ACTIONS(2192), - [anon_sym_for] = ACTIONS(2192), - [anon_sym_gen] = ACTIONS(2192), - [anon_sym_if] = ACTIONS(2192), - [anon_sym_impl] = ACTIONS(2192), - [anon_sym_let] = ACTIONS(2192), - [anon_sym_loop] = ACTIONS(2192), - [anon_sym_match] = ACTIONS(2192), - [anon_sym_mod] = ACTIONS(2192), - [anon_sym_pub] = ACTIONS(2192), - [anon_sym_return] = ACTIONS(2192), - [anon_sym_static] = ACTIONS(2192), - [anon_sym_struct] = ACTIONS(2192), - [anon_sym_trait] = ACTIONS(2192), - [anon_sym_type] = ACTIONS(2192), - [anon_sym_union] = ACTIONS(2192), - [anon_sym_unsafe] = ACTIONS(2192), - [anon_sym_use] = ACTIONS(2192), - [anon_sym_while] = ACTIONS(2192), - [anon_sym_extern] = ACTIONS(2192), - [anon_sym_yield] = ACTIONS(2192), - [anon_sym_move] = ACTIONS(2192), - [anon_sym_try] = ACTIONS(2192), - [sym_integer_literal] = ACTIONS(2190), - [aux_sym_string_literal_token1] = ACTIONS(2190), - [sym_char_literal] = ACTIONS(2190), - [anon_sym_true] = ACTIONS(2192), - [anon_sym_false] = ACTIONS(2192), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2192), - [sym_super] = ACTIONS(2192), - [sym_crate] = ACTIONS(2192), - [sym_metavariable] = ACTIONS(2190), - [sym__raw_string_literal_start] = ACTIONS(2190), - [sym_float_literal] = ACTIONS(2190), + [ts_builtin_sym_end] = ACTIONS(2213), + [sym_identifier] = ACTIONS(2215), + [anon_sym_SEMI] = ACTIONS(2213), + [anon_sym_macro_rules_BANG] = ACTIONS(2213), + [anon_sym_LPAREN] = ACTIONS(2213), + [anon_sym_LBRACK] = ACTIONS(2213), + [anon_sym_LBRACE] = ACTIONS(2213), + [anon_sym_RBRACE] = ACTIONS(2213), + [anon_sym_STAR] = ACTIONS(2213), + [anon_sym_u8] = ACTIONS(2215), + [anon_sym_i8] = ACTIONS(2215), + [anon_sym_u16] = ACTIONS(2215), + [anon_sym_i16] = ACTIONS(2215), + [anon_sym_u32] = ACTIONS(2215), + [anon_sym_i32] = ACTIONS(2215), + [anon_sym_u64] = ACTIONS(2215), + [anon_sym_i64] = ACTIONS(2215), + [anon_sym_u128] = ACTIONS(2215), + [anon_sym_i128] = ACTIONS(2215), + [anon_sym_isize] = ACTIONS(2215), + [anon_sym_usize] = ACTIONS(2215), + [anon_sym_f32] = ACTIONS(2215), + [anon_sym_f64] = ACTIONS(2215), + [anon_sym_bool] = ACTIONS(2215), + [anon_sym_str] = ACTIONS(2215), + [anon_sym_char] = ACTIONS(2215), + [anon_sym_DASH] = ACTIONS(2213), + [anon_sym_BANG] = ACTIONS(2213), + [anon_sym_AMP] = ACTIONS(2213), + [anon_sym_PIPE] = ACTIONS(2213), + [anon_sym_LT] = ACTIONS(2213), + [anon_sym_DOT_DOT] = ACTIONS(2213), + [anon_sym_COLON_COLON] = ACTIONS(2213), + [anon_sym_POUND] = ACTIONS(2213), + [anon_sym_SQUOTE] = ACTIONS(2215), + [anon_sym_async] = ACTIONS(2215), + [anon_sym_break] = ACTIONS(2215), + [anon_sym_const] = ACTIONS(2215), + [anon_sym_continue] = ACTIONS(2215), + [anon_sym_default] = ACTIONS(2215), + [anon_sym_enum] = ACTIONS(2215), + [anon_sym_fn] = ACTIONS(2215), + [anon_sym_for] = ACTIONS(2215), + [anon_sym_gen] = ACTIONS(2215), + [anon_sym_if] = ACTIONS(2215), + [anon_sym_impl] = ACTIONS(2215), + [anon_sym_let] = ACTIONS(2215), + [anon_sym_loop] = ACTIONS(2215), + [anon_sym_match] = ACTIONS(2215), + [anon_sym_mod] = ACTIONS(2215), + [anon_sym_pub] = ACTIONS(2215), + [anon_sym_return] = ACTIONS(2215), + [anon_sym_static] = ACTIONS(2215), + [anon_sym_struct] = ACTIONS(2215), + [anon_sym_trait] = ACTIONS(2215), + [anon_sym_type] = ACTIONS(2215), + [anon_sym_union] = ACTIONS(2215), + [anon_sym_unsafe] = ACTIONS(2215), + [anon_sym_use] = ACTIONS(2215), + [anon_sym_while] = ACTIONS(2215), + [anon_sym_extern] = ACTIONS(2215), + [anon_sym_safe] = ACTIONS(2215), + [anon_sym_yield] = ACTIONS(2215), + [anon_sym_move] = ACTIONS(2215), + [anon_sym_try] = ACTIONS(2215), + [sym_integer_literal] = ACTIONS(2213), + [aux_sym_string_literal_token1] = ACTIONS(2213), + [sym_char_literal] = ACTIONS(2213), + [anon_sym_true] = ACTIONS(2215), + [anon_sym_false] = ACTIONS(2215), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(2215), + [sym_super] = ACTIONS(2215), + [sym_crate] = ACTIONS(2215), + [sym_metavariable] = ACTIONS(2213), + [sym__raw_string_literal_start] = ACTIONS(2213), + [sym_float_literal] = ACTIONS(2213), }, [STATE(592)] = { [sym_line_comment] = STATE(592), [sym_block_comment] = STATE(592), - [ts_builtin_sym_end] = ACTIONS(2194), - [sym_identifier] = ACTIONS(2196), - [anon_sym_SEMI] = ACTIONS(2194), - [anon_sym_macro_rules_BANG] = ACTIONS(2194), - [anon_sym_LPAREN] = ACTIONS(2194), - [anon_sym_LBRACK] = ACTIONS(2194), - [anon_sym_LBRACE] = ACTIONS(2194), - [anon_sym_RBRACE] = ACTIONS(2194), - [anon_sym_STAR] = ACTIONS(2194), - [anon_sym_u8] = ACTIONS(2196), - [anon_sym_i8] = ACTIONS(2196), - [anon_sym_u16] = ACTIONS(2196), - [anon_sym_i16] = ACTIONS(2196), - [anon_sym_u32] = ACTIONS(2196), - [anon_sym_i32] = ACTIONS(2196), - [anon_sym_u64] = ACTIONS(2196), - [anon_sym_i64] = ACTIONS(2196), - [anon_sym_u128] = ACTIONS(2196), - [anon_sym_i128] = ACTIONS(2196), - [anon_sym_isize] = ACTIONS(2196), - [anon_sym_usize] = ACTIONS(2196), - [anon_sym_f32] = ACTIONS(2196), - [anon_sym_f64] = ACTIONS(2196), - [anon_sym_bool] = ACTIONS(2196), - [anon_sym_str] = ACTIONS(2196), - [anon_sym_char] = ACTIONS(2196), - [anon_sym_DASH] = ACTIONS(2194), - [anon_sym_BANG] = ACTIONS(2194), - [anon_sym_AMP] = ACTIONS(2194), - [anon_sym_PIPE] = ACTIONS(2194), - [anon_sym_LT] = ACTIONS(2194), - [anon_sym_DOT_DOT] = ACTIONS(2194), - [anon_sym_COLON_COLON] = ACTIONS(2194), - [anon_sym_POUND] = ACTIONS(2194), - [anon_sym_SQUOTE] = ACTIONS(2196), - [anon_sym_async] = ACTIONS(2196), - [anon_sym_break] = ACTIONS(2196), - [anon_sym_const] = ACTIONS(2196), - [anon_sym_continue] = ACTIONS(2196), - [anon_sym_default] = ACTIONS(2196), - [anon_sym_enum] = ACTIONS(2196), - [anon_sym_fn] = ACTIONS(2196), - [anon_sym_for] = ACTIONS(2196), - [anon_sym_gen] = ACTIONS(2196), - [anon_sym_if] = ACTIONS(2196), - [anon_sym_impl] = ACTIONS(2196), - [anon_sym_let] = ACTIONS(2196), - [anon_sym_loop] = ACTIONS(2196), - [anon_sym_match] = ACTIONS(2196), - [anon_sym_mod] = ACTIONS(2196), - [anon_sym_pub] = ACTIONS(2196), - [anon_sym_return] = ACTIONS(2196), - [anon_sym_static] = ACTIONS(2196), - [anon_sym_struct] = ACTIONS(2196), - [anon_sym_trait] = ACTIONS(2196), - [anon_sym_type] = ACTIONS(2196), - [anon_sym_union] = ACTIONS(2196), - [anon_sym_unsafe] = ACTIONS(2196), - [anon_sym_use] = ACTIONS(2196), - [anon_sym_while] = ACTIONS(2196), - [anon_sym_extern] = ACTIONS(2196), - [anon_sym_yield] = ACTIONS(2196), - [anon_sym_move] = ACTIONS(2196), - [anon_sym_try] = ACTIONS(2196), - [sym_integer_literal] = ACTIONS(2194), - [aux_sym_string_literal_token1] = ACTIONS(2194), - [sym_char_literal] = ACTIONS(2194), - [anon_sym_true] = ACTIONS(2196), - [anon_sym_false] = ACTIONS(2196), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2196), - [sym_super] = ACTIONS(2196), - [sym_crate] = ACTIONS(2196), - [sym_metavariable] = ACTIONS(2194), - [sym__raw_string_literal_start] = ACTIONS(2194), - [sym_float_literal] = ACTIONS(2194), + [ts_builtin_sym_end] = ACTIONS(2217), + [sym_identifier] = ACTIONS(2219), + [anon_sym_SEMI] = ACTIONS(2217), + [anon_sym_macro_rules_BANG] = ACTIONS(2217), + [anon_sym_LPAREN] = ACTIONS(2217), + [anon_sym_LBRACK] = ACTIONS(2217), + [anon_sym_LBRACE] = ACTIONS(2217), + [anon_sym_RBRACE] = ACTIONS(2217), + [anon_sym_STAR] = ACTIONS(2217), + [anon_sym_u8] = ACTIONS(2219), + [anon_sym_i8] = ACTIONS(2219), + [anon_sym_u16] = ACTIONS(2219), + [anon_sym_i16] = ACTIONS(2219), + [anon_sym_u32] = ACTIONS(2219), + [anon_sym_i32] = ACTIONS(2219), + [anon_sym_u64] = ACTIONS(2219), + [anon_sym_i64] = ACTIONS(2219), + [anon_sym_u128] = ACTIONS(2219), + [anon_sym_i128] = ACTIONS(2219), + [anon_sym_isize] = ACTIONS(2219), + [anon_sym_usize] = ACTIONS(2219), + [anon_sym_f32] = ACTIONS(2219), + [anon_sym_f64] = ACTIONS(2219), + [anon_sym_bool] = ACTIONS(2219), + [anon_sym_str] = ACTIONS(2219), + [anon_sym_char] = ACTIONS(2219), + [anon_sym_DASH] = ACTIONS(2217), + [anon_sym_BANG] = ACTIONS(2217), + [anon_sym_AMP] = ACTIONS(2217), + [anon_sym_PIPE] = ACTIONS(2217), + [anon_sym_LT] = ACTIONS(2217), + [anon_sym_DOT_DOT] = ACTIONS(2217), + [anon_sym_COLON_COLON] = ACTIONS(2217), + [anon_sym_POUND] = ACTIONS(2217), + [anon_sym_SQUOTE] = ACTIONS(2219), + [anon_sym_async] = ACTIONS(2219), + [anon_sym_break] = ACTIONS(2219), + [anon_sym_const] = ACTIONS(2219), + [anon_sym_continue] = ACTIONS(2219), + [anon_sym_default] = ACTIONS(2219), + [anon_sym_enum] = ACTIONS(2219), + [anon_sym_fn] = ACTIONS(2219), + [anon_sym_for] = ACTIONS(2219), + [anon_sym_gen] = ACTIONS(2219), + [anon_sym_if] = ACTIONS(2219), + [anon_sym_impl] = ACTIONS(2219), + [anon_sym_let] = ACTIONS(2219), + [anon_sym_loop] = ACTIONS(2219), + [anon_sym_match] = ACTIONS(2219), + [anon_sym_mod] = ACTIONS(2219), + [anon_sym_pub] = ACTIONS(2219), + [anon_sym_return] = ACTIONS(2219), + [anon_sym_static] = ACTIONS(2219), + [anon_sym_struct] = ACTIONS(2219), + [anon_sym_trait] = ACTIONS(2219), + [anon_sym_type] = ACTIONS(2219), + [anon_sym_union] = ACTIONS(2219), + [anon_sym_unsafe] = ACTIONS(2219), + [anon_sym_use] = ACTIONS(2219), + [anon_sym_while] = ACTIONS(2219), + [anon_sym_extern] = ACTIONS(2219), + [anon_sym_safe] = ACTIONS(2219), + [anon_sym_yield] = ACTIONS(2219), + [anon_sym_move] = ACTIONS(2219), + [anon_sym_try] = ACTIONS(2219), + [sym_integer_literal] = ACTIONS(2217), + [aux_sym_string_literal_token1] = ACTIONS(2217), + [sym_char_literal] = ACTIONS(2217), + [anon_sym_true] = ACTIONS(2219), + [anon_sym_false] = ACTIONS(2219), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(2219), + [sym_super] = ACTIONS(2219), + [sym_crate] = ACTIONS(2219), + [sym_metavariable] = ACTIONS(2217), + [sym__raw_string_literal_start] = ACTIONS(2217), + [sym_float_literal] = ACTIONS(2217), }, [STATE(593)] = { [sym_line_comment] = STATE(593), [sym_block_comment] = STATE(593), - [ts_builtin_sym_end] = ACTIONS(2198), - [sym_identifier] = ACTIONS(2200), - [anon_sym_SEMI] = ACTIONS(2198), - [anon_sym_macro_rules_BANG] = ACTIONS(2198), - [anon_sym_LPAREN] = ACTIONS(2198), - [anon_sym_LBRACK] = ACTIONS(2198), - [anon_sym_LBRACE] = ACTIONS(2198), - [anon_sym_RBRACE] = ACTIONS(2198), - [anon_sym_STAR] = ACTIONS(2198), - [anon_sym_u8] = ACTIONS(2200), - [anon_sym_i8] = ACTIONS(2200), - [anon_sym_u16] = ACTIONS(2200), - [anon_sym_i16] = ACTIONS(2200), - [anon_sym_u32] = ACTIONS(2200), - [anon_sym_i32] = ACTIONS(2200), - [anon_sym_u64] = ACTIONS(2200), - [anon_sym_i64] = ACTIONS(2200), - [anon_sym_u128] = ACTIONS(2200), - [anon_sym_i128] = ACTIONS(2200), - [anon_sym_isize] = ACTIONS(2200), - [anon_sym_usize] = ACTIONS(2200), - [anon_sym_f32] = ACTIONS(2200), - [anon_sym_f64] = ACTIONS(2200), - [anon_sym_bool] = ACTIONS(2200), - [anon_sym_str] = ACTIONS(2200), - [anon_sym_char] = ACTIONS(2200), - [anon_sym_DASH] = ACTIONS(2198), - [anon_sym_BANG] = ACTIONS(2198), - [anon_sym_AMP] = ACTIONS(2198), - [anon_sym_PIPE] = ACTIONS(2198), - [anon_sym_LT] = ACTIONS(2198), - [anon_sym_DOT_DOT] = ACTIONS(2198), - [anon_sym_COLON_COLON] = ACTIONS(2198), - [anon_sym_POUND] = ACTIONS(2198), - [anon_sym_SQUOTE] = ACTIONS(2200), - [anon_sym_async] = ACTIONS(2200), - [anon_sym_break] = ACTIONS(2200), - [anon_sym_const] = ACTIONS(2200), - [anon_sym_continue] = ACTIONS(2200), - [anon_sym_default] = ACTIONS(2200), - [anon_sym_enum] = ACTIONS(2200), - [anon_sym_fn] = ACTIONS(2200), - [anon_sym_for] = ACTIONS(2200), - [anon_sym_gen] = ACTIONS(2200), - [anon_sym_if] = ACTIONS(2200), - [anon_sym_impl] = ACTIONS(2200), - [anon_sym_let] = ACTIONS(2200), - [anon_sym_loop] = ACTIONS(2200), - [anon_sym_match] = ACTIONS(2200), - [anon_sym_mod] = ACTIONS(2200), - [anon_sym_pub] = ACTIONS(2200), - [anon_sym_return] = ACTIONS(2200), - [anon_sym_static] = ACTIONS(2200), - [anon_sym_struct] = ACTIONS(2200), - [anon_sym_trait] = ACTIONS(2200), - [anon_sym_type] = ACTIONS(2200), - [anon_sym_union] = ACTIONS(2200), - [anon_sym_unsafe] = ACTIONS(2200), - [anon_sym_use] = ACTIONS(2200), - [anon_sym_while] = ACTIONS(2200), - [anon_sym_extern] = ACTIONS(2200), - [anon_sym_yield] = ACTIONS(2200), - [anon_sym_move] = ACTIONS(2200), - [anon_sym_try] = ACTIONS(2200), - [sym_integer_literal] = ACTIONS(2198), - [aux_sym_string_literal_token1] = ACTIONS(2198), - [sym_char_literal] = ACTIONS(2198), - [anon_sym_true] = ACTIONS(2200), - [anon_sym_false] = ACTIONS(2200), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2200), - [sym_super] = ACTIONS(2200), - [sym_crate] = ACTIONS(2200), - [sym_metavariable] = ACTIONS(2198), - [sym__raw_string_literal_start] = ACTIONS(2198), - [sym_float_literal] = ACTIONS(2198), + [ts_builtin_sym_end] = ACTIONS(2221), + [sym_identifier] = ACTIONS(2223), + [anon_sym_SEMI] = ACTIONS(2221), + [anon_sym_macro_rules_BANG] = ACTIONS(2221), + [anon_sym_LPAREN] = ACTIONS(2221), + [anon_sym_LBRACK] = ACTIONS(2221), + [anon_sym_LBRACE] = ACTIONS(2221), + [anon_sym_RBRACE] = ACTIONS(2221), + [anon_sym_STAR] = ACTIONS(2221), + [anon_sym_u8] = ACTIONS(2223), + [anon_sym_i8] = ACTIONS(2223), + [anon_sym_u16] = ACTIONS(2223), + [anon_sym_i16] = ACTIONS(2223), + [anon_sym_u32] = ACTIONS(2223), + [anon_sym_i32] = ACTIONS(2223), + [anon_sym_u64] = ACTIONS(2223), + [anon_sym_i64] = ACTIONS(2223), + [anon_sym_u128] = ACTIONS(2223), + [anon_sym_i128] = ACTIONS(2223), + [anon_sym_isize] = ACTIONS(2223), + [anon_sym_usize] = ACTIONS(2223), + [anon_sym_f32] = ACTIONS(2223), + [anon_sym_f64] = ACTIONS(2223), + [anon_sym_bool] = ACTIONS(2223), + [anon_sym_str] = ACTIONS(2223), + [anon_sym_char] = ACTIONS(2223), + [anon_sym_DASH] = ACTIONS(2221), + [anon_sym_BANG] = ACTIONS(2221), + [anon_sym_AMP] = ACTIONS(2221), + [anon_sym_PIPE] = ACTIONS(2221), + [anon_sym_LT] = ACTIONS(2221), + [anon_sym_DOT_DOT] = ACTIONS(2221), + [anon_sym_COLON_COLON] = ACTIONS(2221), + [anon_sym_POUND] = ACTIONS(2221), + [anon_sym_SQUOTE] = ACTIONS(2223), + [anon_sym_async] = ACTIONS(2223), + [anon_sym_break] = ACTIONS(2223), + [anon_sym_const] = ACTIONS(2223), + [anon_sym_continue] = ACTIONS(2223), + [anon_sym_default] = ACTIONS(2223), + [anon_sym_enum] = ACTIONS(2223), + [anon_sym_fn] = ACTIONS(2223), + [anon_sym_for] = ACTIONS(2223), + [anon_sym_gen] = ACTIONS(2223), + [anon_sym_if] = ACTIONS(2223), + [anon_sym_impl] = ACTIONS(2223), + [anon_sym_let] = ACTIONS(2223), + [anon_sym_loop] = ACTIONS(2223), + [anon_sym_match] = ACTIONS(2223), + [anon_sym_mod] = ACTIONS(2223), + [anon_sym_pub] = ACTIONS(2223), + [anon_sym_return] = ACTIONS(2223), + [anon_sym_static] = ACTIONS(2223), + [anon_sym_struct] = ACTIONS(2223), + [anon_sym_trait] = ACTIONS(2223), + [anon_sym_type] = ACTIONS(2223), + [anon_sym_union] = ACTIONS(2223), + [anon_sym_unsafe] = ACTIONS(2223), + [anon_sym_use] = ACTIONS(2223), + [anon_sym_while] = ACTIONS(2223), + [anon_sym_extern] = ACTIONS(2223), + [anon_sym_safe] = ACTIONS(2223), + [anon_sym_yield] = ACTIONS(2223), + [anon_sym_move] = ACTIONS(2223), + [anon_sym_try] = ACTIONS(2223), + [sym_integer_literal] = ACTIONS(2221), + [aux_sym_string_literal_token1] = ACTIONS(2221), + [sym_char_literal] = ACTIONS(2221), + [anon_sym_true] = ACTIONS(2223), + [anon_sym_false] = ACTIONS(2223), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(2223), + [sym_super] = ACTIONS(2223), + [sym_crate] = ACTIONS(2223), + [sym_metavariable] = ACTIONS(2221), + [sym__raw_string_literal_start] = ACTIONS(2221), + [sym_float_literal] = ACTIONS(2221), }, [STATE(594)] = { [sym_line_comment] = STATE(594), [sym_block_comment] = STATE(594), - [ts_builtin_sym_end] = ACTIONS(2202), - [sym_identifier] = ACTIONS(2204), - [anon_sym_SEMI] = ACTIONS(2202), - [anon_sym_macro_rules_BANG] = ACTIONS(2202), - [anon_sym_LPAREN] = ACTIONS(2202), - [anon_sym_LBRACK] = ACTIONS(2202), - [anon_sym_LBRACE] = ACTIONS(2202), - [anon_sym_RBRACE] = ACTIONS(2202), - [anon_sym_STAR] = ACTIONS(2202), - [anon_sym_u8] = ACTIONS(2204), - [anon_sym_i8] = ACTIONS(2204), - [anon_sym_u16] = ACTIONS(2204), - [anon_sym_i16] = ACTIONS(2204), - [anon_sym_u32] = ACTIONS(2204), - [anon_sym_i32] = ACTIONS(2204), - [anon_sym_u64] = ACTIONS(2204), - [anon_sym_i64] = ACTIONS(2204), - [anon_sym_u128] = ACTIONS(2204), - [anon_sym_i128] = ACTIONS(2204), - [anon_sym_isize] = ACTIONS(2204), - [anon_sym_usize] = ACTIONS(2204), - [anon_sym_f32] = ACTIONS(2204), - [anon_sym_f64] = ACTIONS(2204), - [anon_sym_bool] = ACTIONS(2204), - [anon_sym_str] = ACTIONS(2204), - [anon_sym_char] = ACTIONS(2204), - [anon_sym_DASH] = ACTIONS(2202), - [anon_sym_BANG] = ACTIONS(2202), - [anon_sym_AMP] = ACTIONS(2202), - [anon_sym_PIPE] = ACTIONS(2202), - [anon_sym_LT] = ACTIONS(2202), - [anon_sym_DOT_DOT] = ACTIONS(2202), - [anon_sym_COLON_COLON] = ACTIONS(2202), - [anon_sym_POUND] = ACTIONS(2202), - [anon_sym_SQUOTE] = ACTIONS(2204), - [anon_sym_async] = ACTIONS(2204), - [anon_sym_break] = ACTIONS(2204), - [anon_sym_const] = ACTIONS(2204), - [anon_sym_continue] = ACTIONS(2204), - [anon_sym_default] = ACTIONS(2204), - [anon_sym_enum] = ACTIONS(2204), - [anon_sym_fn] = ACTIONS(2204), - [anon_sym_for] = ACTIONS(2204), - [anon_sym_gen] = ACTIONS(2204), - [anon_sym_if] = ACTIONS(2204), - [anon_sym_impl] = ACTIONS(2204), - [anon_sym_let] = ACTIONS(2204), - [anon_sym_loop] = ACTIONS(2204), - [anon_sym_match] = ACTIONS(2204), - [anon_sym_mod] = ACTIONS(2204), - [anon_sym_pub] = ACTIONS(2204), - [anon_sym_return] = ACTIONS(2204), - [anon_sym_static] = ACTIONS(2204), - [anon_sym_struct] = ACTIONS(2204), - [anon_sym_trait] = ACTIONS(2204), - [anon_sym_type] = ACTIONS(2204), - [anon_sym_union] = ACTIONS(2204), - [anon_sym_unsafe] = ACTIONS(2204), - [anon_sym_use] = ACTIONS(2204), - [anon_sym_while] = ACTIONS(2204), - [anon_sym_extern] = ACTIONS(2204), - [anon_sym_yield] = ACTIONS(2204), - [anon_sym_move] = ACTIONS(2204), - [anon_sym_try] = ACTIONS(2204), - [sym_integer_literal] = ACTIONS(2202), - [aux_sym_string_literal_token1] = ACTIONS(2202), - [sym_char_literal] = ACTIONS(2202), - [anon_sym_true] = ACTIONS(2204), - [anon_sym_false] = ACTIONS(2204), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2204), - [sym_super] = ACTIONS(2204), - [sym_crate] = ACTIONS(2204), - [sym_metavariable] = ACTIONS(2202), - [sym__raw_string_literal_start] = ACTIONS(2202), - [sym_float_literal] = ACTIONS(2202), + [ts_builtin_sym_end] = ACTIONS(2225), + [sym_identifier] = ACTIONS(2227), + [anon_sym_SEMI] = ACTIONS(2225), + [anon_sym_macro_rules_BANG] = ACTIONS(2225), + [anon_sym_LPAREN] = ACTIONS(2225), + [anon_sym_LBRACK] = ACTIONS(2225), + [anon_sym_LBRACE] = ACTIONS(2225), + [anon_sym_RBRACE] = ACTIONS(2225), + [anon_sym_STAR] = ACTIONS(2225), + [anon_sym_u8] = ACTIONS(2227), + [anon_sym_i8] = ACTIONS(2227), + [anon_sym_u16] = ACTIONS(2227), + [anon_sym_i16] = ACTIONS(2227), + [anon_sym_u32] = ACTIONS(2227), + [anon_sym_i32] = ACTIONS(2227), + [anon_sym_u64] = ACTIONS(2227), + [anon_sym_i64] = ACTIONS(2227), + [anon_sym_u128] = ACTIONS(2227), + [anon_sym_i128] = ACTIONS(2227), + [anon_sym_isize] = ACTIONS(2227), + [anon_sym_usize] = ACTIONS(2227), + [anon_sym_f32] = ACTIONS(2227), + [anon_sym_f64] = ACTIONS(2227), + [anon_sym_bool] = ACTIONS(2227), + [anon_sym_str] = ACTIONS(2227), + [anon_sym_char] = ACTIONS(2227), + [anon_sym_DASH] = ACTIONS(2225), + [anon_sym_BANG] = ACTIONS(2225), + [anon_sym_AMP] = ACTIONS(2225), + [anon_sym_PIPE] = ACTIONS(2225), + [anon_sym_LT] = ACTIONS(2225), + [anon_sym_DOT_DOT] = ACTIONS(2225), + [anon_sym_COLON_COLON] = ACTIONS(2225), + [anon_sym_POUND] = ACTIONS(2225), + [anon_sym_SQUOTE] = ACTIONS(2227), + [anon_sym_async] = ACTIONS(2227), + [anon_sym_break] = ACTIONS(2227), + [anon_sym_const] = ACTIONS(2227), + [anon_sym_continue] = ACTIONS(2227), + [anon_sym_default] = ACTIONS(2227), + [anon_sym_enum] = ACTIONS(2227), + [anon_sym_fn] = ACTIONS(2227), + [anon_sym_for] = ACTIONS(2227), + [anon_sym_gen] = ACTIONS(2227), + [anon_sym_if] = ACTIONS(2227), + [anon_sym_impl] = ACTIONS(2227), + [anon_sym_let] = ACTIONS(2227), + [anon_sym_loop] = ACTIONS(2227), + [anon_sym_match] = ACTIONS(2227), + [anon_sym_mod] = ACTIONS(2227), + [anon_sym_pub] = ACTIONS(2227), + [anon_sym_return] = ACTIONS(2227), + [anon_sym_static] = ACTIONS(2227), + [anon_sym_struct] = ACTIONS(2227), + [anon_sym_trait] = ACTIONS(2227), + [anon_sym_type] = ACTIONS(2227), + [anon_sym_union] = ACTIONS(2227), + [anon_sym_unsafe] = ACTIONS(2227), + [anon_sym_use] = ACTIONS(2227), + [anon_sym_while] = ACTIONS(2227), + [anon_sym_extern] = ACTIONS(2227), + [anon_sym_safe] = ACTIONS(2227), + [anon_sym_yield] = ACTIONS(2227), + [anon_sym_move] = ACTIONS(2227), + [anon_sym_try] = ACTIONS(2227), + [sym_integer_literal] = ACTIONS(2225), + [aux_sym_string_literal_token1] = ACTIONS(2225), + [sym_char_literal] = ACTIONS(2225), + [anon_sym_true] = ACTIONS(2227), + [anon_sym_false] = ACTIONS(2227), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(2227), + [sym_super] = ACTIONS(2227), + [sym_crate] = ACTIONS(2227), + [sym_metavariable] = ACTIONS(2225), + [sym__raw_string_literal_start] = ACTIONS(2225), + [sym_float_literal] = ACTIONS(2225), }, [STATE(595)] = { [sym_line_comment] = STATE(595), [sym_block_comment] = STATE(595), - [ts_builtin_sym_end] = ACTIONS(2206), - [sym_identifier] = ACTIONS(2208), - [anon_sym_SEMI] = ACTIONS(2206), - [anon_sym_macro_rules_BANG] = ACTIONS(2206), - [anon_sym_LPAREN] = ACTIONS(2206), - [anon_sym_LBRACK] = ACTIONS(2206), - [anon_sym_LBRACE] = ACTIONS(2206), - [anon_sym_RBRACE] = ACTIONS(2206), - [anon_sym_STAR] = ACTIONS(2206), - [anon_sym_u8] = ACTIONS(2208), - [anon_sym_i8] = ACTIONS(2208), - [anon_sym_u16] = ACTIONS(2208), - [anon_sym_i16] = ACTIONS(2208), - [anon_sym_u32] = ACTIONS(2208), - [anon_sym_i32] = ACTIONS(2208), - [anon_sym_u64] = ACTIONS(2208), - [anon_sym_i64] = ACTIONS(2208), - [anon_sym_u128] = ACTIONS(2208), - [anon_sym_i128] = ACTIONS(2208), - [anon_sym_isize] = ACTIONS(2208), - [anon_sym_usize] = ACTIONS(2208), - [anon_sym_f32] = ACTIONS(2208), - [anon_sym_f64] = ACTIONS(2208), - [anon_sym_bool] = ACTIONS(2208), - [anon_sym_str] = ACTIONS(2208), - [anon_sym_char] = ACTIONS(2208), - [anon_sym_DASH] = ACTIONS(2206), - [anon_sym_BANG] = ACTIONS(2206), - [anon_sym_AMP] = ACTIONS(2206), - [anon_sym_PIPE] = ACTIONS(2206), - [anon_sym_LT] = ACTIONS(2206), - [anon_sym_DOT_DOT] = ACTIONS(2206), - [anon_sym_COLON_COLON] = ACTIONS(2206), - [anon_sym_POUND] = ACTIONS(2206), - [anon_sym_SQUOTE] = ACTIONS(2208), - [anon_sym_async] = ACTIONS(2208), - [anon_sym_break] = ACTIONS(2208), - [anon_sym_const] = ACTIONS(2208), - [anon_sym_continue] = ACTIONS(2208), - [anon_sym_default] = ACTIONS(2208), - [anon_sym_enum] = ACTIONS(2208), - [anon_sym_fn] = ACTIONS(2208), - [anon_sym_for] = ACTIONS(2208), - [anon_sym_gen] = ACTIONS(2208), - [anon_sym_if] = ACTIONS(2208), - [anon_sym_impl] = ACTIONS(2208), - [anon_sym_let] = ACTIONS(2208), - [anon_sym_loop] = ACTIONS(2208), - [anon_sym_match] = ACTIONS(2208), - [anon_sym_mod] = ACTIONS(2208), - [anon_sym_pub] = ACTIONS(2208), - [anon_sym_return] = ACTIONS(2208), - [anon_sym_static] = ACTIONS(2208), - [anon_sym_struct] = ACTIONS(2208), - [anon_sym_trait] = ACTIONS(2208), - [anon_sym_type] = ACTIONS(2208), - [anon_sym_union] = ACTIONS(2208), - [anon_sym_unsafe] = ACTIONS(2208), - [anon_sym_use] = ACTIONS(2208), - [anon_sym_while] = ACTIONS(2208), - [anon_sym_extern] = ACTIONS(2208), - [anon_sym_yield] = ACTIONS(2208), - [anon_sym_move] = ACTIONS(2208), - [anon_sym_try] = ACTIONS(2208), - [sym_integer_literal] = ACTIONS(2206), - [aux_sym_string_literal_token1] = ACTIONS(2206), - [sym_char_literal] = ACTIONS(2206), - [anon_sym_true] = ACTIONS(2208), - [anon_sym_false] = ACTIONS(2208), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2208), - [sym_super] = ACTIONS(2208), - [sym_crate] = ACTIONS(2208), - [sym_metavariable] = ACTIONS(2206), - [sym__raw_string_literal_start] = ACTIONS(2206), - [sym_float_literal] = ACTIONS(2206), + [ts_builtin_sym_end] = ACTIONS(2229), + [sym_identifier] = ACTIONS(2231), + [anon_sym_SEMI] = ACTIONS(2229), + [anon_sym_macro_rules_BANG] = ACTIONS(2229), + [anon_sym_LPAREN] = ACTIONS(2229), + [anon_sym_LBRACK] = ACTIONS(2229), + [anon_sym_LBRACE] = ACTIONS(2229), + [anon_sym_RBRACE] = ACTIONS(2229), + [anon_sym_STAR] = ACTIONS(2229), + [anon_sym_u8] = ACTIONS(2231), + [anon_sym_i8] = ACTIONS(2231), + [anon_sym_u16] = ACTIONS(2231), + [anon_sym_i16] = ACTIONS(2231), + [anon_sym_u32] = ACTIONS(2231), + [anon_sym_i32] = ACTIONS(2231), + [anon_sym_u64] = ACTIONS(2231), + [anon_sym_i64] = ACTIONS(2231), + [anon_sym_u128] = ACTIONS(2231), + [anon_sym_i128] = ACTIONS(2231), + [anon_sym_isize] = ACTIONS(2231), + [anon_sym_usize] = ACTIONS(2231), + [anon_sym_f32] = ACTIONS(2231), + [anon_sym_f64] = ACTIONS(2231), + [anon_sym_bool] = ACTIONS(2231), + [anon_sym_str] = ACTIONS(2231), + [anon_sym_char] = ACTIONS(2231), + [anon_sym_DASH] = ACTIONS(2229), + [anon_sym_BANG] = ACTIONS(2229), + [anon_sym_AMP] = ACTIONS(2229), + [anon_sym_PIPE] = ACTIONS(2229), + [anon_sym_LT] = ACTIONS(2229), + [anon_sym_DOT_DOT] = ACTIONS(2229), + [anon_sym_COLON_COLON] = ACTIONS(2229), + [anon_sym_POUND] = ACTIONS(2229), + [anon_sym_SQUOTE] = ACTIONS(2231), + [anon_sym_async] = ACTIONS(2231), + [anon_sym_break] = ACTIONS(2231), + [anon_sym_const] = ACTIONS(2231), + [anon_sym_continue] = ACTIONS(2231), + [anon_sym_default] = ACTIONS(2231), + [anon_sym_enum] = ACTIONS(2231), + [anon_sym_fn] = ACTIONS(2231), + [anon_sym_for] = ACTIONS(2231), + [anon_sym_gen] = ACTIONS(2231), + [anon_sym_if] = ACTIONS(2231), + [anon_sym_impl] = ACTIONS(2231), + [anon_sym_let] = ACTIONS(2231), + [anon_sym_loop] = ACTIONS(2231), + [anon_sym_match] = ACTIONS(2231), + [anon_sym_mod] = ACTIONS(2231), + [anon_sym_pub] = ACTIONS(2231), + [anon_sym_return] = ACTIONS(2231), + [anon_sym_static] = ACTIONS(2231), + [anon_sym_struct] = ACTIONS(2231), + [anon_sym_trait] = ACTIONS(2231), + [anon_sym_type] = ACTIONS(2231), + [anon_sym_union] = ACTIONS(2231), + [anon_sym_unsafe] = ACTIONS(2231), + [anon_sym_use] = ACTIONS(2231), + [anon_sym_while] = ACTIONS(2231), + [anon_sym_extern] = ACTIONS(2231), + [anon_sym_safe] = ACTIONS(2231), + [anon_sym_yield] = ACTIONS(2231), + [anon_sym_move] = ACTIONS(2231), + [anon_sym_try] = ACTIONS(2231), + [sym_integer_literal] = ACTIONS(2229), + [aux_sym_string_literal_token1] = ACTIONS(2229), + [sym_char_literal] = ACTIONS(2229), + [anon_sym_true] = ACTIONS(2231), + [anon_sym_false] = ACTIONS(2231), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(2231), + [sym_super] = ACTIONS(2231), + [sym_crate] = ACTIONS(2231), + [sym_metavariable] = ACTIONS(2229), + [sym__raw_string_literal_start] = ACTIONS(2229), + [sym_float_literal] = ACTIONS(2229), }, [STATE(596)] = { [sym_line_comment] = STATE(596), [sym_block_comment] = STATE(596), - [ts_builtin_sym_end] = ACTIONS(2210), - [sym_identifier] = ACTIONS(2212), - [anon_sym_SEMI] = ACTIONS(2210), - [anon_sym_macro_rules_BANG] = ACTIONS(2210), - [anon_sym_LPAREN] = ACTIONS(2210), - [anon_sym_LBRACK] = ACTIONS(2210), - [anon_sym_LBRACE] = ACTIONS(2210), - [anon_sym_RBRACE] = ACTIONS(2210), - [anon_sym_STAR] = ACTIONS(2210), - [anon_sym_u8] = ACTIONS(2212), - [anon_sym_i8] = ACTIONS(2212), - [anon_sym_u16] = ACTIONS(2212), - [anon_sym_i16] = ACTIONS(2212), - [anon_sym_u32] = ACTIONS(2212), - [anon_sym_i32] = ACTIONS(2212), - [anon_sym_u64] = ACTIONS(2212), - [anon_sym_i64] = ACTIONS(2212), - [anon_sym_u128] = ACTIONS(2212), - [anon_sym_i128] = ACTIONS(2212), - [anon_sym_isize] = ACTIONS(2212), - [anon_sym_usize] = ACTIONS(2212), - [anon_sym_f32] = ACTIONS(2212), - [anon_sym_f64] = ACTIONS(2212), - [anon_sym_bool] = ACTIONS(2212), - [anon_sym_str] = ACTIONS(2212), - [anon_sym_char] = ACTIONS(2212), - [anon_sym_DASH] = ACTIONS(2210), - [anon_sym_BANG] = ACTIONS(2210), - [anon_sym_AMP] = ACTIONS(2210), - [anon_sym_PIPE] = ACTIONS(2210), - [anon_sym_LT] = ACTIONS(2210), - [anon_sym_DOT_DOT] = ACTIONS(2210), - [anon_sym_COLON_COLON] = ACTIONS(2210), - [anon_sym_POUND] = ACTIONS(2210), - [anon_sym_SQUOTE] = ACTIONS(2212), - [anon_sym_async] = ACTIONS(2212), - [anon_sym_break] = ACTIONS(2212), - [anon_sym_const] = ACTIONS(2212), - [anon_sym_continue] = ACTIONS(2212), - [anon_sym_default] = ACTIONS(2212), - [anon_sym_enum] = ACTIONS(2212), - [anon_sym_fn] = ACTIONS(2212), - [anon_sym_for] = ACTIONS(2212), - [anon_sym_gen] = ACTIONS(2212), - [anon_sym_if] = ACTIONS(2212), - [anon_sym_impl] = ACTIONS(2212), - [anon_sym_let] = ACTIONS(2212), - [anon_sym_loop] = ACTIONS(2212), - [anon_sym_match] = ACTIONS(2212), - [anon_sym_mod] = ACTIONS(2212), - [anon_sym_pub] = ACTIONS(2212), - [anon_sym_return] = ACTIONS(2212), - [anon_sym_static] = ACTIONS(2212), - [anon_sym_struct] = ACTIONS(2212), - [anon_sym_trait] = ACTIONS(2212), - [anon_sym_type] = ACTIONS(2212), - [anon_sym_union] = ACTIONS(2212), - [anon_sym_unsafe] = ACTIONS(2212), - [anon_sym_use] = ACTIONS(2212), - [anon_sym_while] = ACTIONS(2212), - [anon_sym_extern] = ACTIONS(2212), - [anon_sym_yield] = ACTIONS(2212), - [anon_sym_move] = ACTIONS(2212), - [anon_sym_try] = ACTIONS(2212), - [sym_integer_literal] = ACTIONS(2210), - [aux_sym_string_literal_token1] = ACTIONS(2210), - [sym_char_literal] = ACTIONS(2210), - [anon_sym_true] = ACTIONS(2212), - [anon_sym_false] = ACTIONS(2212), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2212), - [sym_super] = ACTIONS(2212), - [sym_crate] = ACTIONS(2212), - [sym_metavariable] = ACTIONS(2210), - [sym__raw_string_literal_start] = ACTIONS(2210), - [sym_float_literal] = ACTIONS(2210), + [ts_builtin_sym_end] = ACTIONS(2233), + [sym_identifier] = ACTIONS(2235), + [anon_sym_SEMI] = ACTIONS(2233), + [anon_sym_macro_rules_BANG] = ACTIONS(2233), + [anon_sym_LPAREN] = ACTIONS(2233), + [anon_sym_LBRACK] = ACTIONS(2233), + [anon_sym_LBRACE] = ACTIONS(2233), + [anon_sym_RBRACE] = ACTIONS(2233), + [anon_sym_STAR] = ACTIONS(2233), + [anon_sym_u8] = ACTIONS(2235), + [anon_sym_i8] = ACTIONS(2235), + [anon_sym_u16] = ACTIONS(2235), + [anon_sym_i16] = ACTIONS(2235), + [anon_sym_u32] = ACTIONS(2235), + [anon_sym_i32] = ACTIONS(2235), + [anon_sym_u64] = ACTIONS(2235), + [anon_sym_i64] = ACTIONS(2235), + [anon_sym_u128] = ACTIONS(2235), + [anon_sym_i128] = ACTIONS(2235), + [anon_sym_isize] = ACTIONS(2235), + [anon_sym_usize] = ACTIONS(2235), + [anon_sym_f32] = ACTIONS(2235), + [anon_sym_f64] = ACTIONS(2235), + [anon_sym_bool] = ACTIONS(2235), + [anon_sym_str] = ACTIONS(2235), + [anon_sym_char] = ACTIONS(2235), + [anon_sym_DASH] = ACTIONS(2233), + [anon_sym_BANG] = ACTIONS(2233), + [anon_sym_AMP] = ACTIONS(2233), + [anon_sym_PIPE] = ACTIONS(2233), + [anon_sym_LT] = ACTIONS(2233), + [anon_sym_DOT_DOT] = ACTIONS(2233), + [anon_sym_COLON_COLON] = ACTIONS(2233), + [anon_sym_POUND] = ACTIONS(2233), + [anon_sym_SQUOTE] = ACTIONS(2235), + [anon_sym_async] = ACTIONS(2235), + [anon_sym_break] = ACTIONS(2235), + [anon_sym_const] = ACTIONS(2235), + [anon_sym_continue] = ACTIONS(2235), + [anon_sym_default] = ACTIONS(2235), + [anon_sym_enum] = ACTIONS(2235), + [anon_sym_fn] = ACTIONS(2235), + [anon_sym_for] = ACTIONS(2235), + [anon_sym_gen] = ACTIONS(2235), + [anon_sym_if] = ACTIONS(2235), + [anon_sym_impl] = ACTIONS(2235), + [anon_sym_let] = ACTIONS(2235), + [anon_sym_loop] = ACTIONS(2235), + [anon_sym_match] = ACTIONS(2235), + [anon_sym_mod] = ACTIONS(2235), + [anon_sym_pub] = ACTIONS(2235), + [anon_sym_return] = ACTIONS(2235), + [anon_sym_static] = ACTIONS(2235), + [anon_sym_struct] = ACTIONS(2235), + [anon_sym_trait] = ACTIONS(2235), + [anon_sym_type] = ACTIONS(2235), + [anon_sym_union] = ACTIONS(2235), + [anon_sym_unsafe] = ACTIONS(2235), + [anon_sym_use] = ACTIONS(2235), + [anon_sym_while] = ACTIONS(2235), + [anon_sym_extern] = ACTIONS(2235), + [anon_sym_safe] = ACTIONS(2235), + [anon_sym_yield] = ACTIONS(2235), + [anon_sym_move] = ACTIONS(2235), + [anon_sym_try] = ACTIONS(2235), + [sym_integer_literal] = ACTIONS(2233), + [aux_sym_string_literal_token1] = ACTIONS(2233), + [sym_char_literal] = ACTIONS(2233), + [anon_sym_true] = ACTIONS(2235), + [anon_sym_false] = ACTIONS(2235), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(2235), + [sym_super] = ACTIONS(2235), + [sym_crate] = ACTIONS(2235), + [sym_metavariable] = ACTIONS(2233), + [sym__raw_string_literal_start] = ACTIONS(2233), + [sym_float_literal] = ACTIONS(2233), }, [STATE(597)] = { [sym_line_comment] = STATE(597), [sym_block_comment] = STATE(597), - [ts_builtin_sym_end] = ACTIONS(2214), - [sym_identifier] = ACTIONS(2216), - [anon_sym_SEMI] = ACTIONS(2214), - [anon_sym_macro_rules_BANG] = ACTIONS(2214), - [anon_sym_LPAREN] = ACTIONS(2214), - [anon_sym_LBRACK] = ACTIONS(2214), - [anon_sym_LBRACE] = ACTIONS(2214), - [anon_sym_RBRACE] = ACTIONS(2214), - [anon_sym_STAR] = ACTIONS(2214), - [anon_sym_u8] = ACTIONS(2216), - [anon_sym_i8] = ACTIONS(2216), - [anon_sym_u16] = ACTIONS(2216), - [anon_sym_i16] = ACTIONS(2216), - [anon_sym_u32] = ACTIONS(2216), - [anon_sym_i32] = ACTIONS(2216), - [anon_sym_u64] = ACTIONS(2216), - [anon_sym_i64] = ACTIONS(2216), - [anon_sym_u128] = ACTIONS(2216), - [anon_sym_i128] = ACTIONS(2216), - [anon_sym_isize] = ACTIONS(2216), - [anon_sym_usize] = ACTIONS(2216), - [anon_sym_f32] = ACTIONS(2216), - [anon_sym_f64] = ACTIONS(2216), - [anon_sym_bool] = ACTIONS(2216), - [anon_sym_str] = ACTIONS(2216), - [anon_sym_char] = ACTIONS(2216), - [anon_sym_DASH] = ACTIONS(2214), - [anon_sym_BANG] = ACTIONS(2214), - [anon_sym_AMP] = ACTIONS(2214), - [anon_sym_PIPE] = ACTIONS(2214), - [anon_sym_LT] = ACTIONS(2214), - [anon_sym_DOT_DOT] = ACTIONS(2214), - [anon_sym_COLON_COLON] = ACTIONS(2214), - [anon_sym_POUND] = ACTIONS(2214), - [anon_sym_SQUOTE] = ACTIONS(2216), - [anon_sym_async] = ACTIONS(2216), - [anon_sym_break] = ACTIONS(2216), - [anon_sym_const] = ACTIONS(2216), - [anon_sym_continue] = ACTIONS(2216), - [anon_sym_default] = ACTIONS(2216), - [anon_sym_enum] = ACTIONS(2216), - [anon_sym_fn] = ACTIONS(2216), - [anon_sym_for] = ACTIONS(2216), - [anon_sym_gen] = ACTIONS(2216), - [anon_sym_if] = ACTIONS(2216), - [anon_sym_impl] = ACTIONS(2216), - [anon_sym_let] = ACTIONS(2216), - [anon_sym_loop] = ACTIONS(2216), - [anon_sym_match] = ACTIONS(2216), - [anon_sym_mod] = ACTIONS(2216), - [anon_sym_pub] = ACTIONS(2216), - [anon_sym_return] = ACTIONS(2216), - [anon_sym_static] = ACTIONS(2216), - [anon_sym_struct] = ACTIONS(2216), - [anon_sym_trait] = ACTIONS(2216), - [anon_sym_type] = ACTIONS(2216), - [anon_sym_union] = ACTIONS(2216), - [anon_sym_unsafe] = ACTIONS(2216), - [anon_sym_use] = ACTIONS(2216), - [anon_sym_while] = ACTIONS(2216), - [anon_sym_extern] = ACTIONS(2216), - [anon_sym_yield] = ACTIONS(2216), - [anon_sym_move] = ACTIONS(2216), - [anon_sym_try] = ACTIONS(2216), - [sym_integer_literal] = ACTIONS(2214), - [aux_sym_string_literal_token1] = ACTIONS(2214), - [sym_char_literal] = ACTIONS(2214), - [anon_sym_true] = ACTIONS(2216), - [anon_sym_false] = ACTIONS(2216), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2216), - [sym_super] = ACTIONS(2216), - [sym_crate] = ACTIONS(2216), - [sym_metavariable] = ACTIONS(2214), - [sym__raw_string_literal_start] = ACTIONS(2214), - [sym_float_literal] = ACTIONS(2214), + [ts_builtin_sym_end] = ACTIONS(2237), + [sym_identifier] = ACTIONS(2239), + [anon_sym_SEMI] = ACTIONS(2237), + [anon_sym_macro_rules_BANG] = ACTIONS(2237), + [anon_sym_LPAREN] = ACTIONS(2237), + [anon_sym_LBRACK] = ACTIONS(2237), + [anon_sym_LBRACE] = ACTIONS(2237), + [anon_sym_RBRACE] = ACTIONS(2237), + [anon_sym_STAR] = ACTIONS(2237), + [anon_sym_u8] = ACTIONS(2239), + [anon_sym_i8] = ACTIONS(2239), + [anon_sym_u16] = ACTIONS(2239), + [anon_sym_i16] = ACTIONS(2239), + [anon_sym_u32] = ACTIONS(2239), + [anon_sym_i32] = ACTIONS(2239), + [anon_sym_u64] = ACTIONS(2239), + [anon_sym_i64] = ACTIONS(2239), + [anon_sym_u128] = ACTIONS(2239), + [anon_sym_i128] = ACTIONS(2239), + [anon_sym_isize] = ACTIONS(2239), + [anon_sym_usize] = ACTIONS(2239), + [anon_sym_f32] = ACTIONS(2239), + [anon_sym_f64] = ACTIONS(2239), + [anon_sym_bool] = ACTIONS(2239), + [anon_sym_str] = ACTIONS(2239), + [anon_sym_char] = ACTIONS(2239), + [anon_sym_DASH] = ACTIONS(2237), + [anon_sym_BANG] = ACTIONS(2237), + [anon_sym_AMP] = ACTIONS(2237), + [anon_sym_PIPE] = ACTIONS(2237), + [anon_sym_LT] = ACTIONS(2237), + [anon_sym_DOT_DOT] = ACTIONS(2237), + [anon_sym_COLON_COLON] = ACTIONS(2237), + [anon_sym_POUND] = ACTIONS(2237), + [anon_sym_SQUOTE] = ACTIONS(2239), + [anon_sym_async] = ACTIONS(2239), + [anon_sym_break] = ACTIONS(2239), + [anon_sym_const] = ACTIONS(2239), + [anon_sym_continue] = ACTIONS(2239), + [anon_sym_default] = ACTIONS(2239), + [anon_sym_enum] = ACTIONS(2239), + [anon_sym_fn] = ACTIONS(2239), + [anon_sym_for] = ACTIONS(2239), + [anon_sym_gen] = ACTIONS(2239), + [anon_sym_if] = ACTIONS(2239), + [anon_sym_impl] = ACTIONS(2239), + [anon_sym_let] = ACTIONS(2239), + [anon_sym_loop] = ACTIONS(2239), + [anon_sym_match] = ACTIONS(2239), + [anon_sym_mod] = ACTIONS(2239), + [anon_sym_pub] = ACTIONS(2239), + [anon_sym_return] = ACTIONS(2239), + [anon_sym_static] = ACTIONS(2239), + [anon_sym_struct] = ACTIONS(2239), + [anon_sym_trait] = ACTIONS(2239), + [anon_sym_type] = ACTIONS(2239), + [anon_sym_union] = ACTIONS(2239), + [anon_sym_unsafe] = ACTIONS(2239), + [anon_sym_use] = ACTIONS(2239), + [anon_sym_while] = ACTIONS(2239), + [anon_sym_extern] = ACTIONS(2239), + [anon_sym_safe] = ACTIONS(2239), + [anon_sym_yield] = ACTIONS(2239), + [anon_sym_move] = ACTIONS(2239), + [anon_sym_try] = ACTIONS(2239), + [sym_integer_literal] = ACTIONS(2237), + [aux_sym_string_literal_token1] = ACTIONS(2237), + [sym_char_literal] = ACTIONS(2237), + [anon_sym_true] = ACTIONS(2239), + [anon_sym_false] = ACTIONS(2239), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(2239), + [sym_super] = ACTIONS(2239), + [sym_crate] = ACTIONS(2239), + [sym_metavariable] = ACTIONS(2237), + [sym__raw_string_literal_start] = ACTIONS(2237), + [sym_float_literal] = ACTIONS(2237), }, [STATE(598)] = { [sym_line_comment] = STATE(598), [sym_block_comment] = STATE(598), - [ts_builtin_sym_end] = ACTIONS(2218), - [sym_identifier] = ACTIONS(2220), - [anon_sym_SEMI] = ACTIONS(2218), - [anon_sym_macro_rules_BANG] = ACTIONS(2218), - [anon_sym_LPAREN] = ACTIONS(2218), - [anon_sym_LBRACK] = ACTIONS(2218), - [anon_sym_LBRACE] = ACTIONS(2218), - [anon_sym_RBRACE] = ACTIONS(2218), - [anon_sym_STAR] = ACTIONS(2218), - [anon_sym_u8] = ACTIONS(2220), - [anon_sym_i8] = ACTIONS(2220), - [anon_sym_u16] = ACTIONS(2220), - [anon_sym_i16] = ACTIONS(2220), - [anon_sym_u32] = ACTIONS(2220), - [anon_sym_i32] = ACTIONS(2220), - [anon_sym_u64] = ACTIONS(2220), - [anon_sym_i64] = ACTIONS(2220), - [anon_sym_u128] = ACTIONS(2220), - [anon_sym_i128] = ACTIONS(2220), - [anon_sym_isize] = ACTIONS(2220), - [anon_sym_usize] = ACTIONS(2220), - [anon_sym_f32] = ACTIONS(2220), - [anon_sym_f64] = ACTIONS(2220), - [anon_sym_bool] = ACTIONS(2220), - [anon_sym_str] = ACTIONS(2220), - [anon_sym_char] = ACTIONS(2220), - [anon_sym_DASH] = ACTIONS(2218), - [anon_sym_BANG] = ACTIONS(2218), - [anon_sym_AMP] = ACTIONS(2218), - [anon_sym_PIPE] = ACTIONS(2218), - [anon_sym_LT] = ACTIONS(2218), - [anon_sym_DOT_DOT] = ACTIONS(2218), - [anon_sym_COLON_COLON] = ACTIONS(2218), - [anon_sym_POUND] = ACTIONS(2218), - [anon_sym_SQUOTE] = ACTIONS(2220), - [anon_sym_async] = ACTIONS(2220), - [anon_sym_break] = ACTIONS(2220), - [anon_sym_const] = ACTIONS(2220), - [anon_sym_continue] = ACTIONS(2220), - [anon_sym_default] = ACTIONS(2220), - [anon_sym_enum] = ACTIONS(2220), - [anon_sym_fn] = ACTIONS(2220), - [anon_sym_for] = ACTIONS(2220), - [anon_sym_gen] = ACTIONS(2220), - [anon_sym_if] = ACTIONS(2220), - [anon_sym_impl] = ACTIONS(2220), - [anon_sym_let] = ACTIONS(2220), - [anon_sym_loop] = ACTIONS(2220), - [anon_sym_match] = ACTIONS(2220), - [anon_sym_mod] = ACTIONS(2220), - [anon_sym_pub] = ACTIONS(2220), - [anon_sym_return] = ACTIONS(2220), - [anon_sym_static] = ACTIONS(2220), - [anon_sym_struct] = ACTIONS(2220), - [anon_sym_trait] = ACTIONS(2220), - [anon_sym_type] = ACTIONS(2220), - [anon_sym_union] = ACTIONS(2220), - [anon_sym_unsafe] = ACTIONS(2220), - [anon_sym_use] = ACTIONS(2220), - [anon_sym_while] = ACTIONS(2220), - [anon_sym_extern] = ACTIONS(2220), - [anon_sym_yield] = ACTIONS(2220), - [anon_sym_move] = ACTIONS(2220), - [anon_sym_try] = ACTIONS(2220), - [sym_integer_literal] = ACTIONS(2218), - [aux_sym_string_literal_token1] = ACTIONS(2218), - [sym_char_literal] = ACTIONS(2218), - [anon_sym_true] = ACTIONS(2220), - [anon_sym_false] = ACTIONS(2220), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2220), - [sym_super] = ACTIONS(2220), - [sym_crate] = ACTIONS(2220), - [sym_metavariable] = ACTIONS(2218), - [sym__raw_string_literal_start] = ACTIONS(2218), - [sym_float_literal] = ACTIONS(2218), + [ts_builtin_sym_end] = ACTIONS(2241), + [sym_identifier] = ACTIONS(2243), + [anon_sym_SEMI] = ACTIONS(2241), + [anon_sym_macro_rules_BANG] = ACTIONS(2241), + [anon_sym_LPAREN] = ACTIONS(2241), + [anon_sym_LBRACK] = ACTIONS(2241), + [anon_sym_LBRACE] = ACTIONS(2241), + [anon_sym_RBRACE] = ACTIONS(2241), + [anon_sym_STAR] = ACTIONS(2241), + [anon_sym_u8] = ACTIONS(2243), + [anon_sym_i8] = ACTIONS(2243), + [anon_sym_u16] = ACTIONS(2243), + [anon_sym_i16] = ACTIONS(2243), + [anon_sym_u32] = ACTIONS(2243), + [anon_sym_i32] = ACTIONS(2243), + [anon_sym_u64] = ACTIONS(2243), + [anon_sym_i64] = ACTIONS(2243), + [anon_sym_u128] = ACTIONS(2243), + [anon_sym_i128] = ACTIONS(2243), + [anon_sym_isize] = ACTIONS(2243), + [anon_sym_usize] = ACTIONS(2243), + [anon_sym_f32] = ACTIONS(2243), + [anon_sym_f64] = ACTIONS(2243), + [anon_sym_bool] = ACTIONS(2243), + [anon_sym_str] = ACTIONS(2243), + [anon_sym_char] = ACTIONS(2243), + [anon_sym_DASH] = ACTIONS(2241), + [anon_sym_BANG] = ACTIONS(2241), + [anon_sym_AMP] = ACTIONS(2241), + [anon_sym_PIPE] = ACTIONS(2241), + [anon_sym_LT] = ACTIONS(2241), + [anon_sym_DOT_DOT] = ACTIONS(2241), + [anon_sym_COLON_COLON] = ACTIONS(2241), + [anon_sym_POUND] = ACTIONS(2241), + [anon_sym_SQUOTE] = ACTIONS(2243), + [anon_sym_async] = ACTIONS(2243), + [anon_sym_break] = ACTIONS(2243), + [anon_sym_const] = ACTIONS(2243), + [anon_sym_continue] = ACTIONS(2243), + [anon_sym_default] = ACTIONS(2243), + [anon_sym_enum] = ACTIONS(2243), + [anon_sym_fn] = ACTIONS(2243), + [anon_sym_for] = ACTIONS(2243), + [anon_sym_gen] = ACTIONS(2243), + [anon_sym_if] = ACTIONS(2243), + [anon_sym_impl] = ACTIONS(2243), + [anon_sym_let] = ACTIONS(2243), + [anon_sym_loop] = ACTIONS(2243), + [anon_sym_match] = ACTIONS(2243), + [anon_sym_mod] = ACTIONS(2243), + [anon_sym_pub] = ACTIONS(2243), + [anon_sym_return] = ACTIONS(2243), + [anon_sym_static] = ACTIONS(2243), + [anon_sym_struct] = ACTIONS(2243), + [anon_sym_trait] = ACTIONS(2243), + [anon_sym_type] = ACTIONS(2243), + [anon_sym_union] = ACTIONS(2243), + [anon_sym_unsafe] = ACTIONS(2243), + [anon_sym_use] = ACTIONS(2243), + [anon_sym_while] = ACTIONS(2243), + [anon_sym_extern] = ACTIONS(2243), + [anon_sym_safe] = ACTIONS(2243), + [anon_sym_yield] = ACTIONS(2243), + [anon_sym_move] = ACTIONS(2243), + [anon_sym_try] = ACTIONS(2243), + [sym_integer_literal] = ACTIONS(2241), + [aux_sym_string_literal_token1] = ACTIONS(2241), + [sym_char_literal] = ACTIONS(2241), + [anon_sym_true] = ACTIONS(2243), + [anon_sym_false] = ACTIONS(2243), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(2243), + [sym_super] = ACTIONS(2243), + [sym_crate] = ACTIONS(2243), + [sym_metavariable] = ACTIONS(2241), + [sym__raw_string_literal_start] = ACTIONS(2241), + [sym_float_literal] = ACTIONS(2241), }, [STATE(599)] = { [sym_line_comment] = STATE(599), [sym_block_comment] = STATE(599), - [ts_builtin_sym_end] = ACTIONS(2222), - [sym_identifier] = ACTIONS(2224), - [anon_sym_SEMI] = ACTIONS(2222), - [anon_sym_macro_rules_BANG] = ACTIONS(2222), - [anon_sym_LPAREN] = ACTIONS(2222), - [anon_sym_LBRACK] = ACTIONS(2222), - [anon_sym_LBRACE] = ACTIONS(2222), - [anon_sym_RBRACE] = ACTIONS(2222), - [anon_sym_STAR] = ACTIONS(2222), - [anon_sym_u8] = ACTIONS(2224), - [anon_sym_i8] = ACTIONS(2224), - [anon_sym_u16] = ACTIONS(2224), - [anon_sym_i16] = ACTIONS(2224), - [anon_sym_u32] = ACTIONS(2224), - [anon_sym_i32] = ACTIONS(2224), - [anon_sym_u64] = ACTIONS(2224), - [anon_sym_i64] = ACTIONS(2224), - [anon_sym_u128] = ACTIONS(2224), - [anon_sym_i128] = ACTIONS(2224), - [anon_sym_isize] = ACTIONS(2224), - [anon_sym_usize] = ACTIONS(2224), - [anon_sym_f32] = ACTIONS(2224), - [anon_sym_f64] = ACTIONS(2224), - [anon_sym_bool] = ACTIONS(2224), - [anon_sym_str] = ACTIONS(2224), - [anon_sym_char] = ACTIONS(2224), - [anon_sym_DASH] = ACTIONS(2222), - [anon_sym_BANG] = ACTIONS(2222), - [anon_sym_AMP] = ACTIONS(2222), - [anon_sym_PIPE] = ACTIONS(2222), - [anon_sym_LT] = ACTIONS(2222), - [anon_sym_DOT_DOT] = ACTIONS(2222), - [anon_sym_COLON_COLON] = ACTIONS(2222), - [anon_sym_POUND] = ACTIONS(2222), - [anon_sym_SQUOTE] = ACTIONS(2224), - [anon_sym_async] = ACTIONS(2224), - [anon_sym_break] = ACTIONS(2224), - [anon_sym_const] = ACTIONS(2224), - [anon_sym_continue] = ACTIONS(2224), - [anon_sym_default] = ACTIONS(2224), - [anon_sym_enum] = ACTIONS(2224), - [anon_sym_fn] = ACTIONS(2224), - [anon_sym_for] = ACTIONS(2224), - [anon_sym_gen] = ACTIONS(2224), - [anon_sym_if] = ACTIONS(2224), - [anon_sym_impl] = ACTIONS(2224), - [anon_sym_let] = ACTIONS(2224), - [anon_sym_loop] = ACTIONS(2224), - [anon_sym_match] = ACTIONS(2224), - [anon_sym_mod] = ACTIONS(2224), - [anon_sym_pub] = ACTIONS(2224), - [anon_sym_return] = ACTIONS(2224), - [anon_sym_static] = ACTIONS(2224), - [anon_sym_struct] = ACTIONS(2224), - [anon_sym_trait] = ACTIONS(2224), - [anon_sym_type] = ACTIONS(2224), - [anon_sym_union] = ACTIONS(2224), - [anon_sym_unsafe] = ACTIONS(2224), - [anon_sym_use] = ACTIONS(2224), - [anon_sym_while] = ACTIONS(2224), - [anon_sym_extern] = ACTIONS(2224), - [anon_sym_yield] = ACTIONS(2224), - [anon_sym_move] = ACTIONS(2224), - [anon_sym_try] = ACTIONS(2224), - [sym_integer_literal] = ACTIONS(2222), - [aux_sym_string_literal_token1] = ACTIONS(2222), - [sym_char_literal] = ACTIONS(2222), - [anon_sym_true] = ACTIONS(2224), - [anon_sym_false] = ACTIONS(2224), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2224), - [sym_super] = ACTIONS(2224), - [sym_crate] = ACTIONS(2224), - [sym_metavariable] = ACTIONS(2222), - [sym__raw_string_literal_start] = ACTIONS(2222), - [sym_float_literal] = ACTIONS(2222), + [ts_builtin_sym_end] = ACTIONS(1408), + [sym_identifier] = ACTIONS(1410), + [anon_sym_SEMI] = ACTIONS(1408), + [anon_sym_macro_rules_BANG] = ACTIONS(1408), + [anon_sym_LPAREN] = ACTIONS(1408), + [anon_sym_LBRACK] = ACTIONS(1408), + [anon_sym_LBRACE] = ACTIONS(1408), + [anon_sym_RBRACE] = ACTIONS(1408), + [anon_sym_STAR] = ACTIONS(1408), + [anon_sym_u8] = ACTIONS(1410), + [anon_sym_i8] = ACTIONS(1410), + [anon_sym_u16] = ACTIONS(1410), + [anon_sym_i16] = ACTIONS(1410), + [anon_sym_u32] = ACTIONS(1410), + [anon_sym_i32] = ACTIONS(1410), + [anon_sym_u64] = ACTIONS(1410), + [anon_sym_i64] = ACTIONS(1410), + [anon_sym_u128] = ACTIONS(1410), + [anon_sym_i128] = ACTIONS(1410), + [anon_sym_isize] = ACTIONS(1410), + [anon_sym_usize] = ACTIONS(1410), + [anon_sym_f32] = ACTIONS(1410), + [anon_sym_f64] = ACTIONS(1410), + [anon_sym_bool] = ACTIONS(1410), + [anon_sym_str] = ACTIONS(1410), + [anon_sym_char] = ACTIONS(1410), + [anon_sym_DASH] = ACTIONS(1408), + [anon_sym_BANG] = ACTIONS(1408), + [anon_sym_AMP] = ACTIONS(1408), + [anon_sym_PIPE] = ACTIONS(1408), + [anon_sym_LT] = ACTIONS(1408), + [anon_sym_DOT_DOT] = ACTIONS(1408), + [anon_sym_COLON_COLON] = ACTIONS(1408), + [anon_sym_POUND] = ACTIONS(1408), + [anon_sym_SQUOTE] = ACTIONS(1410), + [anon_sym_async] = ACTIONS(1410), + [anon_sym_break] = ACTIONS(1410), + [anon_sym_const] = ACTIONS(1410), + [anon_sym_continue] = ACTIONS(1410), + [anon_sym_default] = ACTIONS(1410), + [anon_sym_enum] = ACTIONS(1410), + [anon_sym_fn] = ACTIONS(1410), + [anon_sym_for] = ACTIONS(1410), + [anon_sym_gen] = ACTIONS(1410), + [anon_sym_if] = ACTIONS(1410), + [anon_sym_impl] = ACTIONS(1410), + [anon_sym_let] = ACTIONS(1410), + [anon_sym_loop] = ACTIONS(1410), + [anon_sym_match] = ACTIONS(1410), + [anon_sym_mod] = ACTIONS(1410), + [anon_sym_pub] = ACTIONS(1410), + [anon_sym_return] = ACTIONS(1410), + [anon_sym_static] = ACTIONS(1410), + [anon_sym_struct] = ACTIONS(1410), + [anon_sym_trait] = ACTIONS(1410), + [anon_sym_type] = ACTIONS(1410), + [anon_sym_union] = ACTIONS(1410), + [anon_sym_unsafe] = ACTIONS(1410), + [anon_sym_use] = ACTIONS(1410), + [anon_sym_while] = ACTIONS(1410), + [anon_sym_extern] = ACTIONS(1410), + [anon_sym_safe] = ACTIONS(1410), + [anon_sym_yield] = ACTIONS(1410), + [anon_sym_move] = ACTIONS(1410), + [anon_sym_try] = ACTIONS(1410), + [sym_integer_literal] = ACTIONS(1408), + [aux_sym_string_literal_token1] = ACTIONS(1408), + [sym_char_literal] = ACTIONS(1408), + [anon_sym_true] = ACTIONS(1410), + [anon_sym_false] = ACTIONS(1410), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1410), + [sym_super] = ACTIONS(1410), + [sym_crate] = ACTIONS(1410), + [sym_metavariable] = ACTIONS(1408), + [sym__raw_string_literal_start] = ACTIONS(1408), + [sym_float_literal] = ACTIONS(1408), }, [STATE(600)] = { [sym_line_comment] = STATE(600), [sym_block_comment] = STATE(600), - [ts_builtin_sym_end] = ACTIONS(2226), - [sym_identifier] = ACTIONS(2228), - [anon_sym_SEMI] = ACTIONS(2226), - [anon_sym_macro_rules_BANG] = ACTIONS(2226), - [anon_sym_LPAREN] = ACTIONS(2226), - [anon_sym_LBRACK] = ACTIONS(2226), - [anon_sym_LBRACE] = ACTIONS(2226), - [anon_sym_RBRACE] = ACTIONS(2226), - [anon_sym_STAR] = ACTIONS(2226), - [anon_sym_u8] = ACTIONS(2228), - [anon_sym_i8] = ACTIONS(2228), - [anon_sym_u16] = ACTIONS(2228), - [anon_sym_i16] = ACTIONS(2228), - [anon_sym_u32] = ACTIONS(2228), - [anon_sym_i32] = ACTIONS(2228), - [anon_sym_u64] = ACTIONS(2228), - [anon_sym_i64] = ACTIONS(2228), - [anon_sym_u128] = ACTIONS(2228), - [anon_sym_i128] = ACTIONS(2228), - [anon_sym_isize] = ACTIONS(2228), - [anon_sym_usize] = ACTIONS(2228), - [anon_sym_f32] = ACTIONS(2228), - [anon_sym_f64] = ACTIONS(2228), - [anon_sym_bool] = ACTIONS(2228), - [anon_sym_str] = ACTIONS(2228), - [anon_sym_char] = ACTIONS(2228), - [anon_sym_DASH] = ACTIONS(2226), - [anon_sym_BANG] = ACTIONS(2226), - [anon_sym_AMP] = ACTIONS(2226), - [anon_sym_PIPE] = ACTIONS(2226), - [anon_sym_LT] = ACTIONS(2226), - [anon_sym_DOT_DOT] = ACTIONS(2226), - [anon_sym_COLON_COLON] = ACTIONS(2226), - [anon_sym_POUND] = ACTIONS(2226), - [anon_sym_SQUOTE] = ACTIONS(2228), - [anon_sym_async] = ACTIONS(2228), - [anon_sym_break] = ACTIONS(2228), - [anon_sym_const] = ACTIONS(2228), - [anon_sym_continue] = ACTIONS(2228), - [anon_sym_default] = ACTIONS(2228), - [anon_sym_enum] = ACTIONS(2228), - [anon_sym_fn] = ACTIONS(2228), - [anon_sym_for] = ACTIONS(2228), - [anon_sym_gen] = ACTIONS(2228), - [anon_sym_if] = ACTIONS(2228), - [anon_sym_impl] = ACTIONS(2228), - [anon_sym_let] = ACTIONS(2228), - [anon_sym_loop] = ACTIONS(2228), - [anon_sym_match] = ACTIONS(2228), - [anon_sym_mod] = ACTIONS(2228), - [anon_sym_pub] = ACTIONS(2228), - [anon_sym_return] = ACTIONS(2228), - [anon_sym_static] = ACTIONS(2228), - [anon_sym_struct] = ACTIONS(2228), - [anon_sym_trait] = ACTIONS(2228), - [anon_sym_type] = ACTIONS(2228), - [anon_sym_union] = ACTIONS(2228), - [anon_sym_unsafe] = ACTIONS(2228), - [anon_sym_use] = ACTIONS(2228), - [anon_sym_while] = ACTIONS(2228), - [anon_sym_extern] = ACTIONS(2228), - [anon_sym_yield] = ACTIONS(2228), - [anon_sym_move] = ACTIONS(2228), - [anon_sym_try] = ACTIONS(2228), - [sym_integer_literal] = ACTIONS(2226), - [aux_sym_string_literal_token1] = ACTIONS(2226), - [sym_char_literal] = ACTIONS(2226), - [anon_sym_true] = ACTIONS(2228), - [anon_sym_false] = ACTIONS(2228), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2228), - [sym_super] = ACTIONS(2228), - [sym_crate] = ACTIONS(2228), - [sym_metavariable] = ACTIONS(2226), - [sym__raw_string_literal_start] = ACTIONS(2226), - [sym_float_literal] = ACTIONS(2226), + [ts_builtin_sym_end] = ACTIONS(2245), + [sym_identifier] = ACTIONS(2247), + [anon_sym_SEMI] = ACTIONS(2245), + [anon_sym_macro_rules_BANG] = ACTIONS(2245), + [anon_sym_LPAREN] = ACTIONS(2245), + [anon_sym_LBRACK] = ACTIONS(2245), + [anon_sym_LBRACE] = ACTIONS(2245), + [anon_sym_RBRACE] = ACTIONS(2245), + [anon_sym_STAR] = ACTIONS(2245), + [anon_sym_u8] = ACTIONS(2247), + [anon_sym_i8] = ACTIONS(2247), + [anon_sym_u16] = ACTIONS(2247), + [anon_sym_i16] = ACTIONS(2247), + [anon_sym_u32] = ACTIONS(2247), + [anon_sym_i32] = ACTIONS(2247), + [anon_sym_u64] = ACTIONS(2247), + [anon_sym_i64] = ACTIONS(2247), + [anon_sym_u128] = ACTIONS(2247), + [anon_sym_i128] = ACTIONS(2247), + [anon_sym_isize] = ACTIONS(2247), + [anon_sym_usize] = ACTIONS(2247), + [anon_sym_f32] = ACTIONS(2247), + [anon_sym_f64] = ACTIONS(2247), + [anon_sym_bool] = ACTIONS(2247), + [anon_sym_str] = ACTIONS(2247), + [anon_sym_char] = ACTIONS(2247), + [anon_sym_DASH] = ACTIONS(2245), + [anon_sym_BANG] = ACTIONS(2245), + [anon_sym_AMP] = ACTIONS(2245), + [anon_sym_PIPE] = ACTIONS(2245), + [anon_sym_LT] = ACTIONS(2245), + [anon_sym_DOT_DOT] = ACTIONS(2245), + [anon_sym_COLON_COLON] = ACTIONS(2245), + [anon_sym_POUND] = ACTIONS(2245), + [anon_sym_SQUOTE] = ACTIONS(2247), + [anon_sym_async] = ACTIONS(2247), + [anon_sym_break] = ACTIONS(2247), + [anon_sym_const] = ACTIONS(2247), + [anon_sym_continue] = ACTIONS(2247), + [anon_sym_default] = ACTIONS(2247), + [anon_sym_enum] = ACTIONS(2247), + [anon_sym_fn] = ACTIONS(2247), + [anon_sym_for] = ACTIONS(2247), + [anon_sym_gen] = ACTIONS(2247), + [anon_sym_if] = ACTIONS(2247), + [anon_sym_impl] = ACTIONS(2247), + [anon_sym_let] = ACTIONS(2247), + [anon_sym_loop] = ACTIONS(2247), + [anon_sym_match] = ACTIONS(2247), + [anon_sym_mod] = ACTIONS(2247), + [anon_sym_pub] = ACTIONS(2247), + [anon_sym_return] = ACTIONS(2247), + [anon_sym_static] = ACTIONS(2247), + [anon_sym_struct] = ACTIONS(2247), + [anon_sym_trait] = ACTIONS(2247), + [anon_sym_type] = ACTIONS(2247), + [anon_sym_union] = ACTIONS(2247), + [anon_sym_unsafe] = ACTIONS(2247), + [anon_sym_use] = ACTIONS(2247), + [anon_sym_while] = ACTIONS(2247), + [anon_sym_extern] = ACTIONS(2247), + [anon_sym_safe] = ACTIONS(2247), + [anon_sym_yield] = ACTIONS(2247), + [anon_sym_move] = ACTIONS(2247), + [anon_sym_try] = ACTIONS(2247), + [sym_integer_literal] = ACTIONS(2245), + [aux_sym_string_literal_token1] = ACTIONS(2245), + [sym_char_literal] = ACTIONS(2245), + [anon_sym_true] = ACTIONS(2247), + [anon_sym_false] = ACTIONS(2247), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(2247), + [sym_super] = ACTIONS(2247), + [sym_crate] = ACTIONS(2247), + [sym_metavariable] = ACTIONS(2245), + [sym__raw_string_literal_start] = ACTIONS(2245), + [sym_float_literal] = ACTIONS(2245), }, [STATE(601)] = { [sym_line_comment] = STATE(601), [sym_block_comment] = STATE(601), - [ts_builtin_sym_end] = ACTIONS(2230), - [sym_identifier] = ACTIONS(2232), - [anon_sym_SEMI] = ACTIONS(2230), - [anon_sym_macro_rules_BANG] = ACTIONS(2230), - [anon_sym_LPAREN] = ACTIONS(2230), - [anon_sym_LBRACK] = ACTIONS(2230), - [anon_sym_LBRACE] = ACTIONS(2230), - [anon_sym_RBRACE] = ACTIONS(2230), - [anon_sym_STAR] = ACTIONS(2230), - [anon_sym_u8] = ACTIONS(2232), - [anon_sym_i8] = ACTIONS(2232), - [anon_sym_u16] = ACTIONS(2232), - [anon_sym_i16] = ACTIONS(2232), - [anon_sym_u32] = ACTIONS(2232), - [anon_sym_i32] = ACTIONS(2232), - [anon_sym_u64] = ACTIONS(2232), - [anon_sym_i64] = ACTIONS(2232), - [anon_sym_u128] = ACTIONS(2232), - [anon_sym_i128] = ACTIONS(2232), - [anon_sym_isize] = ACTIONS(2232), - [anon_sym_usize] = ACTIONS(2232), - [anon_sym_f32] = ACTIONS(2232), - [anon_sym_f64] = ACTIONS(2232), - [anon_sym_bool] = ACTIONS(2232), - [anon_sym_str] = ACTIONS(2232), - [anon_sym_char] = ACTIONS(2232), - [anon_sym_DASH] = ACTIONS(2230), - [anon_sym_BANG] = ACTIONS(2230), - [anon_sym_AMP] = ACTIONS(2230), - [anon_sym_PIPE] = ACTIONS(2230), - [anon_sym_LT] = ACTIONS(2230), - [anon_sym_DOT_DOT] = ACTIONS(2230), - [anon_sym_COLON_COLON] = ACTIONS(2230), - [anon_sym_POUND] = ACTIONS(2230), - [anon_sym_SQUOTE] = ACTIONS(2232), - [anon_sym_async] = ACTIONS(2232), - [anon_sym_break] = ACTIONS(2232), - [anon_sym_const] = ACTIONS(2232), - [anon_sym_continue] = ACTIONS(2232), - [anon_sym_default] = ACTIONS(2232), - [anon_sym_enum] = ACTIONS(2232), - [anon_sym_fn] = ACTIONS(2232), - [anon_sym_for] = ACTIONS(2232), - [anon_sym_gen] = ACTIONS(2232), - [anon_sym_if] = ACTIONS(2232), - [anon_sym_impl] = ACTIONS(2232), - [anon_sym_let] = ACTIONS(2232), - [anon_sym_loop] = ACTIONS(2232), - [anon_sym_match] = ACTIONS(2232), - [anon_sym_mod] = ACTIONS(2232), - [anon_sym_pub] = ACTIONS(2232), - [anon_sym_return] = ACTIONS(2232), - [anon_sym_static] = ACTIONS(2232), - [anon_sym_struct] = ACTIONS(2232), - [anon_sym_trait] = ACTIONS(2232), - [anon_sym_type] = ACTIONS(2232), - [anon_sym_union] = ACTIONS(2232), - [anon_sym_unsafe] = ACTIONS(2232), - [anon_sym_use] = ACTIONS(2232), - [anon_sym_while] = ACTIONS(2232), - [anon_sym_extern] = ACTIONS(2232), - [anon_sym_yield] = ACTIONS(2232), - [anon_sym_move] = ACTIONS(2232), - [anon_sym_try] = ACTIONS(2232), - [sym_integer_literal] = ACTIONS(2230), - [aux_sym_string_literal_token1] = ACTIONS(2230), - [sym_char_literal] = ACTIONS(2230), - [anon_sym_true] = ACTIONS(2232), - [anon_sym_false] = ACTIONS(2232), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2232), - [sym_super] = ACTIONS(2232), - [sym_crate] = ACTIONS(2232), - [sym_metavariable] = ACTIONS(2230), - [sym__raw_string_literal_start] = ACTIONS(2230), - [sym_float_literal] = ACTIONS(2230), + [ts_builtin_sym_end] = ACTIONS(2249), + [sym_identifier] = ACTIONS(2251), + [anon_sym_SEMI] = ACTIONS(2249), + [anon_sym_macro_rules_BANG] = ACTIONS(2249), + [anon_sym_LPAREN] = ACTIONS(2249), + [anon_sym_LBRACK] = ACTIONS(2249), + [anon_sym_LBRACE] = ACTIONS(2249), + [anon_sym_RBRACE] = ACTIONS(2249), + [anon_sym_STAR] = ACTIONS(2249), + [anon_sym_u8] = ACTIONS(2251), + [anon_sym_i8] = ACTIONS(2251), + [anon_sym_u16] = ACTIONS(2251), + [anon_sym_i16] = ACTIONS(2251), + [anon_sym_u32] = ACTIONS(2251), + [anon_sym_i32] = ACTIONS(2251), + [anon_sym_u64] = ACTIONS(2251), + [anon_sym_i64] = ACTIONS(2251), + [anon_sym_u128] = ACTIONS(2251), + [anon_sym_i128] = ACTIONS(2251), + [anon_sym_isize] = ACTIONS(2251), + [anon_sym_usize] = ACTIONS(2251), + [anon_sym_f32] = ACTIONS(2251), + [anon_sym_f64] = ACTIONS(2251), + [anon_sym_bool] = ACTIONS(2251), + [anon_sym_str] = ACTIONS(2251), + [anon_sym_char] = ACTIONS(2251), + [anon_sym_DASH] = ACTIONS(2249), + [anon_sym_BANG] = ACTIONS(2249), + [anon_sym_AMP] = ACTIONS(2249), + [anon_sym_PIPE] = ACTIONS(2249), + [anon_sym_LT] = ACTIONS(2249), + [anon_sym_DOT_DOT] = ACTIONS(2249), + [anon_sym_COLON_COLON] = ACTIONS(2249), + [anon_sym_POUND] = ACTIONS(2249), + [anon_sym_SQUOTE] = ACTIONS(2251), + [anon_sym_async] = ACTIONS(2251), + [anon_sym_break] = ACTIONS(2251), + [anon_sym_const] = ACTIONS(2251), + [anon_sym_continue] = ACTIONS(2251), + [anon_sym_default] = ACTIONS(2251), + [anon_sym_enum] = ACTIONS(2251), + [anon_sym_fn] = ACTIONS(2251), + [anon_sym_for] = ACTIONS(2251), + [anon_sym_gen] = ACTIONS(2251), + [anon_sym_if] = ACTIONS(2251), + [anon_sym_impl] = ACTIONS(2251), + [anon_sym_let] = ACTIONS(2251), + [anon_sym_loop] = ACTIONS(2251), + [anon_sym_match] = ACTIONS(2251), + [anon_sym_mod] = ACTIONS(2251), + [anon_sym_pub] = ACTIONS(2251), + [anon_sym_return] = ACTIONS(2251), + [anon_sym_static] = ACTIONS(2251), + [anon_sym_struct] = ACTIONS(2251), + [anon_sym_trait] = ACTIONS(2251), + [anon_sym_type] = ACTIONS(2251), + [anon_sym_union] = ACTIONS(2251), + [anon_sym_unsafe] = ACTIONS(2251), + [anon_sym_use] = ACTIONS(2251), + [anon_sym_while] = ACTIONS(2251), + [anon_sym_extern] = ACTIONS(2251), + [anon_sym_safe] = ACTIONS(2251), + [anon_sym_yield] = ACTIONS(2251), + [anon_sym_move] = ACTIONS(2251), + [anon_sym_try] = ACTIONS(2251), + [sym_integer_literal] = ACTIONS(2249), + [aux_sym_string_literal_token1] = ACTIONS(2249), + [sym_char_literal] = ACTIONS(2249), + [anon_sym_true] = ACTIONS(2251), + [anon_sym_false] = ACTIONS(2251), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(2251), + [sym_super] = ACTIONS(2251), + [sym_crate] = ACTIONS(2251), + [sym_metavariable] = ACTIONS(2249), + [sym__raw_string_literal_start] = ACTIONS(2249), + [sym_float_literal] = ACTIONS(2249), }, [STATE(602)] = { [sym_line_comment] = STATE(602), [sym_block_comment] = STATE(602), - [ts_builtin_sym_end] = ACTIONS(2234), - [sym_identifier] = ACTIONS(2236), - [anon_sym_SEMI] = ACTIONS(2234), - [anon_sym_macro_rules_BANG] = ACTIONS(2234), - [anon_sym_LPAREN] = ACTIONS(2234), - [anon_sym_LBRACK] = ACTIONS(2234), - [anon_sym_LBRACE] = ACTIONS(2234), - [anon_sym_RBRACE] = ACTIONS(2234), - [anon_sym_STAR] = ACTIONS(2234), - [anon_sym_u8] = ACTIONS(2236), - [anon_sym_i8] = ACTIONS(2236), - [anon_sym_u16] = ACTIONS(2236), - [anon_sym_i16] = ACTIONS(2236), - [anon_sym_u32] = ACTIONS(2236), - [anon_sym_i32] = ACTIONS(2236), - [anon_sym_u64] = ACTIONS(2236), - [anon_sym_i64] = ACTIONS(2236), - [anon_sym_u128] = ACTIONS(2236), - [anon_sym_i128] = ACTIONS(2236), - [anon_sym_isize] = ACTIONS(2236), - [anon_sym_usize] = ACTIONS(2236), - [anon_sym_f32] = ACTIONS(2236), - [anon_sym_f64] = ACTIONS(2236), - [anon_sym_bool] = ACTIONS(2236), - [anon_sym_str] = ACTIONS(2236), - [anon_sym_char] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2234), - [anon_sym_BANG] = ACTIONS(2234), - [anon_sym_AMP] = ACTIONS(2234), - [anon_sym_PIPE] = ACTIONS(2234), - [anon_sym_LT] = ACTIONS(2234), - [anon_sym_DOT_DOT] = ACTIONS(2234), - [anon_sym_COLON_COLON] = ACTIONS(2234), - [anon_sym_POUND] = ACTIONS(2234), - [anon_sym_SQUOTE] = ACTIONS(2236), - [anon_sym_async] = ACTIONS(2236), - [anon_sym_break] = ACTIONS(2236), - [anon_sym_const] = ACTIONS(2236), - [anon_sym_continue] = ACTIONS(2236), - [anon_sym_default] = ACTIONS(2236), - [anon_sym_enum] = ACTIONS(2236), - [anon_sym_fn] = ACTIONS(2236), - [anon_sym_for] = ACTIONS(2236), - [anon_sym_gen] = ACTIONS(2236), - [anon_sym_if] = ACTIONS(2236), - [anon_sym_impl] = ACTIONS(2236), - [anon_sym_let] = ACTIONS(2236), - [anon_sym_loop] = ACTIONS(2236), - [anon_sym_match] = ACTIONS(2236), - [anon_sym_mod] = ACTIONS(2236), - [anon_sym_pub] = ACTIONS(2236), - [anon_sym_return] = ACTIONS(2236), - [anon_sym_static] = ACTIONS(2236), - [anon_sym_struct] = ACTIONS(2236), - [anon_sym_trait] = ACTIONS(2236), - [anon_sym_type] = ACTIONS(2236), - [anon_sym_union] = ACTIONS(2236), - [anon_sym_unsafe] = ACTIONS(2236), - [anon_sym_use] = ACTIONS(2236), - [anon_sym_while] = ACTIONS(2236), - [anon_sym_extern] = ACTIONS(2236), - [anon_sym_yield] = ACTIONS(2236), - [anon_sym_move] = ACTIONS(2236), - [anon_sym_try] = ACTIONS(2236), - [sym_integer_literal] = ACTIONS(2234), - [aux_sym_string_literal_token1] = ACTIONS(2234), - [sym_char_literal] = ACTIONS(2234), - [anon_sym_true] = ACTIONS(2236), - [anon_sym_false] = ACTIONS(2236), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2236), - [sym_super] = ACTIONS(2236), - [sym_crate] = ACTIONS(2236), - [sym_metavariable] = ACTIONS(2234), - [sym__raw_string_literal_start] = ACTIONS(2234), - [sym_float_literal] = ACTIONS(2234), + [ts_builtin_sym_end] = ACTIONS(2253), + [sym_identifier] = ACTIONS(2255), + [anon_sym_SEMI] = ACTIONS(2253), + [anon_sym_macro_rules_BANG] = ACTIONS(2253), + [anon_sym_LPAREN] = ACTIONS(2253), + [anon_sym_LBRACK] = ACTIONS(2253), + [anon_sym_LBRACE] = ACTIONS(2253), + [anon_sym_RBRACE] = ACTIONS(2253), + [anon_sym_STAR] = ACTIONS(2253), + [anon_sym_u8] = ACTIONS(2255), + [anon_sym_i8] = ACTIONS(2255), + [anon_sym_u16] = ACTIONS(2255), + [anon_sym_i16] = ACTIONS(2255), + [anon_sym_u32] = ACTIONS(2255), + [anon_sym_i32] = ACTIONS(2255), + [anon_sym_u64] = ACTIONS(2255), + [anon_sym_i64] = ACTIONS(2255), + [anon_sym_u128] = ACTIONS(2255), + [anon_sym_i128] = ACTIONS(2255), + [anon_sym_isize] = ACTIONS(2255), + [anon_sym_usize] = ACTIONS(2255), + [anon_sym_f32] = ACTIONS(2255), + [anon_sym_f64] = ACTIONS(2255), + [anon_sym_bool] = ACTIONS(2255), + [anon_sym_str] = ACTIONS(2255), + [anon_sym_char] = ACTIONS(2255), + [anon_sym_DASH] = ACTIONS(2253), + [anon_sym_BANG] = ACTIONS(2253), + [anon_sym_AMP] = ACTIONS(2253), + [anon_sym_PIPE] = ACTIONS(2253), + [anon_sym_LT] = ACTIONS(2253), + [anon_sym_DOT_DOT] = ACTIONS(2253), + [anon_sym_COLON_COLON] = ACTIONS(2253), + [anon_sym_POUND] = ACTIONS(2253), + [anon_sym_SQUOTE] = ACTIONS(2255), + [anon_sym_async] = ACTIONS(2255), + [anon_sym_break] = ACTIONS(2255), + [anon_sym_const] = ACTIONS(2255), + [anon_sym_continue] = ACTIONS(2255), + [anon_sym_default] = ACTIONS(2255), + [anon_sym_enum] = ACTIONS(2255), + [anon_sym_fn] = ACTIONS(2255), + [anon_sym_for] = ACTIONS(2255), + [anon_sym_gen] = ACTIONS(2255), + [anon_sym_if] = ACTIONS(2255), + [anon_sym_impl] = ACTIONS(2255), + [anon_sym_let] = ACTIONS(2255), + [anon_sym_loop] = ACTIONS(2255), + [anon_sym_match] = ACTIONS(2255), + [anon_sym_mod] = ACTIONS(2255), + [anon_sym_pub] = ACTIONS(2255), + [anon_sym_return] = ACTIONS(2255), + [anon_sym_static] = ACTIONS(2255), + [anon_sym_struct] = ACTIONS(2255), + [anon_sym_trait] = ACTIONS(2255), + [anon_sym_type] = ACTIONS(2255), + [anon_sym_union] = ACTIONS(2255), + [anon_sym_unsafe] = ACTIONS(2255), + [anon_sym_use] = ACTIONS(2255), + [anon_sym_while] = ACTIONS(2255), + [anon_sym_extern] = ACTIONS(2255), + [anon_sym_safe] = ACTIONS(2255), + [anon_sym_yield] = ACTIONS(2255), + [anon_sym_move] = ACTIONS(2255), + [anon_sym_try] = ACTIONS(2255), + [sym_integer_literal] = ACTIONS(2253), + [aux_sym_string_literal_token1] = ACTIONS(2253), + [sym_char_literal] = ACTIONS(2253), + [anon_sym_true] = ACTIONS(2255), + [anon_sym_false] = ACTIONS(2255), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(2255), + [sym_super] = ACTIONS(2255), + [sym_crate] = ACTIONS(2255), + [sym_metavariable] = ACTIONS(2253), + [sym__raw_string_literal_start] = ACTIONS(2253), + [sym_float_literal] = ACTIONS(2253), }, [STATE(603)] = { [sym_line_comment] = STATE(603), [sym_block_comment] = STATE(603), - [ts_builtin_sym_end] = ACTIONS(2238), - [sym_identifier] = ACTIONS(2240), - [anon_sym_SEMI] = ACTIONS(2238), - [anon_sym_macro_rules_BANG] = ACTIONS(2238), - [anon_sym_LPAREN] = ACTIONS(2238), - [anon_sym_LBRACK] = ACTIONS(2238), - [anon_sym_LBRACE] = ACTIONS(2238), - [anon_sym_RBRACE] = ACTIONS(2238), - [anon_sym_STAR] = ACTIONS(2238), - [anon_sym_u8] = ACTIONS(2240), - [anon_sym_i8] = ACTIONS(2240), - [anon_sym_u16] = ACTIONS(2240), - [anon_sym_i16] = ACTIONS(2240), - [anon_sym_u32] = ACTIONS(2240), - [anon_sym_i32] = ACTIONS(2240), - [anon_sym_u64] = ACTIONS(2240), - [anon_sym_i64] = ACTIONS(2240), - [anon_sym_u128] = ACTIONS(2240), - [anon_sym_i128] = ACTIONS(2240), - [anon_sym_isize] = ACTIONS(2240), - [anon_sym_usize] = ACTIONS(2240), - [anon_sym_f32] = ACTIONS(2240), - [anon_sym_f64] = ACTIONS(2240), - [anon_sym_bool] = ACTIONS(2240), - [anon_sym_str] = ACTIONS(2240), - [anon_sym_char] = ACTIONS(2240), - [anon_sym_DASH] = ACTIONS(2238), - [anon_sym_BANG] = ACTIONS(2238), - [anon_sym_AMP] = ACTIONS(2238), - [anon_sym_PIPE] = ACTIONS(2238), - [anon_sym_LT] = ACTIONS(2238), - [anon_sym_DOT_DOT] = ACTIONS(2238), - [anon_sym_COLON_COLON] = ACTIONS(2238), - [anon_sym_POUND] = ACTIONS(2238), - [anon_sym_SQUOTE] = ACTIONS(2240), - [anon_sym_async] = ACTIONS(2240), - [anon_sym_break] = ACTIONS(2240), - [anon_sym_const] = ACTIONS(2240), - [anon_sym_continue] = ACTIONS(2240), - [anon_sym_default] = ACTIONS(2240), - [anon_sym_enum] = ACTIONS(2240), - [anon_sym_fn] = ACTIONS(2240), - [anon_sym_for] = ACTIONS(2240), - [anon_sym_gen] = ACTIONS(2240), - [anon_sym_if] = ACTIONS(2240), - [anon_sym_impl] = ACTIONS(2240), - [anon_sym_let] = ACTIONS(2240), - [anon_sym_loop] = ACTIONS(2240), - [anon_sym_match] = ACTIONS(2240), - [anon_sym_mod] = ACTIONS(2240), - [anon_sym_pub] = ACTIONS(2240), - [anon_sym_return] = ACTIONS(2240), - [anon_sym_static] = ACTIONS(2240), - [anon_sym_struct] = ACTIONS(2240), - [anon_sym_trait] = ACTIONS(2240), - [anon_sym_type] = ACTIONS(2240), - [anon_sym_union] = ACTIONS(2240), - [anon_sym_unsafe] = ACTIONS(2240), - [anon_sym_use] = ACTIONS(2240), - [anon_sym_while] = ACTIONS(2240), - [anon_sym_extern] = ACTIONS(2240), - [anon_sym_yield] = ACTIONS(2240), - [anon_sym_move] = ACTIONS(2240), - [anon_sym_try] = ACTIONS(2240), - [sym_integer_literal] = ACTIONS(2238), - [aux_sym_string_literal_token1] = ACTIONS(2238), - [sym_char_literal] = ACTIONS(2238), - [anon_sym_true] = ACTIONS(2240), - [anon_sym_false] = ACTIONS(2240), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2240), - [sym_super] = ACTIONS(2240), - [sym_crate] = ACTIONS(2240), - [sym_metavariable] = ACTIONS(2238), - [sym__raw_string_literal_start] = ACTIONS(2238), - [sym_float_literal] = ACTIONS(2238), + [ts_builtin_sym_end] = ACTIONS(1396), + [sym_identifier] = ACTIONS(1398), + [anon_sym_SEMI] = ACTIONS(1396), + [anon_sym_macro_rules_BANG] = ACTIONS(1396), + [anon_sym_LPAREN] = ACTIONS(1396), + [anon_sym_LBRACK] = ACTIONS(1396), + [anon_sym_LBRACE] = ACTIONS(1396), + [anon_sym_RBRACE] = ACTIONS(1396), + [anon_sym_STAR] = ACTIONS(1396), + [anon_sym_u8] = ACTIONS(1398), + [anon_sym_i8] = ACTIONS(1398), + [anon_sym_u16] = ACTIONS(1398), + [anon_sym_i16] = ACTIONS(1398), + [anon_sym_u32] = ACTIONS(1398), + [anon_sym_i32] = ACTIONS(1398), + [anon_sym_u64] = ACTIONS(1398), + [anon_sym_i64] = ACTIONS(1398), + [anon_sym_u128] = ACTIONS(1398), + [anon_sym_i128] = ACTIONS(1398), + [anon_sym_isize] = ACTIONS(1398), + [anon_sym_usize] = ACTIONS(1398), + [anon_sym_f32] = ACTIONS(1398), + [anon_sym_f64] = ACTIONS(1398), + [anon_sym_bool] = ACTIONS(1398), + [anon_sym_str] = ACTIONS(1398), + [anon_sym_char] = ACTIONS(1398), + [anon_sym_DASH] = ACTIONS(1396), + [anon_sym_BANG] = ACTIONS(1396), + [anon_sym_AMP] = ACTIONS(1396), + [anon_sym_PIPE] = ACTIONS(1396), + [anon_sym_LT] = ACTIONS(1396), + [anon_sym_DOT_DOT] = ACTIONS(1396), + [anon_sym_COLON_COLON] = ACTIONS(1396), + [anon_sym_POUND] = ACTIONS(1396), + [anon_sym_SQUOTE] = ACTIONS(1398), + [anon_sym_async] = ACTIONS(1398), + [anon_sym_break] = ACTIONS(1398), + [anon_sym_const] = ACTIONS(1398), + [anon_sym_continue] = ACTIONS(1398), + [anon_sym_default] = ACTIONS(1398), + [anon_sym_enum] = ACTIONS(1398), + [anon_sym_fn] = ACTIONS(1398), + [anon_sym_for] = ACTIONS(1398), + [anon_sym_gen] = ACTIONS(1398), + [anon_sym_if] = ACTIONS(1398), + [anon_sym_impl] = ACTIONS(1398), + [anon_sym_let] = ACTIONS(1398), + [anon_sym_loop] = ACTIONS(1398), + [anon_sym_match] = ACTIONS(1398), + [anon_sym_mod] = ACTIONS(1398), + [anon_sym_pub] = ACTIONS(1398), + [anon_sym_return] = ACTIONS(1398), + [anon_sym_static] = ACTIONS(1398), + [anon_sym_struct] = ACTIONS(1398), + [anon_sym_trait] = ACTIONS(1398), + [anon_sym_type] = ACTIONS(1398), + [anon_sym_union] = ACTIONS(1398), + [anon_sym_unsafe] = ACTIONS(1398), + [anon_sym_use] = ACTIONS(1398), + [anon_sym_while] = ACTIONS(1398), + [anon_sym_extern] = ACTIONS(1398), + [anon_sym_safe] = ACTIONS(1398), + [anon_sym_yield] = ACTIONS(1398), + [anon_sym_move] = ACTIONS(1398), + [anon_sym_try] = ACTIONS(1398), + [sym_integer_literal] = ACTIONS(1396), + [aux_sym_string_literal_token1] = ACTIONS(1396), + [sym_char_literal] = ACTIONS(1396), + [anon_sym_true] = ACTIONS(1398), + [anon_sym_false] = ACTIONS(1398), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1398), + [sym_super] = ACTIONS(1398), + [sym_crate] = ACTIONS(1398), + [sym_metavariable] = ACTIONS(1396), + [sym__raw_string_literal_start] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1396), }, [STATE(604)] = { [sym_line_comment] = STATE(604), [sym_block_comment] = STATE(604), - [ts_builtin_sym_end] = ACTIONS(2242), - [sym_identifier] = ACTIONS(2244), - [anon_sym_SEMI] = ACTIONS(2242), - [anon_sym_macro_rules_BANG] = ACTIONS(2242), - [anon_sym_LPAREN] = ACTIONS(2242), - [anon_sym_LBRACK] = ACTIONS(2242), - [anon_sym_LBRACE] = ACTIONS(2242), - [anon_sym_RBRACE] = ACTIONS(2242), - [anon_sym_STAR] = ACTIONS(2242), - [anon_sym_u8] = ACTIONS(2244), - [anon_sym_i8] = ACTIONS(2244), - [anon_sym_u16] = ACTIONS(2244), - [anon_sym_i16] = ACTIONS(2244), - [anon_sym_u32] = ACTIONS(2244), - [anon_sym_i32] = ACTIONS(2244), - [anon_sym_u64] = ACTIONS(2244), - [anon_sym_i64] = ACTIONS(2244), - [anon_sym_u128] = ACTIONS(2244), - [anon_sym_i128] = ACTIONS(2244), - [anon_sym_isize] = ACTIONS(2244), - [anon_sym_usize] = ACTIONS(2244), - [anon_sym_f32] = ACTIONS(2244), - [anon_sym_f64] = ACTIONS(2244), - [anon_sym_bool] = ACTIONS(2244), - [anon_sym_str] = ACTIONS(2244), - [anon_sym_char] = ACTIONS(2244), - [anon_sym_DASH] = ACTIONS(2242), - [anon_sym_BANG] = ACTIONS(2242), - [anon_sym_AMP] = ACTIONS(2242), - [anon_sym_PIPE] = ACTIONS(2242), - [anon_sym_LT] = ACTIONS(2242), - [anon_sym_DOT_DOT] = ACTIONS(2242), - [anon_sym_COLON_COLON] = ACTIONS(2242), - [anon_sym_POUND] = ACTIONS(2242), - [anon_sym_SQUOTE] = ACTIONS(2244), - [anon_sym_async] = ACTIONS(2244), - [anon_sym_break] = ACTIONS(2244), - [anon_sym_const] = ACTIONS(2244), - [anon_sym_continue] = ACTIONS(2244), - [anon_sym_default] = ACTIONS(2244), - [anon_sym_enum] = ACTIONS(2244), - [anon_sym_fn] = ACTIONS(2244), - [anon_sym_for] = ACTIONS(2244), - [anon_sym_gen] = ACTIONS(2244), - [anon_sym_if] = ACTIONS(2244), - [anon_sym_impl] = ACTIONS(2244), - [anon_sym_let] = ACTIONS(2244), - [anon_sym_loop] = ACTIONS(2244), - [anon_sym_match] = ACTIONS(2244), - [anon_sym_mod] = ACTIONS(2244), - [anon_sym_pub] = ACTIONS(2244), - [anon_sym_return] = ACTIONS(2244), - [anon_sym_static] = ACTIONS(2244), - [anon_sym_struct] = ACTIONS(2244), - [anon_sym_trait] = ACTIONS(2244), - [anon_sym_type] = ACTIONS(2244), - [anon_sym_union] = ACTIONS(2244), - [anon_sym_unsafe] = ACTIONS(2244), - [anon_sym_use] = ACTIONS(2244), - [anon_sym_while] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(2244), - [anon_sym_yield] = ACTIONS(2244), - [anon_sym_move] = ACTIONS(2244), - [anon_sym_try] = ACTIONS(2244), - [sym_integer_literal] = ACTIONS(2242), - [aux_sym_string_literal_token1] = ACTIONS(2242), - [sym_char_literal] = ACTIONS(2242), - [anon_sym_true] = ACTIONS(2244), - [anon_sym_false] = ACTIONS(2244), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2244), - [sym_super] = ACTIONS(2244), - [sym_crate] = ACTIONS(2244), - [sym_metavariable] = ACTIONS(2242), - [sym__raw_string_literal_start] = ACTIONS(2242), - [sym_float_literal] = ACTIONS(2242), + [ts_builtin_sym_end] = ACTIONS(2257), + [sym_identifier] = ACTIONS(2259), + [anon_sym_SEMI] = ACTIONS(2257), + [anon_sym_macro_rules_BANG] = ACTIONS(2257), + [anon_sym_LPAREN] = ACTIONS(2257), + [anon_sym_LBRACK] = ACTIONS(2257), + [anon_sym_LBRACE] = ACTIONS(2257), + [anon_sym_RBRACE] = ACTIONS(2257), + [anon_sym_STAR] = ACTIONS(2257), + [anon_sym_u8] = ACTIONS(2259), + [anon_sym_i8] = ACTIONS(2259), + [anon_sym_u16] = ACTIONS(2259), + [anon_sym_i16] = ACTIONS(2259), + [anon_sym_u32] = ACTIONS(2259), + [anon_sym_i32] = ACTIONS(2259), + [anon_sym_u64] = ACTIONS(2259), + [anon_sym_i64] = ACTIONS(2259), + [anon_sym_u128] = ACTIONS(2259), + [anon_sym_i128] = ACTIONS(2259), + [anon_sym_isize] = ACTIONS(2259), + [anon_sym_usize] = ACTIONS(2259), + [anon_sym_f32] = ACTIONS(2259), + [anon_sym_f64] = ACTIONS(2259), + [anon_sym_bool] = ACTIONS(2259), + [anon_sym_str] = ACTIONS(2259), + [anon_sym_char] = ACTIONS(2259), + [anon_sym_DASH] = ACTIONS(2257), + [anon_sym_BANG] = ACTIONS(2257), + [anon_sym_AMP] = ACTIONS(2257), + [anon_sym_PIPE] = ACTIONS(2257), + [anon_sym_LT] = ACTIONS(2257), + [anon_sym_DOT_DOT] = ACTIONS(2257), + [anon_sym_COLON_COLON] = ACTIONS(2257), + [anon_sym_POUND] = ACTIONS(2257), + [anon_sym_SQUOTE] = ACTIONS(2259), + [anon_sym_async] = ACTIONS(2259), + [anon_sym_break] = ACTIONS(2259), + [anon_sym_const] = ACTIONS(2259), + [anon_sym_continue] = ACTIONS(2259), + [anon_sym_default] = ACTIONS(2259), + [anon_sym_enum] = ACTIONS(2259), + [anon_sym_fn] = ACTIONS(2259), + [anon_sym_for] = ACTIONS(2259), + [anon_sym_gen] = ACTIONS(2259), + [anon_sym_if] = ACTIONS(2259), + [anon_sym_impl] = ACTIONS(2259), + [anon_sym_let] = ACTIONS(2259), + [anon_sym_loop] = ACTIONS(2259), + [anon_sym_match] = ACTIONS(2259), + [anon_sym_mod] = ACTIONS(2259), + [anon_sym_pub] = ACTIONS(2259), + [anon_sym_return] = ACTIONS(2259), + [anon_sym_static] = ACTIONS(2259), + [anon_sym_struct] = ACTIONS(2259), + [anon_sym_trait] = ACTIONS(2259), + [anon_sym_type] = ACTIONS(2259), + [anon_sym_union] = ACTIONS(2259), + [anon_sym_unsafe] = ACTIONS(2259), + [anon_sym_use] = ACTIONS(2259), + [anon_sym_while] = ACTIONS(2259), + [anon_sym_extern] = ACTIONS(2259), + [anon_sym_safe] = ACTIONS(2259), + [anon_sym_yield] = ACTIONS(2259), + [anon_sym_move] = ACTIONS(2259), + [anon_sym_try] = ACTIONS(2259), + [sym_integer_literal] = ACTIONS(2257), + [aux_sym_string_literal_token1] = ACTIONS(2257), + [sym_char_literal] = ACTIONS(2257), + [anon_sym_true] = ACTIONS(2259), + [anon_sym_false] = ACTIONS(2259), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(2259), + [sym_super] = ACTIONS(2259), + [sym_crate] = ACTIONS(2259), + [sym_metavariable] = ACTIONS(2257), + [sym__raw_string_literal_start] = ACTIONS(2257), + [sym_float_literal] = ACTIONS(2257), }, [STATE(605)] = { [sym_line_comment] = STATE(605), [sym_block_comment] = STATE(605), - [ts_builtin_sym_end] = ACTIONS(2246), - [sym_identifier] = ACTIONS(2248), - [anon_sym_SEMI] = ACTIONS(2246), - [anon_sym_macro_rules_BANG] = ACTIONS(2246), - [anon_sym_LPAREN] = ACTIONS(2246), - [anon_sym_LBRACK] = ACTIONS(2246), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_RBRACE] = ACTIONS(2246), - [anon_sym_STAR] = ACTIONS(2246), - [anon_sym_u8] = ACTIONS(2248), - [anon_sym_i8] = ACTIONS(2248), - [anon_sym_u16] = ACTIONS(2248), - [anon_sym_i16] = ACTIONS(2248), - [anon_sym_u32] = ACTIONS(2248), - [anon_sym_i32] = ACTIONS(2248), - [anon_sym_u64] = ACTIONS(2248), - [anon_sym_i64] = ACTIONS(2248), - [anon_sym_u128] = ACTIONS(2248), - [anon_sym_i128] = ACTIONS(2248), - [anon_sym_isize] = ACTIONS(2248), - [anon_sym_usize] = ACTIONS(2248), - [anon_sym_f32] = ACTIONS(2248), - [anon_sym_f64] = ACTIONS(2248), - [anon_sym_bool] = ACTIONS(2248), - [anon_sym_str] = ACTIONS(2248), - [anon_sym_char] = ACTIONS(2248), - [anon_sym_DASH] = ACTIONS(2246), - [anon_sym_BANG] = ACTIONS(2246), - [anon_sym_AMP] = ACTIONS(2246), - [anon_sym_PIPE] = ACTIONS(2246), - [anon_sym_LT] = ACTIONS(2246), - [anon_sym_DOT_DOT] = ACTIONS(2246), - [anon_sym_COLON_COLON] = ACTIONS(2246), - [anon_sym_POUND] = ACTIONS(2246), - [anon_sym_SQUOTE] = ACTIONS(2248), - [anon_sym_async] = ACTIONS(2248), - [anon_sym_break] = ACTIONS(2248), - [anon_sym_const] = ACTIONS(2248), - [anon_sym_continue] = ACTIONS(2248), - [anon_sym_default] = ACTIONS(2248), - [anon_sym_enum] = ACTIONS(2248), - [anon_sym_fn] = ACTIONS(2248), - [anon_sym_for] = ACTIONS(2248), - [anon_sym_gen] = ACTIONS(2248), - [anon_sym_if] = ACTIONS(2248), - [anon_sym_impl] = ACTIONS(2248), - [anon_sym_let] = ACTIONS(2248), - [anon_sym_loop] = ACTIONS(2248), - [anon_sym_match] = ACTIONS(2248), - [anon_sym_mod] = ACTIONS(2248), - [anon_sym_pub] = ACTIONS(2248), - [anon_sym_return] = ACTIONS(2248), - [anon_sym_static] = ACTIONS(2248), - [anon_sym_struct] = ACTIONS(2248), - [anon_sym_trait] = ACTIONS(2248), - [anon_sym_type] = ACTIONS(2248), - [anon_sym_union] = ACTIONS(2248), - [anon_sym_unsafe] = ACTIONS(2248), - [anon_sym_use] = ACTIONS(2248), - [anon_sym_while] = ACTIONS(2248), - [anon_sym_extern] = ACTIONS(2248), - [anon_sym_yield] = ACTIONS(2248), - [anon_sym_move] = ACTIONS(2248), - [anon_sym_try] = ACTIONS(2248), - [sym_integer_literal] = ACTIONS(2246), - [aux_sym_string_literal_token1] = ACTIONS(2246), - [sym_char_literal] = ACTIONS(2246), - [anon_sym_true] = ACTIONS(2248), - [anon_sym_false] = ACTIONS(2248), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2248), - [sym_super] = ACTIONS(2248), - [sym_crate] = ACTIONS(2248), - [sym_metavariable] = ACTIONS(2246), - [sym__raw_string_literal_start] = ACTIONS(2246), - [sym_float_literal] = ACTIONS(2246), + [ts_builtin_sym_end] = ACTIONS(2261), + [sym_identifier] = ACTIONS(2263), + [anon_sym_SEMI] = ACTIONS(2261), + [anon_sym_macro_rules_BANG] = ACTIONS(2261), + [anon_sym_LPAREN] = ACTIONS(2261), + [anon_sym_LBRACK] = ACTIONS(2261), + [anon_sym_LBRACE] = ACTIONS(2261), + [anon_sym_RBRACE] = ACTIONS(2261), + [anon_sym_STAR] = ACTIONS(2261), + [anon_sym_u8] = ACTIONS(2263), + [anon_sym_i8] = ACTIONS(2263), + [anon_sym_u16] = ACTIONS(2263), + [anon_sym_i16] = ACTIONS(2263), + [anon_sym_u32] = ACTIONS(2263), + [anon_sym_i32] = ACTIONS(2263), + [anon_sym_u64] = ACTIONS(2263), + [anon_sym_i64] = ACTIONS(2263), + [anon_sym_u128] = ACTIONS(2263), + [anon_sym_i128] = ACTIONS(2263), + [anon_sym_isize] = ACTIONS(2263), + [anon_sym_usize] = ACTIONS(2263), + [anon_sym_f32] = ACTIONS(2263), + [anon_sym_f64] = ACTIONS(2263), + [anon_sym_bool] = ACTIONS(2263), + [anon_sym_str] = ACTIONS(2263), + [anon_sym_char] = ACTIONS(2263), + [anon_sym_DASH] = ACTIONS(2261), + [anon_sym_BANG] = ACTIONS(2261), + [anon_sym_AMP] = ACTIONS(2261), + [anon_sym_PIPE] = ACTIONS(2261), + [anon_sym_LT] = ACTIONS(2261), + [anon_sym_DOT_DOT] = ACTIONS(2261), + [anon_sym_COLON_COLON] = ACTIONS(2261), + [anon_sym_POUND] = ACTIONS(2261), + [anon_sym_SQUOTE] = ACTIONS(2263), + [anon_sym_async] = ACTIONS(2263), + [anon_sym_break] = ACTIONS(2263), + [anon_sym_const] = ACTIONS(2263), + [anon_sym_continue] = ACTIONS(2263), + [anon_sym_default] = ACTIONS(2263), + [anon_sym_enum] = ACTIONS(2263), + [anon_sym_fn] = ACTIONS(2263), + [anon_sym_for] = ACTIONS(2263), + [anon_sym_gen] = ACTIONS(2263), + [anon_sym_if] = ACTIONS(2263), + [anon_sym_impl] = ACTIONS(2263), + [anon_sym_let] = ACTIONS(2263), + [anon_sym_loop] = ACTIONS(2263), + [anon_sym_match] = ACTIONS(2263), + [anon_sym_mod] = ACTIONS(2263), + [anon_sym_pub] = ACTIONS(2263), + [anon_sym_return] = ACTIONS(2263), + [anon_sym_static] = ACTIONS(2263), + [anon_sym_struct] = ACTIONS(2263), + [anon_sym_trait] = ACTIONS(2263), + [anon_sym_type] = ACTIONS(2263), + [anon_sym_union] = ACTIONS(2263), + [anon_sym_unsafe] = ACTIONS(2263), + [anon_sym_use] = ACTIONS(2263), + [anon_sym_while] = ACTIONS(2263), + [anon_sym_extern] = ACTIONS(2263), + [anon_sym_safe] = ACTIONS(2263), + [anon_sym_yield] = ACTIONS(2263), + [anon_sym_move] = ACTIONS(2263), + [anon_sym_try] = ACTIONS(2263), + [sym_integer_literal] = ACTIONS(2261), + [aux_sym_string_literal_token1] = ACTIONS(2261), + [sym_char_literal] = ACTIONS(2261), + [anon_sym_true] = ACTIONS(2263), + [anon_sym_false] = ACTIONS(2263), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(2263), + [sym_super] = ACTIONS(2263), + [sym_crate] = ACTIONS(2263), + [sym_metavariable] = ACTIONS(2261), + [sym__raw_string_literal_start] = ACTIONS(2261), + [sym_float_literal] = ACTIONS(2261), }, [STATE(606)] = { [sym_line_comment] = STATE(606), [sym_block_comment] = STATE(606), - [ts_builtin_sym_end] = ACTIONS(2250), - [sym_identifier] = ACTIONS(2252), - [anon_sym_SEMI] = ACTIONS(2250), - [anon_sym_macro_rules_BANG] = ACTIONS(2250), - [anon_sym_LPAREN] = ACTIONS(2250), - [anon_sym_LBRACK] = ACTIONS(2250), - [anon_sym_LBRACE] = ACTIONS(2250), - [anon_sym_RBRACE] = ACTIONS(2250), - [anon_sym_STAR] = ACTIONS(2250), - [anon_sym_u8] = ACTIONS(2252), - [anon_sym_i8] = ACTIONS(2252), - [anon_sym_u16] = ACTIONS(2252), - [anon_sym_i16] = ACTIONS(2252), - [anon_sym_u32] = ACTIONS(2252), - [anon_sym_i32] = ACTIONS(2252), - [anon_sym_u64] = ACTIONS(2252), - [anon_sym_i64] = ACTIONS(2252), - [anon_sym_u128] = ACTIONS(2252), - [anon_sym_i128] = ACTIONS(2252), - [anon_sym_isize] = ACTIONS(2252), - [anon_sym_usize] = ACTIONS(2252), - [anon_sym_f32] = ACTIONS(2252), - [anon_sym_f64] = ACTIONS(2252), - [anon_sym_bool] = ACTIONS(2252), - [anon_sym_str] = ACTIONS(2252), - [anon_sym_char] = ACTIONS(2252), - [anon_sym_DASH] = ACTIONS(2250), - [anon_sym_BANG] = ACTIONS(2250), - [anon_sym_AMP] = ACTIONS(2250), - [anon_sym_PIPE] = ACTIONS(2250), - [anon_sym_LT] = ACTIONS(2250), - [anon_sym_DOT_DOT] = ACTIONS(2250), - [anon_sym_COLON_COLON] = ACTIONS(2250), - [anon_sym_POUND] = ACTIONS(2250), - [anon_sym_SQUOTE] = ACTIONS(2252), - [anon_sym_async] = ACTIONS(2252), - [anon_sym_break] = ACTIONS(2252), - [anon_sym_const] = ACTIONS(2252), - [anon_sym_continue] = ACTIONS(2252), - [anon_sym_default] = ACTIONS(2252), - [anon_sym_enum] = ACTIONS(2252), - [anon_sym_fn] = ACTIONS(2252), - [anon_sym_for] = ACTIONS(2252), - [anon_sym_gen] = ACTIONS(2252), - [anon_sym_if] = ACTIONS(2252), - [anon_sym_impl] = ACTIONS(2252), - [anon_sym_let] = ACTIONS(2252), - [anon_sym_loop] = ACTIONS(2252), - [anon_sym_match] = ACTIONS(2252), - [anon_sym_mod] = ACTIONS(2252), - [anon_sym_pub] = ACTIONS(2252), - [anon_sym_return] = ACTIONS(2252), - [anon_sym_static] = ACTIONS(2252), - [anon_sym_struct] = ACTIONS(2252), - [anon_sym_trait] = ACTIONS(2252), - [anon_sym_type] = ACTIONS(2252), - [anon_sym_union] = ACTIONS(2252), - [anon_sym_unsafe] = ACTIONS(2252), - [anon_sym_use] = ACTIONS(2252), - [anon_sym_while] = ACTIONS(2252), - [anon_sym_extern] = ACTIONS(2252), - [anon_sym_yield] = ACTIONS(2252), - [anon_sym_move] = ACTIONS(2252), - [anon_sym_try] = ACTIONS(2252), - [sym_integer_literal] = ACTIONS(2250), - [aux_sym_string_literal_token1] = ACTIONS(2250), - [sym_char_literal] = ACTIONS(2250), - [anon_sym_true] = ACTIONS(2252), - [anon_sym_false] = ACTIONS(2252), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2252), - [sym_super] = ACTIONS(2252), - [sym_crate] = ACTIONS(2252), - [sym_metavariable] = ACTIONS(2250), - [sym__raw_string_literal_start] = ACTIONS(2250), - [sym_float_literal] = ACTIONS(2250), + [ts_builtin_sym_end] = ACTIONS(1358), + [sym_identifier] = ACTIONS(1360), + [anon_sym_SEMI] = ACTIONS(1358), + [anon_sym_macro_rules_BANG] = ACTIONS(1358), + [anon_sym_LPAREN] = ACTIONS(1358), + [anon_sym_LBRACK] = ACTIONS(1358), + [anon_sym_LBRACE] = ACTIONS(1358), + [anon_sym_RBRACE] = ACTIONS(1358), + [anon_sym_STAR] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1360), + [anon_sym_i8] = ACTIONS(1360), + [anon_sym_u16] = ACTIONS(1360), + [anon_sym_i16] = ACTIONS(1360), + [anon_sym_u32] = ACTIONS(1360), + [anon_sym_i32] = ACTIONS(1360), + [anon_sym_u64] = ACTIONS(1360), + [anon_sym_i64] = ACTIONS(1360), + [anon_sym_u128] = ACTIONS(1360), + [anon_sym_i128] = ACTIONS(1360), + [anon_sym_isize] = ACTIONS(1360), + [anon_sym_usize] = ACTIONS(1360), + [anon_sym_f32] = ACTIONS(1360), + [anon_sym_f64] = ACTIONS(1360), + [anon_sym_bool] = ACTIONS(1360), + [anon_sym_str] = ACTIONS(1360), + [anon_sym_char] = ACTIONS(1360), + [anon_sym_DASH] = ACTIONS(1358), + [anon_sym_BANG] = ACTIONS(1358), + [anon_sym_AMP] = ACTIONS(1358), + [anon_sym_PIPE] = ACTIONS(1358), + [anon_sym_LT] = ACTIONS(1358), + [anon_sym_DOT_DOT] = ACTIONS(1358), + [anon_sym_COLON_COLON] = ACTIONS(1358), + [anon_sym_POUND] = ACTIONS(1358), + [anon_sym_SQUOTE] = ACTIONS(1360), + [anon_sym_async] = ACTIONS(1360), + [anon_sym_break] = ACTIONS(1360), + [anon_sym_const] = ACTIONS(1360), + [anon_sym_continue] = ACTIONS(1360), + [anon_sym_default] = ACTIONS(1360), + [anon_sym_enum] = ACTIONS(1360), + [anon_sym_fn] = ACTIONS(1360), + [anon_sym_for] = ACTIONS(1360), + [anon_sym_gen] = ACTIONS(1360), + [anon_sym_if] = ACTIONS(1360), + [anon_sym_impl] = ACTIONS(1360), + [anon_sym_let] = ACTIONS(1360), + [anon_sym_loop] = ACTIONS(1360), + [anon_sym_match] = ACTIONS(1360), + [anon_sym_mod] = ACTIONS(1360), + [anon_sym_pub] = ACTIONS(1360), + [anon_sym_return] = ACTIONS(1360), + [anon_sym_static] = ACTIONS(1360), + [anon_sym_struct] = ACTIONS(1360), + [anon_sym_trait] = ACTIONS(1360), + [anon_sym_type] = ACTIONS(1360), + [anon_sym_union] = ACTIONS(1360), + [anon_sym_unsafe] = ACTIONS(1360), + [anon_sym_use] = ACTIONS(1360), + [anon_sym_while] = ACTIONS(1360), + [anon_sym_extern] = ACTIONS(1360), + [anon_sym_safe] = ACTIONS(1360), + [anon_sym_yield] = ACTIONS(1360), + [anon_sym_move] = ACTIONS(1360), + [anon_sym_try] = ACTIONS(1360), + [sym_integer_literal] = ACTIONS(1358), + [aux_sym_string_literal_token1] = ACTIONS(1358), + [sym_char_literal] = ACTIONS(1358), + [anon_sym_true] = ACTIONS(1360), + [anon_sym_false] = ACTIONS(1360), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1360), + [sym_super] = ACTIONS(1360), + [sym_crate] = ACTIONS(1360), + [sym_metavariable] = ACTIONS(1358), + [sym__raw_string_literal_start] = ACTIONS(1358), + [sym_float_literal] = ACTIONS(1358), }, [STATE(607)] = { [sym_line_comment] = STATE(607), [sym_block_comment] = STATE(607), - [ts_builtin_sym_end] = ACTIONS(2254), - [sym_identifier] = ACTIONS(2256), - [anon_sym_SEMI] = ACTIONS(2254), - [anon_sym_macro_rules_BANG] = ACTIONS(2254), - [anon_sym_LPAREN] = ACTIONS(2254), - [anon_sym_LBRACK] = ACTIONS(2254), - [anon_sym_LBRACE] = ACTIONS(2254), - [anon_sym_RBRACE] = ACTIONS(2254), - [anon_sym_STAR] = ACTIONS(2254), - [anon_sym_u8] = ACTIONS(2256), - [anon_sym_i8] = ACTIONS(2256), - [anon_sym_u16] = ACTIONS(2256), - [anon_sym_i16] = ACTIONS(2256), - [anon_sym_u32] = ACTIONS(2256), - [anon_sym_i32] = ACTIONS(2256), - [anon_sym_u64] = ACTIONS(2256), - [anon_sym_i64] = ACTIONS(2256), - [anon_sym_u128] = ACTIONS(2256), - [anon_sym_i128] = ACTIONS(2256), - [anon_sym_isize] = ACTIONS(2256), - [anon_sym_usize] = ACTIONS(2256), - [anon_sym_f32] = ACTIONS(2256), - [anon_sym_f64] = ACTIONS(2256), - [anon_sym_bool] = ACTIONS(2256), - [anon_sym_str] = ACTIONS(2256), - [anon_sym_char] = ACTIONS(2256), - [anon_sym_DASH] = ACTIONS(2254), - [anon_sym_BANG] = ACTIONS(2254), - [anon_sym_AMP] = ACTIONS(2254), - [anon_sym_PIPE] = ACTIONS(2254), - [anon_sym_LT] = ACTIONS(2254), - [anon_sym_DOT_DOT] = ACTIONS(2254), - [anon_sym_COLON_COLON] = ACTIONS(2254), - [anon_sym_POUND] = ACTIONS(2254), - [anon_sym_SQUOTE] = ACTIONS(2256), - [anon_sym_async] = ACTIONS(2256), - [anon_sym_break] = ACTIONS(2256), - [anon_sym_const] = ACTIONS(2256), - [anon_sym_continue] = ACTIONS(2256), - [anon_sym_default] = ACTIONS(2256), - [anon_sym_enum] = ACTIONS(2256), - [anon_sym_fn] = ACTIONS(2256), - [anon_sym_for] = ACTIONS(2256), - [anon_sym_gen] = ACTIONS(2256), - [anon_sym_if] = ACTIONS(2256), - [anon_sym_impl] = ACTIONS(2256), - [anon_sym_let] = ACTIONS(2256), - [anon_sym_loop] = ACTIONS(2256), - [anon_sym_match] = ACTIONS(2256), - [anon_sym_mod] = ACTIONS(2256), - [anon_sym_pub] = ACTIONS(2256), - [anon_sym_return] = ACTIONS(2256), - [anon_sym_static] = ACTIONS(2256), - [anon_sym_struct] = ACTIONS(2256), - [anon_sym_trait] = ACTIONS(2256), - [anon_sym_type] = ACTIONS(2256), - [anon_sym_union] = ACTIONS(2256), - [anon_sym_unsafe] = ACTIONS(2256), - [anon_sym_use] = ACTIONS(2256), - [anon_sym_while] = ACTIONS(2256), - [anon_sym_extern] = ACTIONS(2256), - [anon_sym_yield] = ACTIONS(2256), - [anon_sym_move] = ACTIONS(2256), - [anon_sym_try] = ACTIONS(2256), - [sym_integer_literal] = ACTIONS(2254), - [aux_sym_string_literal_token1] = ACTIONS(2254), - [sym_char_literal] = ACTIONS(2254), - [anon_sym_true] = ACTIONS(2256), - [anon_sym_false] = ACTIONS(2256), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2256), - [sym_super] = ACTIONS(2256), - [sym_crate] = ACTIONS(2256), - [sym_metavariable] = ACTIONS(2254), - [sym__raw_string_literal_start] = ACTIONS(2254), - [sym_float_literal] = ACTIONS(2254), + [ts_builtin_sym_end] = ACTIONS(1388), + [sym_identifier] = ACTIONS(1390), + [anon_sym_SEMI] = ACTIONS(1388), + [anon_sym_macro_rules_BANG] = ACTIONS(1388), + [anon_sym_LPAREN] = ACTIONS(1388), + [anon_sym_LBRACK] = ACTIONS(1388), + [anon_sym_LBRACE] = ACTIONS(1388), + [anon_sym_RBRACE] = ACTIONS(1388), + [anon_sym_STAR] = ACTIONS(1388), + [anon_sym_u8] = ACTIONS(1390), + [anon_sym_i8] = ACTIONS(1390), + [anon_sym_u16] = ACTIONS(1390), + [anon_sym_i16] = ACTIONS(1390), + [anon_sym_u32] = ACTIONS(1390), + [anon_sym_i32] = ACTIONS(1390), + [anon_sym_u64] = ACTIONS(1390), + [anon_sym_i64] = ACTIONS(1390), + [anon_sym_u128] = ACTIONS(1390), + [anon_sym_i128] = ACTIONS(1390), + [anon_sym_isize] = ACTIONS(1390), + [anon_sym_usize] = ACTIONS(1390), + [anon_sym_f32] = ACTIONS(1390), + [anon_sym_f64] = ACTIONS(1390), + [anon_sym_bool] = ACTIONS(1390), + [anon_sym_str] = ACTIONS(1390), + [anon_sym_char] = ACTIONS(1390), + [anon_sym_DASH] = ACTIONS(1388), + [anon_sym_BANG] = ACTIONS(1388), + [anon_sym_AMP] = ACTIONS(1388), + [anon_sym_PIPE] = ACTIONS(1388), + [anon_sym_LT] = ACTIONS(1388), + [anon_sym_DOT_DOT] = ACTIONS(1388), + [anon_sym_COLON_COLON] = ACTIONS(1388), + [anon_sym_POUND] = ACTIONS(1388), + [anon_sym_SQUOTE] = ACTIONS(1390), + [anon_sym_async] = ACTIONS(1390), + [anon_sym_break] = ACTIONS(1390), + [anon_sym_const] = ACTIONS(1390), + [anon_sym_continue] = ACTIONS(1390), + [anon_sym_default] = ACTIONS(1390), + [anon_sym_enum] = ACTIONS(1390), + [anon_sym_fn] = ACTIONS(1390), + [anon_sym_for] = ACTIONS(1390), + [anon_sym_gen] = ACTIONS(1390), + [anon_sym_if] = ACTIONS(1390), + [anon_sym_impl] = ACTIONS(1390), + [anon_sym_let] = ACTIONS(1390), + [anon_sym_loop] = ACTIONS(1390), + [anon_sym_match] = ACTIONS(1390), + [anon_sym_mod] = ACTIONS(1390), + [anon_sym_pub] = ACTIONS(1390), + [anon_sym_return] = ACTIONS(1390), + [anon_sym_static] = ACTIONS(1390), + [anon_sym_struct] = ACTIONS(1390), + [anon_sym_trait] = ACTIONS(1390), + [anon_sym_type] = ACTIONS(1390), + [anon_sym_union] = ACTIONS(1390), + [anon_sym_unsafe] = ACTIONS(1390), + [anon_sym_use] = ACTIONS(1390), + [anon_sym_while] = ACTIONS(1390), + [anon_sym_extern] = ACTIONS(1390), + [anon_sym_safe] = ACTIONS(1390), + [anon_sym_yield] = ACTIONS(1390), + [anon_sym_move] = ACTIONS(1390), + [anon_sym_try] = ACTIONS(1390), + [sym_integer_literal] = ACTIONS(1388), + [aux_sym_string_literal_token1] = ACTIONS(1388), + [sym_char_literal] = ACTIONS(1388), + [anon_sym_true] = ACTIONS(1390), + [anon_sym_false] = ACTIONS(1390), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1390), + [sym_super] = ACTIONS(1390), + [sym_crate] = ACTIONS(1390), + [sym_metavariable] = ACTIONS(1388), + [sym__raw_string_literal_start] = ACTIONS(1388), + [sym_float_literal] = ACTIONS(1388), }, [STATE(608)] = { [sym_line_comment] = STATE(608), [sym_block_comment] = STATE(608), - [ts_builtin_sym_end] = ACTIONS(2258), - [sym_identifier] = ACTIONS(2260), - [anon_sym_SEMI] = ACTIONS(2258), - [anon_sym_macro_rules_BANG] = ACTIONS(2258), - [anon_sym_LPAREN] = ACTIONS(2258), - [anon_sym_LBRACK] = ACTIONS(2258), - [anon_sym_LBRACE] = ACTIONS(2258), - [anon_sym_RBRACE] = ACTIONS(2258), - [anon_sym_STAR] = ACTIONS(2258), - [anon_sym_u8] = ACTIONS(2260), - [anon_sym_i8] = ACTIONS(2260), - [anon_sym_u16] = ACTIONS(2260), - [anon_sym_i16] = ACTIONS(2260), - [anon_sym_u32] = ACTIONS(2260), - [anon_sym_i32] = ACTIONS(2260), - [anon_sym_u64] = ACTIONS(2260), - [anon_sym_i64] = ACTIONS(2260), - [anon_sym_u128] = ACTIONS(2260), - [anon_sym_i128] = ACTIONS(2260), - [anon_sym_isize] = ACTIONS(2260), - [anon_sym_usize] = ACTIONS(2260), - [anon_sym_f32] = ACTIONS(2260), - [anon_sym_f64] = ACTIONS(2260), - [anon_sym_bool] = ACTIONS(2260), - [anon_sym_str] = ACTIONS(2260), - [anon_sym_char] = ACTIONS(2260), - [anon_sym_DASH] = ACTIONS(2258), - [anon_sym_BANG] = ACTIONS(2258), - [anon_sym_AMP] = ACTIONS(2258), - [anon_sym_PIPE] = ACTIONS(2258), - [anon_sym_LT] = ACTIONS(2258), - [anon_sym_DOT_DOT] = ACTIONS(2258), - [anon_sym_COLON_COLON] = ACTIONS(2258), - [anon_sym_POUND] = ACTIONS(2258), - [anon_sym_SQUOTE] = ACTIONS(2260), - [anon_sym_async] = ACTIONS(2260), - [anon_sym_break] = ACTIONS(2260), - [anon_sym_const] = ACTIONS(2260), - [anon_sym_continue] = ACTIONS(2260), - [anon_sym_default] = ACTIONS(2260), - [anon_sym_enum] = ACTIONS(2260), - [anon_sym_fn] = ACTIONS(2260), - [anon_sym_for] = ACTIONS(2260), - [anon_sym_gen] = ACTIONS(2260), - [anon_sym_if] = ACTIONS(2260), - [anon_sym_impl] = ACTIONS(2260), - [anon_sym_let] = ACTIONS(2260), - [anon_sym_loop] = ACTIONS(2260), - [anon_sym_match] = ACTIONS(2260), - [anon_sym_mod] = ACTIONS(2260), - [anon_sym_pub] = ACTIONS(2260), - [anon_sym_return] = ACTIONS(2260), - [anon_sym_static] = ACTIONS(2260), - [anon_sym_struct] = ACTIONS(2260), - [anon_sym_trait] = ACTIONS(2260), - [anon_sym_type] = ACTIONS(2260), - [anon_sym_union] = ACTIONS(2260), - [anon_sym_unsafe] = ACTIONS(2260), - [anon_sym_use] = ACTIONS(2260), - [anon_sym_while] = ACTIONS(2260), - [anon_sym_extern] = ACTIONS(2260), - [anon_sym_yield] = ACTIONS(2260), - [anon_sym_move] = ACTIONS(2260), - [anon_sym_try] = ACTIONS(2260), - [sym_integer_literal] = ACTIONS(2258), - [aux_sym_string_literal_token1] = ACTIONS(2258), - [sym_char_literal] = ACTIONS(2258), - [anon_sym_true] = ACTIONS(2260), - [anon_sym_false] = ACTIONS(2260), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2260), - [sym_super] = ACTIONS(2260), - [sym_crate] = ACTIONS(2260), - [sym_metavariable] = ACTIONS(2258), - [sym__raw_string_literal_start] = ACTIONS(2258), - [sym_float_literal] = ACTIONS(2258), + [ts_builtin_sym_end] = ACTIONS(2265), + [sym_identifier] = ACTIONS(2267), + [anon_sym_SEMI] = ACTIONS(2265), + [anon_sym_macro_rules_BANG] = ACTIONS(2265), + [anon_sym_LPAREN] = ACTIONS(2265), + [anon_sym_LBRACK] = ACTIONS(2265), + [anon_sym_LBRACE] = ACTIONS(2265), + [anon_sym_RBRACE] = ACTIONS(2265), + [anon_sym_STAR] = ACTIONS(2265), + [anon_sym_u8] = ACTIONS(2267), + [anon_sym_i8] = ACTIONS(2267), + [anon_sym_u16] = ACTIONS(2267), + [anon_sym_i16] = ACTIONS(2267), + [anon_sym_u32] = ACTIONS(2267), + [anon_sym_i32] = ACTIONS(2267), + [anon_sym_u64] = ACTIONS(2267), + [anon_sym_i64] = ACTIONS(2267), + [anon_sym_u128] = ACTIONS(2267), + [anon_sym_i128] = ACTIONS(2267), + [anon_sym_isize] = ACTIONS(2267), + [anon_sym_usize] = ACTIONS(2267), + [anon_sym_f32] = ACTIONS(2267), + [anon_sym_f64] = ACTIONS(2267), + [anon_sym_bool] = ACTIONS(2267), + [anon_sym_str] = ACTIONS(2267), + [anon_sym_char] = ACTIONS(2267), + [anon_sym_DASH] = ACTIONS(2265), + [anon_sym_BANG] = ACTIONS(2265), + [anon_sym_AMP] = ACTIONS(2265), + [anon_sym_PIPE] = ACTIONS(2265), + [anon_sym_LT] = ACTIONS(2265), + [anon_sym_DOT_DOT] = ACTIONS(2265), + [anon_sym_COLON_COLON] = ACTIONS(2265), + [anon_sym_POUND] = ACTIONS(2265), + [anon_sym_SQUOTE] = ACTIONS(2267), + [anon_sym_async] = ACTIONS(2267), + [anon_sym_break] = ACTIONS(2267), + [anon_sym_const] = ACTIONS(2267), + [anon_sym_continue] = ACTIONS(2267), + [anon_sym_default] = ACTIONS(2267), + [anon_sym_enum] = ACTIONS(2267), + [anon_sym_fn] = ACTIONS(2267), + [anon_sym_for] = ACTIONS(2267), + [anon_sym_gen] = ACTIONS(2267), + [anon_sym_if] = ACTIONS(2267), + [anon_sym_impl] = ACTIONS(2267), + [anon_sym_let] = ACTIONS(2267), + [anon_sym_loop] = ACTIONS(2267), + [anon_sym_match] = ACTIONS(2267), + [anon_sym_mod] = ACTIONS(2267), + [anon_sym_pub] = ACTIONS(2267), + [anon_sym_return] = ACTIONS(2267), + [anon_sym_static] = ACTIONS(2267), + [anon_sym_struct] = ACTIONS(2267), + [anon_sym_trait] = ACTIONS(2267), + [anon_sym_type] = ACTIONS(2267), + [anon_sym_union] = ACTIONS(2267), + [anon_sym_unsafe] = ACTIONS(2267), + [anon_sym_use] = ACTIONS(2267), + [anon_sym_while] = ACTIONS(2267), + [anon_sym_extern] = ACTIONS(2267), + [anon_sym_safe] = ACTIONS(2267), + [anon_sym_yield] = ACTIONS(2267), + [anon_sym_move] = ACTIONS(2267), + [anon_sym_try] = ACTIONS(2267), + [sym_integer_literal] = ACTIONS(2265), + [aux_sym_string_literal_token1] = ACTIONS(2265), + [sym_char_literal] = ACTIONS(2265), + [anon_sym_true] = ACTIONS(2267), + [anon_sym_false] = ACTIONS(2267), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(2267), + [sym_super] = ACTIONS(2267), + [sym_crate] = ACTIONS(2267), + [sym_metavariable] = ACTIONS(2265), + [sym__raw_string_literal_start] = ACTIONS(2265), + [sym_float_literal] = ACTIONS(2265), }, [STATE(609)] = { [sym_line_comment] = STATE(609), [sym_block_comment] = STATE(609), - [ts_builtin_sym_end] = ACTIONS(2262), - [sym_identifier] = ACTIONS(2264), - [anon_sym_SEMI] = ACTIONS(2262), - [anon_sym_macro_rules_BANG] = ACTIONS(2262), - [anon_sym_LPAREN] = ACTIONS(2262), - [anon_sym_LBRACK] = ACTIONS(2262), - [anon_sym_LBRACE] = ACTIONS(2262), - [anon_sym_RBRACE] = ACTIONS(2262), - [anon_sym_STAR] = ACTIONS(2262), - [anon_sym_u8] = ACTIONS(2264), - [anon_sym_i8] = ACTIONS(2264), - [anon_sym_u16] = ACTIONS(2264), - [anon_sym_i16] = ACTIONS(2264), - [anon_sym_u32] = ACTIONS(2264), - [anon_sym_i32] = ACTIONS(2264), - [anon_sym_u64] = ACTIONS(2264), - [anon_sym_i64] = ACTIONS(2264), - [anon_sym_u128] = ACTIONS(2264), - [anon_sym_i128] = ACTIONS(2264), - [anon_sym_isize] = ACTIONS(2264), - [anon_sym_usize] = ACTIONS(2264), - [anon_sym_f32] = ACTIONS(2264), - [anon_sym_f64] = ACTIONS(2264), - [anon_sym_bool] = ACTIONS(2264), - [anon_sym_str] = ACTIONS(2264), - [anon_sym_char] = ACTIONS(2264), - [anon_sym_DASH] = ACTIONS(2262), - [anon_sym_BANG] = ACTIONS(2262), - [anon_sym_AMP] = ACTIONS(2262), - [anon_sym_PIPE] = ACTIONS(2262), - [anon_sym_LT] = ACTIONS(2262), - [anon_sym_DOT_DOT] = ACTIONS(2262), - [anon_sym_COLON_COLON] = ACTIONS(2262), - [anon_sym_POUND] = ACTIONS(2262), - [anon_sym_SQUOTE] = ACTIONS(2264), - [anon_sym_async] = ACTIONS(2264), - [anon_sym_break] = ACTIONS(2264), - [anon_sym_const] = ACTIONS(2264), - [anon_sym_continue] = ACTIONS(2264), - [anon_sym_default] = ACTIONS(2264), - [anon_sym_enum] = ACTIONS(2264), - [anon_sym_fn] = ACTIONS(2264), - [anon_sym_for] = ACTIONS(2264), - [anon_sym_gen] = ACTIONS(2264), - [anon_sym_if] = ACTIONS(2264), - [anon_sym_impl] = ACTIONS(2264), - [anon_sym_let] = ACTIONS(2264), - [anon_sym_loop] = ACTIONS(2264), - [anon_sym_match] = ACTIONS(2264), - [anon_sym_mod] = ACTIONS(2264), - [anon_sym_pub] = ACTIONS(2264), - [anon_sym_return] = ACTIONS(2264), - [anon_sym_static] = ACTIONS(2264), - [anon_sym_struct] = ACTIONS(2264), - [anon_sym_trait] = ACTIONS(2264), - [anon_sym_type] = ACTIONS(2264), - [anon_sym_union] = ACTIONS(2264), - [anon_sym_unsafe] = ACTIONS(2264), - [anon_sym_use] = ACTIONS(2264), - [anon_sym_while] = ACTIONS(2264), - [anon_sym_extern] = ACTIONS(2264), - [anon_sym_yield] = ACTIONS(2264), - [anon_sym_move] = ACTIONS(2264), - [anon_sym_try] = ACTIONS(2264), - [sym_integer_literal] = ACTIONS(2262), - [aux_sym_string_literal_token1] = ACTIONS(2262), - [sym_char_literal] = ACTIONS(2262), - [anon_sym_true] = ACTIONS(2264), - [anon_sym_false] = ACTIONS(2264), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2264), - [sym_super] = ACTIONS(2264), - [sym_crate] = ACTIONS(2264), - [sym_metavariable] = ACTIONS(2262), - [sym__raw_string_literal_start] = ACTIONS(2262), - [sym_float_literal] = ACTIONS(2262), + [ts_builtin_sym_end] = ACTIONS(2269), + [sym_identifier] = ACTIONS(2271), + [anon_sym_SEMI] = ACTIONS(2269), + [anon_sym_macro_rules_BANG] = ACTIONS(2269), + [anon_sym_LPAREN] = ACTIONS(2269), + [anon_sym_LBRACK] = ACTIONS(2269), + [anon_sym_LBRACE] = ACTIONS(2269), + [anon_sym_RBRACE] = ACTIONS(2269), + [anon_sym_STAR] = ACTIONS(2269), + [anon_sym_u8] = ACTIONS(2271), + [anon_sym_i8] = ACTIONS(2271), + [anon_sym_u16] = ACTIONS(2271), + [anon_sym_i16] = ACTIONS(2271), + [anon_sym_u32] = ACTIONS(2271), + [anon_sym_i32] = ACTIONS(2271), + [anon_sym_u64] = ACTIONS(2271), + [anon_sym_i64] = ACTIONS(2271), + [anon_sym_u128] = ACTIONS(2271), + [anon_sym_i128] = ACTIONS(2271), + [anon_sym_isize] = ACTIONS(2271), + [anon_sym_usize] = ACTIONS(2271), + [anon_sym_f32] = ACTIONS(2271), + [anon_sym_f64] = ACTIONS(2271), + [anon_sym_bool] = ACTIONS(2271), + [anon_sym_str] = ACTIONS(2271), + [anon_sym_char] = ACTIONS(2271), + [anon_sym_DASH] = ACTIONS(2269), + [anon_sym_BANG] = ACTIONS(2269), + [anon_sym_AMP] = ACTIONS(2269), + [anon_sym_PIPE] = ACTIONS(2269), + [anon_sym_LT] = ACTIONS(2269), + [anon_sym_DOT_DOT] = ACTIONS(2269), + [anon_sym_COLON_COLON] = ACTIONS(2269), + [anon_sym_POUND] = ACTIONS(2269), + [anon_sym_SQUOTE] = ACTIONS(2271), + [anon_sym_async] = ACTIONS(2271), + [anon_sym_break] = ACTIONS(2271), + [anon_sym_const] = ACTIONS(2271), + [anon_sym_continue] = ACTIONS(2271), + [anon_sym_default] = ACTIONS(2271), + [anon_sym_enum] = ACTIONS(2271), + [anon_sym_fn] = ACTIONS(2271), + [anon_sym_for] = ACTIONS(2271), + [anon_sym_gen] = ACTIONS(2271), + [anon_sym_if] = ACTIONS(2271), + [anon_sym_impl] = ACTIONS(2271), + [anon_sym_let] = ACTIONS(2271), + [anon_sym_loop] = ACTIONS(2271), + [anon_sym_match] = ACTIONS(2271), + [anon_sym_mod] = ACTIONS(2271), + [anon_sym_pub] = ACTIONS(2271), + [anon_sym_return] = ACTIONS(2271), + [anon_sym_static] = ACTIONS(2271), + [anon_sym_struct] = ACTIONS(2271), + [anon_sym_trait] = ACTIONS(2271), + [anon_sym_type] = ACTIONS(2271), + [anon_sym_union] = ACTIONS(2271), + [anon_sym_unsafe] = ACTIONS(2271), + [anon_sym_use] = ACTIONS(2271), + [anon_sym_while] = ACTIONS(2271), + [anon_sym_extern] = ACTIONS(2271), + [anon_sym_safe] = ACTIONS(2271), + [anon_sym_yield] = ACTIONS(2271), + [anon_sym_move] = ACTIONS(2271), + [anon_sym_try] = ACTIONS(2271), + [sym_integer_literal] = ACTIONS(2269), + [aux_sym_string_literal_token1] = ACTIONS(2269), + [sym_char_literal] = ACTIONS(2269), + [anon_sym_true] = ACTIONS(2271), + [anon_sym_false] = ACTIONS(2271), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(2271), + [sym_super] = ACTIONS(2271), + [sym_crate] = ACTIONS(2271), + [sym_metavariable] = ACTIONS(2269), + [sym__raw_string_literal_start] = ACTIONS(2269), + [sym_float_literal] = ACTIONS(2269), }, [STATE(610)] = { [sym_line_comment] = STATE(610), [sym_block_comment] = STATE(610), - [ts_builtin_sym_end] = ACTIONS(2266), - [sym_identifier] = ACTIONS(2268), - [anon_sym_SEMI] = ACTIONS(2266), - [anon_sym_macro_rules_BANG] = ACTIONS(2266), - [anon_sym_LPAREN] = ACTIONS(2266), - [anon_sym_LBRACK] = ACTIONS(2266), - [anon_sym_LBRACE] = ACTIONS(2266), - [anon_sym_RBRACE] = ACTIONS(2266), - [anon_sym_STAR] = ACTIONS(2266), - [anon_sym_u8] = ACTIONS(2268), - [anon_sym_i8] = ACTIONS(2268), - [anon_sym_u16] = ACTIONS(2268), - [anon_sym_i16] = ACTIONS(2268), - [anon_sym_u32] = ACTIONS(2268), - [anon_sym_i32] = ACTIONS(2268), - [anon_sym_u64] = ACTIONS(2268), - [anon_sym_i64] = ACTIONS(2268), - [anon_sym_u128] = ACTIONS(2268), - [anon_sym_i128] = ACTIONS(2268), - [anon_sym_isize] = ACTIONS(2268), - [anon_sym_usize] = ACTIONS(2268), - [anon_sym_f32] = ACTIONS(2268), - [anon_sym_f64] = ACTIONS(2268), - [anon_sym_bool] = ACTIONS(2268), - [anon_sym_str] = ACTIONS(2268), - [anon_sym_char] = ACTIONS(2268), - [anon_sym_DASH] = ACTIONS(2266), - [anon_sym_BANG] = ACTIONS(2266), - [anon_sym_AMP] = ACTIONS(2266), - [anon_sym_PIPE] = ACTIONS(2266), - [anon_sym_LT] = ACTIONS(2266), - [anon_sym_DOT_DOT] = ACTIONS(2266), - [anon_sym_COLON_COLON] = ACTIONS(2266), - [anon_sym_POUND] = ACTIONS(2266), - [anon_sym_SQUOTE] = ACTIONS(2268), - [anon_sym_async] = ACTIONS(2268), - [anon_sym_break] = ACTIONS(2268), - [anon_sym_const] = ACTIONS(2268), - [anon_sym_continue] = ACTIONS(2268), - [anon_sym_default] = ACTIONS(2268), - [anon_sym_enum] = ACTIONS(2268), - [anon_sym_fn] = ACTIONS(2268), - [anon_sym_for] = ACTIONS(2268), - [anon_sym_gen] = ACTIONS(2268), - [anon_sym_if] = ACTIONS(2268), - [anon_sym_impl] = ACTIONS(2268), - [anon_sym_let] = ACTIONS(2268), - [anon_sym_loop] = ACTIONS(2268), - [anon_sym_match] = ACTIONS(2268), - [anon_sym_mod] = ACTIONS(2268), - [anon_sym_pub] = ACTIONS(2268), - [anon_sym_return] = ACTIONS(2268), - [anon_sym_static] = ACTIONS(2268), - [anon_sym_struct] = ACTIONS(2268), - [anon_sym_trait] = ACTIONS(2268), - [anon_sym_type] = ACTIONS(2268), - [anon_sym_union] = ACTIONS(2268), - [anon_sym_unsafe] = ACTIONS(2268), - [anon_sym_use] = ACTIONS(2268), - [anon_sym_while] = ACTIONS(2268), - [anon_sym_extern] = ACTIONS(2268), - [anon_sym_yield] = ACTIONS(2268), - [anon_sym_move] = ACTIONS(2268), - [anon_sym_try] = ACTIONS(2268), - [sym_integer_literal] = ACTIONS(2266), - [aux_sym_string_literal_token1] = ACTIONS(2266), - [sym_char_literal] = ACTIONS(2266), - [anon_sym_true] = ACTIONS(2268), - [anon_sym_false] = ACTIONS(2268), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2268), - [sym_super] = ACTIONS(2268), - [sym_crate] = ACTIONS(2268), - [sym_metavariable] = ACTIONS(2266), - [sym__raw_string_literal_start] = ACTIONS(2266), - [sym_float_literal] = ACTIONS(2266), + [ts_builtin_sym_end] = ACTIONS(2273), + [sym_identifier] = ACTIONS(2275), + [anon_sym_SEMI] = ACTIONS(2273), + [anon_sym_macro_rules_BANG] = ACTIONS(2273), + [anon_sym_LPAREN] = ACTIONS(2273), + [anon_sym_LBRACK] = ACTIONS(2273), + [anon_sym_LBRACE] = ACTIONS(2273), + [anon_sym_RBRACE] = ACTIONS(2273), + [anon_sym_STAR] = ACTIONS(2273), + [anon_sym_u8] = ACTIONS(2275), + [anon_sym_i8] = ACTIONS(2275), + [anon_sym_u16] = ACTIONS(2275), + [anon_sym_i16] = ACTIONS(2275), + [anon_sym_u32] = ACTIONS(2275), + [anon_sym_i32] = ACTIONS(2275), + [anon_sym_u64] = ACTIONS(2275), + [anon_sym_i64] = ACTIONS(2275), + [anon_sym_u128] = ACTIONS(2275), + [anon_sym_i128] = ACTIONS(2275), + [anon_sym_isize] = ACTIONS(2275), + [anon_sym_usize] = ACTIONS(2275), + [anon_sym_f32] = ACTIONS(2275), + [anon_sym_f64] = ACTIONS(2275), + [anon_sym_bool] = ACTIONS(2275), + [anon_sym_str] = ACTIONS(2275), + [anon_sym_char] = ACTIONS(2275), + [anon_sym_DASH] = ACTIONS(2273), + [anon_sym_BANG] = ACTIONS(2273), + [anon_sym_AMP] = ACTIONS(2273), + [anon_sym_PIPE] = ACTIONS(2273), + [anon_sym_LT] = ACTIONS(2273), + [anon_sym_DOT_DOT] = ACTIONS(2273), + [anon_sym_COLON_COLON] = ACTIONS(2273), + [anon_sym_POUND] = ACTIONS(2273), + [anon_sym_SQUOTE] = ACTIONS(2275), + [anon_sym_async] = ACTIONS(2275), + [anon_sym_break] = ACTIONS(2275), + [anon_sym_const] = ACTIONS(2275), + [anon_sym_continue] = ACTIONS(2275), + [anon_sym_default] = ACTIONS(2275), + [anon_sym_enum] = ACTIONS(2275), + [anon_sym_fn] = ACTIONS(2275), + [anon_sym_for] = ACTIONS(2275), + [anon_sym_gen] = ACTIONS(2275), + [anon_sym_if] = ACTIONS(2275), + [anon_sym_impl] = ACTIONS(2275), + [anon_sym_let] = ACTIONS(2275), + [anon_sym_loop] = ACTIONS(2275), + [anon_sym_match] = ACTIONS(2275), + [anon_sym_mod] = ACTIONS(2275), + [anon_sym_pub] = ACTIONS(2275), + [anon_sym_return] = ACTIONS(2275), + [anon_sym_static] = ACTIONS(2275), + [anon_sym_struct] = ACTIONS(2275), + [anon_sym_trait] = ACTIONS(2275), + [anon_sym_type] = ACTIONS(2275), + [anon_sym_union] = ACTIONS(2275), + [anon_sym_unsafe] = ACTIONS(2275), + [anon_sym_use] = ACTIONS(2275), + [anon_sym_while] = ACTIONS(2275), + [anon_sym_extern] = ACTIONS(2275), + [anon_sym_safe] = ACTIONS(2275), + [anon_sym_yield] = ACTIONS(2275), + [anon_sym_move] = ACTIONS(2275), + [anon_sym_try] = ACTIONS(2275), + [sym_integer_literal] = ACTIONS(2273), + [aux_sym_string_literal_token1] = ACTIONS(2273), + [sym_char_literal] = ACTIONS(2273), + [anon_sym_true] = ACTIONS(2275), + [anon_sym_false] = ACTIONS(2275), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(2275), + [sym_super] = ACTIONS(2275), + [sym_crate] = ACTIONS(2275), + [sym_metavariable] = ACTIONS(2273), + [sym__raw_string_literal_start] = ACTIONS(2273), + [sym_float_literal] = ACTIONS(2273), }, [STATE(611)] = { [sym_line_comment] = STATE(611), [sym_block_comment] = STATE(611), - [ts_builtin_sym_end] = ACTIONS(2270), - [sym_identifier] = ACTIONS(2272), - [anon_sym_SEMI] = ACTIONS(2270), - [anon_sym_macro_rules_BANG] = ACTIONS(2270), - [anon_sym_LPAREN] = ACTIONS(2270), - [anon_sym_LBRACK] = ACTIONS(2270), - [anon_sym_LBRACE] = ACTIONS(2270), - [anon_sym_RBRACE] = ACTIONS(2270), - [anon_sym_STAR] = ACTIONS(2270), - [anon_sym_u8] = ACTIONS(2272), - [anon_sym_i8] = ACTIONS(2272), - [anon_sym_u16] = ACTIONS(2272), - [anon_sym_i16] = ACTIONS(2272), - [anon_sym_u32] = ACTIONS(2272), - [anon_sym_i32] = ACTIONS(2272), - [anon_sym_u64] = ACTIONS(2272), - [anon_sym_i64] = ACTIONS(2272), - [anon_sym_u128] = ACTIONS(2272), - [anon_sym_i128] = ACTIONS(2272), - [anon_sym_isize] = ACTIONS(2272), - [anon_sym_usize] = ACTIONS(2272), - [anon_sym_f32] = ACTIONS(2272), - [anon_sym_f64] = ACTIONS(2272), - [anon_sym_bool] = ACTIONS(2272), - [anon_sym_str] = ACTIONS(2272), - [anon_sym_char] = ACTIONS(2272), - [anon_sym_DASH] = ACTIONS(2270), - [anon_sym_BANG] = ACTIONS(2270), - [anon_sym_AMP] = ACTIONS(2270), - [anon_sym_PIPE] = ACTIONS(2270), - [anon_sym_LT] = ACTIONS(2270), - [anon_sym_DOT_DOT] = ACTIONS(2270), - [anon_sym_COLON_COLON] = ACTIONS(2270), - [anon_sym_POUND] = ACTIONS(2270), - [anon_sym_SQUOTE] = ACTIONS(2272), - [anon_sym_async] = ACTIONS(2272), - [anon_sym_break] = ACTIONS(2272), - [anon_sym_const] = ACTIONS(2272), - [anon_sym_continue] = ACTIONS(2272), - [anon_sym_default] = ACTIONS(2272), - [anon_sym_enum] = ACTIONS(2272), - [anon_sym_fn] = ACTIONS(2272), - [anon_sym_for] = ACTIONS(2272), - [anon_sym_gen] = ACTIONS(2272), - [anon_sym_if] = ACTIONS(2272), - [anon_sym_impl] = ACTIONS(2272), - [anon_sym_let] = ACTIONS(2272), - [anon_sym_loop] = ACTIONS(2272), - [anon_sym_match] = ACTIONS(2272), - [anon_sym_mod] = ACTIONS(2272), - [anon_sym_pub] = ACTIONS(2272), - [anon_sym_return] = ACTIONS(2272), - [anon_sym_static] = ACTIONS(2272), - [anon_sym_struct] = ACTIONS(2272), - [anon_sym_trait] = ACTIONS(2272), - [anon_sym_type] = ACTIONS(2272), - [anon_sym_union] = ACTIONS(2272), - [anon_sym_unsafe] = ACTIONS(2272), - [anon_sym_use] = ACTIONS(2272), - [anon_sym_while] = ACTIONS(2272), - [anon_sym_extern] = ACTIONS(2272), - [anon_sym_yield] = ACTIONS(2272), - [anon_sym_move] = ACTIONS(2272), - [anon_sym_try] = ACTIONS(2272), - [sym_integer_literal] = ACTIONS(2270), - [aux_sym_string_literal_token1] = ACTIONS(2270), - [sym_char_literal] = ACTIONS(2270), - [anon_sym_true] = ACTIONS(2272), - [anon_sym_false] = ACTIONS(2272), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2272), - [sym_super] = ACTIONS(2272), - [sym_crate] = ACTIONS(2272), - [sym_metavariable] = ACTIONS(2270), - [sym__raw_string_literal_start] = ACTIONS(2270), - [sym_float_literal] = ACTIONS(2270), + [ts_builtin_sym_end] = ACTIONS(2277), + [sym_identifier] = ACTIONS(2279), + [anon_sym_SEMI] = ACTIONS(2277), + [anon_sym_macro_rules_BANG] = ACTIONS(2277), + [anon_sym_LPAREN] = ACTIONS(2277), + [anon_sym_LBRACK] = ACTIONS(2277), + [anon_sym_LBRACE] = ACTIONS(2277), + [anon_sym_RBRACE] = ACTIONS(2277), + [anon_sym_STAR] = ACTIONS(2277), + [anon_sym_u8] = ACTIONS(2279), + [anon_sym_i8] = ACTIONS(2279), + [anon_sym_u16] = ACTIONS(2279), + [anon_sym_i16] = ACTIONS(2279), + [anon_sym_u32] = ACTIONS(2279), + [anon_sym_i32] = ACTIONS(2279), + [anon_sym_u64] = ACTIONS(2279), + [anon_sym_i64] = ACTIONS(2279), + [anon_sym_u128] = ACTIONS(2279), + [anon_sym_i128] = ACTIONS(2279), + [anon_sym_isize] = ACTIONS(2279), + [anon_sym_usize] = ACTIONS(2279), + [anon_sym_f32] = ACTIONS(2279), + [anon_sym_f64] = ACTIONS(2279), + [anon_sym_bool] = ACTIONS(2279), + [anon_sym_str] = ACTIONS(2279), + [anon_sym_char] = ACTIONS(2279), + [anon_sym_DASH] = ACTIONS(2277), + [anon_sym_BANG] = ACTIONS(2277), + [anon_sym_AMP] = ACTIONS(2277), + [anon_sym_PIPE] = ACTIONS(2277), + [anon_sym_LT] = ACTIONS(2277), + [anon_sym_DOT_DOT] = ACTIONS(2277), + [anon_sym_COLON_COLON] = ACTIONS(2277), + [anon_sym_POUND] = ACTIONS(2277), + [anon_sym_SQUOTE] = ACTIONS(2279), + [anon_sym_async] = ACTIONS(2279), + [anon_sym_break] = ACTIONS(2279), + [anon_sym_const] = ACTIONS(2279), + [anon_sym_continue] = ACTIONS(2279), + [anon_sym_default] = ACTIONS(2279), + [anon_sym_enum] = ACTIONS(2279), + [anon_sym_fn] = ACTIONS(2279), + [anon_sym_for] = ACTIONS(2279), + [anon_sym_gen] = ACTIONS(2279), + [anon_sym_if] = ACTIONS(2279), + [anon_sym_impl] = ACTIONS(2279), + [anon_sym_let] = ACTIONS(2279), + [anon_sym_loop] = ACTIONS(2279), + [anon_sym_match] = ACTIONS(2279), + [anon_sym_mod] = ACTIONS(2279), + [anon_sym_pub] = ACTIONS(2279), + [anon_sym_return] = ACTIONS(2279), + [anon_sym_static] = ACTIONS(2279), + [anon_sym_struct] = ACTIONS(2279), + [anon_sym_trait] = ACTIONS(2279), + [anon_sym_type] = ACTIONS(2279), + [anon_sym_union] = ACTIONS(2279), + [anon_sym_unsafe] = ACTIONS(2279), + [anon_sym_use] = ACTIONS(2279), + [anon_sym_while] = ACTIONS(2279), + [anon_sym_extern] = ACTIONS(2279), + [anon_sym_safe] = ACTIONS(2279), + [anon_sym_yield] = ACTIONS(2279), + [anon_sym_move] = ACTIONS(2279), + [anon_sym_try] = ACTIONS(2279), + [sym_integer_literal] = ACTIONS(2277), + [aux_sym_string_literal_token1] = ACTIONS(2277), + [sym_char_literal] = ACTIONS(2277), + [anon_sym_true] = ACTIONS(2279), + [anon_sym_false] = ACTIONS(2279), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(2279), + [sym_super] = ACTIONS(2279), + [sym_crate] = ACTIONS(2279), + [sym_metavariable] = ACTIONS(2277), + [sym__raw_string_literal_start] = ACTIONS(2277), + [sym_float_literal] = ACTIONS(2277), }, [STATE(612)] = { [sym_line_comment] = STATE(612), [sym_block_comment] = STATE(612), - [ts_builtin_sym_end] = ACTIONS(2274), - [sym_identifier] = ACTIONS(2276), - [anon_sym_SEMI] = ACTIONS(2274), - [anon_sym_macro_rules_BANG] = ACTIONS(2274), - [anon_sym_LPAREN] = ACTIONS(2274), - [anon_sym_LBRACK] = ACTIONS(2274), - [anon_sym_LBRACE] = ACTIONS(2274), - [anon_sym_RBRACE] = ACTIONS(2274), - [anon_sym_STAR] = ACTIONS(2274), - [anon_sym_u8] = ACTIONS(2276), - [anon_sym_i8] = ACTIONS(2276), - [anon_sym_u16] = ACTIONS(2276), - [anon_sym_i16] = ACTIONS(2276), - [anon_sym_u32] = ACTIONS(2276), - [anon_sym_i32] = ACTIONS(2276), - [anon_sym_u64] = ACTIONS(2276), - [anon_sym_i64] = ACTIONS(2276), - [anon_sym_u128] = ACTIONS(2276), - [anon_sym_i128] = ACTIONS(2276), - [anon_sym_isize] = ACTIONS(2276), - [anon_sym_usize] = ACTIONS(2276), - [anon_sym_f32] = ACTIONS(2276), - [anon_sym_f64] = ACTIONS(2276), - [anon_sym_bool] = ACTIONS(2276), - [anon_sym_str] = ACTIONS(2276), - [anon_sym_char] = ACTIONS(2276), - [anon_sym_DASH] = ACTIONS(2274), - [anon_sym_BANG] = ACTIONS(2274), - [anon_sym_AMP] = ACTIONS(2274), - [anon_sym_PIPE] = ACTIONS(2274), - [anon_sym_LT] = ACTIONS(2274), - [anon_sym_DOT_DOT] = ACTIONS(2274), - [anon_sym_COLON_COLON] = ACTIONS(2274), - [anon_sym_POUND] = ACTIONS(2274), - [anon_sym_SQUOTE] = ACTIONS(2276), - [anon_sym_async] = ACTIONS(2276), - [anon_sym_break] = ACTIONS(2276), - [anon_sym_const] = ACTIONS(2276), - [anon_sym_continue] = ACTIONS(2276), - [anon_sym_default] = ACTIONS(2276), - [anon_sym_enum] = ACTIONS(2276), - [anon_sym_fn] = ACTIONS(2276), - [anon_sym_for] = ACTIONS(2276), - [anon_sym_gen] = ACTIONS(2276), - [anon_sym_if] = ACTIONS(2276), - [anon_sym_impl] = ACTIONS(2276), - [anon_sym_let] = ACTIONS(2276), - [anon_sym_loop] = ACTIONS(2276), - [anon_sym_match] = ACTIONS(2276), - [anon_sym_mod] = ACTIONS(2276), - [anon_sym_pub] = ACTIONS(2276), - [anon_sym_return] = ACTIONS(2276), - [anon_sym_static] = ACTIONS(2276), - [anon_sym_struct] = ACTIONS(2276), - [anon_sym_trait] = ACTIONS(2276), - [anon_sym_type] = ACTIONS(2276), - [anon_sym_union] = ACTIONS(2276), - [anon_sym_unsafe] = ACTIONS(2276), - [anon_sym_use] = ACTIONS(2276), - [anon_sym_while] = ACTIONS(2276), - [anon_sym_extern] = ACTIONS(2276), - [anon_sym_yield] = ACTIONS(2276), - [anon_sym_move] = ACTIONS(2276), - [anon_sym_try] = ACTIONS(2276), - [sym_integer_literal] = ACTIONS(2274), - [aux_sym_string_literal_token1] = ACTIONS(2274), - [sym_char_literal] = ACTIONS(2274), - [anon_sym_true] = ACTIONS(2276), - [anon_sym_false] = ACTIONS(2276), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2276), - [sym_super] = ACTIONS(2276), - [sym_crate] = ACTIONS(2276), - [sym_metavariable] = ACTIONS(2274), - [sym__raw_string_literal_start] = ACTIONS(2274), - [sym_float_literal] = ACTIONS(2274), + [ts_builtin_sym_end] = ACTIONS(2281), + [sym_identifier] = ACTIONS(2283), + [anon_sym_SEMI] = ACTIONS(2281), + [anon_sym_macro_rules_BANG] = ACTIONS(2281), + [anon_sym_LPAREN] = ACTIONS(2281), + [anon_sym_LBRACK] = ACTIONS(2281), + [anon_sym_LBRACE] = ACTIONS(2281), + [anon_sym_RBRACE] = ACTIONS(2281), + [anon_sym_STAR] = ACTIONS(2281), + [anon_sym_u8] = ACTIONS(2283), + [anon_sym_i8] = ACTIONS(2283), + [anon_sym_u16] = ACTIONS(2283), + [anon_sym_i16] = ACTIONS(2283), + [anon_sym_u32] = ACTIONS(2283), + [anon_sym_i32] = ACTIONS(2283), + [anon_sym_u64] = ACTIONS(2283), + [anon_sym_i64] = ACTIONS(2283), + [anon_sym_u128] = ACTIONS(2283), + [anon_sym_i128] = ACTIONS(2283), + [anon_sym_isize] = ACTIONS(2283), + [anon_sym_usize] = ACTIONS(2283), + [anon_sym_f32] = ACTIONS(2283), + [anon_sym_f64] = ACTIONS(2283), + [anon_sym_bool] = ACTIONS(2283), + [anon_sym_str] = ACTIONS(2283), + [anon_sym_char] = ACTIONS(2283), + [anon_sym_DASH] = ACTIONS(2281), + [anon_sym_BANG] = ACTIONS(2281), + [anon_sym_AMP] = ACTIONS(2281), + [anon_sym_PIPE] = ACTIONS(2281), + [anon_sym_LT] = ACTIONS(2281), + [anon_sym_DOT_DOT] = ACTIONS(2281), + [anon_sym_COLON_COLON] = ACTIONS(2281), + [anon_sym_POUND] = ACTIONS(2281), + [anon_sym_SQUOTE] = ACTIONS(2283), + [anon_sym_async] = ACTIONS(2283), + [anon_sym_break] = ACTIONS(2283), + [anon_sym_const] = ACTIONS(2283), + [anon_sym_continue] = ACTIONS(2283), + [anon_sym_default] = ACTIONS(2283), + [anon_sym_enum] = ACTIONS(2283), + [anon_sym_fn] = ACTIONS(2283), + [anon_sym_for] = ACTIONS(2283), + [anon_sym_gen] = ACTIONS(2283), + [anon_sym_if] = ACTIONS(2283), + [anon_sym_impl] = ACTIONS(2283), + [anon_sym_let] = ACTIONS(2283), + [anon_sym_loop] = ACTIONS(2283), + [anon_sym_match] = ACTIONS(2283), + [anon_sym_mod] = ACTIONS(2283), + [anon_sym_pub] = ACTIONS(2283), + [anon_sym_return] = ACTIONS(2283), + [anon_sym_static] = ACTIONS(2283), + [anon_sym_struct] = ACTIONS(2283), + [anon_sym_trait] = ACTIONS(2283), + [anon_sym_type] = ACTIONS(2283), + [anon_sym_union] = ACTIONS(2283), + [anon_sym_unsafe] = ACTIONS(2283), + [anon_sym_use] = ACTIONS(2283), + [anon_sym_while] = ACTIONS(2283), + [anon_sym_extern] = ACTIONS(2283), + [anon_sym_safe] = ACTIONS(2283), + [anon_sym_yield] = ACTIONS(2283), + [anon_sym_move] = ACTIONS(2283), + [anon_sym_try] = ACTIONS(2283), + [sym_integer_literal] = ACTIONS(2281), + [aux_sym_string_literal_token1] = ACTIONS(2281), + [sym_char_literal] = ACTIONS(2281), + [anon_sym_true] = ACTIONS(2283), + [anon_sym_false] = ACTIONS(2283), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(2283), + [sym_super] = ACTIONS(2283), + [sym_crate] = ACTIONS(2283), + [sym_metavariable] = ACTIONS(2281), + [sym__raw_string_literal_start] = ACTIONS(2281), + [sym_float_literal] = ACTIONS(2281), }, [STATE(613)] = { [sym_line_comment] = STATE(613), [sym_block_comment] = STATE(613), - [ts_builtin_sym_end] = ACTIONS(2278), - [sym_identifier] = ACTIONS(2280), - [anon_sym_SEMI] = ACTIONS(2278), - [anon_sym_macro_rules_BANG] = ACTIONS(2278), - [anon_sym_LPAREN] = ACTIONS(2278), - [anon_sym_LBRACK] = ACTIONS(2278), - [anon_sym_LBRACE] = ACTIONS(2278), - [anon_sym_RBRACE] = ACTIONS(2278), - [anon_sym_STAR] = ACTIONS(2278), - [anon_sym_u8] = ACTIONS(2280), - [anon_sym_i8] = ACTIONS(2280), - [anon_sym_u16] = ACTIONS(2280), - [anon_sym_i16] = ACTIONS(2280), - [anon_sym_u32] = ACTIONS(2280), - [anon_sym_i32] = ACTIONS(2280), - [anon_sym_u64] = ACTIONS(2280), - [anon_sym_i64] = ACTIONS(2280), - [anon_sym_u128] = ACTIONS(2280), - [anon_sym_i128] = ACTIONS(2280), - [anon_sym_isize] = ACTIONS(2280), - [anon_sym_usize] = ACTIONS(2280), - [anon_sym_f32] = ACTIONS(2280), - [anon_sym_f64] = ACTIONS(2280), - [anon_sym_bool] = ACTIONS(2280), - [anon_sym_str] = ACTIONS(2280), - [anon_sym_char] = ACTIONS(2280), - [anon_sym_DASH] = ACTIONS(2278), - [anon_sym_BANG] = ACTIONS(2278), - [anon_sym_AMP] = ACTIONS(2278), - [anon_sym_PIPE] = ACTIONS(2278), - [anon_sym_LT] = ACTIONS(2278), - [anon_sym_DOT_DOT] = ACTIONS(2278), - [anon_sym_COLON_COLON] = ACTIONS(2278), - [anon_sym_POUND] = ACTIONS(2278), - [anon_sym_SQUOTE] = ACTIONS(2280), - [anon_sym_async] = ACTIONS(2280), - [anon_sym_break] = ACTIONS(2280), - [anon_sym_const] = ACTIONS(2280), - [anon_sym_continue] = ACTIONS(2280), - [anon_sym_default] = ACTIONS(2280), - [anon_sym_enum] = ACTIONS(2280), - [anon_sym_fn] = ACTIONS(2280), - [anon_sym_for] = ACTIONS(2280), - [anon_sym_gen] = ACTIONS(2280), - [anon_sym_if] = ACTIONS(2280), - [anon_sym_impl] = ACTIONS(2280), - [anon_sym_let] = ACTIONS(2280), - [anon_sym_loop] = ACTIONS(2280), - [anon_sym_match] = ACTIONS(2280), - [anon_sym_mod] = ACTIONS(2280), - [anon_sym_pub] = ACTIONS(2280), - [anon_sym_return] = ACTIONS(2280), - [anon_sym_static] = ACTIONS(2280), - [anon_sym_struct] = ACTIONS(2280), - [anon_sym_trait] = ACTIONS(2280), - [anon_sym_type] = ACTIONS(2280), - [anon_sym_union] = ACTIONS(2280), - [anon_sym_unsafe] = ACTIONS(2280), - [anon_sym_use] = ACTIONS(2280), - [anon_sym_while] = ACTIONS(2280), - [anon_sym_extern] = ACTIONS(2280), - [anon_sym_yield] = ACTIONS(2280), - [anon_sym_move] = ACTIONS(2280), - [anon_sym_try] = ACTIONS(2280), - [sym_integer_literal] = ACTIONS(2278), - [aux_sym_string_literal_token1] = ACTIONS(2278), - [sym_char_literal] = ACTIONS(2278), - [anon_sym_true] = ACTIONS(2280), - [anon_sym_false] = ACTIONS(2280), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2280), - [sym_super] = ACTIONS(2280), - [sym_crate] = ACTIONS(2280), - [sym_metavariable] = ACTIONS(2278), - [sym__raw_string_literal_start] = ACTIONS(2278), - [sym_float_literal] = ACTIONS(2278), + [ts_builtin_sym_end] = ACTIONS(2285), + [sym_identifier] = ACTIONS(2287), + [anon_sym_SEMI] = ACTIONS(2285), + [anon_sym_macro_rules_BANG] = ACTIONS(2285), + [anon_sym_LPAREN] = ACTIONS(2285), + [anon_sym_LBRACK] = ACTIONS(2285), + [anon_sym_LBRACE] = ACTIONS(2285), + [anon_sym_RBRACE] = ACTIONS(2285), + [anon_sym_STAR] = ACTIONS(2285), + [anon_sym_u8] = ACTIONS(2287), + [anon_sym_i8] = ACTIONS(2287), + [anon_sym_u16] = ACTIONS(2287), + [anon_sym_i16] = ACTIONS(2287), + [anon_sym_u32] = ACTIONS(2287), + [anon_sym_i32] = ACTIONS(2287), + [anon_sym_u64] = ACTIONS(2287), + [anon_sym_i64] = ACTIONS(2287), + [anon_sym_u128] = ACTIONS(2287), + [anon_sym_i128] = ACTIONS(2287), + [anon_sym_isize] = ACTIONS(2287), + [anon_sym_usize] = ACTIONS(2287), + [anon_sym_f32] = ACTIONS(2287), + [anon_sym_f64] = ACTIONS(2287), + [anon_sym_bool] = ACTIONS(2287), + [anon_sym_str] = ACTIONS(2287), + [anon_sym_char] = ACTIONS(2287), + [anon_sym_DASH] = ACTIONS(2285), + [anon_sym_BANG] = ACTIONS(2285), + [anon_sym_AMP] = ACTIONS(2285), + [anon_sym_PIPE] = ACTIONS(2285), + [anon_sym_LT] = ACTIONS(2285), + [anon_sym_DOT_DOT] = ACTIONS(2285), + [anon_sym_COLON_COLON] = ACTIONS(2285), + [anon_sym_POUND] = ACTIONS(2285), + [anon_sym_SQUOTE] = ACTIONS(2287), + [anon_sym_async] = ACTIONS(2287), + [anon_sym_break] = ACTIONS(2287), + [anon_sym_const] = ACTIONS(2287), + [anon_sym_continue] = ACTIONS(2287), + [anon_sym_default] = ACTIONS(2287), + [anon_sym_enum] = ACTIONS(2287), + [anon_sym_fn] = ACTIONS(2287), + [anon_sym_for] = ACTIONS(2287), + [anon_sym_gen] = ACTIONS(2287), + [anon_sym_if] = ACTIONS(2287), + [anon_sym_impl] = ACTIONS(2287), + [anon_sym_let] = ACTIONS(2287), + [anon_sym_loop] = ACTIONS(2287), + [anon_sym_match] = ACTIONS(2287), + [anon_sym_mod] = ACTIONS(2287), + [anon_sym_pub] = ACTIONS(2287), + [anon_sym_return] = ACTIONS(2287), + [anon_sym_static] = ACTIONS(2287), + [anon_sym_struct] = ACTIONS(2287), + [anon_sym_trait] = ACTIONS(2287), + [anon_sym_type] = ACTIONS(2287), + [anon_sym_union] = ACTIONS(2287), + [anon_sym_unsafe] = ACTIONS(2287), + [anon_sym_use] = ACTIONS(2287), + [anon_sym_while] = ACTIONS(2287), + [anon_sym_extern] = ACTIONS(2287), + [anon_sym_safe] = ACTIONS(2287), + [anon_sym_yield] = ACTIONS(2287), + [anon_sym_move] = ACTIONS(2287), + [anon_sym_try] = ACTIONS(2287), + [sym_integer_literal] = ACTIONS(2285), + [aux_sym_string_literal_token1] = ACTIONS(2285), + [sym_char_literal] = ACTIONS(2285), + [anon_sym_true] = ACTIONS(2287), + [anon_sym_false] = ACTIONS(2287), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(2287), + [sym_super] = ACTIONS(2287), + [sym_crate] = ACTIONS(2287), + [sym_metavariable] = ACTIONS(2285), + [sym__raw_string_literal_start] = ACTIONS(2285), + [sym_float_literal] = ACTIONS(2285), }, [STATE(614)] = { [sym_line_comment] = STATE(614), [sym_block_comment] = STATE(614), - [ts_builtin_sym_end] = ACTIONS(2282), - [sym_identifier] = ACTIONS(2284), - [anon_sym_SEMI] = ACTIONS(2282), - [anon_sym_macro_rules_BANG] = ACTIONS(2282), - [anon_sym_LPAREN] = ACTIONS(2282), - [anon_sym_LBRACK] = ACTIONS(2282), - [anon_sym_LBRACE] = ACTIONS(2282), - [anon_sym_RBRACE] = ACTIONS(2282), - [anon_sym_STAR] = ACTIONS(2282), - [anon_sym_u8] = ACTIONS(2284), - [anon_sym_i8] = ACTIONS(2284), - [anon_sym_u16] = ACTIONS(2284), - [anon_sym_i16] = ACTIONS(2284), - [anon_sym_u32] = ACTIONS(2284), - [anon_sym_i32] = ACTIONS(2284), - [anon_sym_u64] = ACTIONS(2284), - [anon_sym_i64] = ACTIONS(2284), - [anon_sym_u128] = ACTIONS(2284), - [anon_sym_i128] = ACTIONS(2284), - [anon_sym_isize] = ACTIONS(2284), - [anon_sym_usize] = ACTIONS(2284), - [anon_sym_f32] = ACTIONS(2284), - [anon_sym_f64] = ACTIONS(2284), - [anon_sym_bool] = ACTIONS(2284), - [anon_sym_str] = ACTIONS(2284), - [anon_sym_char] = ACTIONS(2284), - [anon_sym_DASH] = ACTIONS(2282), - [anon_sym_BANG] = ACTIONS(2282), - [anon_sym_AMP] = ACTIONS(2282), - [anon_sym_PIPE] = ACTIONS(2282), - [anon_sym_LT] = ACTIONS(2282), - [anon_sym_DOT_DOT] = ACTIONS(2282), - [anon_sym_COLON_COLON] = ACTIONS(2282), - [anon_sym_POUND] = ACTIONS(2282), - [anon_sym_SQUOTE] = ACTIONS(2284), - [anon_sym_async] = ACTIONS(2284), - [anon_sym_break] = ACTIONS(2284), - [anon_sym_const] = ACTIONS(2284), - [anon_sym_continue] = ACTIONS(2284), - [anon_sym_default] = ACTIONS(2284), - [anon_sym_enum] = ACTIONS(2284), - [anon_sym_fn] = ACTIONS(2284), - [anon_sym_for] = ACTIONS(2284), - [anon_sym_gen] = ACTIONS(2284), - [anon_sym_if] = ACTIONS(2284), - [anon_sym_impl] = ACTIONS(2284), - [anon_sym_let] = ACTIONS(2284), - [anon_sym_loop] = ACTIONS(2284), - [anon_sym_match] = ACTIONS(2284), - [anon_sym_mod] = ACTIONS(2284), - [anon_sym_pub] = ACTIONS(2284), - [anon_sym_return] = ACTIONS(2284), - [anon_sym_static] = ACTIONS(2284), - [anon_sym_struct] = ACTIONS(2284), - [anon_sym_trait] = ACTIONS(2284), - [anon_sym_type] = ACTIONS(2284), - [anon_sym_union] = ACTIONS(2284), - [anon_sym_unsafe] = ACTIONS(2284), - [anon_sym_use] = ACTIONS(2284), - [anon_sym_while] = ACTIONS(2284), - [anon_sym_extern] = ACTIONS(2284), - [anon_sym_yield] = ACTIONS(2284), - [anon_sym_move] = ACTIONS(2284), - [anon_sym_try] = ACTIONS(2284), - [sym_integer_literal] = ACTIONS(2282), - [aux_sym_string_literal_token1] = ACTIONS(2282), - [sym_char_literal] = ACTIONS(2282), - [anon_sym_true] = ACTIONS(2284), - [anon_sym_false] = ACTIONS(2284), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2284), - [sym_super] = ACTIONS(2284), - [sym_crate] = ACTIONS(2284), - [sym_metavariable] = ACTIONS(2282), - [sym__raw_string_literal_start] = ACTIONS(2282), - [sym_float_literal] = ACTIONS(2282), + [ts_builtin_sym_end] = ACTIONS(2289), + [sym_identifier] = ACTIONS(2291), + [anon_sym_SEMI] = ACTIONS(2289), + [anon_sym_macro_rules_BANG] = ACTIONS(2289), + [anon_sym_LPAREN] = ACTIONS(2289), + [anon_sym_LBRACK] = ACTIONS(2289), + [anon_sym_LBRACE] = ACTIONS(2289), + [anon_sym_RBRACE] = ACTIONS(2289), + [anon_sym_STAR] = ACTIONS(2289), + [anon_sym_u8] = ACTIONS(2291), + [anon_sym_i8] = ACTIONS(2291), + [anon_sym_u16] = ACTIONS(2291), + [anon_sym_i16] = ACTIONS(2291), + [anon_sym_u32] = ACTIONS(2291), + [anon_sym_i32] = ACTIONS(2291), + [anon_sym_u64] = ACTIONS(2291), + [anon_sym_i64] = ACTIONS(2291), + [anon_sym_u128] = ACTIONS(2291), + [anon_sym_i128] = ACTIONS(2291), + [anon_sym_isize] = ACTIONS(2291), + [anon_sym_usize] = ACTIONS(2291), + [anon_sym_f32] = ACTIONS(2291), + [anon_sym_f64] = ACTIONS(2291), + [anon_sym_bool] = ACTIONS(2291), + [anon_sym_str] = ACTIONS(2291), + [anon_sym_char] = ACTIONS(2291), + [anon_sym_DASH] = ACTIONS(2289), + [anon_sym_BANG] = ACTIONS(2289), + [anon_sym_AMP] = ACTIONS(2289), + [anon_sym_PIPE] = ACTIONS(2289), + [anon_sym_LT] = ACTIONS(2289), + [anon_sym_DOT_DOT] = ACTIONS(2289), + [anon_sym_COLON_COLON] = ACTIONS(2289), + [anon_sym_POUND] = ACTIONS(2289), + [anon_sym_SQUOTE] = ACTIONS(2291), + [anon_sym_async] = ACTIONS(2291), + [anon_sym_break] = ACTIONS(2291), + [anon_sym_const] = ACTIONS(2291), + [anon_sym_continue] = ACTIONS(2291), + [anon_sym_default] = ACTIONS(2291), + [anon_sym_enum] = ACTIONS(2291), + [anon_sym_fn] = ACTIONS(2291), + [anon_sym_for] = ACTIONS(2291), + [anon_sym_gen] = ACTIONS(2291), + [anon_sym_if] = ACTIONS(2291), + [anon_sym_impl] = ACTIONS(2291), + [anon_sym_let] = ACTIONS(2291), + [anon_sym_loop] = ACTIONS(2291), + [anon_sym_match] = ACTIONS(2291), + [anon_sym_mod] = ACTIONS(2291), + [anon_sym_pub] = ACTIONS(2291), + [anon_sym_return] = ACTIONS(2291), + [anon_sym_static] = ACTIONS(2291), + [anon_sym_struct] = ACTIONS(2291), + [anon_sym_trait] = ACTIONS(2291), + [anon_sym_type] = ACTIONS(2291), + [anon_sym_union] = ACTIONS(2291), + [anon_sym_unsafe] = ACTIONS(2291), + [anon_sym_use] = ACTIONS(2291), + [anon_sym_while] = ACTIONS(2291), + [anon_sym_extern] = ACTIONS(2291), + [anon_sym_safe] = ACTIONS(2291), + [anon_sym_yield] = ACTIONS(2291), + [anon_sym_move] = ACTIONS(2291), + [anon_sym_try] = ACTIONS(2291), + [sym_integer_literal] = ACTIONS(2289), + [aux_sym_string_literal_token1] = ACTIONS(2289), + [sym_char_literal] = ACTIONS(2289), + [anon_sym_true] = ACTIONS(2291), + [anon_sym_false] = ACTIONS(2291), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(2291), + [sym_super] = ACTIONS(2291), + [sym_crate] = ACTIONS(2291), + [sym_metavariable] = ACTIONS(2289), + [sym__raw_string_literal_start] = ACTIONS(2289), + [sym_float_literal] = ACTIONS(2289), }, [STATE(615)] = { [sym_line_comment] = STATE(615), [sym_block_comment] = STATE(615), - [ts_builtin_sym_end] = ACTIONS(2286), - [sym_identifier] = ACTIONS(2288), - [anon_sym_SEMI] = ACTIONS(2286), - [anon_sym_macro_rules_BANG] = ACTIONS(2286), - [anon_sym_LPAREN] = ACTIONS(2286), - [anon_sym_LBRACK] = ACTIONS(2286), - [anon_sym_LBRACE] = ACTIONS(2286), - [anon_sym_RBRACE] = ACTIONS(2286), - [anon_sym_STAR] = ACTIONS(2286), - [anon_sym_u8] = ACTIONS(2288), - [anon_sym_i8] = ACTIONS(2288), - [anon_sym_u16] = ACTIONS(2288), - [anon_sym_i16] = ACTIONS(2288), - [anon_sym_u32] = ACTIONS(2288), - [anon_sym_i32] = ACTIONS(2288), - [anon_sym_u64] = ACTIONS(2288), - [anon_sym_i64] = ACTIONS(2288), - [anon_sym_u128] = ACTIONS(2288), - [anon_sym_i128] = ACTIONS(2288), - [anon_sym_isize] = ACTIONS(2288), - [anon_sym_usize] = ACTIONS(2288), - [anon_sym_f32] = ACTIONS(2288), - [anon_sym_f64] = ACTIONS(2288), - [anon_sym_bool] = ACTIONS(2288), - [anon_sym_str] = ACTIONS(2288), - [anon_sym_char] = ACTIONS(2288), - [anon_sym_DASH] = ACTIONS(2286), - [anon_sym_BANG] = ACTIONS(2286), - [anon_sym_AMP] = ACTIONS(2286), - [anon_sym_PIPE] = ACTIONS(2286), - [anon_sym_LT] = ACTIONS(2286), - [anon_sym_DOT_DOT] = ACTIONS(2286), - [anon_sym_COLON_COLON] = ACTIONS(2286), - [anon_sym_POUND] = ACTIONS(2286), - [anon_sym_SQUOTE] = ACTIONS(2288), - [anon_sym_async] = ACTIONS(2288), - [anon_sym_break] = ACTIONS(2288), - [anon_sym_const] = ACTIONS(2288), - [anon_sym_continue] = ACTIONS(2288), - [anon_sym_default] = ACTIONS(2288), - [anon_sym_enum] = ACTIONS(2288), - [anon_sym_fn] = ACTIONS(2288), - [anon_sym_for] = ACTIONS(2288), - [anon_sym_gen] = ACTIONS(2288), - [anon_sym_if] = ACTIONS(2288), - [anon_sym_impl] = ACTIONS(2288), - [anon_sym_let] = ACTIONS(2288), - [anon_sym_loop] = ACTIONS(2288), - [anon_sym_match] = ACTIONS(2288), - [anon_sym_mod] = ACTIONS(2288), - [anon_sym_pub] = ACTIONS(2288), - [anon_sym_return] = ACTIONS(2288), - [anon_sym_static] = ACTIONS(2288), - [anon_sym_struct] = ACTIONS(2288), - [anon_sym_trait] = ACTIONS(2288), - [anon_sym_type] = ACTIONS(2288), - [anon_sym_union] = ACTIONS(2288), - [anon_sym_unsafe] = ACTIONS(2288), - [anon_sym_use] = ACTIONS(2288), - [anon_sym_while] = ACTIONS(2288), - [anon_sym_extern] = ACTIONS(2288), - [anon_sym_yield] = ACTIONS(2288), - [anon_sym_move] = ACTIONS(2288), - [anon_sym_try] = ACTIONS(2288), - [sym_integer_literal] = ACTIONS(2286), - [aux_sym_string_literal_token1] = ACTIONS(2286), - [sym_char_literal] = ACTIONS(2286), - [anon_sym_true] = ACTIONS(2288), - [anon_sym_false] = ACTIONS(2288), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2288), - [sym_super] = ACTIONS(2288), - [sym_crate] = ACTIONS(2288), - [sym_metavariable] = ACTIONS(2286), - [sym__raw_string_literal_start] = ACTIONS(2286), - [sym_float_literal] = ACTIONS(2286), + [ts_builtin_sym_end] = ACTIONS(2293), + [sym_identifier] = ACTIONS(2295), + [anon_sym_SEMI] = ACTIONS(2293), + [anon_sym_macro_rules_BANG] = ACTIONS(2293), + [anon_sym_LPAREN] = ACTIONS(2293), + [anon_sym_LBRACK] = ACTIONS(2293), + [anon_sym_LBRACE] = ACTIONS(2293), + [anon_sym_RBRACE] = ACTIONS(2293), + [anon_sym_STAR] = ACTIONS(2293), + [anon_sym_u8] = ACTIONS(2295), + [anon_sym_i8] = ACTIONS(2295), + [anon_sym_u16] = ACTIONS(2295), + [anon_sym_i16] = ACTIONS(2295), + [anon_sym_u32] = ACTIONS(2295), + [anon_sym_i32] = ACTIONS(2295), + [anon_sym_u64] = ACTIONS(2295), + [anon_sym_i64] = ACTIONS(2295), + [anon_sym_u128] = ACTIONS(2295), + [anon_sym_i128] = ACTIONS(2295), + [anon_sym_isize] = ACTIONS(2295), + [anon_sym_usize] = ACTIONS(2295), + [anon_sym_f32] = ACTIONS(2295), + [anon_sym_f64] = ACTIONS(2295), + [anon_sym_bool] = ACTIONS(2295), + [anon_sym_str] = ACTIONS(2295), + [anon_sym_char] = ACTIONS(2295), + [anon_sym_DASH] = ACTIONS(2293), + [anon_sym_BANG] = ACTIONS(2293), + [anon_sym_AMP] = ACTIONS(2293), + [anon_sym_PIPE] = ACTIONS(2293), + [anon_sym_LT] = ACTIONS(2293), + [anon_sym_DOT_DOT] = ACTIONS(2293), + [anon_sym_COLON_COLON] = ACTIONS(2293), + [anon_sym_POUND] = ACTIONS(2293), + [anon_sym_SQUOTE] = ACTIONS(2295), + [anon_sym_async] = ACTIONS(2295), + [anon_sym_break] = ACTIONS(2295), + [anon_sym_const] = ACTIONS(2295), + [anon_sym_continue] = ACTIONS(2295), + [anon_sym_default] = ACTIONS(2295), + [anon_sym_enum] = ACTIONS(2295), + [anon_sym_fn] = ACTIONS(2295), + [anon_sym_for] = ACTIONS(2295), + [anon_sym_gen] = ACTIONS(2295), + [anon_sym_if] = ACTIONS(2295), + [anon_sym_impl] = ACTIONS(2295), + [anon_sym_let] = ACTIONS(2295), + [anon_sym_loop] = ACTIONS(2295), + [anon_sym_match] = ACTIONS(2295), + [anon_sym_mod] = ACTIONS(2295), + [anon_sym_pub] = ACTIONS(2295), + [anon_sym_return] = ACTIONS(2295), + [anon_sym_static] = ACTIONS(2295), + [anon_sym_struct] = ACTIONS(2295), + [anon_sym_trait] = ACTIONS(2295), + [anon_sym_type] = ACTIONS(2295), + [anon_sym_union] = ACTIONS(2295), + [anon_sym_unsafe] = ACTIONS(2295), + [anon_sym_use] = ACTIONS(2295), + [anon_sym_while] = ACTIONS(2295), + [anon_sym_extern] = ACTIONS(2295), + [anon_sym_safe] = ACTIONS(2295), + [anon_sym_yield] = ACTIONS(2295), + [anon_sym_move] = ACTIONS(2295), + [anon_sym_try] = ACTIONS(2295), + [sym_integer_literal] = ACTIONS(2293), + [aux_sym_string_literal_token1] = ACTIONS(2293), + [sym_char_literal] = ACTIONS(2293), + [anon_sym_true] = ACTIONS(2295), + [anon_sym_false] = ACTIONS(2295), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(2295), + [sym_super] = ACTIONS(2295), + [sym_crate] = ACTIONS(2295), + [sym_metavariable] = ACTIONS(2293), + [sym__raw_string_literal_start] = ACTIONS(2293), + [sym_float_literal] = ACTIONS(2293), }, [STATE(616)] = { [sym_line_comment] = STATE(616), [sym_block_comment] = STATE(616), - [ts_builtin_sym_end] = ACTIONS(2290), - [sym_identifier] = ACTIONS(2292), - [anon_sym_SEMI] = ACTIONS(2290), - [anon_sym_macro_rules_BANG] = ACTIONS(2290), - [anon_sym_LPAREN] = ACTIONS(2290), - [anon_sym_LBRACK] = ACTIONS(2290), - [anon_sym_LBRACE] = ACTIONS(2290), - [anon_sym_RBRACE] = ACTIONS(2290), - [anon_sym_STAR] = ACTIONS(2290), - [anon_sym_u8] = ACTIONS(2292), - [anon_sym_i8] = ACTIONS(2292), - [anon_sym_u16] = ACTIONS(2292), - [anon_sym_i16] = ACTIONS(2292), - [anon_sym_u32] = ACTIONS(2292), - [anon_sym_i32] = ACTIONS(2292), - [anon_sym_u64] = ACTIONS(2292), - [anon_sym_i64] = ACTIONS(2292), - [anon_sym_u128] = ACTIONS(2292), - [anon_sym_i128] = ACTIONS(2292), - [anon_sym_isize] = ACTIONS(2292), - [anon_sym_usize] = ACTIONS(2292), - [anon_sym_f32] = ACTIONS(2292), - [anon_sym_f64] = ACTIONS(2292), - [anon_sym_bool] = ACTIONS(2292), - [anon_sym_str] = ACTIONS(2292), - [anon_sym_char] = ACTIONS(2292), - [anon_sym_DASH] = ACTIONS(2290), - [anon_sym_BANG] = ACTIONS(2290), - [anon_sym_AMP] = ACTIONS(2290), - [anon_sym_PIPE] = ACTIONS(2290), - [anon_sym_LT] = ACTIONS(2290), - [anon_sym_DOT_DOT] = ACTIONS(2290), - [anon_sym_COLON_COLON] = ACTIONS(2290), - [anon_sym_POUND] = ACTIONS(2290), - [anon_sym_SQUOTE] = ACTIONS(2292), - [anon_sym_async] = ACTIONS(2292), - [anon_sym_break] = ACTIONS(2292), - [anon_sym_const] = ACTIONS(2292), - [anon_sym_continue] = ACTIONS(2292), - [anon_sym_default] = ACTIONS(2292), - [anon_sym_enum] = ACTIONS(2292), - [anon_sym_fn] = ACTIONS(2292), - [anon_sym_for] = ACTIONS(2292), - [anon_sym_gen] = ACTIONS(2292), - [anon_sym_if] = ACTIONS(2292), - [anon_sym_impl] = ACTIONS(2292), - [anon_sym_let] = ACTIONS(2292), - [anon_sym_loop] = ACTIONS(2292), - [anon_sym_match] = ACTIONS(2292), - [anon_sym_mod] = ACTIONS(2292), - [anon_sym_pub] = ACTIONS(2292), - [anon_sym_return] = ACTIONS(2292), - [anon_sym_static] = ACTIONS(2292), - [anon_sym_struct] = ACTIONS(2292), - [anon_sym_trait] = ACTIONS(2292), - [anon_sym_type] = ACTIONS(2292), - [anon_sym_union] = ACTIONS(2292), - [anon_sym_unsafe] = ACTIONS(2292), - [anon_sym_use] = ACTIONS(2292), - [anon_sym_while] = ACTIONS(2292), - [anon_sym_extern] = ACTIONS(2292), - [anon_sym_yield] = ACTIONS(2292), - [anon_sym_move] = ACTIONS(2292), - [anon_sym_try] = ACTIONS(2292), - [sym_integer_literal] = ACTIONS(2290), - [aux_sym_string_literal_token1] = ACTIONS(2290), - [sym_char_literal] = ACTIONS(2290), - [anon_sym_true] = ACTIONS(2292), - [anon_sym_false] = ACTIONS(2292), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2292), - [sym_super] = ACTIONS(2292), - [sym_crate] = ACTIONS(2292), - [sym_metavariable] = ACTIONS(2290), - [sym__raw_string_literal_start] = ACTIONS(2290), - [sym_float_literal] = ACTIONS(2290), + [ts_builtin_sym_end] = ACTIONS(2297), + [sym_identifier] = ACTIONS(2299), + [anon_sym_SEMI] = ACTIONS(2297), + [anon_sym_macro_rules_BANG] = ACTIONS(2297), + [anon_sym_LPAREN] = ACTIONS(2297), + [anon_sym_LBRACK] = ACTIONS(2297), + [anon_sym_LBRACE] = ACTIONS(2297), + [anon_sym_RBRACE] = ACTIONS(2297), + [anon_sym_STAR] = 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_DASH] = ACTIONS(2297), + [anon_sym_BANG] = ACTIONS(2297), + [anon_sym_AMP] = ACTIONS(2297), + [anon_sym_PIPE] = ACTIONS(2297), + [anon_sym_LT] = ACTIONS(2297), + [anon_sym_DOT_DOT] = ACTIONS(2297), + [anon_sym_COLON_COLON] = ACTIONS(2297), + [anon_sym_POUND] = ACTIONS(2297), + [anon_sym_SQUOTE] = ACTIONS(2299), + [anon_sym_async] = ACTIONS(2299), + [anon_sym_break] = ACTIONS(2299), + [anon_sym_const] = ACTIONS(2299), + [anon_sym_continue] = ACTIONS(2299), + [anon_sym_default] = ACTIONS(2299), + [anon_sym_enum] = ACTIONS(2299), + [anon_sym_fn] = ACTIONS(2299), + [anon_sym_for] = ACTIONS(2299), + [anon_sym_gen] = ACTIONS(2299), + [anon_sym_if] = ACTIONS(2299), + [anon_sym_impl] = ACTIONS(2299), + [anon_sym_let] = ACTIONS(2299), + [anon_sym_loop] = ACTIONS(2299), + [anon_sym_match] = ACTIONS(2299), + [anon_sym_mod] = ACTIONS(2299), + [anon_sym_pub] = ACTIONS(2299), + [anon_sym_return] = ACTIONS(2299), + [anon_sym_static] = ACTIONS(2299), + [anon_sym_struct] = ACTIONS(2299), + [anon_sym_trait] = ACTIONS(2299), + [anon_sym_type] = ACTIONS(2299), + [anon_sym_union] = ACTIONS(2299), + [anon_sym_unsafe] = ACTIONS(2299), + [anon_sym_use] = ACTIONS(2299), + [anon_sym_while] = ACTIONS(2299), + [anon_sym_extern] = ACTIONS(2299), + [anon_sym_safe] = ACTIONS(2299), + [anon_sym_yield] = ACTIONS(2299), + [anon_sym_move] = ACTIONS(2299), + [anon_sym_try] = ACTIONS(2299), + [sym_integer_literal] = ACTIONS(2297), + [aux_sym_string_literal_token1] = ACTIONS(2297), + [sym_char_literal] = ACTIONS(2297), + [anon_sym_true] = ACTIONS(2299), + [anon_sym_false] = ACTIONS(2299), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(2299), + [sym_super] = ACTIONS(2299), + [sym_crate] = ACTIONS(2299), + [sym_metavariable] = ACTIONS(2297), + [sym__raw_string_literal_start] = ACTIONS(2297), + [sym_float_literal] = ACTIONS(2297), }, [STATE(617)] = { [sym_line_comment] = STATE(617), [sym_block_comment] = STATE(617), - [ts_builtin_sym_end] = ACTIONS(2294), - [sym_identifier] = ACTIONS(2296), - [anon_sym_SEMI] = ACTIONS(2294), - [anon_sym_macro_rules_BANG] = ACTIONS(2294), - [anon_sym_LPAREN] = ACTIONS(2294), - [anon_sym_LBRACK] = ACTIONS(2294), - [anon_sym_LBRACE] = ACTIONS(2294), - [anon_sym_RBRACE] = ACTIONS(2294), - [anon_sym_STAR] = ACTIONS(2294), - [anon_sym_u8] = ACTIONS(2296), - [anon_sym_i8] = ACTIONS(2296), - [anon_sym_u16] = ACTIONS(2296), - [anon_sym_i16] = ACTIONS(2296), - [anon_sym_u32] = ACTIONS(2296), - [anon_sym_i32] = ACTIONS(2296), - [anon_sym_u64] = ACTIONS(2296), - [anon_sym_i64] = ACTIONS(2296), - [anon_sym_u128] = ACTIONS(2296), - [anon_sym_i128] = ACTIONS(2296), - [anon_sym_isize] = ACTIONS(2296), - [anon_sym_usize] = ACTIONS(2296), - [anon_sym_f32] = ACTIONS(2296), - [anon_sym_f64] = ACTIONS(2296), - [anon_sym_bool] = ACTIONS(2296), - [anon_sym_str] = ACTIONS(2296), - [anon_sym_char] = ACTIONS(2296), - [anon_sym_DASH] = ACTIONS(2294), - [anon_sym_BANG] = ACTIONS(2294), - [anon_sym_AMP] = ACTIONS(2294), - [anon_sym_PIPE] = ACTIONS(2294), - [anon_sym_LT] = ACTIONS(2294), - [anon_sym_DOT_DOT] = ACTIONS(2294), - [anon_sym_COLON_COLON] = ACTIONS(2294), - [anon_sym_POUND] = ACTIONS(2294), - [anon_sym_SQUOTE] = ACTIONS(2296), - [anon_sym_async] = ACTIONS(2296), - [anon_sym_break] = ACTIONS(2296), - [anon_sym_const] = ACTIONS(2296), - [anon_sym_continue] = ACTIONS(2296), - [anon_sym_default] = ACTIONS(2296), - [anon_sym_enum] = ACTIONS(2296), - [anon_sym_fn] = ACTIONS(2296), - [anon_sym_for] = ACTIONS(2296), - [anon_sym_gen] = ACTIONS(2296), - [anon_sym_if] = ACTIONS(2296), - [anon_sym_impl] = ACTIONS(2296), - [anon_sym_let] = ACTIONS(2296), - [anon_sym_loop] = ACTIONS(2296), - [anon_sym_match] = ACTIONS(2296), - [anon_sym_mod] = ACTIONS(2296), - [anon_sym_pub] = ACTIONS(2296), - [anon_sym_return] = ACTIONS(2296), - [anon_sym_static] = ACTIONS(2296), - [anon_sym_struct] = ACTIONS(2296), - [anon_sym_trait] = ACTIONS(2296), - [anon_sym_type] = ACTIONS(2296), - [anon_sym_union] = ACTIONS(2296), - [anon_sym_unsafe] = ACTIONS(2296), - [anon_sym_use] = ACTIONS(2296), - [anon_sym_while] = ACTIONS(2296), - [anon_sym_extern] = ACTIONS(2296), - [anon_sym_yield] = ACTIONS(2296), - [anon_sym_move] = ACTIONS(2296), - [anon_sym_try] = ACTIONS(2296), - [sym_integer_literal] = ACTIONS(2294), - [aux_sym_string_literal_token1] = ACTIONS(2294), - [sym_char_literal] = ACTIONS(2294), - [anon_sym_true] = ACTIONS(2296), - [anon_sym_false] = ACTIONS(2296), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2296), - [sym_super] = ACTIONS(2296), - [sym_crate] = ACTIONS(2296), - [sym_metavariable] = ACTIONS(2294), - [sym__raw_string_literal_start] = ACTIONS(2294), - [sym_float_literal] = ACTIONS(2294), + [ts_builtin_sym_end] = ACTIONS(2301), + [sym_identifier] = ACTIONS(2303), + [anon_sym_SEMI] = ACTIONS(2301), + [anon_sym_macro_rules_BANG] = ACTIONS(2301), + [anon_sym_LPAREN] = ACTIONS(2301), + [anon_sym_LBRACK] = ACTIONS(2301), + [anon_sym_LBRACE] = ACTIONS(2301), + [anon_sym_RBRACE] = ACTIONS(2301), + [anon_sym_STAR] = ACTIONS(2301), + [anon_sym_u8] = ACTIONS(2303), + [anon_sym_i8] = ACTIONS(2303), + [anon_sym_u16] = ACTIONS(2303), + [anon_sym_i16] = ACTIONS(2303), + [anon_sym_u32] = ACTIONS(2303), + [anon_sym_i32] = ACTIONS(2303), + [anon_sym_u64] = ACTIONS(2303), + [anon_sym_i64] = ACTIONS(2303), + [anon_sym_u128] = ACTIONS(2303), + [anon_sym_i128] = ACTIONS(2303), + [anon_sym_isize] = ACTIONS(2303), + [anon_sym_usize] = ACTIONS(2303), + [anon_sym_f32] = ACTIONS(2303), + [anon_sym_f64] = ACTIONS(2303), + [anon_sym_bool] = ACTIONS(2303), + [anon_sym_str] = ACTIONS(2303), + [anon_sym_char] = ACTIONS(2303), + [anon_sym_DASH] = ACTIONS(2301), + [anon_sym_BANG] = ACTIONS(2301), + [anon_sym_AMP] = ACTIONS(2301), + [anon_sym_PIPE] = ACTIONS(2301), + [anon_sym_LT] = ACTIONS(2301), + [anon_sym_DOT_DOT] = ACTIONS(2301), + [anon_sym_COLON_COLON] = ACTIONS(2301), + [anon_sym_POUND] = ACTIONS(2301), + [anon_sym_SQUOTE] = ACTIONS(2303), + [anon_sym_async] = ACTIONS(2303), + [anon_sym_break] = ACTIONS(2303), + [anon_sym_const] = ACTIONS(2303), + [anon_sym_continue] = ACTIONS(2303), + [anon_sym_default] = ACTIONS(2303), + [anon_sym_enum] = ACTIONS(2303), + [anon_sym_fn] = ACTIONS(2303), + [anon_sym_for] = ACTIONS(2303), + [anon_sym_gen] = ACTIONS(2303), + [anon_sym_if] = ACTIONS(2303), + [anon_sym_impl] = ACTIONS(2303), + [anon_sym_let] = ACTIONS(2303), + [anon_sym_loop] = ACTIONS(2303), + [anon_sym_match] = ACTIONS(2303), + [anon_sym_mod] = ACTIONS(2303), + [anon_sym_pub] = ACTIONS(2303), + [anon_sym_return] = ACTIONS(2303), + [anon_sym_static] = ACTIONS(2303), + [anon_sym_struct] = ACTIONS(2303), + [anon_sym_trait] = ACTIONS(2303), + [anon_sym_type] = ACTIONS(2303), + [anon_sym_union] = ACTIONS(2303), + [anon_sym_unsafe] = ACTIONS(2303), + [anon_sym_use] = ACTIONS(2303), + [anon_sym_while] = ACTIONS(2303), + [anon_sym_extern] = ACTIONS(2303), + [anon_sym_safe] = ACTIONS(2303), + [anon_sym_yield] = ACTIONS(2303), + [anon_sym_move] = ACTIONS(2303), + [anon_sym_try] = ACTIONS(2303), + [sym_integer_literal] = ACTIONS(2301), + [aux_sym_string_literal_token1] = ACTIONS(2301), + [sym_char_literal] = ACTIONS(2301), + [anon_sym_true] = ACTIONS(2303), + [anon_sym_false] = ACTIONS(2303), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(2303), + [sym_super] = ACTIONS(2303), + [sym_crate] = ACTIONS(2303), + [sym_metavariable] = ACTIONS(2301), + [sym__raw_string_literal_start] = ACTIONS(2301), + [sym_float_literal] = ACTIONS(2301), }, [STATE(618)] = { [sym_line_comment] = STATE(618), [sym_block_comment] = STATE(618), - [ts_builtin_sym_end] = ACTIONS(2298), - [sym_identifier] = ACTIONS(2300), - [anon_sym_SEMI] = ACTIONS(2298), - [anon_sym_macro_rules_BANG] = ACTIONS(2298), - [anon_sym_LPAREN] = ACTIONS(2298), - [anon_sym_LBRACK] = ACTIONS(2298), - [anon_sym_LBRACE] = ACTIONS(2298), - [anon_sym_RBRACE] = ACTIONS(2298), - [anon_sym_STAR] = ACTIONS(2298), - [anon_sym_u8] = ACTIONS(2300), - [anon_sym_i8] = ACTIONS(2300), - [anon_sym_u16] = ACTIONS(2300), - [anon_sym_i16] = ACTIONS(2300), - [anon_sym_u32] = ACTIONS(2300), - [anon_sym_i32] = ACTIONS(2300), - [anon_sym_u64] = ACTIONS(2300), - [anon_sym_i64] = ACTIONS(2300), - [anon_sym_u128] = ACTIONS(2300), - [anon_sym_i128] = ACTIONS(2300), - [anon_sym_isize] = ACTIONS(2300), - [anon_sym_usize] = ACTIONS(2300), - [anon_sym_f32] = ACTIONS(2300), - [anon_sym_f64] = ACTIONS(2300), - [anon_sym_bool] = ACTIONS(2300), - [anon_sym_str] = ACTIONS(2300), - [anon_sym_char] = ACTIONS(2300), - [anon_sym_DASH] = ACTIONS(2298), - [anon_sym_BANG] = ACTIONS(2298), - [anon_sym_AMP] = ACTIONS(2298), - [anon_sym_PIPE] = ACTIONS(2298), - [anon_sym_LT] = ACTIONS(2298), - [anon_sym_DOT_DOT] = ACTIONS(2298), - [anon_sym_COLON_COLON] = ACTIONS(2298), - [anon_sym_POUND] = ACTIONS(2298), - [anon_sym_SQUOTE] = ACTIONS(2300), - [anon_sym_async] = ACTIONS(2300), - [anon_sym_break] = ACTIONS(2300), - [anon_sym_const] = ACTIONS(2300), - [anon_sym_continue] = ACTIONS(2300), - [anon_sym_default] = ACTIONS(2300), - [anon_sym_enum] = ACTIONS(2300), - [anon_sym_fn] = ACTIONS(2300), - [anon_sym_for] = ACTIONS(2300), - [anon_sym_gen] = ACTIONS(2300), - [anon_sym_if] = ACTIONS(2300), - [anon_sym_impl] = ACTIONS(2300), - [anon_sym_let] = ACTIONS(2300), - [anon_sym_loop] = ACTIONS(2300), - [anon_sym_match] = ACTIONS(2300), - [anon_sym_mod] = ACTIONS(2300), - [anon_sym_pub] = ACTIONS(2300), - [anon_sym_return] = ACTIONS(2300), - [anon_sym_static] = ACTIONS(2300), - [anon_sym_struct] = ACTIONS(2300), - [anon_sym_trait] = ACTIONS(2300), - [anon_sym_type] = ACTIONS(2300), - [anon_sym_union] = ACTIONS(2300), - [anon_sym_unsafe] = ACTIONS(2300), - [anon_sym_use] = ACTIONS(2300), - [anon_sym_while] = ACTIONS(2300), - [anon_sym_extern] = ACTIONS(2300), - [anon_sym_yield] = ACTIONS(2300), - [anon_sym_move] = ACTIONS(2300), - [anon_sym_try] = ACTIONS(2300), - [sym_integer_literal] = ACTIONS(2298), - [aux_sym_string_literal_token1] = ACTIONS(2298), - [sym_char_literal] = ACTIONS(2298), - [anon_sym_true] = ACTIONS(2300), - [anon_sym_false] = ACTIONS(2300), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2300), - [sym_super] = ACTIONS(2300), - [sym_crate] = ACTIONS(2300), - [sym_metavariable] = ACTIONS(2298), - [sym__raw_string_literal_start] = ACTIONS(2298), - [sym_float_literal] = ACTIONS(2298), + [ts_builtin_sym_end] = ACTIONS(2305), + [sym_identifier] = ACTIONS(2307), + [anon_sym_SEMI] = ACTIONS(2305), + [anon_sym_macro_rules_BANG] = ACTIONS(2305), + [anon_sym_LPAREN] = ACTIONS(2305), + [anon_sym_LBRACK] = ACTIONS(2305), + [anon_sym_LBRACE] = ACTIONS(2305), + [anon_sym_RBRACE] = ACTIONS(2305), + [anon_sym_STAR] = ACTIONS(2305), + [anon_sym_u8] = ACTIONS(2307), + [anon_sym_i8] = ACTIONS(2307), + [anon_sym_u16] = ACTIONS(2307), + [anon_sym_i16] = ACTIONS(2307), + [anon_sym_u32] = ACTIONS(2307), + [anon_sym_i32] = ACTIONS(2307), + [anon_sym_u64] = ACTIONS(2307), + [anon_sym_i64] = ACTIONS(2307), + [anon_sym_u128] = ACTIONS(2307), + [anon_sym_i128] = ACTIONS(2307), + [anon_sym_isize] = ACTIONS(2307), + [anon_sym_usize] = ACTIONS(2307), + [anon_sym_f32] = ACTIONS(2307), + [anon_sym_f64] = ACTIONS(2307), + [anon_sym_bool] = ACTIONS(2307), + [anon_sym_str] = ACTIONS(2307), + [anon_sym_char] = ACTIONS(2307), + [anon_sym_DASH] = ACTIONS(2305), + [anon_sym_BANG] = ACTIONS(2305), + [anon_sym_AMP] = ACTIONS(2305), + [anon_sym_PIPE] = ACTIONS(2305), + [anon_sym_LT] = ACTIONS(2305), + [anon_sym_DOT_DOT] = ACTIONS(2305), + [anon_sym_COLON_COLON] = ACTIONS(2305), + [anon_sym_POUND] = ACTIONS(2305), + [anon_sym_SQUOTE] = ACTIONS(2307), + [anon_sym_async] = ACTIONS(2307), + [anon_sym_break] = ACTIONS(2307), + [anon_sym_const] = ACTIONS(2307), + [anon_sym_continue] = ACTIONS(2307), + [anon_sym_default] = ACTIONS(2307), + [anon_sym_enum] = ACTIONS(2307), + [anon_sym_fn] = ACTIONS(2307), + [anon_sym_for] = ACTIONS(2307), + [anon_sym_gen] = ACTIONS(2307), + [anon_sym_if] = ACTIONS(2307), + [anon_sym_impl] = ACTIONS(2307), + [anon_sym_let] = ACTIONS(2307), + [anon_sym_loop] = ACTIONS(2307), + [anon_sym_match] = ACTIONS(2307), + [anon_sym_mod] = ACTIONS(2307), + [anon_sym_pub] = ACTIONS(2307), + [anon_sym_return] = ACTIONS(2307), + [anon_sym_static] = ACTIONS(2307), + [anon_sym_struct] = ACTIONS(2307), + [anon_sym_trait] = ACTIONS(2307), + [anon_sym_type] = ACTIONS(2307), + [anon_sym_union] = ACTIONS(2307), + [anon_sym_unsafe] = ACTIONS(2307), + [anon_sym_use] = ACTIONS(2307), + [anon_sym_while] = ACTIONS(2307), + [anon_sym_extern] = ACTIONS(2307), + [anon_sym_safe] = ACTIONS(2307), + [anon_sym_yield] = ACTIONS(2307), + [anon_sym_move] = ACTIONS(2307), + [anon_sym_try] = ACTIONS(2307), + [sym_integer_literal] = ACTIONS(2305), + [aux_sym_string_literal_token1] = ACTIONS(2305), + [sym_char_literal] = ACTIONS(2305), + [anon_sym_true] = ACTIONS(2307), + [anon_sym_false] = ACTIONS(2307), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(2307), + [sym_super] = ACTIONS(2307), + [sym_crate] = ACTIONS(2307), + [sym_metavariable] = ACTIONS(2305), + [sym__raw_string_literal_start] = ACTIONS(2305), + [sym_float_literal] = ACTIONS(2305), }, [STATE(619)] = { [sym_line_comment] = STATE(619), [sym_block_comment] = STATE(619), - [ts_builtin_sym_end] = ACTIONS(2302), - [sym_identifier] = ACTIONS(2304), - [anon_sym_SEMI] = ACTIONS(2302), - [anon_sym_macro_rules_BANG] = ACTIONS(2302), - [anon_sym_LPAREN] = ACTIONS(2302), - [anon_sym_LBRACK] = ACTIONS(2302), - [anon_sym_LBRACE] = ACTIONS(2302), - [anon_sym_RBRACE] = ACTIONS(2302), - [anon_sym_STAR] = ACTIONS(2302), - [anon_sym_u8] = ACTIONS(2304), - [anon_sym_i8] = ACTIONS(2304), - [anon_sym_u16] = ACTIONS(2304), - [anon_sym_i16] = ACTIONS(2304), - [anon_sym_u32] = ACTIONS(2304), - [anon_sym_i32] = ACTIONS(2304), - [anon_sym_u64] = ACTIONS(2304), - [anon_sym_i64] = ACTIONS(2304), - [anon_sym_u128] = ACTIONS(2304), - [anon_sym_i128] = ACTIONS(2304), - [anon_sym_isize] = ACTIONS(2304), - [anon_sym_usize] = ACTIONS(2304), - [anon_sym_f32] = ACTIONS(2304), - [anon_sym_f64] = ACTIONS(2304), - [anon_sym_bool] = ACTIONS(2304), - [anon_sym_str] = ACTIONS(2304), - [anon_sym_char] = ACTIONS(2304), - [anon_sym_DASH] = ACTIONS(2302), - [anon_sym_BANG] = ACTIONS(2302), - [anon_sym_AMP] = ACTIONS(2302), - [anon_sym_PIPE] = ACTIONS(2302), - [anon_sym_LT] = ACTIONS(2302), - [anon_sym_DOT_DOT] = ACTIONS(2302), - [anon_sym_COLON_COLON] = ACTIONS(2302), - [anon_sym_POUND] = ACTIONS(2302), - [anon_sym_SQUOTE] = ACTIONS(2304), - [anon_sym_async] = ACTIONS(2304), - [anon_sym_break] = ACTIONS(2304), - [anon_sym_const] = ACTIONS(2304), - [anon_sym_continue] = ACTIONS(2304), - [anon_sym_default] = ACTIONS(2304), - [anon_sym_enum] = ACTIONS(2304), - [anon_sym_fn] = ACTIONS(2304), - [anon_sym_for] = ACTIONS(2304), - [anon_sym_gen] = ACTIONS(2304), - [anon_sym_if] = ACTIONS(2304), - [anon_sym_impl] = ACTIONS(2304), - [anon_sym_let] = ACTIONS(2304), - [anon_sym_loop] = ACTIONS(2304), - [anon_sym_match] = ACTIONS(2304), - [anon_sym_mod] = ACTIONS(2304), - [anon_sym_pub] = ACTIONS(2304), - [anon_sym_return] = ACTIONS(2304), - [anon_sym_static] = ACTIONS(2304), - [anon_sym_struct] = ACTIONS(2304), - [anon_sym_trait] = ACTIONS(2304), - [anon_sym_type] = ACTIONS(2304), - [anon_sym_union] = ACTIONS(2304), - [anon_sym_unsafe] = ACTIONS(2304), - [anon_sym_use] = ACTIONS(2304), - [anon_sym_while] = ACTIONS(2304), - [anon_sym_extern] = ACTIONS(2304), - [anon_sym_yield] = ACTIONS(2304), - [anon_sym_move] = ACTIONS(2304), - [anon_sym_try] = ACTIONS(2304), - [sym_integer_literal] = ACTIONS(2302), - [aux_sym_string_literal_token1] = ACTIONS(2302), - [sym_char_literal] = ACTIONS(2302), - [anon_sym_true] = ACTIONS(2304), - [anon_sym_false] = ACTIONS(2304), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2304), - [sym_super] = ACTIONS(2304), - [sym_crate] = ACTIONS(2304), - [sym_metavariable] = ACTIONS(2302), - [sym__raw_string_literal_start] = ACTIONS(2302), - [sym_float_literal] = ACTIONS(2302), + [ts_builtin_sym_end] = ACTIONS(2309), + [sym_identifier] = ACTIONS(2311), + [anon_sym_SEMI] = ACTIONS(2309), + [anon_sym_macro_rules_BANG] = ACTIONS(2309), + [anon_sym_LPAREN] = ACTIONS(2309), + [anon_sym_LBRACK] = ACTIONS(2309), + [anon_sym_LBRACE] = ACTIONS(2309), + [anon_sym_RBRACE] = ACTIONS(2309), + [anon_sym_STAR] = ACTIONS(2309), + [anon_sym_u8] = ACTIONS(2311), + [anon_sym_i8] = ACTIONS(2311), + [anon_sym_u16] = ACTIONS(2311), + [anon_sym_i16] = ACTIONS(2311), + [anon_sym_u32] = ACTIONS(2311), + [anon_sym_i32] = ACTIONS(2311), + [anon_sym_u64] = ACTIONS(2311), + [anon_sym_i64] = ACTIONS(2311), + [anon_sym_u128] = ACTIONS(2311), + [anon_sym_i128] = ACTIONS(2311), + [anon_sym_isize] = ACTIONS(2311), + [anon_sym_usize] = ACTIONS(2311), + [anon_sym_f32] = ACTIONS(2311), + [anon_sym_f64] = ACTIONS(2311), + [anon_sym_bool] = ACTIONS(2311), + [anon_sym_str] = ACTIONS(2311), + [anon_sym_char] = ACTIONS(2311), + [anon_sym_DASH] = ACTIONS(2309), + [anon_sym_BANG] = ACTIONS(2309), + [anon_sym_AMP] = ACTIONS(2309), + [anon_sym_PIPE] = ACTIONS(2309), + [anon_sym_LT] = ACTIONS(2309), + [anon_sym_DOT_DOT] = ACTIONS(2309), + [anon_sym_COLON_COLON] = ACTIONS(2309), + [anon_sym_POUND] = ACTIONS(2309), + [anon_sym_SQUOTE] = ACTIONS(2311), + [anon_sym_async] = ACTIONS(2311), + [anon_sym_break] = ACTIONS(2311), + [anon_sym_const] = ACTIONS(2311), + [anon_sym_continue] = ACTIONS(2311), + [anon_sym_default] = ACTIONS(2311), + [anon_sym_enum] = ACTIONS(2311), + [anon_sym_fn] = ACTIONS(2311), + [anon_sym_for] = ACTIONS(2311), + [anon_sym_gen] = ACTIONS(2311), + [anon_sym_if] = ACTIONS(2311), + [anon_sym_impl] = ACTIONS(2311), + [anon_sym_let] = ACTIONS(2311), + [anon_sym_loop] = ACTIONS(2311), + [anon_sym_match] = ACTIONS(2311), + [anon_sym_mod] = ACTIONS(2311), + [anon_sym_pub] = ACTIONS(2311), + [anon_sym_return] = ACTIONS(2311), + [anon_sym_static] = ACTIONS(2311), + [anon_sym_struct] = ACTIONS(2311), + [anon_sym_trait] = ACTIONS(2311), + [anon_sym_type] = ACTIONS(2311), + [anon_sym_union] = ACTIONS(2311), + [anon_sym_unsafe] = ACTIONS(2311), + [anon_sym_use] = ACTIONS(2311), + [anon_sym_while] = ACTIONS(2311), + [anon_sym_extern] = ACTIONS(2311), + [anon_sym_safe] = ACTIONS(2311), + [anon_sym_yield] = ACTIONS(2311), + [anon_sym_move] = ACTIONS(2311), + [anon_sym_try] = ACTIONS(2311), + [sym_integer_literal] = ACTIONS(2309), + [aux_sym_string_literal_token1] = ACTIONS(2309), + [sym_char_literal] = ACTIONS(2309), + [anon_sym_true] = ACTIONS(2311), + [anon_sym_false] = ACTIONS(2311), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(2311), + [sym_super] = ACTIONS(2311), + [sym_crate] = ACTIONS(2311), + [sym_metavariable] = ACTIONS(2309), + [sym__raw_string_literal_start] = ACTIONS(2309), + [sym_float_literal] = ACTIONS(2309), }, [STATE(620)] = { [sym_line_comment] = STATE(620), [sym_block_comment] = STATE(620), - [ts_builtin_sym_end] = ACTIONS(2306), - [sym_identifier] = ACTIONS(2308), - [anon_sym_SEMI] = ACTIONS(2306), - [anon_sym_macro_rules_BANG] = ACTIONS(2306), - [anon_sym_LPAREN] = ACTIONS(2306), - [anon_sym_LBRACK] = ACTIONS(2306), - [anon_sym_LBRACE] = ACTIONS(2306), - [anon_sym_RBRACE] = ACTIONS(2306), - [anon_sym_STAR] = ACTIONS(2306), - [anon_sym_u8] = ACTIONS(2308), - [anon_sym_i8] = ACTIONS(2308), - [anon_sym_u16] = ACTIONS(2308), - [anon_sym_i16] = ACTIONS(2308), - [anon_sym_u32] = ACTIONS(2308), - [anon_sym_i32] = ACTIONS(2308), - [anon_sym_u64] = ACTIONS(2308), - [anon_sym_i64] = ACTIONS(2308), - [anon_sym_u128] = ACTIONS(2308), - [anon_sym_i128] = ACTIONS(2308), - [anon_sym_isize] = ACTIONS(2308), - [anon_sym_usize] = ACTIONS(2308), - [anon_sym_f32] = ACTIONS(2308), - [anon_sym_f64] = ACTIONS(2308), - [anon_sym_bool] = ACTIONS(2308), - [anon_sym_str] = ACTIONS(2308), - [anon_sym_char] = ACTIONS(2308), - [anon_sym_DASH] = ACTIONS(2306), - [anon_sym_BANG] = ACTIONS(2306), - [anon_sym_AMP] = ACTIONS(2306), - [anon_sym_PIPE] = ACTIONS(2306), - [anon_sym_LT] = ACTIONS(2306), - [anon_sym_DOT_DOT] = ACTIONS(2306), - [anon_sym_COLON_COLON] = ACTIONS(2306), - [anon_sym_POUND] = ACTIONS(2306), - [anon_sym_SQUOTE] = ACTIONS(2308), - [anon_sym_async] = ACTIONS(2308), - [anon_sym_break] = ACTIONS(2308), - [anon_sym_const] = ACTIONS(2308), - [anon_sym_continue] = ACTIONS(2308), - [anon_sym_default] = ACTIONS(2308), - [anon_sym_enum] = ACTIONS(2308), - [anon_sym_fn] = ACTIONS(2308), - [anon_sym_for] = ACTIONS(2308), - [anon_sym_gen] = ACTIONS(2308), - [anon_sym_if] = ACTIONS(2308), - [anon_sym_impl] = ACTIONS(2308), - [anon_sym_let] = ACTIONS(2308), - [anon_sym_loop] = ACTIONS(2308), - [anon_sym_match] = ACTIONS(2308), - [anon_sym_mod] = ACTIONS(2308), - [anon_sym_pub] = ACTIONS(2308), - [anon_sym_return] = ACTIONS(2308), - [anon_sym_static] = ACTIONS(2308), - [anon_sym_struct] = ACTIONS(2308), - [anon_sym_trait] = ACTIONS(2308), - [anon_sym_type] = ACTIONS(2308), - [anon_sym_union] = ACTIONS(2308), - [anon_sym_unsafe] = ACTIONS(2308), - [anon_sym_use] = ACTIONS(2308), - [anon_sym_while] = ACTIONS(2308), - [anon_sym_extern] = ACTIONS(2308), - [anon_sym_yield] = ACTIONS(2308), - [anon_sym_move] = ACTIONS(2308), - [anon_sym_try] = ACTIONS(2308), - [sym_integer_literal] = ACTIONS(2306), - [aux_sym_string_literal_token1] = ACTIONS(2306), - [sym_char_literal] = ACTIONS(2306), - [anon_sym_true] = ACTIONS(2308), - [anon_sym_false] = ACTIONS(2308), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2308), - [sym_super] = ACTIONS(2308), - [sym_crate] = ACTIONS(2308), - [sym_metavariable] = ACTIONS(2306), - [sym__raw_string_literal_start] = ACTIONS(2306), - [sym_float_literal] = ACTIONS(2306), + [ts_builtin_sym_end] = ACTIONS(2313), + [sym_identifier] = ACTIONS(2315), + [anon_sym_SEMI] = ACTIONS(2313), + [anon_sym_macro_rules_BANG] = ACTIONS(2313), + [anon_sym_LPAREN] = ACTIONS(2313), + [anon_sym_LBRACK] = ACTIONS(2313), + [anon_sym_LBRACE] = ACTIONS(2313), + [anon_sym_RBRACE] = ACTIONS(2313), + [anon_sym_STAR] = ACTIONS(2313), + [anon_sym_u8] = ACTIONS(2315), + [anon_sym_i8] = ACTIONS(2315), + [anon_sym_u16] = ACTIONS(2315), + [anon_sym_i16] = ACTIONS(2315), + [anon_sym_u32] = ACTIONS(2315), + [anon_sym_i32] = ACTIONS(2315), + [anon_sym_u64] = ACTIONS(2315), + [anon_sym_i64] = ACTIONS(2315), + [anon_sym_u128] = ACTIONS(2315), + [anon_sym_i128] = ACTIONS(2315), + [anon_sym_isize] = ACTIONS(2315), + [anon_sym_usize] = ACTIONS(2315), + [anon_sym_f32] = ACTIONS(2315), + [anon_sym_f64] = ACTIONS(2315), + [anon_sym_bool] = ACTIONS(2315), + [anon_sym_str] = ACTIONS(2315), + [anon_sym_char] = ACTIONS(2315), + [anon_sym_DASH] = ACTIONS(2313), + [anon_sym_BANG] = ACTIONS(2313), + [anon_sym_AMP] = ACTIONS(2313), + [anon_sym_PIPE] = ACTIONS(2313), + [anon_sym_LT] = ACTIONS(2313), + [anon_sym_DOT_DOT] = ACTIONS(2313), + [anon_sym_COLON_COLON] = ACTIONS(2313), + [anon_sym_POUND] = ACTIONS(2313), + [anon_sym_SQUOTE] = ACTIONS(2315), + [anon_sym_async] = ACTIONS(2315), + [anon_sym_break] = ACTIONS(2315), + [anon_sym_const] = ACTIONS(2315), + [anon_sym_continue] = ACTIONS(2315), + [anon_sym_default] = ACTIONS(2315), + [anon_sym_enum] = ACTIONS(2315), + [anon_sym_fn] = ACTIONS(2315), + [anon_sym_for] = ACTIONS(2315), + [anon_sym_gen] = ACTIONS(2315), + [anon_sym_if] = ACTIONS(2315), + [anon_sym_impl] = ACTIONS(2315), + [anon_sym_let] = ACTIONS(2315), + [anon_sym_loop] = ACTIONS(2315), + [anon_sym_match] = ACTIONS(2315), + [anon_sym_mod] = ACTIONS(2315), + [anon_sym_pub] = ACTIONS(2315), + [anon_sym_return] = ACTIONS(2315), + [anon_sym_static] = ACTIONS(2315), + [anon_sym_struct] = ACTIONS(2315), + [anon_sym_trait] = ACTIONS(2315), + [anon_sym_type] = ACTIONS(2315), + [anon_sym_union] = ACTIONS(2315), + [anon_sym_unsafe] = ACTIONS(2315), + [anon_sym_use] = ACTIONS(2315), + [anon_sym_while] = ACTIONS(2315), + [anon_sym_extern] = ACTIONS(2315), + [anon_sym_safe] = ACTIONS(2315), + [anon_sym_yield] = ACTIONS(2315), + [anon_sym_move] = ACTIONS(2315), + [anon_sym_try] = ACTIONS(2315), + [sym_integer_literal] = ACTIONS(2313), + [aux_sym_string_literal_token1] = ACTIONS(2313), + [sym_char_literal] = ACTIONS(2313), + [anon_sym_true] = ACTIONS(2315), + [anon_sym_false] = ACTIONS(2315), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(2315), + [sym_super] = ACTIONS(2315), + [sym_crate] = ACTIONS(2315), + [sym_metavariable] = ACTIONS(2313), + [sym__raw_string_literal_start] = ACTIONS(2313), + [sym_float_literal] = ACTIONS(2313), }, [STATE(621)] = { [sym_line_comment] = STATE(621), [sym_block_comment] = STATE(621), - [ts_builtin_sym_end] = ACTIONS(2310), - [sym_identifier] = ACTIONS(2312), - [anon_sym_SEMI] = ACTIONS(2310), - [anon_sym_macro_rules_BANG] = ACTIONS(2310), - [anon_sym_LPAREN] = ACTIONS(2310), - [anon_sym_LBRACK] = ACTIONS(2310), - [anon_sym_LBRACE] = ACTIONS(2310), - [anon_sym_RBRACE] = ACTIONS(2310), - [anon_sym_STAR] = ACTIONS(2310), - [anon_sym_u8] = ACTIONS(2312), - [anon_sym_i8] = ACTIONS(2312), - [anon_sym_u16] = ACTIONS(2312), - [anon_sym_i16] = ACTIONS(2312), - [anon_sym_u32] = ACTIONS(2312), - [anon_sym_i32] = ACTIONS(2312), - [anon_sym_u64] = ACTIONS(2312), - [anon_sym_i64] = ACTIONS(2312), - [anon_sym_u128] = ACTIONS(2312), - [anon_sym_i128] = ACTIONS(2312), - [anon_sym_isize] = ACTIONS(2312), - [anon_sym_usize] = ACTIONS(2312), - [anon_sym_f32] = ACTIONS(2312), - [anon_sym_f64] = ACTIONS(2312), - [anon_sym_bool] = ACTIONS(2312), - [anon_sym_str] = ACTIONS(2312), - [anon_sym_char] = ACTIONS(2312), - [anon_sym_DASH] = ACTIONS(2310), - [anon_sym_BANG] = ACTIONS(2310), - [anon_sym_AMP] = ACTIONS(2310), - [anon_sym_PIPE] = ACTIONS(2310), - [anon_sym_LT] = ACTIONS(2310), - [anon_sym_DOT_DOT] = ACTIONS(2310), - [anon_sym_COLON_COLON] = ACTIONS(2310), - [anon_sym_POUND] = ACTIONS(2310), - [anon_sym_SQUOTE] = ACTIONS(2312), - [anon_sym_async] = ACTIONS(2312), - [anon_sym_break] = ACTIONS(2312), - [anon_sym_const] = ACTIONS(2312), - [anon_sym_continue] = ACTIONS(2312), - [anon_sym_default] = ACTIONS(2312), - [anon_sym_enum] = ACTIONS(2312), - [anon_sym_fn] = ACTIONS(2312), - [anon_sym_for] = ACTIONS(2312), - [anon_sym_gen] = ACTIONS(2312), - [anon_sym_if] = ACTIONS(2312), - [anon_sym_impl] = ACTIONS(2312), - [anon_sym_let] = ACTIONS(2312), - [anon_sym_loop] = ACTIONS(2312), - [anon_sym_match] = ACTIONS(2312), - [anon_sym_mod] = ACTIONS(2312), - [anon_sym_pub] = ACTIONS(2312), - [anon_sym_return] = ACTIONS(2312), - [anon_sym_static] = ACTIONS(2312), - [anon_sym_struct] = ACTIONS(2312), - [anon_sym_trait] = ACTIONS(2312), - [anon_sym_type] = ACTIONS(2312), - [anon_sym_union] = ACTIONS(2312), - [anon_sym_unsafe] = ACTIONS(2312), - [anon_sym_use] = ACTIONS(2312), - [anon_sym_while] = ACTIONS(2312), - [anon_sym_extern] = ACTIONS(2312), - [anon_sym_yield] = ACTIONS(2312), - [anon_sym_move] = ACTIONS(2312), - [anon_sym_try] = ACTIONS(2312), - [sym_integer_literal] = ACTIONS(2310), - [aux_sym_string_literal_token1] = ACTIONS(2310), - [sym_char_literal] = ACTIONS(2310), - [anon_sym_true] = ACTIONS(2312), - [anon_sym_false] = ACTIONS(2312), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2312), - [sym_super] = ACTIONS(2312), - [sym_crate] = ACTIONS(2312), - [sym_metavariable] = ACTIONS(2310), - [sym__raw_string_literal_start] = ACTIONS(2310), - [sym_float_literal] = ACTIONS(2310), + [ts_builtin_sym_end] = ACTIONS(2317), + [sym_identifier] = ACTIONS(2319), + [anon_sym_SEMI] = ACTIONS(2317), + [anon_sym_macro_rules_BANG] = ACTIONS(2317), + [anon_sym_LPAREN] = ACTIONS(2317), + [anon_sym_LBRACK] = ACTIONS(2317), + [anon_sym_LBRACE] = ACTIONS(2317), + [anon_sym_RBRACE] = ACTIONS(2317), + [anon_sym_STAR] = ACTIONS(2317), + [anon_sym_u8] = ACTIONS(2319), + [anon_sym_i8] = ACTIONS(2319), + [anon_sym_u16] = ACTIONS(2319), + [anon_sym_i16] = ACTIONS(2319), + [anon_sym_u32] = ACTIONS(2319), + [anon_sym_i32] = ACTIONS(2319), + [anon_sym_u64] = ACTIONS(2319), + [anon_sym_i64] = ACTIONS(2319), + [anon_sym_u128] = ACTIONS(2319), + [anon_sym_i128] = ACTIONS(2319), + [anon_sym_isize] = ACTIONS(2319), + [anon_sym_usize] = ACTIONS(2319), + [anon_sym_f32] = ACTIONS(2319), + [anon_sym_f64] = ACTIONS(2319), + [anon_sym_bool] = ACTIONS(2319), + [anon_sym_str] = ACTIONS(2319), + [anon_sym_char] = ACTIONS(2319), + [anon_sym_DASH] = ACTIONS(2317), + [anon_sym_BANG] = ACTIONS(2317), + [anon_sym_AMP] = ACTIONS(2317), + [anon_sym_PIPE] = ACTIONS(2317), + [anon_sym_LT] = ACTIONS(2317), + [anon_sym_DOT_DOT] = ACTIONS(2317), + [anon_sym_COLON_COLON] = ACTIONS(2317), + [anon_sym_POUND] = ACTIONS(2317), + [anon_sym_SQUOTE] = ACTIONS(2319), + [anon_sym_async] = ACTIONS(2319), + [anon_sym_break] = ACTIONS(2319), + [anon_sym_const] = ACTIONS(2319), + [anon_sym_continue] = ACTIONS(2319), + [anon_sym_default] = ACTIONS(2319), + [anon_sym_enum] = ACTIONS(2319), + [anon_sym_fn] = ACTIONS(2319), + [anon_sym_for] = ACTIONS(2319), + [anon_sym_gen] = ACTIONS(2319), + [anon_sym_if] = ACTIONS(2319), + [anon_sym_impl] = ACTIONS(2319), + [anon_sym_let] = ACTIONS(2319), + [anon_sym_loop] = ACTIONS(2319), + [anon_sym_match] = ACTIONS(2319), + [anon_sym_mod] = ACTIONS(2319), + [anon_sym_pub] = ACTIONS(2319), + [anon_sym_return] = ACTIONS(2319), + [anon_sym_static] = ACTIONS(2319), + [anon_sym_struct] = ACTIONS(2319), + [anon_sym_trait] = ACTIONS(2319), + [anon_sym_type] = ACTIONS(2319), + [anon_sym_union] = ACTIONS(2319), + [anon_sym_unsafe] = ACTIONS(2319), + [anon_sym_use] = ACTIONS(2319), + [anon_sym_while] = ACTIONS(2319), + [anon_sym_extern] = ACTIONS(2319), + [anon_sym_safe] = ACTIONS(2319), + [anon_sym_yield] = ACTIONS(2319), + [anon_sym_move] = ACTIONS(2319), + [anon_sym_try] = ACTIONS(2319), + [sym_integer_literal] = ACTIONS(2317), + [aux_sym_string_literal_token1] = ACTIONS(2317), + [sym_char_literal] = ACTIONS(2317), + [anon_sym_true] = ACTIONS(2319), + [anon_sym_false] = ACTIONS(2319), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(2319), + [sym_super] = ACTIONS(2319), + [sym_crate] = ACTIONS(2319), + [sym_metavariable] = ACTIONS(2317), + [sym__raw_string_literal_start] = ACTIONS(2317), + [sym_float_literal] = ACTIONS(2317), }, [STATE(622)] = { [sym_line_comment] = STATE(622), [sym_block_comment] = STATE(622), - [ts_builtin_sym_end] = ACTIONS(2314), - [sym_identifier] = ACTIONS(2316), - [anon_sym_SEMI] = ACTIONS(2314), - [anon_sym_macro_rules_BANG] = ACTIONS(2314), - [anon_sym_LPAREN] = ACTIONS(2314), - [anon_sym_LBRACK] = ACTIONS(2314), - [anon_sym_LBRACE] = ACTIONS(2314), - [anon_sym_RBRACE] = ACTIONS(2314), - [anon_sym_STAR] = ACTIONS(2314), - [anon_sym_u8] = ACTIONS(2316), - [anon_sym_i8] = ACTIONS(2316), - [anon_sym_u16] = ACTIONS(2316), - [anon_sym_i16] = ACTIONS(2316), - [anon_sym_u32] = ACTIONS(2316), - [anon_sym_i32] = ACTIONS(2316), - [anon_sym_u64] = ACTIONS(2316), - [anon_sym_i64] = ACTIONS(2316), - [anon_sym_u128] = ACTIONS(2316), - [anon_sym_i128] = ACTIONS(2316), - [anon_sym_isize] = ACTIONS(2316), - [anon_sym_usize] = ACTIONS(2316), - [anon_sym_f32] = ACTIONS(2316), - [anon_sym_f64] = ACTIONS(2316), - [anon_sym_bool] = ACTIONS(2316), - [anon_sym_str] = ACTIONS(2316), - [anon_sym_char] = ACTIONS(2316), - [anon_sym_DASH] = ACTIONS(2314), - [anon_sym_BANG] = ACTIONS(2314), - [anon_sym_AMP] = ACTIONS(2314), - [anon_sym_PIPE] = ACTIONS(2314), - [anon_sym_LT] = ACTIONS(2314), - [anon_sym_DOT_DOT] = ACTIONS(2314), - [anon_sym_COLON_COLON] = ACTIONS(2314), - [anon_sym_POUND] = ACTIONS(2314), - [anon_sym_SQUOTE] = ACTIONS(2316), - [anon_sym_async] = ACTIONS(2316), - [anon_sym_break] = ACTIONS(2316), - [anon_sym_const] = ACTIONS(2316), - [anon_sym_continue] = ACTIONS(2316), - [anon_sym_default] = ACTIONS(2316), - [anon_sym_enum] = ACTIONS(2316), - [anon_sym_fn] = ACTIONS(2316), - [anon_sym_for] = ACTIONS(2316), - [anon_sym_gen] = ACTIONS(2316), - [anon_sym_if] = ACTIONS(2316), - [anon_sym_impl] = ACTIONS(2316), - [anon_sym_let] = ACTIONS(2316), - [anon_sym_loop] = ACTIONS(2316), - [anon_sym_match] = ACTIONS(2316), - [anon_sym_mod] = ACTIONS(2316), - [anon_sym_pub] = ACTIONS(2316), - [anon_sym_return] = ACTIONS(2316), - [anon_sym_static] = ACTIONS(2316), - [anon_sym_struct] = ACTIONS(2316), - [anon_sym_trait] = ACTIONS(2316), - [anon_sym_type] = ACTIONS(2316), - [anon_sym_union] = ACTIONS(2316), - [anon_sym_unsafe] = ACTIONS(2316), - [anon_sym_use] = ACTIONS(2316), - [anon_sym_while] = ACTIONS(2316), - [anon_sym_extern] = ACTIONS(2316), - [anon_sym_yield] = ACTIONS(2316), - [anon_sym_move] = ACTIONS(2316), - [anon_sym_try] = ACTIONS(2316), - [sym_integer_literal] = ACTIONS(2314), - [aux_sym_string_literal_token1] = ACTIONS(2314), - [sym_char_literal] = ACTIONS(2314), - [anon_sym_true] = ACTIONS(2316), - [anon_sym_false] = ACTIONS(2316), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2316), - [sym_super] = ACTIONS(2316), - [sym_crate] = ACTIONS(2316), - [sym_metavariable] = ACTIONS(2314), - [sym__raw_string_literal_start] = ACTIONS(2314), - [sym_float_literal] = ACTIONS(2314), + [ts_builtin_sym_end] = ACTIONS(2321), + [sym_identifier] = ACTIONS(2323), + [anon_sym_SEMI] = ACTIONS(2321), + [anon_sym_macro_rules_BANG] = ACTIONS(2321), + [anon_sym_LPAREN] = ACTIONS(2321), + [anon_sym_LBRACK] = ACTIONS(2321), + [anon_sym_LBRACE] = ACTIONS(2321), + [anon_sym_RBRACE] = ACTIONS(2321), + [anon_sym_STAR] = ACTIONS(2321), + [anon_sym_u8] = ACTIONS(2323), + [anon_sym_i8] = ACTIONS(2323), + [anon_sym_u16] = ACTIONS(2323), + [anon_sym_i16] = ACTIONS(2323), + [anon_sym_u32] = ACTIONS(2323), + [anon_sym_i32] = ACTIONS(2323), + [anon_sym_u64] = ACTIONS(2323), + [anon_sym_i64] = ACTIONS(2323), + [anon_sym_u128] = ACTIONS(2323), + [anon_sym_i128] = ACTIONS(2323), + [anon_sym_isize] = ACTIONS(2323), + [anon_sym_usize] = ACTIONS(2323), + [anon_sym_f32] = ACTIONS(2323), + [anon_sym_f64] = ACTIONS(2323), + [anon_sym_bool] = ACTIONS(2323), + [anon_sym_str] = ACTIONS(2323), + [anon_sym_char] = ACTIONS(2323), + [anon_sym_DASH] = ACTIONS(2321), + [anon_sym_BANG] = ACTIONS(2321), + [anon_sym_AMP] = ACTIONS(2321), + [anon_sym_PIPE] = ACTIONS(2321), + [anon_sym_LT] = ACTIONS(2321), + [anon_sym_DOT_DOT] = ACTIONS(2321), + [anon_sym_COLON_COLON] = ACTIONS(2321), + [anon_sym_POUND] = ACTIONS(2321), + [anon_sym_SQUOTE] = ACTIONS(2323), + [anon_sym_async] = ACTIONS(2323), + [anon_sym_break] = ACTIONS(2323), + [anon_sym_const] = ACTIONS(2323), + [anon_sym_continue] = ACTIONS(2323), + [anon_sym_default] = ACTIONS(2323), + [anon_sym_enum] = ACTIONS(2323), + [anon_sym_fn] = ACTIONS(2323), + [anon_sym_for] = ACTIONS(2323), + [anon_sym_gen] = ACTIONS(2323), + [anon_sym_if] = ACTIONS(2323), + [anon_sym_impl] = ACTIONS(2323), + [anon_sym_let] = ACTIONS(2323), + [anon_sym_loop] = ACTIONS(2323), + [anon_sym_match] = ACTIONS(2323), + [anon_sym_mod] = ACTIONS(2323), + [anon_sym_pub] = ACTIONS(2323), + [anon_sym_return] = ACTIONS(2323), + [anon_sym_static] = ACTIONS(2323), + [anon_sym_struct] = ACTIONS(2323), + [anon_sym_trait] = ACTIONS(2323), + [anon_sym_type] = ACTIONS(2323), + [anon_sym_union] = ACTIONS(2323), + [anon_sym_unsafe] = ACTIONS(2323), + [anon_sym_use] = ACTIONS(2323), + [anon_sym_while] = ACTIONS(2323), + [anon_sym_extern] = ACTIONS(2323), + [anon_sym_safe] = ACTIONS(2323), + [anon_sym_yield] = ACTIONS(2323), + [anon_sym_move] = ACTIONS(2323), + [anon_sym_try] = ACTIONS(2323), + [sym_integer_literal] = ACTIONS(2321), + [aux_sym_string_literal_token1] = ACTIONS(2321), + [sym_char_literal] = ACTIONS(2321), + [anon_sym_true] = ACTIONS(2323), + [anon_sym_false] = ACTIONS(2323), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(2323), + [sym_super] = ACTIONS(2323), + [sym_crate] = ACTIONS(2323), + [sym_metavariable] = ACTIONS(2321), + [sym__raw_string_literal_start] = ACTIONS(2321), + [sym_float_literal] = ACTIONS(2321), }, [STATE(623)] = { [sym_line_comment] = STATE(623), [sym_block_comment] = STATE(623), - [ts_builtin_sym_end] = ACTIONS(2318), - [sym_identifier] = ACTIONS(2320), - [anon_sym_SEMI] = ACTIONS(2318), - [anon_sym_macro_rules_BANG] = ACTIONS(2318), - [anon_sym_LPAREN] = ACTIONS(2318), - [anon_sym_LBRACK] = ACTIONS(2318), - [anon_sym_LBRACE] = ACTIONS(2318), - [anon_sym_RBRACE] = ACTIONS(2318), - [anon_sym_STAR] = ACTIONS(2318), - [anon_sym_u8] = ACTIONS(2320), - [anon_sym_i8] = ACTIONS(2320), - [anon_sym_u16] = ACTIONS(2320), - [anon_sym_i16] = ACTIONS(2320), - [anon_sym_u32] = ACTIONS(2320), - [anon_sym_i32] = ACTIONS(2320), - [anon_sym_u64] = ACTIONS(2320), - [anon_sym_i64] = ACTIONS(2320), - [anon_sym_u128] = ACTIONS(2320), - [anon_sym_i128] = ACTIONS(2320), - [anon_sym_isize] = ACTIONS(2320), - [anon_sym_usize] = ACTIONS(2320), - [anon_sym_f32] = ACTIONS(2320), - [anon_sym_f64] = ACTIONS(2320), - [anon_sym_bool] = ACTIONS(2320), - [anon_sym_str] = ACTIONS(2320), - [anon_sym_char] = ACTIONS(2320), - [anon_sym_DASH] = ACTIONS(2318), - [anon_sym_BANG] = ACTIONS(2318), - [anon_sym_AMP] = ACTIONS(2318), - [anon_sym_PIPE] = ACTIONS(2318), - [anon_sym_LT] = ACTIONS(2318), - [anon_sym_DOT_DOT] = ACTIONS(2318), - [anon_sym_COLON_COLON] = ACTIONS(2318), - [anon_sym_POUND] = ACTIONS(2318), - [anon_sym_SQUOTE] = ACTIONS(2320), - [anon_sym_async] = ACTIONS(2320), - [anon_sym_break] = ACTIONS(2320), - [anon_sym_const] = ACTIONS(2320), - [anon_sym_continue] = ACTIONS(2320), - [anon_sym_default] = ACTIONS(2320), - [anon_sym_enum] = ACTIONS(2320), - [anon_sym_fn] = ACTIONS(2320), - [anon_sym_for] = ACTIONS(2320), - [anon_sym_gen] = ACTIONS(2320), - [anon_sym_if] = ACTIONS(2320), - [anon_sym_impl] = ACTIONS(2320), - [anon_sym_let] = ACTIONS(2320), - [anon_sym_loop] = ACTIONS(2320), - [anon_sym_match] = ACTIONS(2320), - [anon_sym_mod] = ACTIONS(2320), - [anon_sym_pub] = ACTIONS(2320), - [anon_sym_return] = ACTIONS(2320), - [anon_sym_static] = ACTIONS(2320), - [anon_sym_struct] = ACTIONS(2320), - [anon_sym_trait] = ACTIONS(2320), - [anon_sym_type] = ACTIONS(2320), - [anon_sym_union] = ACTIONS(2320), - [anon_sym_unsafe] = ACTIONS(2320), - [anon_sym_use] = ACTIONS(2320), - [anon_sym_while] = ACTIONS(2320), - [anon_sym_extern] = ACTIONS(2320), - [anon_sym_yield] = ACTIONS(2320), - [anon_sym_move] = ACTIONS(2320), - [anon_sym_try] = ACTIONS(2320), - [sym_integer_literal] = ACTIONS(2318), - [aux_sym_string_literal_token1] = ACTIONS(2318), - [sym_char_literal] = ACTIONS(2318), - [anon_sym_true] = ACTIONS(2320), - [anon_sym_false] = ACTIONS(2320), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2320), - [sym_super] = ACTIONS(2320), - [sym_crate] = ACTIONS(2320), - [sym_metavariable] = ACTIONS(2318), - [sym__raw_string_literal_start] = ACTIONS(2318), - [sym_float_literal] = ACTIONS(2318), + [ts_builtin_sym_end] = ACTIONS(2325), + [sym_identifier] = ACTIONS(2327), + [anon_sym_SEMI] = ACTIONS(2325), + [anon_sym_macro_rules_BANG] = ACTIONS(2325), + [anon_sym_LPAREN] = ACTIONS(2325), + [anon_sym_LBRACK] = ACTIONS(2325), + [anon_sym_LBRACE] = ACTIONS(2325), + [anon_sym_RBRACE] = ACTIONS(2325), + [anon_sym_STAR] = ACTIONS(2325), + [anon_sym_u8] = ACTIONS(2327), + [anon_sym_i8] = ACTIONS(2327), + [anon_sym_u16] = ACTIONS(2327), + [anon_sym_i16] = ACTIONS(2327), + [anon_sym_u32] = ACTIONS(2327), + [anon_sym_i32] = ACTIONS(2327), + [anon_sym_u64] = ACTIONS(2327), + [anon_sym_i64] = ACTIONS(2327), + [anon_sym_u128] = ACTIONS(2327), + [anon_sym_i128] = ACTIONS(2327), + [anon_sym_isize] = ACTIONS(2327), + [anon_sym_usize] = ACTIONS(2327), + [anon_sym_f32] = ACTIONS(2327), + [anon_sym_f64] = ACTIONS(2327), + [anon_sym_bool] = ACTIONS(2327), + [anon_sym_str] = ACTIONS(2327), + [anon_sym_char] = ACTIONS(2327), + [anon_sym_DASH] = ACTIONS(2325), + [anon_sym_BANG] = ACTIONS(2325), + [anon_sym_AMP] = ACTIONS(2325), + [anon_sym_PIPE] = ACTIONS(2325), + [anon_sym_LT] = ACTIONS(2325), + [anon_sym_DOT_DOT] = ACTIONS(2325), + [anon_sym_COLON_COLON] = ACTIONS(2325), + [anon_sym_POUND] = ACTIONS(2325), + [anon_sym_SQUOTE] = ACTIONS(2327), + [anon_sym_async] = ACTIONS(2327), + [anon_sym_break] = ACTIONS(2327), + [anon_sym_const] = ACTIONS(2327), + [anon_sym_continue] = ACTIONS(2327), + [anon_sym_default] = ACTIONS(2327), + [anon_sym_enum] = ACTIONS(2327), + [anon_sym_fn] = ACTIONS(2327), + [anon_sym_for] = ACTIONS(2327), + [anon_sym_gen] = ACTIONS(2327), + [anon_sym_if] = ACTIONS(2327), + [anon_sym_impl] = ACTIONS(2327), + [anon_sym_let] = ACTIONS(2327), + [anon_sym_loop] = ACTIONS(2327), + [anon_sym_match] = ACTIONS(2327), + [anon_sym_mod] = ACTIONS(2327), + [anon_sym_pub] = ACTIONS(2327), + [anon_sym_return] = ACTIONS(2327), + [anon_sym_static] = ACTIONS(2327), + [anon_sym_struct] = ACTIONS(2327), + [anon_sym_trait] = ACTIONS(2327), + [anon_sym_type] = ACTIONS(2327), + [anon_sym_union] = ACTIONS(2327), + [anon_sym_unsafe] = ACTIONS(2327), + [anon_sym_use] = ACTIONS(2327), + [anon_sym_while] = ACTIONS(2327), + [anon_sym_extern] = ACTIONS(2327), + [anon_sym_safe] = ACTIONS(2327), + [anon_sym_yield] = ACTIONS(2327), + [anon_sym_move] = ACTIONS(2327), + [anon_sym_try] = ACTIONS(2327), + [sym_integer_literal] = ACTIONS(2325), + [aux_sym_string_literal_token1] = ACTIONS(2325), + [sym_char_literal] = ACTIONS(2325), + [anon_sym_true] = ACTIONS(2327), + [anon_sym_false] = ACTIONS(2327), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(2327), + [sym_super] = ACTIONS(2327), + [sym_crate] = ACTIONS(2327), + [sym_metavariable] = ACTIONS(2325), + [sym__raw_string_literal_start] = ACTIONS(2325), + [sym_float_literal] = ACTIONS(2325), }, [STATE(624)] = { [sym_line_comment] = STATE(624), [sym_block_comment] = STATE(624), - [ts_builtin_sym_end] = ACTIONS(2322), - [sym_identifier] = ACTIONS(2324), - [anon_sym_SEMI] = ACTIONS(2322), - [anon_sym_macro_rules_BANG] = ACTIONS(2322), - [anon_sym_LPAREN] = ACTIONS(2322), - [anon_sym_LBRACK] = ACTIONS(2322), - [anon_sym_LBRACE] = ACTIONS(2322), - [anon_sym_RBRACE] = ACTIONS(2322), - [anon_sym_STAR] = ACTIONS(2322), - [anon_sym_u8] = ACTIONS(2324), - [anon_sym_i8] = ACTIONS(2324), - [anon_sym_u16] = ACTIONS(2324), - [anon_sym_i16] = ACTIONS(2324), - [anon_sym_u32] = ACTIONS(2324), - [anon_sym_i32] = ACTIONS(2324), - [anon_sym_u64] = ACTIONS(2324), - [anon_sym_i64] = ACTIONS(2324), - [anon_sym_u128] = ACTIONS(2324), - [anon_sym_i128] = ACTIONS(2324), - [anon_sym_isize] = ACTIONS(2324), - [anon_sym_usize] = ACTIONS(2324), - [anon_sym_f32] = ACTIONS(2324), - [anon_sym_f64] = ACTIONS(2324), - [anon_sym_bool] = ACTIONS(2324), - [anon_sym_str] = ACTIONS(2324), - [anon_sym_char] = ACTIONS(2324), - [anon_sym_DASH] = ACTIONS(2322), - [anon_sym_BANG] = ACTIONS(2322), - [anon_sym_AMP] = ACTIONS(2322), - [anon_sym_PIPE] = ACTIONS(2322), - [anon_sym_LT] = ACTIONS(2322), - [anon_sym_DOT_DOT] = ACTIONS(2322), - [anon_sym_COLON_COLON] = ACTIONS(2322), - [anon_sym_POUND] = ACTIONS(2322), - [anon_sym_SQUOTE] = ACTIONS(2324), - [anon_sym_async] = ACTIONS(2324), - [anon_sym_break] = ACTIONS(2324), - [anon_sym_const] = ACTIONS(2324), - [anon_sym_continue] = ACTIONS(2324), - [anon_sym_default] = ACTIONS(2324), - [anon_sym_enum] = ACTIONS(2324), - [anon_sym_fn] = ACTIONS(2324), - [anon_sym_for] = ACTIONS(2324), - [anon_sym_gen] = ACTIONS(2324), - [anon_sym_if] = ACTIONS(2324), - [anon_sym_impl] = ACTIONS(2324), - [anon_sym_let] = ACTIONS(2324), - [anon_sym_loop] = ACTIONS(2324), - [anon_sym_match] = ACTIONS(2324), - [anon_sym_mod] = ACTIONS(2324), - [anon_sym_pub] = ACTIONS(2324), - [anon_sym_return] = ACTIONS(2324), - [anon_sym_static] = ACTIONS(2324), - [anon_sym_struct] = ACTIONS(2324), - [anon_sym_trait] = ACTIONS(2324), - [anon_sym_type] = ACTIONS(2324), - [anon_sym_union] = ACTIONS(2324), - [anon_sym_unsafe] = ACTIONS(2324), - [anon_sym_use] = ACTIONS(2324), - [anon_sym_while] = ACTIONS(2324), - [anon_sym_extern] = ACTIONS(2324), - [anon_sym_yield] = ACTIONS(2324), - [anon_sym_move] = ACTIONS(2324), - [anon_sym_try] = ACTIONS(2324), - [sym_integer_literal] = ACTIONS(2322), - [aux_sym_string_literal_token1] = ACTIONS(2322), - [sym_char_literal] = ACTIONS(2322), - [anon_sym_true] = ACTIONS(2324), - [anon_sym_false] = ACTIONS(2324), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2324), - [sym_super] = ACTIONS(2324), - [sym_crate] = ACTIONS(2324), - [sym_metavariable] = ACTIONS(2322), - [sym__raw_string_literal_start] = ACTIONS(2322), - [sym_float_literal] = ACTIONS(2322), + [ts_builtin_sym_end] = ACTIONS(2329), + [sym_identifier] = ACTIONS(2331), + [anon_sym_SEMI] = ACTIONS(2329), + [anon_sym_macro_rules_BANG] = ACTIONS(2329), + [anon_sym_LPAREN] = ACTIONS(2329), + [anon_sym_LBRACK] = ACTIONS(2329), + [anon_sym_LBRACE] = ACTIONS(2329), + [anon_sym_RBRACE] = ACTIONS(2329), + [anon_sym_STAR] = ACTIONS(2329), + [anon_sym_u8] = ACTIONS(2331), + [anon_sym_i8] = ACTIONS(2331), + [anon_sym_u16] = ACTIONS(2331), + [anon_sym_i16] = ACTIONS(2331), + [anon_sym_u32] = ACTIONS(2331), + [anon_sym_i32] = ACTIONS(2331), + [anon_sym_u64] = ACTIONS(2331), + [anon_sym_i64] = ACTIONS(2331), + [anon_sym_u128] = ACTIONS(2331), + [anon_sym_i128] = ACTIONS(2331), + [anon_sym_isize] = ACTIONS(2331), + [anon_sym_usize] = ACTIONS(2331), + [anon_sym_f32] = ACTIONS(2331), + [anon_sym_f64] = ACTIONS(2331), + [anon_sym_bool] = ACTIONS(2331), + [anon_sym_str] = ACTIONS(2331), + [anon_sym_char] = ACTIONS(2331), + [anon_sym_DASH] = ACTIONS(2329), + [anon_sym_BANG] = ACTIONS(2329), + [anon_sym_AMP] = ACTIONS(2329), + [anon_sym_PIPE] = ACTIONS(2329), + [anon_sym_LT] = ACTIONS(2329), + [anon_sym_DOT_DOT] = ACTIONS(2329), + [anon_sym_COLON_COLON] = ACTIONS(2329), + [anon_sym_POUND] = ACTIONS(2329), + [anon_sym_SQUOTE] = ACTIONS(2331), + [anon_sym_async] = ACTIONS(2331), + [anon_sym_break] = ACTIONS(2331), + [anon_sym_const] = ACTIONS(2331), + [anon_sym_continue] = ACTIONS(2331), + [anon_sym_default] = ACTIONS(2331), + [anon_sym_enum] = ACTIONS(2331), + [anon_sym_fn] = ACTIONS(2331), + [anon_sym_for] = ACTIONS(2331), + [anon_sym_gen] = ACTIONS(2331), + [anon_sym_if] = ACTIONS(2331), + [anon_sym_impl] = ACTIONS(2331), + [anon_sym_let] = ACTIONS(2331), + [anon_sym_loop] = ACTIONS(2331), + [anon_sym_match] = ACTIONS(2331), + [anon_sym_mod] = ACTIONS(2331), + [anon_sym_pub] = ACTIONS(2331), + [anon_sym_return] = ACTIONS(2331), + [anon_sym_static] = ACTIONS(2331), + [anon_sym_struct] = ACTIONS(2331), + [anon_sym_trait] = ACTIONS(2331), + [anon_sym_type] = ACTIONS(2331), + [anon_sym_union] = ACTIONS(2331), + [anon_sym_unsafe] = ACTIONS(2331), + [anon_sym_use] = ACTIONS(2331), + [anon_sym_while] = ACTIONS(2331), + [anon_sym_extern] = ACTIONS(2331), + [anon_sym_safe] = ACTIONS(2331), + [anon_sym_yield] = ACTIONS(2331), + [anon_sym_move] = ACTIONS(2331), + [anon_sym_try] = ACTIONS(2331), + [sym_integer_literal] = ACTIONS(2329), + [aux_sym_string_literal_token1] = ACTIONS(2329), + [sym_char_literal] = ACTIONS(2329), + [anon_sym_true] = ACTIONS(2331), + [anon_sym_false] = ACTIONS(2331), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(2331), + [sym_super] = ACTIONS(2331), + [sym_crate] = ACTIONS(2331), + [sym_metavariable] = ACTIONS(2329), + [sym__raw_string_literal_start] = ACTIONS(2329), + [sym_float_literal] = ACTIONS(2329), }, [STATE(625)] = { [sym_line_comment] = STATE(625), [sym_block_comment] = STATE(625), - [ts_builtin_sym_end] = ACTIONS(2326), - [sym_identifier] = ACTIONS(2328), - [anon_sym_SEMI] = ACTIONS(2326), - [anon_sym_macro_rules_BANG] = ACTIONS(2326), - [anon_sym_LPAREN] = ACTIONS(2326), - [anon_sym_LBRACK] = ACTIONS(2326), - [anon_sym_LBRACE] = ACTIONS(2326), - [anon_sym_RBRACE] = ACTIONS(2326), - [anon_sym_STAR] = ACTIONS(2326), - [anon_sym_u8] = ACTIONS(2328), - [anon_sym_i8] = ACTIONS(2328), - [anon_sym_u16] = ACTIONS(2328), - [anon_sym_i16] = ACTIONS(2328), - [anon_sym_u32] = ACTIONS(2328), - [anon_sym_i32] = ACTIONS(2328), - [anon_sym_u64] = ACTIONS(2328), - [anon_sym_i64] = ACTIONS(2328), - [anon_sym_u128] = ACTIONS(2328), - [anon_sym_i128] = ACTIONS(2328), - [anon_sym_isize] = ACTIONS(2328), - [anon_sym_usize] = ACTIONS(2328), - [anon_sym_f32] = ACTIONS(2328), - [anon_sym_f64] = ACTIONS(2328), - [anon_sym_bool] = ACTIONS(2328), - [anon_sym_str] = ACTIONS(2328), - [anon_sym_char] = ACTIONS(2328), - [anon_sym_DASH] = ACTIONS(2326), - [anon_sym_BANG] = ACTIONS(2326), - [anon_sym_AMP] = ACTIONS(2326), - [anon_sym_PIPE] = ACTIONS(2326), - [anon_sym_LT] = ACTIONS(2326), - [anon_sym_DOT_DOT] = ACTIONS(2326), - [anon_sym_COLON_COLON] = ACTIONS(2326), - [anon_sym_POUND] = ACTIONS(2326), - [anon_sym_SQUOTE] = ACTIONS(2328), - [anon_sym_async] = ACTIONS(2328), - [anon_sym_break] = ACTIONS(2328), - [anon_sym_const] = ACTIONS(2328), - [anon_sym_continue] = ACTIONS(2328), - [anon_sym_default] = ACTIONS(2328), - [anon_sym_enum] = ACTIONS(2328), - [anon_sym_fn] = ACTIONS(2328), - [anon_sym_for] = ACTIONS(2328), - [anon_sym_gen] = ACTIONS(2328), - [anon_sym_if] = ACTIONS(2328), - [anon_sym_impl] = ACTIONS(2328), - [anon_sym_let] = ACTIONS(2328), - [anon_sym_loop] = ACTIONS(2328), - [anon_sym_match] = ACTIONS(2328), - [anon_sym_mod] = ACTIONS(2328), - [anon_sym_pub] = ACTIONS(2328), - [anon_sym_return] = ACTIONS(2328), - [anon_sym_static] = ACTIONS(2328), - [anon_sym_struct] = ACTIONS(2328), - [anon_sym_trait] = ACTIONS(2328), - [anon_sym_type] = ACTIONS(2328), - [anon_sym_union] = ACTIONS(2328), - [anon_sym_unsafe] = ACTIONS(2328), - [anon_sym_use] = ACTIONS(2328), - [anon_sym_while] = ACTIONS(2328), - [anon_sym_extern] = ACTIONS(2328), - [anon_sym_yield] = ACTIONS(2328), - [anon_sym_move] = ACTIONS(2328), - [anon_sym_try] = ACTIONS(2328), - [sym_integer_literal] = ACTIONS(2326), - [aux_sym_string_literal_token1] = ACTIONS(2326), - [sym_char_literal] = ACTIONS(2326), - [anon_sym_true] = ACTIONS(2328), - [anon_sym_false] = ACTIONS(2328), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2328), - [sym_super] = ACTIONS(2328), - [sym_crate] = ACTIONS(2328), - [sym_metavariable] = ACTIONS(2326), - [sym__raw_string_literal_start] = ACTIONS(2326), - [sym_float_literal] = ACTIONS(2326), + [ts_builtin_sym_end] = ACTIONS(2333), + [sym_identifier] = ACTIONS(2335), + [anon_sym_SEMI] = ACTIONS(2333), + [anon_sym_macro_rules_BANG] = ACTIONS(2333), + [anon_sym_LPAREN] = ACTIONS(2333), + [anon_sym_LBRACK] = ACTIONS(2333), + [anon_sym_LBRACE] = ACTIONS(2333), + [anon_sym_RBRACE] = ACTIONS(2333), + [anon_sym_STAR] = ACTIONS(2333), + [anon_sym_u8] = ACTIONS(2335), + [anon_sym_i8] = ACTIONS(2335), + [anon_sym_u16] = ACTIONS(2335), + [anon_sym_i16] = ACTIONS(2335), + [anon_sym_u32] = ACTIONS(2335), + [anon_sym_i32] = ACTIONS(2335), + [anon_sym_u64] = ACTIONS(2335), + [anon_sym_i64] = ACTIONS(2335), + [anon_sym_u128] = ACTIONS(2335), + [anon_sym_i128] = ACTIONS(2335), + [anon_sym_isize] = ACTIONS(2335), + [anon_sym_usize] = ACTIONS(2335), + [anon_sym_f32] = ACTIONS(2335), + [anon_sym_f64] = ACTIONS(2335), + [anon_sym_bool] = ACTIONS(2335), + [anon_sym_str] = ACTIONS(2335), + [anon_sym_char] = ACTIONS(2335), + [anon_sym_DASH] = ACTIONS(2333), + [anon_sym_BANG] = ACTIONS(2333), + [anon_sym_AMP] = ACTIONS(2333), + [anon_sym_PIPE] = ACTIONS(2333), + [anon_sym_LT] = ACTIONS(2333), + [anon_sym_DOT_DOT] = ACTIONS(2333), + [anon_sym_COLON_COLON] = ACTIONS(2333), + [anon_sym_POUND] = ACTIONS(2333), + [anon_sym_SQUOTE] = ACTIONS(2335), + [anon_sym_async] = ACTIONS(2335), + [anon_sym_break] = ACTIONS(2335), + [anon_sym_const] = ACTIONS(2335), + [anon_sym_continue] = ACTIONS(2335), + [anon_sym_default] = ACTIONS(2335), + [anon_sym_enum] = ACTIONS(2335), + [anon_sym_fn] = ACTIONS(2335), + [anon_sym_for] = ACTIONS(2335), + [anon_sym_gen] = ACTIONS(2335), + [anon_sym_if] = ACTIONS(2335), + [anon_sym_impl] = ACTIONS(2335), + [anon_sym_let] = ACTIONS(2335), + [anon_sym_loop] = ACTIONS(2335), + [anon_sym_match] = ACTIONS(2335), + [anon_sym_mod] = ACTIONS(2335), + [anon_sym_pub] = ACTIONS(2335), + [anon_sym_return] = ACTIONS(2335), + [anon_sym_static] = ACTIONS(2335), + [anon_sym_struct] = ACTIONS(2335), + [anon_sym_trait] = ACTIONS(2335), + [anon_sym_type] = ACTIONS(2335), + [anon_sym_union] = ACTIONS(2335), + [anon_sym_unsafe] = ACTIONS(2335), + [anon_sym_use] = ACTIONS(2335), + [anon_sym_while] = ACTIONS(2335), + [anon_sym_extern] = ACTIONS(2335), + [anon_sym_safe] = ACTIONS(2335), + [anon_sym_yield] = ACTIONS(2335), + [anon_sym_move] = ACTIONS(2335), + [anon_sym_try] = ACTIONS(2335), + [sym_integer_literal] = ACTIONS(2333), + [aux_sym_string_literal_token1] = ACTIONS(2333), + [sym_char_literal] = ACTIONS(2333), + [anon_sym_true] = ACTIONS(2335), + [anon_sym_false] = ACTIONS(2335), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(2335), + [sym_super] = ACTIONS(2335), + [sym_crate] = ACTIONS(2335), + [sym_metavariable] = ACTIONS(2333), + [sym__raw_string_literal_start] = ACTIONS(2333), + [sym_float_literal] = ACTIONS(2333), }, [STATE(626)] = { [sym_line_comment] = STATE(626), [sym_block_comment] = STATE(626), - [ts_builtin_sym_end] = ACTIONS(2330), - [sym_identifier] = ACTIONS(2332), - [anon_sym_SEMI] = ACTIONS(2330), - [anon_sym_macro_rules_BANG] = ACTIONS(2330), - [anon_sym_LPAREN] = ACTIONS(2330), - [anon_sym_LBRACK] = ACTIONS(2330), - [anon_sym_LBRACE] = ACTIONS(2330), - [anon_sym_RBRACE] = ACTIONS(2330), - [anon_sym_STAR] = ACTIONS(2330), - [anon_sym_u8] = ACTIONS(2332), - [anon_sym_i8] = ACTIONS(2332), - [anon_sym_u16] = ACTIONS(2332), - [anon_sym_i16] = ACTIONS(2332), - [anon_sym_u32] = ACTIONS(2332), - [anon_sym_i32] = ACTIONS(2332), - [anon_sym_u64] = ACTIONS(2332), - [anon_sym_i64] = ACTIONS(2332), - [anon_sym_u128] = ACTIONS(2332), - [anon_sym_i128] = ACTIONS(2332), - [anon_sym_isize] = ACTIONS(2332), - [anon_sym_usize] = ACTIONS(2332), - [anon_sym_f32] = ACTIONS(2332), - [anon_sym_f64] = ACTIONS(2332), - [anon_sym_bool] = ACTIONS(2332), - [anon_sym_str] = ACTIONS(2332), - [anon_sym_char] = ACTIONS(2332), - [anon_sym_DASH] = ACTIONS(2330), - [anon_sym_BANG] = ACTIONS(2330), - [anon_sym_AMP] = ACTIONS(2330), - [anon_sym_PIPE] = ACTIONS(2330), - [anon_sym_LT] = ACTIONS(2330), - [anon_sym_DOT_DOT] = ACTIONS(2330), - [anon_sym_COLON_COLON] = ACTIONS(2330), - [anon_sym_POUND] = ACTIONS(2330), - [anon_sym_SQUOTE] = ACTIONS(2332), - [anon_sym_async] = ACTIONS(2332), - [anon_sym_break] = ACTIONS(2332), - [anon_sym_const] = ACTIONS(2332), - [anon_sym_continue] = ACTIONS(2332), - [anon_sym_default] = ACTIONS(2332), - [anon_sym_enum] = ACTIONS(2332), - [anon_sym_fn] = ACTIONS(2332), - [anon_sym_for] = ACTIONS(2332), - [anon_sym_gen] = ACTIONS(2332), - [anon_sym_if] = ACTIONS(2332), - [anon_sym_impl] = ACTIONS(2332), - [anon_sym_let] = ACTIONS(2332), - [anon_sym_loop] = ACTIONS(2332), - [anon_sym_match] = ACTIONS(2332), - [anon_sym_mod] = ACTIONS(2332), - [anon_sym_pub] = ACTIONS(2332), - [anon_sym_return] = ACTIONS(2332), - [anon_sym_static] = ACTIONS(2332), - [anon_sym_struct] = ACTIONS(2332), - [anon_sym_trait] = ACTIONS(2332), - [anon_sym_type] = ACTIONS(2332), - [anon_sym_union] = ACTIONS(2332), - [anon_sym_unsafe] = ACTIONS(2332), - [anon_sym_use] = ACTIONS(2332), - [anon_sym_while] = ACTIONS(2332), - [anon_sym_extern] = ACTIONS(2332), - [anon_sym_yield] = ACTIONS(2332), - [anon_sym_move] = ACTIONS(2332), - [anon_sym_try] = ACTIONS(2332), - [sym_integer_literal] = ACTIONS(2330), - [aux_sym_string_literal_token1] = ACTIONS(2330), - [sym_char_literal] = ACTIONS(2330), - [anon_sym_true] = ACTIONS(2332), - [anon_sym_false] = ACTIONS(2332), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2332), - [sym_super] = ACTIONS(2332), - [sym_crate] = ACTIONS(2332), - [sym_metavariable] = ACTIONS(2330), - [sym__raw_string_literal_start] = ACTIONS(2330), - [sym_float_literal] = ACTIONS(2330), + [ts_builtin_sym_end] = ACTIONS(2337), + [sym_identifier] = ACTIONS(2339), + [anon_sym_SEMI] = ACTIONS(2337), + [anon_sym_macro_rules_BANG] = ACTIONS(2337), + [anon_sym_LPAREN] = ACTIONS(2337), + [anon_sym_LBRACK] = ACTIONS(2337), + [anon_sym_LBRACE] = ACTIONS(2337), + [anon_sym_RBRACE] = ACTIONS(2337), + [anon_sym_STAR] = ACTIONS(2337), + [anon_sym_u8] = ACTIONS(2339), + [anon_sym_i8] = ACTIONS(2339), + [anon_sym_u16] = ACTIONS(2339), + [anon_sym_i16] = ACTIONS(2339), + [anon_sym_u32] = ACTIONS(2339), + [anon_sym_i32] = ACTIONS(2339), + [anon_sym_u64] = ACTIONS(2339), + [anon_sym_i64] = ACTIONS(2339), + [anon_sym_u128] = ACTIONS(2339), + [anon_sym_i128] = ACTIONS(2339), + [anon_sym_isize] = ACTIONS(2339), + [anon_sym_usize] = ACTIONS(2339), + [anon_sym_f32] = ACTIONS(2339), + [anon_sym_f64] = ACTIONS(2339), + [anon_sym_bool] = ACTIONS(2339), + [anon_sym_str] = ACTIONS(2339), + [anon_sym_char] = ACTIONS(2339), + [anon_sym_DASH] = ACTIONS(2337), + [anon_sym_BANG] = ACTIONS(2337), + [anon_sym_AMP] = ACTIONS(2337), + [anon_sym_PIPE] = ACTIONS(2337), + [anon_sym_LT] = ACTIONS(2337), + [anon_sym_DOT_DOT] = ACTIONS(2337), + [anon_sym_COLON_COLON] = ACTIONS(2337), + [anon_sym_POUND] = ACTIONS(2337), + [anon_sym_SQUOTE] = ACTIONS(2339), + [anon_sym_async] = ACTIONS(2339), + [anon_sym_break] = ACTIONS(2339), + [anon_sym_const] = ACTIONS(2339), + [anon_sym_continue] = ACTIONS(2339), + [anon_sym_default] = ACTIONS(2339), + [anon_sym_enum] = ACTIONS(2339), + [anon_sym_fn] = ACTIONS(2339), + [anon_sym_for] = ACTIONS(2339), + [anon_sym_gen] = ACTIONS(2339), + [anon_sym_if] = ACTIONS(2339), + [anon_sym_impl] = ACTIONS(2339), + [anon_sym_let] = ACTIONS(2339), + [anon_sym_loop] = ACTIONS(2339), + [anon_sym_match] = ACTIONS(2339), + [anon_sym_mod] = ACTIONS(2339), + [anon_sym_pub] = ACTIONS(2339), + [anon_sym_return] = ACTIONS(2339), + [anon_sym_static] = ACTIONS(2339), + [anon_sym_struct] = ACTIONS(2339), + [anon_sym_trait] = ACTIONS(2339), + [anon_sym_type] = ACTIONS(2339), + [anon_sym_union] = ACTIONS(2339), + [anon_sym_unsafe] = ACTIONS(2339), + [anon_sym_use] = ACTIONS(2339), + [anon_sym_while] = ACTIONS(2339), + [anon_sym_extern] = ACTIONS(2339), + [anon_sym_safe] = ACTIONS(2339), + [anon_sym_yield] = ACTIONS(2339), + [anon_sym_move] = ACTIONS(2339), + [anon_sym_try] = ACTIONS(2339), + [sym_integer_literal] = ACTIONS(2337), + [aux_sym_string_literal_token1] = ACTIONS(2337), + [sym_char_literal] = ACTIONS(2337), + [anon_sym_true] = ACTIONS(2339), + [anon_sym_false] = ACTIONS(2339), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(2339), + [sym_super] = ACTIONS(2339), + [sym_crate] = ACTIONS(2339), + [sym_metavariable] = ACTIONS(2337), + [sym__raw_string_literal_start] = ACTIONS(2337), + [sym_float_literal] = ACTIONS(2337), }, [STATE(627)] = { [sym_line_comment] = STATE(627), [sym_block_comment] = STATE(627), - [ts_builtin_sym_end] = ACTIONS(2334), - [sym_identifier] = ACTIONS(2336), - [anon_sym_SEMI] = ACTIONS(2334), - [anon_sym_macro_rules_BANG] = ACTIONS(2334), - [anon_sym_LPAREN] = ACTIONS(2334), - [anon_sym_LBRACK] = ACTIONS(2334), - [anon_sym_LBRACE] = ACTIONS(2334), - [anon_sym_RBRACE] = ACTIONS(2334), - [anon_sym_STAR] = ACTIONS(2334), - [anon_sym_u8] = ACTIONS(2336), - [anon_sym_i8] = ACTIONS(2336), - [anon_sym_u16] = ACTIONS(2336), - [anon_sym_i16] = ACTIONS(2336), - [anon_sym_u32] = ACTIONS(2336), - [anon_sym_i32] = ACTIONS(2336), - [anon_sym_u64] = ACTIONS(2336), - [anon_sym_i64] = ACTIONS(2336), - [anon_sym_u128] = ACTIONS(2336), - [anon_sym_i128] = ACTIONS(2336), - [anon_sym_isize] = ACTIONS(2336), - [anon_sym_usize] = ACTIONS(2336), - [anon_sym_f32] = ACTIONS(2336), - [anon_sym_f64] = ACTIONS(2336), - [anon_sym_bool] = ACTIONS(2336), - [anon_sym_str] = ACTIONS(2336), - [anon_sym_char] = ACTIONS(2336), - [anon_sym_DASH] = ACTIONS(2334), - [anon_sym_BANG] = ACTIONS(2334), - [anon_sym_AMP] = ACTIONS(2334), - [anon_sym_PIPE] = ACTIONS(2334), - [anon_sym_LT] = ACTIONS(2334), - [anon_sym_DOT_DOT] = ACTIONS(2334), - [anon_sym_COLON_COLON] = ACTIONS(2334), - [anon_sym_POUND] = ACTIONS(2334), - [anon_sym_SQUOTE] = ACTIONS(2336), - [anon_sym_async] = ACTIONS(2336), - [anon_sym_break] = ACTIONS(2336), - [anon_sym_const] = ACTIONS(2336), - [anon_sym_continue] = ACTIONS(2336), - [anon_sym_default] = ACTIONS(2336), - [anon_sym_enum] = ACTIONS(2336), - [anon_sym_fn] = ACTIONS(2336), - [anon_sym_for] = ACTIONS(2336), - [anon_sym_gen] = ACTIONS(2336), - [anon_sym_if] = ACTIONS(2336), - [anon_sym_impl] = ACTIONS(2336), - [anon_sym_let] = ACTIONS(2336), - [anon_sym_loop] = ACTIONS(2336), - [anon_sym_match] = ACTIONS(2336), - [anon_sym_mod] = ACTIONS(2336), - [anon_sym_pub] = ACTIONS(2336), - [anon_sym_return] = ACTIONS(2336), - [anon_sym_static] = ACTIONS(2336), - [anon_sym_struct] = ACTIONS(2336), - [anon_sym_trait] = ACTIONS(2336), - [anon_sym_type] = ACTIONS(2336), - [anon_sym_union] = ACTIONS(2336), - [anon_sym_unsafe] = ACTIONS(2336), - [anon_sym_use] = ACTIONS(2336), - [anon_sym_while] = ACTIONS(2336), - [anon_sym_extern] = ACTIONS(2336), - [anon_sym_yield] = ACTIONS(2336), - [anon_sym_move] = ACTIONS(2336), - [anon_sym_try] = ACTIONS(2336), - [sym_integer_literal] = ACTIONS(2334), - [aux_sym_string_literal_token1] = ACTIONS(2334), - [sym_char_literal] = ACTIONS(2334), - [anon_sym_true] = ACTIONS(2336), - [anon_sym_false] = ACTIONS(2336), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2336), - [sym_super] = ACTIONS(2336), - [sym_crate] = ACTIONS(2336), - [sym_metavariable] = ACTIONS(2334), - [sym__raw_string_literal_start] = ACTIONS(2334), - [sym_float_literal] = ACTIONS(2334), + [ts_builtin_sym_end] = ACTIONS(2341), + [sym_identifier] = ACTIONS(2343), + [anon_sym_SEMI] = ACTIONS(2341), + [anon_sym_macro_rules_BANG] = ACTIONS(2341), + [anon_sym_LPAREN] = ACTIONS(2341), + [anon_sym_LBRACK] = ACTIONS(2341), + [anon_sym_LBRACE] = ACTIONS(2341), + [anon_sym_RBRACE] = ACTIONS(2341), + [anon_sym_STAR] = ACTIONS(2341), + [anon_sym_u8] = ACTIONS(2343), + [anon_sym_i8] = ACTIONS(2343), + [anon_sym_u16] = ACTIONS(2343), + [anon_sym_i16] = ACTIONS(2343), + [anon_sym_u32] = ACTIONS(2343), + [anon_sym_i32] = ACTIONS(2343), + [anon_sym_u64] = ACTIONS(2343), + [anon_sym_i64] = ACTIONS(2343), + [anon_sym_u128] = ACTIONS(2343), + [anon_sym_i128] = ACTIONS(2343), + [anon_sym_isize] = ACTIONS(2343), + [anon_sym_usize] = ACTIONS(2343), + [anon_sym_f32] = ACTIONS(2343), + [anon_sym_f64] = ACTIONS(2343), + [anon_sym_bool] = ACTIONS(2343), + [anon_sym_str] = ACTIONS(2343), + [anon_sym_char] = ACTIONS(2343), + [anon_sym_DASH] = ACTIONS(2341), + [anon_sym_BANG] = ACTIONS(2341), + [anon_sym_AMP] = ACTIONS(2341), + [anon_sym_PIPE] = ACTIONS(2341), + [anon_sym_LT] = ACTIONS(2341), + [anon_sym_DOT_DOT] = ACTIONS(2341), + [anon_sym_COLON_COLON] = ACTIONS(2341), + [anon_sym_POUND] = ACTIONS(2341), + [anon_sym_SQUOTE] = ACTIONS(2343), + [anon_sym_async] = ACTIONS(2343), + [anon_sym_break] = ACTIONS(2343), + [anon_sym_const] = ACTIONS(2343), + [anon_sym_continue] = ACTIONS(2343), + [anon_sym_default] = ACTIONS(2343), + [anon_sym_enum] = ACTIONS(2343), + [anon_sym_fn] = ACTIONS(2343), + [anon_sym_for] = ACTIONS(2343), + [anon_sym_gen] = ACTIONS(2343), + [anon_sym_if] = ACTIONS(2343), + [anon_sym_impl] = ACTIONS(2343), + [anon_sym_let] = ACTIONS(2343), + [anon_sym_loop] = ACTIONS(2343), + [anon_sym_match] = ACTIONS(2343), + [anon_sym_mod] = ACTIONS(2343), + [anon_sym_pub] = ACTIONS(2343), + [anon_sym_return] = ACTIONS(2343), + [anon_sym_static] = ACTIONS(2343), + [anon_sym_struct] = ACTIONS(2343), + [anon_sym_trait] = ACTIONS(2343), + [anon_sym_type] = ACTIONS(2343), + [anon_sym_union] = ACTIONS(2343), + [anon_sym_unsafe] = ACTIONS(2343), + [anon_sym_use] = ACTIONS(2343), + [anon_sym_while] = ACTIONS(2343), + [anon_sym_extern] = ACTIONS(2343), + [anon_sym_safe] = ACTIONS(2343), + [anon_sym_yield] = ACTIONS(2343), + [anon_sym_move] = ACTIONS(2343), + [anon_sym_try] = ACTIONS(2343), + [sym_integer_literal] = ACTIONS(2341), + [aux_sym_string_literal_token1] = ACTIONS(2341), + [sym_char_literal] = ACTIONS(2341), + [anon_sym_true] = ACTIONS(2343), + [anon_sym_false] = ACTIONS(2343), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(2343), + [sym_super] = ACTIONS(2343), + [sym_crate] = ACTIONS(2343), + [sym_metavariable] = ACTIONS(2341), + [sym__raw_string_literal_start] = ACTIONS(2341), + [sym_float_literal] = ACTIONS(2341), }, [STATE(628)] = { [sym_line_comment] = STATE(628), [sym_block_comment] = STATE(628), - [ts_builtin_sym_end] = ACTIONS(2338), - [sym_identifier] = ACTIONS(2340), - [anon_sym_SEMI] = ACTIONS(2338), - [anon_sym_macro_rules_BANG] = ACTIONS(2338), - [anon_sym_LPAREN] = ACTIONS(2338), - [anon_sym_LBRACK] = ACTIONS(2338), - [anon_sym_LBRACE] = ACTIONS(2338), - [anon_sym_RBRACE] = ACTIONS(2338), - [anon_sym_STAR] = ACTIONS(2338), - [anon_sym_u8] = ACTIONS(2340), - [anon_sym_i8] = ACTIONS(2340), - [anon_sym_u16] = ACTIONS(2340), - [anon_sym_i16] = ACTIONS(2340), - [anon_sym_u32] = ACTIONS(2340), - [anon_sym_i32] = ACTIONS(2340), - [anon_sym_u64] = ACTIONS(2340), - [anon_sym_i64] = ACTIONS(2340), - [anon_sym_u128] = ACTIONS(2340), - [anon_sym_i128] = ACTIONS(2340), - [anon_sym_isize] = ACTIONS(2340), - [anon_sym_usize] = ACTIONS(2340), - [anon_sym_f32] = ACTIONS(2340), - [anon_sym_f64] = ACTIONS(2340), - [anon_sym_bool] = ACTIONS(2340), - [anon_sym_str] = ACTIONS(2340), - [anon_sym_char] = ACTIONS(2340), - [anon_sym_DASH] = ACTIONS(2338), - [anon_sym_BANG] = ACTIONS(2338), - [anon_sym_AMP] = ACTIONS(2338), - [anon_sym_PIPE] = ACTIONS(2338), - [anon_sym_LT] = ACTIONS(2338), - [anon_sym_DOT_DOT] = ACTIONS(2338), - [anon_sym_COLON_COLON] = ACTIONS(2338), - [anon_sym_POUND] = ACTIONS(2338), - [anon_sym_SQUOTE] = ACTIONS(2340), - [anon_sym_async] = ACTIONS(2340), - [anon_sym_break] = ACTIONS(2340), - [anon_sym_const] = ACTIONS(2340), - [anon_sym_continue] = ACTIONS(2340), - [anon_sym_default] = ACTIONS(2340), - [anon_sym_enum] = ACTIONS(2340), - [anon_sym_fn] = ACTIONS(2340), - [anon_sym_for] = ACTIONS(2340), - [anon_sym_gen] = ACTIONS(2340), - [anon_sym_if] = ACTIONS(2340), - [anon_sym_impl] = ACTIONS(2340), - [anon_sym_let] = ACTIONS(2340), - [anon_sym_loop] = ACTIONS(2340), - [anon_sym_match] = ACTIONS(2340), - [anon_sym_mod] = ACTIONS(2340), - [anon_sym_pub] = ACTIONS(2340), - [anon_sym_return] = ACTIONS(2340), - [anon_sym_static] = ACTIONS(2340), - [anon_sym_struct] = ACTIONS(2340), - [anon_sym_trait] = ACTIONS(2340), - [anon_sym_type] = ACTIONS(2340), - [anon_sym_union] = ACTIONS(2340), - [anon_sym_unsafe] = ACTIONS(2340), - [anon_sym_use] = ACTIONS(2340), - [anon_sym_while] = ACTIONS(2340), - [anon_sym_extern] = ACTIONS(2340), - [anon_sym_yield] = ACTIONS(2340), - [anon_sym_move] = ACTIONS(2340), - [anon_sym_try] = ACTIONS(2340), - [sym_integer_literal] = ACTIONS(2338), - [aux_sym_string_literal_token1] = ACTIONS(2338), - [sym_char_literal] = ACTIONS(2338), - [anon_sym_true] = ACTIONS(2340), - [anon_sym_false] = ACTIONS(2340), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2340), - [sym_super] = ACTIONS(2340), - [sym_crate] = ACTIONS(2340), - [sym_metavariable] = ACTIONS(2338), - [sym__raw_string_literal_start] = ACTIONS(2338), - [sym_float_literal] = ACTIONS(2338), + [ts_builtin_sym_end] = ACTIONS(2345), + [sym_identifier] = ACTIONS(2347), + [anon_sym_SEMI] = ACTIONS(2345), + [anon_sym_macro_rules_BANG] = ACTIONS(2345), + [anon_sym_LPAREN] = ACTIONS(2345), + [anon_sym_LBRACK] = ACTIONS(2345), + [anon_sym_LBRACE] = ACTIONS(2345), + [anon_sym_RBRACE] = ACTIONS(2345), + [anon_sym_STAR] = ACTIONS(2345), + [anon_sym_u8] = ACTIONS(2347), + [anon_sym_i8] = ACTIONS(2347), + [anon_sym_u16] = ACTIONS(2347), + [anon_sym_i16] = ACTIONS(2347), + [anon_sym_u32] = ACTIONS(2347), + [anon_sym_i32] = ACTIONS(2347), + [anon_sym_u64] = ACTIONS(2347), + [anon_sym_i64] = ACTIONS(2347), + [anon_sym_u128] = ACTIONS(2347), + [anon_sym_i128] = ACTIONS(2347), + [anon_sym_isize] = ACTIONS(2347), + [anon_sym_usize] = ACTIONS(2347), + [anon_sym_f32] = ACTIONS(2347), + [anon_sym_f64] = ACTIONS(2347), + [anon_sym_bool] = ACTIONS(2347), + [anon_sym_str] = ACTIONS(2347), + [anon_sym_char] = ACTIONS(2347), + [anon_sym_DASH] = ACTIONS(2345), + [anon_sym_BANG] = ACTIONS(2345), + [anon_sym_AMP] = ACTIONS(2345), + [anon_sym_PIPE] = ACTIONS(2345), + [anon_sym_LT] = ACTIONS(2345), + [anon_sym_DOT_DOT] = ACTIONS(2345), + [anon_sym_COLON_COLON] = ACTIONS(2345), + [anon_sym_POUND] = ACTIONS(2345), + [anon_sym_SQUOTE] = ACTIONS(2347), + [anon_sym_async] = ACTIONS(2347), + [anon_sym_break] = ACTIONS(2347), + [anon_sym_const] = ACTIONS(2347), + [anon_sym_continue] = ACTIONS(2347), + [anon_sym_default] = ACTIONS(2347), + [anon_sym_enum] = ACTIONS(2347), + [anon_sym_fn] = ACTIONS(2347), + [anon_sym_for] = ACTIONS(2347), + [anon_sym_gen] = ACTIONS(2347), + [anon_sym_if] = ACTIONS(2347), + [anon_sym_impl] = ACTIONS(2347), + [anon_sym_let] = ACTIONS(2347), + [anon_sym_loop] = ACTIONS(2347), + [anon_sym_match] = ACTIONS(2347), + [anon_sym_mod] = ACTIONS(2347), + [anon_sym_pub] = ACTIONS(2347), + [anon_sym_return] = ACTIONS(2347), + [anon_sym_static] = ACTIONS(2347), + [anon_sym_struct] = ACTIONS(2347), + [anon_sym_trait] = ACTIONS(2347), + [anon_sym_type] = ACTIONS(2347), + [anon_sym_union] = ACTIONS(2347), + [anon_sym_unsafe] = ACTIONS(2347), + [anon_sym_use] = ACTIONS(2347), + [anon_sym_while] = ACTIONS(2347), + [anon_sym_extern] = ACTIONS(2347), + [anon_sym_safe] = ACTIONS(2347), + [anon_sym_yield] = ACTIONS(2347), + [anon_sym_move] = ACTIONS(2347), + [anon_sym_try] = ACTIONS(2347), + [sym_integer_literal] = ACTIONS(2345), + [aux_sym_string_literal_token1] = ACTIONS(2345), + [sym_char_literal] = ACTIONS(2345), + [anon_sym_true] = ACTIONS(2347), + [anon_sym_false] = ACTIONS(2347), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(2347), + [sym_super] = ACTIONS(2347), + [sym_crate] = ACTIONS(2347), + [sym_metavariable] = ACTIONS(2345), + [sym__raw_string_literal_start] = ACTIONS(2345), + [sym_float_literal] = ACTIONS(2345), }, [STATE(629)] = { [sym_line_comment] = STATE(629), [sym_block_comment] = STATE(629), - [ts_builtin_sym_end] = ACTIONS(2342), - [sym_identifier] = ACTIONS(2344), - [anon_sym_SEMI] = ACTIONS(2342), - [anon_sym_macro_rules_BANG] = ACTIONS(2342), - [anon_sym_LPAREN] = ACTIONS(2342), - [anon_sym_LBRACK] = ACTIONS(2342), - [anon_sym_LBRACE] = ACTIONS(2342), - [anon_sym_RBRACE] = ACTIONS(2342), - [anon_sym_STAR] = ACTIONS(2342), - [anon_sym_u8] = ACTIONS(2344), - [anon_sym_i8] = ACTIONS(2344), - [anon_sym_u16] = ACTIONS(2344), - [anon_sym_i16] = ACTIONS(2344), - [anon_sym_u32] = ACTIONS(2344), - [anon_sym_i32] = ACTIONS(2344), - [anon_sym_u64] = ACTIONS(2344), - [anon_sym_i64] = ACTIONS(2344), - [anon_sym_u128] = ACTIONS(2344), - [anon_sym_i128] = ACTIONS(2344), - [anon_sym_isize] = ACTIONS(2344), - [anon_sym_usize] = ACTIONS(2344), - [anon_sym_f32] = ACTIONS(2344), - [anon_sym_f64] = ACTIONS(2344), - [anon_sym_bool] = ACTIONS(2344), - [anon_sym_str] = ACTIONS(2344), - [anon_sym_char] = ACTIONS(2344), - [anon_sym_DASH] = ACTIONS(2342), - [anon_sym_BANG] = ACTIONS(2342), - [anon_sym_AMP] = ACTIONS(2342), - [anon_sym_PIPE] = ACTIONS(2342), - [anon_sym_LT] = ACTIONS(2342), - [anon_sym_DOT_DOT] = ACTIONS(2342), - [anon_sym_COLON_COLON] = ACTIONS(2342), - [anon_sym_POUND] = ACTIONS(2342), - [anon_sym_SQUOTE] = ACTIONS(2344), - [anon_sym_async] = ACTIONS(2344), - [anon_sym_break] = ACTIONS(2344), - [anon_sym_const] = ACTIONS(2344), - [anon_sym_continue] = ACTIONS(2344), - [anon_sym_default] = ACTIONS(2344), - [anon_sym_enum] = ACTIONS(2344), - [anon_sym_fn] = ACTIONS(2344), - [anon_sym_for] = ACTIONS(2344), - [anon_sym_gen] = ACTIONS(2344), - [anon_sym_if] = ACTIONS(2344), - [anon_sym_impl] = ACTIONS(2344), - [anon_sym_let] = ACTIONS(2344), - [anon_sym_loop] = ACTIONS(2344), - [anon_sym_match] = ACTIONS(2344), - [anon_sym_mod] = ACTIONS(2344), - [anon_sym_pub] = ACTIONS(2344), - [anon_sym_return] = ACTIONS(2344), - [anon_sym_static] = ACTIONS(2344), - [anon_sym_struct] = ACTIONS(2344), - [anon_sym_trait] = ACTIONS(2344), - [anon_sym_type] = ACTIONS(2344), - [anon_sym_union] = ACTIONS(2344), - [anon_sym_unsafe] = ACTIONS(2344), - [anon_sym_use] = ACTIONS(2344), - [anon_sym_while] = ACTIONS(2344), - [anon_sym_extern] = ACTIONS(2344), - [anon_sym_yield] = ACTIONS(2344), - [anon_sym_move] = ACTIONS(2344), - [anon_sym_try] = ACTIONS(2344), - [sym_integer_literal] = ACTIONS(2342), - [aux_sym_string_literal_token1] = ACTIONS(2342), - [sym_char_literal] = ACTIONS(2342), - [anon_sym_true] = ACTIONS(2344), - [anon_sym_false] = ACTIONS(2344), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2344), - [sym_super] = ACTIONS(2344), - [sym_crate] = ACTIONS(2344), - [sym_metavariable] = ACTIONS(2342), - [sym__raw_string_literal_start] = ACTIONS(2342), - [sym_float_literal] = ACTIONS(2342), + [ts_builtin_sym_end] = ACTIONS(2349), + [sym_identifier] = ACTIONS(2351), + [anon_sym_SEMI] = ACTIONS(2349), + [anon_sym_macro_rules_BANG] = ACTIONS(2349), + [anon_sym_LPAREN] = ACTIONS(2349), + [anon_sym_LBRACK] = ACTIONS(2349), + [anon_sym_LBRACE] = ACTIONS(2349), + [anon_sym_RBRACE] = ACTIONS(2349), + [anon_sym_STAR] = ACTIONS(2349), + [anon_sym_u8] = ACTIONS(2351), + [anon_sym_i8] = ACTIONS(2351), + [anon_sym_u16] = ACTIONS(2351), + [anon_sym_i16] = ACTIONS(2351), + [anon_sym_u32] = ACTIONS(2351), + [anon_sym_i32] = ACTIONS(2351), + [anon_sym_u64] = ACTIONS(2351), + [anon_sym_i64] = ACTIONS(2351), + [anon_sym_u128] = ACTIONS(2351), + [anon_sym_i128] = ACTIONS(2351), + [anon_sym_isize] = ACTIONS(2351), + [anon_sym_usize] = ACTIONS(2351), + [anon_sym_f32] = ACTIONS(2351), + [anon_sym_f64] = ACTIONS(2351), + [anon_sym_bool] = ACTIONS(2351), + [anon_sym_str] = ACTIONS(2351), + [anon_sym_char] = ACTIONS(2351), + [anon_sym_DASH] = ACTIONS(2349), + [anon_sym_BANG] = ACTIONS(2349), + [anon_sym_AMP] = ACTIONS(2349), + [anon_sym_PIPE] = ACTIONS(2349), + [anon_sym_LT] = ACTIONS(2349), + [anon_sym_DOT_DOT] = ACTIONS(2349), + [anon_sym_COLON_COLON] = ACTIONS(2349), + [anon_sym_POUND] = ACTIONS(2349), + [anon_sym_SQUOTE] = ACTIONS(2351), + [anon_sym_async] = ACTIONS(2351), + [anon_sym_break] = ACTIONS(2351), + [anon_sym_const] = ACTIONS(2351), + [anon_sym_continue] = ACTIONS(2351), + [anon_sym_default] = ACTIONS(2351), + [anon_sym_enum] = ACTIONS(2351), + [anon_sym_fn] = ACTIONS(2351), + [anon_sym_for] = ACTIONS(2351), + [anon_sym_gen] = ACTIONS(2351), + [anon_sym_if] = ACTIONS(2351), + [anon_sym_impl] = ACTIONS(2351), + [anon_sym_let] = ACTIONS(2351), + [anon_sym_loop] = ACTIONS(2351), + [anon_sym_match] = ACTIONS(2351), + [anon_sym_mod] = ACTIONS(2351), + [anon_sym_pub] = ACTIONS(2351), + [anon_sym_return] = ACTIONS(2351), + [anon_sym_static] = ACTIONS(2351), + [anon_sym_struct] = ACTIONS(2351), + [anon_sym_trait] = ACTIONS(2351), + [anon_sym_type] = ACTIONS(2351), + [anon_sym_union] = ACTIONS(2351), + [anon_sym_unsafe] = ACTIONS(2351), + [anon_sym_use] = ACTIONS(2351), + [anon_sym_while] = ACTIONS(2351), + [anon_sym_extern] = ACTIONS(2351), + [anon_sym_safe] = ACTIONS(2351), + [anon_sym_yield] = ACTIONS(2351), + [anon_sym_move] = ACTIONS(2351), + [anon_sym_try] = ACTIONS(2351), + [sym_integer_literal] = ACTIONS(2349), + [aux_sym_string_literal_token1] = ACTIONS(2349), + [sym_char_literal] = ACTIONS(2349), + [anon_sym_true] = ACTIONS(2351), + [anon_sym_false] = ACTIONS(2351), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(2351), + [sym_super] = ACTIONS(2351), + [sym_crate] = ACTIONS(2351), + [sym_metavariable] = ACTIONS(2349), + [sym__raw_string_literal_start] = ACTIONS(2349), + [sym_float_literal] = ACTIONS(2349), }, [STATE(630)] = { [sym_line_comment] = STATE(630), [sym_block_comment] = STATE(630), - [ts_builtin_sym_end] = ACTIONS(2346), - [sym_identifier] = ACTIONS(2348), - [anon_sym_SEMI] = ACTIONS(2346), - [anon_sym_macro_rules_BANG] = ACTIONS(2346), - [anon_sym_LPAREN] = ACTIONS(2346), - [anon_sym_LBRACK] = ACTIONS(2346), - [anon_sym_LBRACE] = ACTIONS(2346), - [anon_sym_RBRACE] = ACTIONS(2346), - [anon_sym_STAR] = ACTIONS(2346), - [anon_sym_u8] = ACTIONS(2348), - [anon_sym_i8] = ACTIONS(2348), - [anon_sym_u16] = ACTIONS(2348), - [anon_sym_i16] = ACTIONS(2348), - [anon_sym_u32] = ACTIONS(2348), - [anon_sym_i32] = ACTIONS(2348), - [anon_sym_u64] = ACTIONS(2348), - [anon_sym_i64] = ACTIONS(2348), - [anon_sym_u128] = ACTIONS(2348), - [anon_sym_i128] = ACTIONS(2348), - [anon_sym_isize] = ACTIONS(2348), - [anon_sym_usize] = ACTIONS(2348), - [anon_sym_f32] = ACTIONS(2348), - [anon_sym_f64] = ACTIONS(2348), - [anon_sym_bool] = ACTIONS(2348), - [anon_sym_str] = ACTIONS(2348), - [anon_sym_char] = ACTIONS(2348), - [anon_sym_DASH] = ACTIONS(2346), - [anon_sym_BANG] = ACTIONS(2346), - [anon_sym_AMP] = ACTIONS(2346), - [anon_sym_PIPE] = ACTIONS(2346), - [anon_sym_LT] = ACTIONS(2346), - [anon_sym_DOT_DOT] = ACTIONS(2346), - [anon_sym_COLON_COLON] = ACTIONS(2346), - [anon_sym_POUND] = ACTIONS(2346), - [anon_sym_SQUOTE] = ACTIONS(2348), - [anon_sym_async] = ACTIONS(2348), - [anon_sym_break] = ACTIONS(2348), - [anon_sym_const] = ACTIONS(2348), - [anon_sym_continue] = ACTIONS(2348), - [anon_sym_default] = ACTIONS(2348), - [anon_sym_enum] = ACTIONS(2348), - [anon_sym_fn] = ACTIONS(2348), - [anon_sym_for] = ACTIONS(2348), - [anon_sym_gen] = ACTIONS(2348), - [anon_sym_if] = ACTIONS(2348), - [anon_sym_impl] = ACTIONS(2348), - [anon_sym_let] = ACTIONS(2348), - [anon_sym_loop] = ACTIONS(2348), - [anon_sym_match] = ACTIONS(2348), - [anon_sym_mod] = ACTIONS(2348), - [anon_sym_pub] = ACTIONS(2348), - [anon_sym_return] = ACTIONS(2348), - [anon_sym_static] = ACTIONS(2348), - [anon_sym_struct] = ACTIONS(2348), - [anon_sym_trait] = ACTIONS(2348), - [anon_sym_type] = ACTIONS(2348), - [anon_sym_union] = ACTIONS(2348), - [anon_sym_unsafe] = ACTIONS(2348), - [anon_sym_use] = ACTIONS(2348), - [anon_sym_while] = ACTIONS(2348), - [anon_sym_extern] = ACTIONS(2348), - [anon_sym_yield] = ACTIONS(2348), - [anon_sym_move] = ACTIONS(2348), - [anon_sym_try] = ACTIONS(2348), - [sym_integer_literal] = ACTIONS(2346), - [aux_sym_string_literal_token1] = ACTIONS(2346), - [sym_char_literal] = ACTIONS(2346), - [anon_sym_true] = ACTIONS(2348), - [anon_sym_false] = ACTIONS(2348), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2348), - [sym_super] = ACTIONS(2348), - [sym_crate] = ACTIONS(2348), - [sym_metavariable] = ACTIONS(2346), - [sym__raw_string_literal_start] = ACTIONS(2346), - [sym_float_literal] = ACTIONS(2346), + [ts_builtin_sym_end] = ACTIONS(2353), + [sym_identifier] = ACTIONS(2355), + [anon_sym_SEMI] = ACTIONS(2353), + [anon_sym_macro_rules_BANG] = ACTIONS(2353), + [anon_sym_LPAREN] = ACTIONS(2353), + [anon_sym_LBRACK] = ACTIONS(2353), + [anon_sym_LBRACE] = ACTIONS(2353), + [anon_sym_RBRACE] = ACTIONS(2353), + [anon_sym_STAR] = ACTIONS(2353), + [anon_sym_u8] = ACTIONS(2355), + [anon_sym_i8] = ACTIONS(2355), + [anon_sym_u16] = ACTIONS(2355), + [anon_sym_i16] = ACTIONS(2355), + [anon_sym_u32] = ACTIONS(2355), + [anon_sym_i32] = ACTIONS(2355), + [anon_sym_u64] = ACTIONS(2355), + [anon_sym_i64] = ACTIONS(2355), + [anon_sym_u128] = ACTIONS(2355), + [anon_sym_i128] = ACTIONS(2355), + [anon_sym_isize] = ACTIONS(2355), + [anon_sym_usize] = ACTIONS(2355), + [anon_sym_f32] = ACTIONS(2355), + [anon_sym_f64] = ACTIONS(2355), + [anon_sym_bool] = ACTIONS(2355), + [anon_sym_str] = ACTIONS(2355), + [anon_sym_char] = ACTIONS(2355), + [anon_sym_DASH] = ACTIONS(2353), + [anon_sym_BANG] = ACTIONS(2353), + [anon_sym_AMP] = ACTIONS(2353), + [anon_sym_PIPE] = ACTIONS(2353), + [anon_sym_LT] = ACTIONS(2353), + [anon_sym_DOT_DOT] = ACTIONS(2353), + [anon_sym_COLON_COLON] = ACTIONS(2353), + [anon_sym_POUND] = ACTIONS(2353), + [anon_sym_SQUOTE] = ACTIONS(2355), + [anon_sym_async] = ACTIONS(2355), + [anon_sym_break] = ACTIONS(2355), + [anon_sym_const] = ACTIONS(2355), + [anon_sym_continue] = ACTIONS(2355), + [anon_sym_default] = ACTIONS(2355), + [anon_sym_enum] = ACTIONS(2355), + [anon_sym_fn] = ACTIONS(2355), + [anon_sym_for] = ACTIONS(2355), + [anon_sym_gen] = ACTIONS(2355), + [anon_sym_if] = ACTIONS(2355), + [anon_sym_impl] = ACTIONS(2355), + [anon_sym_let] = ACTIONS(2355), + [anon_sym_loop] = ACTIONS(2355), + [anon_sym_match] = ACTIONS(2355), + [anon_sym_mod] = ACTIONS(2355), + [anon_sym_pub] = ACTIONS(2355), + [anon_sym_return] = ACTIONS(2355), + [anon_sym_static] = ACTIONS(2355), + [anon_sym_struct] = ACTIONS(2355), + [anon_sym_trait] = ACTIONS(2355), + [anon_sym_type] = ACTIONS(2355), + [anon_sym_union] = ACTIONS(2355), + [anon_sym_unsafe] = ACTIONS(2355), + [anon_sym_use] = ACTIONS(2355), + [anon_sym_while] = ACTIONS(2355), + [anon_sym_extern] = ACTIONS(2355), + [anon_sym_safe] = ACTIONS(2355), + [anon_sym_yield] = ACTIONS(2355), + [anon_sym_move] = ACTIONS(2355), + [anon_sym_try] = ACTIONS(2355), + [sym_integer_literal] = ACTIONS(2353), + [aux_sym_string_literal_token1] = ACTIONS(2353), + [sym_char_literal] = ACTIONS(2353), + [anon_sym_true] = ACTIONS(2355), + [anon_sym_false] = ACTIONS(2355), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(2355), + [sym_super] = ACTIONS(2355), + [sym_crate] = ACTIONS(2355), + [sym_metavariable] = ACTIONS(2353), + [sym__raw_string_literal_start] = ACTIONS(2353), + [sym_float_literal] = ACTIONS(2353), }, [STATE(631)] = { [sym_line_comment] = STATE(631), [sym_block_comment] = STATE(631), - [ts_builtin_sym_end] = ACTIONS(2350), - [sym_identifier] = ACTIONS(2352), - [anon_sym_SEMI] = ACTIONS(2350), - [anon_sym_macro_rules_BANG] = ACTIONS(2350), - [anon_sym_LPAREN] = ACTIONS(2350), - [anon_sym_LBRACK] = ACTIONS(2350), - [anon_sym_LBRACE] = ACTIONS(2350), - [anon_sym_RBRACE] = ACTIONS(2350), - [anon_sym_STAR] = ACTIONS(2350), - [anon_sym_u8] = ACTIONS(2352), - [anon_sym_i8] = ACTIONS(2352), - [anon_sym_u16] = ACTIONS(2352), - [anon_sym_i16] = ACTIONS(2352), - [anon_sym_u32] = ACTIONS(2352), - [anon_sym_i32] = ACTIONS(2352), - [anon_sym_u64] = ACTIONS(2352), - [anon_sym_i64] = ACTIONS(2352), - [anon_sym_u128] = ACTIONS(2352), - [anon_sym_i128] = ACTIONS(2352), - [anon_sym_isize] = ACTIONS(2352), - [anon_sym_usize] = ACTIONS(2352), - [anon_sym_f32] = ACTIONS(2352), - [anon_sym_f64] = ACTIONS(2352), - [anon_sym_bool] = ACTIONS(2352), - [anon_sym_str] = ACTIONS(2352), - [anon_sym_char] = ACTIONS(2352), - [anon_sym_DASH] = ACTIONS(2350), - [anon_sym_BANG] = ACTIONS(2350), - [anon_sym_AMP] = ACTIONS(2350), - [anon_sym_PIPE] = ACTIONS(2350), - [anon_sym_LT] = ACTIONS(2350), - [anon_sym_DOT_DOT] = ACTIONS(2350), - [anon_sym_COLON_COLON] = ACTIONS(2350), - [anon_sym_POUND] = ACTIONS(2350), - [anon_sym_SQUOTE] = ACTIONS(2352), - [anon_sym_async] = ACTIONS(2352), - [anon_sym_break] = ACTIONS(2352), - [anon_sym_const] = ACTIONS(2352), - [anon_sym_continue] = ACTIONS(2352), - [anon_sym_default] = ACTIONS(2352), - [anon_sym_enum] = ACTIONS(2352), - [anon_sym_fn] = ACTIONS(2352), - [anon_sym_for] = ACTIONS(2352), - [anon_sym_gen] = ACTIONS(2352), - [anon_sym_if] = ACTIONS(2352), - [anon_sym_impl] = ACTIONS(2352), - [anon_sym_let] = ACTIONS(2352), - [anon_sym_loop] = ACTIONS(2352), - [anon_sym_match] = ACTIONS(2352), - [anon_sym_mod] = ACTIONS(2352), - [anon_sym_pub] = ACTIONS(2352), - [anon_sym_return] = ACTIONS(2352), - [anon_sym_static] = ACTIONS(2352), - [anon_sym_struct] = ACTIONS(2352), - [anon_sym_trait] = ACTIONS(2352), - [anon_sym_type] = ACTIONS(2352), - [anon_sym_union] = ACTIONS(2352), - [anon_sym_unsafe] = ACTIONS(2352), - [anon_sym_use] = ACTIONS(2352), - [anon_sym_while] = ACTIONS(2352), - [anon_sym_extern] = ACTIONS(2352), - [anon_sym_yield] = ACTIONS(2352), - [anon_sym_move] = ACTIONS(2352), - [anon_sym_try] = ACTIONS(2352), - [sym_integer_literal] = ACTIONS(2350), - [aux_sym_string_literal_token1] = ACTIONS(2350), - [sym_char_literal] = ACTIONS(2350), - [anon_sym_true] = ACTIONS(2352), - [anon_sym_false] = ACTIONS(2352), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2352), - [sym_super] = ACTIONS(2352), - [sym_crate] = ACTIONS(2352), - [sym_metavariable] = ACTIONS(2350), - [sym__raw_string_literal_start] = ACTIONS(2350), - [sym_float_literal] = ACTIONS(2350), + [ts_builtin_sym_end] = ACTIONS(2357), + [sym_identifier] = ACTIONS(2359), + [anon_sym_SEMI] = ACTIONS(2357), + [anon_sym_macro_rules_BANG] = ACTIONS(2357), + [anon_sym_LPAREN] = ACTIONS(2357), + [anon_sym_LBRACK] = ACTIONS(2357), + [anon_sym_LBRACE] = ACTIONS(2357), + [anon_sym_RBRACE] = ACTIONS(2357), + [anon_sym_STAR] = ACTIONS(2357), + [anon_sym_u8] = ACTIONS(2359), + [anon_sym_i8] = ACTIONS(2359), + [anon_sym_u16] = ACTIONS(2359), + [anon_sym_i16] = ACTIONS(2359), + [anon_sym_u32] = ACTIONS(2359), + [anon_sym_i32] = ACTIONS(2359), + [anon_sym_u64] = ACTIONS(2359), + [anon_sym_i64] = ACTIONS(2359), + [anon_sym_u128] = ACTIONS(2359), + [anon_sym_i128] = ACTIONS(2359), + [anon_sym_isize] = ACTIONS(2359), + [anon_sym_usize] = ACTIONS(2359), + [anon_sym_f32] = ACTIONS(2359), + [anon_sym_f64] = ACTIONS(2359), + [anon_sym_bool] = ACTIONS(2359), + [anon_sym_str] = ACTIONS(2359), + [anon_sym_char] = ACTIONS(2359), + [anon_sym_DASH] = ACTIONS(2357), + [anon_sym_BANG] = ACTIONS(2357), + [anon_sym_AMP] = ACTIONS(2357), + [anon_sym_PIPE] = ACTIONS(2357), + [anon_sym_LT] = ACTIONS(2357), + [anon_sym_DOT_DOT] = ACTIONS(2357), + [anon_sym_COLON_COLON] = ACTIONS(2357), + [anon_sym_POUND] = ACTIONS(2357), + [anon_sym_SQUOTE] = ACTIONS(2359), + [anon_sym_async] = ACTIONS(2359), + [anon_sym_break] = ACTIONS(2359), + [anon_sym_const] = ACTIONS(2359), + [anon_sym_continue] = ACTIONS(2359), + [anon_sym_default] = ACTIONS(2359), + [anon_sym_enum] = ACTIONS(2359), + [anon_sym_fn] = ACTIONS(2359), + [anon_sym_for] = ACTIONS(2359), + [anon_sym_gen] = ACTIONS(2359), + [anon_sym_if] = ACTIONS(2359), + [anon_sym_impl] = ACTIONS(2359), + [anon_sym_let] = ACTIONS(2359), + [anon_sym_loop] = ACTIONS(2359), + [anon_sym_match] = ACTIONS(2359), + [anon_sym_mod] = ACTIONS(2359), + [anon_sym_pub] = ACTIONS(2359), + [anon_sym_return] = ACTIONS(2359), + [anon_sym_static] = ACTIONS(2359), + [anon_sym_struct] = ACTIONS(2359), + [anon_sym_trait] = ACTIONS(2359), + [anon_sym_type] = ACTIONS(2359), + [anon_sym_union] = ACTIONS(2359), + [anon_sym_unsafe] = ACTIONS(2359), + [anon_sym_use] = ACTIONS(2359), + [anon_sym_while] = ACTIONS(2359), + [anon_sym_extern] = ACTIONS(2359), + [anon_sym_safe] = ACTIONS(2359), + [anon_sym_yield] = ACTIONS(2359), + [anon_sym_move] = ACTIONS(2359), + [anon_sym_try] = ACTIONS(2359), + [sym_integer_literal] = ACTIONS(2357), + [aux_sym_string_literal_token1] = ACTIONS(2357), + [sym_char_literal] = ACTIONS(2357), + [anon_sym_true] = ACTIONS(2359), + [anon_sym_false] = ACTIONS(2359), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(2359), + [sym_super] = ACTIONS(2359), + [sym_crate] = ACTIONS(2359), + [sym_metavariable] = ACTIONS(2357), + [sym__raw_string_literal_start] = ACTIONS(2357), + [sym_float_literal] = ACTIONS(2357), }, [STATE(632)] = { [sym_line_comment] = STATE(632), [sym_block_comment] = STATE(632), - [ts_builtin_sym_end] = ACTIONS(2354), - [sym_identifier] = ACTIONS(2356), - [anon_sym_SEMI] = ACTIONS(2354), - [anon_sym_macro_rules_BANG] = ACTIONS(2354), - [anon_sym_LPAREN] = ACTIONS(2354), - [anon_sym_LBRACK] = ACTIONS(2354), - [anon_sym_LBRACE] = ACTIONS(2354), - [anon_sym_RBRACE] = ACTIONS(2354), - [anon_sym_STAR] = ACTIONS(2354), - [anon_sym_u8] = ACTIONS(2356), - [anon_sym_i8] = ACTIONS(2356), - [anon_sym_u16] = ACTIONS(2356), - [anon_sym_i16] = ACTIONS(2356), - [anon_sym_u32] = ACTIONS(2356), - [anon_sym_i32] = ACTIONS(2356), - [anon_sym_u64] = ACTIONS(2356), - [anon_sym_i64] = ACTIONS(2356), - [anon_sym_u128] = ACTIONS(2356), - [anon_sym_i128] = ACTIONS(2356), - [anon_sym_isize] = ACTIONS(2356), - [anon_sym_usize] = ACTIONS(2356), - [anon_sym_f32] = ACTIONS(2356), - [anon_sym_f64] = ACTIONS(2356), - [anon_sym_bool] = ACTIONS(2356), - [anon_sym_str] = ACTIONS(2356), - [anon_sym_char] = ACTIONS(2356), - [anon_sym_DASH] = ACTIONS(2354), - [anon_sym_BANG] = ACTIONS(2354), - [anon_sym_AMP] = ACTIONS(2354), - [anon_sym_PIPE] = ACTIONS(2354), - [anon_sym_LT] = ACTIONS(2354), - [anon_sym_DOT_DOT] = ACTIONS(2354), - [anon_sym_COLON_COLON] = ACTIONS(2354), - [anon_sym_POUND] = ACTIONS(2354), - [anon_sym_SQUOTE] = ACTIONS(2356), - [anon_sym_async] = ACTIONS(2356), - [anon_sym_break] = ACTIONS(2356), - [anon_sym_const] = ACTIONS(2356), - [anon_sym_continue] = ACTIONS(2356), - [anon_sym_default] = ACTIONS(2356), - [anon_sym_enum] = ACTIONS(2356), - [anon_sym_fn] = ACTIONS(2356), - [anon_sym_for] = ACTIONS(2356), - [anon_sym_gen] = ACTIONS(2356), - [anon_sym_if] = ACTIONS(2356), - [anon_sym_impl] = ACTIONS(2356), - [anon_sym_let] = ACTIONS(2356), - [anon_sym_loop] = ACTIONS(2356), - [anon_sym_match] = ACTIONS(2356), - [anon_sym_mod] = ACTIONS(2356), - [anon_sym_pub] = ACTIONS(2356), - [anon_sym_return] = ACTIONS(2356), - [anon_sym_static] = ACTIONS(2356), - [anon_sym_struct] = ACTIONS(2356), - [anon_sym_trait] = ACTIONS(2356), - [anon_sym_type] = ACTIONS(2356), - [anon_sym_union] = ACTIONS(2356), - [anon_sym_unsafe] = ACTIONS(2356), - [anon_sym_use] = ACTIONS(2356), - [anon_sym_while] = ACTIONS(2356), - [anon_sym_extern] = ACTIONS(2356), - [anon_sym_yield] = ACTIONS(2356), - [anon_sym_move] = ACTIONS(2356), - [anon_sym_try] = ACTIONS(2356), - [sym_integer_literal] = ACTIONS(2354), - [aux_sym_string_literal_token1] = ACTIONS(2354), - [sym_char_literal] = ACTIONS(2354), - [anon_sym_true] = ACTIONS(2356), - [anon_sym_false] = ACTIONS(2356), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2356), - [sym_super] = ACTIONS(2356), - [sym_crate] = ACTIONS(2356), - [sym_metavariable] = ACTIONS(2354), - [sym__raw_string_literal_start] = ACTIONS(2354), - [sym_float_literal] = ACTIONS(2354), + [ts_builtin_sym_end] = ACTIONS(2361), + [sym_identifier] = ACTIONS(2363), + [anon_sym_SEMI] = ACTIONS(2361), + [anon_sym_macro_rules_BANG] = ACTIONS(2361), + [anon_sym_LPAREN] = ACTIONS(2361), + [anon_sym_LBRACK] = ACTIONS(2361), + [anon_sym_LBRACE] = ACTIONS(2361), + [anon_sym_RBRACE] = ACTIONS(2361), + [anon_sym_STAR] = ACTIONS(2361), + [anon_sym_u8] = ACTIONS(2363), + [anon_sym_i8] = ACTIONS(2363), + [anon_sym_u16] = ACTIONS(2363), + [anon_sym_i16] = ACTIONS(2363), + [anon_sym_u32] = ACTIONS(2363), + [anon_sym_i32] = ACTIONS(2363), + [anon_sym_u64] = ACTIONS(2363), + [anon_sym_i64] = ACTIONS(2363), + [anon_sym_u128] = ACTIONS(2363), + [anon_sym_i128] = ACTIONS(2363), + [anon_sym_isize] = ACTIONS(2363), + [anon_sym_usize] = ACTIONS(2363), + [anon_sym_f32] = ACTIONS(2363), + [anon_sym_f64] = ACTIONS(2363), + [anon_sym_bool] = ACTIONS(2363), + [anon_sym_str] = ACTIONS(2363), + [anon_sym_char] = ACTIONS(2363), + [anon_sym_DASH] = ACTIONS(2361), + [anon_sym_BANG] = ACTIONS(2361), + [anon_sym_AMP] = ACTIONS(2361), + [anon_sym_PIPE] = ACTIONS(2361), + [anon_sym_LT] = ACTIONS(2361), + [anon_sym_DOT_DOT] = ACTIONS(2361), + [anon_sym_COLON_COLON] = ACTIONS(2361), + [anon_sym_POUND] = ACTIONS(2361), + [anon_sym_SQUOTE] = ACTIONS(2363), + [anon_sym_async] = ACTIONS(2363), + [anon_sym_break] = ACTIONS(2363), + [anon_sym_const] = ACTIONS(2363), + [anon_sym_continue] = ACTIONS(2363), + [anon_sym_default] = ACTIONS(2363), + [anon_sym_enum] = ACTIONS(2363), + [anon_sym_fn] = ACTIONS(2363), + [anon_sym_for] = ACTIONS(2363), + [anon_sym_gen] = ACTIONS(2363), + [anon_sym_if] = ACTIONS(2363), + [anon_sym_impl] = ACTIONS(2363), + [anon_sym_let] = ACTIONS(2363), + [anon_sym_loop] = ACTIONS(2363), + [anon_sym_match] = ACTIONS(2363), + [anon_sym_mod] = ACTIONS(2363), + [anon_sym_pub] = ACTIONS(2363), + [anon_sym_return] = ACTIONS(2363), + [anon_sym_static] = ACTIONS(2363), + [anon_sym_struct] = ACTIONS(2363), + [anon_sym_trait] = ACTIONS(2363), + [anon_sym_type] = ACTIONS(2363), + [anon_sym_union] = ACTIONS(2363), + [anon_sym_unsafe] = ACTIONS(2363), + [anon_sym_use] = ACTIONS(2363), + [anon_sym_while] = ACTIONS(2363), + [anon_sym_extern] = ACTIONS(2363), + [anon_sym_safe] = ACTIONS(2363), + [anon_sym_yield] = ACTIONS(2363), + [anon_sym_move] = ACTIONS(2363), + [anon_sym_try] = ACTIONS(2363), + [sym_integer_literal] = ACTIONS(2361), + [aux_sym_string_literal_token1] = ACTIONS(2361), + [sym_char_literal] = ACTIONS(2361), + [anon_sym_true] = ACTIONS(2363), + [anon_sym_false] = ACTIONS(2363), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(2363), + [sym_super] = ACTIONS(2363), + [sym_crate] = ACTIONS(2363), + [sym_metavariable] = ACTIONS(2361), + [sym__raw_string_literal_start] = ACTIONS(2361), + [sym_float_literal] = ACTIONS(2361), }, [STATE(633)] = { [sym_line_comment] = STATE(633), [sym_block_comment] = STATE(633), - [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_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_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(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [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), + [ts_builtin_sym_end] = ACTIONS(2365), + [sym_identifier] = ACTIONS(2367), + [anon_sym_SEMI] = ACTIONS(2365), + [anon_sym_macro_rules_BANG] = ACTIONS(2365), + [anon_sym_LPAREN] = ACTIONS(2365), + [anon_sym_LBRACK] = ACTIONS(2365), + [anon_sym_LBRACE] = ACTIONS(2365), + [anon_sym_RBRACE] = ACTIONS(2365), + [anon_sym_STAR] = ACTIONS(2365), + [anon_sym_u8] = ACTIONS(2367), + [anon_sym_i8] = ACTIONS(2367), + [anon_sym_u16] = ACTIONS(2367), + [anon_sym_i16] = ACTIONS(2367), + [anon_sym_u32] = ACTIONS(2367), + [anon_sym_i32] = ACTIONS(2367), + [anon_sym_u64] = ACTIONS(2367), + [anon_sym_i64] = ACTIONS(2367), + [anon_sym_u128] = ACTIONS(2367), + [anon_sym_i128] = ACTIONS(2367), + [anon_sym_isize] = ACTIONS(2367), + [anon_sym_usize] = ACTIONS(2367), + [anon_sym_f32] = ACTIONS(2367), + [anon_sym_f64] = ACTIONS(2367), + [anon_sym_bool] = ACTIONS(2367), + [anon_sym_str] = ACTIONS(2367), + [anon_sym_char] = ACTIONS(2367), + [anon_sym_DASH] = ACTIONS(2365), + [anon_sym_BANG] = ACTIONS(2365), + [anon_sym_AMP] = ACTIONS(2365), + [anon_sym_PIPE] = ACTIONS(2365), + [anon_sym_LT] = ACTIONS(2365), + [anon_sym_DOT_DOT] = ACTIONS(2365), + [anon_sym_COLON_COLON] = ACTIONS(2365), + [anon_sym_POUND] = ACTIONS(2365), + [anon_sym_SQUOTE] = ACTIONS(2367), + [anon_sym_async] = ACTIONS(2367), + [anon_sym_break] = ACTIONS(2367), + [anon_sym_const] = ACTIONS(2367), + [anon_sym_continue] = ACTIONS(2367), + [anon_sym_default] = ACTIONS(2367), + [anon_sym_enum] = ACTIONS(2367), + [anon_sym_fn] = ACTIONS(2367), + [anon_sym_for] = ACTIONS(2367), + [anon_sym_gen] = ACTIONS(2367), + [anon_sym_if] = ACTIONS(2367), + [anon_sym_impl] = ACTIONS(2367), + [anon_sym_let] = ACTIONS(2367), + [anon_sym_loop] = ACTIONS(2367), + [anon_sym_match] = ACTIONS(2367), + [anon_sym_mod] = ACTIONS(2367), + [anon_sym_pub] = ACTIONS(2367), + [anon_sym_return] = ACTIONS(2367), + [anon_sym_static] = ACTIONS(2367), + [anon_sym_struct] = ACTIONS(2367), + [anon_sym_trait] = ACTIONS(2367), + [anon_sym_type] = ACTIONS(2367), + [anon_sym_union] = ACTIONS(2367), + [anon_sym_unsafe] = ACTIONS(2367), + [anon_sym_use] = ACTIONS(2367), + [anon_sym_while] = ACTIONS(2367), + [anon_sym_extern] = ACTIONS(2367), + [anon_sym_safe] = ACTIONS(2367), + [anon_sym_yield] = ACTIONS(2367), + [anon_sym_move] = ACTIONS(2367), + [anon_sym_try] = ACTIONS(2367), + [sym_integer_literal] = ACTIONS(2365), + [aux_sym_string_literal_token1] = ACTIONS(2365), + [sym_char_literal] = ACTIONS(2365), + [anon_sym_true] = ACTIONS(2367), + [anon_sym_false] = ACTIONS(2367), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(2367), + [sym_super] = ACTIONS(2367), + [sym_crate] = ACTIONS(2367), + [sym_metavariable] = ACTIONS(2365), + [sym__raw_string_literal_start] = ACTIONS(2365), + [sym_float_literal] = ACTIONS(2365), }, [STATE(634)] = { + [sym_bracketed_type] = STATE(3581), + [sym_generic_type] = STATE(3475), + [sym_generic_type_with_turbofish] = STATE(3233), + [sym_macro_invocation] = STATE(2163), + [sym_scoped_identifier] = STATE(2032), + [sym_scoped_type_identifier] = STATE(2893), + [sym_const_block] = STATE(2163), + [sym_closure_expression] = STATE(3126), + [sym_closure_parameters] = STATE(220), + [sym__pattern] = STATE(2803), + [sym_generic_pattern] = STATE(2163), + [sym_tuple_pattern] = STATE(2163), + [sym_slice_pattern] = STATE(2163), + [sym_tuple_struct_pattern] = STATE(2163), + [sym_struct_pattern] = STATE(2163), + [sym_remaining_field_pattern] = STATE(2163), + [sym_mut_pattern] = STATE(2163), + [sym_range_pattern] = STATE(2163), + [sym_ref_pattern] = STATE(2163), + [sym_captured_pattern] = STATE(2163), + [sym_reference_pattern] = STATE(2163), + [sym_or_pattern] = STATE(2163), + [sym__literal_pattern] = STATE(2098), + [sym_negative_literal] = STATE(2095), + [sym_string_literal] = STATE(2095), + [sym_raw_string_literal] = STATE(2095), + [sym_boolean_literal] = STATE(2095), [sym_line_comment] = STATE(634), [sym_block_comment] = STATE(634), - [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_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_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(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [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), + [sym_identifier] = ACTIONS(2369), + [anon_sym_LPAREN] = ACTIONS(2371), + [anon_sym_RPAREN] = ACTIONS(2373), + [anon_sym_LBRACK] = 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(1246), + [anon_sym_AMP] = ACTIONS(2379), + [anon_sym_PIPE] = ACTIONS(1426), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1428), + [anon_sym_DOT_DOT] = ACTIONS(1256), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1260), + [anon_sym_COMMA] = ACTIONS(2381), + [anon_sym_COLON_COLON] = ACTIONS(2383), + [anon_sym_const] = ACTIONS(2385), + [anon_sym_default] = ACTIONS(2387), + [anon_sym_gen] = ACTIONS(2387), + [anon_sym_static] = ACTIONS(1432), + [anon_sym_union] = ACTIONS(2387), + [anon_sym_ref] = ACTIONS(1286), + [sym_mutable_specifier] = ACTIONS(1434), + [anon_sym_move] = ACTIONS(1436), + [sym_integer_literal] = ACTIONS(1292), + [aux_sym_string_literal_token1] = ACTIONS(1294), + [sym_char_literal] = ACTIONS(1292), + [anon_sym_true] = ACTIONS(1296), + [anon_sym_false] = ACTIONS(1296), + [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(2391), + [sym__raw_string_literal_start] = ACTIONS(1304), + [sym_float_literal] = ACTIONS(1292), }, [STATE(635)] = { + [sym_empty_statement] = STATE(1108), + [sym_macro_definition] = STATE(1108), + [sym_attribute_item] = STATE(1108), + [sym_inner_attribute_item] = STATE(1108), + [sym_mod_item] = STATE(1108), + [sym_foreign_mod_item] = STATE(1108), + [sym_struct_item] = STATE(1108), + [sym_union_item] = STATE(1108), + [sym_enum_item] = STATE(1108), + [sym_extern_crate_declaration] = STATE(1108), + [sym_const_item] = STATE(1108), + [sym_static_item] = STATE(1108), + [sym_type_item] = STATE(1108), + [sym_function_item] = STATE(1108), + [sym_function_signature_item] = STATE(1108), + [sym_function_modifiers] = STATE(3750), + [sym_impl_item] = STATE(1108), + [sym_trait_item] = STATE(1108), + [sym_associated_type] = STATE(1108), + [sym_let_declaration] = STATE(1108), + [sym_use_declaration] = STATE(1108), + [sym_extern_modifier] = STATE(2194), + [sym_visibility_modifier] = STATE(2003), + [sym_bracketed_type] = STATE(3467), + [sym_generic_type_with_turbofish] = STATE(3493), + [sym_macro_invocation] = STATE(1108), + [sym_scoped_identifier] = STATE(3180), [sym_line_comment] = STATE(635), [sym_block_comment] = STATE(635), - [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_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_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(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [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), + [aux_sym_declaration_list_repeat1] = STATE(645), + [aux_sym_function_modifiers_repeat1] = STATE(2244), + [sym_identifier] = ACTIONS(1857), + [anon_sym_SEMI] = ACTIONS(1859), + [anon_sym_macro_rules_BANG] = ACTIONS(1861), + [anon_sym_RBRACE] = ACTIONS(2393), + [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_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1867), + [anon_sym_POUND] = ACTIONS(1869), + [anon_sym_async] = ACTIONS(1270), + [anon_sym_const] = ACTIONS(1871), + [anon_sym_default] = ACTIONS(1873), + [anon_sym_enum] = ACTIONS(1875), + [anon_sym_fn] = ACTIONS(1877), + [anon_sym_gen] = ACTIONS(1879), + [anon_sym_impl] = ACTIONS(1881), + [anon_sym_let] = ACTIONS(1883), + [anon_sym_mod] = ACTIONS(1885), + [anon_sym_pub] = ACTIONS(69), + [anon_sym_static] = ACTIONS(1887), + [anon_sym_struct] = ACTIONS(1889), + [anon_sym_trait] = ACTIONS(1891), + [anon_sym_type] = ACTIONS(1893), + [anon_sym_union] = ACTIONS(1895), + [anon_sym_unsafe] = ACTIONS(1897), + [anon_sym_use] = ACTIONS(1899), + [anon_sym_extern] = ACTIONS(1901), + [anon_sym_safe] = ACTIONS(1903), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1905), + [sym_super] = ACTIONS(1905), + [sym_crate] = ACTIONS(1907), + [sym_metavariable] = ACTIONS(1909), }, [STATE(636)] = { [sym_line_comment] = STATE(636), [sym_block_comment] = STATE(636), - [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_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_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(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [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), + [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_safe] = 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), }, [STATE(637)] = { [sym_line_comment] = STATE(637), [sym_block_comment] = STATE(637), - [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_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_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(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [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(638)] = { - [sym_line_comment] = STATE(638), - [sym_block_comment] = STATE(638), - [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_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_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(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [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(639)] = { - [sym_line_comment] = STATE(639), - [sym_block_comment] = STATE(639), - [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_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_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(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [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(640)] = { - [sym_line_comment] = STATE(640), - [sym_block_comment] = STATE(640), - [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_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_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(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [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(641)] = { - [sym_empty_statement] = STATE(1090), - [sym_macro_definition] = STATE(1090), - [sym_attribute_item] = STATE(1090), - [sym_inner_attribute_item] = STATE(1090), - [sym_mod_item] = STATE(1090), - [sym_foreign_mod_item] = STATE(1090), - [sym_struct_item] = STATE(1090), - [sym_union_item] = STATE(1090), - [sym_enum_item] = STATE(1090), - [sym_extern_crate_declaration] = STATE(1090), - [sym_const_item] = STATE(1090), - [sym_static_item] = STATE(1090), - [sym_type_item] = STATE(1090), - [sym_function_item] = STATE(1090), - [sym_function_signature_item] = STATE(1090), - [sym_function_modifiers] = STATE(3720), - [sym_impl_item] = STATE(1090), - [sym_trait_item] = STATE(1090), - [sym_associated_type] = STATE(1090), - [sym_let_declaration] = STATE(1090), - [sym_use_declaration] = STATE(1090), - [sym_extern_modifier] = STATE(2229), - [sym_visibility_modifier] = STATE(1997), - [sym_bracketed_type] = STATE(3441), - [sym_generic_type_with_turbofish] = STATE(3467), - [sym_macro_invocation] = STATE(1090), - [sym_scoped_identifier] = STATE(3306), - [sym_line_comment] = STATE(641), - [sym_block_comment] = STATE(641), - [aux_sym_declaration_list_repeat1] = STATE(641), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(2390), - [anon_sym_SEMI] = ACTIONS(2393), - [anon_sym_macro_rules_BANG] = ACTIONS(2396), + [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), @@ -83181,1900 +83250,2604 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(2401), [anon_sym_str] = ACTIONS(2401), [anon_sym_char] = ACTIONS(2401), - [anon_sym_LT] = ACTIONS(2404), + [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_safe] = 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), + }, + [STATE(638)] = { + [sym_line_comment] = STATE(638), + [sym_block_comment] = STATE(638), + [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_safe] = 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), + }, + [STATE(639)] = { + [sym_line_comment] = STATE(639), + [sym_block_comment] = STATE(639), + [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(2410), + [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_safe] = 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), + }, + [STATE(640)] = { + [sym_line_comment] = STATE(640), + [sym_block_comment] = STATE(640), + [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_const] = ACTIONS(2416), - [anon_sym_default] = ACTIONS(2419), - [anon_sym_enum] = ACTIONS(2422), - [anon_sym_fn] = ACTIONS(2425), - [anon_sym_gen] = ACTIONS(2428), - [anon_sym_impl] = ACTIONS(2431), - [anon_sym_let] = ACTIONS(2434), - [anon_sym_mod] = ACTIONS(2437), - [anon_sym_pub] = ACTIONS(2440), - [anon_sym_static] = ACTIONS(2443), - [anon_sym_struct] = ACTIONS(2446), - [anon_sym_trait] = ACTIONS(2449), - [anon_sym_type] = ACTIONS(2452), - [anon_sym_union] = ACTIONS(2455), - [anon_sym_unsafe] = ACTIONS(2458), - [anon_sym_use] = ACTIONS(2461), - [anon_sym_extern] = ACTIONS(2464), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2467), - [sym_super] = ACTIONS(2467), - [sym_crate] = ACTIONS(2470), - [sym_metavariable] = ACTIONS(2473), + [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_safe] = 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), + }, + [STATE(641)] = { + [sym_line_comment] = STATE(641), + [sym_block_comment] = STATE(641), + [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_safe] = 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), }, [STATE(642)] = { [sym_line_comment] = STATE(642), [sym_block_comment] = STATE(642), - [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_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_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(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [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), + [ts_builtin_sym_end] = ACTIONS(2419), + [sym_identifier] = ACTIONS(2421), + [anon_sym_SEMI] = ACTIONS(2419), + [anon_sym_macro_rules_BANG] = ACTIONS(2419), + [anon_sym_LPAREN] = ACTIONS(2419), + [anon_sym_LBRACK] = ACTIONS(2419), + [anon_sym_LBRACE] = ACTIONS(2419), + [anon_sym_RBRACE] = ACTIONS(2419), + [anon_sym_STAR] = ACTIONS(2419), + [anon_sym_u8] = ACTIONS(2421), + [anon_sym_i8] = ACTIONS(2421), + [anon_sym_u16] = ACTIONS(2421), + [anon_sym_i16] = ACTIONS(2421), + [anon_sym_u32] = ACTIONS(2421), + [anon_sym_i32] = ACTIONS(2421), + [anon_sym_u64] = ACTIONS(2421), + [anon_sym_i64] = ACTIONS(2421), + [anon_sym_u128] = ACTIONS(2421), + [anon_sym_i128] = ACTIONS(2421), + [anon_sym_isize] = ACTIONS(2421), + [anon_sym_usize] = ACTIONS(2421), + [anon_sym_f32] = ACTIONS(2421), + [anon_sym_f64] = ACTIONS(2421), + [anon_sym_bool] = ACTIONS(2421), + [anon_sym_str] = ACTIONS(2421), + [anon_sym_char] = ACTIONS(2421), + [anon_sym_DASH] = ACTIONS(2419), + [anon_sym_BANG] = ACTIONS(2419), + [anon_sym_AMP] = ACTIONS(2419), + [anon_sym_PIPE] = ACTIONS(2419), + [anon_sym_LT] = ACTIONS(2419), + [anon_sym_DOT_DOT] = ACTIONS(2419), + [anon_sym_COLON_COLON] = ACTIONS(2419), + [anon_sym_POUND] = ACTIONS(2419), + [anon_sym_SQUOTE] = ACTIONS(2421), + [anon_sym_async] = ACTIONS(2421), + [anon_sym_break] = ACTIONS(2421), + [anon_sym_const] = ACTIONS(2421), + [anon_sym_continue] = ACTIONS(2421), + [anon_sym_default] = ACTIONS(2421), + [anon_sym_enum] = ACTIONS(2421), + [anon_sym_fn] = ACTIONS(2421), + [anon_sym_for] = ACTIONS(2421), + [anon_sym_gen] = ACTIONS(2421), + [anon_sym_if] = ACTIONS(2421), + [anon_sym_impl] = ACTIONS(2421), + [anon_sym_let] = ACTIONS(2421), + [anon_sym_loop] = ACTIONS(2421), + [anon_sym_match] = ACTIONS(2421), + [anon_sym_mod] = ACTIONS(2421), + [anon_sym_pub] = ACTIONS(2421), + [anon_sym_return] = ACTIONS(2421), + [anon_sym_static] = ACTIONS(2421), + [anon_sym_struct] = ACTIONS(2421), + [anon_sym_trait] = ACTIONS(2421), + [anon_sym_type] = ACTIONS(2421), + [anon_sym_union] = ACTIONS(2421), + [anon_sym_unsafe] = ACTIONS(2421), + [anon_sym_use] = ACTIONS(2421), + [anon_sym_while] = ACTIONS(2421), + [anon_sym_extern] = ACTIONS(2421), + [anon_sym_safe] = ACTIONS(2421), + [anon_sym_yield] = ACTIONS(2421), + [anon_sym_move] = ACTIONS(2421), + [anon_sym_try] = ACTIONS(2421), + [sym_integer_literal] = ACTIONS(2419), + [aux_sym_string_literal_token1] = ACTIONS(2419), + [sym_char_literal] = ACTIONS(2419), + [anon_sym_true] = ACTIONS(2421), + [anon_sym_false] = ACTIONS(2421), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(2421), + [sym_super] = ACTIONS(2421), + [sym_crate] = ACTIONS(2421), + [sym_metavariable] = ACTIONS(2419), + [sym__raw_string_literal_start] = ACTIONS(2419), + [sym_float_literal] = ACTIONS(2419), }, [STATE(643)] = { [sym_line_comment] = STATE(643), [sym_block_comment] = STATE(643), - [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_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_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(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [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), + [ts_builtin_sym_end] = ACTIONS(2423), + [sym_identifier] = ACTIONS(2425), + [anon_sym_SEMI] = ACTIONS(2423), + [anon_sym_macro_rules_BANG] = ACTIONS(2423), + [anon_sym_LPAREN] = ACTIONS(2423), + [anon_sym_LBRACK] = ACTIONS(2423), + [anon_sym_LBRACE] = ACTIONS(2423), + [anon_sym_RBRACE] = ACTIONS(2423), + [anon_sym_STAR] = ACTIONS(2423), + [anon_sym_u8] = ACTIONS(2425), + [anon_sym_i8] = ACTIONS(2425), + [anon_sym_u16] = ACTIONS(2425), + [anon_sym_i16] = ACTIONS(2425), + [anon_sym_u32] = ACTIONS(2425), + [anon_sym_i32] = ACTIONS(2425), + [anon_sym_u64] = ACTIONS(2425), + [anon_sym_i64] = ACTIONS(2425), + [anon_sym_u128] = ACTIONS(2425), + [anon_sym_i128] = ACTIONS(2425), + [anon_sym_isize] = ACTIONS(2425), + [anon_sym_usize] = ACTIONS(2425), + [anon_sym_f32] = ACTIONS(2425), + [anon_sym_f64] = ACTIONS(2425), + [anon_sym_bool] = ACTIONS(2425), + [anon_sym_str] = ACTIONS(2425), + [anon_sym_char] = ACTIONS(2425), + [anon_sym_DASH] = ACTIONS(2423), + [anon_sym_BANG] = ACTIONS(2423), + [anon_sym_AMP] = ACTIONS(2423), + [anon_sym_PIPE] = ACTIONS(2423), + [anon_sym_LT] = ACTIONS(2423), + [anon_sym_DOT_DOT] = ACTIONS(2423), + [anon_sym_COLON_COLON] = ACTIONS(2423), + [anon_sym_POUND] = ACTIONS(2423), + [anon_sym_SQUOTE] = ACTIONS(2425), + [anon_sym_async] = ACTIONS(2425), + [anon_sym_break] = ACTIONS(2425), + [anon_sym_const] = ACTIONS(2425), + [anon_sym_continue] = ACTIONS(2425), + [anon_sym_default] = ACTIONS(2425), + [anon_sym_enum] = ACTIONS(2425), + [anon_sym_fn] = ACTIONS(2425), + [anon_sym_for] = ACTIONS(2425), + [anon_sym_gen] = ACTIONS(2425), + [anon_sym_if] = ACTIONS(2425), + [anon_sym_impl] = ACTIONS(2425), + [anon_sym_let] = ACTIONS(2425), + [anon_sym_loop] = ACTIONS(2425), + [anon_sym_match] = ACTIONS(2425), + [anon_sym_mod] = ACTIONS(2425), + [anon_sym_pub] = ACTIONS(2425), + [anon_sym_return] = ACTIONS(2425), + [anon_sym_static] = ACTIONS(2425), + [anon_sym_struct] = ACTIONS(2425), + [anon_sym_trait] = ACTIONS(2425), + [anon_sym_type] = ACTIONS(2425), + [anon_sym_union] = ACTIONS(2425), + [anon_sym_unsafe] = ACTIONS(2425), + [anon_sym_use] = ACTIONS(2425), + [anon_sym_while] = ACTIONS(2425), + [anon_sym_extern] = ACTIONS(2425), + [anon_sym_safe] = ACTIONS(2425), + [anon_sym_yield] = ACTIONS(2425), + [anon_sym_move] = ACTIONS(2425), + [anon_sym_try] = ACTIONS(2425), + [sym_integer_literal] = ACTIONS(2423), + [aux_sym_string_literal_token1] = ACTIONS(2423), + [sym_char_literal] = ACTIONS(2423), + [anon_sym_true] = ACTIONS(2425), + [anon_sym_false] = ACTIONS(2425), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(2425), + [sym_super] = ACTIONS(2425), + [sym_crate] = ACTIONS(2425), + [sym_metavariable] = ACTIONS(2423), + [sym__raw_string_literal_start] = ACTIONS(2423), + [sym_float_literal] = ACTIONS(2423), }, [STATE(644)] = { [sym_line_comment] = STATE(644), [sym_block_comment] = STATE(644), - [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_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_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(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [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), + [ts_builtin_sym_end] = ACTIONS(2427), + [sym_identifier] = ACTIONS(2429), + [anon_sym_SEMI] = ACTIONS(2427), + [anon_sym_macro_rules_BANG] = ACTIONS(2427), + [anon_sym_LPAREN] = ACTIONS(2427), + [anon_sym_LBRACK] = ACTIONS(2427), + [anon_sym_LBRACE] = ACTIONS(2427), + [anon_sym_RBRACE] = ACTIONS(2427), + [anon_sym_STAR] = ACTIONS(2427), + [anon_sym_u8] = ACTIONS(2429), + [anon_sym_i8] = ACTIONS(2429), + [anon_sym_u16] = ACTIONS(2429), + [anon_sym_i16] = ACTIONS(2429), + [anon_sym_u32] = ACTIONS(2429), + [anon_sym_i32] = ACTIONS(2429), + [anon_sym_u64] = ACTIONS(2429), + [anon_sym_i64] = ACTIONS(2429), + [anon_sym_u128] = ACTIONS(2429), + [anon_sym_i128] = ACTIONS(2429), + [anon_sym_isize] = ACTIONS(2429), + [anon_sym_usize] = ACTIONS(2429), + [anon_sym_f32] = ACTIONS(2429), + [anon_sym_f64] = ACTIONS(2429), + [anon_sym_bool] = ACTIONS(2429), + [anon_sym_str] = ACTIONS(2429), + [anon_sym_char] = ACTIONS(2429), + [anon_sym_DASH] = ACTIONS(2427), + [anon_sym_BANG] = ACTIONS(2427), + [anon_sym_AMP] = ACTIONS(2427), + [anon_sym_PIPE] = ACTIONS(2427), + [anon_sym_LT] = ACTIONS(2427), + [anon_sym_DOT_DOT] = ACTIONS(2427), + [anon_sym_COLON_COLON] = ACTIONS(2427), + [anon_sym_POUND] = ACTIONS(2427), + [anon_sym_SQUOTE] = ACTIONS(2429), + [anon_sym_async] = ACTIONS(2429), + [anon_sym_break] = ACTIONS(2429), + [anon_sym_const] = ACTIONS(2429), + [anon_sym_continue] = ACTIONS(2429), + [anon_sym_default] = ACTIONS(2429), + [anon_sym_enum] = ACTIONS(2429), + [anon_sym_fn] = ACTIONS(2429), + [anon_sym_for] = ACTIONS(2429), + [anon_sym_gen] = ACTIONS(2429), + [anon_sym_if] = ACTIONS(2429), + [anon_sym_impl] = ACTIONS(2429), + [anon_sym_let] = ACTIONS(2429), + [anon_sym_loop] = ACTIONS(2429), + [anon_sym_match] = ACTIONS(2429), + [anon_sym_mod] = ACTIONS(2429), + [anon_sym_pub] = ACTIONS(2429), + [anon_sym_return] = ACTIONS(2429), + [anon_sym_static] = ACTIONS(2429), + [anon_sym_struct] = ACTIONS(2429), + [anon_sym_trait] = ACTIONS(2429), + [anon_sym_type] = ACTIONS(2429), + [anon_sym_union] = ACTIONS(2429), + [anon_sym_unsafe] = ACTIONS(2429), + [anon_sym_use] = ACTIONS(2429), + [anon_sym_while] = ACTIONS(2429), + [anon_sym_extern] = ACTIONS(2429), + [anon_sym_safe] = ACTIONS(2429), + [anon_sym_yield] = ACTIONS(2429), + [anon_sym_move] = ACTIONS(2429), + [anon_sym_try] = ACTIONS(2429), + [sym_integer_literal] = ACTIONS(2427), + [aux_sym_string_literal_token1] = ACTIONS(2427), + [sym_char_literal] = ACTIONS(2427), + [anon_sym_true] = ACTIONS(2429), + [anon_sym_false] = ACTIONS(2429), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(2429), + [sym_super] = ACTIONS(2429), + [sym_crate] = ACTIONS(2429), + [sym_metavariable] = ACTIONS(2427), + [sym__raw_string_literal_start] = ACTIONS(2427), + [sym_float_literal] = ACTIONS(2427), }, [STATE(645)] = { + [sym_empty_statement] = STATE(1108), + [sym_macro_definition] = STATE(1108), + [sym_attribute_item] = STATE(1108), + [sym_inner_attribute_item] = STATE(1108), + [sym_mod_item] = STATE(1108), + [sym_foreign_mod_item] = STATE(1108), + [sym_struct_item] = STATE(1108), + [sym_union_item] = STATE(1108), + [sym_enum_item] = STATE(1108), + [sym_extern_crate_declaration] = STATE(1108), + [sym_const_item] = STATE(1108), + [sym_static_item] = STATE(1108), + [sym_type_item] = STATE(1108), + [sym_function_item] = STATE(1108), + [sym_function_signature_item] = STATE(1108), + [sym_function_modifiers] = STATE(3750), + [sym_impl_item] = STATE(1108), + [sym_trait_item] = STATE(1108), + [sym_associated_type] = STATE(1108), + [sym_let_declaration] = STATE(1108), + [sym_use_declaration] = STATE(1108), + [sym_extern_modifier] = STATE(2194), + [sym_visibility_modifier] = STATE(2003), + [sym_bracketed_type] = STATE(3467), + [sym_generic_type_with_turbofish] = STATE(3493), + [sym_macro_invocation] = STATE(1108), + [sym_scoped_identifier] = STATE(3180), [sym_line_comment] = STATE(645), [sym_block_comment] = STATE(645), - [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_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_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(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [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), + [aux_sym_declaration_list_repeat1] = STATE(652), + [aux_sym_function_modifiers_repeat1] = STATE(2244), + [sym_identifier] = ACTIONS(1857), + [anon_sym_SEMI] = ACTIONS(1859), + [anon_sym_macro_rules_BANG] = ACTIONS(1861), + [anon_sym_RBRACE] = ACTIONS(2431), + [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_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1867), + [anon_sym_POUND] = ACTIONS(1869), + [anon_sym_async] = ACTIONS(1270), + [anon_sym_const] = ACTIONS(1871), + [anon_sym_default] = ACTIONS(1873), + [anon_sym_enum] = ACTIONS(1875), + [anon_sym_fn] = ACTIONS(1877), + [anon_sym_gen] = ACTIONS(1879), + [anon_sym_impl] = ACTIONS(1881), + [anon_sym_let] = ACTIONS(1883), + [anon_sym_mod] = ACTIONS(1885), + [anon_sym_pub] = ACTIONS(69), + [anon_sym_static] = ACTIONS(1887), + [anon_sym_struct] = ACTIONS(1889), + [anon_sym_trait] = ACTIONS(1891), + [anon_sym_type] = ACTIONS(1893), + [anon_sym_union] = ACTIONS(1895), + [anon_sym_unsafe] = ACTIONS(1897), + [anon_sym_use] = ACTIONS(1899), + [anon_sym_extern] = ACTIONS(1901), + [anon_sym_safe] = ACTIONS(1903), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1905), + [sym_super] = ACTIONS(1905), + [sym_crate] = ACTIONS(1907), + [sym_metavariable] = ACTIONS(1909), }, [STATE(646)] = { [sym_line_comment] = STATE(646), [sym_block_comment] = STATE(646), - [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_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_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(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [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), + [ts_builtin_sym_end] = ACTIONS(2433), + [sym_identifier] = ACTIONS(2435), + [anon_sym_SEMI] = ACTIONS(2433), + [anon_sym_macro_rules_BANG] = ACTIONS(2433), + [anon_sym_LPAREN] = ACTIONS(2433), + [anon_sym_LBRACK] = ACTIONS(2433), + [anon_sym_LBRACE] = ACTIONS(2433), + [anon_sym_RBRACE] = ACTIONS(2433), + [anon_sym_STAR] = ACTIONS(2433), + [anon_sym_u8] = ACTIONS(2435), + [anon_sym_i8] = ACTIONS(2435), + [anon_sym_u16] = ACTIONS(2435), + [anon_sym_i16] = ACTIONS(2435), + [anon_sym_u32] = ACTIONS(2435), + [anon_sym_i32] = ACTIONS(2435), + [anon_sym_u64] = ACTIONS(2435), + [anon_sym_i64] = ACTIONS(2435), + [anon_sym_u128] = ACTIONS(2435), + [anon_sym_i128] = ACTIONS(2435), + [anon_sym_isize] = ACTIONS(2435), + [anon_sym_usize] = ACTIONS(2435), + [anon_sym_f32] = ACTIONS(2435), + [anon_sym_f64] = ACTIONS(2435), + [anon_sym_bool] = ACTIONS(2435), + [anon_sym_str] = ACTIONS(2435), + [anon_sym_char] = ACTIONS(2435), + [anon_sym_DASH] = ACTIONS(2433), + [anon_sym_BANG] = ACTIONS(2433), + [anon_sym_AMP] = ACTIONS(2433), + [anon_sym_PIPE] = ACTIONS(2433), + [anon_sym_LT] = ACTIONS(2433), + [anon_sym_DOT_DOT] = ACTIONS(2433), + [anon_sym_COLON_COLON] = ACTIONS(2433), + [anon_sym_POUND] = ACTIONS(2433), + [anon_sym_SQUOTE] = ACTIONS(2435), + [anon_sym_async] = ACTIONS(2435), + [anon_sym_break] = ACTIONS(2435), + [anon_sym_const] = ACTIONS(2435), + [anon_sym_continue] = ACTIONS(2435), + [anon_sym_default] = ACTIONS(2435), + [anon_sym_enum] = ACTIONS(2435), + [anon_sym_fn] = ACTIONS(2435), + [anon_sym_for] = ACTIONS(2435), + [anon_sym_gen] = ACTIONS(2435), + [anon_sym_if] = ACTIONS(2435), + [anon_sym_impl] = ACTIONS(2435), + [anon_sym_let] = ACTIONS(2435), + [anon_sym_loop] = ACTIONS(2435), + [anon_sym_match] = ACTIONS(2435), + [anon_sym_mod] = ACTIONS(2435), + [anon_sym_pub] = ACTIONS(2435), + [anon_sym_return] = ACTIONS(2435), + [anon_sym_static] = ACTIONS(2435), + [anon_sym_struct] = ACTIONS(2435), + [anon_sym_trait] = ACTIONS(2435), + [anon_sym_type] = ACTIONS(2435), + [anon_sym_union] = ACTIONS(2435), + [anon_sym_unsafe] = ACTIONS(2435), + [anon_sym_use] = ACTIONS(2435), + [anon_sym_while] = ACTIONS(2435), + [anon_sym_extern] = ACTIONS(2435), + [anon_sym_safe] = ACTIONS(2435), + [anon_sym_yield] = ACTIONS(2435), + [anon_sym_move] = ACTIONS(2435), + [anon_sym_try] = ACTIONS(2435), + [sym_integer_literal] = ACTIONS(2433), + [aux_sym_string_literal_token1] = ACTIONS(2433), + [sym_char_literal] = ACTIONS(2433), + [anon_sym_true] = ACTIONS(2435), + [anon_sym_false] = ACTIONS(2435), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(2435), + [sym_super] = ACTIONS(2435), + [sym_crate] = ACTIONS(2435), + [sym_metavariable] = ACTIONS(2433), + [sym__raw_string_literal_start] = ACTIONS(2433), + [sym_float_literal] = ACTIONS(2433), }, [STATE(647)] = { [sym_line_comment] = STATE(647), [sym_block_comment] = STATE(647), - [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_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_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(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [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), + [ts_builtin_sym_end] = ACTIONS(2437), + [sym_identifier] = ACTIONS(2439), + [anon_sym_SEMI] = ACTIONS(2437), + [anon_sym_macro_rules_BANG] = ACTIONS(2437), + [anon_sym_LPAREN] = ACTIONS(2437), + [anon_sym_LBRACK] = ACTIONS(2437), + [anon_sym_LBRACE] = ACTIONS(2437), + [anon_sym_RBRACE] = ACTIONS(2437), + [anon_sym_STAR] = ACTIONS(2437), + [anon_sym_u8] = ACTIONS(2439), + [anon_sym_i8] = ACTIONS(2439), + [anon_sym_u16] = ACTIONS(2439), + [anon_sym_i16] = ACTIONS(2439), + [anon_sym_u32] = ACTIONS(2439), + [anon_sym_i32] = ACTIONS(2439), + [anon_sym_u64] = ACTIONS(2439), + [anon_sym_i64] = ACTIONS(2439), + [anon_sym_u128] = ACTIONS(2439), + [anon_sym_i128] = ACTIONS(2439), + [anon_sym_isize] = ACTIONS(2439), + [anon_sym_usize] = ACTIONS(2439), + [anon_sym_f32] = ACTIONS(2439), + [anon_sym_f64] = ACTIONS(2439), + [anon_sym_bool] = ACTIONS(2439), + [anon_sym_str] = ACTIONS(2439), + [anon_sym_char] = ACTIONS(2439), + [anon_sym_DASH] = ACTIONS(2437), + [anon_sym_BANG] = ACTIONS(2437), + [anon_sym_AMP] = ACTIONS(2437), + [anon_sym_PIPE] = ACTIONS(2437), + [anon_sym_LT] = ACTIONS(2437), + [anon_sym_DOT_DOT] = ACTIONS(2437), + [anon_sym_COLON_COLON] = ACTIONS(2437), + [anon_sym_POUND] = ACTIONS(2437), + [anon_sym_SQUOTE] = ACTIONS(2439), + [anon_sym_async] = ACTIONS(2439), + [anon_sym_break] = ACTIONS(2439), + [anon_sym_const] = ACTIONS(2439), + [anon_sym_continue] = ACTIONS(2439), + [anon_sym_default] = ACTIONS(2439), + [anon_sym_enum] = ACTIONS(2439), + [anon_sym_fn] = ACTIONS(2439), + [anon_sym_for] = ACTIONS(2439), + [anon_sym_gen] = ACTIONS(2439), + [anon_sym_if] = ACTIONS(2439), + [anon_sym_impl] = ACTIONS(2439), + [anon_sym_let] = ACTIONS(2439), + [anon_sym_loop] = ACTIONS(2439), + [anon_sym_match] = ACTIONS(2439), + [anon_sym_mod] = ACTIONS(2439), + [anon_sym_pub] = ACTIONS(2439), + [anon_sym_return] = ACTIONS(2439), + [anon_sym_static] = ACTIONS(2439), + [anon_sym_struct] = ACTIONS(2439), + [anon_sym_trait] = ACTIONS(2439), + [anon_sym_type] = ACTIONS(2439), + [anon_sym_union] = ACTIONS(2439), + [anon_sym_unsafe] = ACTIONS(2439), + [anon_sym_use] = ACTIONS(2439), + [anon_sym_while] = ACTIONS(2439), + [anon_sym_extern] = ACTIONS(2439), + [anon_sym_safe] = ACTIONS(2439), + [anon_sym_yield] = ACTIONS(2439), + [anon_sym_move] = ACTIONS(2439), + [anon_sym_try] = ACTIONS(2439), + [sym_integer_literal] = ACTIONS(2437), + [aux_sym_string_literal_token1] = ACTIONS(2437), + [sym_char_literal] = ACTIONS(2437), + [anon_sym_true] = ACTIONS(2439), + [anon_sym_false] = ACTIONS(2439), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(2439), + [sym_super] = ACTIONS(2439), + [sym_crate] = ACTIONS(2439), + [sym_metavariable] = ACTIONS(2437), + [sym__raw_string_literal_start] = ACTIONS(2437), + [sym_float_literal] = ACTIONS(2437), }, [STATE(648)] = { [sym_line_comment] = STATE(648), [sym_block_comment] = STATE(648), - [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_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_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(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [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), + [ts_builtin_sym_end] = ACTIONS(2441), + [sym_identifier] = ACTIONS(2443), + [anon_sym_SEMI] = ACTIONS(2441), + [anon_sym_macro_rules_BANG] = ACTIONS(2441), + [anon_sym_LPAREN] = ACTIONS(2441), + [anon_sym_LBRACK] = ACTIONS(2441), + [anon_sym_LBRACE] = ACTIONS(2441), + [anon_sym_RBRACE] = ACTIONS(2441), + [anon_sym_STAR] = ACTIONS(2441), + [anon_sym_u8] = ACTIONS(2443), + [anon_sym_i8] = ACTIONS(2443), + [anon_sym_u16] = ACTIONS(2443), + [anon_sym_i16] = ACTIONS(2443), + [anon_sym_u32] = ACTIONS(2443), + [anon_sym_i32] = ACTIONS(2443), + [anon_sym_u64] = ACTIONS(2443), + [anon_sym_i64] = ACTIONS(2443), + [anon_sym_u128] = ACTIONS(2443), + [anon_sym_i128] = ACTIONS(2443), + [anon_sym_isize] = ACTIONS(2443), + [anon_sym_usize] = ACTIONS(2443), + [anon_sym_f32] = ACTIONS(2443), + [anon_sym_f64] = ACTIONS(2443), + [anon_sym_bool] = ACTIONS(2443), + [anon_sym_str] = ACTIONS(2443), + [anon_sym_char] = ACTIONS(2443), + [anon_sym_DASH] = ACTIONS(2441), + [anon_sym_BANG] = ACTIONS(2441), + [anon_sym_AMP] = ACTIONS(2441), + [anon_sym_PIPE] = ACTIONS(2441), + [anon_sym_LT] = ACTIONS(2441), + [anon_sym_DOT_DOT] = ACTIONS(2441), + [anon_sym_COLON_COLON] = ACTIONS(2441), + [anon_sym_POUND] = ACTIONS(2441), + [anon_sym_SQUOTE] = ACTIONS(2443), + [anon_sym_async] = ACTIONS(2443), + [anon_sym_break] = ACTIONS(2443), + [anon_sym_const] = ACTIONS(2443), + [anon_sym_continue] = ACTIONS(2443), + [anon_sym_default] = ACTIONS(2443), + [anon_sym_enum] = ACTIONS(2443), + [anon_sym_fn] = ACTIONS(2443), + [anon_sym_for] = ACTIONS(2443), + [anon_sym_gen] = ACTIONS(2443), + [anon_sym_if] = ACTIONS(2443), + [anon_sym_impl] = ACTIONS(2443), + [anon_sym_let] = ACTIONS(2443), + [anon_sym_loop] = ACTIONS(2443), + [anon_sym_match] = ACTIONS(2443), + [anon_sym_mod] = ACTIONS(2443), + [anon_sym_pub] = ACTIONS(2443), + [anon_sym_return] = ACTIONS(2443), + [anon_sym_static] = ACTIONS(2443), + [anon_sym_struct] = ACTIONS(2443), + [anon_sym_trait] = ACTIONS(2443), + [anon_sym_type] = ACTIONS(2443), + [anon_sym_union] = ACTIONS(2443), + [anon_sym_unsafe] = ACTIONS(2443), + [anon_sym_use] = ACTIONS(2443), + [anon_sym_while] = ACTIONS(2443), + [anon_sym_extern] = ACTIONS(2443), + [anon_sym_safe] = ACTIONS(2443), + [anon_sym_yield] = ACTIONS(2443), + [anon_sym_move] = ACTIONS(2443), + [anon_sym_try] = ACTIONS(2443), + [sym_integer_literal] = ACTIONS(2441), + [aux_sym_string_literal_token1] = ACTIONS(2441), + [sym_char_literal] = ACTIONS(2441), + [anon_sym_true] = ACTIONS(2443), + [anon_sym_false] = ACTIONS(2443), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(2443), + [sym_super] = ACTIONS(2443), + [sym_crate] = ACTIONS(2443), + [sym_metavariable] = ACTIONS(2441), + [sym__raw_string_literal_start] = ACTIONS(2441), + [sym_float_literal] = ACTIONS(2441), }, [STATE(649)] = { [sym_line_comment] = STATE(649), [sym_block_comment] = STATE(649), - [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_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_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(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [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), + [ts_builtin_sym_end] = ACTIONS(2445), + [sym_identifier] = ACTIONS(2447), + [anon_sym_SEMI] = ACTIONS(2445), + [anon_sym_macro_rules_BANG] = ACTIONS(2445), + [anon_sym_LPAREN] = ACTIONS(2445), + [anon_sym_LBRACK] = ACTIONS(2445), + [anon_sym_LBRACE] = ACTIONS(2445), + [anon_sym_RBRACE] = ACTIONS(2445), + [anon_sym_STAR] = ACTIONS(2445), + [anon_sym_u8] = ACTIONS(2447), + [anon_sym_i8] = ACTIONS(2447), + [anon_sym_u16] = ACTIONS(2447), + [anon_sym_i16] = ACTIONS(2447), + [anon_sym_u32] = ACTIONS(2447), + [anon_sym_i32] = ACTIONS(2447), + [anon_sym_u64] = ACTIONS(2447), + [anon_sym_i64] = ACTIONS(2447), + [anon_sym_u128] = ACTIONS(2447), + [anon_sym_i128] = ACTIONS(2447), + [anon_sym_isize] = ACTIONS(2447), + [anon_sym_usize] = ACTIONS(2447), + [anon_sym_f32] = ACTIONS(2447), + [anon_sym_f64] = ACTIONS(2447), + [anon_sym_bool] = ACTIONS(2447), + [anon_sym_str] = ACTIONS(2447), + [anon_sym_char] = ACTIONS(2447), + [anon_sym_DASH] = ACTIONS(2445), + [anon_sym_BANG] = ACTIONS(2445), + [anon_sym_AMP] = ACTIONS(2445), + [anon_sym_PIPE] = ACTIONS(2445), + [anon_sym_LT] = ACTIONS(2445), + [anon_sym_DOT_DOT] = ACTIONS(2445), + [anon_sym_COLON_COLON] = ACTIONS(2445), + [anon_sym_POUND] = ACTIONS(2445), + [anon_sym_SQUOTE] = ACTIONS(2447), + [anon_sym_async] = ACTIONS(2447), + [anon_sym_break] = ACTIONS(2447), + [anon_sym_const] = ACTIONS(2447), + [anon_sym_continue] = ACTIONS(2447), + [anon_sym_default] = ACTIONS(2447), + [anon_sym_enum] = ACTIONS(2447), + [anon_sym_fn] = ACTIONS(2447), + [anon_sym_for] = ACTIONS(2447), + [anon_sym_gen] = ACTIONS(2447), + [anon_sym_if] = ACTIONS(2447), + [anon_sym_impl] = ACTIONS(2447), + [anon_sym_let] = ACTIONS(2447), + [anon_sym_loop] = ACTIONS(2447), + [anon_sym_match] = ACTIONS(2447), + [anon_sym_mod] = ACTIONS(2447), + [anon_sym_pub] = ACTIONS(2447), + [anon_sym_return] = ACTIONS(2447), + [anon_sym_static] = ACTIONS(2447), + [anon_sym_struct] = ACTIONS(2447), + [anon_sym_trait] = ACTIONS(2447), + [anon_sym_type] = ACTIONS(2447), + [anon_sym_union] = ACTIONS(2447), + [anon_sym_unsafe] = ACTIONS(2447), + [anon_sym_use] = ACTIONS(2447), + [anon_sym_while] = ACTIONS(2447), + [anon_sym_extern] = ACTIONS(2447), + [anon_sym_safe] = ACTIONS(2447), + [anon_sym_yield] = ACTIONS(2447), + [anon_sym_move] = ACTIONS(2447), + [anon_sym_try] = ACTIONS(2447), + [sym_integer_literal] = ACTIONS(2445), + [aux_sym_string_literal_token1] = ACTIONS(2445), + [sym_char_literal] = ACTIONS(2445), + [anon_sym_true] = ACTIONS(2447), + [anon_sym_false] = ACTIONS(2447), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(2447), + [sym_super] = ACTIONS(2447), + [sym_crate] = ACTIONS(2447), + [sym_metavariable] = ACTIONS(2445), + [sym__raw_string_literal_start] = ACTIONS(2445), + [sym_float_literal] = ACTIONS(2445), }, [STATE(650)] = { [sym_line_comment] = STATE(650), [sym_block_comment] = STATE(650), - [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_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_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(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [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), + [ts_builtin_sym_end] = ACTIONS(2449), + [sym_identifier] = ACTIONS(2451), + [anon_sym_SEMI] = ACTIONS(2449), + [anon_sym_macro_rules_BANG] = ACTIONS(2449), + [anon_sym_LPAREN] = ACTIONS(2449), + [anon_sym_LBRACK] = ACTIONS(2449), + [anon_sym_LBRACE] = ACTIONS(2449), + [anon_sym_RBRACE] = ACTIONS(2449), + [anon_sym_STAR] = ACTIONS(2449), + [anon_sym_u8] = ACTIONS(2451), + [anon_sym_i8] = ACTIONS(2451), + [anon_sym_u16] = ACTIONS(2451), + [anon_sym_i16] = ACTIONS(2451), + [anon_sym_u32] = ACTIONS(2451), + [anon_sym_i32] = ACTIONS(2451), + [anon_sym_u64] = ACTIONS(2451), + [anon_sym_i64] = ACTIONS(2451), + [anon_sym_u128] = ACTIONS(2451), + [anon_sym_i128] = ACTIONS(2451), + [anon_sym_isize] = ACTIONS(2451), + [anon_sym_usize] = ACTIONS(2451), + [anon_sym_f32] = ACTIONS(2451), + [anon_sym_f64] = ACTIONS(2451), + [anon_sym_bool] = ACTIONS(2451), + [anon_sym_str] = ACTIONS(2451), + [anon_sym_char] = ACTIONS(2451), + [anon_sym_DASH] = ACTIONS(2449), + [anon_sym_BANG] = ACTIONS(2449), + [anon_sym_AMP] = ACTIONS(2449), + [anon_sym_PIPE] = ACTIONS(2449), + [anon_sym_LT] = ACTIONS(2449), + [anon_sym_DOT_DOT] = ACTIONS(2449), + [anon_sym_COLON_COLON] = ACTIONS(2449), + [anon_sym_POUND] = ACTIONS(2449), + [anon_sym_SQUOTE] = ACTIONS(2451), + [anon_sym_async] = ACTIONS(2451), + [anon_sym_break] = ACTIONS(2451), + [anon_sym_const] = ACTIONS(2451), + [anon_sym_continue] = ACTIONS(2451), + [anon_sym_default] = ACTIONS(2451), + [anon_sym_enum] = ACTIONS(2451), + [anon_sym_fn] = ACTIONS(2451), + [anon_sym_for] = ACTIONS(2451), + [anon_sym_gen] = ACTIONS(2451), + [anon_sym_if] = ACTIONS(2451), + [anon_sym_impl] = ACTIONS(2451), + [anon_sym_let] = ACTIONS(2451), + [anon_sym_loop] = ACTIONS(2451), + [anon_sym_match] = ACTIONS(2451), + [anon_sym_mod] = ACTIONS(2451), + [anon_sym_pub] = ACTIONS(2451), + [anon_sym_return] = ACTIONS(2451), + [anon_sym_static] = ACTIONS(2451), + [anon_sym_struct] = ACTIONS(2451), + [anon_sym_trait] = ACTIONS(2451), + [anon_sym_type] = ACTIONS(2451), + [anon_sym_union] = ACTIONS(2451), + [anon_sym_unsafe] = ACTIONS(2451), + [anon_sym_use] = ACTIONS(2451), + [anon_sym_while] = ACTIONS(2451), + [anon_sym_extern] = ACTIONS(2451), + [anon_sym_safe] = ACTIONS(2451), + [anon_sym_yield] = ACTIONS(2451), + [anon_sym_move] = ACTIONS(2451), + [anon_sym_try] = ACTIONS(2451), + [sym_integer_literal] = ACTIONS(2449), + [aux_sym_string_literal_token1] = ACTIONS(2449), + [sym_char_literal] = ACTIONS(2449), + [anon_sym_true] = ACTIONS(2451), + [anon_sym_false] = ACTIONS(2451), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(2451), + [sym_super] = ACTIONS(2451), + [sym_crate] = ACTIONS(2451), + [sym_metavariable] = ACTIONS(2449), + [sym__raw_string_literal_start] = ACTIONS(2449), + [sym_float_literal] = ACTIONS(2449), }, [STATE(651)] = { [sym_line_comment] = STATE(651), [sym_block_comment] = STATE(651), - [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_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_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(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [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), + [ts_builtin_sym_end] = ACTIONS(2453), + [sym_identifier] = ACTIONS(2455), + [anon_sym_SEMI] = ACTIONS(2453), + [anon_sym_macro_rules_BANG] = ACTIONS(2453), + [anon_sym_LPAREN] = ACTIONS(2453), + [anon_sym_LBRACK] = ACTIONS(2453), + [anon_sym_LBRACE] = ACTIONS(2453), + [anon_sym_RBRACE] = ACTIONS(2453), + [anon_sym_STAR] = ACTIONS(2453), + [anon_sym_u8] = ACTIONS(2455), + [anon_sym_i8] = ACTIONS(2455), + [anon_sym_u16] = ACTIONS(2455), + [anon_sym_i16] = ACTIONS(2455), + [anon_sym_u32] = ACTIONS(2455), + [anon_sym_i32] = ACTIONS(2455), + [anon_sym_u64] = ACTIONS(2455), + [anon_sym_i64] = ACTIONS(2455), + [anon_sym_u128] = ACTIONS(2455), + [anon_sym_i128] = ACTIONS(2455), + [anon_sym_isize] = ACTIONS(2455), + [anon_sym_usize] = ACTIONS(2455), + [anon_sym_f32] = ACTIONS(2455), + [anon_sym_f64] = ACTIONS(2455), + [anon_sym_bool] = ACTIONS(2455), + [anon_sym_str] = ACTIONS(2455), + [anon_sym_char] = ACTIONS(2455), + [anon_sym_DASH] = ACTIONS(2453), + [anon_sym_BANG] = ACTIONS(2453), + [anon_sym_AMP] = ACTIONS(2453), + [anon_sym_PIPE] = ACTIONS(2453), + [anon_sym_LT] = ACTIONS(2453), + [anon_sym_DOT_DOT] = ACTIONS(2453), + [anon_sym_COLON_COLON] = ACTIONS(2453), + [anon_sym_POUND] = ACTIONS(2453), + [anon_sym_SQUOTE] = ACTIONS(2455), + [anon_sym_async] = ACTIONS(2455), + [anon_sym_break] = ACTIONS(2455), + [anon_sym_const] = ACTIONS(2455), + [anon_sym_continue] = ACTIONS(2455), + [anon_sym_default] = ACTIONS(2455), + [anon_sym_enum] = ACTIONS(2455), + [anon_sym_fn] = ACTIONS(2455), + [anon_sym_for] = ACTIONS(2455), + [anon_sym_gen] = ACTIONS(2455), + [anon_sym_if] = ACTIONS(2455), + [anon_sym_impl] = ACTIONS(2455), + [anon_sym_let] = ACTIONS(2455), + [anon_sym_loop] = ACTIONS(2455), + [anon_sym_match] = ACTIONS(2455), + [anon_sym_mod] = ACTIONS(2455), + [anon_sym_pub] = ACTIONS(2455), + [anon_sym_return] = ACTIONS(2455), + [anon_sym_static] = ACTIONS(2455), + [anon_sym_struct] = ACTIONS(2455), + [anon_sym_trait] = ACTIONS(2455), + [anon_sym_type] = ACTIONS(2455), + [anon_sym_union] = ACTIONS(2455), + [anon_sym_unsafe] = ACTIONS(2455), + [anon_sym_use] = ACTIONS(2455), + [anon_sym_while] = ACTIONS(2455), + [anon_sym_extern] = ACTIONS(2455), + [anon_sym_safe] = ACTIONS(2455), + [anon_sym_yield] = ACTIONS(2455), + [anon_sym_move] = ACTIONS(2455), + [anon_sym_try] = ACTIONS(2455), + [sym_integer_literal] = ACTIONS(2453), + [aux_sym_string_literal_token1] = ACTIONS(2453), + [sym_char_literal] = ACTIONS(2453), + [anon_sym_true] = ACTIONS(2455), + [anon_sym_false] = ACTIONS(2455), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(2455), + [sym_super] = ACTIONS(2455), + [sym_crate] = ACTIONS(2455), + [sym_metavariable] = ACTIONS(2453), + [sym__raw_string_literal_start] = ACTIONS(2453), + [sym_float_literal] = ACTIONS(2453), }, [STATE(652)] = { + [sym_empty_statement] = STATE(1108), + [sym_macro_definition] = STATE(1108), + [sym_attribute_item] = STATE(1108), + [sym_inner_attribute_item] = STATE(1108), + [sym_mod_item] = STATE(1108), + [sym_foreign_mod_item] = STATE(1108), + [sym_struct_item] = STATE(1108), + [sym_union_item] = STATE(1108), + [sym_enum_item] = STATE(1108), + [sym_extern_crate_declaration] = STATE(1108), + [sym_const_item] = STATE(1108), + [sym_static_item] = STATE(1108), + [sym_type_item] = STATE(1108), + [sym_function_item] = STATE(1108), + [sym_function_signature_item] = STATE(1108), + [sym_function_modifiers] = STATE(3750), + [sym_impl_item] = STATE(1108), + [sym_trait_item] = STATE(1108), + [sym_associated_type] = STATE(1108), + [sym_let_declaration] = STATE(1108), + [sym_use_declaration] = STATE(1108), + [sym_extern_modifier] = STATE(2194), + [sym_visibility_modifier] = STATE(2003), + [sym_bracketed_type] = STATE(3467), + [sym_generic_type_with_turbofish] = STATE(3493), + [sym_macro_invocation] = STATE(1108), + [sym_scoped_identifier] = STATE(3180), [sym_line_comment] = STATE(652), [sym_block_comment] = STATE(652), - [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_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_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(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [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), + [aux_sym_declaration_list_repeat1] = STATE(652), + [aux_sym_function_modifiers_repeat1] = STATE(2244), + [sym_identifier] = ACTIONS(2457), + [anon_sym_SEMI] = ACTIONS(2460), + [anon_sym_macro_rules_BANG] = ACTIONS(2463), + [anon_sym_RBRACE] = ACTIONS(2466), + [anon_sym_u8] = ACTIONS(2468), + [anon_sym_i8] = ACTIONS(2468), + [anon_sym_u16] = ACTIONS(2468), + [anon_sym_i16] = ACTIONS(2468), + [anon_sym_u32] = ACTIONS(2468), + [anon_sym_i32] = ACTIONS(2468), + [anon_sym_u64] = ACTIONS(2468), + [anon_sym_i64] = ACTIONS(2468), + [anon_sym_u128] = ACTIONS(2468), + [anon_sym_i128] = ACTIONS(2468), + [anon_sym_isize] = ACTIONS(2468), + [anon_sym_usize] = ACTIONS(2468), + [anon_sym_f32] = ACTIONS(2468), + [anon_sym_f64] = ACTIONS(2468), + [anon_sym_bool] = ACTIONS(2468), + [anon_sym_str] = ACTIONS(2468), + [anon_sym_char] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2471), + [anon_sym_COLON_COLON] = ACTIONS(2474), + [anon_sym_POUND] = ACTIONS(2477), + [anon_sym_async] = ACTIONS(2480), + [anon_sym_const] = ACTIONS(2483), + [anon_sym_default] = ACTIONS(2486), + [anon_sym_enum] = ACTIONS(2489), + [anon_sym_fn] = ACTIONS(2492), + [anon_sym_gen] = ACTIONS(2495), + [anon_sym_impl] = ACTIONS(2498), + [anon_sym_let] = ACTIONS(2501), + [anon_sym_mod] = ACTIONS(2504), + [anon_sym_pub] = ACTIONS(2507), + [anon_sym_static] = ACTIONS(2510), + [anon_sym_struct] = ACTIONS(2513), + [anon_sym_trait] = ACTIONS(2516), + [anon_sym_type] = ACTIONS(2519), + [anon_sym_union] = ACTIONS(2522), + [anon_sym_unsafe] = ACTIONS(2525), + [anon_sym_use] = ACTIONS(2528), + [anon_sym_extern] = ACTIONS(2531), + [anon_sym_safe] = ACTIONS(2534), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(2537), + [sym_super] = ACTIONS(2537), + [sym_crate] = ACTIONS(2540), + [sym_metavariable] = ACTIONS(2543), }, [STATE(653)] = { [sym_line_comment] = STATE(653), [sym_block_comment] = STATE(653), - [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_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_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(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [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), + [ts_builtin_sym_end] = ACTIONS(2546), + [sym_identifier] = ACTIONS(2548), + [anon_sym_SEMI] = ACTIONS(2546), + [anon_sym_macro_rules_BANG] = ACTIONS(2546), + [anon_sym_LPAREN] = ACTIONS(2546), + [anon_sym_LBRACK] = ACTIONS(2546), + [anon_sym_LBRACE] = ACTIONS(2546), + [anon_sym_RBRACE] = ACTIONS(2546), + [anon_sym_STAR] = ACTIONS(2546), + [anon_sym_u8] = ACTIONS(2548), + [anon_sym_i8] = ACTIONS(2548), + [anon_sym_u16] = ACTIONS(2548), + [anon_sym_i16] = ACTIONS(2548), + [anon_sym_u32] = ACTIONS(2548), + [anon_sym_i32] = ACTIONS(2548), + [anon_sym_u64] = ACTIONS(2548), + [anon_sym_i64] = ACTIONS(2548), + [anon_sym_u128] = ACTIONS(2548), + [anon_sym_i128] = ACTIONS(2548), + [anon_sym_isize] = ACTIONS(2548), + [anon_sym_usize] = ACTIONS(2548), + [anon_sym_f32] = ACTIONS(2548), + [anon_sym_f64] = ACTIONS(2548), + [anon_sym_bool] = ACTIONS(2548), + [anon_sym_str] = ACTIONS(2548), + [anon_sym_char] = ACTIONS(2548), + [anon_sym_DASH] = ACTIONS(2546), + [anon_sym_BANG] = ACTIONS(2546), + [anon_sym_AMP] = ACTIONS(2546), + [anon_sym_PIPE] = ACTIONS(2546), + [anon_sym_LT] = ACTIONS(2546), + [anon_sym_DOT_DOT] = ACTIONS(2546), + [anon_sym_COLON_COLON] = ACTIONS(2546), + [anon_sym_POUND] = ACTIONS(2546), + [anon_sym_SQUOTE] = ACTIONS(2548), + [anon_sym_async] = ACTIONS(2548), + [anon_sym_break] = ACTIONS(2548), + [anon_sym_const] = ACTIONS(2548), + [anon_sym_continue] = ACTIONS(2548), + [anon_sym_default] = ACTIONS(2548), + [anon_sym_enum] = ACTIONS(2548), + [anon_sym_fn] = ACTIONS(2548), + [anon_sym_for] = ACTIONS(2548), + [anon_sym_gen] = ACTIONS(2548), + [anon_sym_if] = ACTIONS(2548), + [anon_sym_impl] = ACTIONS(2548), + [anon_sym_let] = ACTIONS(2548), + [anon_sym_loop] = ACTIONS(2548), + [anon_sym_match] = ACTIONS(2548), + [anon_sym_mod] = ACTIONS(2548), + [anon_sym_pub] = ACTIONS(2548), + [anon_sym_return] = ACTIONS(2548), + [anon_sym_static] = ACTIONS(2548), + [anon_sym_struct] = ACTIONS(2548), + [anon_sym_trait] = ACTIONS(2548), + [anon_sym_type] = ACTIONS(2548), + [anon_sym_union] = ACTIONS(2548), + [anon_sym_unsafe] = ACTIONS(2548), + [anon_sym_use] = ACTIONS(2548), + [anon_sym_while] = ACTIONS(2548), + [anon_sym_extern] = ACTIONS(2548), + [anon_sym_safe] = ACTIONS(2548), + [anon_sym_yield] = ACTIONS(2548), + [anon_sym_move] = ACTIONS(2548), + [anon_sym_try] = ACTIONS(2548), + [sym_integer_literal] = ACTIONS(2546), + [aux_sym_string_literal_token1] = ACTIONS(2546), + [sym_char_literal] = ACTIONS(2546), + [anon_sym_true] = ACTIONS(2548), + [anon_sym_false] = ACTIONS(2548), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(2548), + [sym_super] = ACTIONS(2548), + [sym_crate] = ACTIONS(2548), + [sym_metavariable] = ACTIONS(2546), + [sym__raw_string_literal_start] = ACTIONS(2546), + [sym_float_literal] = ACTIONS(2546), }, [STATE(654)] = { [sym_line_comment] = STATE(654), [sym_block_comment] = STATE(654), - [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_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_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(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [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), + [ts_builtin_sym_end] = ACTIONS(2550), + [sym_identifier] = ACTIONS(2552), + [anon_sym_SEMI] = ACTIONS(2550), + [anon_sym_macro_rules_BANG] = ACTIONS(2550), + [anon_sym_LPAREN] = ACTIONS(2550), + [anon_sym_LBRACK] = ACTIONS(2550), + [anon_sym_LBRACE] = ACTIONS(2550), + [anon_sym_RBRACE] = ACTIONS(2550), + [anon_sym_STAR] = ACTIONS(2550), + [anon_sym_u8] = ACTIONS(2552), + [anon_sym_i8] = ACTIONS(2552), + [anon_sym_u16] = ACTIONS(2552), + [anon_sym_i16] = ACTIONS(2552), + [anon_sym_u32] = ACTIONS(2552), + [anon_sym_i32] = ACTIONS(2552), + [anon_sym_u64] = ACTIONS(2552), + [anon_sym_i64] = ACTIONS(2552), + [anon_sym_u128] = ACTIONS(2552), + [anon_sym_i128] = ACTIONS(2552), + [anon_sym_isize] = ACTIONS(2552), + [anon_sym_usize] = ACTIONS(2552), + [anon_sym_f32] = ACTIONS(2552), + [anon_sym_f64] = ACTIONS(2552), + [anon_sym_bool] = ACTIONS(2552), + [anon_sym_str] = ACTIONS(2552), + [anon_sym_char] = ACTIONS(2552), + [anon_sym_DASH] = ACTIONS(2550), + [anon_sym_BANG] = ACTIONS(2550), + [anon_sym_AMP] = ACTIONS(2550), + [anon_sym_PIPE] = ACTIONS(2550), + [anon_sym_LT] = ACTIONS(2550), + [anon_sym_DOT_DOT] = ACTIONS(2550), + [anon_sym_COLON_COLON] = ACTIONS(2550), + [anon_sym_POUND] = ACTIONS(2550), + [anon_sym_SQUOTE] = ACTIONS(2552), + [anon_sym_async] = ACTIONS(2552), + [anon_sym_break] = ACTIONS(2552), + [anon_sym_const] = ACTIONS(2552), + [anon_sym_continue] = ACTIONS(2552), + [anon_sym_default] = ACTIONS(2552), + [anon_sym_enum] = ACTIONS(2552), + [anon_sym_fn] = ACTIONS(2552), + [anon_sym_for] = ACTIONS(2552), + [anon_sym_gen] = ACTIONS(2552), + [anon_sym_if] = ACTIONS(2552), + [anon_sym_impl] = ACTIONS(2552), + [anon_sym_let] = ACTIONS(2552), + [anon_sym_loop] = ACTIONS(2552), + [anon_sym_match] = ACTIONS(2552), + [anon_sym_mod] = ACTIONS(2552), + [anon_sym_pub] = ACTIONS(2552), + [anon_sym_return] = ACTIONS(2552), + [anon_sym_static] = ACTIONS(2552), + [anon_sym_struct] = ACTIONS(2552), + [anon_sym_trait] = ACTIONS(2552), + [anon_sym_type] = ACTIONS(2552), + [anon_sym_union] = ACTIONS(2552), + [anon_sym_unsafe] = ACTIONS(2552), + [anon_sym_use] = ACTIONS(2552), + [anon_sym_while] = ACTIONS(2552), + [anon_sym_extern] = ACTIONS(2552), + [anon_sym_safe] = ACTIONS(2552), + [anon_sym_yield] = ACTIONS(2552), + [anon_sym_move] = ACTIONS(2552), + [anon_sym_try] = ACTIONS(2552), + [sym_integer_literal] = ACTIONS(2550), + [aux_sym_string_literal_token1] = ACTIONS(2550), + [sym_char_literal] = ACTIONS(2550), + [anon_sym_true] = ACTIONS(2552), + [anon_sym_false] = ACTIONS(2552), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(2552), + [sym_super] = ACTIONS(2552), + [sym_crate] = ACTIONS(2552), + [sym_metavariable] = ACTIONS(2550), + [sym__raw_string_literal_start] = ACTIONS(2550), + [sym_float_literal] = ACTIONS(2550), }, [STATE(655)] = { [sym_line_comment] = STATE(655), [sym_block_comment] = STATE(655), - [ts_builtin_sym_end] = ACTIONS(2528), - [sym_identifier] = ACTIONS(2530), - [anon_sym_SEMI] = ACTIONS(2528), - [anon_sym_macro_rules_BANG] = ACTIONS(2528), - [anon_sym_LPAREN] = ACTIONS(2528), - [anon_sym_LBRACK] = ACTIONS(2528), - [anon_sym_LBRACE] = ACTIONS(2528), - [anon_sym_RBRACE] = ACTIONS(2528), - [anon_sym_STAR] = ACTIONS(2528), - [anon_sym_u8] = ACTIONS(2530), - [anon_sym_i8] = ACTIONS(2530), - [anon_sym_u16] = ACTIONS(2530), - [anon_sym_i16] = ACTIONS(2530), - [anon_sym_u32] = ACTIONS(2530), - [anon_sym_i32] = ACTIONS(2530), - [anon_sym_u64] = ACTIONS(2530), - [anon_sym_i64] = ACTIONS(2530), - [anon_sym_u128] = ACTIONS(2530), - [anon_sym_i128] = ACTIONS(2530), - [anon_sym_isize] = ACTIONS(2530), - [anon_sym_usize] = ACTIONS(2530), - [anon_sym_f32] = ACTIONS(2530), - [anon_sym_f64] = ACTIONS(2530), - [anon_sym_bool] = ACTIONS(2530), - [anon_sym_str] = ACTIONS(2530), - [anon_sym_char] = ACTIONS(2530), - [anon_sym_DASH] = ACTIONS(2528), - [anon_sym_BANG] = ACTIONS(2528), - [anon_sym_AMP] = ACTIONS(2528), - [anon_sym_PIPE] = ACTIONS(2528), - [anon_sym_LT] = ACTIONS(2528), - [anon_sym_DOT_DOT] = ACTIONS(2528), - [anon_sym_COLON_COLON] = ACTIONS(2528), - [anon_sym_POUND] = ACTIONS(2528), - [anon_sym_SQUOTE] = ACTIONS(2530), - [anon_sym_async] = ACTIONS(2530), - [anon_sym_break] = ACTIONS(2530), - [anon_sym_const] = ACTIONS(2530), - [anon_sym_continue] = ACTIONS(2530), - [anon_sym_default] = ACTIONS(2530), - [anon_sym_enum] = ACTIONS(2530), - [anon_sym_fn] = ACTIONS(2530), - [anon_sym_for] = ACTIONS(2530), - [anon_sym_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_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(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2530), - [sym_super] = ACTIONS(2530), - [sym_crate] = ACTIONS(2530), - [sym_metavariable] = ACTIONS(2528), - [sym__raw_string_literal_start] = ACTIONS(2528), - [sym_float_literal] = ACTIONS(2528), + [ts_builtin_sym_end] = ACTIONS(2554), + [sym_identifier] = ACTIONS(2556), + [anon_sym_SEMI] = ACTIONS(2554), + [anon_sym_macro_rules_BANG] = ACTIONS(2554), + [anon_sym_LPAREN] = ACTIONS(2554), + [anon_sym_LBRACK] = ACTIONS(2554), + [anon_sym_LBRACE] = ACTIONS(2554), + [anon_sym_RBRACE] = ACTIONS(2554), + [anon_sym_STAR] = ACTIONS(2554), + [anon_sym_u8] = ACTIONS(2556), + [anon_sym_i8] = ACTIONS(2556), + [anon_sym_u16] = ACTIONS(2556), + [anon_sym_i16] = ACTIONS(2556), + [anon_sym_u32] = ACTIONS(2556), + [anon_sym_i32] = ACTIONS(2556), + [anon_sym_u64] = ACTIONS(2556), + [anon_sym_i64] = ACTIONS(2556), + [anon_sym_u128] = ACTIONS(2556), + [anon_sym_i128] = ACTIONS(2556), + [anon_sym_isize] = ACTIONS(2556), + [anon_sym_usize] = ACTIONS(2556), + [anon_sym_f32] = ACTIONS(2556), + [anon_sym_f64] = ACTIONS(2556), + [anon_sym_bool] = ACTIONS(2556), + [anon_sym_str] = ACTIONS(2556), + [anon_sym_char] = ACTIONS(2556), + [anon_sym_DASH] = ACTIONS(2554), + [anon_sym_BANG] = ACTIONS(2554), + [anon_sym_AMP] = ACTIONS(2554), + [anon_sym_PIPE] = ACTIONS(2554), + [anon_sym_LT] = ACTIONS(2554), + [anon_sym_DOT_DOT] = ACTIONS(2554), + [anon_sym_COLON_COLON] = ACTIONS(2554), + [anon_sym_POUND] = ACTIONS(2554), + [anon_sym_SQUOTE] = ACTIONS(2556), + [anon_sym_async] = ACTIONS(2556), + [anon_sym_break] = ACTIONS(2556), + [anon_sym_const] = ACTIONS(2556), + [anon_sym_continue] = ACTIONS(2556), + [anon_sym_default] = ACTIONS(2556), + [anon_sym_enum] = ACTIONS(2556), + [anon_sym_fn] = ACTIONS(2556), + [anon_sym_for] = ACTIONS(2556), + [anon_sym_gen] = ACTIONS(2556), + [anon_sym_if] = ACTIONS(2556), + [anon_sym_impl] = ACTIONS(2556), + [anon_sym_let] = ACTIONS(2556), + [anon_sym_loop] = ACTIONS(2556), + [anon_sym_match] = ACTIONS(2556), + [anon_sym_mod] = ACTIONS(2556), + [anon_sym_pub] = ACTIONS(2556), + [anon_sym_return] = ACTIONS(2556), + [anon_sym_static] = ACTIONS(2556), + [anon_sym_struct] = ACTIONS(2556), + [anon_sym_trait] = ACTIONS(2556), + [anon_sym_type] = ACTIONS(2556), + [anon_sym_union] = ACTIONS(2556), + [anon_sym_unsafe] = ACTIONS(2556), + [anon_sym_use] = ACTIONS(2556), + [anon_sym_while] = ACTIONS(2556), + [anon_sym_extern] = ACTIONS(2556), + [anon_sym_safe] = ACTIONS(2556), + [anon_sym_yield] = ACTIONS(2556), + [anon_sym_move] = ACTIONS(2556), + [anon_sym_try] = ACTIONS(2556), + [sym_integer_literal] = ACTIONS(2554), + [aux_sym_string_literal_token1] = ACTIONS(2554), + [sym_char_literal] = ACTIONS(2554), + [anon_sym_true] = ACTIONS(2556), + [anon_sym_false] = ACTIONS(2556), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(2556), + [sym_super] = ACTIONS(2556), + [sym_crate] = ACTIONS(2556), + [sym_metavariable] = ACTIONS(2554), + [sym__raw_string_literal_start] = ACTIONS(2554), + [sym_float_literal] = ACTIONS(2554), }, [STATE(656)] = { [sym_line_comment] = STATE(656), [sym_block_comment] = STATE(656), - [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_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_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(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [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), + [ts_builtin_sym_end] = ACTIONS(2558), + [sym_identifier] = ACTIONS(2560), + [anon_sym_SEMI] = ACTIONS(2558), + [anon_sym_macro_rules_BANG] = ACTIONS(2558), + [anon_sym_LPAREN] = ACTIONS(2558), + [anon_sym_LBRACK] = ACTIONS(2558), + [anon_sym_LBRACE] = ACTIONS(2558), + [anon_sym_RBRACE] = ACTIONS(2558), + [anon_sym_STAR] = ACTIONS(2558), + [anon_sym_u8] = ACTIONS(2560), + [anon_sym_i8] = ACTIONS(2560), + [anon_sym_u16] = ACTIONS(2560), + [anon_sym_i16] = ACTIONS(2560), + [anon_sym_u32] = ACTIONS(2560), + [anon_sym_i32] = ACTIONS(2560), + [anon_sym_u64] = ACTIONS(2560), + [anon_sym_i64] = ACTIONS(2560), + [anon_sym_u128] = ACTIONS(2560), + [anon_sym_i128] = ACTIONS(2560), + [anon_sym_isize] = ACTIONS(2560), + [anon_sym_usize] = ACTIONS(2560), + [anon_sym_f32] = ACTIONS(2560), + [anon_sym_f64] = ACTIONS(2560), + [anon_sym_bool] = ACTIONS(2560), + [anon_sym_str] = ACTIONS(2560), + [anon_sym_char] = ACTIONS(2560), + [anon_sym_DASH] = ACTIONS(2558), + [anon_sym_BANG] = ACTIONS(2558), + [anon_sym_AMP] = ACTIONS(2558), + [anon_sym_PIPE] = ACTIONS(2558), + [anon_sym_LT] = ACTIONS(2558), + [anon_sym_DOT_DOT] = ACTIONS(2558), + [anon_sym_COLON_COLON] = ACTIONS(2558), + [anon_sym_POUND] = ACTIONS(2558), + [anon_sym_SQUOTE] = ACTIONS(2560), + [anon_sym_async] = ACTIONS(2560), + [anon_sym_break] = ACTIONS(2560), + [anon_sym_const] = ACTIONS(2560), + [anon_sym_continue] = ACTIONS(2560), + [anon_sym_default] = ACTIONS(2560), + [anon_sym_enum] = ACTIONS(2560), + [anon_sym_fn] = ACTIONS(2560), + [anon_sym_for] = ACTIONS(2560), + [anon_sym_gen] = ACTIONS(2560), + [anon_sym_if] = ACTIONS(2560), + [anon_sym_impl] = ACTIONS(2560), + [anon_sym_let] = ACTIONS(2560), + [anon_sym_loop] = ACTIONS(2560), + [anon_sym_match] = ACTIONS(2560), + [anon_sym_mod] = ACTIONS(2560), + [anon_sym_pub] = ACTIONS(2560), + [anon_sym_return] = ACTIONS(2560), + [anon_sym_static] = ACTIONS(2560), + [anon_sym_struct] = ACTIONS(2560), + [anon_sym_trait] = ACTIONS(2560), + [anon_sym_type] = ACTIONS(2560), + [anon_sym_union] = ACTIONS(2560), + [anon_sym_unsafe] = ACTIONS(2560), + [anon_sym_use] = ACTIONS(2560), + [anon_sym_while] = ACTIONS(2560), + [anon_sym_extern] = ACTIONS(2560), + [anon_sym_safe] = ACTIONS(2560), + [anon_sym_yield] = ACTIONS(2560), + [anon_sym_move] = ACTIONS(2560), + [anon_sym_try] = ACTIONS(2560), + [sym_integer_literal] = ACTIONS(2558), + [aux_sym_string_literal_token1] = ACTIONS(2558), + [sym_char_literal] = ACTIONS(2558), + [anon_sym_true] = ACTIONS(2560), + [anon_sym_false] = ACTIONS(2560), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(2560), + [sym_super] = ACTIONS(2560), + [sym_crate] = ACTIONS(2560), + [sym_metavariable] = ACTIONS(2558), + [sym__raw_string_literal_start] = ACTIONS(2558), + [sym_float_literal] = ACTIONS(2558), }, [STATE(657)] = { [sym_line_comment] = STATE(657), [sym_block_comment] = STATE(657), - [ts_builtin_sym_end] = ACTIONS(1395), - [sym_identifier] = ACTIONS(1397), - [anon_sym_SEMI] = ACTIONS(1395), - [anon_sym_macro_rules_BANG] = ACTIONS(1395), - [anon_sym_LPAREN] = ACTIONS(1395), - [anon_sym_LBRACK] = ACTIONS(1395), - [anon_sym_LBRACE] = ACTIONS(1395), - [anon_sym_RBRACE] = ACTIONS(1395), - [anon_sym_STAR] = ACTIONS(1395), - [anon_sym_u8] = ACTIONS(1397), - [anon_sym_i8] = ACTIONS(1397), - [anon_sym_u16] = ACTIONS(1397), - [anon_sym_i16] = ACTIONS(1397), - [anon_sym_u32] = ACTIONS(1397), - [anon_sym_i32] = ACTIONS(1397), - [anon_sym_u64] = ACTIONS(1397), - [anon_sym_i64] = ACTIONS(1397), - [anon_sym_u128] = ACTIONS(1397), - [anon_sym_i128] = ACTIONS(1397), - [anon_sym_isize] = ACTIONS(1397), - [anon_sym_usize] = ACTIONS(1397), - [anon_sym_f32] = ACTIONS(1397), - [anon_sym_f64] = ACTIONS(1397), - [anon_sym_bool] = ACTIONS(1397), - [anon_sym_str] = ACTIONS(1397), - [anon_sym_char] = ACTIONS(1397), - [anon_sym_DASH] = ACTIONS(1395), - [anon_sym_BANG] = ACTIONS(1395), - [anon_sym_AMP] = ACTIONS(1395), - [anon_sym_PIPE] = ACTIONS(1395), - [anon_sym_LT] = ACTIONS(1395), - [anon_sym_DOT_DOT] = ACTIONS(1395), - [anon_sym_COLON_COLON] = ACTIONS(1395), - [anon_sym_POUND] = ACTIONS(1395), - [anon_sym_SQUOTE] = ACTIONS(1397), - [anon_sym_async] = ACTIONS(1397), - [anon_sym_break] = ACTIONS(1397), - [anon_sym_const] = ACTIONS(1397), - [anon_sym_continue] = ACTIONS(1397), - [anon_sym_default] = ACTIONS(1397), - [anon_sym_enum] = ACTIONS(1397), - [anon_sym_fn] = ACTIONS(1397), - [anon_sym_for] = ACTIONS(1397), - [anon_sym_gen] = ACTIONS(1397), - [anon_sym_if] = ACTIONS(1397), - [anon_sym_impl] = ACTIONS(1397), - [anon_sym_let] = ACTIONS(1397), - [anon_sym_loop] = ACTIONS(1397), - [anon_sym_match] = ACTIONS(1397), - [anon_sym_mod] = ACTIONS(1397), - [anon_sym_pub] = ACTIONS(1397), - [anon_sym_return] = ACTIONS(1397), - [anon_sym_static] = ACTIONS(1397), - [anon_sym_struct] = ACTIONS(1397), - [anon_sym_trait] = ACTIONS(1397), - [anon_sym_type] = ACTIONS(1397), - [anon_sym_union] = ACTIONS(1397), - [anon_sym_unsafe] = ACTIONS(1397), - [anon_sym_use] = ACTIONS(1397), - [anon_sym_while] = ACTIONS(1397), - [anon_sym_extern] = ACTIONS(1397), - [anon_sym_yield] = ACTIONS(1397), - [anon_sym_move] = ACTIONS(1397), - [anon_sym_try] = ACTIONS(1397), - [sym_integer_literal] = ACTIONS(1395), - [aux_sym_string_literal_token1] = ACTIONS(1395), - [sym_char_literal] = ACTIONS(1395), - [anon_sym_true] = ACTIONS(1397), - [anon_sym_false] = ACTIONS(1397), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1397), - [sym_super] = ACTIONS(1397), - [sym_crate] = ACTIONS(1397), - [sym_metavariable] = ACTIONS(1395), - [sym__raw_string_literal_start] = ACTIONS(1395), - [sym_float_literal] = ACTIONS(1395), + [ts_builtin_sym_end] = ACTIONS(2562), + [sym_identifier] = ACTIONS(2564), + [anon_sym_SEMI] = ACTIONS(2562), + [anon_sym_macro_rules_BANG] = ACTIONS(2562), + [anon_sym_LPAREN] = ACTIONS(2562), + [anon_sym_LBRACK] = ACTIONS(2562), + [anon_sym_LBRACE] = ACTIONS(2562), + [anon_sym_RBRACE] = ACTIONS(2562), + [anon_sym_STAR] = ACTIONS(2562), + [anon_sym_u8] = ACTIONS(2564), + [anon_sym_i8] = ACTIONS(2564), + [anon_sym_u16] = ACTIONS(2564), + [anon_sym_i16] = ACTIONS(2564), + [anon_sym_u32] = ACTIONS(2564), + [anon_sym_i32] = ACTIONS(2564), + [anon_sym_u64] = ACTIONS(2564), + [anon_sym_i64] = ACTIONS(2564), + [anon_sym_u128] = ACTIONS(2564), + [anon_sym_i128] = ACTIONS(2564), + [anon_sym_isize] = ACTIONS(2564), + [anon_sym_usize] = ACTIONS(2564), + [anon_sym_f32] = ACTIONS(2564), + [anon_sym_f64] = ACTIONS(2564), + [anon_sym_bool] = ACTIONS(2564), + [anon_sym_str] = ACTIONS(2564), + [anon_sym_char] = ACTIONS(2564), + [anon_sym_DASH] = ACTIONS(2562), + [anon_sym_BANG] = ACTIONS(2562), + [anon_sym_AMP] = ACTIONS(2562), + [anon_sym_PIPE] = ACTIONS(2562), + [anon_sym_LT] = ACTIONS(2562), + [anon_sym_DOT_DOT] = ACTIONS(2562), + [anon_sym_COLON_COLON] = ACTIONS(2562), + [anon_sym_POUND] = ACTIONS(2562), + [anon_sym_SQUOTE] = ACTIONS(2564), + [anon_sym_async] = ACTIONS(2564), + [anon_sym_break] = ACTIONS(2564), + [anon_sym_const] = ACTIONS(2564), + [anon_sym_continue] = ACTIONS(2564), + [anon_sym_default] = ACTIONS(2564), + [anon_sym_enum] = ACTIONS(2564), + [anon_sym_fn] = ACTIONS(2564), + [anon_sym_for] = ACTIONS(2564), + [anon_sym_gen] = ACTIONS(2564), + [anon_sym_if] = ACTIONS(2564), + [anon_sym_impl] = ACTIONS(2564), + [anon_sym_let] = ACTIONS(2564), + [anon_sym_loop] = ACTIONS(2564), + [anon_sym_match] = ACTIONS(2564), + [anon_sym_mod] = ACTIONS(2564), + [anon_sym_pub] = ACTIONS(2564), + [anon_sym_return] = ACTIONS(2564), + [anon_sym_static] = ACTIONS(2564), + [anon_sym_struct] = ACTIONS(2564), + [anon_sym_trait] = ACTIONS(2564), + [anon_sym_type] = ACTIONS(2564), + [anon_sym_union] = ACTIONS(2564), + [anon_sym_unsafe] = ACTIONS(2564), + [anon_sym_use] = ACTIONS(2564), + [anon_sym_while] = ACTIONS(2564), + [anon_sym_extern] = ACTIONS(2564), + [anon_sym_safe] = ACTIONS(2564), + [anon_sym_yield] = ACTIONS(2564), + [anon_sym_move] = ACTIONS(2564), + [anon_sym_try] = ACTIONS(2564), + [sym_integer_literal] = ACTIONS(2562), + [aux_sym_string_literal_token1] = ACTIONS(2562), + [sym_char_literal] = ACTIONS(2562), + [anon_sym_true] = ACTIONS(2564), + [anon_sym_false] = ACTIONS(2564), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(2564), + [sym_super] = ACTIONS(2564), + [sym_crate] = ACTIONS(2564), + [sym_metavariable] = ACTIONS(2562), + [sym__raw_string_literal_start] = ACTIONS(2562), + [sym_float_literal] = ACTIONS(2562), }, [STATE(658)] = { [sym_line_comment] = STATE(658), [sym_block_comment] = STATE(658), - [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_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_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(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [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), + [ts_builtin_sym_end] = ACTIONS(2566), + [sym_identifier] = ACTIONS(2568), + [anon_sym_SEMI] = ACTIONS(2566), + [anon_sym_macro_rules_BANG] = ACTIONS(2566), + [anon_sym_LPAREN] = ACTIONS(2566), + [anon_sym_LBRACK] = ACTIONS(2566), + [anon_sym_LBRACE] = ACTIONS(2566), + [anon_sym_RBRACE] = ACTIONS(2566), + [anon_sym_STAR] = ACTIONS(2566), + [anon_sym_u8] = ACTIONS(2568), + [anon_sym_i8] = ACTIONS(2568), + [anon_sym_u16] = ACTIONS(2568), + [anon_sym_i16] = ACTIONS(2568), + [anon_sym_u32] = ACTIONS(2568), + [anon_sym_i32] = ACTIONS(2568), + [anon_sym_u64] = ACTIONS(2568), + [anon_sym_i64] = ACTIONS(2568), + [anon_sym_u128] = ACTIONS(2568), + [anon_sym_i128] = ACTIONS(2568), + [anon_sym_isize] = ACTIONS(2568), + [anon_sym_usize] = ACTIONS(2568), + [anon_sym_f32] = ACTIONS(2568), + [anon_sym_f64] = ACTIONS(2568), + [anon_sym_bool] = ACTIONS(2568), + [anon_sym_str] = ACTIONS(2568), + [anon_sym_char] = ACTIONS(2568), + [anon_sym_DASH] = ACTIONS(2566), + [anon_sym_BANG] = ACTIONS(2566), + [anon_sym_AMP] = ACTIONS(2566), + [anon_sym_PIPE] = ACTIONS(2566), + [anon_sym_LT] = ACTIONS(2566), + [anon_sym_DOT_DOT] = ACTIONS(2566), + [anon_sym_COLON_COLON] = ACTIONS(2566), + [anon_sym_POUND] = ACTIONS(2566), + [anon_sym_SQUOTE] = ACTIONS(2568), + [anon_sym_async] = ACTIONS(2568), + [anon_sym_break] = ACTIONS(2568), + [anon_sym_const] = ACTIONS(2568), + [anon_sym_continue] = ACTIONS(2568), + [anon_sym_default] = ACTIONS(2568), + [anon_sym_enum] = ACTIONS(2568), + [anon_sym_fn] = ACTIONS(2568), + [anon_sym_for] = ACTIONS(2568), + [anon_sym_gen] = ACTIONS(2568), + [anon_sym_if] = ACTIONS(2568), + [anon_sym_impl] = ACTIONS(2568), + [anon_sym_let] = ACTIONS(2568), + [anon_sym_loop] = ACTIONS(2568), + [anon_sym_match] = ACTIONS(2568), + [anon_sym_mod] = ACTIONS(2568), + [anon_sym_pub] = ACTIONS(2568), + [anon_sym_return] = ACTIONS(2568), + [anon_sym_static] = ACTIONS(2568), + [anon_sym_struct] = ACTIONS(2568), + [anon_sym_trait] = ACTIONS(2568), + [anon_sym_type] = ACTIONS(2568), + [anon_sym_union] = ACTIONS(2568), + [anon_sym_unsafe] = ACTIONS(2568), + [anon_sym_use] = ACTIONS(2568), + [anon_sym_while] = ACTIONS(2568), + [anon_sym_extern] = ACTIONS(2568), + [anon_sym_safe] = ACTIONS(2568), + [anon_sym_yield] = ACTIONS(2568), + [anon_sym_move] = ACTIONS(2568), + [anon_sym_try] = ACTIONS(2568), + [sym_integer_literal] = ACTIONS(2566), + [aux_sym_string_literal_token1] = ACTIONS(2566), + [sym_char_literal] = ACTIONS(2566), + [anon_sym_true] = ACTIONS(2568), + [anon_sym_false] = ACTIONS(2568), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(2568), + [sym_super] = ACTIONS(2568), + [sym_crate] = ACTIONS(2568), + [sym_metavariable] = ACTIONS(2566), + [sym__raw_string_literal_start] = ACTIONS(2566), + [sym_float_literal] = ACTIONS(2566), }, [STATE(659)] = { [sym_line_comment] = STATE(659), [sym_block_comment] = STATE(659), - [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_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_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(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [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), + [ts_builtin_sym_end] = ACTIONS(2570), + [sym_identifier] = ACTIONS(2572), + [anon_sym_SEMI] = ACTIONS(2570), + [anon_sym_macro_rules_BANG] = ACTIONS(2570), + [anon_sym_LPAREN] = ACTIONS(2570), + [anon_sym_LBRACK] = ACTIONS(2570), + [anon_sym_LBRACE] = ACTIONS(2570), + [anon_sym_RBRACE] = ACTIONS(2570), + [anon_sym_STAR] = ACTIONS(2570), + [anon_sym_u8] = ACTIONS(2572), + [anon_sym_i8] = ACTIONS(2572), + [anon_sym_u16] = ACTIONS(2572), + [anon_sym_i16] = ACTIONS(2572), + [anon_sym_u32] = ACTIONS(2572), + [anon_sym_i32] = ACTIONS(2572), + [anon_sym_u64] = ACTIONS(2572), + [anon_sym_i64] = ACTIONS(2572), + [anon_sym_u128] = ACTIONS(2572), + [anon_sym_i128] = ACTIONS(2572), + [anon_sym_isize] = ACTIONS(2572), + [anon_sym_usize] = ACTIONS(2572), + [anon_sym_f32] = ACTIONS(2572), + [anon_sym_f64] = ACTIONS(2572), + [anon_sym_bool] = ACTIONS(2572), + [anon_sym_str] = ACTIONS(2572), + [anon_sym_char] = ACTIONS(2572), + [anon_sym_DASH] = ACTIONS(2570), + [anon_sym_BANG] = ACTIONS(2570), + [anon_sym_AMP] = ACTIONS(2570), + [anon_sym_PIPE] = ACTIONS(2570), + [anon_sym_LT] = ACTIONS(2570), + [anon_sym_DOT_DOT] = ACTIONS(2570), + [anon_sym_COLON_COLON] = ACTIONS(2570), + [anon_sym_POUND] = ACTIONS(2570), + [anon_sym_SQUOTE] = ACTIONS(2572), + [anon_sym_async] = ACTIONS(2572), + [anon_sym_break] = ACTIONS(2572), + [anon_sym_const] = ACTIONS(2572), + [anon_sym_continue] = ACTIONS(2572), + [anon_sym_default] = ACTIONS(2572), + [anon_sym_enum] = ACTIONS(2572), + [anon_sym_fn] = ACTIONS(2572), + [anon_sym_for] = ACTIONS(2572), + [anon_sym_gen] = ACTIONS(2572), + [anon_sym_if] = ACTIONS(2572), + [anon_sym_impl] = ACTIONS(2572), + [anon_sym_let] = ACTIONS(2572), + [anon_sym_loop] = ACTIONS(2572), + [anon_sym_match] = ACTIONS(2572), + [anon_sym_mod] = ACTIONS(2572), + [anon_sym_pub] = ACTIONS(2572), + [anon_sym_return] = ACTIONS(2572), + [anon_sym_static] = ACTIONS(2572), + [anon_sym_struct] = ACTIONS(2572), + [anon_sym_trait] = ACTIONS(2572), + [anon_sym_type] = ACTIONS(2572), + [anon_sym_union] = ACTIONS(2572), + [anon_sym_unsafe] = ACTIONS(2572), + [anon_sym_use] = ACTIONS(2572), + [anon_sym_while] = ACTIONS(2572), + [anon_sym_extern] = ACTIONS(2572), + [anon_sym_safe] = ACTIONS(2572), + [anon_sym_yield] = ACTIONS(2572), + [anon_sym_move] = ACTIONS(2572), + [anon_sym_try] = ACTIONS(2572), + [sym_integer_literal] = ACTIONS(2570), + [aux_sym_string_literal_token1] = ACTIONS(2570), + [sym_char_literal] = ACTIONS(2570), + [anon_sym_true] = ACTIONS(2572), + [anon_sym_false] = ACTIONS(2572), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(2572), + [sym_super] = ACTIONS(2572), + [sym_crate] = ACTIONS(2572), + [sym_metavariable] = ACTIONS(2570), + [sym__raw_string_literal_start] = ACTIONS(2570), + [sym_float_literal] = ACTIONS(2570), }, [STATE(660)] = { - [sym_empty_statement] = STATE(1090), - [sym_macro_definition] = STATE(1090), - [sym_attribute_item] = STATE(1090), - [sym_inner_attribute_item] = STATE(1090), - [sym_mod_item] = STATE(1090), - [sym_foreign_mod_item] = STATE(1090), - [sym_struct_item] = STATE(1090), - [sym_union_item] = STATE(1090), - [sym_enum_item] = STATE(1090), - [sym_extern_crate_declaration] = STATE(1090), - [sym_const_item] = STATE(1090), - [sym_static_item] = STATE(1090), - [sym_type_item] = STATE(1090), - [sym_function_item] = STATE(1090), - [sym_function_signature_item] = STATE(1090), - [sym_function_modifiers] = STATE(3720), - [sym_impl_item] = STATE(1090), - [sym_trait_item] = STATE(1090), - [sym_associated_type] = STATE(1090), - [sym_let_declaration] = STATE(1090), - [sym_use_declaration] = STATE(1090), - [sym_extern_modifier] = STATE(2229), - [sym_visibility_modifier] = STATE(1997), - [sym_bracketed_type] = STATE(3441), - [sym_generic_type_with_turbofish] = STATE(3467), - [sym_macro_invocation] = STATE(1090), - [sym_scoped_identifier] = STATE(3306), [sym_line_comment] = STATE(660), [sym_block_comment] = STATE(660), - [aux_sym_declaration_list_repeat1] = STATE(685), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(2544), - [anon_sym_SEMI] = ACTIONS(2546), - [anon_sym_macro_rules_BANG] = ACTIONS(2548), - [anon_sym_RBRACE] = ACTIONS(2550), - [anon_sym_u8] = ACTIONS(2552), - [anon_sym_i8] = ACTIONS(2552), - [anon_sym_u16] = ACTIONS(2552), - [anon_sym_i16] = ACTIONS(2552), - [anon_sym_u32] = ACTIONS(2552), - [anon_sym_i32] = ACTIONS(2552), - [anon_sym_u64] = ACTIONS(2552), - [anon_sym_i64] = ACTIONS(2552), - [anon_sym_u128] = ACTIONS(2552), - [anon_sym_i128] = ACTIONS(2552), - [anon_sym_isize] = ACTIONS(2552), - [anon_sym_usize] = ACTIONS(2552), - [anon_sym_f32] = ACTIONS(2552), - [anon_sym_f64] = ACTIONS(2552), - [anon_sym_bool] = ACTIONS(2552), - [anon_sym_str] = ACTIONS(2552), - [anon_sym_char] = ACTIONS(2552), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(2554), - [anon_sym_POUND] = ACTIONS(2556), - [anon_sym_async] = ACTIONS(1265), - [anon_sym_const] = ACTIONS(2558), - [anon_sym_default] = ACTIONS(2560), - [anon_sym_enum] = ACTIONS(2562), - [anon_sym_fn] = ACTIONS(2564), - [anon_sym_gen] = ACTIONS(2566), - [anon_sym_impl] = ACTIONS(2568), - [anon_sym_let] = ACTIONS(2570), - [anon_sym_mod] = ACTIONS(2572), - [anon_sym_pub] = ACTIONS(69), - [anon_sym_static] = ACTIONS(2574), + [ts_builtin_sym_end] = ACTIONS(2574), + [sym_identifier] = ACTIONS(2576), + [anon_sym_SEMI] = ACTIONS(2574), + [anon_sym_macro_rules_BANG] = ACTIONS(2574), + [anon_sym_LPAREN] = ACTIONS(2574), + [anon_sym_LBRACK] = ACTIONS(2574), + [anon_sym_LBRACE] = ACTIONS(2574), + [anon_sym_RBRACE] = ACTIONS(2574), + [anon_sym_STAR] = ACTIONS(2574), + [anon_sym_u8] = ACTIONS(2576), + [anon_sym_i8] = ACTIONS(2576), + [anon_sym_u16] = ACTIONS(2576), + [anon_sym_i16] = ACTIONS(2576), + [anon_sym_u32] = ACTIONS(2576), + [anon_sym_i32] = ACTIONS(2576), + [anon_sym_u64] = ACTIONS(2576), + [anon_sym_i64] = ACTIONS(2576), + [anon_sym_u128] = ACTIONS(2576), + [anon_sym_i128] = ACTIONS(2576), + [anon_sym_isize] = ACTIONS(2576), + [anon_sym_usize] = ACTIONS(2576), + [anon_sym_f32] = ACTIONS(2576), + [anon_sym_f64] = ACTIONS(2576), + [anon_sym_bool] = ACTIONS(2576), + [anon_sym_str] = ACTIONS(2576), + [anon_sym_char] = ACTIONS(2576), + [anon_sym_DASH] = ACTIONS(2574), + [anon_sym_BANG] = ACTIONS(2574), + [anon_sym_AMP] = ACTIONS(2574), + [anon_sym_PIPE] = ACTIONS(2574), + [anon_sym_LT] = ACTIONS(2574), + [anon_sym_DOT_DOT] = ACTIONS(2574), + [anon_sym_COLON_COLON] = ACTIONS(2574), + [anon_sym_POUND] = ACTIONS(2574), + [anon_sym_SQUOTE] = ACTIONS(2576), + [anon_sym_async] = ACTIONS(2576), + [anon_sym_break] = ACTIONS(2576), + [anon_sym_const] = ACTIONS(2576), + [anon_sym_continue] = ACTIONS(2576), + [anon_sym_default] = ACTIONS(2576), + [anon_sym_enum] = ACTIONS(2576), + [anon_sym_fn] = ACTIONS(2576), + [anon_sym_for] = ACTIONS(2576), + [anon_sym_gen] = ACTIONS(2576), + [anon_sym_if] = ACTIONS(2576), + [anon_sym_impl] = ACTIONS(2576), + [anon_sym_let] = ACTIONS(2576), + [anon_sym_loop] = ACTIONS(2576), + [anon_sym_match] = ACTIONS(2576), + [anon_sym_mod] = ACTIONS(2576), + [anon_sym_pub] = ACTIONS(2576), + [anon_sym_return] = ACTIONS(2576), + [anon_sym_static] = ACTIONS(2576), [anon_sym_struct] = ACTIONS(2576), - [anon_sym_trait] = ACTIONS(2578), - [anon_sym_type] = ACTIONS(2580), - [anon_sym_union] = ACTIONS(2582), - [anon_sym_unsafe] = ACTIONS(2584), - [anon_sym_use] = ACTIONS(2586), - [anon_sym_extern] = ACTIONS(2588), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2590), - [sym_super] = ACTIONS(2590), - [sym_crate] = ACTIONS(2592), - [sym_metavariable] = ACTIONS(2594), + [anon_sym_trait] = ACTIONS(2576), + [anon_sym_type] = ACTIONS(2576), + [anon_sym_union] = ACTIONS(2576), + [anon_sym_unsafe] = ACTIONS(2576), + [anon_sym_use] = ACTIONS(2576), + [anon_sym_while] = ACTIONS(2576), + [anon_sym_extern] = ACTIONS(2576), + [anon_sym_safe] = ACTIONS(2576), + [anon_sym_yield] = ACTIONS(2576), + [anon_sym_move] = ACTIONS(2576), + [anon_sym_try] = ACTIONS(2576), + [sym_integer_literal] = ACTIONS(2574), + [aux_sym_string_literal_token1] = ACTIONS(2574), + [sym_char_literal] = ACTIONS(2574), + [anon_sym_true] = ACTIONS(2576), + [anon_sym_false] = ACTIONS(2576), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(2576), + [sym_super] = ACTIONS(2576), + [sym_crate] = ACTIONS(2576), + [sym_metavariable] = ACTIONS(2574), + [sym__raw_string_literal_start] = ACTIONS(2574), + [sym_float_literal] = ACTIONS(2574), }, [STATE(661)] = { [sym_line_comment] = STATE(661), [sym_block_comment] = STATE(661), - [ts_builtin_sym_end] = ACTIONS(2596), - [sym_identifier] = ACTIONS(2598), - [anon_sym_SEMI] = ACTIONS(2596), - [anon_sym_macro_rules_BANG] = ACTIONS(2596), - [anon_sym_LPAREN] = ACTIONS(2596), - [anon_sym_LBRACK] = ACTIONS(2596), - [anon_sym_LBRACE] = ACTIONS(2596), - [anon_sym_RBRACE] = ACTIONS(2596), - [anon_sym_STAR] = ACTIONS(2596), - [anon_sym_u8] = ACTIONS(2598), - [anon_sym_i8] = ACTIONS(2598), - [anon_sym_u16] = ACTIONS(2598), - [anon_sym_i16] = ACTIONS(2598), - [anon_sym_u32] = ACTIONS(2598), - [anon_sym_i32] = ACTIONS(2598), - [anon_sym_u64] = ACTIONS(2598), - [anon_sym_i64] = ACTIONS(2598), - [anon_sym_u128] = ACTIONS(2598), - [anon_sym_i128] = ACTIONS(2598), - [anon_sym_isize] = ACTIONS(2598), - [anon_sym_usize] = ACTIONS(2598), - [anon_sym_f32] = ACTIONS(2598), - [anon_sym_f64] = ACTIONS(2598), - [anon_sym_bool] = ACTIONS(2598), - [anon_sym_str] = ACTIONS(2598), - [anon_sym_char] = ACTIONS(2598), - [anon_sym_DASH] = ACTIONS(2596), - [anon_sym_BANG] = ACTIONS(2596), - [anon_sym_AMP] = ACTIONS(2596), - [anon_sym_PIPE] = ACTIONS(2596), - [anon_sym_LT] = ACTIONS(2596), - [anon_sym_DOT_DOT] = ACTIONS(2596), - [anon_sym_COLON_COLON] = ACTIONS(2596), - [anon_sym_POUND] = ACTIONS(2596), - [anon_sym_SQUOTE] = ACTIONS(2598), - [anon_sym_async] = ACTIONS(2598), - [anon_sym_break] = ACTIONS(2598), - [anon_sym_const] = ACTIONS(2598), - [anon_sym_continue] = ACTIONS(2598), - [anon_sym_default] = ACTIONS(2598), - [anon_sym_enum] = ACTIONS(2598), - [anon_sym_fn] = ACTIONS(2598), - [anon_sym_for] = ACTIONS(2598), - [anon_sym_gen] = ACTIONS(2598), - [anon_sym_if] = ACTIONS(2598), - [anon_sym_impl] = ACTIONS(2598), - [anon_sym_let] = ACTIONS(2598), - [anon_sym_loop] = ACTIONS(2598), - [anon_sym_match] = ACTIONS(2598), - [anon_sym_mod] = ACTIONS(2598), - [anon_sym_pub] = ACTIONS(2598), - [anon_sym_return] = ACTIONS(2598), - [anon_sym_static] = ACTIONS(2598), - [anon_sym_struct] = ACTIONS(2598), - [anon_sym_trait] = ACTIONS(2598), - [anon_sym_type] = ACTIONS(2598), - [anon_sym_union] = ACTIONS(2598), - [anon_sym_unsafe] = ACTIONS(2598), - [anon_sym_use] = ACTIONS(2598), - [anon_sym_while] = ACTIONS(2598), - [anon_sym_extern] = ACTIONS(2598), - [anon_sym_yield] = ACTIONS(2598), - [anon_sym_move] = ACTIONS(2598), - [anon_sym_try] = ACTIONS(2598), - [sym_integer_literal] = ACTIONS(2596), - [aux_sym_string_literal_token1] = ACTIONS(2596), - [sym_char_literal] = ACTIONS(2596), - [anon_sym_true] = ACTIONS(2598), - [anon_sym_false] = ACTIONS(2598), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2598), - [sym_super] = ACTIONS(2598), - [sym_crate] = ACTIONS(2598), - [sym_metavariable] = ACTIONS(2596), - [sym__raw_string_literal_start] = ACTIONS(2596), - [sym_float_literal] = ACTIONS(2596), + [ts_builtin_sym_end] = ACTIONS(2578), + [sym_identifier] = ACTIONS(2580), + [anon_sym_SEMI] = ACTIONS(2578), + [anon_sym_macro_rules_BANG] = ACTIONS(2578), + [anon_sym_LPAREN] = ACTIONS(2578), + [anon_sym_LBRACK] = ACTIONS(2578), + [anon_sym_LBRACE] = ACTIONS(2578), + [anon_sym_RBRACE] = ACTIONS(2578), + [anon_sym_STAR] = ACTIONS(2578), + [anon_sym_u8] = ACTIONS(2580), + [anon_sym_i8] = ACTIONS(2580), + [anon_sym_u16] = ACTIONS(2580), + [anon_sym_i16] = ACTIONS(2580), + [anon_sym_u32] = ACTIONS(2580), + [anon_sym_i32] = ACTIONS(2580), + [anon_sym_u64] = ACTIONS(2580), + [anon_sym_i64] = ACTIONS(2580), + [anon_sym_u128] = ACTIONS(2580), + [anon_sym_i128] = ACTIONS(2580), + [anon_sym_isize] = ACTIONS(2580), + [anon_sym_usize] = ACTIONS(2580), + [anon_sym_f32] = ACTIONS(2580), + [anon_sym_f64] = ACTIONS(2580), + [anon_sym_bool] = ACTIONS(2580), + [anon_sym_str] = ACTIONS(2580), + [anon_sym_char] = ACTIONS(2580), + [anon_sym_DASH] = ACTIONS(2578), + [anon_sym_BANG] = ACTIONS(2578), + [anon_sym_AMP] = ACTIONS(2578), + [anon_sym_PIPE] = ACTIONS(2578), + [anon_sym_LT] = ACTIONS(2578), + [anon_sym_DOT_DOT] = ACTIONS(2578), + [anon_sym_COLON_COLON] = ACTIONS(2578), + [anon_sym_POUND] = ACTIONS(2578), + [anon_sym_SQUOTE] = ACTIONS(2580), + [anon_sym_async] = ACTIONS(2580), + [anon_sym_break] = ACTIONS(2580), + [anon_sym_const] = ACTIONS(2580), + [anon_sym_continue] = ACTIONS(2580), + [anon_sym_default] = ACTIONS(2580), + [anon_sym_enum] = ACTIONS(2580), + [anon_sym_fn] = ACTIONS(2580), + [anon_sym_for] = ACTIONS(2580), + [anon_sym_gen] = ACTIONS(2580), + [anon_sym_if] = ACTIONS(2580), + [anon_sym_impl] = ACTIONS(2580), + [anon_sym_let] = ACTIONS(2580), + [anon_sym_loop] = ACTIONS(2580), + [anon_sym_match] = ACTIONS(2580), + [anon_sym_mod] = ACTIONS(2580), + [anon_sym_pub] = ACTIONS(2580), + [anon_sym_return] = ACTIONS(2580), + [anon_sym_static] = ACTIONS(2580), + [anon_sym_struct] = ACTIONS(2580), + [anon_sym_trait] = ACTIONS(2580), + [anon_sym_type] = ACTIONS(2580), + [anon_sym_union] = ACTIONS(2580), + [anon_sym_unsafe] = ACTIONS(2580), + [anon_sym_use] = ACTIONS(2580), + [anon_sym_while] = ACTIONS(2580), + [anon_sym_extern] = ACTIONS(2580), + [anon_sym_safe] = ACTIONS(2580), + [anon_sym_yield] = ACTIONS(2580), + [anon_sym_move] = ACTIONS(2580), + [anon_sym_try] = ACTIONS(2580), + [sym_integer_literal] = ACTIONS(2578), + [aux_sym_string_literal_token1] = ACTIONS(2578), + [sym_char_literal] = ACTIONS(2578), + [anon_sym_true] = ACTIONS(2580), + [anon_sym_false] = ACTIONS(2580), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(2580), + [sym_super] = ACTIONS(2580), + [sym_crate] = ACTIONS(2580), + [sym_metavariable] = ACTIONS(2578), + [sym__raw_string_literal_start] = ACTIONS(2578), + [sym_float_literal] = ACTIONS(2578), }, [STATE(662)] = { [sym_line_comment] = STATE(662), [sym_block_comment] = STATE(662), - [ts_builtin_sym_end] = ACTIONS(1501), - [sym_identifier] = ACTIONS(1503), - [anon_sym_SEMI] = ACTIONS(1501), - [anon_sym_macro_rules_BANG] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(1501), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LBRACE] = ACTIONS(1501), - [anon_sym_RBRACE] = ACTIONS(1501), - [anon_sym_STAR] = ACTIONS(1501), - [anon_sym_u8] = ACTIONS(1503), - [anon_sym_i8] = ACTIONS(1503), - [anon_sym_u16] = ACTIONS(1503), - [anon_sym_i16] = ACTIONS(1503), - [anon_sym_u32] = ACTIONS(1503), - [anon_sym_i32] = ACTIONS(1503), - [anon_sym_u64] = ACTIONS(1503), - [anon_sym_i64] = ACTIONS(1503), - [anon_sym_u128] = ACTIONS(1503), - [anon_sym_i128] = ACTIONS(1503), - [anon_sym_isize] = ACTIONS(1503), - [anon_sym_usize] = ACTIONS(1503), - [anon_sym_f32] = ACTIONS(1503), - [anon_sym_f64] = ACTIONS(1503), - [anon_sym_bool] = ACTIONS(1503), - [anon_sym_str] = ACTIONS(1503), - [anon_sym_char] = ACTIONS(1503), - [anon_sym_DASH] = ACTIONS(1501), - [anon_sym_BANG] = ACTIONS(1501), - [anon_sym_AMP] = ACTIONS(1501), - [anon_sym_PIPE] = ACTIONS(1501), - [anon_sym_LT] = ACTIONS(1501), - [anon_sym_DOT_DOT] = ACTIONS(1501), - [anon_sym_COLON_COLON] = ACTIONS(1501), - [anon_sym_POUND] = ACTIONS(1501), - [anon_sym_SQUOTE] = ACTIONS(1503), - [anon_sym_async] = ACTIONS(1503), - [anon_sym_break] = ACTIONS(1503), - [anon_sym_const] = ACTIONS(1503), - [anon_sym_continue] = ACTIONS(1503), - [anon_sym_default] = ACTIONS(1503), - [anon_sym_enum] = ACTIONS(1503), - [anon_sym_fn] = ACTIONS(1503), - [anon_sym_for] = ACTIONS(1503), - [anon_sym_gen] = ACTIONS(1503), - [anon_sym_if] = ACTIONS(1503), - [anon_sym_impl] = ACTIONS(1503), - [anon_sym_let] = ACTIONS(1503), - [anon_sym_loop] = ACTIONS(1503), - [anon_sym_match] = ACTIONS(1503), - [anon_sym_mod] = ACTIONS(1503), - [anon_sym_pub] = ACTIONS(1503), - [anon_sym_return] = ACTIONS(1503), - [anon_sym_static] = ACTIONS(1503), - [anon_sym_struct] = ACTIONS(1503), - [anon_sym_trait] = ACTIONS(1503), - [anon_sym_type] = ACTIONS(1503), - [anon_sym_union] = ACTIONS(1503), - [anon_sym_unsafe] = ACTIONS(1503), - [anon_sym_use] = ACTIONS(1503), - [anon_sym_while] = ACTIONS(1503), - [anon_sym_extern] = ACTIONS(1503), - [anon_sym_yield] = ACTIONS(1503), - [anon_sym_move] = ACTIONS(1503), - [anon_sym_try] = ACTIONS(1503), - [sym_integer_literal] = ACTIONS(1501), - [aux_sym_string_literal_token1] = ACTIONS(1501), - [sym_char_literal] = ACTIONS(1501), - [anon_sym_true] = ACTIONS(1503), - [anon_sym_false] = ACTIONS(1503), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1503), - [sym_super] = ACTIONS(1503), - [sym_crate] = ACTIONS(1503), - [sym_metavariable] = ACTIONS(1501), - [sym__raw_string_literal_start] = ACTIONS(1501), - [sym_float_literal] = ACTIONS(1501), + [ts_builtin_sym_end] = ACTIONS(2582), + [sym_identifier] = ACTIONS(2584), + [anon_sym_SEMI] = ACTIONS(2582), + [anon_sym_macro_rules_BANG] = ACTIONS(2582), + [anon_sym_LPAREN] = ACTIONS(2582), + [anon_sym_LBRACK] = ACTIONS(2582), + [anon_sym_LBRACE] = ACTIONS(2582), + [anon_sym_RBRACE] = ACTIONS(2582), + [anon_sym_STAR] = ACTIONS(2582), + [anon_sym_u8] = ACTIONS(2584), + [anon_sym_i8] = ACTIONS(2584), + [anon_sym_u16] = ACTIONS(2584), + [anon_sym_i16] = ACTIONS(2584), + [anon_sym_u32] = ACTIONS(2584), + [anon_sym_i32] = ACTIONS(2584), + [anon_sym_u64] = ACTIONS(2584), + [anon_sym_i64] = ACTIONS(2584), + [anon_sym_u128] = ACTIONS(2584), + [anon_sym_i128] = ACTIONS(2584), + [anon_sym_isize] = ACTIONS(2584), + [anon_sym_usize] = ACTIONS(2584), + [anon_sym_f32] = ACTIONS(2584), + [anon_sym_f64] = ACTIONS(2584), + [anon_sym_bool] = ACTIONS(2584), + [anon_sym_str] = ACTIONS(2584), + [anon_sym_char] = ACTIONS(2584), + [anon_sym_DASH] = ACTIONS(2582), + [anon_sym_BANG] = ACTIONS(2582), + [anon_sym_AMP] = ACTIONS(2582), + [anon_sym_PIPE] = ACTIONS(2582), + [anon_sym_LT] = ACTIONS(2582), + [anon_sym_DOT_DOT] = ACTIONS(2582), + [anon_sym_COLON_COLON] = ACTIONS(2582), + [anon_sym_POUND] = ACTIONS(2582), + [anon_sym_SQUOTE] = ACTIONS(2584), + [anon_sym_async] = ACTIONS(2584), + [anon_sym_break] = ACTIONS(2584), + [anon_sym_const] = ACTIONS(2584), + [anon_sym_continue] = ACTIONS(2584), + [anon_sym_default] = ACTIONS(2584), + [anon_sym_enum] = ACTIONS(2584), + [anon_sym_fn] = ACTIONS(2584), + [anon_sym_for] = ACTIONS(2584), + [anon_sym_gen] = ACTIONS(2584), + [anon_sym_if] = ACTIONS(2584), + [anon_sym_impl] = ACTIONS(2584), + [anon_sym_let] = ACTIONS(2584), + [anon_sym_loop] = ACTIONS(2584), + [anon_sym_match] = ACTIONS(2584), + [anon_sym_mod] = ACTIONS(2584), + [anon_sym_pub] = ACTIONS(2584), + [anon_sym_return] = ACTIONS(2584), + [anon_sym_static] = ACTIONS(2584), + [anon_sym_struct] = ACTIONS(2584), + [anon_sym_trait] = ACTIONS(2584), + [anon_sym_type] = ACTIONS(2584), + [anon_sym_union] = ACTIONS(2584), + [anon_sym_unsafe] = ACTIONS(2584), + [anon_sym_use] = ACTIONS(2584), + [anon_sym_while] = ACTIONS(2584), + [anon_sym_extern] = ACTIONS(2584), + [anon_sym_safe] = ACTIONS(2584), + [anon_sym_yield] = ACTIONS(2584), + [anon_sym_move] = ACTIONS(2584), + [anon_sym_try] = ACTIONS(2584), + [sym_integer_literal] = ACTIONS(2582), + [aux_sym_string_literal_token1] = ACTIONS(2582), + [sym_char_literal] = ACTIONS(2582), + [anon_sym_true] = ACTIONS(2584), + [anon_sym_false] = ACTIONS(2584), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(2584), + [sym_super] = ACTIONS(2584), + [sym_crate] = ACTIONS(2584), + [sym_metavariable] = ACTIONS(2582), + [sym__raw_string_literal_start] = ACTIONS(2582), + [sym_float_literal] = ACTIONS(2582), }, [STATE(663)] = { [sym_line_comment] = STATE(663), [sym_block_comment] = STATE(663), - [ts_builtin_sym_end] = ACTIONS(2600), - [sym_identifier] = ACTIONS(2602), - [anon_sym_SEMI] = ACTIONS(2600), - [anon_sym_macro_rules_BANG] = ACTIONS(2600), - [anon_sym_LPAREN] = ACTIONS(2600), - [anon_sym_LBRACK] = ACTIONS(2600), - [anon_sym_LBRACE] = ACTIONS(2600), - [anon_sym_RBRACE] = ACTIONS(2600), - [anon_sym_STAR] = ACTIONS(2600), - [anon_sym_u8] = ACTIONS(2602), - [anon_sym_i8] = ACTIONS(2602), - [anon_sym_u16] = ACTIONS(2602), - [anon_sym_i16] = ACTIONS(2602), - [anon_sym_u32] = ACTIONS(2602), - [anon_sym_i32] = ACTIONS(2602), - [anon_sym_u64] = ACTIONS(2602), - [anon_sym_i64] = ACTIONS(2602), - [anon_sym_u128] = ACTIONS(2602), - [anon_sym_i128] = ACTIONS(2602), - [anon_sym_isize] = ACTIONS(2602), - [anon_sym_usize] = ACTIONS(2602), - [anon_sym_f32] = ACTIONS(2602), - [anon_sym_f64] = ACTIONS(2602), - [anon_sym_bool] = ACTIONS(2602), - [anon_sym_str] = ACTIONS(2602), - [anon_sym_char] = ACTIONS(2602), - [anon_sym_DASH] = ACTIONS(2600), - [anon_sym_BANG] = ACTIONS(2600), - [anon_sym_AMP] = ACTIONS(2600), - [anon_sym_PIPE] = ACTIONS(2600), - [anon_sym_LT] = ACTIONS(2600), - [anon_sym_DOT_DOT] = ACTIONS(2600), - [anon_sym_COLON_COLON] = ACTIONS(2600), - [anon_sym_POUND] = ACTIONS(2600), - [anon_sym_SQUOTE] = ACTIONS(2602), - [anon_sym_async] = ACTIONS(2602), - [anon_sym_break] = ACTIONS(2602), - [anon_sym_const] = ACTIONS(2602), - [anon_sym_continue] = ACTIONS(2602), - [anon_sym_default] = ACTIONS(2602), - [anon_sym_enum] = ACTIONS(2602), - [anon_sym_fn] = ACTIONS(2602), - [anon_sym_for] = ACTIONS(2602), - [anon_sym_gen] = ACTIONS(2602), - [anon_sym_if] = ACTIONS(2602), - [anon_sym_impl] = ACTIONS(2602), - [anon_sym_let] = ACTIONS(2602), - [anon_sym_loop] = ACTIONS(2602), - [anon_sym_match] = ACTIONS(2602), - [anon_sym_mod] = ACTIONS(2602), - [anon_sym_pub] = ACTIONS(2602), - [anon_sym_return] = ACTIONS(2602), - [anon_sym_static] = ACTIONS(2602), - [anon_sym_struct] = ACTIONS(2602), - [anon_sym_trait] = ACTIONS(2602), - [anon_sym_type] = ACTIONS(2602), - [anon_sym_union] = ACTIONS(2602), - [anon_sym_unsafe] = ACTIONS(2602), - [anon_sym_use] = ACTIONS(2602), - [anon_sym_while] = ACTIONS(2602), - [anon_sym_extern] = ACTIONS(2602), - [anon_sym_yield] = ACTIONS(2602), - [anon_sym_move] = ACTIONS(2602), - [anon_sym_try] = ACTIONS(2602), - [sym_integer_literal] = ACTIONS(2600), - [aux_sym_string_literal_token1] = ACTIONS(2600), - [sym_char_literal] = ACTIONS(2600), - [anon_sym_true] = ACTIONS(2602), - [anon_sym_false] = ACTIONS(2602), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2602), - [sym_super] = ACTIONS(2602), - [sym_crate] = ACTIONS(2602), - [sym_metavariable] = ACTIONS(2600), - [sym__raw_string_literal_start] = ACTIONS(2600), - [sym_float_literal] = ACTIONS(2600), + [ts_builtin_sym_end] = ACTIONS(2586), + [sym_identifier] = ACTIONS(2588), + [anon_sym_SEMI] = ACTIONS(2586), + [anon_sym_macro_rules_BANG] = ACTIONS(2586), + [anon_sym_LPAREN] = ACTIONS(2586), + [anon_sym_LBRACK] = ACTIONS(2586), + [anon_sym_LBRACE] = ACTIONS(2586), + [anon_sym_RBRACE] = ACTIONS(2586), + [anon_sym_STAR] = ACTIONS(2586), + [anon_sym_u8] = ACTIONS(2588), + [anon_sym_i8] = ACTIONS(2588), + [anon_sym_u16] = ACTIONS(2588), + [anon_sym_i16] = ACTIONS(2588), + [anon_sym_u32] = ACTIONS(2588), + [anon_sym_i32] = ACTIONS(2588), + [anon_sym_u64] = ACTIONS(2588), + [anon_sym_i64] = ACTIONS(2588), + [anon_sym_u128] = ACTIONS(2588), + [anon_sym_i128] = ACTIONS(2588), + [anon_sym_isize] = ACTIONS(2588), + [anon_sym_usize] = ACTIONS(2588), + [anon_sym_f32] = ACTIONS(2588), + [anon_sym_f64] = ACTIONS(2588), + [anon_sym_bool] = ACTIONS(2588), + [anon_sym_str] = ACTIONS(2588), + [anon_sym_char] = ACTIONS(2588), + [anon_sym_DASH] = ACTIONS(2586), + [anon_sym_BANG] = ACTIONS(2586), + [anon_sym_AMP] = ACTIONS(2586), + [anon_sym_PIPE] = ACTIONS(2586), + [anon_sym_LT] = ACTIONS(2586), + [anon_sym_DOT_DOT] = ACTIONS(2586), + [anon_sym_COLON_COLON] = ACTIONS(2586), + [anon_sym_POUND] = ACTIONS(2586), + [anon_sym_SQUOTE] = ACTIONS(2588), + [anon_sym_async] = ACTIONS(2588), + [anon_sym_break] = ACTIONS(2588), + [anon_sym_const] = ACTIONS(2588), + [anon_sym_continue] = ACTIONS(2588), + [anon_sym_default] = ACTIONS(2588), + [anon_sym_enum] = ACTIONS(2588), + [anon_sym_fn] = ACTIONS(2588), + [anon_sym_for] = ACTIONS(2588), + [anon_sym_gen] = ACTIONS(2588), + [anon_sym_if] = ACTIONS(2588), + [anon_sym_impl] = ACTIONS(2588), + [anon_sym_let] = ACTIONS(2588), + [anon_sym_loop] = ACTIONS(2588), + [anon_sym_match] = ACTIONS(2588), + [anon_sym_mod] = ACTIONS(2588), + [anon_sym_pub] = ACTIONS(2588), + [anon_sym_return] = ACTIONS(2588), + [anon_sym_static] = ACTIONS(2588), + [anon_sym_struct] = ACTIONS(2588), + [anon_sym_trait] = ACTIONS(2588), + [anon_sym_type] = ACTIONS(2588), + [anon_sym_union] = ACTIONS(2588), + [anon_sym_unsafe] = ACTIONS(2588), + [anon_sym_use] = ACTIONS(2588), + [anon_sym_while] = ACTIONS(2588), + [anon_sym_extern] = ACTIONS(2588), + [anon_sym_safe] = ACTIONS(2588), + [anon_sym_yield] = ACTIONS(2588), + [anon_sym_move] = ACTIONS(2588), + [anon_sym_try] = ACTIONS(2588), + [sym_integer_literal] = ACTIONS(2586), + [aux_sym_string_literal_token1] = ACTIONS(2586), + [sym_char_literal] = ACTIONS(2586), + [anon_sym_true] = ACTIONS(2588), + [anon_sym_false] = ACTIONS(2588), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(2588), + [sym_super] = ACTIONS(2588), + [sym_crate] = ACTIONS(2588), + [sym_metavariable] = ACTIONS(2586), + [sym__raw_string_literal_start] = ACTIONS(2586), + [sym_float_literal] = ACTIONS(2586), }, [STATE(664)] = { - [sym_bracketed_type] = STATE(3448), - [sym_generic_type] = STATE(3450), - [sym_generic_type_with_turbofish] = STATE(3159), - [sym_macro_invocation] = STATE(2150), - [sym_scoped_identifier] = STATE(2016), - [sym_scoped_type_identifier] = STATE(2988), - [sym_const_block] = STATE(2150), - [sym_closure_expression] = STATE(3252), - [sym_closure_parameters] = STATE(239), - [sym__pattern] = STATE(3040), - [sym_generic_pattern] = STATE(2150), - [sym_tuple_pattern] = STATE(2150), - [sym_slice_pattern] = STATE(2150), - [sym_tuple_struct_pattern] = STATE(2150), - [sym_struct_pattern] = STATE(2150), - [sym_remaining_field_pattern] = STATE(2150), - [sym_mut_pattern] = STATE(2150), - [sym_range_pattern] = STATE(2150), - [sym_ref_pattern] = STATE(2150), - [sym_captured_pattern] = STATE(2150), - [sym_reference_pattern] = STATE(2150), - [sym_or_pattern] = STATE(2150), - [sym__literal_pattern] = STATE(2076), - [sym_negative_literal] = STATE(2074), - [sym_string_literal] = STATE(2074), - [sym_raw_string_literal] = STATE(2074), - [sym_boolean_literal] = STATE(2074), [sym_line_comment] = STATE(664), [sym_block_comment] = STATE(664), - [sym_identifier] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_RPAREN] = ACTIONS(2604), - [anon_sym_LBRACK] = ACTIONS(1782), - [anon_sym_u8] = ACTIONS(1784), - [anon_sym_i8] = ACTIONS(1784), - [anon_sym_u16] = ACTIONS(1784), - [anon_sym_i16] = ACTIONS(1784), - [anon_sym_u32] = ACTIONS(1784), - [anon_sym_i32] = ACTIONS(1784), - [anon_sym_u64] = ACTIONS(1784), - [anon_sym_i64] = ACTIONS(1784), - [anon_sym_u128] = ACTIONS(1784), - [anon_sym_i128] = ACTIONS(1784), - [anon_sym_isize] = ACTIONS(1784), - [anon_sym_usize] = ACTIONS(1784), - [anon_sym_f32] = ACTIONS(1784), - [anon_sym_f64] = ACTIONS(1784), - [anon_sym_bool] = ACTIONS(1784), - [anon_sym_str] = ACTIONS(1784), - [anon_sym_char] = ACTIONS(1784), - [anon_sym_DASH] = ACTIONS(1241), - [anon_sym_AMP] = ACTIONS(1786), - [anon_sym_PIPE] = ACTIONS(1449), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1451), - [anon_sym_DOT_DOT] = ACTIONS(1251), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1255), - [anon_sym_COLON_COLON] = ACTIONS(1790), - [anon_sym_const] = ACTIONS(1792), - [anon_sym_default] = ACTIONS(1794), - [anon_sym_gen] = ACTIONS(1794), - [anon_sym_static] = ACTIONS(1455), - [anon_sym_union] = ACTIONS(1794), - [anon_sym_ref] = ACTIONS(1281), - [sym_mutable_specifier] = ACTIONS(1457), - [anon_sym_move] = ACTIONS(1459), - [sym_integer_literal] = ACTIONS(1287), - [aux_sym_string_literal_token1] = ACTIONS(1289), - [sym_char_literal] = ACTIONS(1287), - [anon_sym_true] = ACTIONS(1291), - [anon_sym_false] = ACTIONS(1291), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1796), - [sym_super] = ACTIONS(1796), - [sym_crate] = ACTIONS(1796), - [sym_metavariable] = ACTIONS(1798), - [sym__raw_string_literal_start] = ACTIONS(1299), - [sym_float_literal] = ACTIONS(1287), + [ts_builtin_sym_end] = ACTIONS(2590), + [sym_identifier] = ACTIONS(2592), + [anon_sym_SEMI] = ACTIONS(2590), + [anon_sym_macro_rules_BANG] = ACTIONS(2590), + [anon_sym_LPAREN] = ACTIONS(2590), + [anon_sym_LBRACK] = ACTIONS(2590), + [anon_sym_LBRACE] = ACTIONS(2590), + [anon_sym_RBRACE] = ACTIONS(2590), + [anon_sym_STAR] = ACTIONS(2590), + [anon_sym_u8] = ACTIONS(2592), + [anon_sym_i8] = ACTIONS(2592), + [anon_sym_u16] = ACTIONS(2592), + [anon_sym_i16] = ACTIONS(2592), + [anon_sym_u32] = ACTIONS(2592), + [anon_sym_i32] = ACTIONS(2592), + [anon_sym_u64] = ACTIONS(2592), + [anon_sym_i64] = ACTIONS(2592), + [anon_sym_u128] = ACTIONS(2592), + [anon_sym_i128] = ACTIONS(2592), + [anon_sym_isize] = ACTIONS(2592), + [anon_sym_usize] = ACTIONS(2592), + [anon_sym_f32] = ACTIONS(2592), + [anon_sym_f64] = ACTIONS(2592), + [anon_sym_bool] = ACTIONS(2592), + [anon_sym_str] = ACTIONS(2592), + [anon_sym_char] = ACTIONS(2592), + [anon_sym_DASH] = ACTIONS(2590), + [anon_sym_BANG] = ACTIONS(2590), + [anon_sym_AMP] = ACTIONS(2590), + [anon_sym_PIPE] = ACTIONS(2590), + [anon_sym_LT] = ACTIONS(2590), + [anon_sym_DOT_DOT] = ACTIONS(2590), + [anon_sym_COLON_COLON] = ACTIONS(2590), + [anon_sym_POUND] = ACTIONS(2590), + [anon_sym_SQUOTE] = ACTIONS(2592), + [anon_sym_async] = ACTIONS(2592), + [anon_sym_break] = ACTIONS(2592), + [anon_sym_const] = ACTIONS(2592), + [anon_sym_continue] = ACTIONS(2592), + [anon_sym_default] = ACTIONS(2592), + [anon_sym_enum] = ACTIONS(2592), + [anon_sym_fn] = ACTIONS(2592), + [anon_sym_for] = ACTIONS(2592), + [anon_sym_gen] = ACTIONS(2592), + [anon_sym_if] = ACTIONS(2592), + [anon_sym_impl] = ACTIONS(2592), + [anon_sym_let] = ACTIONS(2592), + [anon_sym_loop] = ACTIONS(2592), + [anon_sym_match] = ACTIONS(2592), + [anon_sym_mod] = ACTIONS(2592), + [anon_sym_pub] = ACTIONS(2592), + [anon_sym_return] = ACTIONS(2592), + [anon_sym_static] = ACTIONS(2592), + [anon_sym_struct] = ACTIONS(2592), + [anon_sym_trait] = ACTIONS(2592), + [anon_sym_type] = ACTIONS(2592), + [anon_sym_union] = ACTIONS(2592), + [anon_sym_unsafe] = ACTIONS(2592), + [anon_sym_use] = ACTIONS(2592), + [anon_sym_while] = ACTIONS(2592), + [anon_sym_extern] = ACTIONS(2592), + [anon_sym_safe] = ACTIONS(2592), + [anon_sym_yield] = ACTIONS(2592), + [anon_sym_move] = ACTIONS(2592), + [anon_sym_try] = ACTIONS(2592), + [sym_integer_literal] = ACTIONS(2590), + [aux_sym_string_literal_token1] = ACTIONS(2590), + [sym_char_literal] = ACTIONS(2590), + [anon_sym_true] = ACTIONS(2592), + [anon_sym_false] = ACTIONS(2592), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(2592), + [sym_super] = ACTIONS(2592), + [sym_crate] = ACTIONS(2592), + [sym_metavariable] = ACTIONS(2590), + [sym__raw_string_literal_start] = ACTIONS(2590), + [sym_float_literal] = ACTIONS(2590), }, [STATE(665)] = { [sym_line_comment] = STATE(665), [sym_block_comment] = STATE(665), + [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_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_safe] = 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(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [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(666)] = { + [sym_line_comment] = STATE(666), + [sym_block_comment] = STATE(666), + [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_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_safe] = 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(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [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(667)] = { + [sym_line_comment] = STATE(667), + [sym_block_comment] = STATE(667), + [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_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_safe] = 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(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [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(668)] = { + [sym_line_comment] = STATE(668), + [sym_block_comment] = STATE(668), + [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_STAR] = 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(1466), + [anon_sym_BANG] = ACTIONS(1466), + [anon_sym_AMP] = ACTIONS(1466), + [anon_sym_PIPE] = ACTIONS(1466), + [anon_sym_LT] = ACTIONS(1466), + [anon_sym_DOT_DOT] = ACTIONS(1466), + [anon_sym_COLON_COLON] = ACTIONS(1466), + [anon_sym_POUND] = ACTIONS(1466), + [anon_sym_SQUOTE] = 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_safe] = 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), + }, + [STATE(669)] = { + [sym_line_comment] = STATE(669), + [sym_block_comment] = STATE(669), [ts_builtin_sym_end] = ACTIONS(2606), [sym_identifier] = ACTIONS(2608), [anon_sym_SEMI] = ACTIONS(2606), @@ -85136,6 +85909,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(2608), [anon_sym_while] = ACTIONS(2608), [anon_sym_extern] = ACTIONS(2608), + [anon_sym_safe] = ACTIONS(2608), [anon_sym_yield] = ACTIONS(2608), [anon_sym_move] = ACTIONS(2608), [anon_sym_try] = ACTIONS(2608), @@ -85144,8 +85918,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2606), [anon_sym_true] = ACTIONS(2608), [anon_sym_false] = ACTIONS(2608), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), [sym_self] = ACTIONS(2608), [sym_super] = ACTIONS(2608), [sym_crate] = ACTIONS(2608), @@ -85153,9 +85927,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2606), [sym_float_literal] = ACTIONS(2606), }, - [STATE(666)] = { - [sym_line_comment] = STATE(666), - [sym_block_comment] = STATE(666), + [STATE(670)] = { + [sym_line_comment] = STATE(670), + [sym_block_comment] = STATE(670), [ts_builtin_sym_end] = ACTIONS(2610), [sym_identifier] = ACTIONS(2612), [anon_sym_SEMI] = ACTIONS(2610), @@ -85217,6 +85991,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(2612), [anon_sym_while] = ACTIONS(2612), [anon_sym_extern] = ACTIONS(2612), + [anon_sym_safe] = ACTIONS(2612), [anon_sym_yield] = ACTIONS(2612), [anon_sym_move] = ACTIONS(2612), [anon_sym_try] = ACTIONS(2612), @@ -85225,8 +86000,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2610), [anon_sym_true] = ACTIONS(2612), [anon_sym_false] = ACTIONS(2612), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), [sym_self] = ACTIONS(2612), [sym_super] = ACTIONS(2612), [sym_crate] = ACTIONS(2612), @@ -85234,9 +86009,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2610), [sym_float_literal] = ACTIONS(2610), }, - [STATE(667)] = { - [sym_line_comment] = STATE(667), - [sym_block_comment] = STATE(667), + [STATE(671)] = { + [sym_line_comment] = STATE(671), + [sym_block_comment] = STATE(671), [ts_builtin_sym_end] = ACTIONS(2614), [sym_identifier] = ACTIONS(2616), [anon_sym_SEMI] = ACTIONS(2614), @@ -85298,6 +86073,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(2616), [anon_sym_while] = ACTIONS(2616), [anon_sym_extern] = ACTIONS(2616), + [anon_sym_safe] = ACTIONS(2616), [anon_sym_yield] = ACTIONS(2616), [anon_sym_move] = ACTIONS(2616), [anon_sym_try] = ACTIONS(2616), @@ -85306,8 +86082,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2614), [anon_sym_true] = ACTIONS(2616), [anon_sym_false] = ACTIONS(2616), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), [sym_self] = ACTIONS(2616), [sym_super] = ACTIONS(2616), [sym_crate] = ACTIONS(2616), @@ -85315,90 +86091,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2614), [sym_float_literal] = ACTIONS(2614), }, - [STATE(668)] = { - [sym_line_comment] = STATE(668), - [sym_block_comment] = STATE(668), - [ts_builtin_sym_end] = ACTIONS(1413), - [sym_identifier] = ACTIONS(1415), - [anon_sym_SEMI] = ACTIONS(1413), - [anon_sym_macro_rules_BANG] = ACTIONS(1413), - [anon_sym_LPAREN] = ACTIONS(1413), - [anon_sym_LBRACK] = ACTIONS(1413), - [anon_sym_LBRACE] = ACTIONS(1413), - [anon_sym_RBRACE] = ACTIONS(1413), - [anon_sym_STAR] = ACTIONS(1413), - [anon_sym_u8] = ACTIONS(1415), - [anon_sym_i8] = ACTIONS(1415), - [anon_sym_u16] = ACTIONS(1415), - [anon_sym_i16] = ACTIONS(1415), - [anon_sym_u32] = ACTIONS(1415), - [anon_sym_i32] = ACTIONS(1415), - [anon_sym_u64] = ACTIONS(1415), - [anon_sym_i64] = ACTIONS(1415), - [anon_sym_u128] = ACTIONS(1415), - [anon_sym_i128] = ACTIONS(1415), - [anon_sym_isize] = ACTIONS(1415), - [anon_sym_usize] = ACTIONS(1415), - [anon_sym_f32] = ACTIONS(1415), - [anon_sym_f64] = ACTIONS(1415), - [anon_sym_bool] = ACTIONS(1415), - [anon_sym_str] = ACTIONS(1415), - [anon_sym_char] = ACTIONS(1415), - [anon_sym_DASH] = ACTIONS(1413), - [anon_sym_BANG] = ACTIONS(1413), - [anon_sym_AMP] = ACTIONS(1413), - [anon_sym_PIPE] = ACTIONS(1413), - [anon_sym_LT] = ACTIONS(1413), - [anon_sym_DOT_DOT] = ACTIONS(1413), - [anon_sym_COLON_COLON] = ACTIONS(1413), - [anon_sym_POUND] = ACTIONS(1413), - [anon_sym_SQUOTE] = ACTIONS(1415), - [anon_sym_async] = ACTIONS(1415), - [anon_sym_break] = ACTIONS(1415), - [anon_sym_const] = ACTIONS(1415), - [anon_sym_continue] = ACTIONS(1415), - [anon_sym_default] = ACTIONS(1415), - [anon_sym_enum] = ACTIONS(1415), - [anon_sym_fn] = ACTIONS(1415), - [anon_sym_for] = ACTIONS(1415), - [anon_sym_gen] = ACTIONS(1415), - [anon_sym_if] = ACTIONS(1415), - [anon_sym_impl] = ACTIONS(1415), - [anon_sym_let] = ACTIONS(1415), - [anon_sym_loop] = ACTIONS(1415), - [anon_sym_match] = ACTIONS(1415), - [anon_sym_mod] = ACTIONS(1415), - [anon_sym_pub] = ACTIONS(1415), - [anon_sym_return] = ACTIONS(1415), - [anon_sym_static] = ACTIONS(1415), - [anon_sym_struct] = ACTIONS(1415), - [anon_sym_trait] = ACTIONS(1415), - [anon_sym_type] = ACTIONS(1415), - [anon_sym_union] = ACTIONS(1415), - [anon_sym_unsafe] = ACTIONS(1415), - [anon_sym_use] = ACTIONS(1415), - [anon_sym_while] = ACTIONS(1415), - [anon_sym_extern] = ACTIONS(1415), - [anon_sym_yield] = ACTIONS(1415), - [anon_sym_move] = ACTIONS(1415), - [anon_sym_try] = ACTIONS(1415), - [sym_integer_literal] = ACTIONS(1413), - [aux_sym_string_literal_token1] = ACTIONS(1413), - [sym_char_literal] = ACTIONS(1413), - [anon_sym_true] = ACTIONS(1415), - [anon_sym_false] = ACTIONS(1415), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1415), - [sym_super] = ACTIONS(1415), - [sym_crate] = ACTIONS(1415), - [sym_metavariable] = ACTIONS(1413), - [sym__raw_string_literal_start] = ACTIONS(1413), - [sym_float_literal] = ACTIONS(1413), - }, - [STATE(669)] = { - [sym_line_comment] = STATE(669), - [sym_block_comment] = STATE(669), + [STATE(672)] = { + [sym_line_comment] = STATE(672), + [sym_block_comment] = STATE(672), [ts_builtin_sym_end] = ACTIONS(2618), [sym_identifier] = ACTIONS(2620), [anon_sym_SEMI] = ACTIONS(2618), @@ -85460,6 +86155,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(2620), [anon_sym_while] = ACTIONS(2620), [anon_sym_extern] = ACTIONS(2620), + [anon_sym_safe] = ACTIONS(2620), [anon_sym_yield] = ACTIONS(2620), [anon_sym_move] = ACTIONS(2620), [anon_sym_try] = ACTIONS(2620), @@ -85468,8 +86164,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2618), [anon_sym_true] = ACTIONS(2620), [anon_sym_false] = ACTIONS(2620), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), [sym_self] = ACTIONS(2620), [sym_super] = ACTIONS(2620), [sym_crate] = ACTIONS(2620), @@ -85477,249 +86173,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2618), [sym_float_literal] = ACTIONS(2618), }, - [STATE(670)] = { - [sym_line_comment] = STATE(670), - [sym_block_comment] = STATE(670), - [ts_builtin_sym_end] = ACTIONS(1391), - [sym_identifier] = ACTIONS(1393), - [anon_sym_SEMI] = ACTIONS(1391), - [anon_sym_macro_rules_BANG] = ACTIONS(1391), - [anon_sym_LPAREN] = ACTIONS(1391), - [anon_sym_LBRACK] = ACTIONS(1391), - [anon_sym_LBRACE] = ACTIONS(1391), - [anon_sym_RBRACE] = ACTIONS(1391), - [anon_sym_STAR] = ACTIONS(1391), - [anon_sym_u8] = ACTIONS(1393), - [anon_sym_i8] = ACTIONS(1393), - [anon_sym_u16] = ACTIONS(1393), - [anon_sym_i16] = ACTIONS(1393), - [anon_sym_u32] = ACTIONS(1393), - [anon_sym_i32] = ACTIONS(1393), - [anon_sym_u64] = ACTIONS(1393), - [anon_sym_i64] = ACTIONS(1393), - [anon_sym_u128] = ACTIONS(1393), - [anon_sym_i128] = ACTIONS(1393), - [anon_sym_isize] = ACTIONS(1393), - [anon_sym_usize] = ACTIONS(1393), - [anon_sym_f32] = ACTIONS(1393), - [anon_sym_f64] = ACTIONS(1393), - [anon_sym_bool] = ACTIONS(1393), - [anon_sym_str] = ACTIONS(1393), - [anon_sym_char] = ACTIONS(1393), - [anon_sym_DASH] = ACTIONS(1391), - [anon_sym_BANG] = ACTIONS(1391), - [anon_sym_AMP] = ACTIONS(1391), - [anon_sym_PIPE] = ACTIONS(1391), - [anon_sym_LT] = ACTIONS(1391), - [anon_sym_DOT_DOT] = ACTIONS(1391), - [anon_sym_COLON_COLON] = ACTIONS(1391), - [anon_sym_POUND] = ACTIONS(1391), - [anon_sym_SQUOTE] = ACTIONS(1393), - [anon_sym_async] = ACTIONS(1393), - [anon_sym_break] = ACTIONS(1393), - [anon_sym_const] = ACTIONS(1393), - [anon_sym_continue] = ACTIONS(1393), - [anon_sym_default] = ACTIONS(1393), - [anon_sym_enum] = ACTIONS(1393), - [anon_sym_fn] = ACTIONS(1393), - [anon_sym_for] = ACTIONS(1393), - [anon_sym_gen] = ACTIONS(1393), - [anon_sym_if] = ACTIONS(1393), - [anon_sym_impl] = ACTIONS(1393), - [anon_sym_let] = ACTIONS(1393), - [anon_sym_loop] = ACTIONS(1393), - [anon_sym_match] = ACTIONS(1393), - [anon_sym_mod] = ACTIONS(1393), - [anon_sym_pub] = ACTIONS(1393), - [anon_sym_return] = ACTIONS(1393), - [anon_sym_static] = ACTIONS(1393), - [anon_sym_struct] = ACTIONS(1393), - [anon_sym_trait] = ACTIONS(1393), - [anon_sym_type] = ACTIONS(1393), - [anon_sym_union] = ACTIONS(1393), - [anon_sym_unsafe] = ACTIONS(1393), - [anon_sym_use] = ACTIONS(1393), - [anon_sym_while] = ACTIONS(1393), - [anon_sym_extern] = ACTIONS(1393), - [anon_sym_yield] = ACTIONS(1393), - [anon_sym_move] = ACTIONS(1393), - [anon_sym_try] = ACTIONS(1393), - [sym_integer_literal] = ACTIONS(1391), - [aux_sym_string_literal_token1] = ACTIONS(1391), - [sym_char_literal] = ACTIONS(1391), - [anon_sym_true] = ACTIONS(1393), - [anon_sym_false] = ACTIONS(1393), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1393), - [sym_super] = ACTIONS(1393), - [sym_crate] = ACTIONS(1393), - [sym_metavariable] = ACTIONS(1391), - [sym__raw_string_literal_start] = ACTIONS(1391), - [sym_float_literal] = ACTIONS(1391), - }, - [STATE(671)] = { - [sym_line_comment] = STATE(671), - [sym_block_comment] = STATE(671), - [ts_builtin_sym_end] = ACTIONS(1387), - [sym_identifier] = ACTIONS(1389), - [anon_sym_SEMI] = ACTIONS(1387), - [anon_sym_macro_rules_BANG] = ACTIONS(1387), - [anon_sym_LPAREN] = ACTIONS(1387), - [anon_sym_LBRACK] = ACTIONS(1387), - [anon_sym_LBRACE] = ACTIONS(1387), - [anon_sym_RBRACE] = ACTIONS(1387), - [anon_sym_STAR] = ACTIONS(1387), - [anon_sym_u8] = ACTIONS(1389), - [anon_sym_i8] = ACTIONS(1389), - [anon_sym_u16] = ACTIONS(1389), - [anon_sym_i16] = ACTIONS(1389), - [anon_sym_u32] = ACTIONS(1389), - [anon_sym_i32] = ACTIONS(1389), - [anon_sym_u64] = ACTIONS(1389), - [anon_sym_i64] = ACTIONS(1389), - [anon_sym_u128] = ACTIONS(1389), - [anon_sym_i128] = ACTIONS(1389), - [anon_sym_isize] = ACTIONS(1389), - [anon_sym_usize] = ACTIONS(1389), - [anon_sym_f32] = ACTIONS(1389), - [anon_sym_f64] = ACTIONS(1389), - [anon_sym_bool] = ACTIONS(1389), - [anon_sym_str] = ACTIONS(1389), - [anon_sym_char] = ACTIONS(1389), - [anon_sym_DASH] = ACTIONS(1387), - [anon_sym_BANG] = ACTIONS(1387), - [anon_sym_AMP] = ACTIONS(1387), - [anon_sym_PIPE] = ACTIONS(1387), - [anon_sym_LT] = ACTIONS(1387), - [anon_sym_DOT_DOT] = ACTIONS(1387), - [anon_sym_COLON_COLON] = ACTIONS(1387), - [anon_sym_POUND] = ACTIONS(1387), - [anon_sym_SQUOTE] = ACTIONS(1389), - [anon_sym_async] = ACTIONS(1389), - [anon_sym_break] = ACTIONS(1389), - [anon_sym_const] = ACTIONS(1389), - [anon_sym_continue] = ACTIONS(1389), - [anon_sym_default] = ACTIONS(1389), - [anon_sym_enum] = ACTIONS(1389), - [anon_sym_fn] = ACTIONS(1389), - [anon_sym_for] = ACTIONS(1389), - [anon_sym_gen] = ACTIONS(1389), - [anon_sym_if] = ACTIONS(1389), - [anon_sym_impl] = ACTIONS(1389), - [anon_sym_let] = ACTIONS(1389), - [anon_sym_loop] = ACTIONS(1389), - [anon_sym_match] = ACTIONS(1389), - [anon_sym_mod] = ACTIONS(1389), - [anon_sym_pub] = ACTIONS(1389), - [anon_sym_return] = ACTIONS(1389), - [anon_sym_static] = ACTIONS(1389), - [anon_sym_struct] = ACTIONS(1389), - [anon_sym_trait] = ACTIONS(1389), - [anon_sym_type] = ACTIONS(1389), - [anon_sym_union] = ACTIONS(1389), - [anon_sym_unsafe] = ACTIONS(1389), - [anon_sym_use] = ACTIONS(1389), - [anon_sym_while] = ACTIONS(1389), - [anon_sym_extern] = ACTIONS(1389), - [anon_sym_yield] = ACTIONS(1389), - [anon_sym_move] = ACTIONS(1389), - [anon_sym_try] = ACTIONS(1389), - [sym_integer_literal] = ACTIONS(1387), - [aux_sym_string_literal_token1] = ACTIONS(1387), - [sym_char_literal] = ACTIONS(1387), - [anon_sym_true] = ACTIONS(1389), - [anon_sym_false] = ACTIONS(1389), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1389), - [sym_super] = ACTIONS(1389), - [sym_crate] = ACTIONS(1389), - [sym_metavariable] = ACTIONS(1387), - [sym__raw_string_literal_start] = ACTIONS(1387), - [sym_float_literal] = ACTIONS(1387), - }, - [STATE(672)] = { - [sym_line_comment] = STATE(672), - [sym_block_comment] = STATE(672), - [ts_builtin_sym_end] = ACTIONS(1383), - [sym_identifier] = ACTIONS(1385), - [anon_sym_SEMI] = ACTIONS(1383), - [anon_sym_macro_rules_BANG] = ACTIONS(1383), - [anon_sym_LPAREN] = ACTIONS(1383), - [anon_sym_LBRACK] = ACTIONS(1383), - [anon_sym_LBRACE] = ACTIONS(1383), - [anon_sym_RBRACE] = ACTIONS(1383), - [anon_sym_STAR] = ACTIONS(1383), - [anon_sym_u8] = ACTIONS(1385), - [anon_sym_i8] = ACTIONS(1385), - [anon_sym_u16] = ACTIONS(1385), - [anon_sym_i16] = ACTIONS(1385), - [anon_sym_u32] = ACTIONS(1385), - [anon_sym_i32] = ACTIONS(1385), - [anon_sym_u64] = ACTIONS(1385), - [anon_sym_i64] = ACTIONS(1385), - [anon_sym_u128] = ACTIONS(1385), - [anon_sym_i128] = ACTIONS(1385), - [anon_sym_isize] = ACTIONS(1385), - [anon_sym_usize] = ACTIONS(1385), - [anon_sym_f32] = ACTIONS(1385), - [anon_sym_f64] = ACTIONS(1385), - [anon_sym_bool] = ACTIONS(1385), - [anon_sym_str] = ACTIONS(1385), - [anon_sym_char] = ACTIONS(1385), - [anon_sym_DASH] = ACTIONS(1383), - [anon_sym_BANG] = ACTIONS(1383), - [anon_sym_AMP] = ACTIONS(1383), - [anon_sym_PIPE] = ACTIONS(1383), - [anon_sym_LT] = ACTIONS(1383), - [anon_sym_DOT_DOT] = ACTIONS(1383), - [anon_sym_COLON_COLON] = ACTIONS(1383), - [anon_sym_POUND] = ACTIONS(1383), - [anon_sym_SQUOTE] = ACTIONS(1385), - [anon_sym_async] = ACTIONS(1385), - [anon_sym_break] = ACTIONS(1385), - [anon_sym_const] = ACTIONS(1385), - [anon_sym_continue] = ACTIONS(1385), - [anon_sym_default] = ACTIONS(1385), - [anon_sym_enum] = ACTIONS(1385), - [anon_sym_fn] = ACTIONS(1385), - [anon_sym_for] = ACTIONS(1385), - [anon_sym_gen] = ACTIONS(1385), - [anon_sym_if] = ACTIONS(1385), - [anon_sym_impl] = ACTIONS(1385), - [anon_sym_let] = ACTIONS(1385), - [anon_sym_loop] = ACTIONS(1385), - [anon_sym_match] = ACTIONS(1385), - [anon_sym_mod] = ACTIONS(1385), - [anon_sym_pub] = ACTIONS(1385), - [anon_sym_return] = ACTIONS(1385), - [anon_sym_static] = ACTIONS(1385), - [anon_sym_struct] = ACTIONS(1385), - [anon_sym_trait] = ACTIONS(1385), - [anon_sym_type] = ACTIONS(1385), - [anon_sym_union] = ACTIONS(1385), - [anon_sym_unsafe] = ACTIONS(1385), - [anon_sym_use] = ACTIONS(1385), - [anon_sym_while] = ACTIONS(1385), - [anon_sym_extern] = ACTIONS(1385), - [anon_sym_yield] = ACTIONS(1385), - [anon_sym_move] = ACTIONS(1385), - [anon_sym_try] = ACTIONS(1385), - [sym_integer_literal] = ACTIONS(1383), - [aux_sym_string_literal_token1] = ACTIONS(1383), - [sym_char_literal] = ACTIONS(1383), - [anon_sym_true] = ACTIONS(1385), - [anon_sym_false] = ACTIONS(1385), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1385), - [sym_super] = ACTIONS(1385), - [sym_crate] = ACTIONS(1385), - [sym_metavariable] = ACTIONS(1383), - [sym__raw_string_literal_start] = ACTIONS(1383), - [sym_float_literal] = ACTIONS(1383), - }, [STATE(673)] = { [sym_line_comment] = STATE(673), [sym_block_comment] = STATE(673), @@ -85784,6 +86237,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(2624), [anon_sym_while] = ACTIONS(2624), [anon_sym_extern] = ACTIONS(2624), + [anon_sym_safe] = ACTIONS(2624), [anon_sym_yield] = ACTIONS(2624), [anon_sym_move] = ACTIONS(2624), [anon_sym_try] = ACTIONS(2624), @@ -85792,8 +86246,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2622), [anon_sym_true] = ACTIONS(2624), [anon_sym_false] = ACTIONS(2624), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), [sym_self] = ACTIONS(2624), [sym_super] = ACTIONS(2624), [sym_crate] = ACTIONS(2624), @@ -85865,6 +86319,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(2628), [anon_sym_while] = ACTIONS(2628), [anon_sym_extern] = ACTIONS(2628), + [anon_sym_safe] = ACTIONS(2628), [anon_sym_yield] = ACTIONS(2628), [anon_sym_move] = ACTIONS(2628), [anon_sym_try] = ACTIONS(2628), @@ -85873,8 +86328,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2626), [anon_sym_true] = ACTIONS(2628), [anon_sym_false] = ACTIONS(2628), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), [sym_self] = ACTIONS(2628), [sym_super] = ACTIONS(2628), [sym_crate] = ACTIONS(2628), @@ -85946,6 +86401,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(2632), [anon_sym_while] = ACTIONS(2632), [anon_sym_extern] = ACTIONS(2632), + [anon_sym_safe] = ACTIONS(2632), [anon_sym_yield] = ACTIONS(2632), [anon_sym_move] = ACTIONS(2632), [anon_sym_try] = ACTIONS(2632), @@ -85954,8 +86410,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2630), [anon_sym_true] = ACTIONS(2632), [anon_sym_false] = ACTIONS(2632), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), [sym_self] = ACTIONS(2632), [sym_super] = ACTIONS(2632), [sym_crate] = ACTIONS(2632), @@ -86027,6 +86483,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(2636), [anon_sym_while] = ACTIONS(2636), [anon_sym_extern] = ACTIONS(2636), + [anon_sym_safe] = ACTIONS(2636), [anon_sym_yield] = ACTIONS(2636), [anon_sym_move] = ACTIONS(2636), [anon_sym_try] = ACTIONS(2636), @@ -86035,8 +86492,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2634), [anon_sym_true] = ACTIONS(2636), [anon_sym_false] = ACTIONS(2636), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), [sym_self] = ACTIONS(2636), [sym_super] = ACTIONS(2636), [sym_crate] = ACTIONS(2636), @@ -86108,6 +86565,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(2640), [anon_sym_while] = ACTIONS(2640), [anon_sym_extern] = ACTIONS(2640), + [anon_sym_safe] = ACTIONS(2640), [anon_sym_yield] = ACTIONS(2640), [anon_sym_move] = ACTIONS(2640), [anon_sym_try] = ACTIONS(2640), @@ -86116,8 +86574,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2638), [anon_sym_true] = ACTIONS(2640), [anon_sym_false] = ACTIONS(2640), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), [sym_self] = ACTIONS(2640), [sym_super] = ACTIONS(2640), [sym_crate] = ACTIONS(2640), @@ -86189,6 +86647,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(2644), [anon_sym_while] = ACTIONS(2644), [anon_sym_extern] = ACTIONS(2644), + [anon_sym_safe] = ACTIONS(2644), [anon_sym_yield] = ACTIONS(2644), [anon_sym_move] = ACTIONS(2644), [anon_sym_try] = ACTIONS(2644), @@ -86197,8 +86656,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2642), [anon_sym_true] = ACTIONS(2644), [anon_sym_false] = ACTIONS(2644), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), [sym_self] = ACTIONS(2644), [sym_super] = ACTIONS(2644), [sym_crate] = ACTIONS(2644), @@ -86207,571 +86666,578 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(2642), }, [STATE(679)] = { + [sym_bracketed_type] = STATE(3581), + [sym_generic_type] = STATE(3475), + [sym_generic_type_with_turbofish] = STATE(3233), + [sym_macro_invocation] = STATE(2163), + [sym_scoped_identifier] = STATE(2032), + [sym_scoped_type_identifier] = STATE(2893), + [sym_const_block] = STATE(2163), + [sym_closure_expression] = STATE(3063), + [sym_closure_parameters] = STATE(220), + [sym__pattern] = STATE(2729), + [sym_generic_pattern] = STATE(2163), + [sym_tuple_pattern] = STATE(2163), + [sym_slice_pattern] = STATE(2163), + [sym_tuple_struct_pattern] = STATE(2163), + [sym_struct_pattern] = STATE(2163), + [sym_remaining_field_pattern] = STATE(2163), + [sym_mut_pattern] = STATE(2163), + [sym_range_pattern] = STATE(2163), + [sym_ref_pattern] = STATE(2163), + [sym_captured_pattern] = STATE(2163), + [sym_reference_pattern] = STATE(2163), + [sym_or_pattern] = STATE(2163), + [sym__literal_pattern] = STATE(2098), + [sym_negative_literal] = STATE(2095), + [sym_string_literal] = STATE(2095), + [sym_raw_string_literal] = STATE(2095), + [sym_boolean_literal] = STATE(2095), [sym_line_comment] = STATE(679), [sym_block_comment] = STATE(679), - [ts_builtin_sym_end] = ACTIONS(2646), - [sym_identifier] = ACTIONS(2648), - [anon_sym_SEMI] = ACTIONS(2646), - [anon_sym_macro_rules_BANG] = ACTIONS(2646), - [anon_sym_LPAREN] = ACTIONS(2646), - [anon_sym_LBRACK] = ACTIONS(2646), - [anon_sym_LBRACE] = ACTIONS(2646), - [anon_sym_RBRACE] = ACTIONS(2646), - [anon_sym_STAR] = ACTIONS(2646), - [anon_sym_u8] = ACTIONS(2648), - [anon_sym_i8] = ACTIONS(2648), - [anon_sym_u16] = ACTIONS(2648), - [anon_sym_i16] = ACTIONS(2648), - [anon_sym_u32] = ACTIONS(2648), - [anon_sym_i32] = ACTIONS(2648), - [anon_sym_u64] = ACTIONS(2648), - [anon_sym_i64] = ACTIONS(2648), - [anon_sym_u128] = ACTIONS(2648), - [anon_sym_i128] = ACTIONS(2648), - [anon_sym_isize] = ACTIONS(2648), - [anon_sym_usize] = ACTIONS(2648), - [anon_sym_f32] = ACTIONS(2648), - [anon_sym_f64] = ACTIONS(2648), - [anon_sym_bool] = ACTIONS(2648), - [anon_sym_str] = ACTIONS(2648), - [anon_sym_char] = ACTIONS(2648), - [anon_sym_DASH] = ACTIONS(2646), - [anon_sym_BANG] = ACTIONS(2646), - [anon_sym_AMP] = ACTIONS(2646), - [anon_sym_PIPE] = ACTIONS(2646), - [anon_sym_LT] = ACTIONS(2646), - [anon_sym_DOT_DOT] = ACTIONS(2646), - [anon_sym_COLON_COLON] = ACTIONS(2646), - [anon_sym_POUND] = ACTIONS(2646), - [anon_sym_SQUOTE] = ACTIONS(2648), - [anon_sym_async] = ACTIONS(2648), - [anon_sym_break] = ACTIONS(2648), - [anon_sym_const] = ACTIONS(2648), - [anon_sym_continue] = ACTIONS(2648), - [anon_sym_default] = ACTIONS(2648), - [anon_sym_enum] = ACTIONS(2648), - [anon_sym_fn] = ACTIONS(2648), - [anon_sym_for] = ACTIONS(2648), - [anon_sym_gen] = ACTIONS(2648), - [anon_sym_if] = ACTIONS(2648), - [anon_sym_impl] = ACTIONS(2648), - [anon_sym_let] = ACTIONS(2648), - [anon_sym_loop] = ACTIONS(2648), - [anon_sym_match] = ACTIONS(2648), - [anon_sym_mod] = ACTIONS(2648), - [anon_sym_pub] = ACTIONS(2648), - [anon_sym_return] = ACTIONS(2648), - [anon_sym_static] = ACTIONS(2648), - [anon_sym_struct] = ACTIONS(2648), - [anon_sym_trait] = ACTIONS(2648), - [anon_sym_type] = ACTIONS(2648), - [anon_sym_union] = ACTIONS(2648), - [anon_sym_unsafe] = ACTIONS(2648), - [anon_sym_use] = ACTIONS(2648), - [anon_sym_while] = ACTIONS(2648), - [anon_sym_extern] = ACTIONS(2648), - [anon_sym_yield] = ACTIONS(2648), - [anon_sym_move] = ACTIONS(2648), - [anon_sym_try] = ACTIONS(2648), - [sym_integer_literal] = ACTIONS(2646), - [aux_sym_string_literal_token1] = ACTIONS(2646), - [sym_char_literal] = ACTIONS(2646), - [anon_sym_true] = ACTIONS(2648), - [anon_sym_false] = ACTIONS(2648), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2648), - [sym_super] = ACTIONS(2648), - [sym_crate] = ACTIONS(2648), - [sym_metavariable] = ACTIONS(2646), - [sym__raw_string_literal_start] = ACTIONS(2646), - [sym_float_literal] = ACTIONS(2646), + [sym_identifier] = ACTIONS(2369), + [anon_sym_LPAREN] = ACTIONS(2371), + [anon_sym_RPAREN] = ACTIONS(2646), + [anon_sym_LBRACK] = 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(1246), + [anon_sym_AMP] = ACTIONS(2379), + [anon_sym_PIPE] = ACTIONS(1426), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1428), + [anon_sym_DOT_DOT] = ACTIONS(1256), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1260), + [anon_sym_COMMA] = ACTIONS(1430), + [anon_sym_COLON_COLON] = ACTIONS(2383), + [anon_sym_const] = ACTIONS(2385), + [anon_sym_default] = ACTIONS(2387), + [anon_sym_gen] = ACTIONS(2387), + [anon_sym_static] = ACTIONS(1432), + [anon_sym_union] = ACTIONS(2387), + [anon_sym_ref] = ACTIONS(1286), + [sym_mutable_specifier] = ACTIONS(1434), + [anon_sym_move] = ACTIONS(1436), + [sym_integer_literal] = ACTIONS(1292), + [aux_sym_string_literal_token1] = ACTIONS(1294), + [sym_char_literal] = ACTIONS(1292), + [anon_sym_true] = ACTIONS(1296), + [anon_sym_false] = ACTIONS(1296), + [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(2391), + [sym__raw_string_literal_start] = ACTIONS(1304), + [sym_float_literal] = ACTIONS(1292), }, [STATE(680)] = { [sym_line_comment] = STATE(680), [sym_block_comment] = STATE(680), - [ts_builtin_sym_end] = ACTIONS(2650), - [sym_identifier] = ACTIONS(2652), - [anon_sym_SEMI] = ACTIONS(2650), - [anon_sym_macro_rules_BANG] = ACTIONS(2650), - [anon_sym_LPAREN] = ACTIONS(2650), - [anon_sym_LBRACK] = ACTIONS(2650), - [anon_sym_LBRACE] = ACTIONS(2650), - [anon_sym_RBRACE] = ACTIONS(2650), - [anon_sym_STAR] = ACTIONS(2650), - [anon_sym_u8] = ACTIONS(2652), - [anon_sym_i8] = ACTIONS(2652), - [anon_sym_u16] = ACTIONS(2652), - [anon_sym_i16] = ACTIONS(2652), - [anon_sym_u32] = ACTIONS(2652), - [anon_sym_i32] = ACTIONS(2652), - [anon_sym_u64] = ACTIONS(2652), - [anon_sym_i64] = ACTIONS(2652), - [anon_sym_u128] = ACTIONS(2652), - [anon_sym_i128] = ACTIONS(2652), - [anon_sym_isize] = ACTIONS(2652), - [anon_sym_usize] = ACTIONS(2652), - [anon_sym_f32] = ACTIONS(2652), - [anon_sym_f64] = ACTIONS(2652), - [anon_sym_bool] = ACTIONS(2652), - [anon_sym_str] = ACTIONS(2652), - [anon_sym_char] = ACTIONS(2652), - [anon_sym_DASH] = ACTIONS(2650), - [anon_sym_BANG] = ACTIONS(2650), - [anon_sym_AMP] = ACTIONS(2650), - [anon_sym_PIPE] = ACTIONS(2650), - [anon_sym_LT] = ACTIONS(2650), - [anon_sym_DOT_DOT] = ACTIONS(2650), - [anon_sym_COLON_COLON] = ACTIONS(2650), - [anon_sym_POUND] = ACTIONS(2650), - [anon_sym_SQUOTE] = ACTIONS(2652), - [anon_sym_async] = ACTIONS(2652), - [anon_sym_break] = ACTIONS(2652), - [anon_sym_const] = ACTIONS(2652), - [anon_sym_continue] = ACTIONS(2652), - [anon_sym_default] = ACTIONS(2652), - [anon_sym_enum] = ACTIONS(2652), - [anon_sym_fn] = ACTIONS(2652), - [anon_sym_for] = ACTIONS(2652), - [anon_sym_gen] = ACTIONS(2652), - [anon_sym_if] = ACTIONS(2652), - [anon_sym_impl] = ACTIONS(2652), - [anon_sym_let] = ACTIONS(2652), - [anon_sym_loop] = ACTIONS(2652), - [anon_sym_match] = ACTIONS(2652), - [anon_sym_mod] = ACTIONS(2652), - [anon_sym_pub] = ACTIONS(2652), - [anon_sym_return] = ACTIONS(2652), - [anon_sym_static] = ACTIONS(2652), - [anon_sym_struct] = ACTIONS(2652), - [anon_sym_trait] = ACTIONS(2652), - [anon_sym_type] = ACTIONS(2652), - [anon_sym_union] = ACTIONS(2652), - [anon_sym_unsafe] = ACTIONS(2652), - [anon_sym_use] = ACTIONS(2652), - [anon_sym_while] = ACTIONS(2652), - [anon_sym_extern] = ACTIONS(2652), - [anon_sym_yield] = ACTIONS(2652), - [anon_sym_move] = ACTIONS(2652), - [anon_sym_try] = ACTIONS(2652), - [sym_integer_literal] = ACTIONS(2650), - [aux_sym_string_literal_token1] = ACTIONS(2650), - [sym_char_literal] = ACTIONS(2650), - [anon_sym_true] = ACTIONS(2652), - [anon_sym_false] = ACTIONS(2652), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2652), - [sym_super] = ACTIONS(2652), - [sym_crate] = ACTIONS(2652), - [sym_metavariable] = ACTIONS(2650), - [sym__raw_string_literal_start] = ACTIONS(2650), - [sym_float_literal] = ACTIONS(2650), + [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_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_safe] = 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(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [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(681)] = { [sym_line_comment] = STATE(681), [sym_block_comment] = STATE(681), - [ts_builtin_sym_end] = ACTIONS(2654), - [sym_identifier] = ACTIONS(2656), - [anon_sym_SEMI] = ACTIONS(2654), - [anon_sym_macro_rules_BANG] = ACTIONS(2654), - [anon_sym_LPAREN] = ACTIONS(2654), - [anon_sym_LBRACK] = ACTIONS(2654), - [anon_sym_LBRACE] = ACTIONS(2654), - [anon_sym_RBRACE] = ACTIONS(2654), - [anon_sym_STAR] = ACTIONS(2654), - [anon_sym_u8] = ACTIONS(2656), - [anon_sym_i8] = ACTIONS(2656), - [anon_sym_u16] = ACTIONS(2656), - [anon_sym_i16] = ACTIONS(2656), - [anon_sym_u32] = ACTIONS(2656), - [anon_sym_i32] = ACTIONS(2656), - [anon_sym_u64] = ACTIONS(2656), - [anon_sym_i64] = ACTIONS(2656), - [anon_sym_u128] = ACTIONS(2656), - [anon_sym_i128] = ACTIONS(2656), - [anon_sym_isize] = ACTIONS(2656), - [anon_sym_usize] = ACTIONS(2656), - [anon_sym_f32] = ACTIONS(2656), - [anon_sym_f64] = ACTIONS(2656), - [anon_sym_bool] = ACTIONS(2656), - [anon_sym_str] = ACTIONS(2656), - [anon_sym_char] = ACTIONS(2656), - [anon_sym_DASH] = ACTIONS(2654), - [anon_sym_BANG] = ACTIONS(2654), - [anon_sym_AMP] = ACTIONS(2654), - [anon_sym_PIPE] = ACTIONS(2654), - [anon_sym_LT] = ACTIONS(2654), - [anon_sym_DOT_DOT] = ACTIONS(2654), - [anon_sym_COLON_COLON] = ACTIONS(2654), - [anon_sym_POUND] = ACTIONS(2654), - [anon_sym_SQUOTE] = ACTIONS(2656), - [anon_sym_async] = ACTIONS(2656), - [anon_sym_break] = ACTIONS(2656), - [anon_sym_const] = ACTIONS(2656), - [anon_sym_continue] = ACTIONS(2656), - [anon_sym_default] = ACTIONS(2656), - [anon_sym_enum] = ACTIONS(2656), - [anon_sym_fn] = ACTIONS(2656), - [anon_sym_for] = ACTIONS(2656), - [anon_sym_gen] = ACTIONS(2656), - [anon_sym_if] = ACTIONS(2656), - [anon_sym_impl] = ACTIONS(2656), - [anon_sym_let] = ACTIONS(2656), - [anon_sym_loop] = ACTIONS(2656), - [anon_sym_match] = ACTIONS(2656), - [anon_sym_mod] = ACTIONS(2656), - [anon_sym_pub] = ACTIONS(2656), - [anon_sym_return] = ACTIONS(2656), - [anon_sym_static] = ACTIONS(2656), - [anon_sym_struct] = ACTIONS(2656), - [anon_sym_trait] = ACTIONS(2656), - [anon_sym_type] = ACTIONS(2656), - [anon_sym_union] = ACTIONS(2656), - [anon_sym_unsafe] = ACTIONS(2656), - [anon_sym_use] = ACTIONS(2656), - [anon_sym_while] = ACTIONS(2656), - [anon_sym_extern] = ACTIONS(2656), - [anon_sym_yield] = ACTIONS(2656), - [anon_sym_move] = ACTIONS(2656), - [anon_sym_try] = ACTIONS(2656), - [sym_integer_literal] = ACTIONS(2654), - [aux_sym_string_literal_token1] = ACTIONS(2654), - [sym_char_literal] = ACTIONS(2654), - [anon_sym_true] = ACTIONS(2656), - [anon_sym_false] = ACTIONS(2656), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2656), - [sym_super] = ACTIONS(2656), - [sym_crate] = ACTIONS(2656), - [sym_metavariable] = ACTIONS(2654), - [sym__raw_string_literal_start] = ACTIONS(2654), - [sym_float_literal] = ACTIONS(2654), + [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_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_safe] = 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(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [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(682)] = { [sym_line_comment] = STATE(682), [sym_block_comment] = STATE(682), - [ts_builtin_sym_end] = ACTIONS(2658), - [sym_identifier] = ACTIONS(2660), - [anon_sym_SEMI] = ACTIONS(2658), - [anon_sym_macro_rules_BANG] = ACTIONS(2658), - [anon_sym_LPAREN] = ACTIONS(2658), - [anon_sym_LBRACK] = ACTIONS(2658), - [anon_sym_LBRACE] = ACTIONS(2658), - [anon_sym_RBRACE] = ACTIONS(2658), - [anon_sym_STAR] = ACTIONS(2658), - [anon_sym_u8] = ACTIONS(2660), - [anon_sym_i8] = ACTIONS(2660), - [anon_sym_u16] = ACTIONS(2660), - [anon_sym_i16] = ACTIONS(2660), - [anon_sym_u32] = ACTIONS(2660), - [anon_sym_i32] = ACTIONS(2660), - [anon_sym_u64] = ACTIONS(2660), - [anon_sym_i64] = ACTIONS(2660), - [anon_sym_u128] = ACTIONS(2660), - [anon_sym_i128] = ACTIONS(2660), - [anon_sym_isize] = ACTIONS(2660), - [anon_sym_usize] = ACTIONS(2660), - [anon_sym_f32] = ACTIONS(2660), - [anon_sym_f64] = ACTIONS(2660), - [anon_sym_bool] = ACTIONS(2660), - [anon_sym_str] = ACTIONS(2660), - [anon_sym_char] = ACTIONS(2660), - [anon_sym_DASH] = ACTIONS(2658), - [anon_sym_BANG] = ACTIONS(2658), - [anon_sym_AMP] = ACTIONS(2658), - [anon_sym_PIPE] = ACTIONS(2658), - [anon_sym_LT] = ACTIONS(2658), - [anon_sym_DOT_DOT] = ACTIONS(2658), - [anon_sym_COLON_COLON] = ACTIONS(2658), - [anon_sym_POUND] = ACTIONS(2658), - [anon_sym_SQUOTE] = ACTIONS(2660), - [anon_sym_async] = ACTIONS(2660), - [anon_sym_break] = ACTIONS(2660), - [anon_sym_const] = ACTIONS(2660), - [anon_sym_continue] = ACTIONS(2660), - [anon_sym_default] = ACTIONS(2660), - [anon_sym_enum] = ACTIONS(2660), - [anon_sym_fn] = ACTIONS(2660), - [anon_sym_for] = ACTIONS(2660), - [anon_sym_gen] = ACTIONS(2660), - [anon_sym_if] = ACTIONS(2660), - [anon_sym_impl] = ACTIONS(2660), - [anon_sym_let] = ACTIONS(2660), - [anon_sym_loop] = ACTIONS(2660), - [anon_sym_match] = ACTIONS(2660), - [anon_sym_mod] = ACTIONS(2660), - [anon_sym_pub] = ACTIONS(2660), - [anon_sym_return] = ACTIONS(2660), - [anon_sym_static] = ACTIONS(2660), - [anon_sym_struct] = ACTIONS(2660), - [anon_sym_trait] = ACTIONS(2660), - [anon_sym_type] = ACTIONS(2660), - [anon_sym_union] = ACTIONS(2660), - [anon_sym_unsafe] = ACTIONS(2660), - [anon_sym_use] = ACTIONS(2660), - [anon_sym_while] = ACTIONS(2660), - [anon_sym_extern] = ACTIONS(2660), - [anon_sym_yield] = ACTIONS(2660), - [anon_sym_move] = ACTIONS(2660), - [anon_sym_try] = ACTIONS(2660), - [sym_integer_literal] = ACTIONS(2658), - [aux_sym_string_literal_token1] = ACTIONS(2658), - [sym_char_literal] = ACTIONS(2658), - [anon_sym_true] = ACTIONS(2660), - [anon_sym_false] = ACTIONS(2660), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2660), - [sym_super] = ACTIONS(2660), - [sym_crate] = ACTIONS(2660), - [sym_metavariable] = ACTIONS(2658), - [sym__raw_string_literal_start] = ACTIONS(2658), - [sym_float_literal] = ACTIONS(2658), + [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_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_safe] = 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(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [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(683)] = { [sym_line_comment] = STATE(683), [sym_block_comment] = STATE(683), - [ts_builtin_sym_end] = ACTIONS(2662), - [sym_identifier] = ACTIONS(2664), - [anon_sym_SEMI] = ACTIONS(2662), - [anon_sym_macro_rules_BANG] = ACTIONS(2662), - [anon_sym_LPAREN] = ACTIONS(2662), - [anon_sym_LBRACK] = ACTIONS(2662), - [anon_sym_LBRACE] = ACTIONS(2662), - [anon_sym_RBRACE] = ACTIONS(2662), - [anon_sym_STAR] = ACTIONS(2662), - [anon_sym_u8] = ACTIONS(2664), - [anon_sym_i8] = ACTIONS(2664), - [anon_sym_u16] = ACTIONS(2664), - [anon_sym_i16] = ACTIONS(2664), - [anon_sym_u32] = ACTIONS(2664), - [anon_sym_i32] = ACTIONS(2664), - [anon_sym_u64] = ACTIONS(2664), - [anon_sym_i64] = ACTIONS(2664), - [anon_sym_u128] = ACTIONS(2664), - [anon_sym_i128] = ACTIONS(2664), - [anon_sym_isize] = ACTIONS(2664), - [anon_sym_usize] = ACTIONS(2664), - [anon_sym_f32] = ACTIONS(2664), - [anon_sym_f64] = ACTIONS(2664), - [anon_sym_bool] = ACTIONS(2664), - [anon_sym_str] = ACTIONS(2664), - [anon_sym_char] = ACTIONS(2664), - [anon_sym_DASH] = ACTIONS(2662), - [anon_sym_BANG] = ACTIONS(2662), - [anon_sym_AMP] = ACTIONS(2662), - [anon_sym_PIPE] = ACTIONS(2662), - [anon_sym_LT] = ACTIONS(2662), - [anon_sym_DOT_DOT] = ACTIONS(2662), - [anon_sym_COLON_COLON] = ACTIONS(2662), - [anon_sym_POUND] = ACTIONS(2662), - [anon_sym_SQUOTE] = ACTIONS(2664), - [anon_sym_async] = ACTIONS(2664), - [anon_sym_break] = ACTIONS(2664), - [anon_sym_const] = ACTIONS(2664), - [anon_sym_continue] = ACTIONS(2664), - [anon_sym_default] = ACTIONS(2664), - [anon_sym_enum] = ACTIONS(2664), - [anon_sym_fn] = ACTIONS(2664), - [anon_sym_for] = ACTIONS(2664), - [anon_sym_gen] = ACTIONS(2664), - [anon_sym_if] = ACTIONS(2664), - [anon_sym_impl] = ACTIONS(2664), - [anon_sym_let] = ACTIONS(2664), - [anon_sym_loop] = ACTIONS(2664), - [anon_sym_match] = ACTIONS(2664), - [anon_sym_mod] = ACTIONS(2664), - [anon_sym_pub] = ACTIONS(2664), - [anon_sym_return] = ACTIONS(2664), - [anon_sym_static] = ACTIONS(2664), - [anon_sym_struct] = ACTIONS(2664), - [anon_sym_trait] = ACTIONS(2664), - [anon_sym_type] = ACTIONS(2664), - [anon_sym_union] = ACTIONS(2664), - [anon_sym_unsafe] = ACTIONS(2664), - [anon_sym_use] = ACTIONS(2664), - [anon_sym_while] = ACTIONS(2664), - [anon_sym_extern] = ACTIONS(2664), - [anon_sym_yield] = ACTIONS(2664), - [anon_sym_move] = ACTIONS(2664), - [anon_sym_try] = ACTIONS(2664), - [sym_integer_literal] = ACTIONS(2662), - [aux_sym_string_literal_token1] = ACTIONS(2662), - [sym_char_literal] = ACTIONS(2662), - [anon_sym_true] = ACTIONS(2664), - [anon_sym_false] = ACTIONS(2664), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2664), - [sym_super] = ACTIONS(2664), - [sym_crate] = ACTIONS(2664), - [sym_metavariable] = ACTIONS(2662), - [sym__raw_string_literal_start] = ACTIONS(2662), - [sym_float_literal] = ACTIONS(2662), + [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_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_safe] = 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(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [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(684)] = { [sym_line_comment] = STATE(684), [sym_block_comment] = STATE(684), - [ts_builtin_sym_end] = ACTIONS(2666), - [sym_identifier] = ACTIONS(2668), - [anon_sym_SEMI] = ACTIONS(2666), - [anon_sym_macro_rules_BANG] = ACTIONS(2666), - [anon_sym_LPAREN] = ACTIONS(2666), - [anon_sym_LBRACK] = ACTIONS(2666), - [anon_sym_LBRACE] = ACTIONS(2666), - [anon_sym_RBRACE] = ACTIONS(2666), - [anon_sym_STAR] = ACTIONS(2666), - [anon_sym_u8] = ACTIONS(2668), - [anon_sym_i8] = ACTIONS(2668), - [anon_sym_u16] = ACTIONS(2668), - [anon_sym_i16] = ACTIONS(2668), - [anon_sym_u32] = ACTIONS(2668), - [anon_sym_i32] = ACTIONS(2668), - [anon_sym_u64] = ACTIONS(2668), - [anon_sym_i64] = ACTIONS(2668), - [anon_sym_u128] = ACTIONS(2668), - [anon_sym_i128] = ACTIONS(2668), - [anon_sym_isize] = ACTIONS(2668), - [anon_sym_usize] = ACTIONS(2668), - [anon_sym_f32] = ACTIONS(2668), - [anon_sym_f64] = ACTIONS(2668), - [anon_sym_bool] = ACTIONS(2668), - [anon_sym_str] = ACTIONS(2668), - [anon_sym_char] = ACTIONS(2668), - [anon_sym_DASH] = ACTIONS(2666), - [anon_sym_BANG] = ACTIONS(2666), - [anon_sym_AMP] = ACTIONS(2666), - [anon_sym_PIPE] = ACTIONS(2666), - [anon_sym_LT] = ACTIONS(2666), - [anon_sym_DOT_DOT] = ACTIONS(2666), - [anon_sym_COLON_COLON] = ACTIONS(2666), - [anon_sym_POUND] = ACTIONS(2666), - [anon_sym_SQUOTE] = ACTIONS(2668), - [anon_sym_async] = ACTIONS(2668), - [anon_sym_break] = ACTIONS(2668), - [anon_sym_const] = ACTIONS(2668), - [anon_sym_continue] = ACTIONS(2668), - [anon_sym_default] = ACTIONS(2668), - [anon_sym_enum] = ACTIONS(2668), - [anon_sym_fn] = ACTIONS(2668), - [anon_sym_for] = ACTIONS(2668), - [anon_sym_gen] = ACTIONS(2668), - [anon_sym_if] = ACTIONS(2668), - [anon_sym_impl] = ACTIONS(2668), - [anon_sym_let] = ACTIONS(2668), - [anon_sym_loop] = ACTIONS(2668), - [anon_sym_match] = ACTIONS(2668), - [anon_sym_mod] = ACTIONS(2668), - [anon_sym_pub] = ACTIONS(2668), - [anon_sym_return] = ACTIONS(2668), - [anon_sym_static] = ACTIONS(2668), - [anon_sym_struct] = ACTIONS(2668), - [anon_sym_trait] = ACTIONS(2668), - [anon_sym_type] = ACTIONS(2668), - [anon_sym_union] = ACTIONS(2668), - [anon_sym_unsafe] = ACTIONS(2668), - [anon_sym_use] = ACTIONS(2668), - [anon_sym_while] = ACTIONS(2668), - [anon_sym_extern] = ACTIONS(2668), - [anon_sym_yield] = ACTIONS(2668), - [anon_sym_move] = ACTIONS(2668), - [anon_sym_try] = ACTIONS(2668), - [sym_integer_literal] = ACTIONS(2666), - [aux_sym_string_literal_token1] = ACTIONS(2666), - [sym_char_literal] = ACTIONS(2666), - [anon_sym_true] = ACTIONS(2668), - [anon_sym_false] = ACTIONS(2668), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2668), - [sym_super] = ACTIONS(2668), - [sym_crate] = ACTIONS(2668), - [sym_metavariable] = ACTIONS(2666), - [sym__raw_string_literal_start] = ACTIONS(2666), - [sym_float_literal] = ACTIONS(2666), + [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_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_safe] = 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(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [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(685)] = { - [sym_empty_statement] = STATE(1090), - [sym_macro_definition] = STATE(1090), - [sym_attribute_item] = STATE(1090), - [sym_inner_attribute_item] = STATE(1090), - [sym_mod_item] = STATE(1090), - [sym_foreign_mod_item] = STATE(1090), - [sym_struct_item] = STATE(1090), - [sym_union_item] = STATE(1090), - [sym_enum_item] = STATE(1090), - [sym_extern_crate_declaration] = STATE(1090), - [sym_const_item] = STATE(1090), - [sym_static_item] = STATE(1090), - [sym_type_item] = STATE(1090), - [sym_function_item] = STATE(1090), - [sym_function_signature_item] = STATE(1090), - [sym_function_modifiers] = STATE(3720), - [sym_impl_item] = STATE(1090), - [sym_trait_item] = STATE(1090), - [sym_associated_type] = STATE(1090), - [sym_let_declaration] = STATE(1090), - [sym_use_declaration] = STATE(1090), - [sym_extern_modifier] = STATE(2229), - [sym_visibility_modifier] = STATE(1997), - [sym_bracketed_type] = STATE(3441), - [sym_generic_type_with_turbofish] = STATE(3467), - [sym_macro_invocation] = STATE(1090), - [sym_scoped_identifier] = STATE(3306), [sym_line_comment] = STATE(685), [sym_block_comment] = STATE(685), - [aux_sym_declaration_list_repeat1] = STATE(641), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(2544), - [anon_sym_SEMI] = ACTIONS(2546), - [anon_sym_macro_rules_BANG] = ACTIONS(2548), - [anon_sym_RBRACE] = ACTIONS(2670), - [anon_sym_u8] = ACTIONS(2552), - [anon_sym_i8] = ACTIONS(2552), - [anon_sym_u16] = ACTIONS(2552), - [anon_sym_i16] = ACTIONS(2552), - [anon_sym_u32] = ACTIONS(2552), - [anon_sym_i32] = ACTIONS(2552), - [anon_sym_u64] = ACTIONS(2552), - [anon_sym_i64] = ACTIONS(2552), - [anon_sym_u128] = ACTIONS(2552), - [anon_sym_i128] = ACTIONS(2552), - [anon_sym_isize] = ACTIONS(2552), - [anon_sym_usize] = ACTIONS(2552), - [anon_sym_f32] = ACTIONS(2552), - [anon_sym_f64] = ACTIONS(2552), - [anon_sym_bool] = ACTIONS(2552), - [anon_sym_str] = ACTIONS(2552), - [anon_sym_char] = ACTIONS(2552), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(2554), - [anon_sym_POUND] = ACTIONS(2556), - [anon_sym_async] = ACTIONS(1265), - [anon_sym_const] = ACTIONS(2558), - [anon_sym_default] = ACTIONS(2560), - [anon_sym_enum] = ACTIONS(2562), - [anon_sym_fn] = ACTIONS(2564), - [anon_sym_gen] = ACTIONS(2566), - [anon_sym_impl] = ACTIONS(2568), - [anon_sym_let] = ACTIONS(2570), - [anon_sym_mod] = ACTIONS(2572), - [anon_sym_pub] = ACTIONS(69), - [anon_sym_static] = ACTIONS(2574), - [anon_sym_struct] = ACTIONS(2576), - [anon_sym_trait] = ACTIONS(2578), - [anon_sym_type] = ACTIONS(2580), - [anon_sym_union] = ACTIONS(2582), - [anon_sym_unsafe] = ACTIONS(2584), - [anon_sym_use] = ACTIONS(2586), - [anon_sym_extern] = ACTIONS(2588), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2590), - [sym_super] = ACTIONS(2590), - [sym_crate] = ACTIONS(2592), - [sym_metavariable] = ACTIONS(2594), + [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_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_safe] = 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(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [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(686)] = { [sym_line_comment] = STATE(686), @@ -86837,6 +87303,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(2674), [anon_sym_while] = ACTIONS(2674), [anon_sym_extern] = ACTIONS(2674), + [anon_sym_safe] = ACTIONS(2674), [anon_sym_yield] = ACTIONS(2674), [anon_sym_move] = ACTIONS(2674), [anon_sym_try] = ACTIONS(2674), @@ -86845,8 +87312,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2672), [anon_sym_true] = ACTIONS(2674), [anon_sym_false] = ACTIONS(2674), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), [sym_self] = ACTIONS(2674), [sym_super] = ACTIONS(2674), [sym_crate] = ACTIONS(2674), @@ -86918,6 +87385,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(2678), [anon_sym_while] = ACTIONS(2678), [anon_sym_extern] = ACTIONS(2678), + [anon_sym_safe] = ACTIONS(2678), [anon_sym_yield] = ACTIONS(2678), [anon_sym_move] = ACTIONS(2678), [anon_sym_try] = ACTIONS(2678), @@ -86926,8 +87394,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2676), [anon_sym_true] = ACTIONS(2678), [anon_sym_false] = ACTIONS(2678), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), [sym_self] = ACTIONS(2678), [sym_super] = ACTIONS(2678), [sym_crate] = ACTIONS(2678), @@ -86936,494 +87404,418 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(2676), }, [STATE(688)] = { - [sym_empty_statement] = STATE(1090), - [sym_macro_definition] = STATE(1090), - [sym_attribute_item] = STATE(1090), - [sym_inner_attribute_item] = STATE(1090), - [sym_mod_item] = STATE(1090), - [sym_foreign_mod_item] = STATE(1090), - [sym_struct_item] = STATE(1090), - [sym_union_item] = STATE(1090), - [sym_enum_item] = STATE(1090), - [sym_extern_crate_declaration] = STATE(1090), - [sym_const_item] = STATE(1090), - [sym_static_item] = STATE(1090), - [sym_type_item] = STATE(1090), - [sym_function_item] = STATE(1090), - [sym_function_signature_item] = STATE(1090), - [sym_function_modifiers] = STATE(3720), - [sym_impl_item] = STATE(1090), - [sym_trait_item] = STATE(1090), - [sym_associated_type] = STATE(1090), - [sym_let_declaration] = STATE(1090), - [sym_use_declaration] = STATE(1090), - [sym_extern_modifier] = STATE(2229), - [sym_visibility_modifier] = STATE(1997), - [sym_bracketed_type] = STATE(3441), - [sym_generic_type_with_turbofish] = STATE(3467), - [sym_macro_invocation] = STATE(1090), - [sym_scoped_identifier] = STATE(3306), [sym_line_comment] = STATE(688), [sym_block_comment] = STATE(688), - [aux_sym_declaration_list_repeat1] = STATE(693), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(2544), - [anon_sym_SEMI] = ACTIONS(2546), - [anon_sym_macro_rules_BANG] = ACTIONS(2548), + [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_u8] = ACTIONS(2552), - [anon_sym_i8] = ACTIONS(2552), - [anon_sym_u16] = ACTIONS(2552), - [anon_sym_i16] = ACTIONS(2552), - [anon_sym_u32] = ACTIONS(2552), - [anon_sym_i32] = ACTIONS(2552), - [anon_sym_u64] = ACTIONS(2552), - [anon_sym_i64] = ACTIONS(2552), - [anon_sym_u128] = ACTIONS(2552), - [anon_sym_i128] = ACTIONS(2552), - [anon_sym_isize] = ACTIONS(2552), - [anon_sym_usize] = ACTIONS(2552), - [anon_sym_f32] = ACTIONS(2552), - [anon_sym_f64] = ACTIONS(2552), - [anon_sym_bool] = ACTIONS(2552), - [anon_sym_str] = ACTIONS(2552), - [anon_sym_char] = ACTIONS(2552), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(2554), - [anon_sym_POUND] = ACTIONS(2556), - [anon_sym_async] = ACTIONS(1265), - [anon_sym_const] = ACTIONS(2558), - [anon_sym_default] = ACTIONS(2560), - [anon_sym_enum] = ACTIONS(2562), - [anon_sym_fn] = ACTIONS(2564), - [anon_sym_gen] = ACTIONS(2566), - [anon_sym_impl] = ACTIONS(2568), - [anon_sym_let] = ACTIONS(2570), - [anon_sym_mod] = ACTIONS(2572), - [anon_sym_pub] = ACTIONS(69), - [anon_sym_static] = ACTIONS(2574), - [anon_sym_struct] = ACTIONS(2576), - [anon_sym_trait] = ACTIONS(2578), - [anon_sym_type] = ACTIONS(2580), - [anon_sym_union] = ACTIONS(2582), - [anon_sym_unsafe] = ACTIONS(2584), - [anon_sym_use] = ACTIONS(2586), - [anon_sym_extern] = ACTIONS(2588), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2590), - [sym_super] = ACTIONS(2590), - [sym_crate] = ACTIONS(2592), - [sym_metavariable] = ACTIONS(2594), + [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_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_safe] = 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(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [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(689)] = { [sym_line_comment] = STATE(689), [sym_block_comment] = STATE(689), - [ts_builtin_sym_end] = ACTIONS(2682), - [sym_identifier] = ACTIONS(2684), - [anon_sym_SEMI] = ACTIONS(2682), - [anon_sym_macro_rules_BANG] = ACTIONS(2682), - [anon_sym_LPAREN] = ACTIONS(2682), - [anon_sym_LBRACK] = ACTIONS(2682), - [anon_sym_LBRACE] = ACTIONS(2682), - [anon_sym_RBRACE] = ACTIONS(2682), - [anon_sym_STAR] = ACTIONS(2682), - [anon_sym_u8] = ACTIONS(2684), - [anon_sym_i8] = ACTIONS(2684), - [anon_sym_u16] = ACTIONS(2684), - [anon_sym_i16] = ACTIONS(2684), - [anon_sym_u32] = ACTIONS(2684), - [anon_sym_i32] = ACTIONS(2684), - [anon_sym_u64] = ACTIONS(2684), - [anon_sym_i64] = ACTIONS(2684), - [anon_sym_u128] = ACTIONS(2684), - [anon_sym_i128] = ACTIONS(2684), - [anon_sym_isize] = ACTIONS(2684), - [anon_sym_usize] = ACTIONS(2684), - [anon_sym_f32] = ACTIONS(2684), - [anon_sym_f64] = ACTIONS(2684), - [anon_sym_bool] = ACTIONS(2684), - [anon_sym_str] = ACTIONS(2684), - [anon_sym_char] = ACTIONS(2684), - [anon_sym_DASH] = ACTIONS(2682), - [anon_sym_BANG] = ACTIONS(2682), - [anon_sym_AMP] = ACTIONS(2682), - [anon_sym_PIPE] = ACTIONS(2682), - [anon_sym_LT] = ACTIONS(2682), - [anon_sym_DOT_DOT] = ACTIONS(2682), - [anon_sym_COLON_COLON] = ACTIONS(2682), - [anon_sym_POUND] = ACTIONS(2682), - [anon_sym_SQUOTE] = ACTIONS(2684), - [anon_sym_async] = ACTIONS(2684), - [anon_sym_break] = ACTIONS(2684), - [anon_sym_const] = ACTIONS(2684), - [anon_sym_continue] = ACTIONS(2684), - [anon_sym_default] = ACTIONS(2684), - [anon_sym_enum] = ACTIONS(2684), - [anon_sym_fn] = ACTIONS(2684), - [anon_sym_for] = ACTIONS(2684), - [anon_sym_gen] = ACTIONS(2684), - [anon_sym_if] = ACTIONS(2684), - [anon_sym_impl] = ACTIONS(2684), - [anon_sym_let] = ACTIONS(2684), - [anon_sym_loop] = ACTIONS(2684), - [anon_sym_match] = ACTIONS(2684), - [anon_sym_mod] = ACTIONS(2684), - [anon_sym_pub] = ACTIONS(2684), - [anon_sym_return] = ACTIONS(2684), - [anon_sym_static] = ACTIONS(2684), - [anon_sym_struct] = ACTIONS(2684), - [anon_sym_trait] = ACTIONS(2684), - [anon_sym_type] = ACTIONS(2684), - [anon_sym_union] = ACTIONS(2684), - [anon_sym_unsafe] = ACTIONS(2684), - [anon_sym_use] = ACTIONS(2684), - [anon_sym_while] = ACTIONS(2684), - [anon_sym_extern] = ACTIONS(2684), - [anon_sym_yield] = ACTIONS(2684), - [anon_sym_move] = ACTIONS(2684), - [anon_sym_try] = ACTIONS(2684), - [sym_integer_literal] = ACTIONS(2682), - [aux_sym_string_literal_token1] = ACTIONS(2682), - [sym_char_literal] = ACTIONS(2682), - [anon_sym_true] = ACTIONS(2684), - [anon_sym_false] = ACTIONS(2684), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2684), - [sym_super] = ACTIONS(2684), - [sym_crate] = ACTIONS(2684), - [sym_metavariable] = ACTIONS(2682), - [sym__raw_string_literal_start] = ACTIONS(2682), - [sym_float_literal] = ACTIONS(2682), + [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_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_safe] = 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(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [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(690)] = { [sym_line_comment] = STATE(690), [sym_block_comment] = STATE(690), - [ts_builtin_sym_end] = ACTIONS(2686), - [sym_identifier] = ACTIONS(2688), - [anon_sym_SEMI] = ACTIONS(2686), - [anon_sym_macro_rules_BANG] = ACTIONS(2686), - [anon_sym_LPAREN] = ACTIONS(2686), - [anon_sym_LBRACK] = ACTIONS(2686), - [anon_sym_LBRACE] = ACTIONS(2686), - [anon_sym_RBRACE] = ACTIONS(2686), - [anon_sym_STAR] = ACTIONS(2686), - [anon_sym_u8] = ACTIONS(2688), - [anon_sym_i8] = ACTIONS(2688), - [anon_sym_u16] = ACTIONS(2688), - [anon_sym_i16] = ACTIONS(2688), - [anon_sym_u32] = ACTIONS(2688), - [anon_sym_i32] = ACTIONS(2688), - [anon_sym_u64] = ACTIONS(2688), - [anon_sym_i64] = ACTIONS(2688), - [anon_sym_u128] = ACTIONS(2688), - [anon_sym_i128] = ACTIONS(2688), - [anon_sym_isize] = ACTIONS(2688), - [anon_sym_usize] = ACTIONS(2688), - [anon_sym_f32] = ACTIONS(2688), - [anon_sym_f64] = ACTIONS(2688), - [anon_sym_bool] = ACTIONS(2688), - [anon_sym_str] = ACTIONS(2688), - [anon_sym_char] = ACTIONS(2688), - [anon_sym_DASH] = ACTIONS(2686), - [anon_sym_BANG] = ACTIONS(2686), - [anon_sym_AMP] = ACTIONS(2686), - [anon_sym_PIPE] = ACTIONS(2686), - [anon_sym_LT] = ACTIONS(2686), - [anon_sym_DOT_DOT] = ACTIONS(2686), - [anon_sym_COLON_COLON] = ACTIONS(2686), - [anon_sym_POUND] = ACTIONS(2686), - [anon_sym_SQUOTE] = ACTIONS(2688), - [anon_sym_async] = ACTIONS(2688), - [anon_sym_break] = ACTIONS(2688), - [anon_sym_const] = ACTIONS(2688), - [anon_sym_continue] = ACTIONS(2688), - [anon_sym_default] = ACTIONS(2688), - [anon_sym_enum] = ACTIONS(2688), - [anon_sym_fn] = ACTIONS(2688), - [anon_sym_for] = ACTIONS(2688), - [anon_sym_gen] = ACTIONS(2688), - [anon_sym_if] = ACTIONS(2688), - [anon_sym_impl] = ACTIONS(2688), - [anon_sym_let] = ACTIONS(2688), - [anon_sym_loop] = ACTIONS(2688), - [anon_sym_match] = ACTIONS(2688), - [anon_sym_mod] = ACTIONS(2688), - [anon_sym_pub] = ACTIONS(2688), - [anon_sym_return] = ACTIONS(2688), - [anon_sym_static] = ACTIONS(2688), - [anon_sym_struct] = ACTIONS(2688), - [anon_sym_trait] = ACTIONS(2688), - [anon_sym_type] = ACTIONS(2688), - [anon_sym_union] = ACTIONS(2688), - [anon_sym_unsafe] = ACTIONS(2688), - [anon_sym_use] = ACTIONS(2688), - [anon_sym_while] = ACTIONS(2688), - [anon_sym_extern] = ACTIONS(2688), - [anon_sym_yield] = ACTIONS(2688), - [anon_sym_move] = ACTIONS(2688), - [anon_sym_try] = ACTIONS(2688), - [sym_integer_literal] = ACTIONS(2686), - [aux_sym_string_literal_token1] = ACTIONS(2686), - [sym_char_literal] = ACTIONS(2686), - [anon_sym_true] = ACTIONS(2688), - [anon_sym_false] = ACTIONS(2688), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2688), - [sym_super] = ACTIONS(2688), - [sym_crate] = ACTIONS(2688), - [sym_metavariable] = ACTIONS(2686), - [sym__raw_string_literal_start] = ACTIONS(2686), - [sym_float_literal] = ACTIONS(2686), + [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_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_safe] = 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(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [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(691)] = { [sym_line_comment] = STATE(691), [sym_block_comment] = STATE(691), - [ts_builtin_sym_end] = ACTIONS(2690), - [sym_identifier] = ACTIONS(2692), - [anon_sym_SEMI] = ACTIONS(2690), - [anon_sym_macro_rules_BANG] = ACTIONS(2690), - [anon_sym_LPAREN] = ACTIONS(2690), - [anon_sym_LBRACK] = ACTIONS(2690), - [anon_sym_LBRACE] = ACTIONS(2690), - [anon_sym_RBRACE] = ACTIONS(2690), - [anon_sym_STAR] = ACTIONS(2690), - [anon_sym_u8] = ACTIONS(2692), - [anon_sym_i8] = ACTIONS(2692), - [anon_sym_u16] = ACTIONS(2692), - [anon_sym_i16] = ACTIONS(2692), - [anon_sym_u32] = ACTIONS(2692), - [anon_sym_i32] = ACTIONS(2692), - [anon_sym_u64] = ACTIONS(2692), - [anon_sym_i64] = ACTIONS(2692), - [anon_sym_u128] = ACTIONS(2692), - [anon_sym_i128] = ACTIONS(2692), - [anon_sym_isize] = ACTIONS(2692), - [anon_sym_usize] = ACTIONS(2692), - [anon_sym_f32] = ACTIONS(2692), - [anon_sym_f64] = ACTIONS(2692), - [anon_sym_bool] = ACTIONS(2692), - [anon_sym_str] = ACTIONS(2692), - [anon_sym_char] = ACTIONS(2692), - [anon_sym_DASH] = ACTIONS(2690), - [anon_sym_BANG] = ACTIONS(2690), - [anon_sym_AMP] = ACTIONS(2690), - [anon_sym_PIPE] = ACTIONS(2690), - [anon_sym_LT] = ACTIONS(2690), - [anon_sym_DOT_DOT] = ACTIONS(2690), - [anon_sym_COLON_COLON] = ACTIONS(2690), - [anon_sym_POUND] = ACTIONS(2690), - [anon_sym_SQUOTE] = ACTIONS(2692), - [anon_sym_async] = ACTIONS(2692), - [anon_sym_break] = ACTIONS(2692), - [anon_sym_const] = ACTIONS(2692), - [anon_sym_continue] = ACTIONS(2692), - [anon_sym_default] = ACTIONS(2692), - [anon_sym_enum] = ACTIONS(2692), - [anon_sym_fn] = ACTIONS(2692), - [anon_sym_for] = ACTIONS(2692), - [anon_sym_gen] = ACTIONS(2692), - [anon_sym_if] = ACTIONS(2692), - [anon_sym_impl] = ACTIONS(2692), - [anon_sym_let] = ACTIONS(2692), - [anon_sym_loop] = ACTIONS(2692), - [anon_sym_match] = ACTIONS(2692), - [anon_sym_mod] = ACTIONS(2692), - [anon_sym_pub] = ACTIONS(2692), - [anon_sym_return] = ACTIONS(2692), - [anon_sym_static] = ACTIONS(2692), - [anon_sym_struct] = ACTIONS(2692), - [anon_sym_trait] = ACTIONS(2692), - [anon_sym_type] = ACTIONS(2692), - [anon_sym_union] = ACTIONS(2692), - [anon_sym_unsafe] = ACTIONS(2692), - [anon_sym_use] = ACTIONS(2692), - [anon_sym_while] = ACTIONS(2692), - [anon_sym_extern] = ACTIONS(2692), - [anon_sym_yield] = ACTIONS(2692), - [anon_sym_move] = ACTIONS(2692), - [anon_sym_try] = ACTIONS(2692), - [sym_integer_literal] = ACTIONS(2690), - [aux_sym_string_literal_token1] = ACTIONS(2690), - [sym_char_literal] = ACTIONS(2690), - [anon_sym_true] = ACTIONS(2692), - [anon_sym_false] = ACTIONS(2692), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2692), - [sym_super] = ACTIONS(2692), - [sym_crate] = ACTIONS(2692), - [sym_metavariable] = ACTIONS(2690), - [sym__raw_string_literal_start] = ACTIONS(2690), - [sym_float_literal] = ACTIONS(2690), + [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_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_safe] = 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(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [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(692)] = { [sym_line_comment] = STATE(692), [sym_block_comment] = STATE(692), - [ts_builtin_sym_end] = ACTIONS(2694), - [sym_identifier] = ACTIONS(2696), - [anon_sym_SEMI] = ACTIONS(2694), - [anon_sym_macro_rules_BANG] = ACTIONS(2694), - [anon_sym_LPAREN] = ACTIONS(2694), - [anon_sym_LBRACK] = ACTIONS(2694), - [anon_sym_LBRACE] = ACTIONS(2694), - [anon_sym_RBRACE] = ACTIONS(2694), - [anon_sym_STAR] = ACTIONS(2694), - [anon_sym_u8] = ACTIONS(2696), - [anon_sym_i8] = ACTIONS(2696), - [anon_sym_u16] = ACTIONS(2696), - [anon_sym_i16] = ACTIONS(2696), - [anon_sym_u32] = ACTIONS(2696), - [anon_sym_i32] = ACTIONS(2696), - [anon_sym_u64] = ACTIONS(2696), - [anon_sym_i64] = ACTIONS(2696), - [anon_sym_u128] = ACTIONS(2696), - [anon_sym_i128] = ACTIONS(2696), - [anon_sym_isize] = ACTIONS(2696), - [anon_sym_usize] = ACTIONS(2696), - [anon_sym_f32] = ACTIONS(2696), - [anon_sym_f64] = ACTIONS(2696), - [anon_sym_bool] = ACTIONS(2696), - [anon_sym_str] = ACTIONS(2696), - [anon_sym_char] = ACTIONS(2696), - [anon_sym_DASH] = ACTIONS(2694), - [anon_sym_BANG] = ACTIONS(2694), - [anon_sym_AMP] = ACTIONS(2694), - [anon_sym_PIPE] = ACTIONS(2694), - [anon_sym_LT] = ACTIONS(2694), - [anon_sym_DOT_DOT] = ACTIONS(2694), - [anon_sym_COLON_COLON] = ACTIONS(2694), - [anon_sym_POUND] = ACTIONS(2694), - [anon_sym_SQUOTE] = ACTIONS(2696), - [anon_sym_async] = ACTIONS(2696), - [anon_sym_break] = ACTIONS(2696), - [anon_sym_const] = ACTIONS(2696), - [anon_sym_continue] = ACTIONS(2696), - [anon_sym_default] = ACTIONS(2696), - [anon_sym_enum] = ACTIONS(2696), - [anon_sym_fn] = ACTIONS(2696), - [anon_sym_for] = ACTIONS(2696), - [anon_sym_gen] = ACTIONS(2696), - [anon_sym_if] = ACTIONS(2696), - [anon_sym_impl] = ACTIONS(2696), - [anon_sym_let] = ACTIONS(2696), - [anon_sym_loop] = ACTIONS(2696), - [anon_sym_match] = ACTIONS(2696), - [anon_sym_mod] = ACTIONS(2696), - [anon_sym_pub] = ACTIONS(2696), - [anon_sym_return] = ACTIONS(2696), - [anon_sym_static] = ACTIONS(2696), - [anon_sym_struct] = ACTIONS(2696), - [anon_sym_trait] = ACTIONS(2696), - [anon_sym_type] = ACTIONS(2696), - [anon_sym_union] = ACTIONS(2696), - [anon_sym_unsafe] = ACTIONS(2696), - [anon_sym_use] = ACTIONS(2696), - [anon_sym_while] = ACTIONS(2696), - [anon_sym_extern] = ACTIONS(2696), - [anon_sym_yield] = ACTIONS(2696), - [anon_sym_move] = ACTIONS(2696), - [anon_sym_try] = ACTIONS(2696), - [sym_integer_literal] = ACTIONS(2694), - [aux_sym_string_literal_token1] = ACTIONS(2694), - [sym_char_literal] = ACTIONS(2694), - [anon_sym_true] = ACTIONS(2696), - [anon_sym_false] = ACTIONS(2696), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2696), - [sym_super] = ACTIONS(2696), - [sym_crate] = ACTIONS(2696), - [sym_metavariable] = ACTIONS(2694), - [sym__raw_string_literal_start] = ACTIONS(2694), - [sym_float_literal] = ACTIONS(2694), + [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_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_safe] = 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(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [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(693)] = { - [sym_empty_statement] = STATE(1090), - [sym_macro_definition] = STATE(1090), - [sym_attribute_item] = STATE(1090), - [sym_inner_attribute_item] = STATE(1090), - [sym_mod_item] = STATE(1090), - [sym_foreign_mod_item] = STATE(1090), - [sym_struct_item] = STATE(1090), - [sym_union_item] = STATE(1090), - [sym_enum_item] = STATE(1090), - [sym_extern_crate_declaration] = STATE(1090), - [sym_const_item] = STATE(1090), - [sym_static_item] = STATE(1090), - [sym_type_item] = STATE(1090), - [sym_function_item] = STATE(1090), - [sym_function_signature_item] = STATE(1090), - [sym_function_modifiers] = STATE(3720), - [sym_impl_item] = STATE(1090), - [sym_trait_item] = STATE(1090), - [sym_associated_type] = STATE(1090), - [sym_let_declaration] = STATE(1090), - [sym_use_declaration] = STATE(1090), - [sym_extern_modifier] = STATE(2229), - [sym_visibility_modifier] = STATE(1997), - [sym_bracketed_type] = STATE(3441), - [sym_generic_type_with_turbofish] = STATE(3467), - [sym_macro_invocation] = STATE(1090), - [sym_scoped_identifier] = STATE(3306), [sym_line_comment] = STATE(693), [sym_block_comment] = STATE(693), - [aux_sym_declaration_list_repeat1] = STATE(641), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(2544), - [anon_sym_SEMI] = ACTIONS(2546), - [anon_sym_macro_rules_BANG] = ACTIONS(2548), - [anon_sym_RBRACE] = ACTIONS(2698), - [anon_sym_u8] = ACTIONS(2552), - [anon_sym_i8] = ACTIONS(2552), - [anon_sym_u16] = ACTIONS(2552), - [anon_sym_i16] = ACTIONS(2552), - [anon_sym_u32] = ACTIONS(2552), - [anon_sym_i32] = ACTIONS(2552), - [anon_sym_u64] = ACTIONS(2552), - [anon_sym_i64] = ACTIONS(2552), - [anon_sym_u128] = ACTIONS(2552), - [anon_sym_i128] = ACTIONS(2552), - [anon_sym_isize] = ACTIONS(2552), - [anon_sym_usize] = ACTIONS(2552), - [anon_sym_f32] = ACTIONS(2552), - [anon_sym_f64] = ACTIONS(2552), - [anon_sym_bool] = ACTIONS(2552), - [anon_sym_str] = ACTIONS(2552), - [anon_sym_char] = ACTIONS(2552), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(2554), - [anon_sym_POUND] = ACTIONS(2556), - [anon_sym_async] = ACTIONS(1265), - [anon_sym_const] = ACTIONS(2558), - [anon_sym_default] = ACTIONS(2560), - [anon_sym_enum] = ACTIONS(2562), - [anon_sym_fn] = ACTIONS(2564), - [anon_sym_gen] = ACTIONS(2566), - [anon_sym_impl] = ACTIONS(2568), - [anon_sym_let] = ACTIONS(2570), - [anon_sym_mod] = ACTIONS(2572), - [anon_sym_pub] = ACTIONS(69), - [anon_sym_static] = ACTIONS(2574), - [anon_sym_struct] = ACTIONS(2576), - [anon_sym_trait] = ACTIONS(2578), - [anon_sym_type] = ACTIONS(2580), - [anon_sym_union] = ACTIONS(2582), - [anon_sym_unsafe] = ACTIONS(2584), - [anon_sym_use] = ACTIONS(2586), - [anon_sym_extern] = ACTIONS(2588), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2590), - [sym_super] = ACTIONS(2590), - [sym_crate] = ACTIONS(2592), - [sym_metavariable] = ACTIONS(2594), - }, - [STATE(694)] = { - [sym_line_comment] = STATE(694), - [sym_block_comment] = STATE(694), [ts_builtin_sym_end] = ACTIONS(2700), [sym_identifier] = ACTIONS(2702), [anon_sym_SEMI] = ACTIONS(2700), @@ -87485,6 +87877,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(2702), [anon_sym_while] = ACTIONS(2702), [anon_sym_extern] = ACTIONS(2702), + [anon_sym_safe] = ACTIONS(2702), [anon_sym_yield] = ACTIONS(2702), [anon_sym_move] = ACTIONS(2702), [anon_sym_try] = ACTIONS(2702), @@ -87493,8 +87886,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2700), [anon_sym_true] = ACTIONS(2702), [anon_sym_false] = ACTIONS(2702), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), [sym_self] = ACTIONS(2702), [sym_super] = ACTIONS(2702), [sym_crate] = ACTIONS(2702), @@ -87502,9 +87895,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2700), [sym_float_literal] = ACTIONS(2700), }, - [STATE(695)] = { - [sym_line_comment] = STATE(695), - [sym_block_comment] = STATE(695), + [STATE(694)] = { + [sym_line_comment] = STATE(694), + [sym_block_comment] = STATE(694), [ts_builtin_sym_end] = ACTIONS(2704), [sym_identifier] = ACTIONS(2706), [anon_sym_SEMI] = ACTIONS(2704), @@ -87566,6 +87959,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(2706), [anon_sym_while] = ACTIONS(2706), [anon_sym_extern] = ACTIONS(2706), + [anon_sym_safe] = ACTIONS(2706), [anon_sym_yield] = ACTIONS(2706), [anon_sym_move] = ACTIONS(2706), [anon_sym_try] = ACTIONS(2706), @@ -87574,8 +87968,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2704), [anon_sym_true] = ACTIONS(2706), [anon_sym_false] = ACTIONS(2706), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), [sym_self] = ACTIONS(2706), [sym_super] = ACTIONS(2706), [sym_crate] = ACTIONS(2706), @@ -87583,414 +87977,337 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2704), [sym_float_literal] = ACTIONS(2704), }, + [STATE(695)] = { + [sym_line_comment] = STATE(695), + [sym_block_comment] = STATE(695), + [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_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_safe] = 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(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [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(696)] = { - [sym_bracketed_type] = STATE(3448), - [sym_generic_type] = STATE(3450), - [sym_generic_type_with_turbofish] = STATE(3159), - [sym_macro_invocation] = STATE(2150), - [sym_scoped_identifier] = STATE(2016), - [sym_scoped_type_identifier] = STATE(2988), - [sym_const_block] = STATE(2150), - [sym_closure_expression] = STATE(3252), - [sym_closure_parameters] = STATE(239), - [sym__pattern] = STATE(3040), - [sym_generic_pattern] = STATE(2150), - [sym_tuple_pattern] = STATE(2150), - [sym_slice_pattern] = STATE(2150), - [sym_tuple_struct_pattern] = STATE(2150), - [sym_struct_pattern] = STATE(2150), - [sym_remaining_field_pattern] = STATE(2150), - [sym_mut_pattern] = STATE(2150), - [sym_range_pattern] = STATE(2150), - [sym_ref_pattern] = STATE(2150), - [sym_captured_pattern] = STATE(2150), - [sym_reference_pattern] = STATE(2150), - [sym_or_pattern] = STATE(2150), - [sym__literal_pattern] = STATE(2076), - [sym_negative_literal] = STATE(2074), - [sym_string_literal] = STATE(2074), - [sym_raw_string_literal] = STATE(2074), - [sym_boolean_literal] = STATE(2074), [sym_line_comment] = STATE(696), [sym_block_comment] = STATE(696), - [sym_identifier] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_RPAREN] = ACTIONS(2708), - [anon_sym_LBRACK] = ACTIONS(1782), - [anon_sym_u8] = ACTIONS(1784), - [anon_sym_i8] = ACTIONS(1784), - [anon_sym_u16] = ACTIONS(1784), - [anon_sym_i16] = ACTIONS(1784), - [anon_sym_u32] = ACTIONS(1784), - [anon_sym_i32] = ACTIONS(1784), - [anon_sym_u64] = ACTIONS(1784), - [anon_sym_i64] = ACTIONS(1784), - [anon_sym_u128] = ACTIONS(1784), - [anon_sym_i128] = ACTIONS(1784), - [anon_sym_isize] = ACTIONS(1784), - [anon_sym_usize] = ACTIONS(1784), - [anon_sym_f32] = ACTIONS(1784), - [anon_sym_f64] = ACTIONS(1784), - [anon_sym_bool] = ACTIONS(1784), - [anon_sym_str] = ACTIONS(1784), - [anon_sym_char] = ACTIONS(1784), - [anon_sym_DASH] = ACTIONS(1241), - [anon_sym_AMP] = ACTIONS(1786), - [anon_sym_PIPE] = ACTIONS(1449), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1451), - [anon_sym_DOT_DOT] = ACTIONS(1251), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1255), - [anon_sym_COLON_COLON] = ACTIONS(1790), - [anon_sym_const] = ACTIONS(1792), - [anon_sym_default] = ACTIONS(1794), - [anon_sym_gen] = ACTIONS(1794), - [anon_sym_static] = ACTIONS(1455), - [anon_sym_union] = ACTIONS(1794), - [anon_sym_ref] = ACTIONS(1281), - [sym_mutable_specifier] = ACTIONS(1457), - [anon_sym_move] = ACTIONS(1459), - [sym_integer_literal] = ACTIONS(1287), - [aux_sym_string_literal_token1] = ACTIONS(1289), - [sym_char_literal] = ACTIONS(1287), - [anon_sym_true] = ACTIONS(1291), - [anon_sym_false] = ACTIONS(1291), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1796), - [sym_super] = ACTIONS(1796), - [sym_crate] = ACTIONS(1796), - [sym_metavariable] = ACTIONS(1798), - [sym__raw_string_literal_start] = ACTIONS(1299), - [sym_float_literal] = ACTIONS(1287), + [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_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_safe] = 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(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [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(697)] = { [sym_line_comment] = STATE(697), [sym_block_comment] = STATE(697), - [ts_builtin_sym_end] = ACTIONS(2710), - [sym_identifier] = ACTIONS(2712), - [anon_sym_SEMI] = ACTIONS(2710), - [anon_sym_macro_rules_BANG] = ACTIONS(2710), - [anon_sym_LPAREN] = ACTIONS(2710), - [anon_sym_LBRACK] = ACTIONS(2710), - [anon_sym_LBRACE] = ACTIONS(2710), - [anon_sym_RBRACE] = ACTIONS(2710), - [anon_sym_STAR] = ACTIONS(2710), - [anon_sym_u8] = ACTIONS(2712), - [anon_sym_i8] = ACTIONS(2712), - [anon_sym_u16] = ACTIONS(2712), - [anon_sym_i16] = ACTIONS(2712), - [anon_sym_u32] = ACTIONS(2712), - [anon_sym_i32] = ACTIONS(2712), - [anon_sym_u64] = ACTIONS(2712), - [anon_sym_i64] = ACTIONS(2712), - [anon_sym_u128] = ACTIONS(2712), - [anon_sym_i128] = ACTIONS(2712), - [anon_sym_isize] = ACTIONS(2712), - [anon_sym_usize] = ACTIONS(2712), - [anon_sym_f32] = ACTIONS(2712), - [anon_sym_f64] = ACTIONS(2712), - [anon_sym_bool] = ACTIONS(2712), - [anon_sym_str] = ACTIONS(2712), - [anon_sym_char] = ACTIONS(2712), - [anon_sym_DASH] = ACTIONS(2710), - [anon_sym_BANG] = ACTIONS(2710), - [anon_sym_AMP] = ACTIONS(2710), - [anon_sym_PIPE] = ACTIONS(2710), - [anon_sym_LT] = ACTIONS(2710), - [anon_sym_DOT_DOT] = ACTIONS(2710), - [anon_sym_COLON_COLON] = ACTIONS(2710), - [anon_sym_POUND] = ACTIONS(2710), - [anon_sym_SQUOTE] = ACTIONS(2712), - [anon_sym_async] = ACTIONS(2712), - [anon_sym_break] = ACTIONS(2712), - [anon_sym_const] = ACTIONS(2712), - [anon_sym_continue] = ACTIONS(2712), - [anon_sym_default] = ACTIONS(2712), - [anon_sym_enum] = ACTIONS(2712), - [anon_sym_fn] = ACTIONS(2712), - [anon_sym_for] = ACTIONS(2712), - [anon_sym_gen] = ACTIONS(2712), - [anon_sym_if] = ACTIONS(2712), - [anon_sym_impl] = ACTIONS(2712), - [anon_sym_let] = ACTIONS(2712), - [anon_sym_loop] = ACTIONS(2712), - [anon_sym_match] = ACTIONS(2712), - [anon_sym_mod] = ACTIONS(2712), - [anon_sym_pub] = ACTIONS(2712), - [anon_sym_return] = ACTIONS(2712), - [anon_sym_static] = ACTIONS(2712), - [anon_sym_struct] = ACTIONS(2712), - [anon_sym_trait] = ACTIONS(2712), - [anon_sym_type] = ACTIONS(2712), - [anon_sym_union] = ACTIONS(2712), - [anon_sym_unsafe] = ACTIONS(2712), - [anon_sym_use] = ACTIONS(2712), - [anon_sym_while] = ACTIONS(2712), - [anon_sym_extern] = ACTIONS(2712), - [anon_sym_yield] = ACTIONS(2712), - [anon_sym_move] = ACTIONS(2712), - [anon_sym_try] = ACTIONS(2712), - [sym_integer_literal] = ACTIONS(2710), - [aux_sym_string_literal_token1] = ACTIONS(2710), - [sym_char_literal] = ACTIONS(2710), - [anon_sym_true] = ACTIONS(2712), - [anon_sym_false] = ACTIONS(2712), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2712), - [sym_super] = ACTIONS(2712), - [sym_crate] = ACTIONS(2712), - [sym_metavariable] = ACTIONS(2710), - [sym__raw_string_literal_start] = ACTIONS(2710), - [sym_float_literal] = ACTIONS(2710), + [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_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_safe] = 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(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [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(698)] = { [sym_line_comment] = STATE(698), [sym_block_comment] = STATE(698), - [ts_builtin_sym_end] = ACTIONS(2714), - [sym_identifier] = ACTIONS(2716), - [anon_sym_SEMI] = ACTIONS(2714), - [anon_sym_macro_rules_BANG] = ACTIONS(2714), - [anon_sym_LPAREN] = ACTIONS(2714), - [anon_sym_LBRACK] = ACTIONS(2714), - [anon_sym_LBRACE] = ACTIONS(2714), - [anon_sym_RBRACE] = ACTIONS(2714), - [anon_sym_STAR] = ACTIONS(2714), - [anon_sym_u8] = ACTIONS(2716), - [anon_sym_i8] = ACTIONS(2716), - [anon_sym_u16] = ACTIONS(2716), - [anon_sym_i16] = ACTIONS(2716), - [anon_sym_u32] = ACTIONS(2716), - [anon_sym_i32] = ACTIONS(2716), - [anon_sym_u64] = ACTIONS(2716), - [anon_sym_i64] = ACTIONS(2716), - [anon_sym_u128] = ACTIONS(2716), - [anon_sym_i128] = ACTIONS(2716), - [anon_sym_isize] = ACTIONS(2716), - [anon_sym_usize] = ACTIONS(2716), - [anon_sym_f32] = ACTIONS(2716), - [anon_sym_f64] = ACTIONS(2716), - [anon_sym_bool] = ACTIONS(2716), - [anon_sym_str] = ACTIONS(2716), - [anon_sym_char] = ACTIONS(2716), - [anon_sym_DASH] = ACTIONS(2714), - [anon_sym_BANG] = ACTIONS(2714), - [anon_sym_AMP] = ACTIONS(2714), - [anon_sym_PIPE] = ACTIONS(2714), - [anon_sym_LT] = ACTIONS(2714), - [anon_sym_DOT_DOT] = ACTIONS(2714), - [anon_sym_COLON_COLON] = ACTIONS(2714), - [anon_sym_POUND] = ACTIONS(2714), - [anon_sym_SQUOTE] = ACTIONS(2716), - [anon_sym_async] = ACTIONS(2716), - [anon_sym_break] = ACTIONS(2716), - [anon_sym_const] = ACTIONS(2716), - [anon_sym_continue] = ACTIONS(2716), - [anon_sym_default] = ACTIONS(2716), - [anon_sym_enum] = ACTIONS(2716), - [anon_sym_fn] = ACTIONS(2716), - [anon_sym_for] = ACTIONS(2716), - [anon_sym_gen] = ACTIONS(2716), - [anon_sym_if] = ACTIONS(2716), - [anon_sym_impl] = ACTIONS(2716), - [anon_sym_let] = ACTIONS(2716), - [anon_sym_loop] = ACTIONS(2716), - [anon_sym_match] = ACTIONS(2716), - [anon_sym_mod] = ACTIONS(2716), - [anon_sym_pub] = ACTIONS(2716), - [anon_sym_return] = ACTIONS(2716), - [anon_sym_static] = ACTIONS(2716), - [anon_sym_struct] = ACTIONS(2716), - [anon_sym_trait] = ACTIONS(2716), - [anon_sym_type] = ACTIONS(2716), - [anon_sym_union] = ACTIONS(2716), - [anon_sym_unsafe] = ACTIONS(2716), - [anon_sym_use] = ACTIONS(2716), - [anon_sym_while] = ACTIONS(2716), - [anon_sym_extern] = ACTIONS(2716), - [anon_sym_yield] = ACTIONS(2716), - [anon_sym_move] = ACTIONS(2716), - [anon_sym_try] = ACTIONS(2716), - [sym_integer_literal] = ACTIONS(2714), - [aux_sym_string_literal_token1] = ACTIONS(2714), - [sym_char_literal] = ACTIONS(2714), - [anon_sym_true] = ACTIONS(2716), - [anon_sym_false] = ACTIONS(2716), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2716), - [sym_super] = ACTIONS(2716), - [sym_crate] = ACTIONS(2716), - [sym_metavariable] = ACTIONS(2714), - [sym__raw_string_literal_start] = ACTIONS(2714), - [sym_float_literal] = ACTIONS(2714), + [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_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_safe] = 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(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [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(699)] = { [sym_line_comment] = STATE(699), [sym_block_comment] = STATE(699), - [ts_builtin_sym_end] = ACTIONS(2718), - [sym_identifier] = ACTIONS(2720), - [anon_sym_SEMI] = ACTIONS(2718), - [anon_sym_macro_rules_BANG] = ACTIONS(2718), - [anon_sym_LPAREN] = ACTIONS(2718), - [anon_sym_LBRACK] = ACTIONS(2718), - [anon_sym_LBRACE] = ACTIONS(2718), - [anon_sym_RBRACE] = ACTIONS(2718), - [anon_sym_STAR] = ACTIONS(2718), - [anon_sym_u8] = ACTIONS(2720), - [anon_sym_i8] = ACTIONS(2720), - [anon_sym_u16] = ACTIONS(2720), - [anon_sym_i16] = ACTIONS(2720), - [anon_sym_u32] = ACTIONS(2720), - [anon_sym_i32] = ACTIONS(2720), - [anon_sym_u64] = ACTIONS(2720), - [anon_sym_i64] = ACTIONS(2720), - [anon_sym_u128] = ACTIONS(2720), - [anon_sym_i128] = ACTIONS(2720), - [anon_sym_isize] = ACTIONS(2720), - [anon_sym_usize] = ACTIONS(2720), - [anon_sym_f32] = ACTIONS(2720), - [anon_sym_f64] = ACTIONS(2720), - [anon_sym_bool] = ACTIONS(2720), - [anon_sym_str] = ACTIONS(2720), - [anon_sym_char] = ACTIONS(2720), - [anon_sym_DASH] = ACTIONS(2718), - [anon_sym_BANG] = ACTIONS(2718), - [anon_sym_AMP] = ACTIONS(2718), - [anon_sym_PIPE] = ACTIONS(2718), - [anon_sym_LT] = ACTIONS(2718), - [anon_sym_DOT_DOT] = ACTIONS(2718), - [anon_sym_COLON_COLON] = ACTIONS(2718), - [anon_sym_POUND] = ACTIONS(2718), - [anon_sym_SQUOTE] = ACTIONS(2720), - [anon_sym_async] = ACTIONS(2720), - [anon_sym_break] = ACTIONS(2720), - [anon_sym_const] = ACTIONS(2720), - [anon_sym_continue] = ACTIONS(2720), - [anon_sym_default] = ACTIONS(2720), - [anon_sym_enum] = ACTIONS(2720), - [anon_sym_fn] = ACTIONS(2720), - [anon_sym_for] = ACTIONS(2720), - [anon_sym_gen] = ACTIONS(2720), - [anon_sym_if] = ACTIONS(2720), - [anon_sym_impl] = ACTIONS(2720), - [anon_sym_let] = ACTIONS(2720), - [anon_sym_loop] = ACTIONS(2720), - [anon_sym_match] = ACTIONS(2720), - [anon_sym_mod] = ACTIONS(2720), - [anon_sym_pub] = ACTIONS(2720), - [anon_sym_return] = ACTIONS(2720), - [anon_sym_static] = ACTIONS(2720), - [anon_sym_struct] = ACTIONS(2720), - [anon_sym_trait] = ACTIONS(2720), - [anon_sym_type] = ACTIONS(2720), - [anon_sym_union] = ACTIONS(2720), - [anon_sym_unsafe] = ACTIONS(2720), - [anon_sym_use] = ACTIONS(2720), - [anon_sym_while] = ACTIONS(2720), - [anon_sym_extern] = ACTIONS(2720), - [anon_sym_yield] = ACTIONS(2720), - [anon_sym_move] = ACTIONS(2720), - [anon_sym_try] = ACTIONS(2720), - [sym_integer_literal] = ACTIONS(2718), - [aux_sym_string_literal_token1] = ACTIONS(2718), - [sym_char_literal] = ACTIONS(2718), - [anon_sym_true] = ACTIONS(2720), - [anon_sym_false] = ACTIONS(2720), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2720), - [sym_super] = ACTIONS(2720), - [sym_crate] = ACTIONS(2720), - [sym_metavariable] = ACTIONS(2718), - [sym__raw_string_literal_start] = ACTIONS(2718), - [sym_float_literal] = ACTIONS(2718), - }, - [STATE(700)] = { - [sym_bracketed_type] = STATE(3448), - [sym_generic_type] = STATE(3450), - [sym_generic_type_with_turbofish] = STATE(3159), - [sym_macro_invocation] = STATE(2150), - [sym_scoped_identifier] = STATE(2016), - [sym_scoped_type_identifier] = STATE(2988), - [sym_const_block] = STATE(2150), - [sym_closure_expression] = STATE(3252), - [sym_closure_parameters] = STATE(239), - [sym__pattern] = STATE(3040), - [sym_generic_pattern] = STATE(2150), - [sym_tuple_pattern] = STATE(2150), - [sym_slice_pattern] = STATE(2150), - [sym_tuple_struct_pattern] = STATE(2150), - [sym_struct_pattern] = STATE(2150), - [sym_remaining_field_pattern] = STATE(2150), - [sym_mut_pattern] = STATE(2150), - [sym_range_pattern] = STATE(2150), - [sym_ref_pattern] = STATE(2150), - [sym_captured_pattern] = STATE(2150), - [sym_reference_pattern] = STATE(2150), - [sym_or_pattern] = STATE(2150), - [sym__literal_pattern] = STATE(2076), - [sym_negative_literal] = STATE(2074), - [sym_string_literal] = STATE(2074), - [sym_raw_string_literal] = STATE(2074), - [sym_boolean_literal] = STATE(2074), - [sym_line_comment] = STATE(700), - [sym_block_comment] = STATE(700), - [sym_identifier] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_RPAREN] = ACTIONS(2722), - [anon_sym_LBRACK] = ACTIONS(1782), - [anon_sym_u8] = ACTIONS(1784), - [anon_sym_i8] = ACTIONS(1784), - [anon_sym_u16] = ACTIONS(1784), - [anon_sym_i16] = ACTIONS(1784), - [anon_sym_u32] = ACTIONS(1784), - [anon_sym_i32] = ACTIONS(1784), - [anon_sym_u64] = ACTIONS(1784), - [anon_sym_i64] = ACTIONS(1784), - [anon_sym_u128] = ACTIONS(1784), - [anon_sym_i128] = ACTIONS(1784), - [anon_sym_isize] = ACTIONS(1784), - [anon_sym_usize] = ACTIONS(1784), - [anon_sym_f32] = ACTIONS(1784), - [anon_sym_f64] = ACTIONS(1784), - [anon_sym_bool] = ACTIONS(1784), - [anon_sym_str] = ACTIONS(1784), - [anon_sym_char] = ACTIONS(1784), - [anon_sym_DASH] = ACTIONS(1241), - [anon_sym_AMP] = ACTIONS(1786), - [anon_sym_PIPE] = ACTIONS(1449), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1451), - [anon_sym_DOT_DOT] = ACTIONS(1251), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1255), - [anon_sym_COLON_COLON] = ACTIONS(1790), - [anon_sym_const] = ACTIONS(1792), - [anon_sym_default] = ACTIONS(1794), - [anon_sym_gen] = ACTIONS(1794), - [anon_sym_static] = ACTIONS(1455), - [anon_sym_union] = ACTIONS(1794), - [anon_sym_ref] = ACTIONS(1281), - [sym_mutable_specifier] = ACTIONS(1457), - [anon_sym_move] = ACTIONS(1459), - [sym_integer_literal] = ACTIONS(1287), - [aux_sym_string_literal_token1] = ACTIONS(1289), - [sym_char_literal] = ACTIONS(1287), - [anon_sym_true] = ACTIONS(1291), - [anon_sym_false] = ACTIONS(1291), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1796), - [sym_super] = ACTIONS(1796), - [sym_crate] = ACTIONS(1796), - [sym_metavariable] = ACTIONS(1798), - [sym__raw_string_literal_start] = ACTIONS(1299), - [sym_float_literal] = ACTIONS(1287), - }, - [STATE(701)] = { - [sym_line_comment] = STATE(701), - [sym_block_comment] = STATE(701), [ts_builtin_sym_end] = ACTIONS(2724), [sym_identifier] = ACTIONS(2726), [anon_sym_SEMI] = ACTIONS(2724), @@ -88052,6 +88369,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(2726), [anon_sym_while] = ACTIONS(2726), [anon_sym_extern] = ACTIONS(2726), + [anon_sym_safe] = ACTIONS(2726), [anon_sym_yield] = ACTIONS(2726), [anon_sym_move] = ACTIONS(2726), [anon_sym_try] = ACTIONS(2726), @@ -88060,8 +88378,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2724), [anon_sym_true] = ACTIONS(2726), [anon_sym_false] = ACTIONS(2726), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), [sym_self] = ACTIONS(2726), [sym_super] = ACTIONS(2726), [sym_crate] = ACTIONS(2726), @@ -88069,24792 +88387,25857 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2724), [sym_float_literal] = ACTIONS(2724), }, + [STATE(700)] = { + [sym_line_comment] = STATE(700), + [sym_block_comment] = STATE(700), + [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_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_safe] = 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(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [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(701)] = { + [sym_line_comment] = STATE(701), + [sym_block_comment] = STATE(701), + [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_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_safe] = 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(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [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(702)] = { - [sym_bracketed_type] = STATE(3448), - [sym_generic_type] = STATE(3450), - [sym_generic_type_with_turbofish] = STATE(3159), - [sym_macro_invocation] = STATE(2150), - [sym_scoped_identifier] = STATE(2016), - [sym_scoped_type_identifier] = STATE(2988), - [sym_const_block] = STATE(2150), - [sym_closure_expression] = STATE(3252), - [sym_closure_parameters] = STATE(239), - [sym__pattern] = STATE(3040), - [sym_generic_pattern] = STATE(2150), - [sym_tuple_pattern] = STATE(2150), - [sym_slice_pattern] = STATE(2150), - [sym_tuple_struct_pattern] = STATE(2150), - [sym_struct_pattern] = STATE(2150), - [sym_remaining_field_pattern] = STATE(2150), - [sym_mut_pattern] = STATE(2150), - [sym_range_pattern] = STATE(2150), - [sym_ref_pattern] = STATE(2150), - [sym_captured_pattern] = STATE(2150), - [sym_reference_pattern] = STATE(2150), - [sym_or_pattern] = STATE(2150), - [sym__literal_pattern] = STATE(2076), - [sym_negative_literal] = STATE(2074), - [sym_string_literal] = STATE(2074), - [sym_raw_string_literal] = STATE(2074), - [sym_boolean_literal] = STATE(2074), [sym_line_comment] = STATE(702), [sym_block_comment] = STATE(702), - [sym_identifier] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_RPAREN] = ACTIONS(2728), - [anon_sym_LBRACK] = ACTIONS(1782), - [anon_sym_u8] = ACTIONS(1784), - [anon_sym_i8] = ACTIONS(1784), - [anon_sym_u16] = ACTIONS(1784), - [anon_sym_i16] = ACTIONS(1784), - [anon_sym_u32] = ACTIONS(1784), - [anon_sym_i32] = ACTIONS(1784), - [anon_sym_u64] = ACTIONS(1784), - [anon_sym_i64] = ACTIONS(1784), - [anon_sym_u128] = ACTIONS(1784), - [anon_sym_i128] = ACTIONS(1784), - [anon_sym_isize] = ACTIONS(1784), - [anon_sym_usize] = ACTIONS(1784), - [anon_sym_f32] = ACTIONS(1784), - [anon_sym_f64] = ACTIONS(1784), - [anon_sym_bool] = ACTIONS(1784), - [anon_sym_str] = ACTIONS(1784), - [anon_sym_char] = ACTIONS(1784), - [anon_sym_DASH] = ACTIONS(1241), - [anon_sym_AMP] = ACTIONS(1786), - [anon_sym_PIPE] = ACTIONS(1449), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1451), - [anon_sym_DOT_DOT] = ACTIONS(1251), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1255), - [anon_sym_COLON_COLON] = ACTIONS(1790), - [anon_sym_const] = ACTIONS(1792), - [anon_sym_default] = ACTIONS(1794), - [anon_sym_gen] = ACTIONS(1794), - [anon_sym_static] = ACTIONS(1455), - [anon_sym_union] = ACTIONS(1794), - [anon_sym_ref] = ACTIONS(1281), - [sym_mutable_specifier] = ACTIONS(1457), - [anon_sym_move] = ACTIONS(1459), - [sym_integer_literal] = ACTIONS(1287), - [aux_sym_string_literal_token1] = ACTIONS(1289), - [sym_char_literal] = ACTIONS(1287), - [anon_sym_true] = ACTIONS(1291), - [anon_sym_false] = ACTIONS(1291), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1796), - [sym_super] = ACTIONS(1796), - [sym_crate] = ACTIONS(1796), - [sym_metavariable] = ACTIONS(1798), - [sym__raw_string_literal_start] = ACTIONS(1299), - [sym_float_literal] = ACTIONS(1287), + [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_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_safe] = 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(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [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(703)] = { [sym_line_comment] = STATE(703), [sym_block_comment] = STATE(703), - [ts_builtin_sym_end] = ACTIONS(2730), - [sym_identifier] = ACTIONS(2732), - [anon_sym_SEMI] = ACTIONS(2730), - [anon_sym_macro_rules_BANG] = ACTIONS(2730), - [anon_sym_LPAREN] = ACTIONS(2730), - [anon_sym_LBRACK] = ACTIONS(2730), - [anon_sym_LBRACE] = ACTIONS(2730), - [anon_sym_RBRACE] = ACTIONS(2730), - [anon_sym_STAR] = ACTIONS(2730), - [anon_sym_u8] = ACTIONS(2732), - [anon_sym_i8] = ACTIONS(2732), - [anon_sym_u16] = ACTIONS(2732), - [anon_sym_i16] = ACTIONS(2732), - [anon_sym_u32] = ACTIONS(2732), - [anon_sym_i32] = ACTIONS(2732), - [anon_sym_u64] = ACTIONS(2732), - [anon_sym_i64] = ACTIONS(2732), - [anon_sym_u128] = ACTIONS(2732), - [anon_sym_i128] = ACTIONS(2732), - [anon_sym_isize] = ACTIONS(2732), - [anon_sym_usize] = ACTIONS(2732), - [anon_sym_f32] = ACTIONS(2732), - [anon_sym_f64] = ACTIONS(2732), - [anon_sym_bool] = ACTIONS(2732), - [anon_sym_str] = ACTIONS(2732), - [anon_sym_char] = ACTIONS(2732), - [anon_sym_DASH] = ACTIONS(2730), - [anon_sym_BANG] = ACTIONS(2730), - [anon_sym_AMP] = ACTIONS(2730), - [anon_sym_PIPE] = ACTIONS(2730), - [anon_sym_LT] = ACTIONS(2730), - [anon_sym_DOT_DOT] = ACTIONS(2730), - [anon_sym_COLON_COLON] = ACTIONS(2730), - [anon_sym_POUND] = ACTIONS(2730), - [anon_sym_SQUOTE] = ACTIONS(2732), - [anon_sym_async] = ACTIONS(2732), - [anon_sym_break] = ACTIONS(2732), - [anon_sym_const] = ACTIONS(2732), - [anon_sym_continue] = ACTIONS(2732), - [anon_sym_default] = ACTIONS(2732), - [anon_sym_enum] = ACTIONS(2732), - [anon_sym_fn] = ACTIONS(2732), - [anon_sym_for] = ACTIONS(2732), - [anon_sym_gen] = ACTIONS(2732), - [anon_sym_if] = ACTIONS(2732), - [anon_sym_impl] = ACTIONS(2732), - [anon_sym_let] = ACTIONS(2732), - [anon_sym_loop] = ACTIONS(2732), - [anon_sym_match] = ACTIONS(2732), - [anon_sym_mod] = ACTIONS(2732), - [anon_sym_pub] = ACTIONS(2732), - [anon_sym_return] = ACTIONS(2732), - [anon_sym_static] = ACTIONS(2732), - [anon_sym_struct] = ACTIONS(2732), - [anon_sym_trait] = ACTIONS(2732), - [anon_sym_type] = ACTIONS(2732), - [anon_sym_union] = ACTIONS(2732), - [anon_sym_unsafe] = ACTIONS(2732), - [anon_sym_use] = ACTIONS(2732), - [anon_sym_while] = ACTIONS(2732), - [anon_sym_extern] = ACTIONS(2732), - [anon_sym_yield] = ACTIONS(2732), - [anon_sym_move] = ACTIONS(2732), - [anon_sym_try] = ACTIONS(2732), - [sym_integer_literal] = ACTIONS(2730), - [aux_sym_string_literal_token1] = ACTIONS(2730), - [sym_char_literal] = ACTIONS(2730), - [anon_sym_true] = ACTIONS(2732), - [anon_sym_false] = ACTIONS(2732), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2732), - [sym_super] = ACTIONS(2732), - [sym_crate] = ACTIONS(2732), - [sym_metavariable] = ACTIONS(2730), - [sym__raw_string_literal_start] = ACTIONS(2730), - [sym_float_literal] = ACTIONS(2730), + [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_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_safe] = 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(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [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(704)] = { [sym_line_comment] = STATE(704), [sym_block_comment] = STATE(704), - [ts_builtin_sym_end] = ACTIONS(2734), - [sym_identifier] = ACTIONS(2736), - [anon_sym_SEMI] = ACTIONS(2734), - [anon_sym_macro_rules_BANG] = ACTIONS(2734), - [anon_sym_LPAREN] = ACTIONS(2734), - [anon_sym_LBRACK] = ACTIONS(2734), - [anon_sym_LBRACE] = ACTIONS(2734), - [anon_sym_RBRACE] = ACTIONS(2734), - [anon_sym_STAR] = ACTIONS(2734), - [anon_sym_u8] = ACTIONS(2736), - [anon_sym_i8] = ACTIONS(2736), - [anon_sym_u16] = ACTIONS(2736), - [anon_sym_i16] = ACTIONS(2736), - [anon_sym_u32] = ACTIONS(2736), - [anon_sym_i32] = ACTIONS(2736), - [anon_sym_u64] = ACTIONS(2736), - [anon_sym_i64] = ACTIONS(2736), - [anon_sym_u128] = ACTIONS(2736), - [anon_sym_i128] = ACTIONS(2736), - [anon_sym_isize] = ACTIONS(2736), - [anon_sym_usize] = ACTIONS(2736), - [anon_sym_f32] = ACTIONS(2736), - [anon_sym_f64] = ACTIONS(2736), - [anon_sym_bool] = ACTIONS(2736), - [anon_sym_str] = ACTIONS(2736), - [anon_sym_char] = ACTIONS(2736), - [anon_sym_DASH] = ACTIONS(2734), - [anon_sym_BANG] = ACTIONS(2734), - [anon_sym_AMP] = ACTIONS(2734), - [anon_sym_PIPE] = ACTIONS(2734), - [anon_sym_LT] = ACTIONS(2734), - [anon_sym_DOT_DOT] = ACTIONS(2734), - [anon_sym_COLON_COLON] = ACTIONS(2734), - [anon_sym_POUND] = ACTIONS(2734), - [anon_sym_SQUOTE] = ACTIONS(2736), - [anon_sym_async] = ACTIONS(2736), - [anon_sym_break] = ACTIONS(2736), - [anon_sym_const] = ACTIONS(2736), - [anon_sym_continue] = ACTIONS(2736), - [anon_sym_default] = ACTIONS(2736), - [anon_sym_enum] = ACTIONS(2736), - [anon_sym_fn] = ACTIONS(2736), - [anon_sym_for] = ACTIONS(2736), - [anon_sym_gen] = ACTIONS(2736), - [anon_sym_if] = ACTIONS(2736), - [anon_sym_impl] = ACTIONS(2736), - [anon_sym_let] = ACTIONS(2736), - [anon_sym_loop] = ACTIONS(2736), - [anon_sym_match] = ACTIONS(2736), - [anon_sym_mod] = ACTIONS(2736), - [anon_sym_pub] = ACTIONS(2736), - [anon_sym_return] = ACTIONS(2736), - [anon_sym_static] = ACTIONS(2736), - [anon_sym_struct] = ACTIONS(2736), - [anon_sym_trait] = ACTIONS(2736), - [anon_sym_type] = ACTIONS(2736), - [anon_sym_union] = ACTIONS(2736), - [anon_sym_unsafe] = ACTIONS(2736), - [anon_sym_use] = ACTIONS(2736), - [anon_sym_while] = ACTIONS(2736), - [anon_sym_extern] = ACTIONS(2736), - [anon_sym_yield] = ACTIONS(2736), - [anon_sym_move] = ACTIONS(2736), - [anon_sym_try] = ACTIONS(2736), - [sym_integer_literal] = ACTIONS(2734), - [aux_sym_string_literal_token1] = ACTIONS(2734), - [sym_char_literal] = ACTIONS(2734), - [anon_sym_true] = ACTIONS(2736), - [anon_sym_false] = ACTIONS(2736), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2736), - [sym_super] = ACTIONS(2736), - [sym_crate] = ACTIONS(2736), - [sym_metavariable] = ACTIONS(2734), - [sym__raw_string_literal_start] = ACTIONS(2734), - [sym_float_literal] = ACTIONS(2734), + [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_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_safe] = 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(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [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(705)] = { [sym_line_comment] = STATE(705), [sym_block_comment] = STATE(705), - [ts_builtin_sym_end] = ACTIONS(2738), - [sym_identifier] = ACTIONS(2740), - [anon_sym_SEMI] = ACTIONS(2738), - [anon_sym_macro_rules_BANG] = ACTIONS(2738), - [anon_sym_LPAREN] = ACTIONS(2738), - [anon_sym_LBRACK] = ACTIONS(2738), - [anon_sym_LBRACE] = ACTIONS(2738), - [anon_sym_RBRACE] = ACTIONS(2738), - [anon_sym_STAR] = ACTIONS(2738), - [anon_sym_u8] = ACTIONS(2740), - [anon_sym_i8] = ACTIONS(2740), - [anon_sym_u16] = ACTIONS(2740), - [anon_sym_i16] = ACTIONS(2740), - [anon_sym_u32] = ACTIONS(2740), - [anon_sym_i32] = ACTIONS(2740), - [anon_sym_u64] = ACTIONS(2740), - [anon_sym_i64] = ACTIONS(2740), - [anon_sym_u128] = ACTIONS(2740), - [anon_sym_i128] = ACTIONS(2740), - [anon_sym_isize] = ACTIONS(2740), - [anon_sym_usize] = ACTIONS(2740), - [anon_sym_f32] = ACTIONS(2740), - [anon_sym_f64] = ACTIONS(2740), - [anon_sym_bool] = ACTIONS(2740), - [anon_sym_str] = ACTIONS(2740), - [anon_sym_char] = ACTIONS(2740), - [anon_sym_DASH] = ACTIONS(2738), - [anon_sym_BANG] = ACTIONS(2738), - [anon_sym_AMP] = ACTIONS(2738), - [anon_sym_PIPE] = ACTIONS(2738), - [anon_sym_LT] = ACTIONS(2738), - [anon_sym_DOT_DOT] = ACTIONS(2738), - [anon_sym_COLON_COLON] = ACTIONS(2738), - [anon_sym_POUND] = ACTIONS(2738), - [anon_sym_SQUOTE] = ACTIONS(2740), - [anon_sym_async] = ACTIONS(2740), - [anon_sym_break] = ACTIONS(2740), - [anon_sym_const] = ACTIONS(2740), - [anon_sym_continue] = ACTIONS(2740), - [anon_sym_default] = ACTIONS(2740), - [anon_sym_enum] = ACTIONS(2740), - [anon_sym_fn] = ACTIONS(2740), - [anon_sym_for] = ACTIONS(2740), - [anon_sym_gen] = ACTIONS(2740), - [anon_sym_if] = ACTIONS(2740), - [anon_sym_impl] = ACTIONS(2740), - [anon_sym_let] = ACTIONS(2740), - [anon_sym_loop] = ACTIONS(2740), - [anon_sym_match] = ACTIONS(2740), - [anon_sym_mod] = ACTIONS(2740), - [anon_sym_pub] = ACTIONS(2740), - [anon_sym_return] = ACTIONS(2740), - [anon_sym_static] = ACTIONS(2740), - [anon_sym_struct] = ACTIONS(2740), - [anon_sym_trait] = ACTIONS(2740), - [anon_sym_type] = ACTIONS(2740), - [anon_sym_union] = ACTIONS(2740), - [anon_sym_unsafe] = ACTIONS(2740), - [anon_sym_use] = ACTIONS(2740), - [anon_sym_while] = ACTIONS(2740), - [anon_sym_extern] = ACTIONS(2740), - [anon_sym_yield] = ACTIONS(2740), - [anon_sym_move] = ACTIONS(2740), - [anon_sym_try] = ACTIONS(2740), - [sym_integer_literal] = ACTIONS(2738), - [aux_sym_string_literal_token1] = ACTIONS(2738), - [sym_char_literal] = ACTIONS(2738), - [anon_sym_true] = ACTIONS(2740), - [anon_sym_false] = ACTIONS(2740), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2740), - [sym_super] = ACTIONS(2740), - [sym_crate] = ACTIONS(2740), - [sym_metavariable] = ACTIONS(2738), - [sym__raw_string_literal_start] = ACTIONS(2738), - [sym_float_literal] = ACTIONS(2738), + [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_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_safe] = 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(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [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(706)] = { [sym_line_comment] = STATE(706), [sym_block_comment] = STATE(706), - [ts_builtin_sym_end] = ACTIONS(2742), - [sym_identifier] = ACTIONS(2744), - [anon_sym_SEMI] = ACTIONS(2742), - [anon_sym_macro_rules_BANG] = ACTIONS(2742), - [anon_sym_LPAREN] = ACTIONS(2742), - [anon_sym_LBRACK] = ACTIONS(2742), - [anon_sym_LBRACE] = ACTIONS(2742), - [anon_sym_RBRACE] = ACTIONS(2742), - [anon_sym_STAR] = ACTIONS(2742), - [anon_sym_u8] = ACTIONS(2744), - [anon_sym_i8] = ACTIONS(2744), - [anon_sym_u16] = ACTIONS(2744), - [anon_sym_i16] = ACTIONS(2744), - [anon_sym_u32] = ACTIONS(2744), - [anon_sym_i32] = ACTIONS(2744), - [anon_sym_u64] = ACTIONS(2744), - [anon_sym_i64] = ACTIONS(2744), - [anon_sym_u128] = ACTIONS(2744), - [anon_sym_i128] = ACTIONS(2744), - [anon_sym_isize] = ACTIONS(2744), - [anon_sym_usize] = ACTIONS(2744), - [anon_sym_f32] = ACTIONS(2744), - [anon_sym_f64] = ACTIONS(2744), - [anon_sym_bool] = ACTIONS(2744), - [anon_sym_str] = ACTIONS(2744), - [anon_sym_char] = ACTIONS(2744), - [anon_sym_DASH] = ACTIONS(2742), - [anon_sym_BANG] = ACTIONS(2742), - [anon_sym_AMP] = ACTIONS(2742), - [anon_sym_PIPE] = ACTIONS(2742), - [anon_sym_LT] = ACTIONS(2742), - [anon_sym_DOT_DOT] = ACTIONS(2742), - [anon_sym_COLON_COLON] = ACTIONS(2742), - [anon_sym_POUND] = ACTIONS(2742), - [anon_sym_SQUOTE] = ACTIONS(2744), - [anon_sym_async] = ACTIONS(2744), - [anon_sym_break] = ACTIONS(2744), - [anon_sym_const] = ACTIONS(2744), - [anon_sym_continue] = ACTIONS(2744), - [anon_sym_default] = ACTIONS(2744), - [anon_sym_enum] = ACTIONS(2744), - [anon_sym_fn] = ACTIONS(2744), - [anon_sym_for] = ACTIONS(2744), - [anon_sym_gen] = ACTIONS(2744), - [anon_sym_if] = ACTIONS(2744), - [anon_sym_impl] = ACTIONS(2744), - [anon_sym_let] = ACTIONS(2744), - [anon_sym_loop] = ACTIONS(2744), - [anon_sym_match] = ACTIONS(2744), - [anon_sym_mod] = ACTIONS(2744), - [anon_sym_pub] = ACTIONS(2744), - [anon_sym_return] = ACTIONS(2744), - [anon_sym_static] = ACTIONS(2744), - [anon_sym_struct] = ACTIONS(2744), - [anon_sym_trait] = ACTIONS(2744), - [anon_sym_type] = ACTIONS(2744), - [anon_sym_union] = ACTIONS(2744), - [anon_sym_unsafe] = ACTIONS(2744), - [anon_sym_use] = ACTIONS(2744), - [anon_sym_while] = ACTIONS(2744), - [anon_sym_extern] = ACTIONS(2744), - [anon_sym_yield] = ACTIONS(2744), - [anon_sym_move] = ACTIONS(2744), - [anon_sym_try] = ACTIONS(2744), - [sym_integer_literal] = ACTIONS(2742), - [aux_sym_string_literal_token1] = ACTIONS(2742), - [sym_char_literal] = ACTIONS(2742), - [anon_sym_true] = ACTIONS(2744), - [anon_sym_false] = ACTIONS(2744), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2744), - [sym_super] = ACTIONS(2744), - [sym_crate] = ACTIONS(2744), - [sym_metavariable] = ACTIONS(2742), - [sym__raw_string_literal_start] = ACTIONS(2742), - [sym_float_literal] = ACTIONS(2742), + [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_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_safe] = 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(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [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(707)] = { [sym_line_comment] = STATE(707), [sym_block_comment] = STATE(707), - [ts_builtin_sym_end] = ACTIONS(2746), - [sym_identifier] = ACTIONS(2748), - [anon_sym_SEMI] = ACTIONS(2746), - [anon_sym_macro_rules_BANG] = ACTIONS(2746), - [anon_sym_LPAREN] = ACTIONS(2746), - [anon_sym_LBRACK] = ACTIONS(2746), - [anon_sym_LBRACE] = ACTIONS(2746), - [anon_sym_RBRACE] = ACTIONS(2746), - [anon_sym_STAR] = ACTIONS(2746), - [anon_sym_u8] = ACTIONS(2748), - [anon_sym_i8] = ACTIONS(2748), - [anon_sym_u16] = ACTIONS(2748), - [anon_sym_i16] = ACTIONS(2748), - [anon_sym_u32] = ACTIONS(2748), - [anon_sym_i32] = ACTIONS(2748), - [anon_sym_u64] = ACTIONS(2748), - [anon_sym_i64] = ACTIONS(2748), - [anon_sym_u128] = ACTIONS(2748), - [anon_sym_i128] = ACTIONS(2748), - [anon_sym_isize] = ACTIONS(2748), - [anon_sym_usize] = ACTIONS(2748), - [anon_sym_f32] = ACTIONS(2748), - [anon_sym_f64] = ACTIONS(2748), - [anon_sym_bool] = ACTIONS(2748), - [anon_sym_str] = ACTIONS(2748), - [anon_sym_char] = ACTIONS(2748), - [anon_sym_DASH] = ACTIONS(2746), - [anon_sym_BANG] = ACTIONS(2746), - [anon_sym_AMP] = ACTIONS(2746), - [anon_sym_PIPE] = ACTIONS(2746), - [anon_sym_LT] = ACTIONS(2746), - [anon_sym_DOT_DOT] = ACTIONS(2746), - [anon_sym_COLON_COLON] = ACTIONS(2746), - [anon_sym_POUND] = ACTIONS(2746), - [anon_sym_SQUOTE] = ACTIONS(2748), - [anon_sym_async] = ACTIONS(2748), - [anon_sym_break] = ACTIONS(2748), - [anon_sym_const] = ACTIONS(2748), - [anon_sym_continue] = ACTIONS(2748), - [anon_sym_default] = ACTIONS(2748), - [anon_sym_enum] = ACTIONS(2748), - [anon_sym_fn] = ACTIONS(2748), - [anon_sym_for] = ACTIONS(2748), - [anon_sym_gen] = ACTIONS(2748), - [anon_sym_if] = ACTIONS(2748), - [anon_sym_impl] = ACTIONS(2748), - [anon_sym_let] = ACTIONS(2748), - [anon_sym_loop] = ACTIONS(2748), - [anon_sym_match] = ACTIONS(2748), - [anon_sym_mod] = ACTIONS(2748), - [anon_sym_pub] = ACTIONS(2748), - [anon_sym_return] = ACTIONS(2748), - [anon_sym_static] = ACTIONS(2748), - [anon_sym_struct] = ACTIONS(2748), - [anon_sym_trait] = ACTIONS(2748), - [anon_sym_type] = ACTIONS(2748), - [anon_sym_union] = ACTIONS(2748), - [anon_sym_unsafe] = ACTIONS(2748), - [anon_sym_use] = ACTIONS(2748), - [anon_sym_while] = ACTIONS(2748), - [anon_sym_extern] = ACTIONS(2748), - [anon_sym_yield] = ACTIONS(2748), - [anon_sym_move] = ACTIONS(2748), - [anon_sym_try] = ACTIONS(2748), - [sym_integer_literal] = ACTIONS(2746), - [aux_sym_string_literal_token1] = ACTIONS(2746), - [sym_char_literal] = ACTIONS(2746), - [anon_sym_true] = ACTIONS(2748), - [anon_sym_false] = ACTIONS(2748), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2748), - [sym_super] = ACTIONS(2748), - [sym_crate] = ACTIONS(2748), - [sym_metavariable] = ACTIONS(2746), - [sym__raw_string_literal_start] = ACTIONS(2746), - [sym_float_literal] = ACTIONS(2746), + [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_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_safe] = 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(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [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(708)] = { [sym_line_comment] = STATE(708), [sym_block_comment] = STATE(708), - [ts_builtin_sym_end] = ACTIONS(2750), - [sym_identifier] = ACTIONS(2752), - [anon_sym_SEMI] = ACTIONS(2750), - [anon_sym_macro_rules_BANG] = ACTIONS(2750), - [anon_sym_LPAREN] = ACTIONS(2750), - [anon_sym_LBRACK] = ACTIONS(2750), - [anon_sym_LBRACE] = ACTIONS(2750), - [anon_sym_RBRACE] = ACTIONS(2750), - [anon_sym_STAR] = ACTIONS(2750), - [anon_sym_u8] = ACTIONS(2752), - [anon_sym_i8] = ACTIONS(2752), - [anon_sym_u16] = ACTIONS(2752), - [anon_sym_i16] = ACTIONS(2752), - [anon_sym_u32] = ACTIONS(2752), - [anon_sym_i32] = ACTIONS(2752), - [anon_sym_u64] = ACTIONS(2752), - [anon_sym_i64] = ACTIONS(2752), - [anon_sym_u128] = ACTIONS(2752), - [anon_sym_i128] = ACTIONS(2752), - [anon_sym_isize] = ACTIONS(2752), - [anon_sym_usize] = ACTIONS(2752), - [anon_sym_f32] = ACTIONS(2752), - [anon_sym_f64] = ACTIONS(2752), - [anon_sym_bool] = ACTIONS(2752), - [anon_sym_str] = ACTIONS(2752), - [anon_sym_char] = ACTIONS(2752), - [anon_sym_DASH] = ACTIONS(2750), - [anon_sym_BANG] = ACTIONS(2750), - [anon_sym_AMP] = ACTIONS(2750), - [anon_sym_PIPE] = ACTIONS(2750), - [anon_sym_LT] = ACTIONS(2750), - [anon_sym_DOT_DOT] = ACTIONS(2750), - [anon_sym_COLON_COLON] = ACTIONS(2750), - [anon_sym_POUND] = ACTIONS(2750), - [anon_sym_SQUOTE] = ACTIONS(2752), - [anon_sym_async] = ACTIONS(2752), - [anon_sym_break] = ACTIONS(2752), - [anon_sym_const] = ACTIONS(2752), - [anon_sym_continue] = ACTIONS(2752), - [anon_sym_default] = ACTIONS(2752), - [anon_sym_enum] = ACTIONS(2752), - [anon_sym_fn] = ACTIONS(2752), - [anon_sym_for] = ACTIONS(2752), - [anon_sym_gen] = ACTIONS(2752), - [anon_sym_if] = ACTIONS(2752), - [anon_sym_impl] = ACTIONS(2752), - [anon_sym_let] = ACTIONS(2752), - [anon_sym_loop] = ACTIONS(2752), - [anon_sym_match] = ACTIONS(2752), - [anon_sym_mod] = ACTIONS(2752), - [anon_sym_pub] = ACTIONS(2752), - [anon_sym_return] = ACTIONS(2752), - [anon_sym_static] = ACTIONS(2752), - [anon_sym_struct] = ACTIONS(2752), - [anon_sym_trait] = ACTIONS(2752), - [anon_sym_type] = ACTIONS(2752), - [anon_sym_union] = ACTIONS(2752), - [anon_sym_unsafe] = ACTIONS(2752), - [anon_sym_use] = ACTIONS(2752), - [anon_sym_while] = ACTIONS(2752), - [anon_sym_extern] = ACTIONS(2752), - [anon_sym_yield] = ACTIONS(2752), - [anon_sym_move] = ACTIONS(2752), - [anon_sym_try] = ACTIONS(2752), - [sym_integer_literal] = ACTIONS(2750), - [aux_sym_string_literal_token1] = ACTIONS(2750), - [sym_char_literal] = ACTIONS(2750), - [anon_sym_true] = ACTIONS(2752), - [anon_sym_false] = ACTIONS(2752), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2752), - [sym_super] = ACTIONS(2752), - [sym_crate] = ACTIONS(2752), - [sym_metavariable] = ACTIONS(2750), - [sym__raw_string_literal_start] = ACTIONS(2750), - [sym_float_literal] = ACTIONS(2750), + [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_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_safe] = 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(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [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(709)] = { [sym_line_comment] = STATE(709), [sym_block_comment] = STATE(709), - [ts_builtin_sym_end] = ACTIONS(2754), - [sym_identifier] = ACTIONS(2756), - [anon_sym_SEMI] = ACTIONS(2754), - [anon_sym_macro_rules_BANG] = ACTIONS(2754), - [anon_sym_LPAREN] = ACTIONS(2754), - [anon_sym_LBRACK] = ACTIONS(2754), - [anon_sym_LBRACE] = ACTIONS(2754), - [anon_sym_RBRACE] = ACTIONS(2754), - [anon_sym_STAR] = ACTIONS(2754), - [anon_sym_u8] = ACTIONS(2756), - [anon_sym_i8] = ACTIONS(2756), - [anon_sym_u16] = ACTIONS(2756), - [anon_sym_i16] = ACTIONS(2756), - [anon_sym_u32] = ACTIONS(2756), - [anon_sym_i32] = ACTIONS(2756), - [anon_sym_u64] = ACTIONS(2756), - [anon_sym_i64] = ACTIONS(2756), - [anon_sym_u128] = ACTIONS(2756), - [anon_sym_i128] = ACTIONS(2756), - [anon_sym_isize] = ACTIONS(2756), - [anon_sym_usize] = ACTIONS(2756), - [anon_sym_f32] = ACTIONS(2756), - [anon_sym_f64] = ACTIONS(2756), - [anon_sym_bool] = ACTIONS(2756), - [anon_sym_str] = ACTIONS(2756), - [anon_sym_char] = ACTIONS(2756), - [anon_sym_DASH] = ACTIONS(2754), - [anon_sym_BANG] = ACTIONS(2754), - [anon_sym_AMP] = ACTIONS(2754), - [anon_sym_PIPE] = ACTIONS(2754), - [anon_sym_LT] = ACTIONS(2754), - [anon_sym_DOT_DOT] = ACTIONS(2754), - [anon_sym_COLON_COLON] = ACTIONS(2754), - [anon_sym_POUND] = ACTIONS(2754), - [anon_sym_SQUOTE] = ACTIONS(2756), - [anon_sym_async] = ACTIONS(2756), - [anon_sym_break] = ACTIONS(2756), - [anon_sym_const] = ACTIONS(2756), - [anon_sym_continue] = ACTIONS(2756), - [anon_sym_default] = ACTIONS(2756), - [anon_sym_enum] = ACTIONS(2756), - [anon_sym_fn] = ACTIONS(2756), - [anon_sym_for] = ACTIONS(2756), - [anon_sym_gen] = ACTIONS(2756), - [anon_sym_if] = ACTIONS(2756), - [anon_sym_impl] = ACTIONS(2756), - [anon_sym_let] = ACTIONS(2756), - [anon_sym_loop] = ACTIONS(2756), - [anon_sym_match] = ACTIONS(2756), - [anon_sym_mod] = ACTIONS(2756), - [anon_sym_pub] = ACTIONS(2756), - [anon_sym_return] = ACTIONS(2756), - [anon_sym_static] = ACTIONS(2756), - [anon_sym_struct] = ACTIONS(2756), - [anon_sym_trait] = ACTIONS(2756), - [anon_sym_type] = ACTIONS(2756), - [anon_sym_union] = ACTIONS(2756), - [anon_sym_unsafe] = ACTIONS(2756), - [anon_sym_use] = ACTIONS(2756), - [anon_sym_while] = ACTIONS(2756), - [anon_sym_extern] = ACTIONS(2756), - [anon_sym_yield] = ACTIONS(2756), - [anon_sym_move] = ACTIONS(2756), - [anon_sym_try] = ACTIONS(2756), - [sym_integer_literal] = ACTIONS(2754), - [aux_sym_string_literal_token1] = ACTIONS(2754), - [sym_char_literal] = ACTIONS(2754), - [anon_sym_true] = ACTIONS(2756), - [anon_sym_false] = ACTIONS(2756), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2756), - [sym_super] = ACTIONS(2756), - [sym_crate] = ACTIONS(2756), - [sym_metavariable] = ACTIONS(2754), - [sym__raw_string_literal_start] = ACTIONS(2754), - [sym_float_literal] = ACTIONS(2754), + [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_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_safe] = 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(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [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(710)] = { [sym_line_comment] = STATE(710), [sym_block_comment] = STATE(710), - [ts_builtin_sym_end] = ACTIONS(2758), - [sym_identifier] = ACTIONS(2760), - [anon_sym_SEMI] = ACTIONS(2758), - [anon_sym_macro_rules_BANG] = ACTIONS(2758), - [anon_sym_LPAREN] = ACTIONS(2758), - [anon_sym_LBRACK] = ACTIONS(2758), - [anon_sym_LBRACE] = ACTIONS(2758), - [anon_sym_RBRACE] = ACTIONS(2758), - [anon_sym_STAR] = ACTIONS(2758), - [anon_sym_u8] = ACTIONS(2760), - [anon_sym_i8] = ACTIONS(2760), - [anon_sym_u16] = ACTIONS(2760), - [anon_sym_i16] = ACTIONS(2760), - [anon_sym_u32] = ACTIONS(2760), - [anon_sym_i32] = ACTIONS(2760), - [anon_sym_u64] = ACTIONS(2760), - [anon_sym_i64] = ACTIONS(2760), - [anon_sym_u128] = ACTIONS(2760), - [anon_sym_i128] = ACTIONS(2760), - [anon_sym_isize] = ACTIONS(2760), - [anon_sym_usize] = ACTIONS(2760), - [anon_sym_f32] = ACTIONS(2760), - [anon_sym_f64] = ACTIONS(2760), - [anon_sym_bool] = ACTIONS(2760), - [anon_sym_str] = ACTIONS(2760), - [anon_sym_char] = ACTIONS(2760), - [anon_sym_DASH] = ACTIONS(2758), - [anon_sym_BANG] = ACTIONS(2758), - [anon_sym_AMP] = ACTIONS(2758), - [anon_sym_PIPE] = ACTIONS(2758), - [anon_sym_LT] = ACTIONS(2758), - [anon_sym_DOT_DOT] = ACTIONS(2758), - [anon_sym_COLON_COLON] = ACTIONS(2758), - [anon_sym_POUND] = ACTIONS(2758), - [anon_sym_SQUOTE] = ACTIONS(2760), - [anon_sym_async] = ACTIONS(2760), - [anon_sym_break] = ACTIONS(2760), - [anon_sym_const] = ACTIONS(2760), - [anon_sym_continue] = ACTIONS(2760), - [anon_sym_default] = ACTIONS(2760), - [anon_sym_enum] = ACTIONS(2760), - [anon_sym_fn] = ACTIONS(2760), - [anon_sym_for] = ACTIONS(2760), - [anon_sym_gen] = ACTIONS(2760), - [anon_sym_if] = ACTIONS(2760), - [anon_sym_impl] = ACTIONS(2760), - [anon_sym_let] = ACTIONS(2760), - [anon_sym_loop] = ACTIONS(2760), - [anon_sym_match] = ACTIONS(2760), - [anon_sym_mod] = ACTIONS(2760), - [anon_sym_pub] = ACTIONS(2760), - [anon_sym_return] = ACTIONS(2760), - [anon_sym_static] = ACTIONS(2760), - [anon_sym_struct] = ACTIONS(2760), - [anon_sym_trait] = ACTIONS(2760), - [anon_sym_type] = ACTIONS(2760), - [anon_sym_union] = ACTIONS(2760), - [anon_sym_unsafe] = ACTIONS(2760), - [anon_sym_use] = ACTIONS(2760), - [anon_sym_while] = ACTIONS(2760), - [anon_sym_extern] = ACTIONS(2760), - [anon_sym_yield] = ACTIONS(2760), - [anon_sym_move] = ACTIONS(2760), - [anon_sym_try] = ACTIONS(2760), - [sym_integer_literal] = ACTIONS(2758), - [aux_sym_string_literal_token1] = ACTIONS(2758), - [sym_char_literal] = ACTIONS(2758), - [anon_sym_true] = ACTIONS(2760), - [anon_sym_false] = ACTIONS(2760), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2760), - [sym_super] = ACTIONS(2760), - [sym_crate] = ACTIONS(2760), - [sym_metavariable] = ACTIONS(2758), - [sym__raw_string_literal_start] = ACTIONS(2758), - [sym_float_literal] = ACTIONS(2758), + [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_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_safe] = 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(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [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(711)] = { [sym_line_comment] = STATE(711), [sym_block_comment] = STATE(711), - [ts_builtin_sym_end] = ACTIONS(2762), - [sym_identifier] = ACTIONS(2764), - [anon_sym_SEMI] = ACTIONS(2762), - [anon_sym_macro_rules_BANG] = ACTIONS(2762), - [anon_sym_LPAREN] = ACTIONS(2762), - [anon_sym_LBRACK] = ACTIONS(2762), - [anon_sym_LBRACE] = ACTIONS(2762), - [anon_sym_RBRACE] = ACTIONS(2762), - [anon_sym_STAR] = ACTIONS(2762), - [anon_sym_u8] = ACTIONS(2764), - [anon_sym_i8] = ACTIONS(2764), - [anon_sym_u16] = ACTIONS(2764), - [anon_sym_i16] = ACTIONS(2764), - [anon_sym_u32] = ACTIONS(2764), - [anon_sym_i32] = ACTIONS(2764), - [anon_sym_u64] = ACTIONS(2764), - [anon_sym_i64] = ACTIONS(2764), - [anon_sym_u128] = ACTIONS(2764), - [anon_sym_i128] = ACTIONS(2764), - [anon_sym_isize] = ACTIONS(2764), - [anon_sym_usize] = ACTIONS(2764), - [anon_sym_f32] = ACTIONS(2764), - [anon_sym_f64] = ACTIONS(2764), - [anon_sym_bool] = ACTIONS(2764), - [anon_sym_str] = ACTIONS(2764), - [anon_sym_char] = ACTIONS(2764), - [anon_sym_DASH] = ACTIONS(2762), - [anon_sym_BANG] = ACTIONS(2762), - [anon_sym_AMP] = ACTIONS(2762), - [anon_sym_PIPE] = ACTIONS(2762), - [anon_sym_LT] = ACTIONS(2762), - [anon_sym_DOT_DOT] = ACTIONS(2762), - [anon_sym_COLON_COLON] = ACTIONS(2762), - [anon_sym_POUND] = ACTIONS(2762), - [anon_sym_SQUOTE] = ACTIONS(2764), - [anon_sym_async] = ACTIONS(2764), - [anon_sym_break] = ACTIONS(2764), - [anon_sym_const] = ACTIONS(2764), - [anon_sym_continue] = ACTIONS(2764), - [anon_sym_default] = ACTIONS(2764), - [anon_sym_enum] = ACTIONS(2764), - [anon_sym_fn] = ACTIONS(2764), - [anon_sym_for] = ACTIONS(2764), - [anon_sym_gen] = ACTIONS(2764), - [anon_sym_if] = ACTIONS(2764), - [anon_sym_impl] = ACTIONS(2764), - [anon_sym_let] = ACTIONS(2764), - [anon_sym_loop] = ACTIONS(2764), - [anon_sym_match] = ACTIONS(2764), - [anon_sym_mod] = ACTIONS(2764), - [anon_sym_pub] = ACTIONS(2764), - [anon_sym_return] = ACTIONS(2764), - [anon_sym_static] = ACTIONS(2764), - [anon_sym_struct] = ACTIONS(2764), - [anon_sym_trait] = ACTIONS(2764), - [anon_sym_type] = ACTIONS(2764), - [anon_sym_union] = ACTIONS(2764), - [anon_sym_unsafe] = ACTIONS(2764), - [anon_sym_use] = ACTIONS(2764), - [anon_sym_while] = ACTIONS(2764), - [anon_sym_extern] = ACTIONS(2764), - [anon_sym_yield] = ACTIONS(2764), - [anon_sym_move] = ACTIONS(2764), - [anon_sym_try] = ACTIONS(2764), - [sym_integer_literal] = ACTIONS(2762), - [aux_sym_string_literal_token1] = ACTIONS(2762), - [sym_char_literal] = ACTIONS(2762), - [anon_sym_true] = ACTIONS(2764), - [anon_sym_false] = ACTIONS(2764), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2764), - [sym_super] = ACTIONS(2764), - [sym_crate] = ACTIONS(2764), - [sym_metavariable] = ACTIONS(2762), - [sym__raw_string_literal_start] = ACTIONS(2762), - [sym_float_literal] = ACTIONS(2762), + [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_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_safe] = 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(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [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(712)] = { [sym_line_comment] = STATE(712), [sym_block_comment] = STATE(712), - [ts_builtin_sym_end] = ACTIONS(2766), - [sym_identifier] = ACTIONS(2768), - [anon_sym_SEMI] = ACTIONS(2766), - [anon_sym_macro_rules_BANG] = ACTIONS(2766), - [anon_sym_LPAREN] = ACTIONS(2766), - [anon_sym_LBRACK] = ACTIONS(2766), - [anon_sym_LBRACE] = ACTIONS(2766), - [anon_sym_RBRACE] = ACTIONS(2766), - [anon_sym_STAR] = ACTIONS(2766), - [anon_sym_u8] = ACTIONS(2768), - [anon_sym_i8] = ACTIONS(2768), - [anon_sym_u16] = ACTIONS(2768), - [anon_sym_i16] = ACTIONS(2768), - [anon_sym_u32] = ACTIONS(2768), - [anon_sym_i32] = ACTIONS(2768), - [anon_sym_u64] = ACTIONS(2768), - [anon_sym_i64] = ACTIONS(2768), - [anon_sym_u128] = ACTIONS(2768), - [anon_sym_i128] = ACTIONS(2768), - [anon_sym_isize] = ACTIONS(2768), - [anon_sym_usize] = ACTIONS(2768), - [anon_sym_f32] = ACTIONS(2768), - [anon_sym_f64] = ACTIONS(2768), - [anon_sym_bool] = ACTIONS(2768), - [anon_sym_str] = ACTIONS(2768), - [anon_sym_char] = ACTIONS(2768), - [anon_sym_DASH] = ACTIONS(2766), - [anon_sym_BANG] = ACTIONS(2766), - [anon_sym_AMP] = ACTIONS(2766), - [anon_sym_PIPE] = ACTIONS(2766), - [anon_sym_LT] = ACTIONS(2766), - [anon_sym_DOT_DOT] = ACTIONS(2766), - [anon_sym_COLON_COLON] = ACTIONS(2766), - [anon_sym_POUND] = ACTIONS(2766), - [anon_sym_SQUOTE] = ACTIONS(2768), - [anon_sym_async] = ACTIONS(2768), - [anon_sym_break] = ACTIONS(2768), - [anon_sym_const] = ACTIONS(2768), - [anon_sym_continue] = ACTIONS(2768), - [anon_sym_default] = ACTIONS(2768), - [anon_sym_enum] = ACTIONS(2768), - [anon_sym_fn] = ACTIONS(2768), - [anon_sym_for] = ACTIONS(2768), - [anon_sym_gen] = ACTIONS(2768), - [anon_sym_if] = ACTIONS(2768), - [anon_sym_impl] = ACTIONS(2768), - [anon_sym_let] = ACTIONS(2768), - [anon_sym_loop] = ACTIONS(2768), - [anon_sym_match] = ACTIONS(2768), - [anon_sym_mod] = ACTIONS(2768), - [anon_sym_pub] = ACTIONS(2768), - [anon_sym_return] = ACTIONS(2768), - [anon_sym_static] = ACTIONS(2768), - [anon_sym_struct] = ACTIONS(2768), - [anon_sym_trait] = ACTIONS(2768), - [anon_sym_type] = ACTIONS(2768), - [anon_sym_union] = ACTIONS(2768), - [anon_sym_unsafe] = ACTIONS(2768), - [anon_sym_use] = ACTIONS(2768), - [anon_sym_while] = ACTIONS(2768), - [anon_sym_extern] = ACTIONS(2768), - [anon_sym_yield] = ACTIONS(2768), - [anon_sym_move] = ACTIONS(2768), - [anon_sym_try] = ACTIONS(2768), - [sym_integer_literal] = ACTIONS(2766), - [aux_sym_string_literal_token1] = ACTIONS(2766), - [sym_char_literal] = ACTIONS(2766), - [anon_sym_true] = ACTIONS(2768), - [anon_sym_false] = ACTIONS(2768), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2768), - [sym_super] = ACTIONS(2768), - [sym_crate] = ACTIONS(2768), - [sym_metavariable] = ACTIONS(2766), - [sym__raw_string_literal_start] = ACTIONS(2766), - [sym_float_literal] = ACTIONS(2766), + [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_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_safe] = 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(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [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(713)] = { - [sym_attribute_item] = STATE(1395), - [sym_inner_attribute_item] = STATE(1395), - [sym_bracketed_type] = STATE(3648), - [sym_generic_type] = STATE(3450), - [sym_generic_type_with_turbofish] = STATE(3370), - [sym_macro_invocation] = STATE(3108), - [sym_scoped_identifier] = STATE(2218), - [sym_scoped_type_identifier] = STATE(3059), - [sym_match_pattern] = STATE(3446), - [sym_const_block] = STATE(3108), - [sym__pattern] = STATE(2998), - [sym_generic_pattern] = STATE(3108), - [sym_tuple_pattern] = STATE(3108), - [sym_slice_pattern] = STATE(3108), - [sym_tuple_struct_pattern] = STATE(3108), - [sym_struct_pattern] = STATE(3108), - [sym_remaining_field_pattern] = STATE(3108), - [sym_mut_pattern] = STATE(3108), - [sym_range_pattern] = STATE(3108), - [sym_ref_pattern] = STATE(3108), - [sym_captured_pattern] = STATE(3108), - [sym_reference_pattern] = STATE(3108), - [sym_or_pattern] = STATE(3108), - [sym__literal_pattern] = STATE(2401), - [sym_negative_literal] = STATE(2389), - [sym_string_literal] = STATE(2389), - [sym_raw_string_literal] = STATE(2389), - [sym_boolean_literal] = STATE(2389), [sym_line_comment] = STATE(713), [sym_block_comment] = STATE(713), - [aux_sym_match_arm_repeat1] = STATE(1052), - [sym_identifier] = ACTIONS(1645), - [anon_sym_LPAREN] = ACTIONS(1647), - [anon_sym_LBRACK] = ACTIONS(1649), - [anon_sym_u8] = ACTIONS(1653), - [anon_sym_i8] = ACTIONS(1653), - [anon_sym_u16] = ACTIONS(1653), - [anon_sym_i16] = ACTIONS(1653), - [anon_sym_u32] = ACTIONS(1653), - [anon_sym_i32] = ACTIONS(1653), - [anon_sym_u64] = ACTIONS(1653), - [anon_sym_i64] = ACTIONS(1653), - [anon_sym_u128] = ACTIONS(1653), - [anon_sym_i128] = ACTIONS(1653), - [anon_sym_isize] = ACTIONS(1653), - [anon_sym_usize] = ACTIONS(1653), - [anon_sym_f32] = ACTIONS(1653), - [anon_sym_f64] = ACTIONS(1653), - [anon_sym_bool] = ACTIONS(1653), - [anon_sym_str] = ACTIONS(1653), - [anon_sym_char] = ACTIONS(1653), - [anon_sym_DASH] = ACTIONS(1655), - [anon_sym_AMP] = ACTIONS(1657), - [anon_sym_PIPE] = ACTIONS(1659), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1661), - [anon_sym_DOT_DOT] = ACTIONS(1663), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1665), - [anon_sym_COLON_COLON] = ACTIONS(1667), - [anon_sym_POUND] = ACTIONS(1669), - [anon_sym_const] = ACTIONS(1671), - [anon_sym_default] = ACTIONS(1673), - [anon_sym_gen] = ACTIONS(1673), - [anon_sym_union] = ACTIONS(1673), - [anon_sym_ref] = ACTIONS(1675), - [sym_mutable_specifier] = ACTIONS(1677), - [sym_integer_literal] = ACTIONS(1679), - [aux_sym_string_literal_token1] = ACTIONS(1681), - [sym_char_literal] = ACTIONS(1679), - [anon_sym_true] = ACTIONS(1683), - [anon_sym_false] = ACTIONS(1683), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1685), - [sym_super] = ACTIONS(1685), - [sym_crate] = ACTIONS(1685), - [sym_metavariable] = ACTIONS(1687), - [sym__raw_string_literal_start] = ACTIONS(1689), - [sym_float_literal] = ACTIONS(1679), + [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_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_safe] = 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(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [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(714)] = { [sym_line_comment] = STATE(714), [sym_block_comment] = STATE(714), - [ts_builtin_sym_end] = ACTIONS(2770), - [sym_identifier] = ACTIONS(2772), - [anon_sym_SEMI] = ACTIONS(2770), - [anon_sym_macro_rules_BANG] = ACTIONS(2770), - [anon_sym_LPAREN] = ACTIONS(2770), - [anon_sym_LBRACK] = ACTIONS(2770), - [anon_sym_LBRACE] = ACTIONS(2770), - [anon_sym_RBRACE] = ACTIONS(2770), - [anon_sym_STAR] = ACTIONS(2770), - [anon_sym_u8] = ACTIONS(2772), - [anon_sym_i8] = ACTIONS(2772), - [anon_sym_u16] = ACTIONS(2772), - [anon_sym_i16] = ACTIONS(2772), - [anon_sym_u32] = ACTIONS(2772), - [anon_sym_i32] = ACTIONS(2772), - [anon_sym_u64] = ACTIONS(2772), - [anon_sym_i64] = ACTIONS(2772), - [anon_sym_u128] = ACTIONS(2772), - [anon_sym_i128] = ACTIONS(2772), - [anon_sym_isize] = ACTIONS(2772), - [anon_sym_usize] = ACTIONS(2772), - [anon_sym_f32] = ACTIONS(2772), - [anon_sym_f64] = ACTIONS(2772), - [anon_sym_bool] = ACTIONS(2772), - [anon_sym_str] = ACTIONS(2772), - [anon_sym_char] = ACTIONS(2772), - [anon_sym_DASH] = ACTIONS(2770), - [anon_sym_BANG] = ACTIONS(2770), - [anon_sym_AMP] = ACTIONS(2770), - [anon_sym_PIPE] = ACTIONS(2770), - [anon_sym_LT] = ACTIONS(2770), - [anon_sym_DOT_DOT] = ACTIONS(2770), - [anon_sym_COLON_COLON] = ACTIONS(2770), - [anon_sym_POUND] = ACTIONS(2770), - [anon_sym_SQUOTE] = ACTIONS(2772), - [anon_sym_async] = ACTIONS(2772), - [anon_sym_break] = ACTIONS(2772), - [anon_sym_const] = ACTIONS(2772), - [anon_sym_continue] = ACTIONS(2772), - [anon_sym_default] = ACTIONS(2772), - [anon_sym_enum] = ACTIONS(2772), - [anon_sym_fn] = ACTIONS(2772), - [anon_sym_for] = ACTIONS(2772), - [anon_sym_gen] = ACTIONS(2772), - [anon_sym_if] = ACTIONS(2772), - [anon_sym_impl] = ACTIONS(2772), - [anon_sym_let] = ACTIONS(2772), - [anon_sym_loop] = ACTIONS(2772), - [anon_sym_match] = ACTIONS(2772), - [anon_sym_mod] = ACTIONS(2772), - [anon_sym_pub] = ACTIONS(2772), - [anon_sym_return] = ACTIONS(2772), - [anon_sym_static] = ACTIONS(2772), - [anon_sym_struct] = ACTIONS(2772), - [anon_sym_trait] = ACTIONS(2772), - [anon_sym_type] = ACTIONS(2772), - [anon_sym_union] = ACTIONS(2772), - [anon_sym_unsafe] = ACTIONS(2772), - [anon_sym_use] = ACTIONS(2772), - [anon_sym_while] = ACTIONS(2772), - [anon_sym_extern] = ACTIONS(2772), - [anon_sym_yield] = ACTIONS(2772), - [anon_sym_move] = ACTIONS(2772), - [anon_sym_try] = ACTIONS(2772), - [sym_integer_literal] = ACTIONS(2770), - [aux_sym_string_literal_token1] = ACTIONS(2770), - [sym_char_literal] = ACTIONS(2770), - [anon_sym_true] = ACTIONS(2772), - [anon_sym_false] = ACTIONS(2772), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2772), - [sym_super] = ACTIONS(2772), - [sym_crate] = ACTIONS(2772), - [sym_metavariable] = ACTIONS(2770), - [sym__raw_string_literal_start] = ACTIONS(2770), - [sym_float_literal] = ACTIONS(2770), + [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_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_safe] = 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(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [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(715)] = { [sym_line_comment] = STATE(715), [sym_block_comment] = STATE(715), - [ts_builtin_sym_end] = ACTIONS(2774), - [sym_identifier] = ACTIONS(2776), - [anon_sym_SEMI] = ACTIONS(2774), - [anon_sym_macro_rules_BANG] = ACTIONS(2774), - [anon_sym_LPAREN] = ACTIONS(2774), - [anon_sym_LBRACK] = ACTIONS(2774), - [anon_sym_LBRACE] = ACTIONS(2774), - [anon_sym_RBRACE] = ACTIONS(2774), - [anon_sym_STAR] = ACTIONS(2774), - [anon_sym_u8] = ACTIONS(2776), - [anon_sym_i8] = ACTIONS(2776), - [anon_sym_u16] = ACTIONS(2776), - [anon_sym_i16] = ACTIONS(2776), - [anon_sym_u32] = ACTIONS(2776), - [anon_sym_i32] = ACTIONS(2776), - [anon_sym_u64] = ACTIONS(2776), - [anon_sym_i64] = ACTIONS(2776), - [anon_sym_u128] = ACTIONS(2776), - [anon_sym_i128] = ACTIONS(2776), - [anon_sym_isize] = ACTIONS(2776), - [anon_sym_usize] = ACTIONS(2776), - [anon_sym_f32] = ACTIONS(2776), - [anon_sym_f64] = ACTIONS(2776), - [anon_sym_bool] = ACTIONS(2776), - [anon_sym_str] = ACTIONS(2776), - [anon_sym_char] = ACTIONS(2776), - [anon_sym_DASH] = ACTIONS(2774), - [anon_sym_BANG] = ACTIONS(2774), - [anon_sym_AMP] = ACTIONS(2774), - [anon_sym_PIPE] = ACTIONS(2774), - [anon_sym_LT] = ACTIONS(2774), - [anon_sym_DOT_DOT] = ACTIONS(2774), - [anon_sym_COLON_COLON] = ACTIONS(2774), - [anon_sym_POUND] = ACTIONS(2774), - [anon_sym_SQUOTE] = ACTIONS(2776), - [anon_sym_async] = ACTIONS(2776), - [anon_sym_break] = ACTIONS(2776), - [anon_sym_const] = ACTIONS(2776), - [anon_sym_continue] = ACTIONS(2776), - [anon_sym_default] = ACTIONS(2776), - [anon_sym_enum] = ACTIONS(2776), - [anon_sym_fn] = ACTIONS(2776), - [anon_sym_for] = ACTIONS(2776), - [anon_sym_gen] = ACTIONS(2776), - [anon_sym_if] = ACTIONS(2776), - [anon_sym_impl] = ACTIONS(2776), - [anon_sym_let] = ACTIONS(2776), - [anon_sym_loop] = ACTIONS(2776), - [anon_sym_match] = ACTIONS(2776), - [anon_sym_mod] = ACTIONS(2776), - [anon_sym_pub] = ACTIONS(2776), - [anon_sym_return] = ACTIONS(2776), - [anon_sym_static] = ACTIONS(2776), - [anon_sym_struct] = ACTIONS(2776), - [anon_sym_trait] = ACTIONS(2776), - [anon_sym_type] = ACTIONS(2776), - [anon_sym_union] = ACTIONS(2776), - [anon_sym_unsafe] = ACTIONS(2776), - [anon_sym_use] = ACTIONS(2776), - [anon_sym_while] = ACTIONS(2776), - [anon_sym_extern] = ACTIONS(2776), - [anon_sym_yield] = ACTIONS(2776), - [anon_sym_move] = ACTIONS(2776), - [anon_sym_try] = ACTIONS(2776), - [sym_integer_literal] = ACTIONS(2774), - [aux_sym_string_literal_token1] = ACTIONS(2774), - [sym_char_literal] = ACTIONS(2774), - [anon_sym_true] = ACTIONS(2776), - [anon_sym_false] = ACTIONS(2776), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2776), - [sym_super] = ACTIONS(2776), - [sym_crate] = ACTIONS(2776), - [sym_metavariable] = ACTIONS(2774), - [sym__raw_string_literal_start] = ACTIONS(2774), - [sym_float_literal] = ACTIONS(2774), + [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_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_safe] = 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(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [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(716)] = { [sym_line_comment] = STATE(716), [sym_block_comment] = STATE(716), - [ts_builtin_sym_end] = ACTIONS(2778), - [sym_identifier] = ACTIONS(2780), - [anon_sym_SEMI] = ACTIONS(2778), - [anon_sym_macro_rules_BANG] = ACTIONS(2778), - [anon_sym_LPAREN] = ACTIONS(2778), - [anon_sym_LBRACK] = ACTIONS(2778), - [anon_sym_LBRACE] = ACTIONS(2778), - [anon_sym_RBRACE] = ACTIONS(2778), - [anon_sym_STAR] = ACTIONS(2778), - [anon_sym_u8] = ACTIONS(2780), - [anon_sym_i8] = ACTIONS(2780), - [anon_sym_u16] = ACTIONS(2780), - [anon_sym_i16] = ACTIONS(2780), - [anon_sym_u32] = ACTIONS(2780), - [anon_sym_i32] = ACTIONS(2780), - [anon_sym_u64] = ACTIONS(2780), - [anon_sym_i64] = ACTIONS(2780), - [anon_sym_u128] = ACTIONS(2780), - [anon_sym_i128] = ACTIONS(2780), - [anon_sym_isize] = ACTIONS(2780), - [anon_sym_usize] = ACTIONS(2780), - [anon_sym_f32] = ACTIONS(2780), - [anon_sym_f64] = ACTIONS(2780), - [anon_sym_bool] = ACTIONS(2780), - [anon_sym_str] = ACTIONS(2780), - [anon_sym_char] = ACTIONS(2780), - [anon_sym_DASH] = ACTIONS(2778), - [anon_sym_BANG] = ACTIONS(2778), - [anon_sym_AMP] = ACTIONS(2778), - [anon_sym_PIPE] = ACTIONS(2778), - [anon_sym_LT] = ACTIONS(2778), - [anon_sym_DOT_DOT] = ACTIONS(2778), - [anon_sym_COLON_COLON] = ACTIONS(2778), - [anon_sym_POUND] = ACTIONS(2778), - [anon_sym_SQUOTE] = ACTIONS(2780), - [anon_sym_async] = ACTIONS(2780), - [anon_sym_break] = ACTIONS(2780), - [anon_sym_const] = ACTIONS(2780), - [anon_sym_continue] = ACTIONS(2780), - [anon_sym_default] = ACTIONS(2780), - [anon_sym_enum] = ACTIONS(2780), - [anon_sym_fn] = ACTIONS(2780), - [anon_sym_for] = ACTIONS(2780), - [anon_sym_gen] = ACTIONS(2780), - [anon_sym_if] = ACTIONS(2780), - [anon_sym_impl] = ACTIONS(2780), - [anon_sym_let] = ACTIONS(2780), - [anon_sym_loop] = ACTIONS(2780), - [anon_sym_match] = ACTIONS(2780), - [anon_sym_mod] = ACTIONS(2780), - [anon_sym_pub] = ACTIONS(2780), - [anon_sym_return] = ACTIONS(2780), - [anon_sym_static] = ACTIONS(2780), - [anon_sym_struct] = ACTIONS(2780), - [anon_sym_trait] = ACTIONS(2780), - [anon_sym_type] = ACTIONS(2780), - [anon_sym_union] = ACTIONS(2780), - [anon_sym_unsafe] = ACTIONS(2780), - [anon_sym_use] = ACTIONS(2780), - [anon_sym_while] = ACTIONS(2780), - [anon_sym_extern] = ACTIONS(2780), - [anon_sym_yield] = ACTIONS(2780), - [anon_sym_move] = ACTIONS(2780), - [anon_sym_try] = ACTIONS(2780), - [sym_integer_literal] = ACTIONS(2778), - [aux_sym_string_literal_token1] = ACTIONS(2778), - [sym_char_literal] = ACTIONS(2778), - [anon_sym_true] = ACTIONS(2780), - [anon_sym_false] = ACTIONS(2780), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2780), - [sym_super] = ACTIONS(2780), - [sym_crate] = ACTIONS(2780), - [sym_metavariable] = ACTIONS(2778), - [sym__raw_string_literal_start] = ACTIONS(2778), - [sym_float_literal] = ACTIONS(2778), + [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_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_safe] = 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(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [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(717)] = { [sym_line_comment] = STATE(717), [sym_block_comment] = STATE(717), - [ts_builtin_sym_end] = ACTIONS(2782), - [sym_identifier] = ACTIONS(2784), - [anon_sym_SEMI] = ACTIONS(2782), - [anon_sym_macro_rules_BANG] = ACTIONS(2782), - [anon_sym_LPAREN] = ACTIONS(2782), - [anon_sym_LBRACK] = ACTIONS(2782), - [anon_sym_LBRACE] = ACTIONS(2782), - [anon_sym_RBRACE] = ACTIONS(2782), - [anon_sym_STAR] = ACTIONS(2782), - [anon_sym_u8] = ACTIONS(2784), - [anon_sym_i8] = ACTIONS(2784), - [anon_sym_u16] = ACTIONS(2784), - [anon_sym_i16] = ACTIONS(2784), - [anon_sym_u32] = ACTIONS(2784), - [anon_sym_i32] = ACTIONS(2784), - [anon_sym_u64] = ACTIONS(2784), - [anon_sym_i64] = ACTIONS(2784), - [anon_sym_u128] = ACTIONS(2784), - [anon_sym_i128] = ACTIONS(2784), - [anon_sym_isize] = ACTIONS(2784), - [anon_sym_usize] = ACTIONS(2784), - [anon_sym_f32] = ACTIONS(2784), - [anon_sym_f64] = ACTIONS(2784), - [anon_sym_bool] = ACTIONS(2784), - [anon_sym_str] = ACTIONS(2784), - [anon_sym_char] = ACTIONS(2784), - [anon_sym_DASH] = ACTIONS(2782), - [anon_sym_BANG] = ACTIONS(2782), - [anon_sym_AMP] = ACTIONS(2782), - [anon_sym_PIPE] = ACTIONS(2782), - [anon_sym_LT] = ACTIONS(2782), - [anon_sym_DOT_DOT] = ACTIONS(2782), - [anon_sym_COLON_COLON] = ACTIONS(2782), - [anon_sym_POUND] = ACTIONS(2782), - [anon_sym_SQUOTE] = ACTIONS(2784), - [anon_sym_async] = ACTIONS(2784), - [anon_sym_break] = ACTIONS(2784), - [anon_sym_const] = ACTIONS(2784), - [anon_sym_continue] = ACTIONS(2784), - [anon_sym_default] = ACTIONS(2784), - [anon_sym_enum] = ACTIONS(2784), - [anon_sym_fn] = ACTIONS(2784), - [anon_sym_for] = ACTIONS(2784), - [anon_sym_gen] = ACTIONS(2784), - [anon_sym_if] = ACTIONS(2784), - [anon_sym_impl] = ACTIONS(2784), - [anon_sym_let] = ACTIONS(2784), - [anon_sym_loop] = ACTIONS(2784), - [anon_sym_match] = ACTIONS(2784), - [anon_sym_mod] = ACTIONS(2784), - [anon_sym_pub] = ACTIONS(2784), - [anon_sym_return] = ACTIONS(2784), - [anon_sym_static] = ACTIONS(2784), - [anon_sym_struct] = ACTIONS(2784), - [anon_sym_trait] = ACTIONS(2784), - [anon_sym_type] = ACTIONS(2784), - [anon_sym_union] = ACTIONS(2784), - [anon_sym_unsafe] = ACTIONS(2784), - [anon_sym_use] = ACTIONS(2784), - [anon_sym_while] = ACTIONS(2784), - [anon_sym_extern] = ACTIONS(2784), - [anon_sym_yield] = ACTIONS(2784), - [anon_sym_move] = ACTIONS(2784), - [anon_sym_try] = ACTIONS(2784), - [sym_integer_literal] = ACTIONS(2782), - [aux_sym_string_literal_token1] = ACTIONS(2782), - [sym_char_literal] = ACTIONS(2782), - [anon_sym_true] = ACTIONS(2784), - [anon_sym_false] = ACTIONS(2784), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2784), - [sym_super] = ACTIONS(2784), - [sym_crate] = ACTIONS(2784), - [sym_metavariable] = ACTIONS(2782), - [sym__raw_string_literal_start] = ACTIONS(2782), - [sym_float_literal] = ACTIONS(2782), + [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_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_safe] = 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(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [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(718)] = { [sym_line_comment] = STATE(718), [sym_block_comment] = STATE(718), - [ts_builtin_sym_end] = ACTIONS(2786), - [sym_identifier] = ACTIONS(2788), - [anon_sym_SEMI] = ACTIONS(2786), - [anon_sym_macro_rules_BANG] = ACTIONS(2786), - [anon_sym_LPAREN] = ACTIONS(2786), - [anon_sym_LBRACK] = ACTIONS(2786), - [anon_sym_LBRACE] = ACTIONS(2786), - [anon_sym_RBRACE] = ACTIONS(2786), - [anon_sym_STAR] = ACTIONS(2786), - [anon_sym_u8] = ACTIONS(2788), - [anon_sym_i8] = ACTIONS(2788), - [anon_sym_u16] = ACTIONS(2788), - [anon_sym_i16] = ACTIONS(2788), - [anon_sym_u32] = ACTIONS(2788), - [anon_sym_i32] = ACTIONS(2788), - [anon_sym_u64] = ACTIONS(2788), - [anon_sym_i64] = ACTIONS(2788), - [anon_sym_u128] = ACTIONS(2788), - [anon_sym_i128] = ACTIONS(2788), - [anon_sym_isize] = ACTIONS(2788), - [anon_sym_usize] = ACTIONS(2788), - [anon_sym_f32] = ACTIONS(2788), - [anon_sym_f64] = ACTIONS(2788), - [anon_sym_bool] = ACTIONS(2788), - [anon_sym_str] = ACTIONS(2788), - [anon_sym_char] = ACTIONS(2788), - [anon_sym_DASH] = ACTIONS(2786), - [anon_sym_BANG] = ACTIONS(2786), - [anon_sym_AMP] = ACTIONS(2786), - [anon_sym_PIPE] = ACTIONS(2786), - [anon_sym_LT] = ACTIONS(2786), - [anon_sym_DOT_DOT] = ACTIONS(2786), - [anon_sym_COLON_COLON] = ACTIONS(2786), - [anon_sym_POUND] = ACTIONS(2786), - [anon_sym_SQUOTE] = ACTIONS(2788), - [anon_sym_async] = ACTIONS(2788), - [anon_sym_break] = ACTIONS(2788), - [anon_sym_const] = ACTIONS(2788), - [anon_sym_continue] = ACTIONS(2788), - [anon_sym_default] = ACTIONS(2788), - [anon_sym_enum] = ACTIONS(2788), - [anon_sym_fn] = ACTIONS(2788), - [anon_sym_for] = ACTIONS(2788), - [anon_sym_gen] = ACTIONS(2788), - [anon_sym_if] = ACTIONS(2788), - [anon_sym_impl] = ACTIONS(2788), - [anon_sym_let] = ACTIONS(2788), - [anon_sym_loop] = ACTIONS(2788), - [anon_sym_match] = ACTIONS(2788), - [anon_sym_mod] = ACTIONS(2788), - [anon_sym_pub] = ACTIONS(2788), - [anon_sym_return] = ACTIONS(2788), - [anon_sym_static] = ACTIONS(2788), - [anon_sym_struct] = ACTIONS(2788), - [anon_sym_trait] = ACTIONS(2788), - [anon_sym_type] = ACTIONS(2788), - [anon_sym_union] = ACTIONS(2788), - [anon_sym_unsafe] = ACTIONS(2788), - [anon_sym_use] = ACTIONS(2788), - [anon_sym_while] = ACTIONS(2788), - [anon_sym_extern] = ACTIONS(2788), - [anon_sym_yield] = ACTIONS(2788), - [anon_sym_move] = ACTIONS(2788), - [anon_sym_try] = ACTIONS(2788), - [sym_integer_literal] = ACTIONS(2786), - [aux_sym_string_literal_token1] = ACTIONS(2786), - [sym_char_literal] = ACTIONS(2786), - [anon_sym_true] = ACTIONS(2788), - [anon_sym_false] = ACTIONS(2788), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2788), - [sym_super] = ACTIONS(2788), - [sym_crate] = ACTIONS(2788), - [sym_metavariable] = ACTIONS(2786), - [sym__raw_string_literal_start] = ACTIONS(2786), - [sym_float_literal] = ACTIONS(2786), + [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_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_safe] = 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(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [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(719)] = { [sym_line_comment] = STATE(719), [sym_block_comment] = STATE(719), - [ts_builtin_sym_end] = ACTIONS(2790), - [sym_identifier] = ACTIONS(2792), - [anon_sym_SEMI] = ACTIONS(2790), - [anon_sym_macro_rules_BANG] = ACTIONS(2790), - [anon_sym_LPAREN] = ACTIONS(2790), - [anon_sym_LBRACK] = ACTIONS(2790), - [anon_sym_LBRACE] = ACTIONS(2790), - [anon_sym_RBRACE] = ACTIONS(2790), - [anon_sym_STAR] = ACTIONS(2790), - [anon_sym_u8] = ACTIONS(2792), - [anon_sym_i8] = ACTIONS(2792), - [anon_sym_u16] = ACTIONS(2792), - [anon_sym_i16] = ACTIONS(2792), - [anon_sym_u32] = ACTIONS(2792), - [anon_sym_i32] = ACTIONS(2792), - [anon_sym_u64] = ACTIONS(2792), - [anon_sym_i64] = ACTIONS(2792), - [anon_sym_u128] = ACTIONS(2792), - [anon_sym_i128] = ACTIONS(2792), - [anon_sym_isize] = ACTIONS(2792), - [anon_sym_usize] = ACTIONS(2792), - [anon_sym_f32] = ACTIONS(2792), - [anon_sym_f64] = ACTIONS(2792), - [anon_sym_bool] = ACTIONS(2792), - [anon_sym_str] = ACTIONS(2792), - [anon_sym_char] = ACTIONS(2792), - [anon_sym_DASH] = ACTIONS(2790), - [anon_sym_BANG] = ACTIONS(2790), - [anon_sym_AMP] = ACTIONS(2790), - [anon_sym_PIPE] = ACTIONS(2790), - [anon_sym_LT] = ACTIONS(2790), - [anon_sym_DOT_DOT] = ACTIONS(2790), - [anon_sym_COLON_COLON] = ACTIONS(2790), - [anon_sym_POUND] = ACTIONS(2790), - [anon_sym_SQUOTE] = ACTIONS(2792), - [anon_sym_async] = ACTIONS(2792), - [anon_sym_break] = ACTIONS(2792), - [anon_sym_const] = ACTIONS(2792), - [anon_sym_continue] = ACTIONS(2792), - [anon_sym_default] = ACTIONS(2792), - [anon_sym_enum] = ACTIONS(2792), - [anon_sym_fn] = ACTIONS(2792), - [anon_sym_for] = ACTIONS(2792), - [anon_sym_gen] = ACTIONS(2792), - [anon_sym_if] = ACTIONS(2792), - [anon_sym_impl] = ACTIONS(2792), - [anon_sym_let] = ACTIONS(2792), - [anon_sym_loop] = ACTIONS(2792), - [anon_sym_match] = ACTIONS(2792), - [anon_sym_mod] = ACTIONS(2792), - [anon_sym_pub] = ACTIONS(2792), - [anon_sym_return] = ACTIONS(2792), - [anon_sym_static] = ACTIONS(2792), - [anon_sym_struct] = ACTIONS(2792), - [anon_sym_trait] = ACTIONS(2792), - [anon_sym_type] = ACTIONS(2792), - [anon_sym_union] = ACTIONS(2792), - [anon_sym_unsafe] = ACTIONS(2792), - [anon_sym_use] = ACTIONS(2792), - [anon_sym_while] = ACTIONS(2792), - [anon_sym_extern] = ACTIONS(2792), - [anon_sym_yield] = ACTIONS(2792), - [anon_sym_move] = ACTIONS(2792), - [anon_sym_try] = ACTIONS(2792), - [sym_integer_literal] = ACTIONS(2790), - [aux_sym_string_literal_token1] = ACTIONS(2790), - [sym_char_literal] = ACTIONS(2790), - [anon_sym_true] = ACTIONS(2792), - [anon_sym_false] = ACTIONS(2792), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2792), - [sym_super] = ACTIONS(2792), - [sym_crate] = ACTIONS(2792), - [sym_metavariable] = ACTIONS(2790), - [sym__raw_string_literal_start] = ACTIONS(2790), - [sym_float_literal] = ACTIONS(2790), + [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_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_safe] = 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(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [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(720)] = { [sym_line_comment] = STATE(720), [sym_block_comment] = STATE(720), - [ts_builtin_sym_end] = ACTIONS(2794), - [sym_identifier] = ACTIONS(2796), - [anon_sym_SEMI] = ACTIONS(2794), - [anon_sym_macro_rules_BANG] = ACTIONS(2794), - [anon_sym_LPAREN] = ACTIONS(2794), - [anon_sym_LBRACK] = ACTIONS(2794), - [anon_sym_LBRACE] = ACTIONS(2794), - [anon_sym_RBRACE] = ACTIONS(2794), - [anon_sym_STAR] = ACTIONS(2794), - [anon_sym_u8] = ACTIONS(2796), - [anon_sym_i8] = ACTIONS(2796), - [anon_sym_u16] = ACTIONS(2796), - [anon_sym_i16] = ACTIONS(2796), - [anon_sym_u32] = ACTIONS(2796), - [anon_sym_i32] = ACTIONS(2796), - [anon_sym_u64] = ACTIONS(2796), - [anon_sym_i64] = ACTIONS(2796), - [anon_sym_u128] = ACTIONS(2796), - [anon_sym_i128] = ACTIONS(2796), - [anon_sym_isize] = ACTIONS(2796), - [anon_sym_usize] = ACTIONS(2796), - [anon_sym_f32] = ACTIONS(2796), - [anon_sym_f64] = ACTIONS(2796), - [anon_sym_bool] = ACTIONS(2796), - [anon_sym_str] = ACTIONS(2796), - [anon_sym_char] = ACTIONS(2796), - [anon_sym_DASH] = ACTIONS(2794), - [anon_sym_BANG] = ACTIONS(2794), - [anon_sym_AMP] = ACTIONS(2794), - [anon_sym_PIPE] = ACTIONS(2794), - [anon_sym_LT] = ACTIONS(2794), - [anon_sym_DOT_DOT] = ACTIONS(2794), - [anon_sym_COLON_COLON] = ACTIONS(2794), - [anon_sym_POUND] = ACTIONS(2794), - [anon_sym_SQUOTE] = ACTIONS(2796), - [anon_sym_async] = ACTIONS(2796), - [anon_sym_break] = ACTIONS(2796), - [anon_sym_const] = ACTIONS(2796), - [anon_sym_continue] = ACTIONS(2796), - [anon_sym_default] = ACTIONS(2796), - [anon_sym_enum] = ACTIONS(2796), - [anon_sym_fn] = ACTIONS(2796), - [anon_sym_for] = ACTIONS(2796), - [anon_sym_gen] = ACTIONS(2796), - [anon_sym_if] = ACTIONS(2796), - [anon_sym_impl] = ACTIONS(2796), - [anon_sym_let] = ACTIONS(2796), - [anon_sym_loop] = ACTIONS(2796), - [anon_sym_match] = ACTIONS(2796), - [anon_sym_mod] = ACTIONS(2796), - [anon_sym_pub] = ACTIONS(2796), - [anon_sym_return] = ACTIONS(2796), - [anon_sym_static] = ACTIONS(2796), - [anon_sym_struct] = ACTIONS(2796), - [anon_sym_trait] = ACTIONS(2796), - [anon_sym_type] = ACTIONS(2796), - [anon_sym_union] = ACTIONS(2796), - [anon_sym_unsafe] = ACTIONS(2796), - [anon_sym_use] = ACTIONS(2796), - [anon_sym_while] = ACTIONS(2796), - [anon_sym_extern] = ACTIONS(2796), - [anon_sym_yield] = ACTIONS(2796), - [anon_sym_move] = ACTIONS(2796), - [anon_sym_try] = ACTIONS(2796), - [sym_integer_literal] = ACTIONS(2794), - [aux_sym_string_literal_token1] = ACTIONS(2794), - [sym_char_literal] = ACTIONS(2794), - [anon_sym_true] = ACTIONS(2796), - [anon_sym_false] = ACTIONS(2796), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2796), - [sym_super] = ACTIONS(2796), - [sym_crate] = ACTIONS(2796), - [sym_metavariable] = ACTIONS(2794), - [sym__raw_string_literal_start] = ACTIONS(2794), - [sym_float_literal] = ACTIONS(2794), + [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_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_safe] = 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(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [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(721)] = { [sym_line_comment] = STATE(721), [sym_block_comment] = STATE(721), - [ts_builtin_sym_end] = ACTIONS(2798), - [sym_identifier] = ACTIONS(2800), - [anon_sym_SEMI] = ACTIONS(2798), - [anon_sym_macro_rules_BANG] = ACTIONS(2798), - [anon_sym_LPAREN] = ACTIONS(2798), - [anon_sym_LBRACK] = ACTIONS(2798), - [anon_sym_LBRACE] = ACTIONS(2798), - [anon_sym_RBRACE] = ACTIONS(2798), - [anon_sym_STAR] = ACTIONS(2798), - [anon_sym_u8] = ACTIONS(2800), - [anon_sym_i8] = ACTIONS(2800), - [anon_sym_u16] = ACTIONS(2800), - [anon_sym_i16] = ACTIONS(2800), - [anon_sym_u32] = ACTIONS(2800), - [anon_sym_i32] = ACTIONS(2800), - [anon_sym_u64] = ACTIONS(2800), - [anon_sym_i64] = ACTIONS(2800), - [anon_sym_u128] = ACTIONS(2800), - [anon_sym_i128] = ACTIONS(2800), - [anon_sym_isize] = ACTIONS(2800), - [anon_sym_usize] = ACTIONS(2800), - [anon_sym_f32] = ACTIONS(2800), - [anon_sym_f64] = ACTIONS(2800), - [anon_sym_bool] = ACTIONS(2800), - [anon_sym_str] = ACTIONS(2800), - [anon_sym_char] = ACTIONS(2800), - [anon_sym_DASH] = ACTIONS(2798), - [anon_sym_BANG] = ACTIONS(2798), - [anon_sym_AMP] = ACTIONS(2798), - [anon_sym_PIPE] = ACTIONS(2798), - [anon_sym_LT] = ACTIONS(2798), - [anon_sym_DOT_DOT] = ACTIONS(2798), - [anon_sym_COLON_COLON] = ACTIONS(2798), - [anon_sym_POUND] = ACTIONS(2798), - [anon_sym_SQUOTE] = ACTIONS(2800), - [anon_sym_async] = ACTIONS(2800), - [anon_sym_break] = ACTIONS(2800), - [anon_sym_const] = ACTIONS(2800), - [anon_sym_continue] = ACTIONS(2800), - [anon_sym_default] = ACTIONS(2800), - [anon_sym_enum] = ACTIONS(2800), - [anon_sym_fn] = ACTIONS(2800), - [anon_sym_for] = ACTIONS(2800), - [anon_sym_gen] = ACTIONS(2800), - [anon_sym_if] = ACTIONS(2800), - [anon_sym_impl] = ACTIONS(2800), - [anon_sym_let] = ACTIONS(2800), - [anon_sym_loop] = ACTIONS(2800), - [anon_sym_match] = ACTIONS(2800), - [anon_sym_mod] = ACTIONS(2800), - [anon_sym_pub] = ACTIONS(2800), - [anon_sym_return] = ACTIONS(2800), - [anon_sym_static] = ACTIONS(2800), - [anon_sym_struct] = ACTIONS(2800), - [anon_sym_trait] = ACTIONS(2800), - [anon_sym_type] = ACTIONS(2800), - [anon_sym_union] = ACTIONS(2800), - [anon_sym_unsafe] = ACTIONS(2800), - [anon_sym_use] = ACTIONS(2800), - [anon_sym_while] = ACTIONS(2800), - [anon_sym_extern] = ACTIONS(2800), - [anon_sym_yield] = ACTIONS(2800), - [anon_sym_move] = ACTIONS(2800), - [anon_sym_try] = ACTIONS(2800), - [sym_integer_literal] = ACTIONS(2798), - [aux_sym_string_literal_token1] = ACTIONS(2798), - [sym_char_literal] = ACTIONS(2798), - [anon_sym_true] = ACTIONS(2800), - [anon_sym_false] = ACTIONS(2800), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2800), - [sym_super] = ACTIONS(2800), - [sym_crate] = ACTIONS(2800), - [sym_metavariable] = ACTIONS(2798), - [sym__raw_string_literal_start] = ACTIONS(2798), - [sym_float_literal] = ACTIONS(2798), + [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_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_safe] = 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(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [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(722)] = { [sym_line_comment] = STATE(722), [sym_block_comment] = STATE(722), - [ts_builtin_sym_end] = ACTIONS(2802), - [sym_identifier] = ACTIONS(2804), - [anon_sym_SEMI] = ACTIONS(2802), - [anon_sym_macro_rules_BANG] = ACTIONS(2802), - [anon_sym_LPAREN] = ACTIONS(2802), - [anon_sym_LBRACK] = ACTIONS(2802), - [anon_sym_LBRACE] = ACTIONS(2802), - [anon_sym_RBRACE] = ACTIONS(2802), - [anon_sym_STAR] = ACTIONS(2802), - [anon_sym_u8] = ACTIONS(2804), - [anon_sym_i8] = ACTIONS(2804), - [anon_sym_u16] = ACTIONS(2804), - [anon_sym_i16] = ACTIONS(2804), - [anon_sym_u32] = ACTIONS(2804), - [anon_sym_i32] = ACTIONS(2804), - [anon_sym_u64] = ACTIONS(2804), - [anon_sym_i64] = ACTIONS(2804), - [anon_sym_u128] = ACTIONS(2804), - [anon_sym_i128] = ACTIONS(2804), - [anon_sym_isize] = ACTIONS(2804), - [anon_sym_usize] = ACTIONS(2804), - [anon_sym_f32] = ACTIONS(2804), - [anon_sym_f64] = ACTIONS(2804), - [anon_sym_bool] = ACTIONS(2804), - [anon_sym_str] = ACTIONS(2804), - [anon_sym_char] = ACTIONS(2804), - [anon_sym_DASH] = ACTIONS(2802), - [anon_sym_BANG] = ACTIONS(2802), - [anon_sym_AMP] = ACTIONS(2802), - [anon_sym_PIPE] = ACTIONS(2802), - [anon_sym_LT] = ACTIONS(2802), - [anon_sym_DOT_DOT] = ACTIONS(2802), - [anon_sym_COLON_COLON] = ACTIONS(2802), - [anon_sym_POUND] = ACTIONS(2802), - [anon_sym_SQUOTE] = ACTIONS(2804), - [anon_sym_async] = ACTIONS(2804), - [anon_sym_break] = ACTIONS(2804), - [anon_sym_const] = ACTIONS(2804), - [anon_sym_continue] = ACTIONS(2804), - [anon_sym_default] = ACTIONS(2804), - [anon_sym_enum] = ACTIONS(2804), - [anon_sym_fn] = ACTIONS(2804), - [anon_sym_for] = ACTIONS(2804), - [anon_sym_gen] = ACTIONS(2804), - [anon_sym_if] = ACTIONS(2804), - [anon_sym_impl] = ACTIONS(2804), - [anon_sym_let] = ACTIONS(2804), - [anon_sym_loop] = ACTIONS(2804), - [anon_sym_match] = ACTIONS(2804), - [anon_sym_mod] = ACTIONS(2804), - [anon_sym_pub] = ACTIONS(2804), - [anon_sym_return] = ACTIONS(2804), - [anon_sym_static] = ACTIONS(2804), - [anon_sym_struct] = ACTIONS(2804), - [anon_sym_trait] = ACTIONS(2804), - [anon_sym_type] = ACTIONS(2804), - [anon_sym_union] = ACTIONS(2804), - [anon_sym_unsafe] = ACTIONS(2804), - [anon_sym_use] = ACTIONS(2804), - [anon_sym_while] = ACTIONS(2804), - [anon_sym_extern] = ACTIONS(2804), - [anon_sym_yield] = ACTIONS(2804), - [anon_sym_move] = ACTIONS(2804), - [anon_sym_try] = ACTIONS(2804), - [sym_integer_literal] = ACTIONS(2802), - [aux_sym_string_literal_token1] = ACTIONS(2802), - [sym_char_literal] = ACTIONS(2802), - [anon_sym_true] = ACTIONS(2804), - [anon_sym_false] = ACTIONS(2804), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2804), - [sym_super] = ACTIONS(2804), - [sym_crate] = ACTIONS(2804), - [sym_metavariable] = ACTIONS(2802), - [sym__raw_string_literal_start] = ACTIONS(2802), - [sym_float_literal] = ACTIONS(2802), + [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_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_safe] = 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(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [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(723)] = { [sym_line_comment] = STATE(723), [sym_block_comment] = STATE(723), - [ts_builtin_sym_end] = ACTIONS(2806), - [sym_identifier] = ACTIONS(2808), - [anon_sym_SEMI] = ACTIONS(2806), - [anon_sym_macro_rules_BANG] = ACTIONS(2806), - [anon_sym_LPAREN] = ACTIONS(2806), - [anon_sym_LBRACK] = ACTIONS(2806), - [anon_sym_LBRACE] = ACTIONS(2806), - [anon_sym_RBRACE] = ACTIONS(2806), - [anon_sym_STAR] = ACTIONS(2806), - [anon_sym_u8] = ACTIONS(2808), - [anon_sym_i8] = ACTIONS(2808), - [anon_sym_u16] = ACTIONS(2808), - [anon_sym_i16] = ACTIONS(2808), - [anon_sym_u32] = ACTIONS(2808), - [anon_sym_i32] = ACTIONS(2808), - [anon_sym_u64] = ACTIONS(2808), - [anon_sym_i64] = ACTIONS(2808), - [anon_sym_u128] = ACTIONS(2808), - [anon_sym_i128] = ACTIONS(2808), - [anon_sym_isize] = ACTIONS(2808), - [anon_sym_usize] = ACTIONS(2808), - [anon_sym_f32] = ACTIONS(2808), - [anon_sym_f64] = ACTIONS(2808), - [anon_sym_bool] = ACTIONS(2808), - [anon_sym_str] = ACTIONS(2808), - [anon_sym_char] = ACTIONS(2808), - [anon_sym_DASH] = ACTIONS(2806), - [anon_sym_BANG] = ACTIONS(2806), - [anon_sym_AMP] = ACTIONS(2806), - [anon_sym_PIPE] = ACTIONS(2806), - [anon_sym_LT] = ACTIONS(2806), - [anon_sym_DOT_DOT] = ACTIONS(2806), - [anon_sym_COLON_COLON] = ACTIONS(2806), - [anon_sym_POUND] = ACTIONS(2806), - [anon_sym_SQUOTE] = ACTIONS(2808), - [anon_sym_async] = ACTIONS(2808), - [anon_sym_break] = ACTIONS(2808), - [anon_sym_const] = ACTIONS(2808), - [anon_sym_continue] = ACTIONS(2808), - [anon_sym_default] = ACTIONS(2808), - [anon_sym_enum] = ACTIONS(2808), - [anon_sym_fn] = ACTIONS(2808), - [anon_sym_for] = ACTIONS(2808), - [anon_sym_gen] = ACTIONS(2808), - [anon_sym_if] = ACTIONS(2808), - [anon_sym_impl] = ACTIONS(2808), - [anon_sym_let] = ACTIONS(2808), - [anon_sym_loop] = ACTIONS(2808), - [anon_sym_match] = ACTIONS(2808), - [anon_sym_mod] = ACTIONS(2808), - [anon_sym_pub] = ACTIONS(2808), - [anon_sym_return] = ACTIONS(2808), - [anon_sym_static] = ACTIONS(2808), - [anon_sym_struct] = ACTIONS(2808), - [anon_sym_trait] = ACTIONS(2808), - [anon_sym_type] = ACTIONS(2808), - [anon_sym_union] = ACTIONS(2808), - [anon_sym_unsafe] = ACTIONS(2808), - [anon_sym_use] = ACTIONS(2808), - [anon_sym_while] = ACTIONS(2808), - [anon_sym_extern] = ACTIONS(2808), - [anon_sym_yield] = ACTIONS(2808), - [anon_sym_move] = ACTIONS(2808), - [anon_sym_try] = ACTIONS(2808), - [sym_integer_literal] = ACTIONS(2806), - [aux_sym_string_literal_token1] = ACTIONS(2806), - [sym_char_literal] = ACTIONS(2806), - [anon_sym_true] = ACTIONS(2808), - [anon_sym_false] = ACTIONS(2808), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2808), - [sym_super] = ACTIONS(2808), - [sym_crate] = ACTIONS(2808), - [sym_metavariable] = ACTIONS(2806), - [sym__raw_string_literal_start] = ACTIONS(2806), - [sym_float_literal] = ACTIONS(2806), + [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_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_safe] = 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(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [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(724)] = { [sym_line_comment] = STATE(724), [sym_block_comment] = STATE(724), - [ts_builtin_sym_end] = ACTIONS(2810), - [sym_identifier] = ACTIONS(2812), - [anon_sym_SEMI] = ACTIONS(2810), - [anon_sym_macro_rules_BANG] = ACTIONS(2810), - [anon_sym_LPAREN] = ACTIONS(2810), - [anon_sym_LBRACK] = ACTIONS(2810), - [anon_sym_LBRACE] = ACTIONS(2810), - [anon_sym_RBRACE] = ACTIONS(2810), - [anon_sym_STAR] = ACTIONS(2810), - [anon_sym_u8] = ACTIONS(2812), - [anon_sym_i8] = ACTIONS(2812), - [anon_sym_u16] = ACTIONS(2812), - [anon_sym_i16] = ACTIONS(2812), - [anon_sym_u32] = ACTIONS(2812), - [anon_sym_i32] = ACTIONS(2812), - [anon_sym_u64] = ACTIONS(2812), - [anon_sym_i64] = ACTIONS(2812), - [anon_sym_u128] = ACTIONS(2812), - [anon_sym_i128] = ACTIONS(2812), - [anon_sym_isize] = ACTIONS(2812), - [anon_sym_usize] = ACTIONS(2812), - [anon_sym_f32] = ACTIONS(2812), - [anon_sym_f64] = ACTIONS(2812), - [anon_sym_bool] = ACTIONS(2812), - [anon_sym_str] = ACTIONS(2812), - [anon_sym_char] = ACTIONS(2812), - [anon_sym_DASH] = ACTIONS(2810), - [anon_sym_BANG] = ACTIONS(2810), - [anon_sym_AMP] = ACTIONS(2810), - [anon_sym_PIPE] = ACTIONS(2810), - [anon_sym_LT] = ACTIONS(2810), - [anon_sym_DOT_DOT] = ACTIONS(2810), - [anon_sym_COLON_COLON] = ACTIONS(2810), - [anon_sym_POUND] = ACTIONS(2810), - [anon_sym_SQUOTE] = ACTIONS(2812), - [anon_sym_async] = ACTIONS(2812), - [anon_sym_break] = ACTIONS(2812), - [anon_sym_const] = ACTIONS(2812), - [anon_sym_continue] = ACTIONS(2812), - [anon_sym_default] = ACTIONS(2812), - [anon_sym_enum] = ACTIONS(2812), - [anon_sym_fn] = ACTIONS(2812), - [anon_sym_for] = ACTIONS(2812), - [anon_sym_gen] = ACTIONS(2812), - [anon_sym_if] = ACTIONS(2812), - [anon_sym_impl] = ACTIONS(2812), - [anon_sym_let] = ACTIONS(2812), - [anon_sym_loop] = ACTIONS(2812), - [anon_sym_match] = ACTIONS(2812), - [anon_sym_mod] = ACTIONS(2812), - [anon_sym_pub] = ACTIONS(2812), - [anon_sym_return] = ACTIONS(2812), - [anon_sym_static] = ACTIONS(2812), - [anon_sym_struct] = ACTIONS(2812), - [anon_sym_trait] = ACTIONS(2812), - [anon_sym_type] = ACTIONS(2812), - [anon_sym_union] = ACTIONS(2812), - [anon_sym_unsafe] = ACTIONS(2812), - [anon_sym_use] = ACTIONS(2812), - [anon_sym_while] = ACTIONS(2812), - [anon_sym_extern] = ACTIONS(2812), - [anon_sym_yield] = ACTIONS(2812), - [anon_sym_move] = ACTIONS(2812), - [anon_sym_try] = ACTIONS(2812), - [sym_integer_literal] = ACTIONS(2810), - [aux_sym_string_literal_token1] = ACTIONS(2810), - [sym_char_literal] = ACTIONS(2810), - [anon_sym_true] = ACTIONS(2812), - [anon_sym_false] = ACTIONS(2812), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2812), - [sym_super] = ACTIONS(2812), - [sym_crate] = ACTIONS(2812), - [sym_metavariable] = ACTIONS(2810), - [sym__raw_string_literal_start] = ACTIONS(2810), - [sym_float_literal] = ACTIONS(2810), + [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_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_safe] = 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(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [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(725)] = { [sym_line_comment] = STATE(725), [sym_block_comment] = STATE(725), - [ts_builtin_sym_end] = ACTIONS(2814), - [sym_identifier] = ACTIONS(2816), - [anon_sym_SEMI] = ACTIONS(2814), - [anon_sym_macro_rules_BANG] = ACTIONS(2814), - [anon_sym_LPAREN] = ACTIONS(2814), - [anon_sym_LBRACK] = ACTIONS(2814), - [anon_sym_LBRACE] = ACTIONS(2814), - [anon_sym_RBRACE] = ACTIONS(2814), - [anon_sym_STAR] = ACTIONS(2814), - [anon_sym_u8] = ACTIONS(2816), - [anon_sym_i8] = ACTIONS(2816), - [anon_sym_u16] = ACTIONS(2816), - [anon_sym_i16] = ACTIONS(2816), - [anon_sym_u32] = ACTIONS(2816), - [anon_sym_i32] = ACTIONS(2816), - [anon_sym_u64] = ACTIONS(2816), - [anon_sym_i64] = ACTIONS(2816), - [anon_sym_u128] = ACTIONS(2816), - [anon_sym_i128] = ACTIONS(2816), - [anon_sym_isize] = ACTIONS(2816), - [anon_sym_usize] = ACTIONS(2816), - [anon_sym_f32] = ACTIONS(2816), - [anon_sym_f64] = ACTIONS(2816), - [anon_sym_bool] = ACTIONS(2816), - [anon_sym_str] = ACTIONS(2816), - [anon_sym_char] = ACTIONS(2816), - [anon_sym_DASH] = ACTIONS(2814), - [anon_sym_BANG] = ACTIONS(2814), - [anon_sym_AMP] = ACTIONS(2814), - [anon_sym_PIPE] = ACTIONS(2814), - [anon_sym_LT] = ACTIONS(2814), - [anon_sym_DOT_DOT] = ACTIONS(2814), - [anon_sym_COLON_COLON] = ACTIONS(2814), - [anon_sym_POUND] = ACTIONS(2814), - [anon_sym_SQUOTE] = ACTIONS(2816), - [anon_sym_async] = ACTIONS(2816), - [anon_sym_break] = ACTIONS(2816), - [anon_sym_const] = ACTIONS(2816), - [anon_sym_continue] = ACTIONS(2816), - [anon_sym_default] = ACTIONS(2816), - [anon_sym_enum] = ACTIONS(2816), - [anon_sym_fn] = ACTIONS(2816), - [anon_sym_for] = ACTIONS(2816), - [anon_sym_gen] = ACTIONS(2816), - [anon_sym_if] = ACTIONS(2816), - [anon_sym_impl] = ACTIONS(2816), - [anon_sym_let] = ACTIONS(2816), - [anon_sym_loop] = ACTIONS(2816), - [anon_sym_match] = ACTIONS(2816), - [anon_sym_mod] = ACTIONS(2816), - [anon_sym_pub] = ACTIONS(2816), - [anon_sym_return] = ACTIONS(2816), - [anon_sym_static] = ACTIONS(2816), - [anon_sym_struct] = ACTIONS(2816), - [anon_sym_trait] = ACTIONS(2816), - [anon_sym_type] = ACTIONS(2816), - [anon_sym_union] = ACTIONS(2816), - [anon_sym_unsafe] = ACTIONS(2816), - [anon_sym_use] = ACTIONS(2816), - [anon_sym_while] = ACTIONS(2816), - [anon_sym_extern] = ACTIONS(2816), - [anon_sym_yield] = ACTIONS(2816), - [anon_sym_move] = ACTIONS(2816), - [anon_sym_try] = ACTIONS(2816), - [sym_integer_literal] = ACTIONS(2814), - [aux_sym_string_literal_token1] = ACTIONS(2814), - [sym_char_literal] = ACTIONS(2814), - [anon_sym_true] = ACTIONS(2816), - [anon_sym_false] = ACTIONS(2816), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2816), - [sym_super] = ACTIONS(2816), - [sym_crate] = ACTIONS(2816), - [sym_metavariable] = ACTIONS(2814), - [sym__raw_string_literal_start] = ACTIONS(2814), - [sym_float_literal] = ACTIONS(2814), + [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_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_safe] = 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(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [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(726)] = { [sym_line_comment] = STATE(726), [sym_block_comment] = STATE(726), - [ts_builtin_sym_end] = ACTIONS(2818), - [sym_identifier] = ACTIONS(2820), - [anon_sym_SEMI] = ACTIONS(2818), - [anon_sym_macro_rules_BANG] = ACTIONS(2818), - [anon_sym_LPAREN] = ACTIONS(2818), - [anon_sym_LBRACK] = ACTIONS(2818), - [anon_sym_LBRACE] = ACTIONS(2818), - [anon_sym_RBRACE] = ACTIONS(2818), - [anon_sym_STAR] = ACTIONS(2818), - [anon_sym_u8] = ACTIONS(2820), - [anon_sym_i8] = ACTIONS(2820), - [anon_sym_u16] = ACTIONS(2820), - [anon_sym_i16] = ACTIONS(2820), - [anon_sym_u32] = ACTIONS(2820), - [anon_sym_i32] = ACTIONS(2820), - [anon_sym_u64] = ACTIONS(2820), - [anon_sym_i64] = ACTIONS(2820), - [anon_sym_u128] = ACTIONS(2820), - [anon_sym_i128] = ACTIONS(2820), - [anon_sym_isize] = ACTIONS(2820), - [anon_sym_usize] = ACTIONS(2820), - [anon_sym_f32] = ACTIONS(2820), - [anon_sym_f64] = ACTIONS(2820), - [anon_sym_bool] = ACTIONS(2820), - [anon_sym_str] = ACTIONS(2820), - [anon_sym_char] = ACTIONS(2820), - [anon_sym_DASH] = ACTIONS(2818), - [anon_sym_BANG] = ACTIONS(2818), - [anon_sym_AMP] = ACTIONS(2818), - [anon_sym_PIPE] = ACTIONS(2818), - [anon_sym_LT] = ACTIONS(2818), - [anon_sym_DOT_DOT] = ACTIONS(2818), - [anon_sym_COLON_COLON] = ACTIONS(2818), - [anon_sym_POUND] = ACTIONS(2818), - [anon_sym_SQUOTE] = ACTIONS(2820), - [anon_sym_async] = ACTIONS(2820), - [anon_sym_break] = ACTIONS(2820), - [anon_sym_const] = ACTIONS(2820), - [anon_sym_continue] = ACTIONS(2820), - [anon_sym_default] = ACTIONS(2820), - [anon_sym_enum] = ACTIONS(2820), - [anon_sym_fn] = ACTIONS(2820), - [anon_sym_for] = ACTIONS(2820), - [anon_sym_gen] = ACTIONS(2820), - [anon_sym_if] = ACTIONS(2820), - [anon_sym_impl] = ACTIONS(2820), - [anon_sym_let] = ACTIONS(2820), - [anon_sym_loop] = ACTIONS(2820), - [anon_sym_match] = ACTIONS(2820), - [anon_sym_mod] = ACTIONS(2820), - [anon_sym_pub] = ACTIONS(2820), - [anon_sym_return] = ACTIONS(2820), - [anon_sym_static] = ACTIONS(2820), - [anon_sym_struct] = ACTIONS(2820), - [anon_sym_trait] = ACTIONS(2820), - [anon_sym_type] = ACTIONS(2820), - [anon_sym_union] = ACTIONS(2820), - [anon_sym_unsafe] = ACTIONS(2820), - [anon_sym_use] = ACTIONS(2820), - [anon_sym_while] = ACTIONS(2820), - [anon_sym_extern] = ACTIONS(2820), - [anon_sym_yield] = ACTIONS(2820), - [anon_sym_move] = ACTIONS(2820), - [anon_sym_try] = ACTIONS(2820), - [sym_integer_literal] = ACTIONS(2818), - [aux_sym_string_literal_token1] = ACTIONS(2818), - [sym_char_literal] = ACTIONS(2818), - [anon_sym_true] = ACTIONS(2820), - [anon_sym_false] = ACTIONS(2820), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2820), - [sym_super] = ACTIONS(2820), - [sym_crate] = ACTIONS(2820), - [sym_metavariable] = ACTIONS(2818), - [sym__raw_string_literal_start] = ACTIONS(2818), - [sym_float_literal] = ACTIONS(2818), + [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_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_safe] = 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(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [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(727)] = { [sym_line_comment] = STATE(727), [sym_block_comment] = STATE(727), - [ts_builtin_sym_end] = ACTIONS(2822), - [sym_identifier] = ACTIONS(2824), - [anon_sym_SEMI] = ACTIONS(2822), - [anon_sym_macro_rules_BANG] = ACTIONS(2822), - [anon_sym_LPAREN] = ACTIONS(2822), - [anon_sym_LBRACK] = ACTIONS(2822), - [anon_sym_LBRACE] = ACTIONS(2822), - [anon_sym_RBRACE] = ACTIONS(2822), - [anon_sym_STAR] = ACTIONS(2822), - [anon_sym_u8] = ACTIONS(2824), - [anon_sym_i8] = ACTIONS(2824), - [anon_sym_u16] = ACTIONS(2824), - [anon_sym_i16] = ACTIONS(2824), - [anon_sym_u32] = ACTIONS(2824), - [anon_sym_i32] = ACTIONS(2824), - [anon_sym_u64] = ACTIONS(2824), - [anon_sym_i64] = ACTIONS(2824), - [anon_sym_u128] = ACTIONS(2824), - [anon_sym_i128] = ACTIONS(2824), - [anon_sym_isize] = ACTIONS(2824), - [anon_sym_usize] = ACTIONS(2824), - [anon_sym_f32] = ACTIONS(2824), - [anon_sym_f64] = ACTIONS(2824), - [anon_sym_bool] = ACTIONS(2824), - [anon_sym_str] = ACTIONS(2824), - [anon_sym_char] = ACTIONS(2824), - [anon_sym_DASH] = ACTIONS(2822), - [anon_sym_BANG] = ACTIONS(2822), - [anon_sym_AMP] = ACTIONS(2822), - [anon_sym_PIPE] = ACTIONS(2822), - [anon_sym_LT] = ACTIONS(2822), - [anon_sym_DOT_DOT] = ACTIONS(2822), - [anon_sym_COLON_COLON] = ACTIONS(2822), - [anon_sym_POUND] = ACTIONS(2822), - [anon_sym_SQUOTE] = ACTIONS(2824), - [anon_sym_async] = ACTIONS(2824), - [anon_sym_break] = ACTIONS(2824), - [anon_sym_const] = ACTIONS(2824), - [anon_sym_continue] = ACTIONS(2824), - [anon_sym_default] = ACTIONS(2824), - [anon_sym_enum] = ACTIONS(2824), - [anon_sym_fn] = ACTIONS(2824), - [anon_sym_for] = ACTIONS(2824), - [anon_sym_gen] = ACTIONS(2824), - [anon_sym_if] = ACTIONS(2824), - [anon_sym_impl] = ACTIONS(2824), - [anon_sym_let] = ACTIONS(2824), - [anon_sym_loop] = ACTIONS(2824), - [anon_sym_match] = ACTIONS(2824), - [anon_sym_mod] = ACTIONS(2824), - [anon_sym_pub] = ACTIONS(2824), - [anon_sym_return] = ACTIONS(2824), - [anon_sym_static] = ACTIONS(2824), - [anon_sym_struct] = ACTIONS(2824), - [anon_sym_trait] = ACTIONS(2824), - [anon_sym_type] = ACTIONS(2824), - [anon_sym_union] = ACTIONS(2824), - [anon_sym_unsafe] = ACTIONS(2824), - [anon_sym_use] = ACTIONS(2824), - [anon_sym_while] = ACTIONS(2824), - [anon_sym_extern] = ACTIONS(2824), - [anon_sym_yield] = ACTIONS(2824), - [anon_sym_move] = ACTIONS(2824), - [anon_sym_try] = ACTIONS(2824), - [sym_integer_literal] = ACTIONS(2822), - [aux_sym_string_literal_token1] = ACTIONS(2822), - [sym_char_literal] = ACTIONS(2822), - [anon_sym_true] = ACTIONS(2824), - [anon_sym_false] = ACTIONS(2824), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2824), - [sym_super] = ACTIONS(2824), - [sym_crate] = ACTIONS(2824), - [sym_metavariable] = ACTIONS(2822), - [sym__raw_string_literal_start] = ACTIONS(2822), - [sym_float_literal] = ACTIONS(2822), + [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_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_safe] = 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(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [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(728)] = { [sym_line_comment] = STATE(728), [sym_block_comment] = STATE(728), - [ts_builtin_sym_end] = ACTIONS(2826), - [sym_identifier] = ACTIONS(2828), - [anon_sym_SEMI] = ACTIONS(2826), - [anon_sym_macro_rules_BANG] = ACTIONS(2826), - [anon_sym_LPAREN] = ACTIONS(2826), - [anon_sym_LBRACK] = ACTIONS(2826), - [anon_sym_LBRACE] = ACTIONS(2826), - [anon_sym_RBRACE] = ACTIONS(2826), - [anon_sym_STAR] = ACTIONS(2826), - [anon_sym_u8] = ACTIONS(2828), - [anon_sym_i8] = ACTIONS(2828), - [anon_sym_u16] = ACTIONS(2828), - [anon_sym_i16] = ACTIONS(2828), - [anon_sym_u32] = ACTIONS(2828), - [anon_sym_i32] = ACTIONS(2828), - [anon_sym_u64] = ACTIONS(2828), - [anon_sym_i64] = ACTIONS(2828), - [anon_sym_u128] = ACTIONS(2828), - [anon_sym_i128] = ACTIONS(2828), - [anon_sym_isize] = ACTIONS(2828), - [anon_sym_usize] = ACTIONS(2828), - [anon_sym_f32] = ACTIONS(2828), - [anon_sym_f64] = ACTIONS(2828), - [anon_sym_bool] = ACTIONS(2828), - [anon_sym_str] = ACTIONS(2828), - [anon_sym_char] = ACTIONS(2828), - [anon_sym_DASH] = ACTIONS(2826), - [anon_sym_BANG] = ACTIONS(2826), - [anon_sym_AMP] = ACTIONS(2826), - [anon_sym_PIPE] = ACTIONS(2826), - [anon_sym_LT] = ACTIONS(2826), - [anon_sym_DOT_DOT] = ACTIONS(2826), - [anon_sym_COLON_COLON] = ACTIONS(2826), - [anon_sym_POUND] = ACTIONS(2826), - [anon_sym_SQUOTE] = ACTIONS(2828), - [anon_sym_async] = ACTIONS(2828), - [anon_sym_break] = ACTIONS(2828), - [anon_sym_const] = ACTIONS(2828), - [anon_sym_continue] = ACTIONS(2828), - [anon_sym_default] = ACTIONS(2828), - [anon_sym_enum] = ACTIONS(2828), - [anon_sym_fn] = ACTIONS(2828), - [anon_sym_for] = ACTIONS(2828), - [anon_sym_gen] = ACTIONS(2828), - [anon_sym_if] = ACTIONS(2828), - [anon_sym_impl] = ACTIONS(2828), - [anon_sym_let] = ACTIONS(2828), - [anon_sym_loop] = ACTIONS(2828), - [anon_sym_match] = ACTIONS(2828), - [anon_sym_mod] = ACTIONS(2828), - [anon_sym_pub] = ACTIONS(2828), - [anon_sym_return] = ACTIONS(2828), - [anon_sym_static] = ACTIONS(2828), - [anon_sym_struct] = ACTIONS(2828), - [anon_sym_trait] = ACTIONS(2828), - [anon_sym_type] = ACTIONS(2828), - [anon_sym_union] = ACTIONS(2828), - [anon_sym_unsafe] = ACTIONS(2828), - [anon_sym_use] = ACTIONS(2828), - [anon_sym_while] = ACTIONS(2828), - [anon_sym_extern] = ACTIONS(2828), - [anon_sym_yield] = ACTIONS(2828), - [anon_sym_move] = ACTIONS(2828), - [anon_sym_try] = ACTIONS(2828), - [sym_integer_literal] = ACTIONS(2826), - [aux_sym_string_literal_token1] = ACTIONS(2826), - [sym_char_literal] = ACTIONS(2826), - [anon_sym_true] = ACTIONS(2828), - [anon_sym_false] = ACTIONS(2828), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2828), - [sym_super] = ACTIONS(2828), - [sym_crate] = ACTIONS(2828), - [sym_metavariable] = ACTIONS(2826), - [sym__raw_string_literal_start] = ACTIONS(2826), - [sym_float_literal] = ACTIONS(2826), + [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_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_safe] = 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(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [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(729)] = { [sym_line_comment] = STATE(729), [sym_block_comment] = STATE(729), - [ts_builtin_sym_end] = ACTIONS(2830), - [sym_identifier] = ACTIONS(2832), - [anon_sym_SEMI] = ACTIONS(2830), - [anon_sym_macro_rules_BANG] = ACTIONS(2830), - [anon_sym_LPAREN] = ACTIONS(2830), - [anon_sym_LBRACK] = ACTIONS(2830), - [anon_sym_LBRACE] = ACTIONS(2830), - [anon_sym_RBRACE] = ACTIONS(2830), - [anon_sym_STAR] = ACTIONS(2830), - [anon_sym_u8] = ACTIONS(2832), - [anon_sym_i8] = ACTIONS(2832), - [anon_sym_u16] = ACTIONS(2832), - [anon_sym_i16] = ACTIONS(2832), - [anon_sym_u32] = ACTIONS(2832), - [anon_sym_i32] = ACTIONS(2832), - [anon_sym_u64] = ACTIONS(2832), - [anon_sym_i64] = ACTIONS(2832), - [anon_sym_u128] = ACTIONS(2832), - [anon_sym_i128] = ACTIONS(2832), - [anon_sym_isize] = ACTIONS(2832), - [anon_sym_usize] = ACTIONS(2832), - [anon_sym_f32] = ACTIONS(2832), - [anon_sym_f64] = ACTIONS(2832), - [anon_sym_bool] = ACTIONS(2832), - [anon_sym_str] = ACTIONS(2832), - [anon_sym_char] = ACTIONS(2832), - [anon_sym_DASH] = ACTIONS(2830), - [anon_sym_BANG] = ACTIONS(2830), - [anon_sym_AMP] = ACTIONS(2830), - [anon_sym_PIPE] = ACTIONS(2830), - [anon_sym_LT] = ACTIONS(2830), - [anon_sym_DOT_DOT] = ACTIONS(2830), - [anon_sym_COLON_COLON] = ACTIONS(2830), - [anon_sym_POUND] = ACTIONS(2830), - [anon_sym_SQUOTE] = ACTIONS(2832), - [anon_sym_async] = ACTIONS(2832), - [anon_sym_break] = ACTIONS(2832), - [anon_sym_const] = ACTIONS(2832), - [anon_sym_continue] = ACTIONS(2832), - [anon_sym_default] = ACTIONS(2832), - [anon_sym_enum] = ACTIONS(2832), - [anon_sym_fn] = ACTIONS(2832), - [anon_sym_for] = ACTIONS(2832), - [anon_sym_gen] = ACTIONS(2832), - [anon_sym_if] = ACTIONS(2832), - [anon_sym_impl] = ACTIONS(2832), - [anon_sym_let] = ACTIONS(2832), - [anon_sym_loop] = ACTIONS(2832), - [anon_sym_match] = ACTIONS(2832), - [anon_sym_mod] = ACTIONS(2832), - [anon_sym_pub] = ACTIONS(2832), - [anon_sym_return] = ACTIONS(2832), - [anon_sym_static] = ACTIONS(2832), - [anon_sym_struct] = ACTIONS(2832), - [anon_sym_trait] = ACTIONS(2832), - [anon_sym_type] = ACTIONS(2832), - [anon_sym_union] = ACTIONS(2832), - [anon_sym_unsafe] = ACTIONS(2832), - [anon_sym_use] = ACTIONS(2832), - [anon_sym_while] = ACTIONS(2832), - [anon_sym_extern] = ACTIONS(2832), - [anon_sym_yield] = ACTIONS(2832), - [anon_sym_move] = ACTIONS(2832), - [anon_sym_try] = ACTIONS(2832), - [sym_integer_literal] = ACTIONS(2830), - [aux_sym_string_literal_token1] = ACTIONS(2830), - [sym_char_literal] = ACTIONS(2830), - [anon_sym_true] = ACTIONS(2832), - [anon_sym_false] = ACTIONS(2832), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2832), - [sym_super] = ACTIONS(2832), - [sym_crate] = ACTIONS(2832), - [sym_metavariable] = ACTIONS(2830), - [sym__raw_string_literal_start] = ACTIONS(2830), - [sym_float_literal] = ACTIONS(2830), + [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_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_safe] = 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(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [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(730)] = { [sym_line_comment] = STATE(730), [sym_block_comment] = STATE(730), - [ts_builtin_sym_end] = ACTIONS(2834), - [sym_identifier] = ACTIONS(2836), - [anon_sym_SEMI] = ACTIONS(2834), - [anon_sym_macro_rules_BANG] = ACTIONS(2834), - [anon_sym_LPAREN] = ACTIONS(2834), - [anon_sym_LBRACK] = ACTIONS(2834), - [anon_sym_LBRACE] = ACTIONS(2834), - [anon_sym_RBRACE] = ACTIONS(2834), - [anon_sym_STAR] = ACTIONS(2834), - [anon_sym_u8] = ACTIONS(2836), - [anon_sym_i8] = ACTIONS(2836), - [anon_sym_u16] = ACTIONS(2836), - [anon_sym_i16] = ACTIONS(2836), - [anon_sym_u32] = ACTIONS(2836), - [anon_sym_i32] = ACTIONS(2836), - [anon_sym_u64] = ACTIONS(2836), - [anon_sym_i64] = ACTIONS(2836), - [anon_sym_u128] = ACTIONS(2836), - [anon_sym_i128] = ACTIONS(2836), - [anon_sym_isize] = ACTIONS(2836), - [anon_sym_usize] = ACTIONS(2836), - [anon_sym_f32] = ACTIONS(2836), - [anon_sym_f64] = ACTIONS(2836), - [anon_sym_bool] = ACTIONS(2836), - [anon_sym_str] = ACTIONS(2836), - [anon_sym_char] = ACTIONS(2836), - [anon_sym_DASH] = ACTIONS(2834), - [anon_sym_BANG] = ACTIONS(2834), - [anon_sym_AMP] = ACTIONS(2834), - [anon_sym_PIPE] = ACTIONS(2834), - [anon_sym_LT] = ACTIONS(2834), - [anon_sym_DOT_DOT] = ACTIONS(2834), - [anon_sym_COLON_COLON] = ACTIONS(2834), - [anon_sym_POUND] = ACTIONS(2834), - [anon_sym_SQUOTE] = ACTIONS(2836), - [anon_sym_async] = ACTIONS(2836), - [anon_sym_break] = ACTIONS(2836), - [anon_sym_const] = ACTIONS(2836), - [anon_sym_continue] = ACTIONS(2836), - [anon_sym_default] = ACTIONS(2836), - [anon_sym_enum] = ACTIONS(2836), - [anon_sym_fn] = ACTIONS(2836), - [anon_sym_for] = ACTIONS(2836), - [anon_sym_gen] = ACTIONS(2836), - [anon_sym_if] = ACTIONS(2836), - [anon_sym_impl] = ACTIONS(2836), - [anon_sym_let] = ACTIONS(2836), - [anon_sym_loop] = ACTIONS(2836), - [anon_sym_match] = ACTIONS(2836), - [anon_sym_mod] = ACTIONS(2836), - [anon_sym_pub] = ACTIONS(2836), - [anon_sym_return] = ACTIONS(2836), - [anon_sym_static] = ACTIONS(2836), - [anon_sym_struct] = ACTIONS(2836), - [anon_sym_trait] = ACTIONS(2836), - [anon_sym_type] = ACTIONS(2836), - [anon_sym_union] = ACTIONS(2836), - [anon_sym_unsafe] = ACTIONS(2836), - [anon_sym_use] = ACTIONS(2836), - [anon_sym_while] = ACTIONS(2836), - [anon_sym_extern] = ACTIONS(2836), - [anon_sym_yield] = ACTIONS(2836), - [anon_sym_move] = ACTIONS(2836), - [anon_sym_try] = ACTIONS(2836), - [sym_integer_literal] = ACTIONS(2834), - [aux_sym_string_literal_token1] = ACTIONS(2834), - [sym_char_literal] = ACTIONS(2834), - [anon_sym_true] = ACTIONS(2836), - [anon_sym_false] = ACTIONS(2836), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2836), - [sym_super] = ACTIONS(2836), - [sym_crate] = ACTIONS(2836), - [sym_metavariable] = ACTIONS(2834), - [sym__raw_string_literal_start] = ACTIONS(2834), - [sym_float_literal] = ACTIONS(2834), + [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_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_safe] = 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(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [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(731)] = { [sym_line_comment] = STATE(731), [sym_block_comment] = STATE(731), - [ts_builtin_sym_end] = ACTIONS(2838), - [sym_identifier] = ACTIONS(2840), - [anon_sym_SEMI] = ACTIONS(2838), - [anon_sym_macro_rules_BANG] = ACTIONS(2838), - [anon_sym_LPAREN] = ACTIONS(2838), - [anon_sym_LBRACK] = ACTIONS(2838), - [anon_sym_LBRACE] = ACTIONS(2838), - [anon_sym_RBRACE] = ACTIONS(2838), - [anon_sym_STAR] = ACTIONS(2838), - [anon_sym_u8] = ACTIONS(2840), - [anon_sym_i8] = ACTIONS(2840), - [anon_sym_u16] = ACTIONS(2840), - [anon_sym_i16] = ACTIONS(2840), - [anon_sym_u32] = ACTIONS(2840), - [anon_sym_i32] = ACTIONS(2840), - [anon_sym_u64] = ACTIONS(2840), - [anon_sym_i64] = ACTIONS(2840), - [anon_sym_u128] = ACTIONS(2840), - [anon_sym_i128] = ACTIONS(2840), - [anon_sym_isize] = ACTIONS(2840), - [anon_sym_usize] = ACTIONS(2840), - [anon_sym_f32] = ACTIONS(2840), - [anon_sym_f64] = ACTIONS(2840), - [anon_sym_bool] = ACTIONS(2840), - [anon_sym_str] = ACTIONS(2840), - [anon_sym_char] = ACTIONS(2840), - [anon_sym_DASH] = ACTIONS(2838), - [anon_sym_BANG] = ACTIONS(2838), - [anon_sym_AMP] = ACTIONS(2838), - [anon_sym_PIPE] = ACTIONS(2838), - [anon_sym_LT] = ACTIONS(2838), - [anon_sym_DOT_DOT] = ACTIONS(2838), - [anon_sym_COLON_COLON] = ACTIONS(2838), - [anon_sym_POUND] = ACTIONS(2838), - [anon_sym_SQUOTE] = ACTIONS(2840), - [anon_sym_async] = ACTIONS(2840), - [anon_sym_break] = ACTIONS(2840), - [anon_sym_const] = ACTIONS(2840), - [anon_sym_continue] = ACTIONS(2840), - [anon_sym_default] = ACTIONS(2840), - [anon_sym_enum] = ACTIONS(2840), - [anon_sym_fn] = ACTIONS(2840), - [anon_sym_for] = ACTIONS(2840), - [anon_sym_gen] = ACTIONS(2840), - [anon_sym_if] = ACTIONS(2840), - [anon_sym_impl] = ACTIONS(2840), - [anon_sym_let] = ACTIONS(2840), - [anon_sym_loop] = ACTIONS(2840), - [anon_sym_match] = ACTIONS(2840), - [anon_sym_mod] = ACTIONS(2840), - [anon_sym_pub] = ACTIONS(2840), - [anon_sym_return] = ACTIONS(2840), - [anon_sym_static] = ACTIONS(2840), - [anon_sym_struct] = ACTIONS(2840), - [anon_sym_trait] = ACTIONS(2840), - [anon_sym_type] = ACTIONS(2840), - [anon_sym_union] = ACTIONS(2840), - [anon_sym_unsafe] = ACTIONS(2840), - [anon_sym_use] = ACTIONS(2840), - [anon_sym_while] = ACTIONS(2840), - [anon_sym_extern] = ACTIONS(2840), - [anon_sym_yield] = ACTIONS(2840), - [anon_sym_move] = ACTIONS(2840), - [anon_sym_try] = ACTIONS(2840), - [sym_integer_literal] = ACTIONS(2838), - [aux_sym_string_literal_token1] = ACTIONS(2838), - [sym_char_literal] = ACTIONS(2838), - [anon_sym_true] = ACTIONS(2840), - [anon_sym_false] = ACTIONS(2840), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2840), - [sym_super] = ACTIONS(2840), - [sym_crate] = ACTIONS(2840), - [sym_metavariable] = ACTIONS(2838), - [sym__raw_string_literal_start] = ACTIONS(2838), - [sym_float_literal] = ACTIONS(2838), + [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_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_safe] = 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(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [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(732)] = { [sym_line_comment] = STATE(732), [sym_block_comment] = STATE(732), - [ts_builtin_sym_end] = ACTIONS(2842), - [sym_identifier] = ACTIONS(2844), - [anon_sym_SEMI] = ACTIONS(2842), - [anon_sym_macro_rules_BANG] = ACTIONS(2842), - [anon_sym_LPAREN] = ACTIONS(2842), - [anon_sym_LBRACK] = ACTIONS(2842), - [anon_sym_LBRACE] = ACTIONS(2842), - [anon_sym_RBRACE] = ACTIONS(2842), - [anon_sym_STAR] = ACTIONS(2842), - [anon_sym_u8] = ACTIONS(2844), - [anon_sym_i8] = ACTIONS(2844), - [anon_sym_u16] = ACTIONS(2844), - [anon_sym_i16] = ACTIONS(2844), - [anon_sym_u32] = ACTIONS(2844), - [anon_sym_i32] = ACTIONS(2844), - [anon_sym_u64] = ACTIONS(2844), - [anon_sym_i64] = ACTIONS(2844), - [anon_sym_u128] = ACTIONS(2844), - [anon_sym_i128] = ACTIONS(2844), - [anon_sym_isize] = ACTIONS(2844), - [anon_sym_usize] = ACTIONS(2844), - [anon_sym_f32] = ACTIONS(2844), - [anon_sym_f64] = ACTIONS(2844), - [anon_sym_bool] = ACTIONS(2844), - [anon_sym_str] = ACTIONS(2844), - [anon_sym_char] = ACTIONS(2844), - [anon_sym_DASH] = ACTIONS(2842), - [anon_sym_BANG] = ACTIONS(2842), - [anon_sym_AMP] = ACTIONS(2842), - [anon_sym_PIPE] = ACTIONS(2842), - [anon_sym_LT] = ACTIONS(2842), - [anon_sym_DOT_DOT] = ACTIONS(2842), - [anon_sym_COLON_COLON] = ACTIONS(2842), - [anon_sym_POUND] = ACTIONS(2842), - [anon_sym_SQUOTE] = ACTIONS(2844), - [anon_sym_async] = ACTIONS(2844), - [anon_sym_break] = ACTIONS(2844), - [anon_sym_const] = ACTIONS(2844), - [anon_sym_continue] = ACTIONS(2844), - [anon_sym_default] = ACTIONS(2844), - [anon_sym_enum] = ACTIONS(2844), - [anon_sym_fn] = ACTIONS(2844), - [anon_sym_for] = ACTIONS(2844), - [anon_sym_gen] = ACTIONS(2844), - [anon_sym_if] = ACTIONS(2844), - [anon_sym_impl] = ACTIONS(2844), - [anon_sym_let] = ACTIONS(2844), - [anon_sym_loop] = ACTIONS(2844), - [anon_sym_match] = ACTIONS(2844), - [anon_sym_mod] = ACTIONS(2844), - [anon_sym_pub] = ACTIONS(2844), - [anon_sym_return] = ACTIONS(2844), - [anon_sym_static] = ACTIONS(2844), - [anon_sym_struct] = ACTIONS(2844), - [anon_sym_trait] = ACTIONS(2844), - [anon_sym_type] = ACTIONS(2844), - [anon_sym_union] = ACTIONS(2844), - [anon_sym_unsafe] = ACTIONS(2844), - [anon_sym_use] = ACTIONS(2844), - [anon_sym_while] = ACTIONS(2844), - [anon_sym_extern] = ACTIONS(2844), - [anon_sym_yield] = ACTIONS(2844), - [anon_sym_move] = ACTIONS(2844), - [anon_sym_try] = ACTIONS(2844), - [sym_integer_literal] = ACTIONS(2842), - [aux_sym_string_literal_token1] = ACTIONS(2842), - [sym_char_literal] = ACTIONS(2842), - [anon_sym_true] = ACTIONS(2844), - [anon_sym_false] = ACTIONS(2844), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2844), - [sym_super] = ACTIONS(2844), - [sym_crate] = ACTIONS(2844), - [sym_metavariable] = ACTIONS(2842), - [sym__raw_string_literal_start] = ACTIONS(2842), - [sym_float_literal] = ACTIONS(2842), + [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_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_safe] = 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(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [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(733)] = { [sym_line_comment] = STATE(733), [sym_block_comment] = STATE(733), - [ts_builtin_sym_end] = ACTIONS(2846), - [sym_identifier] = ACTIONS(2848), - [anon_sym_SEMI] = ACTIONS(2846), - [anon_sym_macro_rules_BANG] = ACTIONS(2846), - [anon_sym_LPAREN] = ACTIONS(2846), - [anon_sym_LBRACK] = ACTIONS(2846), - [anon_sym_LBRACE] = ACTIONS(2846), - [anon_sym_RBRACE] = ACTIONS(2846), - [anon_sym_STAR] = ACTIONS(2846), - [anon_sym_u8] = ACTIONS(2848), - [anon_sym_i8] = ACTIONS(2848), - [anon_sym_u16] = ACTIONS(2848), - [anon_sym_i16] = ACTIONS(2848), - [anon_sym_u32] = ACTIONS(2848), - [anon_sym_i32] = ACTIONS(2848), - [anon_sym_u64] = ACTIONS(2848), - [anon_sym_i64] = ACTIONS(2848), - [anon_sym_u128] = ACTIONS(2848), - [anon_sym_i128] = ACTIONS(2848), - [anon_sym_isize] = ACTIONS(2848), - [anon_sym_usize] = ACTIONS(2848), - [anon_sym_f32] = ACTIONS(2848), - [anon_sym_f64] = ACTIONS(2848), - [anon_sym_bool] = ACTIONS(2848), - [anon_sym_str] = ACTIONS(2848), - [anon_sym_char] = ACTIONS(2848), - [anon_sym_DASH] = ACTIONS(2846), - [anon_sym_BANG] = ACTIONS(2846), - [anon_sym_AMP] = ACTIONS(2846), - [anon_sym_PIPE] = ACTIONS(2846), - [anon_sym_LT] = ACTIONS(2846), - [anon_sym_DOT_DOT] = ACTIONS(2846), - [anon_sym_COLON_COLON] = ACTIONS(2846), - [anon_sym_POUND] = ACTIONS(2846), - [anon_sym_SQUOTE] = ACTIONS(2848), - [anon_sym_async] = ACTIONS(2848), - [anon_sym_break] = ACTIONS(2848), - [anon_sym_const] = ACTIONS(2848), - [anon_sym_continue] = ACTIONS(2848), - [anon_sym_default] = ACTIONS(2848), - [anon_sym_enum] = ACTIONS(2848), - [anon_sym_fn] = ACTIONS(2848), - [anon_sym_for] = ACTIONS(2848), - [anon_sym_gen] = ACTIONS(2848), - [anon_sym_if] = ACTIONS(2848), - [anon_sym_impl] = ACTIONS(2848), - [anon_sym_let] = ACTIONS(2848), - [anon_sym_loop] = ACTIONS(2848), - [anon_sym_match] = ACTIONS(2848), - [anon_sym_mod] = ACTIONS(2848), - [anon_sym_pub] = ACTIONS(2848), - [anon_sym_return] = ACTIONS(2848), - [anon_sym_static] = ACTIONS(2848), - [anon_sym_struct] = ACTIONS(2848), - [anon_sym_trait] = ACTIONS(2848), - [anon_sym_type] = ACTIONS(2848), - [anon_sym_union] = ACTIONS(2848), - [anon_sym_unsafe] = ACTIONS(2848), - [anon_sym_use] = ACTIONS(2848), - [anon_sym_while] = ACTIONS(2848), - [anon_sym_extern] = ACTIONS(2848), - [anon_sym_yield] = ACTIONS(2848), - [anon_sym_move] = ACTIONS(2848), - [anon_sym_try] = ACTIONS(2848), - [sym_integer_literal] = ACTIONS(2846), - [aux_sym_string_literal_token1] = ACTIONS(2846), - [sym_char_literal] = ACTIONS(2846), - [anon_sym_true] = ACTIONS(2848), - [anon_sym_false] = ACTIONS(2848), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2848), - [sym_super] = ACTIONS(2848), - [sym_crate] = ACTIONS(2848), - [sym_metavariable] = ACTIONS(2846), - [sym__raw_string_literal_start] = ACTIONS(2846), - [sym_float_literal] = ACTIONS(2846), + [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_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_safe] = 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(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [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(734)] = { [sym_line_comment] = STATE(734), [sym_block_comment] = STATE(734), - [ts_builtin_sym_end] = ACTIONS(2850), - [sym_identifier] = ACTIONS(2852), - [anon_sym_SEMI] = ACTIONS(2850), - [anon_sym_macro_rules_BANG] = ACTIONS(2850), - [anon_sym_LPAREN] = ACTIONS(2850), - [anon_sym_LBRACK] = ACTIONS(2850), - [anon_sym_LBRACE] = ACTIONS(2850), - [anon_sym_RBRACE] = ACTIONS(2850), - [anon_sym_STAR] = ACTIONS(2850), - [anon_sym_u8] = ACTIONS(2852), - [anon_sym_i8] = ACTIONS(2852), - [anon_sym_u16] = ACTIONS(2852), - [anon_sym_i16] = ACTIONS(2852), - [anon_sym_u32] = ACTIONS(2852), - [anon_sym_i32] = ACTIONS(2852), - [anon_sym_u64] = ACTIONS(2852), - [anon_sym_i64] = ACTIONS(2852), - [anon_sym_u128] = ACTIONS(2852), - [anon_sym_i128] = ACTIONS(2852), - [anon_sym_isize] = ACTIONS(2852), - [anon_sym_usize] = ACTIONS(2852), - [anon_sym_f32] = ACTIONS(2852), - [anon_sym_f64] = ACTIONS(2852), - [anon_sym_bool] = ACTIONS(2852), - [anon_sym_str] = ACTIONS(2852), - [anon_sym_char] = ACTIONS(2852), - [anon_sym_DASH] = ACTIONS(2850), - [anon_sym_BANG] = ACTIONS(2850), - [anon_sym_AMP] = ACTIONS(2850), - [anon_sym_PIPE] = ACTIONS(2850), - [anon_sym_LT] = ACTIONS(2850), - [anon_sym_DOT_DOT] = ACTIONS(2850), - [anon_sym_COLON_COLON] = ACTIONS(2850), - [anon_sym_POUND] = ACTIONS(2850), - [anon_sym_SQUOTE] = ACTIONS(2852), - [anon_sym_async] = ACTIONS(2852), - [anon_sym_break] = ACTIONS(2852), - [anon_sym_const] = ACTIONS(2852), - [anon_sym_continue] = ACTIONS(2852), - [anon_sym_default] = ACTIONS(2852), - [anon_sym_enum] = ACTIONS(2852), - [anon_sym_fn] = ACTIONS(2852), - [anon_sym_for] = ACTIONS(2852), - [anon_sym_gen] = ACTIONS(2852), - [anon_sym_if] = ACTIONS(2852), - [anon_sym_impl] = ACTIONS(2852), - [anon_sym_let] = ACTIONS(2852), - [anon_sym_loop] = ACTIONS(2852), - [anon_sym_match] = ACTIONS(2852), - [anon_sym_mod] = ACTIONS(2852), - [anon_sym_pub] = ACTIONS(2852), - [anon_sym_return] = ACTIONS(2852), - [anon_sym_static] = ACTIONS(2852), - [anon_sym_struct] = ACTIONS(2852), - [anon_sym_trait] = ACTIONS(2852), - [anon_sym_type] = ACTIONS(2852), - [anon_sym_union] = ACTIONS(2852), - [anon_sym_unsafe] = ACTIONS(2852), - [anon_sym_use] = ACTIONS(2852), - [anon_sym_while] = ACTIONS(2852), - [anon_sym_extern] = ACTIONS(2852), - [anon_sym_yield] = ACTIONS(2852), - [anon_sym_move] = ACTIONS(2852), - [anon_sym_try] = ACTIONS(2852), - [sym_integer_literal] = ACTIONS(2850), - [aux_sym_string_literal_token1] = ACTIONS(2850), - [sym_char_literal] = ACTIONS(2850), - [anon_sym_true] = ACTIONS(2852), - [anon_sym_false] = ACTIONS(2852), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2852), - [sym_super] = ACTIONS(2852), - [sym_crate] = ACTIONS(2852), - [sym_metavariable] = ACTIONS(2850), - [sym__raw_string_literal_start] = ACTIONS(2850), - [sym_float_literal] = ACTIONS(2850), + [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_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_safe] = 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(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [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(735)] = { [sym_line_comment] = STATE(735), [sym_block_comment] = STATE(735), - [ts_builtin_sym_end] = ACTIONS(2854), - [sym_identifier] = ACTIONS(2856), - [anon_sym_SEMI] = ACTIONS(2854), - [anon_sym_macro_rules_BANG] = ACTIONS(2854), - [anon_sym_LPAREN] = ACTIONS(2854), - [anon_sym_LBRACK] = ACTIONS(2854), - [anon_sym_LBRACE] = ACTIONS(2854), - [anon_sym_RBRACE] = ACTIONS(2854), - [anon_sym_STAR] = ACTIONS(2854), - [anon_sym_u8] = ACTIONS(2856), - [anon_sym_i8] = ACTIONS(2856), - [anon_sym_u16] = ACTIONS(2856), - [anon_sym_i16] = ACTIONS(2856), - [anon_sym_u32] = ACTIONS(2856), - [anon_sym_i32] = ACTIONS(2856), - [anon_sym_u64] = ACTIONS(2856), - [anon_sym_i64] = ACTIONS(2856), - [anon_sym_u128] = ACTIONS(2856), - [anon_sym_i128] = ACTIONS(2856), - [anon_sym_isize] = ACTIONS(2856), - [anon_sym_usize] = ACTIONS(2856), - [anon_sym_f32] = ACTIONS(2856), - [anon_sym_f64] = ACTIONS(2856), - [anon_sym_bool] = ACTIONS(2856), - [anon_sym_str] = ACTIONS(2856), - [anon_sym_char] = ACTIONS(2856), - [anon_sym_DASH] = ACTIONS(2854), - [anon_sym_BANG] = ACTIONS(2854), - [anon_sym_AMP] = ACTIONS(2854), - [anon_sym_PIPE] = ACTIONS(2854), - [anon_sym_LT] = ACTIONS(2854), - [anon_sym_DOT_DOT] = ACTIONS(2854), - [anon_sym_COLON_COLON] = ACTIONS(2854), - [anon_sym_POUND] = ACTIONS(2854), - [anon_sym_SQUOTE] = ACTIONS(2856), - [anon_sym_async] = ACTIONS(2856), - [anon_sym_break] = ACTIONS(2856), - [anon_sym_const] = ACTIONS(2856), - [anon_sym_continue] = ACTIONS(2856), - [anon_sym_default] = ACTIONS(2856), - [anon_sym_enum] = ACTIONS(2856), - [anon_sym_fn] = ACTIONS(2856), - [anon_sym_for] = ACTIONS(2856), - [anon_sym_gen] = ACTIONS(2856), - [anon_sym_if] = ACTIONS(2856), - [anon_sym_impl] = ACTIONS(2856), - [anon_sym_let] = ACTIONS(2856), - [anon_sym_loop] = ACTIONS(2856), - [anon_sym_match] = ACTIONS(2856), - [anon_sym_mod] = ACTIONS(2856), - [anon_sym_pub] = ACTIONS(2856), - [anon_sym_return] = ACTIONS(2856), - [anon_sym_static] = ACTIONS(2856), - [anon_sym_struct] = ACTIONS(2856), - [anon_sym_trait] = ACTIONS(2856), - [anon_sym_type] = ACTIONS(2856), - [anon_sym_union] = ACTIONS(2856), - [anon_sym_unsafe] = ACTIONS(2856), - [anon_sym_use] = ACTIONS(2856), - [anon_sym_while] = ACTIONS(2856), - [anon_sym_extern] = ACTIONS(2856), - [anon_sym_yield] = ACTIONS(2856), - [anon_sym_move] = ACTIONS(2856), - [anon_sym_try] = ACTIONS(2856), - [sym_integer_literal] = ACTIONS(2854), - [aux_sym_string_literal_token1] = ACTIONS(2854), - [sym_char_literal] = ACTIONS(2854), - [anon_sym_true] = ACTIONS(2856), - [anon_sym_false] = ACTIONS(2856), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2856), - [sym_super] = ACTIONS(2856), - [sym_crate] = ACTIONS(2856), - [sym_metavariable] = ACTIONS(2854), - [sym__raw_string_literal_start] = ACTIONS(2854), - [sym_float_literal] = ACTIONS(2854), + [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_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_safe] = 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(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [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(736)] = { [sym_line_comment] = STATE(736), [sym_block_comment] = STATE(736), - [ts_builtin_sym_end] = ACTIONS(2858), - [sym_identifier] = ACTIONS(2860), - [anon_sym_SEMI] = ACTIONS(2858), - [anon_sym_macro_rules_BANG] = ACTIONS(2858), - [anon_sym_LPAREN] = ACTIONS(2858), - [anon_sym_LBRACK] = ACTIONS(2858), - [anon_sym_LBRACE] = ACTIONS(2858), - [anon_sym_RBRACE] = ACTIONS(2858), - [anon_sym_STAR] = ACTIONS(2858), - [anon_sym_u8] = ACTIONS(2860), - [anon_sym_i8] = ACTIONS(2860), - [anon_sym_u16] = ACTIONS(2860), - [anon_sym_i16] = ACTIONS(2860), - [anon_sym_u32] = ACTIONS(2860), - [anon_sym_i32] = ACTIONS(2860), - [anon_sym_u64] = ACTIONS(2860), - [anon_sym_i64] = ACTIONS(2860), - [anon_sym_u128] = ACTIONS(2860), - [anon_sym_i128] = ACTIONS(2860), - [anon_sym_isize] = ACTIONS(2860), - [anon_sym_usize] = ACTIONS(2860), - [anon_sym_f32] = ACTIONS(2860), - [anon_sym_f64] = ACTIONS(2860), - [anon_sym_bool] = ACTIONS(2860), - [anon_sym_str] = ACTIONS(2860), - [anon_sym_char] = ACTIONS(2860), - [anon_sym_DASH] = ACTIONS(2858), - [anon_sym_BANG] = ACTIONS(2858), - [anon_sym_AMP] = ACTIONS(2858), - [anon_sym_PIPE] = ACTIONS(2858), - [anon_sym_LT] = ACTIONS(2858), - [anon_sym_DOT_DOT] = ACTIONS(2858), - [anon_sym_COLON_COLON] = ACTIONS(2858), - [anon_sym_POUND] = ACTIONS(2858), - [anon_sym_SQUOTE] = ACTIONS(2860), - [anon_sym_async] = ACTIONS(2860), - [anon_sym_break] = ACTIONS(2860), - [anon_sym_const] = ACTIONS(2860), - [anon_sym_continue] = ACTIONS(2860), - [anon_sym_default] = ACTIONS(2860), - [anon_sym_enum] = ACTIONS(2860), - [anon_sym_fn] = ACTIONS(2860), - [anon_sym_for] = ACTIONS(2860), - [anon_sym_gen] = ACTIONS(2860), - [anon_sym_if] = ACTIONS(2860), - [anon_sym_impl] = ACTIONS(2860), - [anon_sym_let] = ACTIONS(2860), - [anon_sym_loop] = ACTIONS(2860), - [anon_sym_match] = ACTIONS(2860), - [anon_sym_mod] = ACTIONS(2860), - [anon_sym_pub] = ACTIONS(2860), - [anon_sym_return] = ACTIONS(2860), - [anon_sym_static] = ACTIONS(2860), - [anon_sym_struct] = ACTIONS(2860), - [anon_sym_trait] = ACTIONS(2860), - [anon_sym_type] = ACTIONS(2860), - [anon_sym_union] = ACTIONS(2860), - [anon_sym_unsafe] = ACTIONS(2860), - [anon_sym_use] = ACTIONS(2860), - [anon_sym_while] = ACTIONS(2860), - [anon_sym_extern] = ACTIONS(2860), - [anon_sym_yield] = ACTIONS(2860), - [anon_sym_move] = ACTIONS(2860), - [anon_sym_try] = ACTIONS(2860), - [sym_integer_literal] = ACTIONS(2858), - [aux_sym_string_literal_token1] = ACTIONS(2858), - [sym_char_literal] = ACTIONS(2858), - [anon_sym_true] = ACTIONS(2860), - [anon_sym_false] = ACTIONS(2860), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2860), - [sym_super] = ACTIONS(2860), - [sym_crate] = ACTIONS(2860), - [sym_metavariable] = ACTIONS(2858), - [sym__raw_string_literal_start] = ACTIONS(2858), - [sym_float_literal] = ACTIONS(2858), + [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_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_safe] = 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(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [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(737)] = { [sym_line_comment] = STATE(737), [sym_block_comment] = STATE(737), - [ts_builtin_sym_end] = ACTIONS(2862), - [sym_identifier] = ACTIONS(2864), - [anon_sym_SEMI] = ACTIONS(2862), - [anon_sym_macro_rules_BANG] = ACTIONS(2862), - [anon_sym_LPAREN] = ACTIONS(2862), - [anon_sym_LBRACK] = ACTIONS(2862), - [anon_sym_LBRACE] = ACTIONS(2862), - [anon_sym_RBRACE] = ACTIONS(2862), - [anon_sym_STAR] = ACTIONS(2862), - [anon_sym_u8] = ACTIONS(2864), - [anon_sym_i8] = ACTIONS(2864), - [anon_sym_u16] = ACTIONS(2864), - [anon_sym_i16] = ACTIONS(2864), - [anon_sym_u32] = ACTIONS(2864), - [anon_sym_i32] = ACTIONS(2864), - [anon_sym_u64] = ACTIONS(2864), - [anon_sym_i64] = ACTIONS(2864), - [anon_sym_u128] = ACTIONS(2864), - [anon_sym_i128] = ACTIONS(2864), - [anon_sym_isize] = ACTIONS(2864), - [anon_sym_usize] = ACTIONS(2864), - [anon_sym_f32] = ACTIONS(2864), - [anon_sym_f64] = ACTIONS(2864), - [anon_sym_bool] = ACTIONS(2864), - [anon_sym_str] = ACTIONS(2864), - [anon_sym_char] = ACTIONS(2864), - [anon_sym_DASH] = ACTIONS(2862), - [anon_sym_BANG] = ACTIONS(2862), - [anon_sym_AMP] = ACTIONS(2862), - [anon_sym_PIPE] = ACTIONS(2862), - [anon_sym_LT] = ACTIONS(2862), - [anon_sym_DOT_DOT] = ACTIONS(2862), - [anon_sym_COLON_COLON] = ACTIONS(2862), - [anon_sym_POUND] = ACTIONS(2862), - [anon_sym_SQUOTE] = ACTIONS(2864), - [anon_sym_async] = ACTIONS(2864), - [anon_sym_break] = ACTIONS(2864), - [anon_sym_const] = ACTIONS(2864), - [anon_sym_continue] = ACTIONS(2864), - [anon_sym_default] = ACTIONS(2864), - [anon_sym_enum] = ACTIONS(2864), - [anon_sym_fn] = ACTIONS(2864), - [anon_sym_for] = ACTIONS(2864), - [anon_sym_gen] = ACTIONS(2864), - [anon_sym_if] = ACTIONS(2864), - [anon_sym_impl] = ACTIONS(2864), - [anon_sym_let] = ACTIONS(2864), - [anon_sym_loop] = ACTIONS(2864), - [anon_sym_match] = ACTIONS(2864), - [anon_sym_mod] = ACTIONS(2864), - [anon_sym_pub] = ACTIONS(2864), - [anon_sym_return] = ACTIONS(2864), - [anon_sym_static] = ACTIONS(2864), - [anon_sym_struct] = ACTIONS(2864), - [anon_sym_trait] = ACTIONS(2864), - [anon_sym_type] = ACTIONS(2864), - [anon_sym_union] = ACTIONS(2864), - [anon_sym_unsafe] = ACTIONS(2864), - [anon_sym_use] = ACTIONS(2864), - [anon_sym_while] = ACTIONS(2864), - [anon_sym_extern] = ACTIONS(2864), - [anon_sym_yield] = ACTIONS(2864), - [anon_sym_move] = ACTIONS(2864), - [anon_sym_try] = ACTIONS(2864), - [sym_integer_literal] = ACTIONS(2862), - [aux_sym_string_literal_token1] = ACTIONS(2862), - [sym_char_literal] = ACTIONS(2862), - [anon_sym_true] = ACTIONS(2864), - [anon_sym_false] = ACTIONS(2864), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2864), - [sym_super] = ACTIONS(2864), - [sym_crate] = ACTIONS(2864), - [sym_metavariable] = ACTIONS(2862), - [sym__raw_string_literal_start] = ACTIONS(2862), - [sym_float_literal] = ACTIONS(2862), + [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_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_safe] = 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(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [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(738)] = { [sym_line_comment] = STATE(738), [sym_block_comment] = STATE(738), - [ts_builtin_sym_end] = ACTIONS(2866), - [sym_identifier] = ACTIONS(2868), - [anon_sym_SEMI] = ACTIONS(2866), - [anon_sym_macro_rules_BANG] = ACTIONS(2866), - [anon_sym_LPAREN] = ACTIONS(2866), - [anon_sym_LBRACK] = ACTIONS(2866), - [anon_sym_LBRACE] = ACTIONS(2866), - [anon_sym_RBRACE] = ACTIONS(2866), - [anon_sym_STAR] = ACTIONS(2866), - [anon_sym_u8] = ACTIONS(2868), - [anon_sym_i8] = ACTIONS(2868), - [anon_sym_u16] = ACTIONS(2868), - [anon_sym_i16] = ACTIONS(2868), - [anon_sym_u32] = ACTIONS(2868), - [anon_sym_i32] = ACTIONS(2868), - [anon_sym_u64] = ACTIONS(2868), - [anon_sym_i64] = ACTIONS(2868), - [anon_sym_u128] = ACTIONS(2868), - [anon_sym_i128] = ACTIONS(2868), - [anon_sym_isize] = ACTIONS(2868), - [anon_sym_usize] = ACTIONS(2868), - [anon_sym_f32] = ACTIONS(2868), - [anon_sym_f64] = ACTIONS(2868), - [anon_sym_bool] = ACTIONS(2868), - [anon_sym_str] = ACTIONS(2868), - [anon_sym_char] = ACTIONS(2868), - [anon_sym_DASH] = ACTIONS(2866), - [anon_sym_BANG] = ACTIONS(2866), - [anon_sym_AMP] = ACTIONS(2866), - [anon_sym_PIPE] = ACTIONS(2866), - [anon_sym_LT] = ACTIONS(2866), - [anon_sym_DOT_DOT] = ACTIONS(2866), - [anon_sym_COLON_COLON] = ACTIONS(2866), - [anon_sym_POUND] = ACTIONS(2866), - [anon_sym_SQUOTE] = ACTIONS(2868), - [anon_sym_async] = ACTIONS(2868), - [anon_sym_break] = ACTIONS(2868), - [anon_sym_const] = ACTIONS(2868), - [anon_sym_continue] = ACTIONS(2868), - [anon_sym_default] = ACTIONS(2868), - [anon_sym_enum] = ACTIONS(2868), - [anon_sym_fn] = ACTIONS(2868), - [anon_sym_for] = ACTIONS(2868), - [anon_sym_gen] = ACTIONS(2868), - [anon_sym_if] = ACTIONS(2868), - [anon_sym_impl] = ACTIONS(2868), - [anon_sym_let] = ACTIONS(2868), - [anon_sym_loop] = ACTIONS(2868), - [anon_sym_match] = ACTIONS(2868), - [anon_sym_mod] = ACTIONS(2868), - [anon_sym_pub] = ACTIONS(2868), - [anon_sym_return] = ACTIONS(2868), - [anon_sym_static] = ACTIONS(2868), - [anon_sym_struct] = ACTIONS(2868), - [anon_sym_trait] = ACTIONS(2868), - [anon_sym_type] = ACTIONS(2868), - [anon_sym_union] = ACTIONS(2868), - [anon_sym_unsafe] = ACTIONS(2868), - [anon_sym_use] = ACTIONS(2868), - [anon_sym_while] = ACTIONS(2868), - [anon_sym_extern] = ACTIONS(2868), - [anon_sym_yield] = ACTIONS(2868), - [anon_sym_move] = ACTIONS(2868), - [anon_sym_try] = ACTIONS(2868), - [sym_integer_literal] = ACTIONS(2866), - [aux_sym_string_literal_token1] = ACTIONS(2866), - [sym_char_literal] = ACTIONS(2866), - [anon_sym_true] = ACTIONS(2868), - [anon_sym_false] = ACTIONS(2868), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2868), - [sym_super] = ACTIONS(2868), - [sym_crate] = ACTIONS(2868), - [sym_metavariable] = ACTIONS(2866), - [sym__raw_string_literal_start] = ACTIONS(2866), - [sym_float_literal] = ACTIONS(2866), + [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_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_safe] = 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(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [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(739)] = { [sym_line_comment] = STATE(739), [sym_block_comment] = STATE(739), - [ts_builtin_sym_end] = ACTIONS(2870), - [sym_identifier] = ACTIONS(2872), - [anon_sym_SEMI] = ACTIONS(2870), - [anon_sym_macro_rules_BANG] = ACTIONS(2870), - [anon_sym_LPAREN] = ACTIONS(2870), - [anon_sym_LBRACK] = ACTIONS(2870), - [anon_sym_LBRACE] = ACTIONS(2870), - [anon_sym_RBRACE] = ACTIONS(2870), - [anon_sym_STAR] = ACTIONS(2870), - [anon_sym_u8] = ACTIONS(2872), - [anon_sym_i8] = ACTIONS(2872), - [anon_sym_u16] = ACTIONS(2872), - [anon_sym_i16] = ACTIONS(2872), - [anon_sym_u32] = ACTIONS(2872), - [anon_sym_i32] = ACTIONS(2872), - [anon_sym_u64] = ACTIONS(2872), - [anon_sym_i64] = ACTIONS(2872), - [anon_sym_u128] = ACTIONS(2872), - [anon_sym_i128] = ACTIONS(2872), - [anon_sym_isize] = ACTIONS(2872), - [anon_sym_usize] = ACTIONS(2872), - [anon_sym_f32] = ACTIONS(2872), - [anon_sym_f64] = ACTIONS(2872), - [anon_sym_bool] = ACTIONS(2872), - [anon_sym_str] = ACTIONS(2872), - [anon_sym_char] = ACTIONS(2872), - [anon_sym_DASH] = ACTIONS(2870), - [anon_sym_BANG] = ACTIONS(2870), - [anon_sym_AMP] = ACTIONS(2870), - [anon_sym_PIPE] = ACTIONS(2870), - [anon_sym_LT] = ACTIONS(2870), - [anon_sym_DOT_DOT] = ACTIONS(2870), - [anon_sym_COLON_COLON] = ACTIONS(2870), - [anon_sym_POUND] = ACTIONS(2870), - [anon_sym_SQUOTE] = ACTIONS(2872), - [anon_sym_async] = ACTIONS(2872), - [anon_sym_break] = ACTIONS(2872), - [anon_sym_const] = ACTIONS(2872), - [anon_sym_continue] = ACTIONS(2872), - [anon_sym_default] = ACTIONS(2872), - [anon_sym_enum] = ACTIONS(2872), - [anon_sym_fn] = ACTIONS(2872), - [anon_sym_for] = ACTIONS(2872), - [anon_sym_gen] = ACTIONS(2872), - [anon_sym_if] = ACTIONS(2872), - [anon_sym_impl] = ACTIONS(2872), - [anon_sym_let] = ACTIONS(2872), - [anon_sym_loop] = ACTIONS(2872), - [anon_sym_match] = ACTIONS(2872), - [anon_sym_mod] = ACTIONS(2872), - [anon_sym_pub] = ACTIONS(2872), - [anon_sym_return] = ACTIONS(2872), - [anon_sym_static] = ACTIONS(2872), - [anon_sym_struct] = ACTIONS(2872), - [anon_sym_trait] = ACTIONS(2872), - [anon_sym_type] = ACTIONS(2872), - [anon_sym_union] = ACTIONS(2872), - [anon_sym_unsafe] = ACTIONS(2872), - [anon_sym_use] = ACTIONS(2872), - [anon_sym_while] = ACTIONS(2872), - [anon_sym_extern] = ACTIONS(2872), - [anon_sym_yield] = ACTIONS(2872), - [anon_sym_move] = ACTIONS(2872), - [anon_sym_try] = ACTIONS(2872), - [sym_integer_literal] = ACTIONS(2870), - [aux_sym_string_literal_token1] = ACTIONS(2870), - [sym_char_literal] = ACTIONS(2870), - [anon_sym_true] = ACTIONS(2872), - [anon_sym_false] = ACTIONS(2872), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2872), - [sym_super] = ACTIONS(2872), - [sym_crate] = ACTIONS(2872), - [sym_metavariable] = ACTIONS(2870), - [sym__raw_string_literal_start] = ACTIONS(2870), - [sym_float_literal] = ACTIONS(2870), + [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_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_safe] = 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(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [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(740)] = { [sym_line_comment] = STATE(740), [sym_block_comment] = STATE(740), - [ts_builtin_sym_end] = ACTIONS(2874), - [sym_identifier] = ACTIONS(2876), - [anon_sym_SEMI] = ACTIONS(2874), - [anon_sym_macro_rules_BANG] = ACTIONS(2874), - [anon_sym_LPAREN] = ACTIONS(2874), - [anon_sym_LBRACK] = ACTIONS(2874), - [anon_sym_LBRACE] = ACTIONS(2874), - [anon_sym_RBRACE] = ACTIONS(2874), - [anon_sym_STAR] = ACTIONS(2874), - [anon_sym_u8] = ACTIONS(2876), - [anon_sym_i8] = ACTIONS(2876), - [anon_sym_u16] = ACTIONS(2876), - [anon_sym_i16] = ACTIONS(2876), - [anon_sym_u32] = ACTIONS(2876), - [anon_sym_i32] = ACTIONS(2876), - [anon_sym_u64] = ACTIONS(2876), - [anon_sym_i64] = ACTIONS(2876), - [anon_sym_u128] = ACTIONS(2876), - [anon_sym_i128] = ACTIONS(2876), - [anon_sym_isize] = ACTIONS(2876), - [anon_sym_usize] = ACTIONS(2876), - [anon_sym_f32] = ACTIONS(2876), - [anon_sym_f64] = ACTIONS(2876), - [anon_sym_bool] = ACTIONS(2876), - [anon_sym_str] = ACTIONS(2876), - [anon_sym_char] = ACTIONS(2876), - [anon_sym_DASH] = ACTIONS(2874), - [anon_sym_BANG] = ACTIONS(2874), - [anon_sym_AMP] = ACTIONS(2874), - [anon_sym_PIPE] = ACTIONS(2874), - [anon_sym_LT] = ACTIONS(2874), - [anon_sym_DOT_DOT] = ACTIONS(2874), - [anon_sym_COLON_COLON] = ACTIONS(2874), - [anon_sym_POUND] = ACTIONS(2874), - [anon_sym_SQUOTE] = ACTIONS(2876), - [anon_sym_async] = ACTIONS(2876), - [anon_sym_break] = ACTIONS(2876), - [anon_sym_const] = ACTIONS(2876), - [anon_sym_continue] = ACTIONS(2876), - [anon_sym_default] = ACTIONS(2876), - [anon_sym_enum] = ACTIONS(2876), - [anon_sym_fn] = ACTIONS(2876), - [anon_sym_for] = ACTIONS(2876), - [anon_sym_gen] = ACTIONS(2876), - [anon_sym_if] = ACTIONS(2876), - [anon_sym_impl] = ACTIONS(2876), - [anon_sym_let] = ACTIONS(2876), - [anon_sym_loop] = ACTIONS(2876), - [anon_sym_match] = ACTIONS(2876), - [anon_sym_mod] = ACTIONS(2876), - [anon_sym_pub] = ACTIONS(2876), - [anon_sym_return] = ACTIONS(2876), - [anon_sym_static] = ACTIONS(2876), - [anon_sym_struct] = ACTIONS(2876), - [anon_sym_trait] = ACTIONS(2876), - [anon_sym_type] = ACTIONS(2876), - [anon_sym_union] = ACTIONS(2876), - [anon_sym_unsafe] = ACTIONS(2876), - [anon_sym_use] = ACTIONS(2876), - [anon_sym_while] = ACTIONS(2876), - [anon_sym_extern] = ACTIONS(2876), - [anon_sym_yield] = ACTIONS(2876), - [anon_sym_move] = ACTIONS(2876), - [anon_sym_try] = ACTIONS(2876), - [sym_integer_literal] = ACTIONS(2874), - [aux_sym_string_literal_token1] = ACTIONS(2874), - [sym_char_literal] = ACTIONS(2874), - [anon_sym_true] = ACTIONS(2876), - [anon_sym_false] = ACTIONS(2876), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2876), - [sym_super] = ACTIONS(2876), - [sym_crate] = ACTIONS(2876), - [sym_metavariable] = ACTIONS(2874), - [sym__raw_string_literal_start] = ACTIONS(2874), - [sym_float_literal] = ACTIONS(2874), + [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_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_safe] = 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(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [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(741)] = { [sym_line_comment] = STATE(741), [sym_block_comment] = STATE(741), - [ts_builtin_sym_end] = ACTIONS(2878), - [sym_identifier] = ACTIONS(2880), - [anon_sym_SEMI] = ACTIONS(2878), - [anon_sym_macro_rules_BANG] = ACTIONS(2878), - [anon_sym_LPAREN] = ACTIONS(2878), - [anon_sym_LBRACK] = ACTIONS(2878), - [anon_sym_LBRACE] = ACTIONS(2878), - [anon_sym_RBRACE] = ACTIONS(2878), - [anon_sym_STAR] = ACTIONS(2878), - [anon_sym_u8] = ACTIONS(2880), - [anon_sym_i8] = ACTIONS(2880), - [anon_sym_u16] = ACTIONS(2880), - [anon_sym_i16] = ACTIONS(2880), - [anon_sym_u32] = ACTIONS(2880), - [anon_sym_i32] = ACTIONS(2880), - [anon_sym_u64] = ACTIONS(2880), - [anon_sym_i64] = ACTIONS(2880), - [anon_sym_u128] = ACTIONS(2880), - [anon_sym_i128] = ACTIONS(2880), - [anon_sym_isize] = ACTIONS(2880), - [anon_sym_usize] = ACTIONS(2880), - [anon_sym_f32] = ACTIONS(2880), - [anon_sym_f64] = ACTIONS(2880), - [anon_sym_bool] = ACTIONS(2880), - [anon_sym_str] = ACTIONS(2880), - [anon_sym_char] = ACTIONS(2880), - [anon_sym_DASH] = ACTIONS(2878), - [anon_sym_BANG] = ACTIONS(2878), - [anon_sym_AMP] = ACTIONS(2878), - [anon_sym_PIPE] = ACTIONS(2878), - [anon_sym_LT] = ACTIONS(2878), - [anon_sym_DOT_DOT] = ACTIONS(2878), - [anon_sym_COLON_COLON] = ACTIONS(2878), - [anon_sym_POUND] = ACTIONS(2878), - [anon_sym_SQUOTE] = ACTIONS(2880), - [anon_sym_async] = ACTIONS(2880), - [anon_sym_break] = ACTIONS(2880), - [anon_sym_const] = ACTIONS(2880), - [anon_sym_continue] = ACTIONS(2880), - [anon_sym_default] = ACTIONS(2880), - [anon_sym_enum] = ACTIONS(2880), - [anon_sym_fn] = ACTIONS(2880), - [anon_sym_for] = ACTIONS(2880), - [anon_sym_gen] = ACTIONS(2880), - [anon_sym_if] = ACTIONS(2880), - [anon_sym_impl] = ACTIONS(2880), - [anon_sym_let] = ACTIONS(2880), - [anon_sym_loop] = ACTIONS(2880), - [anon_sym_match] = ACTIONS(2880), - [anon_sym_mod] = ACTIONS(2880), - [anon_sym_pub] = ACTIONS(2880), - [anon_sym_return] = ACTIONS(2880), - [anon_sym_static] = ACTIONS(2880), - [anon_sym_struct] = ACTIONS(2880), - [anon_sym_trait] = ACTIONS(2880), - [anon_sym_type] = ACTIONS(2880), - [anon_sym_union] = ACTIONS(2880), - [anon_sym_unsafe] = ACTIONS(2880), - [anon_sym_use] = ACTIONS(2880), - [anon_sym_while] = ACTIONS(2880), - [anon_sym_extern] = ACTIONS(2880), - [anon_sym_yield] = ACTIONS(2880), - [anon_sym_move] = ACTIONS(2880), - [anon_sym_try] = ACTIONS(2880), - [sym_integer_literal] = ACTIONS(2878), - [aux_sym_string_literal_token1] = ACTIONS(2878), - [sym_char_literal] = ACTIONS(2878), - [anon_sym_true] = ACTIONS(2880), - [anon_sym_false] = ACTIONS(2880), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2880), - [sym_super] = ACTIONS(2880), - [sym_crate] = ACTIONS(2880), - [sym_metavariable] = ACTIONS(2878), - [sym__raw_string_literal_start] = ACTIONS(2878), - [sym_float_literal] = ACTIONS(2878), + [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_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_safe] = 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(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [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(742)] = { [sym_line_comment] = STATE(742), [sym_block_comment] = STATE(742), - [ts_builtin_sym_end] = ACTIONS(2882), - [sym_identifier] = ACTIONS(2884), - [anon_sym_SEMI] = ACTIONS(2882), - [anon_sym_macro_rules_BANG] = ACTIONS(2882), - [anon_sym_LPAREN] = ACTIONS(2882), - [anon_sym_LBRACK] = ACTIONS(2882), - [anon_sym_LBRACE] = ACTIONS(2882), - [anon_sym_RBRACE] = ACTIONS(2882), - [anon_sym_STAR] = ACTIONS(2882), - [anon_sym_u8] = ACTIONS(2884), - [anon_sym_i8] = ACTIONS(2884), - [anon_sym_u16] = ACTIONS(2884), - [anon_sym_i16] = ACTIONS(2884), - [anon_sym_u32] = ACTIONS(2884), - [anon_sym_i32] = ACTIONS(2884), - [anon_sym_u64] = ACTIONS(2884), - [anon_sym_i64] = ACTIONS(2884), - [anon_sym_u128] = ACTIONS(2884), - [anon_sym_i128] = ACTIONS(2884), - [anon_sym_isize] = ACTIONS(2884), - [anon_sym_usize] = ACTIONS(2884), - [anon_sym_f32] = ACTIONS(2884), - [anon_sym_f64] = ACTIONS(2884), - [anon_sym_bool] = ACTIONS(2884), - [anon_sym_str] = ACTIONS(2884), - [anon_sym_char] = ACTIONS(2884), - [anon_sym_DASH] = ACTIONS(2882), - [anon_sym_BANG] = ACTIONS(2882), - [anon_sym_AMP] = ACTIONS(2882), - [anon_sym_PIPE] = ACTIONS(2882), - [anon_sym_LT] = ACTIONS(2882), - [anon_sym_DOT_DOT] = ACTIONS(2882), - [anon_sym_COLON_COLON] = ACTIONS(2882), - [anon_sym_POUND] = ACTIONS(2882), - [anon_sym_SQUOTE] = ACTIONS(2884), - [anon_sym_async] = ACTIONS(2884), - [anon_sym_break] = ACTIONS(2884), - [anon_sym_const] = ACTIONS(2884), - [anon_sym_continue] = ACTIONS(2884), - [anon_sym_default] = ACTIONS(2884), - [anon_sym_enum] = ACTIONS(2884), - [anon_sym_fn] = ACTIONS(2884), - [anon_sym_for] = ACTIONS(2884), - [anon_sym_gen] = ACTIONS(2884), - [anon_sym_if] = ACTIONS(2884), - [anon_sym_impl] = ACTIONS(2884), - [anon_sym_let] = ACTIONS(2884), - [anon_sym_loop] = ACTIONS(2884), - [anon_sym_match] = ACTIONS(2884), - [anon_sym_mod] = ACTIONS(2884), - [anon_sym_pub] = ACTIONS(2884), - [anon_sym_return] = ACTIONS(2884), - [anon_sym_static] = ACTIONS(2884), - [anon_sym_struct] = ACTIONS(2884), - [anon_sym_trait] = ACTIONS(2884), - [anon_sym_type] = ACTIONS(2884), - [anon_sym_union] = ACTIONS(2884), - [anon_sym_unsafe] = ACTIONS(2884), - [anon_sym_use] = ACTIONS(2884), - [anon_sym_while] = ACTIONS(2884), - [anon_sym_extern] = ACTIONS(2884), - [anon_sym_yield] = ACTIONS(2884), - [anon_sym_move] = ACTIONS(2884), - [anon_sym_try] = ACTIONS(2884), - [sym_integer_literal] = ACTIONS(2882), - [aux_sym_string_literal_token1] = ACTIONS(2882), - [sym_char_literal] = ACTIONS(2882), - [anon_sym_true] = ACTIONS(2884), - [anon_sym_false] = ACTIONS(2884), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2884), - [sym_super] = ACTIONS(2884), - [sym_crate] = ACTIONS(2884), - [sym_metavariable] = ACTIONS(2882), - [sym__raw_string_literal_start] = ACTIONS(2882), - [sym_float_literal] = ACTIONS(2882), + [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_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_safe] = 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(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [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(743)] = { [sym_line_comment] = STATE(743), [sym_block_comment] = STATE(743), - [ts_builtin_sym_end] = ACTIONS(2886), - [sym_identifier] = ACTIONS(2888), - [anon_sym_SEMI] = ACTIONS(2886), - [anon_sym_macro_rules_BANG] = ACTIONS(2886), - [anon_sym_LPAREN] = ACTIONS(2886), - [anon_sym_LBRACK] = ACTIONS(2886), - [anon_sym_LBRACE] = ACTIONS(2886), - [anon_sym_RBRACE] = ACTIONS(2886), - [anon_sym_STAR] = ACTIONS(2886), - [anon_sym_u8] = ACTIONS(2888), - [anon_sym_i8] = ACTIONS(2888), - [anon_sym_u16] = ACTIONS(2888), - [anon_sym_i16] = ACTIONS(2888), - [anon_sym_u32] = ACTIONS(2888), - [anon_sym_i32] = ACTIONS(2888), - [anon_sym_u64] = ACTIONS(2888), - [anon_sym_i64] = ACTIONS(2888), - [anon_sym_u128] = ACTIONS(2888), - [anon_sym_i128] = ACTIONS(2888), - [anon_sym_isize] = ACTIONS(2888), - [anon_sym_usize] = ACTIONS(2888), - [anon_sym_f32] = ACTIONS(2888), - [anon_sym_f64] = ACTIONS(2888), - [anon_sym_bool] = ACTIONS(2888), - [anon_sym_str] = ACTIONS(2888), - [anon_sym_char] = ACTIONS(2888), - [anon_sym_DASH] = ACTIONS(2886), - [anon_sym_BANG] = ACTIONS(2886), - [anon_sym_AMP] = ACTIONS(2886), - [anon_sym_PIPE] = ACTIONS(2886), - [anon_sym_LT] = ACTIONS(2886), - [anon_sym_DOT_DOT] = ACTIONS(2886), - [anon_sym_COLON_COLON] = ACTIONS(2886), - [anon_sym_POUND] = ACTIONS(2886), - [anon_sym_SQUOTE] = ACTIONS(2888), - [anon_sym_async] = ACTIONS(2888), - [anon_sym_break] = ACTIONS(2888), - [anon_sym_const] = ACTIONS(2888), - [anon_sym_continue] = ACTIONS(2888), - [anon_sym_default] = ACTIONS(2888), - [anon_sym_enum] = ACTIONS(2888), - [anon_sym_fn] = ACTIONS(2888), - [anon_sym_for] = ACTIONS(2888), - [anon_sym_gen] = ACTIONS(2888), - [anon_sym_if] = ACTIONS(2888), - [anon_sym_impl] = ACTIONS(2888), - [anon_sym_let] = ACTIONS(2888), - [anon_sym_loop] = ACTIONS(2888), - [anon_sym_match] = ACTIONS(2888), - [anon_sym_mod] = ACTIONS(2888), - [anon_sym_pub] = ACTIONS(2888), - [anon_sym_return] = ACTIONS(2888), - [anon_sym_static] = ACTIONS(2888), - [anon_sym_struct] = ACTIONS(2888), - [anon_sym_trait] = ACTIONS(2888), - [anon_sym_type] = ACTIONS(2888), - [anon_sym_union] = ACTIONS(2888), - [anon_sym_unsafe] = ACTIONS(2888), - [anon_sym_use] = ACTIONS(2888), - [anon_sym_while] = ACTIONS(2888), - [anon_sym_extern] = ACTIONS(2888), - [anon_sym_yield] = ACTIONS(2888), - [anon_sym_move] = ACTIONS(2888), - [anon_sym_try] = ACTIONS(2888), - [sym_integer_literal] = ACTIONS(2886), - [aux_sym_string_literal_token1] = ACTIONS(2886), - [sym_char_literal] = ACTIONS(2886), - [anon_sym_true] = ACTIONS(2888), - [anon_sym_false] = ACTIONS(2888), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2888), - [sym_super] = ACTIONS(2888), - [sym_crate] = ACTIONS(2888), - [sym_metavariable] = ACTIONS(2886), - [sym__raw_string_literal_start] = ACTIONS(2886), - [sym_float_literal] = ACTIONS(2886), + [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_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_safe] = 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(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [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(744)] = { - [sym_attribute_item] = STATE(1395), - [sym_inner_attribute_item] = STATE(1395), - [sym_bracketed_type] = STATE(3648), - [sym_generic_type] = STATE(3450), - [sym_generic_type_with_turbofish] = STATE(3370), - [sym_macro_invocation] = STATE(3108), - [sym_scoped_identifier] = STATE(2218), - [sym_scoped_type_identifier] = STATE(3059), - [sym_match_pattern] = STATE(3483), - [sym_const_block] = STATE(3108), - [sym__pattern] = STATE(2998), - [sym_generic_pattern] = STATE(3108), - [sym_tuple_pattern] = STATE(3108), - [sym_slice_pattern] = STATE(3108), - [sym_tuple_struct_pattern] = STATE(3108), - [sym_struct_pattern] = STATE(3108), - [sym_remaining_field_pattern] = STATE(3108), - [sym_mut_pattern] = STATE(3108), - [sym_range_pattern] = STATE(3108), - [sym_ref_pattern] = STATE(3108), - [sym_captured_pattern] = STATE(3108), - [sym_reference_pattern] = STATE(3108), - [sym_or_pattern] = STATE(3108), - [sym__literal_pattern] = STATE(2401), - [sym_negative_literal] = STATE(2389), - [sym_string_literal] = STATE(2389), - [sym_raw_string_literal] = STATE(2389), - [sym_boolean_literal] = STATE(2389), [sym_line_comment] = STATE(744), [sym_block_comment] = STATE(744), - [aux_sym_match_arm_repeat1] = STATE(1052), - [sym_identifier] = ACTIONS(1645), - [anon_sym_LPAREN] = ACTIONS(1647), - [anon_sym_LBRACK] = ACTIONS(1649), - [anon_sym_u8] = ACTIONS(1653), - [anon_sym_i8] = ACTIONS(1653), - [anon_sym_u16] = ACTIONS(1653), - [anon_sym_i16] = ACTIONS(1653), - [anon_sym_u32] = ACTIONS(1653), - [anon_sym_i32] = ACTIONS(1653), - [anon_sym_u64] = ACTIONS(1653), - [anon_sym_i64] = ACTIONS(1653), - [anon_sym_u128] = ACTIONS(1653), - [anon_sym_i128] = ACTIONS(1653), - [anon_sym_isize] = ACTIONS(1653), - [anon_sym_usize] = ACTIONS(1653), - [anon_sym_f32] = ACTIONS(1653), - [anon_sym_f64] = ACTIONS(1653), - [anon_sym_bool] = ACTIONS(1653), - [anon_sym_str] = ACTIONS(1653), - [anon_sym_char] = ACTIONS(1653), - [anon_sym_DASH] = ACTIONS(1655), - [anon_sym_AMP] = ACTIONS(1657), - [anon_sym_PIPE] = ACTIONS(1659), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1661), - [anon_sym_DOT_DOT] = ACTIONS(1663), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1665), - [anon_sym_COLON_COLON] = ACTIONS(1667), - [anon_sym_POUND] = ACTIONS(1669), - [anon_sym_const] = ACTIONS(1671), - [anon_sym_default] = ACTIONS(1673), - [anon_sym_gen] = ACTIONS(1673), - [anon_sym_union] = ACTIONS(1673), - [anon_sym_ref] = ACTIONS(1675), - [sym_mutable_specifier] = ACTIONS(1677), - [sym_integer_literal] = ACTIONS(1679), - [aux_sym_string_literal_token1] = ACTIONS(1681), - [sym_char_literal] = ACTIONS(1679), - [anon_sym_true] = ACTIONS(1683), - [anon_sym_false] = ACTIONS(1683), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1685), - [sym_super] = ACTIONS(1685), - [sym_crate] = ACTIONS(1685), - [sym_metavariable] = ACTIONS(1687), - [sym__raw_string_literal_start] = ACTIONS(1689), - [sym_float_literal] = ACTIONS(1679), + [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_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_safe] = 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(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [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(745)] = { [sym_line_comment] = STATE(745), [sym_block_comment] = STATE(745), - [ts_builtin_sym_end] = ACTIONS(2890), - [sym_identifier] = ACTIONS(2892), - [anon_sym_SEMI] = ACTIONS(2890), - [anon_sym_macro_rules_BANG] = ACTIONS(2890), - [anon_sym_LPAREN] = ACTIONS(2890), - [anon_sym_LBRACK] = ACTIONS(2890), - [anon_sym_LBRACE] = ACTIONS(2890), - [anon_sym_RBRACE] = ACTIONS(2890), - [anon_sym_STAR] = ACTIONS(2890), - [anon_sym_u8] = ACTIONS(2892), - [anon_sym_i8] = ACTIONS(2892), - [anon_sym_u16] = ACTIONS(2892), - [anon_sym_i16] = ACTIONS(2892), - [anon_sym_u32] = ACTIONS(2892), - [anon_sym_i32] = ACTIONS(2892), - [anon_sym_u64] = ACTIONS(2892), - [anon_sym_i64] = ACTIONS(2892), - [anon_sym_u128] = ACTIONS(2892), - [anon_sym_i128] = ACTIONS(2892), - [anon_sym_isize] = ACTIONS(2892), - [anon_sym_usize] = ACTIONS(2892), - [anon_sym_f32] = ACTIONS(2892), - [anon_sym_f64] = ACTIONS(2892), - [anon_sym_bool] = ACTIONS(2892), - [anon_sym_str] = ACTIONS(2892), - [anon_sym_char] = ACTIONS(2892), - [anon_sym_DASH] = ACTIONS(2890), - [anon_sym_BANG] = ACTIONS(2890), - [anon_sym_AMP] = ACTIONS(2890), - [anon_sym_PIPE] = ACTIONS(2890), - [anon_sym_LT] = ACTIONS(2890), - [anon_sym_DOT_DOT] = ACTIONS(2890), - [anon_sym_COLON_COLON] = ACTIONS(2890), - [anon_sym_POUND] = ACTIONS(2890), - [anon_sym_SQUOTE] = ACTIONS(2892), - [anon_sym_async] = ACTIONS(2892), - [anon_sym_break] = ACTIONS(2892), - [anon_sym_const] = ACTIONS(2892), - [anon_sym_continue] = ACTIONS(2892), - [anon_sym_default] = ACTIONS(2892), - [anon_sym_enum] = ACTIONS(2892), - [anon_sym_fn] = ACTIONS(2892), - [anon_sym_for] = ACTIONS(2892), - [anon_sym_gen] = ACTIONS(2892), - [anon_sym_if] = ACTIONS(2892), - [anon_sym_impl] = ACTIONS(2892), - [anon_sym_let] = ACTIONS(2892), - [anon_sym_loop] = ACTIONS(2892), - [anon_sym_match] = ACTIONS(2892), - [anon_sym_mod] = ACTIONS(2892), - [anon_sym_pub] = ACTIONS(2892), - [anon_sym_return] = ACTIONS(2892), - [anon_sym_static] = ACTIONS(2892), - [anon_sym_struct] = ACTIONS(2892), - [anon_sym_trait] = ACTIONS(2892), - [anon_sym_type] = ACTIONS(2892), - [anon_sym_union] = ACTIONS(2892), - [anon_sym_unsafe] = ACTIONS(2892), - [anon_sym_use] = ACTIONS(2892), - [anon_sym_while] = ACTIONS(2892), - [anon_sym_extern] = ACTIONS(2892), - [anon_sym_yield] = ACTIONS(2892), - [anon_sym_move] = ACTIONS(2892), - [anon_sym_try] = ACTIONS(2892), - [sym_integer_literal] = ACTIONS(2890), - [aux_sym_string_literal_token1] = ACTIONS(2890), - [sym_char_literal] = ACTIONS(2890), - [anon_sym_true] = ACTIONS(2892), - [anon_sym_false] = ACTIONS(2892), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2892), - [sym_super] = ACTIONS(2892), - [sym_crate] = ACTIONS(2892), - [sym_metavariable] = ACTIONS(2890), - [sym__raw_string_literal_start] = ACTIONS(2890), - [sym_float_literal] = ACTIONS(2890), + [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_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_safe] = 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(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [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(746)] = { [sym_line_comment] = STATE(746), [sym_block_comment] = STATE(746), - [ts_builtin_sym_end] = ACTIONS(2894), - [sym_identifier] = ACTIONS(2896), - [anon_sym_SEMI] = ACTIONS(2894), - [anon_sym_macro_rules_BANG] = ACTIONS(2894), - [anon_sym_LPAREN] = ACTIONS(2894), - [anon_sym_LBRACK] = ACTIONS(2894), - [anon_sym_LBRACE] = ACTIONS(2894), - [anon_sym_RBRACE] = ACTIONS(2894), - [anon_sym_STAR] = ACTIONS(2894), - [anon_sym_u8] = ACTIONS(2896), - [anon_sym_i8] = ACTIONS(2896), - [anon_sym_u16] = ACTIONS(2896), - [anon_sym_i16] = ACTIONS(2896), - [anon_sym_u32] = ACTIONS(2896), - [anon_sym_i32] = ACTIONS(2896), - [anon_sym_u64] = ACTIONS(2896), - [anon_sym_i64] = ACTIONS(2896), - [anon_sym_u128] = ACTIONS(2896), - [anon_sym_i128] = ACTIONS(2896), - [anon_sym_isize] = ACTIONS(2896), - [anon_sym_usize] = ACTIONS(2896), - [anon_sym_f32] = ACTIONS(2896), - [anon_sym_f64] = ACTIONS(2896), - [anon_sym_bool] = ACTIONS(2896), - [anon_sym_str] = ACTIONS(2896), - [anon_sym_char] = ACTIONS(2896), - [anon_sym_DASH] = ACTIONS(2894), - [anon_sym_BANG] = ACTIONS(2894), - [anon_sym_AMP] = ACTIONS(2894), - [anon_sym_PIPE] = ACTIONS(2894), - [anon_sym_LT] = ACTIONS(2894), - [anon_sym_DOT_DOT] = ACTIONS(2894), - [anon_sym_COLON_COLON] = ACTIONS(2894), - [anon_sym_POUND] = ACTIONS(2894), - [anon_sym_SQUOTE] = ACTIONS(2896), - [anon_sym_async] = ACTIONS(2896), - [anon_sym_break] = ACTIONS(2896), - [anon_sym_const] = ACTIONS(2896), - [anon_sym_continue] = ACTIONS(2896), - [anon_sym_default] = ACTIONS(2896), - [anon_sym_enum] = ACTIONS(2896), - [anon_sym_fn] = ACTIONS(2896), - [anon_sym_for] = ACTIONS(2896), - [anon_sym_gen] = ACTIONS(2896), - [anon_sym_if] = ACTIONS(2896), - [anon_sym_impl] = ACTIONS(2896), - [anon_sym_let] = ACTIONS(2896), - [anon_sym_loop] = ACTIONS(2896), - [anon_sym_match] = ACTIONS(2896), - [anon_sym_mod] = ACTIONS(2896), - [anon_sym_pub] = ACTIONS(2896), - [anon_sym_return] = ACTIONS(2896), - [anon_sym_static] = ACTIONS(2896), - [anon_sym_struct] = ACTIONS(2896), - [anon_sym_trait] = ACTIONS(2896), - [anon_sym_type] = ACTIONS(2896), - [anon_sym_union] = ACTIONS(2896), - [anon_sym_unsafe] = ACTIONS(2896), - [anon_sym_use] = ACTIONS(2896), - [anon_sym_while] = ACTIONS(2896), - [anon_sym_extern] = ACTIONS(2896), - [anon_sym_yield] = ACTIONS(2896), - [anon_sym_move] = ACTIONS(2896), - [anon_sym_try] = ACTIONS(2896), - [sym_integer_literal] = ACTIONS(2894), - [aux_sym_string_literal_token1] = ACTIONS(2894), - [sym_char_literal] = ACTIONS(2894), - [anon_sym_true] = ACTIONS(2896), - [anon_sym_false] = ACTIONS(2896), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2896), - [sym_super] = ACTIONS(2896), - [sym_crate] = ACTIONS(2896), - [sym_metavariable] = ACTIONS(2894), - [sym__raw_string_literal_start] = ACTIONS(2894), - [sym_float_literal] = ACTIONS(2894), + [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_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_safe] = 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(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [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(747)] = { [sym_line_comment] = STATE(747), [sym_block_comment] = STATE(747), - [ts_builtin_sym_end] = ACTIONS(2898), - [sym_identifier] = ACTIONS(2900), - [anon_sym_SEMI] = ACTIONS(2898), - [anon_sym_macro_rules_BANG] = ACTIONS(2898), - [anon_sym_LPAREN] = ACTIONS(2898), - [anon_sym_LBRACK] = ACTIONS(2898), - [anon_sym_LBRACE] = ACTIONS(2898), - [anon_sym_RBRACE] = ACTIONS(2898), - [anon_sym_STAR] = ACTIONS(2898), - [anon_sym_u8] = ACTIONS(2900), - [anon_sym_i8] = ACTIONS(2900), - [anon_sym_u16] = ACTIONS(2900), - [anon_sym_i16] = ACTIONS(2900), - [anon_sym_u32] = ACTIONS(2900), - [anon_sym_i32] = ACTIONS(2900), - [anon_sym_u64] = ACTIONS(2900), - [anon_sym_i64] = ACTIONS(2900), - [anon_sym_u128] = ACTIONS(2900), - [anon_sym_i128] = ACTIONS(2900), - [anon_sym_isize] = ACTIONS(2900), - [anon_sym_usize] = ACTIONS(2900), - [anon_sym_f32] = ACTIONS(2900), - [anon_sym_f64] = ACTIONS(2900), - [anon_sym_bool] = ACTIONS(2900), - [anon_sym_str] = ACTIONS(2900), - [anon_sym_char] = ACTIONS(2900), - [anon_sym_DASH] = ACTIONS(2898), - [anon_sym_BANG] = ACTIONS(2898), - [anon_sym_AMP] = ACTIONS(2898), - [anon_sym_PIPE] = ACTIONS(2898), - [anon_sym_LT] = ACTIONS(2898), - [anon_sym_DOT_DOT] = ACTIONS(2898), - [anon_sym_COLON_COLON] = ACTIONS(2898), - [anon_sym_POUND] = ACTIONS(2898), - [anon_sym_SQUOTE] = ACTIONS(2900), - [anon_sym_async] = ACTIONS(2900), - [anon_sym_break] = ACTIONS(2900), - [anon_sym_const] = ACTIONS(2900), - [anon_sym_continue] = ACTIONS(2900), - [anon_sym_default] = ACTIONS(2900), - [anon_sym_enum] = ACTIONS(2900), - [anon_sym_fn] = ACTIONS(2900), - [anon_sym_for] = ACTIONS(2900), - [anon_sym_gen] = ACTIONS(2900), - [anon_sym_if] = ACTIONS(2900), - [anon_sym_impl] = ACTIONS(2900), - [anon_sym_let] = ACTIONS(2900), - [anon_sym_loop] = ACTIONS(2900), - [anon_sym_match] = ACTIONS(2900), - [anon_sym_mod] = ACTIONS(2900), - [anon_sym_pub] = ACTIONS(2900), - [anon_sym_return] = ACTIONS(2900), - [anon_sym_static] = ACTIONS(2900), - [anon_sym_struct] = ACTIONS(2900), - [anon_sym_trait] = ACTIONS(2900), - [anon_sym_type] = ACTIONS(2900), - [anon_sym_union] = ACTIONS(2900), - [anon_sym_unsafe] = ACTIONS(2900), - [anon_sym_use] = ACTIONS(2900), - [anon_sym_while] = ACTIONS(2900), - [anon_sym_extern] = ACTIONS(2900), - [anon_sym_yield] = ACTIONS(2900), - [anon_sym_move] = ACTIONS(2900), - [anon_sym_try] = ACTIONS(2900), - [sym_integer_literal] = ACTIONS(2898), - [aux_sym_string_literal_token1] = ACTIONS(2898), - [sym_char_literal] = ACTIONS(2898), - [anon_sym_true] = ACTIONS(2900), - [anon_sym_false] = ACTIONS(2900), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2900), - [sym_super] = ACTIONS(2900), - [sym_crate] = ACTIONS(2900), - [sym_metavariable] = ACTIONS(2898), - [sym__raw_string_literal_start] = ACTIONS(2898), - [sym_float_literal] = ACTIONS(2898), + [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_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_safe] = 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(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [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(748)] = { [sym_line_comment] = STATE(748), [sym_block_comment] = STATE(748), - [ts_builtin_sym_end] = ACTIONS(2902), - [sym_identifier] = ACTIONS(2904), - [anon_sym_SEMI] = ACTIONS(2902), - [anon_sym_macro_rules_BANG] = ACTIONS(2902), - [anon_sym_LPAREN] = ACTIONS(2902), - [anon_sym_LBRACK] = ACTIONS(2902), - [anon_sym_LBRACE] = ACTIONS(2902), - [anon_sym_RBRACE] = ACTIONS(2902), - [anon_sym_STAR] = ACTIONS(2902), - [anon_sym_u8] = ACTIONS(2904), - [anon_sym_i8] = ACTIONS(2904), - [anon_sym_u16] = ACTIONS(2904), - [anon_sym_i16] = ACTIONS(2904), - [anon_sym_u32] = ACTIONS(2904), - [anon_sym_i32] = ACTIONS(2904), - [anon_sym_u64] = ACTIONS(2904), - [anon_sym_i64] = ACTIONS(2904), - [anon_sym_u128] = ACTIONS(2904), - [anon_sym_i128] = ACTIONS(2904), - [anon_sym_isize] = ACTIONS(2904), - [anon_sym_usize] = ACTIONS(2904), - [anon_sym_f32] = ACTIONS(2904), - [anon_sym_f64] = ACTIONS(2904), - [anon_sym_bool] = ACTIONS(2904), - [anon_sym_str] = ACTIONS(2904), - [anon_sym_char] = ACTIONS(2904), - [anon_sym_DASH] = ACTIONS(2902), - [anon_sym_BANG] = ACTIONS(2902), - [anon_sym_AMP] = ACTIONS(2902), - [anon_sym_PIPE] = ACTIONS(2902), - [anon_sym_LT] = ACTIONS(2902), - [anon_sym_DOT_DOT] = ACTIONS(2902), - [anon_sym_COLON_COLON] = ACTIONS(2902), - [anon_sym_POUND] = ACTIONS(2902), - [anon_sym_SQUOTE] = ACTIONS(2904), - [anon_sym_async] = ACTIONS(2904), - [anon_sym_break] = ACTIONS(2904), - [anon_sym_const] = ACTIONS(2904), - [anon_sym_continue] = ACTIONS(2904), - [anon_sym_default] = ACTIONS(2904), - [anon_sym_enum] = ACTIONS(2904), - [anon_sym_fn] = ACTIONS(2904), - [anon_sym_for] = ACTIONS(2904), - [anon_sym_gen] = ACTIONS(2904), - [anon_sym_if] = ACTIONS(2904), - [anon_sym_impl] = ACTIONS(2904), - [anon_sym_let] = ACTIONS(2904), - [anon_sym_loop] = ACTIONS(2904), - [anon_sym_match] = ACTIONS(2904), - [anon_sym_mod] = ACTIONS(2904), - [anon_sym_pub] = ACTIONS(2904), - [anon_sym_return] = ACTIONS(2904), - [anon_sym_static] = ACTIONS(2904), - [anon_sym_struct] = ACTIONS(2904), - [anon_sym_trait] = ACTIONS(2904), - [anon_sym_type] = ACTIONS(2904), - [anon_sym_union] = ACTIONS(2904), - [anon_sym_unsafe] = ACTIONS(2904), - [anon_sym_use] = ACTIONS(2904), - [anon_sym_while] = ACTIONS(2904), - [anon_sym_extern] = ACTIONS(2904), - [anon_sym_yield] = ACTIONS(2904), - [anon_sym_move] = ACTIONS(2904), - [anon_sym_try] = ACTIONS(2904), - [sym_integer_literal] = ACTIONS(2902), - [aux_sym_string_literal_token1] = ACTIONS(2902), - [sym_char_literal] = ACTIONS(2902), - [anon_sym_true] = ACTIONS(2904), - [anon_sym_false] = ACTIONS(2904), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2904), - [sym_super] = ACTIONS(2904), - [sym_crate] = ACTIONS(2904), - [sym_metavariable] = ACTIONS(2902), - [sym__raw_string_literal_start] = ACTIONS(2902), - [sym_float_literal] = ACTIONS(2902), + [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_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_safe] = 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(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [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(749)] = { [sym_line_comment] = STATE(749), [sym_block_comment] = STATE(749), - [ts_builtin_sym_end] = ACTIONS(2906), - [sym_identifier] = ACTIONS(2908), - [anon_sym_SEMI] = ACTIONS(2906), - [anon_sym_macro_rules_BANG] = ACTIONS(2906), - [anon_sym_LPAREN] = ACTIONS(2906), - [anon_sym_LBRACK] = ACTIONS(2906), - [anon_sym_LBRACE] = ACTIONS(2906), - [anon_sym_RBRACE] = ACTIONS(2906), - [anon_sym_STAR] = ACTIONS(2906), - [anon_sym_u8] = ACTIONS(2908), - [anon_sym_i8] = ACTIONS(2908), - [anon_sym_u16] = ACTIONS(2908), - [anon_sym_i16] = ACTIONS(2908), - [anon_sym_u32] = ACTIONS(2908), - [anon_sym_i32] = ACTIONS(2908), - [anon_sym_u64] = ACTIONS(2908), - [anon_sym_i64] = ACTIONS(2908), - [anon_sym_u128] = ACTIONS(2908), - [anon_sym_i128] = ACTIONS(2908), - [anon_sym_isize] = ACTIONS(2908), - [anon_sym_usize] = ACTIONS(2908), - [anon_sym_f32] = ACTIONS(2908), - [anon_sym_f64] = ACTIONS(2908), - [anon_sym_bool] = ACTIONS(2908), - [anon_sym_str] = ACTIONS(2908), - [anon_sym_char] = ACTIONS(2908), - [anon_sym_DASH] = ACTIONS(2906), - [anon_sym_BANG] = ACTIONS(2906), - [anon_sym_AMP] = ACTIONS(2906), - [anon_sym_PIPE] = ACTIONS(2906), - [anon_sym_LT] = ACTIONS(2906), - [anon_sym_DOT_DOT] = ACTIONS(2906), - [anon_sym_COLON_COLON] = ACTIONS(2906), - [anon_sym_POUND] = ACTIONS(2906), - [anon_sym_SQUOTE] = ACTIONS(2908), - [anon_sym_async] = ACTIONS(2908), - [anon_sym_break] = ACTIONS(2908), - [anon_sym_const] = ACTIONS(2908), - [anon_sym_continue] = ACTIONS(2908), - [anon_sym_default] = ACTIONS(2908), - [anon_sym_enum] = ACTIONS(2908), - [anon_sym_fn] = ACTIONS(2908), - [anon_sym_for] = ACTIONS(2908), - [anon_sym_gen] = ACTIONS(2908), - [anon_sym_if] = ACTIONS(2908), - [anon_sym_impl] = ACTIONS(2908), - [anon_sym_let] = ACTIONS(2908), - [anon_sym_loop] = ACTIONS(2908), - [anon_sym_match] = ACTIONS(2908), - [anon_sym_mod] = ACTIONS(2908), - [anon_sym_pub] = ACTIONS(2908), - [anon_sym_return] = ACTIONS(2908), - [anon_sym_static] = ACTIONS(2908), - [anon_sym_struct] = ACTIONS(2908), - [anon_sym_trait] = ACTIONS(2908), - [anon_sym_type] = ACTIONS(2908), - [anon_sym_union] = ACTIONS(2908), - [anon_sym_unsafe] = ACTIONS(2908), - [anon_sym_use] = ACTIONS(2908), - [anon_sym_while] = ACTIONS(2908), - [anon_sym_extern] = ACTIONS(2908), - [anon_sym_yield] = ACTIONS(2908), - [anon_sym_move] = ACTIONS(2908), - [anon_sym_try] = ACTIONS(2908), - [sym_integer_literal] = ACTIONS(2906), - [aux_sym_string_literal_token1] = ACTIONS(2906), - [sym_char_literal] = ACTIONS(2906), - [anon_sym_true] = ACTIONS(2908), - [anon_sym_false] = ACTIONS(2908), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2908), - [sym_super] = ACTIONS(2908), - [sym_crate] = ACTIONS(2908), - [sym_metavariable] = ACTIONS(2906), - [sym__raw_string_literal_start] = ACTIONS(2906), - [sym_float_literal] = ACTIONS(2906), + [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_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_safe] = 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(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [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(750)] = { [sym_line_comment] = STATE(750), [sym_block_comment] = STATE(750), - [ts_builtin_sym_end] = ACTIONS(2910), - [sym_identifier] = ACTIONS(2912), - [anon_sym_SEMI] = ACTIONS(2910), - [anon_sym_macro_rules_BANG] = ACTIONS(2910), - [anon_sym_LPAREN] = ACTIONS(2910), - [anon_sym_LBRACK] = ACTIONS(2910), - [anon_sym_LBRACE] = ACTIONS(2910), - [anon_sym_RBRACE] = ACTIONS(2910), - [anon_sym_STAR] = ACTIONS(2910), - [anon_sym_u8] = ACTIONS(2912), - [anon_sym_i8] = ACTIONS(2912), - [anon_sym_u16] = ACTIONS(2912), - [anon_sym_i16] = ACTIONS(2912), - [anon_sym_u32] = ACTIONS(2912), - [anon_sym_i32] = ACTIONS(2912), - [anon_sym_u64] = ACTIONS(2912), - [anon_sym_i64] = ACTIONS(2912), - [anon_sym_u128] = ACTIONS(2912), - [anon_sym_i128] = ACTIONS(2912), - [anon_sym_isize] = ACTIONS(2912), - [anon_sym_usize] = ACTIONS(2912), - [anon_sym_f32] = ACTIONS(2912), - [anon_sym_f64] = ACTIONS(2912), - [anon_sym_bool] = ACTIONS(2912), - [anon_sym_str] = ACTIONS(2912), - [anon_sym_char] = ACTIONS(2912), - [anon_sym_DASH] = ACTIONS(2910), - [anon_sym_BANG] = ACTIONS(2910), - [anon_sym_AMP] = ACTIONS(2910), - [anon_sym_PIPE] = ACTIONS(2910), - [anon_sym_LT] = ACTIONS(2910), - [anon_sym_DOT_DOT] = ACTIONS(2910), - [anon_sym_COLON_COLON] = ACTIONS(2910), - [anon_sym_POUND] = ACTIONS(2910), - [anon_sym_SQUOTE] = ACTIONS(2912), - [anon_sym_async] = ACTIONS(2912), - [anon_sym_break] = ACTIONS(2912), - [anon_sym_const] = ACTIONS(2912), - [anon_sym_continue] = ACTIONS(2912), - [anon_sym_default] = ACTIONS(2912), - [anon_sym_enum] = ACTIONS(2912), - [anon_sym_fn] = ACTIONS(2912), - [anon_sym_for] = ACTIONS(2912), - [anon_sym_gen] = ACTIONS(2912), - [anon_sym_if] = ACTIONS(2912), - [anon_sym_impl] = ACTIONS(2912), - [anon_sym_let] = ACTIONS(2912), - [anon_sym_loop] = ACTIONS(2912), - [anon_sym_match] = ACTIONS(2912), - [anon_sym_mod] = ACTIONS(2912), - [anon_sym_pub] = ACTIONS(2912), - [anon_sym_return] = ACTIONS(2912), - [anon_sym_static] = ACTIONS(2912), - [anon_sym_struct] = ACTIONS(2912), - [anon_sym_trait] = ACTIONS(2912), - [anon_sym_type] = ACTIONS(2912), - [anon_sym_union] = ACTIONS(2912), - [anon_sym_unsafe] = ACTIONS(2912), - [anon_sym_use] = ACTIONS(2912), - [anon_sym_while] = ACTIONS(2912), - [anon_sym_extern] = ACTIONS(2912), - [anon_sym_yield] = ACTIONS(2912), - [anon_sym_move] = ACTIONS(2912), - [anon_sym_try] = ACTIONS(2912), - [sym_integer_literal] = ACTIONS(2910), - [aux_sym_string_literal_token1] = ACTIONS(2910), - [sym_char_literal] = ACTIONS(2910), - [anon_sym_true] = ACTIONS(2912), - [anon_sym_false] = ACTIONS(2912), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2912), - [sym_super] = ACTIONS(2912), - [sym_crate] = ACTIONS(2912), - [sym_metavariable] = ACTIONS(2910), - [sym__raw_string_literal_start] = ACTIONS(2910), - [sym_float_literal] = ACTIONS(2910), + [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_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_safe] = 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(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [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(751)] = { [sym_line_comment] = STATE(751), [sym_block_comment] = STATE(751), - [ts_builtin_sym_end] = ACTIONS(2914), - [sym_identifier] = ACTIONS(2916), - [anon_sym_SEMI] = ACTIONS(2914), - [anon_sym_macro_rules_BANG] = ACTIONS(2914), - [anon_sym_LPAREN] = ACTIONS(2914), - [anon_sym_LBRACK] = ACTIONS(2914), - [anon_sym_LBRACE] = ACTIONS(2914), - [anon_sym_RBRACE] = ACTIONS(2914), - [anon_sym_STAR] = ACTIONS(2914), - [anon_sym_u8] = ACTIONS(2916), - [anon_sym_i8] = ACTIONS(2916), - [anon_sym_u16] = ACTIONS(2916), - [anon_sym_i16] = ACTIONS(2916), - [anon_sym_u32] = ACTIONS(2916), - [anon_sym_i32] = ACTIONS(2916), - [anon_sym_u64] = ACTIONS(2916), - [anon_sym_i64] = ACTIONS(2916), - [anon_sym_u128] = ACTIONS(2916), - [anon_sym_i128] = ACTIONS(2916), - [anon_sym_isize] = ACTIONS(2916), - [anon_sym_usize] = ACTIONS(2916), - [anon_sym_f32] = ACTIONS(2916), - [anon_sym_f64] = ACTIONS(2916), - [anon_sym_bool] = ACTIONS(2916), - [anon_sym_str] = ACTIONS(2916), - [anon_sym_char] = ACTIONS(2916), - [anon_sym_DASH] = ACTIONS(2914), - [anon_sym_BANG] = ACTIONS(2914), - [anon_sym_AMP] = ACTIONS(2914), - [anon_sym_PIPE] = ACTIONS(2914), - [anon_sym_LT] = ACTIONS(2914), - [anon_sym_DOT_DOT] = ACTIONS(2914), - [anon_sym_COLON_COLON] = ACTIONS(2914), - [anon_sym_POUND] = ACTIONS(2914), - [anon_sym_SQUOTE] = ACTIONS(2916), - [anon_sym_async] = ACTIONS(2916), - [anon_sym_break] = ACTIONS(2916), - [anon_sym_const] = ACTIONS(2916), - [anon_sym_continue] = ACTIONS(2916), - [anon_sym_default] = ACTIONS(2916), - [anon_sym_enum] = ACTIONS(2916), - [anon_sym_fn] = ACTIONS(2916), - [anon_sym_for] = ACTIONS(2916), - [anon_sym_gen] = ACTIONS(2916), - [anon_sym_if] = ACTIONS(2916), - [anon_sym_impl] = ACTIONS(2916), - [anon_sym_let] = ACTIONS(2916), - [anon_sym_loop] = ACTIONS(2916), - [anon_sym_match] = ACTIONS(2916), - [anon_sym_mod] = ACTIONS(2916), - [anon_sym_pub] = ACTIONS(2916), - [anon_sym_return] = ACTIONS(2916), - [anon_sym_static] = ACTIONS(2916), - [anon_sym_struct] = ACTIONS(2916), - [anon_sym_trait] = ACTIONS(2916), - [anon_sym_type] = ACTIONS(2916), - [anon_sym_union] = ACTIONS(2916), - [anon_sym_unsafe] = ACTIONS(2916), - [anon_sym_use] = ACTIONS(2916), - [anon_sym_while] = ACTIONS(2916), - [anon_sym_extern] = ACTIONS(2916), - [anon_sym_yield] = ACTIONS(2916), - [anon_sym_move] = ACTIONS(2916), - [anon_sym_try] = ACTIONS(2916), - [sym_integer_literal] = ACTIONS(2914), - [aux_sym_string_literal_token1] = ACTIONS(2914), - [sym_char_literal] = ACTIONS(2914), - [anon_sym_true] = ACTIONS(2916), - [anon_sym_false] = ACTIONS(2916), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2916), - [sym_super] = ACTIONS(2916), - [sym_crate] = ACTIONS(2916), - [sym_metavariable] = ACTIONS(2914), - [sym__raw_string_literal_start] = ACTIONS(2914), - [sym_float_literal] = ACTIONS(2914), + [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_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_safe] = 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(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [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(752)] = { [sym_line_comment] = STATE(752), [sym_block_comment] = STATE(752), - [ts_builtin_sym_end] = ACTIONS(2918), - [sym_identifier] = ACTIONS(2920), - [anon_sym_SEMI] = ACTIONS(2918), - [anon_sym_macro_rules_BANG] = ACTIONS(2918), - [anon_sym_LPAREN] = ACTIONS(2918), - [anon_sym_LBRACK] = ACTIONS(2918), - [anon_sym_LBRACE] = ACTIONS(2918), - [anon_sym_RBRACE] = ACTIONS(2918), - [anon_sym_STAR] = ACTIONS(2918), - [anon_sym_u8] = ACTIONS(2920), - [anon_sym_i8] = ACTIONS(2920), - [anon_sym_u16] = ACTIONS(2920), - [anon_sym_i16] = ACTIONS(2920), - [anon_sym_u32] = ACTIONS(2920), - [anon_sym_i32] = ACTIONS(2920), - [anon_sym_u64] = ACTIONS(2920), - [anon_sym_i64] = ACTIONS(2920), - [anon_sym_u128] = ACTIONS(2920), - [anon_sym_i128] = ACTIONS(2920), - [anon_sym_isize] = ACTIONS(2920), - [anon_sym_usize] = ACTIONS(2920), - [anon_sym_f32] = ACTIONS(2920), - [anon_sym_f64] = ACTIONS(2920), - [anon_sym_bool] = ACTIONS(2920), - [anon_sym_str] = ACTIONS(2920), - [anon_sym_char] = ACTIONS(2920), - [anon_sym_DASH] = ACTIONS(2918), - [anon_sym_BANG] = ACTIONS(2918), - [anon_sym_AMP] = ACTIONS(2918), - [anon_sym_PIPE] = ACTIONS(2918), - [anon_sym_LT] = ACTIONS(2918), - [anon_sym_DOT_DOT] = ACTIONS(2918), - [anon_sym_COLON_COLON] = ACTIONS(2918), - [anon_sym_POUND] = ACTIONS(2918), - [anon_sym_SQUOTE] = ACTIONS(2920), - [anon_sym_async] = ACTIONS(2920), - [anon_sym_break] = ACTIONS(2920), - [anon_sym_const] = ACTIONS(2920), - [anon_sym_continue] = ACTIONS(2920), - [anon_sym_default] = ACTIONS(2920), - [anon_sym_enum] = ACTIONS(2920), - [anon_sym_fn] = ACTIONS(2920), - [anon_sym_for] = ACTIONS(2920), - [anon_sym_gen] = ACTIONS(2920), - [anon_sym_if] = ACTIONS(2920), - [anon_sym_impl] = ACTIONS(2920), - [anon_sym_let] = ACTIONS(2920), - [anon_sym_loop] = ACTIONS(2920), - [anon_sym_match] = ACTIONS(2920), - [anon_sym_mod] = ACTIONS(2920), - [anon_sym_pub] = ACTIONS(2920), - [anon_sym_return] = ACTIONS(2920), - [anon_sym_static] = ACTIONS(2920), - [anon_sym_struct] = ACTIONS(2920), - [anon_sym_trait] = ACTIONS(2920), - [anon_sym_type] = ACTIONS(2920), - [anon_sym_union] = ACTIONS(2920), - [anon_sym_unsafe] = ACTIONS(2920), - [anon_sym_use] = ACTIONS(2920), - [anon_sym_while] = ACTIONS(2920), - [anon_sym_extern] = ACTIONS(2920), - [anon_sym_yield] = ACTIONS(2920), - [anon_sym_move] = ACTIONS(2920), - [anon_sym_try] = ACTIONS(2920), - [sym_integer_literal] = ACTIONS(2918), - [aux_sym_string_literal_token1] = ACTIONS(2918), - [sym_char_literal] = ACTIONS(2918), - [anon_sym_true] = ACTIONS(2920), - [anon_sym_false] = ACTIONS(2920), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2920), - [sym_super] = ACTIONS(2920), - [sym_crate] = ACTIONS(2920), - [sym_metavariable] = ACTIONS(2918), - [sym__raw_string_literal_start] = ACTIONS(2918), - [sym_float_literal] = ACTIONS(2918), + [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_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_safe] = 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(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [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(753)] = { [sym_line_comment] = STATE(753), [sym_block_comment] = STATE(753), - [ts_builtin_sym_end] = ACTIONS(2922), - [sym_identifier] = ACTIONS(2924), - [anon_sym_SEMI] = ACTIONS(2922), - [anon_sym_macro_rules_BANG] = ACTIONS(2922), - [anon_sym_LPAREN] = ACTIONS(2922), - [anon_sym_LBRACK] = ACTIONS(2922), - [anon_sym_LBRACE] = ACTIONS(2922), - [anon_sym_RBRACE] = ACTIONS(2922), - [anon_sym_STAR] = ACTIONS(2922), - [anon_sym_u8] = ACTIONS(2924), - [anon_sym_i8] = ACTIONS(2924), - [anon_sym_u16] = ACTIONS(2924), - [anon_sym_i16] = ACTIONS(2924), - [anon_sym_u32] = ACTIONS(2924), - [anon_sym_i32] = ACTIONS(2924), - [anon_sym_u64] = ACTIONS(2924), - [anon_sym_i64] = ACTIONS(2924), - [anon_sym_u128] = ACTIONS(2924), - [anon_sym_i128] = ACTIONS(2924), - [anon_sym_isize] = ACTIONS(2924), - [anon_sym_usize] = ACTIONS(2924), - [anon_sym_f32] = ACTIONS(2924), - [anon_sym_f64] = ACTIONS(2924), - [anon_sym_bool] = ACTIONS(2924), - [anon_sym_str] = ACTIONS(2924), - [anon_sym_char] = ACTIONS(2924), - [anon_sym_DASH] = ACTIONS(2922), - [anon_sym_BANG] = ACTIONS(2922), - [anon_sym_AMP] = ACTIONS(2922), - [anon_sym_PIPE] = ACTIONS(2922), - [anon_sym_LT] = ACTIONS(2922), - [anon_sym_DOT_DOT] = ACTIONS(2922), - [anon_sym_COLON_COLON] = ACTIONS(2922), - [anon_sym_POUND] = ACTIONS(2922), - [anon_sym_SQUOTE] = ACTIONS(2924), - [anon_sym_async] = ACTIONS(2924), - [anon_sym_break] = ACTIONS(2924), - [anon_sym_const] = ACTIONS(2924), - [anon_sym_continue] = ACTIONS(2924), - [anon_sym_default] = ACTIONS(2924), - [anon_sym_enum] = ACTIONS(2924), - [anon_sym_fn] = ACTIONS(2924), - [anon_sym_for] = ACTIONS(2924), - [anon_sym_gen] = ACTIONS(2924), - [anon_sym_if] = ACTIONS(2924), - [anon_sym_impl] = ACTIONS(2924), - [anon_sym_let] = ACTIONS(2924), - [anon_sym_loop] = ACTIONS(2924), - [anon_sym_match] = ACTIONS(2924), - [anon_sym_mod] = ACTIONS(2924), - [anon_sym_pub] = ACTIONS(2924), - [anon_sym_return] = ACTIONS(2924), - [anon_sym_static] = ACTIONS(2924), - [anon_sym_struct] = ACTIONS(2924), - [anon_sym_trait] = ACTIONS(2924), - [anon_sym_type] = ACTIONS(2924), - [anon_sym_union] = ACTIONS(2924), - [anon_sym_unsafe] = ACTIONS(2924), - [anon_sym_use] = ACTIONS(2924), - [anon_sym_while] = ACTIONS(2924), - [anon_sym_extern] = ACTIONS(2924), - [anon_sym_yield] = ACTIONS(2924), - [anon_sym_move] = ACTIONS(2924), - [anon_sym_try] = ACTIONS(2924), - [sym_integer_literal] = ACTIONS(2922), - [aux_sym_string_literal_token1] = ACTIONS(2922), - [sym_char_literal] = ACTIONS(2922), - [anon_sym_true] = ACTIONS(2924), - [anon_sym_false] = ACTIONS(2924), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2924), - [sym_super] = ACTIONS(2924), - [sym_crate] = ACTIONS(2924), - [sym_metavariable] = ACTIONS(2922), - [sym__raw_string_literal_start] = ACTIONS(2922), - [sym_float_literal] = ACTIONS(2922), + [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_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_safe] = 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(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [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(754)] = { [sym_line_comment] = STATE(754), [sym_block_comment] = STATE(754), - [ts_builtin_sym_end] = ACTIONS(2926), - [sym_identifier] = ACTIONS(2928), - [anon_sym_SEMI] = ACTIONS(2926), - [anon_sym_macro_rules_BANG] = ACTIONS(2926), - [anon_sym_LPAREN] = ACTIONS(2926), - [anon_sym_LBRACK] = ACTIONS(2926), - [anon_sym_LBRACE] = ACTIONS(2926), - [anon_sym_RBRACE] = ACTIONS(2926), - [anon_sym_STAR] = ACTIONS(2926), - [anon_sym_u8] = ACTIONS(2928), - [anon_sym_i8] = ACTIONS(2928), - [anon_sym_u16] = ACTIONS(2928), - [anon_sym_i16] = ACTIONS(2928), - [anon_sym_u32] = ACTIONS(2928), - [anon_sym_i32] = ACTIONS(2928), - [anon_sym_u64] = ACTIONS(2928), - [anon_sym_i64] = ACTIONS(2928), - [anon_sym_u128] = ACTIONS(2928), - [anon_sym_i128] = ACTIONS(2928), - [anon_sym_isize] = ACTIONS(2928), - [anon_sym_usize] = ACTIONS(2928), - [anon_sym_f32] = ACTIONS(2928), - [anon_sym_f64] = ACTIONS(2928), - [anon_sym_bool] = ACTIONS(2928), - [anon_sym_str] = ACTIONS(2928), - [anon_sym_char] = ACTIONS(2928), - [anon_sym_DASH] = ACTIONS(2926), - [anon_sym_BANG] = ACTIONS(2926), - [anon_sym_AMP] = ACTIONS(2926), - [anon_sym_PIPE] = ACTIONS(2926), - [anon_sym_LT] = ACTIONS(2926), - [anon_sym_DOT_DOT] = ACTIONS(2926), - [anon_sym_COLON_COLON] = ACTIONS(2926), - [anon_sym_POUND] = ACTIONS(2926), - [anon_sym_SQUOTE] = ACTIONS(2928), - [anon_sym_async] = ACTIONS(2928), - [anon_sym_break] = ACTIONS(2928), - [anon_sym_const] = ACTIONS(2928), - [anon_sym_continue] = ACTIONS(2928), - [anon_sym_default] = ACTIONS(2928), - [anon_sym_enum] = ACTIONS(2928), - [anon_sym_fn] = ACTIONS(2928), - [anon_sym_for] = ACTIONS(2928), - [anon_sym_gen] = ACTIONS(2928), - [anon_sym_if] = ACTIONS(2928), - [anon_sym_impl] = ACTIONS(2928), - [anon_sym_let] = ACTIONS(2928), - [anon_sym_loop] = ACTIONS(2928), - [anon_sym_match] = ACTIONS(2928), - [anon_sym_mod] = ACTIONS(2928), - [anon_sym_pub] = ACTIONS(2928), - [anon_sym_return] = ACTIONS(2928), - [anon_sym_static] = ACTIONS(2928), - [anon_sym_struct] = ACTIONS(2928), - [anon_sym_trait] = ACTIONS(2928), - [anon_sym_type] = ACTIONS(2928), - [anon_sym_union] = ACTIONS(2928), - [anon_sym_unsafe] = ACTIONS(2928), - [anon_sym_use] = ACTIONS(2928), - [anon_sym_while] = ACTIONS(2928), - [anon_sym_extern] = ACTIONS(2928), - [anon_sym_yield] = ACTIONS(2928), - [anon_sym_move] = ACTIONS(2928), - [anon_sym_try] = ACTIONS(2928), - [sym_integer_literal] = ACTIONS(2926), - [aux_sym_string_literal_token1] = ACTIONS(2926), - [sym_char_literal] = ACTIONS(2926), - [anon_sym_true] = ACTIONS(2928), - [anon_sym_false] = ACTIONS(2928), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2928), - [sym_super] = ACTIONS(2928), - [sym_crate] = ACTIONS(2928), - [sym_metavariable] = ACTIONS(2926), - [sym__raw_string_literal_start] = ACTIONS(2926), - [sym_float_literal] = ACTIONS(2926), + [ts_builtin_sym_end] = ACTIONS(2944), + [sym_identifier] = ACTIONS(2946), + [anon_sym_SEMI] = ACTIONS(2944), + [anon_sym_macro_rules_BANG] = ACTIONS(2944), + [anon_sym_LPAREN] = ACTIONS(2944), + [anon_sym_LBRACK] = ACTIONS(2944), + [anon_sym_LBRACE] = ACTIONS(2944), + [anon_sym_RBRACE] = ACTIONS(2944), + [anon_sym_STAR] = ACTIONS(2944), + [anon_sym_u8] = ACTIONS(2946), + [anon_sym_i8] = ACTIONS(2946), + [anon_sym_u16] = ACTIONS(2946), + [anon_sym_i16] = ACTIONS(2946), + [anon_sym_u32] = ACTIONS(2946), + [anon_sym_i32] = ACTIONS(2946), + [anon_sym_u64] = ACTIONS(2946), + [anon_sym_i64] = ACTIONS(2946), + [anon_sym_u128] = ACTIONS(2946), + [anon_sym_i128] = ACTIONS(2946), + [anon_sym_isize] = ACTIONS(2946), + [anon_sym_usize] = ACTIONS(2946), + [anon_sym_f32] = ACTIONS(2946), + [anon_sym_f64] = ACTIONS(2946), + [anon_sym_bool] = ACTIONS(2946), + [anon_sym_str] = ACTIONS(2946), + [anon_sym_char] = ACTIONS(2946), + [anon_sym_DASH] = ACTIONS(2944), + [anon_sym_BANG] = ACTIONS(2944), + [anon_sym_AMP] = ACTIONS(2944), + [anon_sym_PIPE] = ACTIONS(2944), + [anon_sym_LT] = ACTIONS(2944), + [anon_sym_DOT_DOT] = ACTIONS(2944), + [anon_sym_COLON_COLON] = ACTIONS(2944), + [anon_sym_POUND] = ACTIONS(2944), + [anon_sym_SQUOTE] = ACTIONS(2946), + [anon_sym_async] = ACTIONS(2946), + [anon_sym_break] = ACTIONS(2946), + [anon_sym_const] = ACTIONS(2946), + [anon_sym_continue] = ACTIONS(2946), + [anon_sym_default] = ACTIONS(2946), + [anon_sym_enum] = ACTIONS(2946), + [anon_sym_fn] = ACTIONS(2946), + [anon_sym_for] = ACTIONS(2946), + [anon_sym_gen] = ACTIONS(2946), + [anon_sym_if] = ACTIONS(2946), + [anon_sym_impl] = ACTIONS(2946), + [anon_sym_let] = ACTIONS(2946), + [anon_sym_loop] = ACTIONS(2946), + [anon_sym_match] = ACTIONS(2946), + [anon_sym_mod] = ACTIONS(2946), + [anon_sym_pub] = ACTIONS(2946), + [anon_sym_return] = ACTIONS(2946), + [anon_sym_static] = ACTIONS(2946), + [anon_sym_struct] = ACTIONS(2946), + [anon_sym_trait] = ACTIONS(2946), + [anon_sym_type] = ACTIONS(2946), + [anon_sym_union] = ACTIONS(2946), + [anon_sym_unsafe] = ACTIONS(2946), + [anon_sym_use] = ACTIONS(2946), + [anon_sym_while] = ACTIONS(2946), + [anon_sym_extern] = ACTIONS(2946), + [anon_sym_safe] = ACTIONS(2946), + [anon_sym_yield] = ACTIONS(2946), + [anon_sym_move] = ACTIONS(2946), + [anon_sym_try] = ACTIONS(2946), + [sym_integer_literal] = ACTIONS(2944), + [aux_sym_string_literal_token1] = ACTIONS(2944), + [sym_char_literal] = ACTIONS(2944), + [anon_sym_true] = ACTIONS(2946), + [anon_sym_false] = ACTIONS(2946), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(2946), + [sym_super] = ACTIONS(2946), + [sym_crate] = ACTIONS(2946), + [sym_metavariable] = ACTIONS(2944), + [sym__raw_string_literal_start] = ACTIONS(2944), + [sym_float_literal] = ACTIONS(2944), }, [STATE(755)] = { [sym_line_comment] = STATE(755), [sym_block_comment] = STATE(755), - [ts_builtin_sym_end] = ACTIONS(2930), - [sym_identifier] = ACTIONS(2932), - [anon_sym_SEMI] = ACTIONS(2930), - [anon_sym_macro_rules_BANG] = ACTIONS(2930), - [anon_sym_LPAREN] = ACTIONS(2930), - [anon_sym_LBRACK] = ACTIONS(2930), - [anon_sym_LBRACE] = ACTIONS(2930), - [anon_sym_RBRACE] = ACTIONS(2930), - [anon_sym_STAR] = ACTIONS(2930), - [anon_sym_u8] = ACTIONS(2932), - [anon_sym_i8] = ACTIONS(2932), - [anon_sym_u16] = ACTIONS(2932), - [anon_sym_i16] = ACTIONS(2932), - [anon_sym_u32] = ACTIONS(2932), - [anon_sym_i32] = ACTIONS(2932), - [anon_sym_u64] = ACTIONS(2932), - [anon_sym_i64] = ACTIONS(2932), - [anon_sym_u128] = ACTIONS(2932), - [anon_sym_i128] = ACTIONS(2932), - [anon_sym_isize] = ACTIONS(2932), - [anon_sym_usize] = ACTIONS(2932), - [anon_sym_f32] = ACTIONS(2932), - [anon_sym_f64] = ACTIONS(2932), - [anon_sym_bool] = ACTIONS(2932), - [anon_sym_str] = ACTIONS(2932), - [anon_sym_char] = ACTIONS(2932), - [anon_sym_DASH] = ACTIONS(2930), - [anon_sym_BANG] = ACTIONS(2930), - [anon_sym_AMP] = ACTIONS(2930), - [anon_sym_PIPE] = ACTIONS(2930), - [anon_sym_LT] = ACTIONS(2930), - [anon_sym_DOT_DOT] = ACTIONS(2930), - [anon_sym_COLON_COLON] = ACTIONS(2930), - [anon_sym_POUND] = ACTIONS(2930), - [anon_sym_SQUOTE] = ACTIONS(2932), - [anon_sym_async] = ACTIONS(2932), - [anon_sym_break] = ACTIONS(2932), - [anon_sym_const] = ACTIONS(2932), - [anon_sym_continue] = ACTIONS(2932), - [anon_sym_default] = ACTIONS(2932), - [anon_sym_enum] = ACTIONS(2932), - [anon_sym_fn] = ACTIONS(2932), - [anon_sym_for] = ACTIONS(2932), - [anon_sym_gen] = ACTIONS(2932), - [anon_sym_if] = ACTIONS(2932), - [anon_sym_impl] = ACTIONS(2932), - [anon_sym_let] = ACTIONS(2932), - [anon_sym_loop] = ACTIONS(2932), - [anon_sym_match] = ACTIONS(2932), - [anon_sym_mod] = ACTIONS(2932), - [anon_sym_pub] = ACTIONS(2932), - [anon_sym_return] = ACTIONS(2932), - [anon_sym_static] = ACTIONS(2932), - [anon_sym_struct] = ACTIONS(2932), - [anon_sym_trait] = ACTIONS(2932), - [anon_sym_type] = ACTIONS(2932), - [anon_sym_union] = ACTIONS(2932), - [anon_sym_unsafe] = ACTIONS(2932), - [anon_sym_use] = ACTIONS(2932), - [anon_sym_while] = ACTIONS(2932), - [anon_sym_extern] = ACTIONS(2932), - [anon_sym_yield] = ACTIONS(2932), - [anon_sym_move] = ACTIONS(2932), - [anon_sym_try] = ACTIONS(2932), - [sym_integer_literal] = ACTIONS(2930), - [aux_sym_string_literal_token1] = ACTIONS(2930), - [sym_char_literal] = ACTIONS(2930), - [anon_sym_true] = ACTIONS(2932), - [anon_sym_false] = ACTIONS(2932), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2932), - [sym_super] = ACTIONS(2932), - [sym_crate] = ACTIONS(2932), - [sym_metavariable] = ACTIONS(2930), - [sym__raw_string_literal_start] = ACTIONS(2930), - [sym_float_literal] = ACTIONS(2930), + [ts_builtin_sym_end] = ACTIONS(2948), + [sym_identifier] = ACTIONS(2950), + [anon_sym_SEMI] = ACTIONS(2948), + [anon_sym_macro_rules_BANG] = ACTIONS(2948), + [anon_sym_LPAREN] = ACTIONS(2948), + [anon_sym_LBRACK] = ACTIONS(2948), + [anon_sym_LBRACE] = ACTIONS(2948), + [anon_sym_RBRACE] = ACTIONS(2948), + [anon_sym_STAR] = ACTIONS(2948), + [anon_sym_u8] = ACTIONS(2950), + [anon_sym_i8] = ACTIONS(2950), + [anon_sym_u16] = ACTIONS(2950), + [anon_sym_i16] = ACTIONS(2950), + [anon_sym_u32] = ACTIONS(2950), + [anon_sym_i32] = ACTIONS(2950), + [anon_sym_u64] = ACTIONS(2950), + [anon_sym_i64] = ACTIONS(2950), + [anon_sym_u128] = ACTIONS(2950), + [anon_sym_i128] = ACTIONS(2950), + [anon_sym_isize] = ACTIONS(2950), + [anon_sym_usize] = ACTIONS(2950), + [anon_sym_f32] = ACTIONS(2950), + [anon_sym_f64] = ACTIONS(2950), + [anon_sym_bool] = ACTIONS(2950), + [anon_sym_str] = ACTIONS(2950), + [anon_sym_char] = ACTIONS(2950), + [anon_sym_DASH] = ACTIONS(2948), + [anon_sym_BANG] = ACTIONS(2948), + [anon_sym_AMP] = ACTIONS(2948), + [anon_sym_PIPE] = ACTIONS(2948), + [anon_sym_LT] = ACTIONS(2948), + [anon_sym_DOT_DOT] = ACTIONS(2948), + [anon_sym_COLON_COLON] = ACTIONS(2948), + [anon_sym_POUND] = ACTIONS(2948), + [anon_sym_SQUOTE] = ACTIONS(2950), + [anon_sym_async] = ACTIONS(2950), + [anon_sym_break] = ACTIONS(2950), + [anon_sym_const] = ACTIONS(2950), + [anon_sym_continue] = ACTIONS(2950), + [anon_sym_default] = ACTIONS(2950), + [anon_sym_enum] = ACTIONS(2950), + [anon_sym_fn] = ACTIONS(2950), + [anon_sym_for] = ACTIONS(2950), + [anon_sym_gen] = ACTIONS(2950), + [anon_sym_if] = ACTIONS(2950), + [anon_sym_impl] = ACTIONS(2950), + [anon_sym_let] = ACTIONS(2950), + [anon_sym_loop] = ACTIONS(2950), + [anon_sym_match] = ACTIONS(2950), + [anon_sym_mod] = ACTIONS(2950), + [anon_sym_pub] = ACTIONS(2950), + [anon_sym_return] = ACTIONS(2950), + [anon_sym_static] = ACTIONS(2950), + [anon_sym_struct] = ACTIONS(2950), + [anon_sym_trait] = ACTIONS(2950), + [anon_sym_type] = ACTIONS(2950), + [anon_sym_union] = ACTIONS(2950), + [anon_sym_unsafe] = ACTIONS(2950), + [anon_sym_use] = ACTIONS(2950), + [anon_sym_while] = ACTIONS(2950), + [anon_sym_extern] = ACTIONS(2950), + [anon_sym_safe] = ACTIONS(2950), + [anon_sym_yield] = ACTIONS(2950), + [anon_sym_move] = ACTIONS(2950), + [anon_sym_try] = ACTIONS(2950), + [sym_integer_literal] = ACTIONS(2948), + [aux_sym_string_literal_token1] = ACTIONS(2948), + [sym_char_literal] = ACTIONS(2948), + [anon_sym_true] = ACTIONS(2950), + [anon_sym_false] = ACTIONS(2950), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(2950), + [sym_super] = ACTIONS(2950), + [sym_crate] = ACTIONS(2950), + [sym_metavariable] = ACTIONS(2948), + [sym__raw_string_literal_start] = ACTIONS(2948), + [sym_float_literal] = ACTIONS(2948), }, [STATE(756)] = { [sym_line_comment] = STATE(756), [sym_block_comment] = STATE(756), - [ts_builtin_sym_end] = ACTIONS(2934), - [sym_identifier] = ACTIONS(2936), - [anon_sym_SEMI] = ACTIONS(2934), - [anon_sym_macro_rules_BANG] = ACTIONS(2934), - [anon_sym_LPAREN] = ACTIONS(2934), - [anon_sym_LBRACK] = ACTIONS(2934), - [anon_sym_LBRACE] = ACTIONS(2934), - [anon_sym_RBRACE] = ACTIONS(2934), - [anon_sym_STAR] = ACTIONS(2934), - [anon_sym_u8] = ACTIONS(2936), - [anon_sym_i8] = ACTIONS(2936), - [anon_sym_u16] = ACTIONS(2936), - [anon_sym_i16] = ACTIONS(2936), - [anon_sym_u32] = ACTIONS(2936), - [anon_sym_i32] = ACTIONS(2936), - [anon_sym_u64] = ACTIONS(2936), - [anon_sym_i64] = ACTIONS(2936), - [anon_sym_u128] = ACTIONS(2936), - [anon_sym_i128] = ACTIONS(2936), - [anon_sym_isize] = ACTIONS(2936), - [anon_sym_usize] = ACTIONS(2936), - [anon_sym_f32] = ACTIONS(2936), - [anon_sym_f64] = ACTIONS(2936), - [anon_sym_bool] = ACTIONS(2936), - [anon_sym_str] = ACTIONS(2936), - [anon_sym_char] = ACTIONS(2936), - [anon_sym_DASH] = ACTIONS(2934), - [anon_sym_BANG] = ACTIONS(2934), - [anon_sym_AMP] = ACTIONS(2934), - [anon_sym_PIPE] = ACTIONS(2934), - [anon_sym_LT] = ACTIONS(2934), - [anon_sym_DOT_DOT] = ACTIONS(2934), - [anon_sym_COLON_COLON] = ACTIONS(2934), - [anon_sym_POUND] = ACTIONS(2934), - [anon_sym_SQUOTE] = ACTIONS(2936), - [anon_sym_async] = ACTIONS(2936), - [anon_sym_break] = ACTIONS(2936), - [anon_sym_const] = ACTIONS(2936), - [anon_sym_continue] = ACTIONS(2936), - [anon_sym_default] = ACTIONS(2936), - [anon_sym_enum] = ACTIONS(2936), - [anon_sym_fn] = ACTIONS(2936), - [anon_sym_for] = ACTIONS(2936), - [anon_sym_gen] = ACTIONS(2936), - [anon_sym_if] = ACTIONS(2936), - [anon_sym_impl] = ACTIONS(2936), - [anon_sym_let] = ACTIONS(2936), - [anon_sym_loop] = ACTIONS(2936), - [anon_sym_match] = ACTIONS(2936), - [anon_sym_mod] = ACTIONS(2936), - [anon_sym_pub] = ACTIONS(2936), - [anon_sym_return] = ACTIONS(2936), - [anon_sym_static] = ACTIONS(2936), - [anon_sym_struct] = ACTIONS(2936), - [anon_sym_trait] = ACTIONS(2936), - [anon_sym_type] = ACTIONS(2936), - [anon_sym_union] = ACTIONS(2936), - [anon_sym_unsafe] = ACTIONS(2936), - [anon_sym_use] = ACTIONS(2936), - [anon_sym_while] = ACTIONS(2936), - [anon_sym_extern] = ACTIONS(2936), - [anon_sym_yield] = ACTIONS(2936), - [anon_sym_move] = ACTIONS(2936), - [anon_sym_try] = ACTIONS(2936), - [sym_integer_literal] = ACTIONS(2934), - [aux_sym_string_literal_token1] = ACTIONS(2934), - [sym_char_literal] = ACTIONS(2934), - [anon_sym_true] = ACTIONS(2936), - [anon_sym_false] = ACTIONS(2936), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2936), - [sym_super] = ACTIONS(2936), - [sym_crate] = ACTIONS(2936), - [sym_metavariable] = ACTIONS(2934), - [sym__raw_string_literal_start] = ACTIONS(2934), - [sym_float_literal] = ACTIONS(2934), + [ts_builtin_sym_end] = ACTIONS(2952), + [sym_identifier] = ACTIONS(2954), + [anon_sym_SEMI] = ACTIONS(2952), + [anon_sym_macro_rules_BANG] = ACTIONS(2952), + [anon_sym_LPAREN] = ACTIONS(2952), + [anon_sym_LBRACK] = ACTIONS(2952), + [anon_sym_LBRACE] = ACTIONS(2952), + [anon_sym_RBRACE] = ACTIONS(2952), + [anon_sym_STAR] = ACTIONS(2952), + [anon_sym_u8] = ACTIONS(2954), + [anon_sym_i8] = ACTIONS(2954), + [anon_sym_u16] = ACTIONS(2954), + [anon_sym_i16] = ACTIONS(2954), + [anon_sym_u32] = ACTIONS(2954), + [anon_sym_i32] = ACTIONS(2954), + [anon_sym_u64] = ACTIONS(2954), + [anon_sym_i64] = ACTIONS(2954), + [anon_sym_u128] = ACTIONS(2954), + [anon_sym_i128] = ACTIONS(2954), + [anon_sym_isize] = ACTIONS(2954), + [anon_sym_usize] = ACTIONS(2954), + [anon_sym_f32] = ACTIONS(2954), + [anon_sym_f64] = ACTIONS(2954), + [anon_sym_bool] = ACTIONS(2954), + [anon_sym_str] = ACTIONS(2954), + [anon_sym_char] = ACTIONS(2954), + [anon_sym_DASH] = ACTIONS(2952), + [anon_sym_BANG] = ACTIONS(2952), + [anon_sym_AMP] = ACTIONS(2952), + [anon_sym_PIPE] = ACTIONS(2952), + [anon_sym_LT] = ACTIONS(2952), + [anon_sym_DOT_DOT] = ACTIONS(2952), + [anon_sym_COLON_COLON] = ACTIONS(2952), + [anon_sym_POUND] = ACTIONS(2952), + [anon_sym_SQUOTE] = ACTIONS(2954), + [anon_sym_async] = ACTIONS(2954), + [anon_sym_break] = ACTIONS(2954), + [anon_sym_const] = ACTIONS(2954), + [anon_sym_continue] = ACTIONS(2954), + [anon_sym_default] = ACTIONS(2954), + [anon_sym_enum] = ACTIONS(2954), + [anon_sym_fn] = ACTIONS(2954), + [anon_sym_for] = ACTIONS(2954), + [anon_sym_gen] = ACTIONS(2954), + [anon_sym_if] = ACTIONS(2954), + [anon_sym_impl] = ACTIONS(2954), + [anon_sym_let] = ACTIONS(2954), + [anon_sym_loop] = ACTIONS(2954), + [anon_sym_match] = ACTIONS(2954), + [anon_sym_mod] = ACTIONS(2954), + [anon_sym_pub] = ACTIONS(2954), + [anon_sym_return] = ACTIONS(2954), + [anon_sym_static] = ACTIONS(2954), + [anon_sym_struct] = ACTIONS(2954), + [anon_sym_trait] = ACTIONS(2954), + [anon_sym_type] = ACTIONS(2954), + [anon_sym_union] = ACTIONS(2954), + [anon_sym_unsafe] = ACTIONS(2954), + [anon_sym_use] = ACTIONS(2954), + [anon_sym_while] = ACTIONS(2954), + [anon_sym_extern] = ACTIONS(2954), + [anon_sym_safe] = ACTIONS(2954), + [anon_sym_yield] = ACTIONS(2954), + [anon_sym_move] = ACTIONS(2954), + [anon_sym_try] = ACTIONS(2954), + [sym_integer_literal] = ACTIONS(2952), + [aux_sym_string_literal_token1] = ACTIONS(2952), + [sym_char_literal] = ACTIONS(2952), + [anon_sym_true] = ACTIONS(2954), + [anon_sym_false] = ACTIONS(2954), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(2954), + [sym_super] = ACTIONS(2954), + [sym_crate] = ACTIONS(2954), + [sym_metavariable] = ACTIONS(2952), + [sym__raw_string_literal_start] = ACTIONS(2952), + [sym_float_literal] = ACTIONS(2952), }, [STATE(757)] = { [sym_line_comment] = STATE(757), [sym_block_comment] = STATE(757), - [ts_builtin_sym_end] = ACTIONS(2938), - [sym_identifier] = ACTIONS(2940), - [anon_sym_SEMI] = ACTIONS(2938), - [anon_sym_macro_rules_BANG] = ACTIONS(2938), - [anon_sym_LPAREN] = ACTIONS(2938), - [anon_sym_LBRACK] = ACTIONS(2938), - [anon_sym_LBRACE] = ACTIONS(2938), - [anon_sym_RBRACE] = ACTIONS(2938), - [anon_sym_STAR] = ACTIONS(2938), - [anon_sym_u8] = ACTIONS(2940), - [anon_sym_i8] = ACTIONS(2940), - [anon_sym_u16] = ACTIONS(2940), - [anon_sym_i16] = ACTIONS(2940), - [anon_sym_u32] = ACTIONS(2940), - [anon_sym_i32] = ACTIONS(2940), - [anon_sym_u64] = ACTIONS(2940), - [anon_sym_i64] = ACTIONS(2940), - [anon_sym_u128] = ACTIONS(2940), - [anon_sym_i128] = ACTIONS(2940), - [anon_sym_isize] = ACTIONS(2940), - [anon_sym_usize] = ACTIONS(2940), - [anon_sym_f32] = ACTIONS(2940), - [anon_sym_f64] = ACTIONS(2940), - [anon_sym_bool] = ACTIONS(2940), - [anon_sym_str] = ACTIONS(2940), - [anon_sym_char] = ACTIONS(2940), - [anon_sym_DASH] = ACTIONS(2938), - [anon_sym_BANG] = ACTIONS(2938), - [anon_sym_AMP] = ACTIONS(2938), - [anon_sym_PIPE] = ACTIONS(2938), - [anon_sym_LT] = ACTIONS(2938), - [anon_sym_DOT_DOT] = ACTIONS(2938), - [anon_sym_COLON_COLON] = ACTIONS(2938), - [anon_sym_POUND] = ACTIONS(2938), - [anon_sym_SQUOTE] = ACTIONS(2940), - [anon_sym_async] = ACTIONS(2940), - [anon_sym_break] = ACTIONS(2940), - [anon_sym_const] = ACTIONS(2940), - [anon_sym_continue] = ACTIONS(2940), - [anon_sym_default] = ACTIONS(2940), - [anon_sym_enum] = ACTIONS(2940), - [anon_sym_fn] = ACTIONS(2940), - [anon_sym_for] = ACTIONS(2940), - [anon_sym_gen] = ACTIONS(2940), - [anon_sym_if] = ACTIONS(2940), - [anon_sym_impl] = ACTIONS(2940), - [anon_sym_let] = ACTIONS(2940), - [anon_sym_loop] = ACTIONS(2940), - [anon_sym_match] = ACTIONS(2940), - [anon_sym_mod] = ACTIONS(2940), - [anon_sym_pub] = ACTIONS(2940), - [anon_sym_return] = ACTIONS(2940), - [anon_sym_static] = ACTIONS(2940), - [anon_sym_struct] = ACTIONS(2940), - [anon_sym_trait] = ACTIONS(2940), - [anon_sym_type] = ACTIONS(2940), - [anon_sym_union] = ACTIONS(2940), - [anon_sym_unsafe] = ACTIONS(2940), - [anon_sym_use] = ACTIONS(2940), - [anon_sym_while] = ACTIONS(2940), - [anon_sym_extern] = ACTIONS(2940), - [anon_sym_yield] = ACTIONS(2940), - [anon_sym_move] = ACTIONS(2940), - [anon_sym_try] = ACTIONS(2940), - [sym_integer_literal] = ACTIONS(2938), - [aux_sym_string_literal_token1] = ACTIONS(2938), - [sym_char_literal] = ACTIONS(2938), - [anon_sym_true] = ACTIONS(2940), - [anon_sym_false] = ACTIONS(2940), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2940), - [sym_super] = ACTIONS(2940), - [sym_crate] = ACTIONS(2940), - [sym_metavariable] = ACTIONS(2938), - [sym__raw_string_literal_start] = ACTIONS(2938), - [sym_float_literal] = ACTIONS(2938), + [ts_builtin_sym_end] = ACTIONS(2956), + [sym_identifier] = ACTIONS(2958), + [anon_sym_SEMI] = ACTIONS(2956), + [anon_sym_macro_rules_BANG] = ACTIONS(2956), + [anon_sym_LPAREN] = ACTIONS(2956), + [anon_sym_LBRACK] = ACTIONS(2956), + [anon_sym_LBRACE] = ACTIONS(2956), + [anon_sym_RBRACE] = ACTIONS(2956), + [anon_sym_STAR] = ACTIONS(2956), + [anon_sym_u8] = ACTIONS(2958), + [anon_sym_i8] = ACTIONS(2958), + [anon_sym_u16] = ACTIONS(2958), + [anon_sym_i16] = ACTIONS(2958), + [anon_sym_u32] = ACTIONS(2958), + [anon_sym_i32] = ACTIONS(2958), + [anon_sym_u64] = ACTIONS(2958), + [anon_sym_i64] = ACTIONS(2958), + [anon_sym_u128] = ACTIONS(2958), + [anon_sym_i128] = ACTIONS(2958), + [anon_sym_isize] = ACTIONS(2958), + [anon_sym_usize] = ACTIONS(2958), + [anon_sym_f32] = ACTIONS(2958), + [anon_sym_f64] = ACTIONS(2958), + [anon_sym_bool] = ACTIONS(2958), + [anon_sym_str] = ACTIONS(2958), + [anon_sym_char] = ACTIONS(2958), + [anon_sym_DASH] = ACTIONS(2956), + [anon_sym_BANG] = ACTIONS(2956), + [anon_sym_AMP] = ACTIONS(2956), + [anon_sym_PIPE] = ACTIONS(2956), + [anon_sym_LT] = ACTIONS(2956), + [anon_sym_DOT_DOT] = ACTIONS(2956), + [anon_sym_COLON_COLON] = ACTIONS(2956), + [anon_sym_POUND] = ACTIONS(2956), + [anon_sym_SQUOTE] = ACTIONS(2958), + [anon_sym_async] = ACTIONS(2958), + [anon_sym_break] = ACTIONS(2958), + [anon_sym_const] = ACTIONS(2958), + [anon_sym_continue] = ACTIONS(2958), + [anon_sym_default] = ACTIONS(2958), + [anon_sym_enum] = ACTIONS(2958), + [anon_sym_fn] = ACTIONS(2958), + [anon_sym_for] = ACTIONS(2958), + [anon_sym_gen] = ACTIONS(2958), + [anon_sym_if] = ACTIONS(2958), + [anon_sym_impl] = ACTIONS(2958), + [anon_sym_let] = ACTIONS(2958), + [anon_sym_loop] = ACTIONS(2958), + [anon_sym_match] = ACTIONS(2958), + [anon_sym_mod] = ACTIONS(2958), + [anon_sym_pub] = ACTIONS(2958), + [anon_sym_return] = ACTIONS(2958), + [anon_sym_static] = ACTIONS(2958), + [anon_sym_struct] = ACTIONS(2958), + [anon_sym_trait] = ACTIONS(2958), + [anon_sym_type] = ACTIONS(2958), + [anon_sym_union] = ACTIONS(2958), + [anon_sym_unsafe] = ACTIONS(2958), + [anon_sym_use] = ACTIONS(2958), + [anon_sym_while] = ACTIONS(2958), + [anon_sym_extern] = ACTIONS(2958), + [anon_sym_safe] = ACTIONS(2958), + [anon_sym_yield] = ACTIONS(2958), + [anon_sym_move] = ACTIONS(2958), + [anon_sym_try] = ACTIONS(2958), + [sym_integer_literal] = ACTIONS(2956), + [aux_sym_string_literal_token1] = ACTIONS(2956), + [sym_char_literal] = ACTIONS(2956), + [anon_sym_true] = ACTIONS(2958), + [anon_sym_false] = ACTIONS(2958), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(2958), + [sym_super] = ACTIONS(2958), + [sym_crate] = ACTIONS(2958), + [sym_metavariable] = ACTIONS(2956), + [sym__raw_string_literal_start] = ACTIONS(2956), + [sym_float_literal] = ACTIONS(2956), }, [STATE(758)] = { [sym_line_comment] = STATE(758), [sym_block_comment] = STATE(758), - [ts_builtin_sym_end] = ACTIONS(2942), - [sym_identifier] = ACTIONS(2944), - [anon_sym_SEMI] = ACTIONS(2942), - [anon_sym_macro_rules_BANG] = ACTIONS(2942), - [anon_sym_LPAREN] = ACTIONS(2942), - [anon_sym_LBRACK] = ACTIONS(2942), - [anon_sym_LBRACE] = ACTIONS(2942), - [anon_sym_RBRACE] = ACTIONS(2942), - [anon_sym_STAR] = ACTIONS(2942), - [anon_sym_u8] = ACTIONS(2944), - [anon_sym_i8] = ACTIONS(2944), - [anon_sym_u16] = ACTIONS(2944), - [anon_sym_i16] = ACTIONS(2944), - [anon_sym_u32] = ACTIONS(2944), - [anon_sym_i32] = ACTIONS(2944), - [anon_sym_u64] = ACTIONS(2944), - [anon_sym_i64] = ACTIONS(2944), - [anon_sym_u128] = ACTIONS(2944), - [anon_sym_i128] = ACTIONS(2944), - [anon_sym_isize] = ACTIONS(2944), - [anon_sym_usize] = ACTIONS(2944), - [anon_sym_f32] = ACTIONS(2944), - [anon_sym_f64] = ACTIONS(2944), - [anon_sym_bool] = ACTIONS(2944), - [anon_sym_str] = ACTIONS(2944), - [anon_sym_char] = ACTIONS(2944), - [anon_sym_DASH] = ACTIONS(2942), - [anon_sym_BANG] = ACTIONS(2942), - [anon_sym_AMP] = ACTIONS(2942), - [anon_sym_PIPE] = ACTIONS(2942), - [anon_sym_LT] = ACTIONS(2942), - [anon_sym_DOT_DOT] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(2942), - [anon_sym_POUND] = ACTIONS(2942), - [anon_sym_SQUOTE] = ACTIONS(2944), - [anon_sym_async] = ACTIONS(2944), - [anon_sym_break] = ACTIONS(2944), - [anon_sym_const] = ACTIONS(2944), - [anon_sym_continue] = ACTIONS(2944), - [anon_sym_default] = ACTIONS(2944), - [anon_sym_enum] = ACTIONS(2944), - [anon_sym_fn] = ACTIONS(2944), - [anon_sym_for] = ACTIONS(2944), - [anon_sym_gen] = ACTIONS(2944), - [anon_sym_if] = ACTIONS(2944), - [anon_sym_impl] = ACTIONS(2944), - [anon_sym_let] = ACTIONS(2944), - [anon_sym_loop] = ACTIONS(2944), - [anon_sym_match] = ACTIONS(2944), - [anon_sym_mod] = ACTIONS(2944), - [anon_sym_pub] = ACTIONS(2944), - [anon_sym_return] = ACTIONS(2944), - [anon_sym_static] = ACTIONS(2944), - [anon_sym_struct] = ACTIONS(2944), - [anon_sym_trait] = ACTIONS(2944), - [anon_sym_type] = ACTIONS(2944), - [anon_sym_union] = ACTIONS(2944), - [anon_sym_unsafe] = ACTIONS(2944), - [anon_sym_use] = ACTIONS(2944), - [anon_sym_while] = ACTIONS(2944), - [anon_sym_extern] = ACTIONS(2944), - [anon_sym_yield] = ACTIONS(2944), - [anon_sym_move] = ACTIONS(2944), - [anon_sym_try] = ACTIONS(2944), - [sym_integer_literal] = ACTIONS(2942), - [aux_sym_string_literal_token1] = ACTIONS(2942), - [sym_char_literal] = ACTIONS(2942), - [anon_sym_true] = ACTIONS(2944), - [anon_sym_false] = ACTIONS(2944), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2944), - [sym_super] = ACTIONS(2944), - [sym_crate] = ACTIONS(2944), - [sym_metavariable] = ACTIONS(2942), - [sym__raw_string_literal_start] = ACTIONS(2942), - [sym_float_literal] = ACTIONS(2942), + [ts_builtin_sym_end] = ACTIONS(2960), + [sym_identifier] = ACTIONS(2962), + [anon_sym_SEMI] = ACTIONS(2960), + [anon_sym_macro_rules_BANG] = ACTIONS(2960), + [anon_sym_LPAREN] = ACTIONS(2960), + [anon_sym_LBRACK] = ACTIONS(2960), + [anon_sym_LBRACE] = ACTIONS(2960), + [anon_sym_RBRACE] = ACTIONS(2960), + [anon_sym_STAR] = ACTIONS(2960), + [anon_sym_u8] = ACTIONS(2962), + [anon_sym_i8] = ACTIONS(2962), + [anon_sym_u16] = ACTIONS(2962), + [anon_sym_i16] = ACTIONS(2962), + [anon_sym_u32] = ACTIONS(2962), + [anon_sym_i32] = ACTIONS(2962), + [anon_sym_u64] = ACTIONS(2962), + [anon_sym_i64] = ACTIONS(2962), + [anon_sym_u128] = ACTIONS(2962), + [anon_sym_i128] = ACTIONS(2962), + [anon_sym_isize] = ACTIONS(2962), + [anon_sym_usize] = ACTIONS(2962), + [anon_sym_f32] = ACTIONS(2962), + [anon_sym_f64] = ACTIONS(2962), + [anon_sym_bool] = ACTIONS(2962), + [anon_sym_str] = ACTIONS(2962), + [anon_sym_char] = ACTIONS(2962), + [anon_sym_DASH] = ACTIONS(2960), + [anon_sym_BANG] = ACTIONS(2960), + [anon_sym_AMP] = ACTIONS(2960), + [anon_sym_PIPE] = ACTIONS(2960), + [anon_sym_LT] = ACTIONS(2960), + [anon_sym_DOT_DOT] = ACTIONS(2960), + [anon_sym_COLON_COLON] = ACTIONS(2960), + [anon_sym_POUND] = ACTIONS(2960), + [anon_sym_SQUOTE] = ACTIONS(2962), + [anon_sym_async] = ACTIONS(2962), + [anon_sym_break] = ACTIONS(2962), + [anon_sym_const] = ACTIONS(2962), + [anon_sym_continue] = ACTIONS(2962), + [anon_sym_default] = ACTIONS(2962), + [anon_sym_enum] = ACTIONS(2962), + [anon_sym_fn] = ACTIONS(2962), + [anon_sym_for] = ACTIONS(2962), + [anon_sym_gen] = ACTIONS(2962), + [anon_sym_if] = ACTIONS(2962), + [anon_sym_impl] = ACTIONS(2962), + [anon_sym_let] = ACTIONS(2962), + [anon_sym_loop] = ACTIONS(2962), + [anon_sym_match] = ACTIONS(2962), + [anon_sym_mod] = ACTIONS(2962), + [anon_sym_pub] = ACTIONS(2962), + [anon_sym_return] = ACTIONS(2962), + [anon_sym_static] = ACTIONS(2962), + [anon_sym_struct] = ACTIONS(2962), + [anon_sym_trait] = ACTIONS(2962), + [anon_sym_type] = ACTIONS(2962), + [anon_sym_union] = ACTIONS(2962), + [anon_sym_unsafe] = ACTIONS(2962), + [anon_sym_use] = ACTIONS(2962), + [anon_sym_while] = ACTIONS(2962), + [anon_sym_extern] = ACTIONS(2962), + [anon_sym_safe] = ACTIONS(2962), + [anon_sym_yield] = ACTIONS(2962), + [anon_sym_move] = ACTIONS(2962), + [anon_sym_try] = ACTIONS(2962), + [sym_integer_literal] = ACTIONS(2960), + [aux_sym_string_literal_token1] = ACTIONS(2960), + [sym_char_literal] = ACTIONS(2960), + [anon_sym_true] = ACTIONS(2962), + [anon_sym_false] = ACTIONS(2962), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(2962), + [sym_super] = ACTIONS(2962), + [sym_crate] = ACTIONS(2962), + [sym_metavariable] = ACTIONS(2960), + [sym__raw_string_literal_start] = ACTIONS(2960), + [sym_float_literal] = ACTIONS(2960), }, [STATE(759)] = { [sym_line_comment] = STATE(759), [sym_block_comment] = STATE(759), - [ts_builtin_sym_end] = ACTIONS(2946), - [sym_identifier] = ACTIONS(2948), - [anon_sym_SEMI] = ACTIONS(2946), - [anon_sym_macro_rules_BANG] = ACTIONS(2946), - [anon_sym_LPAREN] = ACTIONS(2946), - [anon_sym_LBRACK] = ACTIONS(2946), - [anon_sym_LBRACE] = ACTIONS(2946), - [anon_sym_RBRACE] = ACTIONS(2946), - [anon_sym_STAR] = ACTIONS(2946), - [anon_sym_u8] = ACTIONS(2948), - [anon_sym_i8] = ACTIONS(2948), - [anon_sym_u16] = ACTIONS(2948), - [anon_sym_i16] = ACTIONS(2948), - [anon_sym_u32] = ACTIONS(2948), - [anon_sym_i32] = ACTIONS(2948), - [anon_sym_u64] = ACTIONS(2948), - [anon_sym_i64] = ACTIONS(2948), - [anon_sym_u128] = ACTIONS(2948), - [anon_sym_i128] = ACTIONS(2948), - [anon_sym_isize] = ACTIONS(2948), - [anon_sym_usize] = ACTIONS(2948), - [anon_sym_f32] = ACTIONS(2948), - [anon_sym_f64] = ACTIONS(2948), - [anon_sym_bool] = ACTIONS(2948), - [anon_sym_str] = ACTIONS(2948), - [anon_sym_char] = ACTIONS(2948), - [anon_sym_DASH] = ACTIONS(2946), - [anon_sym_BANG] = ACTIONS(2946), - [anon_sym_AMP] = ACTIONS(2946), - [anon_sym_PIPE] = ACTIONS(2946), - [anon_sym_LT] = ACTIONS(2946), - [anon_sym_DOT_DOT] = ACTIONS(2946), - [anon_sym_COLON_COLON] = ACTIONS(2946), - [anon_sym_POUND] = ACTIONS(2946), - [anon_sym_SQUOTE] = ACTIONS(2948), - [anon_sym_async] = ACTIONS(2948), - [anon_sym_break] = ACTIONS(2948), - [anon_sym_const] = ACTIONS(2948), - [anon_sym_continue] = ACTIONS(2948), - [anon_sym_default] = ACTIONS(2948), - [anon_sym_enum] = ACTIONS(2948), - [anon_sym_fn] = ACTIONS(2948), - [anon_sym_for] = ACTIONS(2948), - [anon_sym_gen] = ACTIONS(2948), - [anon_sym_if] = ACTIONS(2948), - [anon_sym_impl] = ACTIONS(2948), - [anon_sym_let] = ACTIONS(2948), - [anon_sym_loop] = ACTIONS(2948), - [anon_sym_match] = ACTIONS(2948), - [anon_sym_mod] = ACTIONS(2948), - [anon_sym_pub] = ACTIONS(2948), - [anon_sym_return] = ACTIONS(2948), - [anon_sym_static] = ACTIONS(2948), - [anon_sym_struct] = ACTIONS(2948), - [anon_sym_trait] = ACTIONS(2948), - [anon_sym_type] = ACTIONS(2948), - [anon_sym_union] = ACTIONS(2948), - [anon_sym_unsafe] = ACTIONS(2948), - [anon_sym_use] = ACTIONS(2948), - [anon_sym_while] = ACTIONS(2948), - [anon_sym_extern] = ACTIONS(2948), - [anon_sym_yield] = ACTIONS(2948), - [anon_sym_move] = ACTIONS(2948), - [anon_sym_try] = ACTIONS(2948), - [sym_integer_literal] = ACTIONS(2946), - [aux_sym_string_literal_token1] = ACTIONS(2946), - [sym_char_literal] = ACTIONS(2946), - [anon_sym_true] = ACTIONS(2948), - [anon_sym_false] = ACTIONS(2948), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2948), - [sym_super] = ACTIONS(2948), - [sym_crate] = ACTIONS(2948), - [sym_metavariable] = ACTIONS(2946), - [sym__raw_string_literal_start] = ACTIONS(2946), - [sym_float_literal] = ACTIONS(2946), + [ts_builtin_sym_end] = ACTIONS(2964), + [sym_identifier] = ACTIONS(2966), + [anon_sym_SEMI] = ACTIONS(2964), + [anon_sym_macro_rules_BANG] = ACTIONS(2964), + [anon_sym_LPAREN] = ACTIONS(2964), + [anon_sym_LBRACK] = ACTIONS(2964), + [anon_sym_LBRACE] = ACTIONS(2964), + [anon_sym_RBRACE] = ACTIONS(2964), + [anon_sym_STAR] = ACTIONS(2964), + [anon_sym_u8] = ACTIONS(2966), + [anon_sym_i8] = ACTIONS(2966), + [anon_sym_u16] = ACTIONS(2966), + [anon_sym_i16] = ACTIONS(2966), + [anon_sym_u32] = ACTIONS(2966), + [anon_sym_i32] = ACTIONS(2966), + [anon_sym_u64] = ACTIONS(2966), + [anon_sym_i64] = ACTIONS(2966), + [anon_sym_u128] = ACTIONS(2966), + [anon_sym_i128] = ACTIONS(2966), + [anon_sym_isize] = ACTIONS(2966), + [anon_sym_usize] = ACTIONS(2966), + [anon_sym_f32] = ACTIONS(2966), + [anon_sym_f64] = ACTIONS(2966), + [anon_sym_bool] = ACTIONS(2966), + [anon_sym_str] = ACTIONS(2966), + [anon_sym_char] = ACTIONS(2966), + [anon_sym_DASH] = ACTIONS(2964), + [anon_sym_BANG] = ACTIONS(2964), + [anon_sym_AMP] = ACTIONS(2964), + [anon_sym_PIPE] = ACTIONS(2964), + [anon_sym_LT] = ACTIONS(2964), + [anon_sym_DOT_DOT] = ACTIONS(2964), + [anon_sym_COLON_COLON] = ACTIONS(2964), + [anon_sym_POUND] = ACTIONS(2964), + [anon_sym_SQUOTE] = ACTIONS(2966), + [anon_sym_async] = ACTIONS(2966), + [anon_sym_break] = ACTIONS(2966), + [anon_sym_const] = ACTIONS(2966), + [anon_sym_continue] = ACTIONS(2966), + [anon_sym_default] = ACTIONS(2966), + [anon_sym_enum] = ACTIONS(2966), + [anon_sym_fn] = ACTIONS(2966), + [anon_sym_for] = ACTIONS(2966), + [anon_sym_gen] = ACTIONS(2966), + [anon_sym_if] = ACTIONS(2966), + [anon_sym_impl] = ACTIONS(2966), + [anon_sym_let] = ACTIONS(2966), + [anon_sym_loop] = ACTIONS(2966), + [anon_sym_match] = ACTIONS(2966), + [anon_sym_mod] = ACTIONS(2966), + [anon_sym_pub] = ACTIONS(2966), + [anon_sym_return] = ACTIONS(2966), + [anon_sym_static] = ACTIONS(2966), + [anon_sym_struct] = ACTIONS(2966), + [anon_sym_trait] = ACTIONS(2966), + [anon_sym_type] = ACTIONS(2966), + [anon_sym_union] = ACTIONS(2966), + [anon_sym_unsafe] = ACTIONS(2966), + [anon_sym_use] = ACTIONS(2966), + [anon_sym_while] = ACTIONS(2966), + [anon_sym_extern] = ACTIONS(2966), + [anon_sym_safe] = ACTIONS(2966), + [anon_sym_yield] = ACTIONS(2966), + [anon_sym_move] = ACTIONS(2966), + [anon_sym_try] = ACTIONS(2966), + [sym_integer_literal] = ACTIONS(2964), + [aux_sym_string_literal_token1] = ACTIONS(2964), + [sym_char_literal] = ACTIONS(2964), + [anon_sym_true] = ACTIONS(2966), + [anon_sym_false] = ACTIONS(2966), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(2966), + [sym_super] = ACTIONS(2966), + [sym_crate] = ACTIONS(2966), + [sym_metavariable] = ACTIONS(2964), + [sym__raw_string_literal_start] = ACTIONS(2964), + [sym_float_literal] = ACTIONS(2964), }, [STATE(760)] = { [sym_line_comment] = STATE(760), [sym_block_comment] = STATE(760), - [ts_builtin_sym_end] = ACTIONS(2950), - [sym_identifier] = ACTIONS(2952), - [anon_sym_SEMI] = ACTIONS(2950), - [anon_sym_macro_rules_BANG] = ACTIONS(2950), - [anon_sym_LPAREN] = ACTIONS(2950), - [anon_sym_LBRACK] = ACTIONS(2950), - [anon_sym_LBRACE] = ACTIONS(2950), - [anon_sym_RBRACE] = ACTIONS(2950), - [anon_sym_STAR] = ACTIONS(2950), - [anon_sym_u8] = ACTIONS(2952), - [anon_sym_i8] = ACTIONS(2952), - [anon_sym_u16] = ACTIONS(2952), - [anon_sym_i16] = ACTIONS(2952), - [anon_sym_u32] = ACTIONS(2952), - [anon_sym_i32] = ACTIONS(2952), - [anon_sym_u64] = ACTIONS(2952), - [anon_sym_i64] = ACTIONS(2952), - [anon_sym_u128] = ACTIONS(2952), - [anon_sym_i128] = ACTIONS(2952), - [anon_sym_isize] = ACTIONS(2952), - [anon_sym_usize] = ACTIONS(2952), - [anon_sym_f32] = ACTIONS(2952), - [anon_sym_f64] = ACTIONS(2952), - [anon_sym_bool] = ACTIONS(2952), - [anon_sym_str] = ACTIONS(2952), - [anon_sym_char] = ACTIONS(2952), - [anon_sym_DASH] = ACTIONS(2950), - [anon_sym_BANG] = ACTIONS(2950), - [anon_sym_AMP] = ACTIONS(2950), - [anon_sym_PIPE] = ACTIONS(2950), - [anon_sym_LT] = ACTIONS(2950), - [anon_sym_DOT_DOT] = ACTIONS(2950), - [anon_sym_COLON_COLON] = ACTIONS(2950), - [anon_sym_POUND] = ACTIONS(2950), - [anon_sym_SQUOTE] = ACTIONS(2952), - [anon_sym_async] = ACTIONS(2952), - [anon_sym_break] = ACTIONS(2952), - [anon_sym_const] = ACTIONS(2952), - [anon_sym_continue] = ACTIONS(2952), - [anon_sym_default] = ACTIONS(2952), - [anon_sym_enum] = ACTIONS(2952), - [anon_sym_fn] = ACTIONS(2952), - [anon_sym_for] = ACTIONS(2952), - [anon_sym_gen] = ACTIONS(2952), - [anon_sym_if] = ACTIONS(2952), - [anon_sym_impl] = ACTIONS(2952), - [anon_sym_let] = ACTIONS(2952), - [anon_sym_loop] = ACTIONS(2952), - [anon_sym_match] = ACTIONS(2952), - [anon_sym_mod] = ACTIONS(2952), - [anon_sym_pub] = ACTIONS(2952), - [anon_sym_return] = ACTIONS(2952), - [anon_sym_static] = ACTIONS(2952), - [anon_sym_struct] = ACTIONS(2952), - [anon_sym_trait] = ACTIONS(2952), - [anon_sym_type] = ACTIONS(2952), - [anon_sym_union] = ACTIONS(2952), - [anon_sym_unsafe] = ACTIONS(2952), - [anon_sym_use] = ACTIONS(2952), - [anon_sym_while] = ACTIONS(2952), - [anon_sym_extern] = ACTIONS(2952), - [anon_sym_yield] = ACTIONS(2952), - [anon_sym_move] = ACTIONS(2952), - [anon_sym_try] = ACTIONS(2952), - [sym_integer_literal] = ACTIONS(2950), - [aux_sym_string_literal_token1] = ACTIONS(2950), - [sym_char_literal] = ACTIONS(2950), - [anon_sym_true] = ACTIONS(2952), - [anon_sym_false] = ACTIONS(2952), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2952), - [sym_super] = ACTIONS(2952), - [sym_crate] = ACTIONS(2952), - [sym_metavariable] = ACTIONS(2950), - [sym__raw_string_literal_start] = ACTIONS(2950), - [sym_float_literal] = ACTIONS(2950), + [ts_builtin_sym_end] = ACTIONS(2968), + [sym_identifier] = ACTIONS(2970), + [anon_sym_SEMI] = ACTIONS(2968), + [anon_sym_macro_rules_BANG] = ACTIONS(2968), + [anon_sym_LPAREN] = ACTIONS(2968), + [anon_sym_LBRACK] = ACTIONS(2968), + [anon_sym_LBRACE] = ACTIONS(2968), + [anon_sym_RBRACE] = ACTIONS(2968), + [anon_sym_STAR] = ACTIONS(2968), + [anon_sym_u8] = ACTIONS(2970), + [anon_sym_i8] = ACTIONS(2970), + [anon_sym_u16] = ACTIONS(2970), + [anon_sym_i16] = ACTIONS(2970), + [anon_sym_u32] = ACTIONS(2970), + [anon_sym_i32] = ACTIONS(2970), + [anon_sym_u64] = ACTIONS(2970), + [anon_sym_i64] = ACTIONS(2970), + [anon_sym_u128] = ACTIONS(2970), + [anon_sym_i128] = ACTIONS(2970), + [anon_sym_isize] = ACTIONS(2970), + [anon_sym_usize] = ACTIONS(2970), + [anon_sym_f32] = ACTIONS(2970), + [anon_sym_f64] = ACTIONS(2970), + [anon_sym_bool] = ACTIONS(2970), + [anon_sym_str] = ACTIONS(2970), + [anon_sym_char] = ACTIONS(2970), + [anon_sym_DASH] = ACTIONS(2968), + [anon_sym_BANG] = ACTIONS(2968), + [anon_sym_AMP] = ACTIONS(2968), + [anon_sym_PIPE] = ACTIONS(2968), + [anon_sym_LT] = ACTIONS(2968), + [anon_sym_DOT_DOT] = ACTIONS(2968), + [anon_sym_COLON_COLON] = ACTIONS(2968), + [anon_sym_POUND] = ACTIONS(2968), + [anon_sym_SQUOTE] = ACTIONS(2970), + [anon_sym_async] = ACTIONS(2970), + [anon_sym_break] = ACTIONS(2970), + [anon_sym_const] = ACTIONS(2970), + [anon_sym_continue] = ACTIONS(2970), + [anon_sym_default] = ACTIONS(2970), + [anon_sym_enum] = ACTIONS(2970), + [anon_sym_fn] = ACTIONS(2970), + [anon_sym_for] = ACTIONS(2970), + [anon_sym_gen] = ACTIONS(2970), + [anon_sym_if] = ACTIONS(2970), + [anon_sym_impl] = ACTIONS(2970), + [anon_sym_let] = ACTIONS(2970), + [anon_sym_loop] = ACTIONS(2970), + [anon_sym_match] = ACTIONS(2970), + [anon_sym_mod] = ACTIONS(2970), + [anon_sym_pub] = ACTIONS(2970), + [anon_sym_return] = ACTIONS(2970), + [anon_sym_static] = ACTIONS(2970), + [anon_sym_struct] = ACTIONS(2970), + [anon_sym_trait] = ACTIONS(2970), + [anon_sym_type] = ACTIONS(2970), + [anon_sym_union] = ACTIONS(2970), + [anon_sym_unsafe] = ACTIONS(2970), + [anon_sym_use] = ACTIONS(2970), + [anon_sym_while] = ACTIONS(2970), + [anon_sym_extern] = ACTIONS(2970), + [anon_sym_safe] = ACTIONS(2970), + [anon_sym_yield] = ACTIONS(2970), + [anon_sym_move] = ACTIONS(2970), + [anon_sym_try] = ACTIONS(2970), + [sym_integer_literal] = ACTIONS(2968), + [aux_sym_string_literal_token1] = ACTIONS(2968), + [sym_char_literal] = ACTIONS(2968), + [anon_sym_true] = ACTIONS(2970), + [anon_sym_false] = ACTIONS(2970), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(2970), + [sym_super] = ACTIONS(2970), + [sym_crate] = ACTIONS(2970), + [sym_metavariable] = ACTIONS(2968), + [sym__raw_string_literal_start] = ACTIONS(2968), + [sym_float_literal] = ACTIONS(2968), }, [STATE(761)] = { [sym_line_comment] = STATE(761), [sym_block_comment] = STATE(761), - [ts_builtin_sym_end] = ACTIONS(2954), - [sym_identifier] = ACTIONS(2956), - [anon_sym_SEMI] = ACTIONS(2954), - [anon_sym_macro_rules_BANG] = ACTIONS(2954), - [anon_sym_LPAREN] = ACTIONS(2954), - [anon_sym_LBRACK] = ACTIONS(2954), - [anon_sym_LBRACE] = ACTIONS(2954), - [anon_sym_RBRACE] = ACTIONS(2954), - [anon_sym_STAR] = ACTIONS(2954), - [anon_sym_u8] = ACTIONS(2956), - [anon_sym_i8] = ACTIONS(2956), - [anon_sym_u16] = ACTIONS(2956), - [anon_sym_i16] = ACTIONS(2956), - [anon_sym_u32] = ACTIONS(2956), - [anon_sym_i32] = ACTIONS(2956), - [anon_sym_u64] = ACTIONS(2956), - [anon_sym_i64] = ACTIONS(2956), - [anon_sym_u128] = ACTIONS(2956), - [anon_sym_i128] = ACTIONS(2956), - [anon_sym_isize] = ACTIONS(2956), - [anon_sym_usize] = ACTIONS(2956), - [anon_sym_f32] = ACTIONS(2956), - [anon_sym_f64] = ACTIONS(2956), - [anon_sym_bool] = ACTIONS(2956), - [anon_sym_str] = ACTIONS(2956), - [anon_sym_char] = ACTIONS(2956), - [anon_sym_DASH] = ACTIONS(2954), - [anon_sym_BANG] = ACTIONS(2954), - [anon_sym_AMP] = ACTIONS(2954), - [anon_sym_PIPE] = ACTIONS(2954), - [anon_sym_LT] = ACTIONS(2954), - [anon_sym_DOT_DOT] = ACTIONS(2954), - [anon_sym_COLON_COLON] = ACTIONS(2954), - [anon_sym_POUND] = ACTIONS(2954), - [anon_sym_SQUOTE] = ACTIONS(2956), - [anon_sym_async] = ACTIONS(2956), - [anon_sym_break] = ACTIONS(2956), - [anon_sym_const] = ACTIONS(2956), - [anon_sym_continue] = ACTIONS(2956), - [anon_sym_default] = ACTIONS(2956), - [anon_sym_enum] = ACTIONS(2956), - [anon_sym_fn] = ACTIONS(2956), - [anon_sym_for] = ACTIONS(2956), - [anon_sym_gen] = ACTIONS(2956), - [anon_sym_if] = ACTIONS(2956), - [anon_sym_impl] = ACTIONS(2956), - [anon_sym_let] = ACTIONS(2956), - [anon_sym_loop] = ACTIONS(2956), - [anon_sym_match] = ACTIONS(2956), - [anon_sym_mod] = ACTIONS(2956), - [anon_sym_pub] = ACTIONS(2956), - [anon_sym_return] = ACTIONS(2956), - [anon_sym_static] = ACTIONS(2956), - [anon_sym_struct] = ACTIONS(2956), - [anon_sym_trait] = ACTIONS(2956), - [anon_sym_type] = ACTIONS(2956), - [anon_sym_union] = ACTIONS(2956), - [anon_sym_unsafe] = ACTIONS(2956), - [anon_sym_use] = ACTIONS(2956), - [anon_sym_while] = ACTIONS(2956), - [anon_sym_extern] = ACTIONS(2956), - [anon_sym_yield] = ACTIONS(2956), - [anon_sym_move] = ACTIONS(2956), - [anon_sym_try] = ACTIONS(2956), - [sym_integer_literal] = ACTIONS(2954), - [aux_sym_string_literal_token1] = ACTIONS(2954), - [sym_char_literal] = ACTIONS(2954), - [anon_sym_true] = ACTIONS(2956), - [anon_sym_false] = ACTIONS(2956), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2956), - [sym_super] = ACTIONS(2956), - [sym_crate] = ACTIONS(2956), - [sym_metavariable] = ACTIONS(2954), - [sym__raw_string_literal_start] = ACTIONS(2954), - [sym_float_literal] = ACTIONS(2954), + [ts_builtin_sym_end] = ACTIONS(2972), + [sym_identifier] = ACTIONS(2974), + [anon_sym_SEMI] = ACTIONS(2972), + [anon_sym_macro_rules_BANG] = ACTIONS(2972), + [anon_sym_LPAREN] = ACTIONS(2972), + [anon_sym_LBRACK] = ACTIONS(2972), + [anon_sym_LBRACE] = ACTIONS(2972), + [anon_sym_RBRACE] = ACTIONS(2972), + [anon_sym_STAR] = ACTIONS(2972), + [anon_sym_u8] = ACTIONS(2974), + [anon_sym_i8] = ACTIONS(2974), + [anon_sym_u16] = ACTIONS(2974), + [anon_sym_i16] = ACTIONS(2974), + [anon_sym_u32] = ACTIONS(2974), + [anon_sym_i32] = ACTIONS(2974), + [anon_sym_u64] = ACTIONS(2974), + [anon_sym_i64] = ACTIONS(2974), + [anon_sym_u128] = ACTIONS(2974), + [anon_sym_i128] = ACTIONS(2974), + [anon_sym_isize] = ACTIONS(2974), + [anon_sym_usize] = ACTIONS(2974), + [anon_sym_f32] = ACTIONS(2974), + [anon_sym_f64] = ACTIONS(2974), + [anon_sym_bool] = ACTIONS(2974), + [anon_sym_str] = ACTIONS(2974), + [anon_sym_char] = ACTIONS(2974), + [anon_sym_DASH] = ACTIONS(2972), + [anon_sym_BANG] = ACTIONS(2972), + [anon_sym_AMP] = ACTIONS(2972), + [anon_sym_PIPE] = ACTIONS(2972), + [anon_sym_LT] = ACTIONS(2972), + [anon_sym_DOT_DOT] = ACTIONS(2972), + [anon_sym_COLON_COLON] = ACTIONS(2972), + [anon_sym_POUND] = ACTIONS(2972), + [anon_sym_SQUOTE] = ACTIONS(2974), + [anon_sym_async] = ACTIONS(2974), + [anon_sym_break] = ACTIONS(2974), + [anon_sym_const] = ACTIONS(2974), + [anon_sym_continue] = ACTIONS(2974), + [anon_sym_default] = ACTIONS(2974), + [anon_sym_enum] = ACTIONS(2974), + [anon_sym_fn] = ACTIONS(2974), + [anon_sym_for] = ACTIONS(2974), + [anon_sym_gen] = ACTIONS(2974), + [anon_sym_if] = ACTIONS(2974), + [anon_sym_impl] = ACTIONS(2974), + [anon_sym_let] = ACTIONS(2974), + [anon_sym_loop] = ACTIONS(2974), + [anon_sym_match] = ACTIONS(2974), + [anon_sym_mod] = ACTIONS(2974), + [anon_sym_pub] = ACTIONS(2974), + [anon_sym_return] = ACTIONS(2974), + [anon_sym_static] = ACTIONS(2974), + [anon_sym_struct] = ACTIONS(2974), + [anon_sym_trait] = ACTIONS(2974), + [anon_sym_type] = ACTIONS(2974), + [anon_sym_union] = ACTIONS(2974), + [anon_sym_unsafe] = ACTIONS(2974), + [anon_sym_use] = ACTIONS(2974), + [anon_sym_while] = ACTIONS(2974), + [anon_sym_extern] = ACTIONS(2974), + [anon_sym_safe] = ACTIONS(2974), + [anon_sym_yield] = ACTIONS(2974), + [anon_sym_move] = ACTIONS(2974), + [anon_sym_try] = ACTIONS(2974), + [sym_integer_literal] = ACTIONS(2972), + [aux_sym_string_literal_token1] = ACTIONS(2972), + [sym_char_literal] = ACTIONS(2972), + [anon_sym_true] = ACTIONS(2974), + [anon_sym_false] = ACTIONS(2974), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(2974), + [sym_super] = ACTIONS(2974), + [sym_crate] = ACTIONS(2974), + [sym_metavariable] = ACTIONS(2972), + [sym__raw_string_literal_start] = ACTIONS(2972), + [sym_float_literal] = ACTIONS(2972), }, [STATE(762)] = { [sym_line_comment] = STATE(762), [sym_block_comment] = STATE(762), - [ts_builtin_sym_end] = ACTIONS(2958), - [sym_identifier] = ACTIONS(2960), - [anon_sym_SEMI] = ACTIONS(2958), - [anon_sym_macro_rules_BANG] = ACTIONS(2958), - [anon_sym_LPAREN] = ACTIONS(2958), - [anon_sym_LBRACK] = ACTIONS(2958), - [anon_sym_LBRACE] = ACTIONS(2958), - [anon_sym_RBRACE] = ACTIONS(2958), - [anon_sym_STAR] = ACTIONS(2958), - [anon_sym_u8] = ACTIONS(2960), - [anon_sym_i8] = ACTIONS(2960), - [anon_sym_u16] = ACTIONS(2960), - [anon_sym_i16] = ACTIONS(2960), - [anon_sym_u32] = ACTIONS(2960), - [anon_sym_i32] = ACTIONS(2960), - [anon_sym_u64] = ACTIONS(2960), - [anon_sym_i64] = ACTIONS(2960), - [anon_sym_u128] = ACTIONS(2960), - [anon_sym_i128] = ACTIONS(2960), - [anon_sym_isize] = ACTIONS(2960), - [anon_sym_usize] = ACTIONS(2960), - [anon_sym_f32] = ACTIONS(2960), - [anon_sym_f64] = ACTIONS(2960), - [anon_sym_bool] = ACTIONS(2960), - [anon_sym_str] = ACTIONS(2960), - [anon_sym_char] = ACTIONS(2960), - [anon_sym_DASH] = ACTIONS(2958), - [anon_sym_BANG] = ACTIONS(2958), - [anon_sym_AMP] = ACTIONS(2958), - [anon_sym_PIPE] = ACTIONS(2958), - [anon_sym_LT] = ACTIONS(2958), - [anon_sym_DOT_DOT] = ACTIONS(2958), - [anon_sym_COLON_COLON] = ACTIONS(2958), - [anon_sym_POUND] = ACTIONS(2958), - [anon_sym_SQUOTE] = ACTIONS(2960), - [anon_sym_async] = ACTIONS(2960), - [anon_sym_break] = ACTIONS(2960), - [anon_sym_const] = ACTIONS(2960), - [anon_sym_continue] = ACTIONS(2960), - [anon_sym_default] = ACTIONS(2960), - [anon_sym_enum] = ACTIONS(2960), - [anon_sym_fn] = ACTIONS(2960), - [anon_sym_for] = ACTIONS(2960), - [anon_sym_gen] = ACTIONS(2960), - [anon_sym_if] = ACTIONS(2960), - [anon_sym_impl] = ACTIONS(2960), - [anon_sym_let] = ACTIONS(2960), - [anon_sym_loop] = ACTIONS(2960), - [anon_sym_match] = ACTIONS(2960), - [anon_sym_mod] = ACTIONS(2960), - [anon_sym_pub] = ACTIONS(2960), - [anon_sym_return] = ACTIONS(2960), - [anon_sym_static] = ACTIONS(2960), - [anon_sym_struct] = ACTIONS(2960), - [anon_sym_trait] = ACTIONS(2960), - [anon_sym_type] = ACTIONS(2960), - [anon_sym_union] = ACTIONS(2960), - [anon_sym_unsafe] = ACTIONS(2960), - [anon_sym_use] = ACTIONS(2960), - [anon_sym_while] = ACTIONS(2960), - [anon_sym_extern] = ACTIONS(2960), - [anon_sym_yield] = ACTIONS(2960), - [anon_sym_move] = ACTIONS(2960), - [anon_sym_try] = ACTIONS(2960), - [sym_integer_literal] = ACTIONS(2958), - [aux_sym_string_literal_token1] = ACTIONS(2958), - [sym_char_literal] = ACTIONS(2958), - [anon_sym_true] = ACTIONS(2960), - [anon_sym_false] = ACTIONS(2960), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2960), - [sym_super] = ACTIONS(2960), - [sym_crate] = ACTIONS(2960), - [sym_metavariable] = ACTIONS(2958), - [sym__raw_string_literal_start] = ACTIONS(2958), - [sym_float_literal] = ACTIONS(2958), + [ts_builtin_sym_end] = ACTIONS(2976), + [sym_identifier] = ACTIONS(2978), + [anon_sym_SEMI] = ACTIONS(2976), + [anon_sym_macro_rules_BANG] = ACTIONS(2976), + [anon_sym_LPAREN] = ACTIONS(2976), + [anon_sym_LBRACK] = ACTIONS(2976), + [anon_sym_LBRACE] = ACTIONS(2976), + [anon_sym_RBRACE] = ACTIONS(2976), + [anon_sym_STAR] = ACTIONS(2976), + [anon_sym_u8] = ACTIONS(2978), + [anon_sym_i8] = ACTIONS(2978), + [anon_sym_u16] = ACTIONS(2978), + [anon_sym_i16] = ACTIONS(2978), + [anon_sym_u32] = ACTIONS(2978), + [anon_sym_i32] = ACTIONS(2978), + [anon_sym_u64] = ACTIONS(2978), + [anon_sym_i64] = ACTIONS(2978), + [anon_sym_u128] = ACTIONS(2978), + [anon_sym_i128] = ACTIONS(2978), + [anon_sym_isize] = ACTIONS(2978), + [anon_sym_usize] = ACTIONS(2978), + [anon_sym_f32] = ACTIONS(2978), + [anon_sym_f64] = ACTIONS(2978), + [anon_sym_bool] = ACTIONS(2978), + [anon_sym_str] = ACTIONS(2978), + [anon_sym_char] = ACTIONS(2978), + [anon_sym_DASH] = ACTIONS(2976), + [anon_sym_BANG] = ACTIONS(2976), + [anon_sym_AMP] = ACTIONS(2976), + [anon_sym_PIPE] = ACTIONS(2976), + [anon_sym_LT] = ACTIONS(2976), + [anon_sym_DOT_DOT] = ACTIONS(2976), + [anon_sym_COLON_COLON] = ACTIONS(2976), + [anon_sym_POUND] = ACTIONS(2976), + [anon_sym_SQUOTE] = ACTIONS(2978), + [anon_sym_async] = ACTIONS(2978), + [anon_sym_break] = ACTIONS(2978), + [anon_sym_const] = ACTIONS(2978), + [anon_sym_continue] = ACTIONS(2978), + [anon_sym_default] = ACTIONS(2978), + [anon_sym_enum] = ACTIONS(2978), + [anon_sym_fn] = ACTIONS(2978), + [anon_sym_for] = ACTIONS(2978), + [anon_sym_gen] = ACTIONS(2978), + [anon_sym_if] = ACTIONS(2978), + [anon_sym_impl] = ACTIONS(2978), + [anon_sym_let] = ACTIONS(2978), + [anon_sym_loop] = ACTIONS(2978), + [anon_sym_match] = ACTIONS(2978), + [anon_sym_mod] = ACTIONS(2978), + [anon_sym_pub] = ACTIONS(2978), + [anon_sym_return] = ACTIONS(2978), + [anon_sym_static] = ACTIONS(2978), + [anon_sym_struct] = ACTIONS(2978), + [anon_sym_trait] = ACTIONS(2978), + [anon_sym_type] = ACTIONS(2978), + [anon_sym_union] = ACTIONS(2978), + [anon_sym_unsafe] = ACTIONS(2978), + [anon_sym_use] = ACTIONS(2978), + [anon_sym_while] = ACTIONS(2978), + [anon_sym_extern] = ACTIONS(2978), + [anon_sym_safe] = ACTIONS(2978), + [anon_sym_yield] = ACTIONS(2978), + [anon_sym_move] = ACTIONS(2978), + [anon_sym_try] = ACTIONS(2978), + [sym_integer_literal] = ACTIONS(2976), + [aux_sym_string_literal_token1] = ACTIONS(2976), + [sym_char_literal] = ACTIONS(2976), + [anon_sym_true] = ACTIONS(2978), + [anon_sym_false] = ACTIONS(2978), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(2978), + [sym_super] = ACTIONS(2978), + [sym_crate] = ACTIONS(2978), + [sym_metavariable] = ACTIONS(2976), + [sym__raw_string_literal_start] = ACTIONS(2976), + [sym_float_literal] = ACTIONS(2976), }, [STATE(763)] = { [sym_line_comment] = STATE(763), [sym_block_comment] = STATE(763), - [ts_builtin_sym_end] = ACTIONS(2962), - [sym_identifier] = ACTIONS(2964), - [anon_sym_SEMI] = ACTIONS(2962), - [anon_sym_macro_rules_BANG] = ACTIONS(2962), - [anon_sym_LPAREN] = ACTIONS(2962), - [anon_sym_LBRACK] = ACTIONS(2962), - [anon_sym_LBRACE] = ACTIONS(2962), - [anon_sym_RBRACE] = ACTIONS(2962), - [anon_sym_STAR] = ACTIONS(2962), - [anon_sym_u8] = ACTIONS(2964), - [anon_sym_i8] = ACTIONS(2964), - [anon_sym_u16] = ACTIONS(2964), - [anon_sym_i16] = ACTIONS(2964), - [anon_sym_u32] = ACTIONS(2964), - [anon_sym_i32] = ACTIONS(2964), - [anon_sym_u64] = ACTIONS(2964), - [anon_sym_i64] = ACTIONS(2964), - [anon_sym_u128] = ACTIONS(2964), - [anon_sym_i128] = ACTIONS(2964), - [anon_sym_isize] = ACTIONS(2964), - [anon_sym_usize] = ACTIONS(2964), - [anon_sym_f32] = ACTIONS(2964), - [anon_sym_f64] = ACTIONS(2964), - [anon_sym_bool] = ACTIONS(2964), - [anon_sym_str] = ACTIONS(2964), - [anon_sym_char] = ACTIONS(2964), - [anon_sym_DASH] = ACTIONS(2962), - [anon_sym_BANG] = ACTIONS(2962), - [anon_sym_AMP] = ACTIONS(2962), - [anon_sym_PIPE] = ACTIONS(2962), - [anon_sym_LT] = ACTIONS(2962), - [anon_sym_DOT_DOT] = ACTIONS(2962), - [anon_sym_COLON_COLON] = ACTIONS(2962), - [anon_sym_POUND] = ACTIONS(2962), - [anon_sym_SQUOTE] = ACTIONS(2964), - [anon_sym_async] = ACTIONS(2964), - [anon_sym_break] = ACTIONS(2964), - [anon_sym_const] = ACTIONS(2964), - [anon_sym_continue] = ACTIONS(2964), - [anon_sym_default] = ACTIONS(2964), - [anon_sym_enum] = ACTIONS(2964), - [anon_sym_fn] = ACTIONS(2964), - [anon_sym_for] = ACTIONS(2964), - [anon_sym_gen] = ACTIONS(2964), - [anon_sym_if] = ACTIONS(2964), - [anon_sym_impl] = ACTIONS(2964), - [anon_sym_let] = ACTIONS(2964), - [anon_sym_loop] = ACTIONS(2964), - [anon_sym_match] = ACTIONS(2964), - [anon_sym_mod] = ACTIONS(2964), - [anon_sym_pub] = ACTIONS(2964), - [anon_sym_return] = ACTIONS(2964), - [anon_sym_static] = ACTIONS(2964), - [anon_sym_struct] = ACTIONS(2964), - [anon_sym_trait] = ACTIONS(2964), - [anon_sym_type] = ACTIONS(2964), - [anon_sym_union] = ACTIONS(2964), - [anon_sym_unsafe] = ACTIONS(2964), - [anon_sym_use] = ACTIONS(2964), - [anon_sym_while] = ACTIONS(2964), - [anon_sym_extern] = ACTIONS(2964), - [anon_sym_yield] = ACTIONS(2964), - [anon_sym_move] = ACTIONS(2964), - [anon_sym_try] = ACTIONS(2964), - [sym_integer_literal] = ACTIONS(2962), - [aux_sym_string_literal_token1] = ACTIONS(2962), - [sym_char_literal] = ACTIONS(2962), - [anon_sym_true] = ACTIONS(2964), - [anon_sym_false] = ACTIONS(2964), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2964), - [sym_super] = ACTIONS(2964), - [sym_crate] = ACTIONS(2964), - [sym_metavariable] = ACTIONS(2962), - [sym__raw_string_literal_start] = ACTIONS(2962), - [sym_float_literal] = ACTIONS(2962), + [ts_builtin_sym_end] = ACTIONS(2980), + [sym_identifier] = ACTIONS(2982), + [anon_sym_SEMI] = ACTIONS(2980), + [anon_sym_macro_rules_BANG] = ACTIONS(2980), + [anon_sym_LPAREN] = ACTIONS(2980), + [anon_sym_LBRACK] = ACTIONS(2980), + [anon_sym_LBRACE] = ACTIONS(2980), + [anon_sym_RBRACE] = ACTIONS(2980), + [anon_sym_STAR] = ACTIONS(2980), + [anon_sym_u8] = ACTIONS(2982), + [anon_sym_i8] = ACTIONS(2982), + [anon_sym_u16] = ACTIONS(2982), + [anon_sym_i16] = ACTIONS(2982), + [anon_sym_u32] = ACTIONS(2982), + [anon_sym_i32] = ACTIONS(2982), + [anon_sym_u64] = ACTIONS(2982), + [anon_sym_i64] = ACTIONS(2982), + [anon_sym_u128] = ACTIONS(2982), + [anon_sym_i128] = ACTIONS(2982), + [anon_sym_isize] = ACTIONS(2982), + [anon_sym_usize] = ACTIONS(2982), + [anon_sym_f32] = ACTIONS(2982), + [anon_sym_f64] = ACTIONS(2982), + [anon_sym_bool] = ACTIONS(2982), + [anon_sym_str] = ACTIONS(2982), + [anon_sym_char] = ACTIONS(2982), + [anon_sym_DASH] = ACTIONS(2980), + [anon_sym_BANG] = ACTIONS(2980), + [anon_sym_AMP] = ACTIONS(2980), + [anon_sym_PIPE] = ACTIONS(2980), + [anon_sym_LT] = ACTIONS(2980), + [anon_sym_DOT_DOT] = ACTIONS(2980), + [anon_sym_COLON_COLON] = ACTIONS(2980), + [anon_sym_POUND] = ACTIONS(2980), + [anon_sym_SQUOTE] = ACTIONS(2982), + [anon_sym_async] = ACTIONS(2982), + [anon_sym_break] = ACTIONS(2982), + [anon_sym_const] = ACTIONS(2982), + [anon_sym_continue] = ACTIONS(2982), + [anon_sym_default] = ACTIONS(2982), + [anon_sym_enum] = ACTIONS(2982), + [anon_sym_fn] = ACTIONS(2982), + [anon_sym_for] = ACTIONS(2982), + [anon_sym_gen] = ACTIONS(2982), + [anon_sym_if] = ACTIONS(2982), + [anon_sym_impl] = ACTIONS(2982), + [anon_sym_let] = ACTIONS(2982), + [anon_sym_loop] = ACTIONS(2982), + [anon_sym_match] = ACTIONS(2982), + [anon_sym_mod] = ACTIONS(2982), + [anon_sym_pub] = ACTIONS(2982), + [anon_sym_return] = ACTIONS(2982), + [anon_sym_static] = ACTIONS(2982), + [anon_sym_struct] = ACTIONS(2982), + [anon_sym_trait] = ACTIONS(2982), + [anon_sym_type] = ACTIONS(2982), + [anon_sym_union] = ACTIONS(2982), + [anon_sym_unsafe] = ACTIONS(2982), + [anon_sym_use] = ACTIONS(2982), + [anon_sym_while] = ACTIONS(2982), + [anon_sym_extern] = ACTIONS(2982), + [anon_sym_safe] = ACTIONS(2982), + [anon_sym_yield] = ACTIONS(2982), + [anon_sym_move] = ACTIONS(2982), + [anon_sym_try] = ACTIONS(2982), + [sym_integer_literal] = ACTIONS(2980), + [aux_sym_string_literal_token1] = ACTIONS(2980), + [sym_char_literal] = ACTIONS(2980), + [anon_sym_true] = ACTIONS(2982), + [anon_sym_false] = ACTIONS(2982), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(2982), + [sym_super] = ACTIONS(2982), + [sym_crate] = ACTIONS(2982), + [sym_metavariable] = ACTIONS(2980), + [sym__raw_string_literal_start] = ACTIONS(2980), + [sym_float_literal] = ACTIONS(2980), }, [STATE(764)] = { [sym_line_comment] = STATE(764), [sym_block_comment] = STATE(764), - [ts_builtin_sym_end] = ACTIONS(2966), - [sym_identifier] = ACTIONS(2968), - [anon_sym_SEMI] = ACTIONS(2966), - [anon_sym_macro_rules_BANG] = ACTIONS(2966), - [anon_sym_LPAREN] = ACTIONS(2966), - [anon_sym_LBRACK] = ACTIONS(2966), - [anon_sym_LBRACE] = ACTIONS(2966), - [anon_sym_RBRACE] = ACTIONS(2966), - [anon_sym_STAR] = ACTIONS(2966), - [anon_sym_u8] = ACTIONS(2968), - [anon_sym_i8] = ACTIONS(2968), - [anon_sym_u16] = ACTIONS(2968), - [anon_sym_i16] = ACTIONS(2968), - [anon_sym_u32] = ACTIONS(2968), - [anon_sym_i32] = ACTIONS(2968), - [anon_sym_u64] = ACTIONS(2968), - [anon_sym_i64] = ACTIONS(2968), - [anon_sym_u128] = ACTIONS(2968), - [anon_sym_i128] = ACTIONS(2968), - [anon_sym_isize] = ACTIONS(2968), - [anon_sym_usize] = ACTIONS(2968), - [anon_sym_f32] = ACTIONS(2968), - [anon_sym_f64] = ACTIONS(2968), - [anon_sym_bool] = ACTIONS(2968), - [anon_sym_str] = ACTIONS(2968), - [anon_sym_char] = ACTIONS(2968), - [anon_sym_DASH] = ACTIONS(2966), - [anon_sym_BANG] = ACTIONS(2966), - [anon_sym_AMP] = ACTIONS(2966), - [anon_sym_PIPE] = ACTIONS(2966), - [anon_sym_LT] = ACTIONS(2966), - [anon_sym_DOT_DOT] = ACTIONS(2966), - [anon_sym_COLON_COLON] = ACTIONS(2966), - [anon_sym_POUND] = ACTIONS(2966), - [anon_sym_SQUOTE] = ACTIONS(2968), - [anon_sym_async] = ACTIONS(2968), - [anon_sym_break] = ACTIONS(2968), - [anon_sym_const] = ACTIONS(2968), - [anon_sym_continue] = ACTIONS(2968), - [anon_sym_default] = ACTIONS(2968), - [anon_sym_enum] = ACTIONS(2968), - [anon_sym_fn] = ACTIONS(2968), - [anon_sym_for] = ACTIONS(2968), - [anon_sym_gen] = ACTIONS(2968), - [anon_sym_if] = ACTIONS(2968), - [anon_sym_impl] = ACTIONS(2968), - [anon_sym_let] = ACTIONS(2968), - [anon_sym_loop] = ACTIONS(2968), - [anon_sym_match] = ACTIONS(2968), - [anon_sym_mod] = ACTIONS(2968), - [anon_sym_pub] = ACTIONS(2968), - [anon_sym_return] = ACTIONS(2968), - [anon_sym_static] = ACTIONS(2968), - [anon_sym_struct] = ACTIONS(2968), - [anon_sym_trait] = ACTIONS(2968), - [anon_sym_type] = ACTIONS(2968), - [anon_sym_union] = ACTIONS(2968), - [anon_sym_unsafe] = ACTIONS(2968), - [anon_sym_use] = ACTIONS(2968), - [anon_sym_while] = ACTIONS(2968), - [anon_sym_extern] = ACTIONS(2968), - [anon_sym_yield] = ACTIONS(2968), - [anon_sym_move] = ACTIONS(2968), - [anon_sym_try] = ACTIONS(2968), - [sym_integer_literal] = ACTIONS(2966), - [aux_sym_string_literal_token1] = ACTIONS(2966), - [sym_char_literal] = ACTIONS(2966), - [anon_sym_true] = ACTIONS(2968), - [anon_sym_false] = ACTIONS(2968), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2968), - [sym_super] = ACTIONS(2968), - [sym_crate] = ACTIONS(2968), - [sym_metavariable] = ACTIONS(2966), - [sym__raw_string_literal_start] = ACTIONS(2966), - [sym_float_literal] = ACTIONS(2966), + [ts_builtin_sym_end] = ACTIONS(2984), + [sym_identifier] = ACTIONS(2986), + [anon_sym_SEMI] = ACTIONS(2984), + [anon_sym_macro_rules_BANG] = ACTIONS(2984), + [anon_sym_LPAREN] = ACTIONS(2984), + [anon_sym_LBRACK] = ACTIONS(2984), + [anon_sym_LBRACE] = ACTIONS(2984), + [anon_sym_RBRACE] = ACTIONS(2984), + [anon_sym_STAR] = ACTIONS(2984), + [anon_sym_u8] = ACTIONS(2986), + [anon_sym_i8] = ACTIONS(2986), + [anon_sym_u16] = ACTIONS(2986), + [anon_sym_i16] = ACTIONS(2986), + [anon_sym_u32] = ACTIONS(2986), + [anon_sym_i32] = ACTIONS(2986), + [anon_sym_u64] = ACTIONS(2986), + [anon_sym_i64] = ACTIONS(2986), + [anon_sym_u128] = ACTIONS(2986), + [anon_sym_i128] = ACTIONS(2986), + [anon_sym_isize] = ACTIONS(2986), + [anon_sym_usize] = ACTIONS(2986), + [anon_sym_f32] = ACTIONS(2986), + [anon_sym_f64] = ACTIONS(2986), + [anon_sym_bool] = ACTIONS(2986), + [anon_sym_str] = ACTIONS(2986), + [anon_sym_char] = ACTIONS(2986), + [anon_sym_DASH] = ACTIONS(2984), + [anon_sym_BANG] = ACTIONS(2984), + [anon_sym_AMP] = ACTIONS(2984), + [anon_sym_PIPE] = ACTIONS(2984), + [anon_sym_LT] = ACTIONS(2984), + [anon_sym_DOT_DOT] = ACTIONS(2984), + [anon_sym_COLON_COLON] = ACTIONS(2984), + [anon_sym_POUND] = ACTIONS(2984), + [anon_sym_SQUOTE] = ACTIONS(2986), + [anon_sym_async] = ACTIONS(2986), + [anon_sym_break] = ACTIONS(2986), + [anon_sym_const] = ACTIONS(2986), + [anon_sym_continue] = ACTIONS(2986), + [anon_sym_default] = ACTIONS(2986), + [anon_sym_enum] = ACTIONS(2986), + [anon_sym_fn] = ACTIONS(2986), + [anon_sym_for] = ACTIONS(2986), + [anon_sym_gen] = ACTIONS(2986), + [anon_sym_if] = ACTIONS(2986), + [anon_sym_impl] = ACTIONS(2986), + [anon_sym_let] = ACTIONS(2986), + [anon_sym_loop] = ACTIONS(2986), + [anon_sym_match] = ACTIONS(2986), + [anon_sym_mod] = ACTIONS(2986), + [anon_sym_pub] = ACTIONS(2986), + [anon_sym_return] = ACTIONS(2986), + [anon_sym_static] = ACTIONS(2986), + [anon_sym_struct] = ACTIONS(2986), + [anon_sym_trait] = ACTIONS(2986), + [anon_sym_type] = ACTIONS(2986), + [anon_sym_union] = ACTIONS(2986), + [anon_sym_unsafe] = ACTIONS(2986), + [anon_sym_use] = ACTIONS(2986), + [anon_sym_while] = ACTIONS(2986), + [anon_sym_extern] = ACTIONS(2986), + [anon_sym_safe] = ACTIONS(2986), + [anon_sym_yield] = ACTIONS(2986), + [anon_sym_move] = ACTIONS(2986), + [anon_sym_try] = ACTIONS(2986), + [sym_integer_literal] = ACTIONS(2984), + [aux_sym_string_literal_token1] = ACTIONS(2984), + [sym_char_literal] = ACTIONS(2984), + [anon_sym_true] = ACTIONS(2986), + [anon_sym_false] = ACTIONS(2986), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(2986), + [sym_super] = ACTIONS(2986), + [sym_crate] = ACTIONS(2986), + [sym_metavariable] = ACTIONS(2984), + [sym__raw_string_literal_start] = ACTIONS(2984), + [sym_float_literal] = ACTIONS(2984), }, [STATE(765)] = { [sym_line_comment] = STATE(765), [sym_block_comment] = STATE(765), - [ts_builtin_sym_end] = ACTIONS(2970), - [sym_identifier] = ACTIONS(2972), - [anon_sym_SEMI] = ACTIONS(2970), - [anon_sym_macro_rules_BANG] = ACTIONS(2970), - [anon_sym_LPAREN] = ACTIONS(2970), - [anon_sym_LBRACK] = ACTIONS(2970), - [anon_sym_LBRACE] = ACTIONS(2970), - [anon_sym_RBRACE] = ACTIONS(2970), - [anon_sym_STAR] = ACTIONS(2970), - [anon_sym_u8] = ACTIONS(2972), - [anon_sym_i8] = ACTIONS(2972), - [anon_sym_u16] = ACTIONS(2972), - [anon_sym_i16] = ACTIONS(2972), - [anon_sym_u32] = ACTIONS(2972), - [anon_sym_i32] = ACTIONS(2972), - [anon_sym_u64] = ACTIONS(2972), - [anon_sym_i64] = ACTIONS(2972), - [anon_sym_u128] = ACTIONS(2972), - [anon_sym_i128] = ACTIONS(2972), - [anon_sym_isize] = ACTIONS(2972), - [anon_sym_usize] = ACTIONS(2972), - [anon_sym_f32] = ACTIONS(2972), - [anon_sym_f64] = ACTIONS(2972), - [anon_sym_bool] = ACTIONS(2972), - [anon_sym_str] = ACTIONS(2972), - [anon_sym_char] = ACTIONS(2972), - [anon_sym_DASH] = ACTIONS(2970), - [anon_sym_BANG] = ACTIONS(2970), - [anon_sym_AMP] = ACTIONS(2970), - [anon_sym_PIPE] = ACTIONS(2970), - [anon_sym_LT] = ACTIONS(2970), - [anon_sym_DOT_DOT] = ACTIONS(2970), - [anon_sym_COLON_COLON] = ACTIONS(2970), - [anon_sym_POUND] = ACTIONS(2970), - [anon_sym_SQUOTE] = ACTIONS(2972), - [anon_sym_async] = ACTIONS(2972), - [anon_sym_break] = ACTIONS(2972), - [anon_sym_const] = ACTIONS(2972), - [anon_sym_continue] = ACTIONS(2972), - [anon_sym_default] = ACTIONS(2972), - [anon_sym_enum] = ACTIONS(2972), - [anon_sym_fn] = ACTIONS(2972), - [anon_sym_for] = ACTIONS(2972), - [anon_sym_gen] = ACTIONS(2972), - [anon_sym_if] = ACTIONS(2972), - [anon_sym_impl] = ACTIONS(2972), - [anon_sym_let] = ACTIONS(2972), - [anon_sym_loop] = ACTIONS(2972), - [anon_sym_match] = ACTIONS(2972), - [anon_sym_mod] = ACTIONS(2972), - [anon_sym_pub] = ACTIONS(2972), - [anon_sym_return] = ACTIONS(2972), - [anon_sym_static] = ACTIONS(2972), - [anon_sym_struct] = ACTIONS(2972), - [anon_sym_trait] = ACTIONS(2972), - [anon_sym_type] = ACTIONS(2972), - [anon_sym_union] = ACTIONS(2972), - [anon_sym_unsafe] = ACTIONS(2972), - [anon_sym_use] = ACTIONS(2972), - [anon_sym_while] = ACTIONS(2972), - [anon_sym_extern] = ACTIONS(2972), - [anon_sym_yield] = ACTIONS(2972), - [anon_sym_move] = ACTIONS(2972), - [anon_sym_try] = ACTIONS(2972), - [sym_integer_literal] = ACTIONS(2970), - [aux_sym_string_literal_token1] = ACTIONS(2970), - [sym_char_literal] = ACTIONS(2970), - [anon_sym_true] = ACTIONS(2972), - [anon_sym_false] = ACTIONS(2972), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2972), - [sym_super] = ACTIONS(2972), - [sym_crate] = ACTIONS(2972), - [sym_metavariable] = ACTIONS(2970), - [sym__raw_string_literal_start] = ACTIONS(2970), - [sym_float_literal] = ACTIONS(2970), + [ts_builtin_sym_end] = ACTIONS(2988), + [sym_identifier] = ACTIONS(2990), + [anon_sym_SEMI] = ACTIONS(2988), + [anon_sym_macro_rules_BANG] = ACTIONS(2988), + [anon_sym_LPAREN] = ACTIONS(2988), + [anon_sym_LBRACK] = ACTIONS(2988), + [anon_sym_LBRACE] = ACTIONS(2988), + [anon_sym_RBRACE] = ACTIONS(2988), + [anon_sym_STAR] = ACTIONS(2988), + [anon_sym_u8] = ACTIONS(2990), + [anon_sym_i8] = ACTIONS(2990), + [anon_sym_u16] = ACTIONS(2990), + [anon_sym_i16] = ACTIONS(2990), + [anon_sym_u32] = ACTIONS(2990), + [anon_sym_i32] = ACTIONS(2990), + [anon_sym_u64] = ACTIONS(2990), + [anon_sym_i64] = ACTIONS(2990), + [anon_sym_u128] = ACTIONS(2990), + [anon_sym_i128] = ACTIONS(2990), + [anon_sym_isize] = ACTIONS(2990), + [anon_sym_usize] = ACTIONS(2990), + [anon_sym_f32] = ACTIONS(2990), + [anon_sym_f64] = ACTIONS(2990), + [anon_sym_bool] = ACTIONS(2990), + [anon_sym_str] = ACTIONS(2990), + [anon_sym_char] = ACTIONS(2990), + [anon_sym_DASH] = ACTIONS(2988), + [anon_sym_BANG] = ACTIONS(2988), + [anon_sym_AMP] = ACTIONS(2988), + [anon_sym_PIPE] = ACTIONS(2988), + [anon_sym_LT] = ACTIONS(2988), + [anon_sym_DOT_DOT] = ACTIONS(2988), + [anon_sym_COLON_COLON] = ACTIONS(2988), + [anon_sym_POUND] = ACTIONS(2988), + [anon_sym_SQUOTE] = ACTIONS(2990), + [anon_sym_async] = ACTIONS(2990), + [anon_sym_break] = ACTIONS(2990), + [anon_sym_const] = ACTIONS(2990), + [anon_sym_continue] = ACTIONS(2990), + [anon_sym_default] = ACTIONS(2990), + [anon_sym_enum] = ACTIONS(2990), + [anon_sym_fn] = ACTIONS(2990), + [anon_sym_for] = ACTIONS(2990), + [anon_sym_gen] = ACTIONS(2990), + [anon_sym_if] = ACTIONS(2990), + [anon_sym_impl] = ACTIONS(2990), + [anon_sym_let] = ACTIONS(2990), + [anon_sym_loop] = ACTIONS(2990), + [anon_sym_match] = ACTIONS(2990), + [anon_sym_mod] = ACTIONS(2990), + [anon_sym_pub] = ACTIONS(2990), + [anon_sym_return] = ACTIONS(2990), + [anon_sym_static] = ACTIONS(2990), + [anon_sym_struct] = ACTIONS(2990), + [anon_sym_trait] = ACTIONS(2990), + [anon_sym_type] = ACTIONS(2990), + [anon_sym_union] = ACTIONS(2990), + [anon_sym_unsafe] = ACTIONS(2990), + [anon_sym_use] = ACTIONS(2990), + [anon_sym_while] = ACTIONS(2990), + [anon_sym_extern] = ACTIONS(2990), + [anon_sym_safe] = ACTIONS(2990), + [anon_sym_yield] = ACTIONS(2990), + [anon_sym_move] = ACTIONS(2990), + [anon_sym_try] = ACTIONS(2990), + [sym_integer_literal] = ACTIONS(2988), + [aux_sym_string_literal_token1] = ACTIONS(2988), + [sym_char_literal] = ACTIONS(2988), + [anon_sym_true] = ACTIONS(2990), + [anon_sym_false] = ACTIONS(2990), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(2990), + [sym_super] = ACTIONS(2990), + [sym_crate] = ACTIONS(2990), + [sym_metavariable] = ACTIONS(2988), + [sym__raw_string_literal_start] = ACTIONS(2988), + [sym_float_literal] = ACTIONS(2988), }, [STATE(766)] = { [sym_line_comment] = STATE(766), [sym_block_comment] = STATE(766), - [ts_builtin_sym_end] = ACTIONS(2974), - [sym_identifier] = ACTIONS(2976), - [anon_sym_SEMI] = ACTIONS(2974), - [anon_sym_macro_rules_BANG] = ACTIONS(2974), - [anon_sym_LPAREN] = ACTIONS(2974), - [anon_sym_LBRACK] = ACTIONS(2974), - [anon_sym_LBRACE] = ACTIONS(2974), - [anon_sym_RBRACE] = ACTIONS(2974), - [anon_sym_STAR] = ACTIONS(2974), - [anon_sym_u8] = ACTIONS(2976), - [anon_sym_i8] = ACTIONS(2976), - [anon_sym_u16] = ACTIONS(2976), - [anon_sym_i16] = ACTIONS(2976), - [anon_sym_u32] = ACTIONS(2976), - [anon_sym_i32] = ACTIONS(2976), - [anon_sym_u64] = ACTIONS(2976), - [anon_sym_i64] = ACTIONS(2976), - [anon_sym_u128] = ACTIONS(2976), - [anon_sym_i128] = ACTIONS(2976), - [anon_sym_isize] = ACTIONS(2976), - [anon_sym_usize] = ACTIONS(2976), - [anon_sym_f32] = ACTIONS(2976), - [anon_sym_f64] = ACTIONS(2976), - [anon_sym_bool] = ACTIONS(2976), - [anon_sym_str] = ACTIONS(2976), - [anon_sym_char] = ACTIONS(2976), - [anon_sym_DASH] = ACTIONS(2974), - [anon_sym_BANG] = ACTIONS(2974), - [anon_sym_AMP] = ACTIONS(2974), - [anon_sym_PIPE] = ACTIONS(2974), - [anon_sym_LT] = ACTIONS(2974), - [anon_sym_DOT_DOT] = ACTIONS(2974), - [anon_sym_COLON_COLON] = ACTIONS(2974), - [anon_sym_POUND] = ACTIONS(2974), - [anon_sym_SQUOTE] = ACTIONS(2976), - [anon_sym_async] = ACTIONS(2976), - [anon_sym_break] = ACTIONS(2976), - [anon_sym_const] = ACTIONS(2976), - [anon_sym_continue] = ACTIONS(2976), - [anon_sym_default] = ACTIONS(2976), - [anon_sym_enum] = ACTIONS(2976), - [anon_sym_fn] = ACTIONS(2976), - [anon_sym_for] = ACTIONS(2976), - [anon_sym_gen] = ACTIONS(2976), - [anon_sym_if] = ACTIONS(2976), - [anon_sym_impl] = ACTIONS(2976), - [anon_sym_let] = ACTIONS(2976), - [anon_sym_loop] = ACTIONS(2976), - [anon_sym_match] = ACTIONS(2976), - [anon_sym_mod] = ACTIONS(2976), - [anon_sym_pub] = ACTIONS(2976), - [anon_sym_return] = ACTIONS(2976), - [anon_sym_static] = ACTIONS(2976), - [anon_sym_struct] = ACTIONS(2976), - [anon_sym_trait] = ACTIONS(2976), - [anon_sym_type] = ACTIONS(2976), - [anon_sym_union] = ACTIONS(2976), - [anon_sym_unsafe] = ACTIONS(2976), - [anon_sym_use] = ACTIONS(2976), - [anon_sym_while] = ACTIONS(2976), - [anon_sym_extern] = ACTIONS(2976), - [anon_sym_yield] = ACTIONS(2976), - [anon_sym_move] = ACTIONS(2976), - [anon_sym_try] = ACTIONS(2976), - [sym_integer_literal] = ACTIONS(2974), - [aux_sym_string_literal_token1] = ACTIONS(2974), - [sym_char_literal] = ACTIONS(2974), - [anon_sym_true] = ACTIONS(2976), - [anon_sym_false] = ACTIONS(2976), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2976), - [sym_super] = ACTIONS(2976), - [sym_crate] = ACTIONS(2976), - [sym_metavariable] = ACTIONS(2974), - [sym__raw_string_literal_start] = ACTIONS(2974), - [sym_float_literal] = ACTIONS(2974), + [ts_builtin_sym_end] = ACTIONS(2992), + [sym_identifier] = ACTIONS(2994), + [anon_sym_SEMI] = ACTIONS(2992), + [anon_sym_macro_rules_BANG] = ACTIONS(2992), + [anon_sym_LPAREN] = ACTIONS(2992), + [anon_sym_LBRACK] = ACTIONS(2992), + [anon_sym_LBRACE] = ACTIONS(2992), + [anon_sym_RBRACE] = ACTIONS(2992), + [anon_sym_STAR] = ACTIONS(2992), + [anon_sym_u8] = ACTIONS(2994), + [anon_sym_i8] = ACTIONS(2994), + [anon_sym_u16] = ACTIONS(2994), + [anon_sym_i16] = ACTIONS(2994), + [anon_sym_u32] = ACTIONS(2994), + [anon_sym_i32] = ACTIONS(2994), + [anon_sym_u64] = ACTIONS(2994), + [anon_sym_i64] = ACTIONS(2994), + [anon_sym_u128] = ACTIONS(2994), + [anon_sym_i128] = ACTIONS(2994), + [anon_sym_isize] = ACTIONS(2994), + [anon_sym_usize] = ACTIONS(2994), + [anon_sym_f32] = ACTIONS(2994), + [anon_sym_f64] = ACTIONS(2994), + [anon_sym_bool] = ACTIONS(2994), + [anon_sym_str] = ACTIONS(2994), + [anon_sym_char] = ACTIONS(2994), + [anon_sym_DASH] = ACTIONS(2992), + [anon_sym_BANG] = ACTIONS(2992), + [anon_sym_AMP] = ACTIONS(2992), + [anon_sym_PIPE] = ACTIONS(2992), + [anon_sym_LT] = ACTIONS(2992), + [anon_sym_DOT_DOT] = ACTIONS(2992), + [anon_sym_COLON_COLON] = ACTIONS(2992), + [anon_sym_POUND] = ACTIONS(2992), + [anon_sym_SQUOTE] = ACTIONS(2994), + [anon_sym_async] = ACTIONS(2994), + [anon_sym_break] = ACTIONS(2994), + [anon_sym_const] = ACTIONS(2994), + [anon_sym_continue] = ACTIONS(2994), + [anon_sym_default] = ACTIONS(2994), + [anon_sym_enum] = ACTIONS(2994), + [anon_sym_fn] = ACTIONS(2994), + [anon_sym_for] = ACTIONS(2994), + [anon_sym_gen] = ACTIONS(2994), + [anon_sym_if] = ACTIONS(2994), + [anon_sym_impl] = ACTIONS(2994), + [anon_sym_let] = ACTIONS(2994), + [anon_sym_loop] = ACTIONS(2994), + [anon_sym_match] = ACTIONS(2994), + [anon_sym_mod] = ACTIONS(2994), + [anon_sym_pub] = ACTIONS(2994), + [anon_sym_return] = ACTIONS(2994), + [anon_sym_static] = ACTIONS(2994), + [anon_sym_struct] = ACTIONS(2994), + [anon_sym_trait] = ACTIONS(2994), + [anon_sym_type] = ACTIONS(2994), + [anon_sym_union] = ACTIONS(2994), + [anon_sym_unsafe] = ACTIONS(2994), + [anon_sym_use] = ACTIONS(2994), + [anon_sym_while] = ACTIONS(2994), + [anon_sym_extern] = ACTIONS(2994), + [anon_sym_safe] = ACTIONS(2994), + [anon_sym_yield] = ACTIONS(2994), + [anon_sym_move] = ACTIONS(2994), + [anon_sym_try] = ACTIONS(2994), + [sym_integer_literal] = ACTIONS(2992), + [aux_sym_string_literal_token1] = ACTIONS(2992), + [sym_char_literal] = ACTIONS(2992), + [anon_sym_true] = ACTIONS(2994), + [anon_sym_false] = ACTIONS(2994), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(2994), + [sym_super] = ACTIONS(2994), + [sym_crate] = ACTIONS(2994), + [sym_metavariable] = ACTIONS(2992), + [sym__raw_string_literal_start] = ACTIONS(2992), + [sym_float_literal] = ACTIONS(2992), }, [STATE(767)] = { [sym_line_comment] = STATE(767), [sym_block_comment] = STATE(767), - [ts_builtin_sym_end] = ACTIONS(2978), - [sym_identifier] = ACTIONS(2980), - [anon_sym_SEMI] = ACTIONS(2978), - [anon_sym_macro_rules_BANG] = ACTIONS(2978), - [anon_sym_LPAREN] = ACTIONS(2978), - [anon_sym_LBRACK] = ACTIONS(2978), - [anon_sym_LBRACE] = ACTIONS(2978), - [anon_sym_RBRACE] = ACTIONS(2978), - [anon_sym_STAR] = ACTIONS(2978), - [anon_sym_u8] = ACTIONS(2980), - [anon_sym_i8] = ACTIONS(2980), - [anon_sym_u16] = ACTIONS(2980), - [anon_sym_i16] = ACTIONS(2980), - [anon_sym_u32] = ACTIONS(2980), - [anon_sym_i32] = ACTIONS(2980), - [anon_sym_u64] = ACTIONS(2980), - [anon_sym_i64] = ACTIONS(2980), - [anon_sym_u128] = ACTIONS(2980), - [anon_sym_i128] = ACTIONS(2980), - [anon_sym_isize] = ACTIONS(2980), - [anon_sym_usize] = ACTIONS(2980), - [anon_sym_f32] = ACTIONS(2980), - [anon_sym_f64] = ACTIONS(2980), - [anon_sym_bool] = ACTIONS(2980), - [anon_sym_str] = ACTIONS(2980), - [anon_sym_char] = ACTIONS(2980), - [anon_sym_DASH] = ACTIONS(2978), - [anon_sym_BANG] = ACTIONS(2978), - [anon_sym_AMP] = ACTIONS(2978), - [anon_sym_PIPE] = ACTIONS(2978), - [anon_sym_LT] = ACTIONS(2978), - [anon_sym_DOT_DOT] = ACTIONS(2978), - [anon_sym_COLON_COLON] = ACTIONS(2978), - [anon_sym_POUND] = ACTIONS(2978), - [anon_sym_SQUOTE] = ACTIONS(2980), - [anon_sym_async] = ACTIONS(2980), - [anon_sym_break] = ACTIONS(2980), - [anon_sym_const] = ACTIONS(2980), - [anon_sym_continue] = ACTIONS(2980), - [anon_sym_default] = ACTIONS(2980), - [anon_sym_enum] = ACTIONS(2980), - [anon_sym_fn] = ACTIONS(2980), - [anon_sym_for] = ACTIONS(2980), - [anon_sym_gen] = ACTIONS(2980), - [anon_sym_if] = ACTIONS(2980), - [anon_sym_impl] = ACTIONS(2980), - [anon_sym_let] = ACTIONS(2980), - [anon_sym_loop] = ACTIONS(2980), - [anon_sym_match] = ACTIONS(2980), - [anon_sym_mod] = ACTIONS(2980), - [anon_sym_pub] = ACTIONS(2980), - [anon_sym_return] = ACTIONS(2980), - [anon_sym_static] = ACTIONS(2980), - [anon_sym_struct] = ACTIONS(2980), - [anon_sym_trait] = ACTIONS(2980), - [anon_sym_type] = ACTIONS(2980), - [anon_sym_union] = ACTIONS(2980), - [anon_sym_unsafe] = ACTIONS(2980), - [anon_sym_use] = ACTIONS(2980), - [anon_sym_while] = ACTIONS(2980), - [anon_sym_extern] = ACTIONS(2980), - [anon_sym_yield] = ACTIONS(2980), - [anon_sym_move] = ACTIONS(2980), - [anon_sym_try] = ACTIONS(2980), - [sym_integer_literal] = ACTIONS(2978), - [aux_sym_string_literal_token1] = ACTIONS(2978), - [sym_char_literal] = ACTIONS(2978), - [anon_sym_true] = ACTIONS(2980), - [anon_sym_false] = ACTIONS(2980), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2980), - [sym_super] = ACTIONS(2980), - [sym_crate] = ACTIONS(2980), - [sym_metavariable] = ACTIONS(2978), - [sym__raw_string_literal_start] = ACTIONS(2978), - [sym_float_literal] = ACTIONS(2978), + [ts_builtin_sym_end] = ACTIONS(2996), + [sym_identifier] = ACTIONS(2998), + [anon_sym_SEMI] = ACTIONS(2996), + [anon_sym_macro_rules_BANG] = ACTIONS(2996), + [anon_sym_LPAREN] = ACTIONS(2996), + [anon_sym_LBRACK] = ACTIONS(2996), + [anon_sym_LBRACE] = ACTIONS(2996), + [anon_sym_RBRACE] = ACTIONS(2996), + [anon_sym_STAR] = ACTIONS(2996), + [anon_sym_u8] = ACTIONS(2998), + [anon_sym_i8] = ACTIONS(2998), + [anon_sym_u16] = ACTIONS(2998), + [anon_sym_i16] = ACTIONS(2998), + [anon_sym_u32] = ACTIONS(2998), + [anon_sym_i32] = ACTIONS(2998), + [anon_sym_u64] = ACTIONS(2998), + [anon_sym_i64] = ACTIONS(2998), + [anon_sym_u128] = ACTIONS(2998), + [anon_sym_i128] = ACTIONS(2998), + [anon_sym_isize] = ACTIONS(2998), + [anon_sym_usize] = ACTIONS(2998), + [anon_sym_f32] = ACTIONS(2998), + [anon_sym_f64] = ACTIONS(2998), + [anon_sym_bool] = ACTIONS(2998), + [anon_sym_str] = ACTIONS(2998), + [anon_sym_char] = ACTIONS(2998), + [anon_sym_DASH] = ACTIONS(2996), + [anon_sym_BANG] = ACTIONS(2996), + [anon_sym_AMP] = ACTIONS(2996), + [anon_sym_PIPE] = ACTIONS(2996), + [anon_sym_LT] = ACTIONS(2996), + [anon_sym_DOT_DOT] = ACTIONS(2996), + [anon_sym_COLON_COLON] = ACTIONS(2996), + [anon_sym_POUND] = ACTIONS(2996), + [anon_sym_SQUOTE] = ACTIONS(2998), + [anon_sym_async] = ACTIONS(2998), + [anon_sym_break] = ACTIONS(2998), + [anon_sym_const] = ACTIONS(2998), + [anon_sym_continue] = ACTIONS(2998), + [anon_sym_default] = ACTIONS(2998), + [anon_sym_enum] = ACTIONS(2998), + [anon_sym_fn] = ACTIONS(2998), + [anon_sym_for] = ACTIONS(2998), + [anon_sym_gen] = ACTIONS(2998), + [anon_sym_if] = ACTIONS(2998), + [anon_sym_impl] = ACTIONS(2998), + [anon_sym_let] = ACTIONS(2998), + [anon_sym_loop] = ACTIONS(2998), + [anon_sym_match] = ACTIONS(2998), + [anon_sym_mod] = ACTIONS(2998), + [anon_sym_pub] = ACTIONS(2998), + [anon_sym_return] = ACTIONS(2998), + [anon_sym_static] = ACTIONS(2998), + [anon_sym_struct] = ACTIONS(2998), + [anon_sym_trait] = ACTIONS(2998), + [anon_sym_type] = ACTIONS(2998), + [anon_sym_union] = ACTIONS(2998), + [anon_sym_unsafe] = ACTIONS(2998), + [anon_sym_use] = ACTIONS(2998), + [anon_sym_while] = ACTIONS(2998), + [anon_sym_extern] = ACTIONS(2998), + [anon_sym_safe] = ACTIONS(2998), + [anon_sym_yield] = ACTIONS(2998), + [anon_sym_move] = ACTIONS(2998), + [anon_sym_try] = ACTIONS(2998), + [sym_integer_literal] = ACTIONS(2996), + [aux_sym_string_literal_token1] = ACTIONS(2996), + [sym_char_literal] = ACTIONS(2996), + [anon_sym_true] = ACTIONS(2998), + [anon_sym_false] = ACTIONS(2998), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(2998), + [sym_super] = ACTIONS(2998), + [sym_crate] = ACTIONS(2998), + [sym_metavariable] = ACTIONS(2996), + [sym__raw_string_literal_start] = ACTIONS(2996), + [sym_float_literal] = ACTIONS(2996), }, [STATE(768)] = { [sym_line_comment] = STATE(768), [sym_block_comment] = STATE(768), - [ts_builtin_sym_end] = ACTIONS(2982), - [sym_identifier] = ACTIONS(2984), - [anon_sym_SEMI] = ACTIONS(2982), - [anon_sym_macro_rules_BANG] = ACTIONS(2982), - [anon_sym_LPAREN] = ACTIONS(2982), - [anon_sym_LBRACK] = ACTIONS(2982), - [anon_sym_LBRACE] = ACTIONS(2982), - [anon_sym_RBRACE] = ACTIONS(2982), - [anon_sym_STAR] = ACTIONS(2982), - [anon_sym_u8] = ACTIONS(2984), - [anon_sym_i8] = ACTIONS(2984), - [anon_sym_u16] = ACTIONS(2984), - [anon_sym_i16] = ACTIONS(2984), - [anon_sym_u32] = ACTIONS(2984), - [anon_sym_i32] = ACTIONS(2984), - [anon_sym_u64] = ACTIONS(2984), - [anon_sym_i64] = ACTIONS(2984), - [anon_sym_u128] = ACTIONS(2984), - [anon_sym_i128] = ACTIONS(2984), - [anon_sym_isize] = ACTIONS(2984), - [anon_sym_usize] = ACTIONS(2984), - [anon_sym_f32] = ACTIONS(2984), - [anon_sym_f64] = ACTIONS(2984), - [anon_sym_bool] = ACTIONS(2984), - [anon_sym_str] = ACTIONS(2984), - [anon_sym_char] = ACTIONS(2984), - [anon_sym_DASH] = ACTIONS(2982), - [anon_sym_BANG] = ACTIONS(2982), - [anon_sym_AMP] = ACTIONS(2982), - [anon_sym_PIPE] = ACTIONS(2982), - [anon_sym_LT] = ACTIONS(2982), - [anon_sym_DOT_DOT] = ACTIONS(2982), - [anon_sym_COLON_COLON] = ACTIONS(2982), - [anon_sym_POUND] = ACTIONS(2982), - [anon_sym_SQUOTE] = ACTIONS(2984), - [anon_sym_async] = ACTIONS(2984), - [anon_sym_break] = ACTIONS(2984), - [anon_sym_const] = ACTIONS(2984), - [anon_sym_continue] = ACTIONS(2984), - [anon_sym_default] = ACTIONS(2984), - [anon_sym_enum] = ACTIONS(2984), - [anon_sym_fn] = ACTIONS(2984), - [anon_sym_for] = ACTIONS(2984), - [anon_sym_gen] = ACTIONS(2984), - [anon_sym_if] = ACTIONS(2984), - [anon_sym_impl] = ACTIONS(2984), - [anon_sym_let] = ACTIONS(2984), - [anon_sym_loop] = ACTIONS(2984), - [anon_sym_match] = ACTIONS(2984), - [anon_sym_mod] = ACTIONS(2984), - [anon_sym_pub] = ACTIONS(2984), - [anon_sym_return] = ACTIONS(2984), - [anon_sym_static] = ACTIONS(2984), - [anon_sym_struct] = ACTIONS(2984), - [anon_sym_trait] = ACTIONS(2984), - [anon_sym_type] = ACTIONS(2984), - [anon_sym_union] = ACTIONS(2984), - [anon_sym_unsafe] = ACTIONS(2984), - [anon_sym_use] = ACTIONS(2984), - [anon_sym_while] = ACTIONS(2984), - [anon_sym_extern] = ACTIONS(2984), - [anon_sym_yield] = ACTIONS(2984), - [anon_sym_move] = ACTIONS(2984), - [anon_sym_try] = ACTIONS(2984), - [sym_integer_literal] = ACTIONS(2982), - [aux_sym_string_literal_token1] = ACTIONS(2982), - [sym_char_literal] = ACTIONS(2982), - [anon_sym_true] = ACTIONS(2984), - [anon_sym_false] = ACTIONS(2984), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2984), - [sym_super] = ACTIONS(2984), - [sym_crate] = ACTIONS(2984), - [sym_metavariable] = ACTIONS(2982), - [sym__raw_string_literal_start] = ACTIONS(2982), - [sym_float_literal] = ACTIONS(2982), + [ts_builtin_sym_end] = ACTIONS(3000), + [sym_identifier] = ACTIONS(3002), + [anon_sym_SEMI] = ACTIONS(3000), + [anon_sym_macro_rules_BANG] = ACTIONS(3000), + [anon_sym_LPAREN] = ACTIONS(3000), + [anon_sym_LBRACK] = ACTIONS(3000), + [anon_sym_LBRACE] = ACTIONS(3000), + [anon_sym_RBRACE] = ACTIONS(3000), + [anon_sym_STAR] = ACTIONS(3000), + [anon_sym_u8] = ACTIONS(3002), + [anon_sym_i8] = ACTIONS(3002), + [anon_sym_u16] = ACTIONS(3002), + [anon_sym_i16] = ACTIONS(3002), + [anon_sym_u32] = ACTIONS(3002), + [anon_sym_i32] = ACTIONS(3002), + [anon_sym_u64] = ACTIONS(3002), + [anon_sym_i64] = ACTIONS(3002), + [anon_sym_u128] = ACTIONS(3002), + [anon_sym_i128] = ACTIONS(3002), + [anon_sym_isize] = ACTIONS(3002), + [anon_sym_usize] = ACTIONS(3002), + [anon_sym_f32] = ACTIONS(3002), + [anon_sym_f64] = ACTIONS(3002), + [anon_sym_bool] = ACTIONS(3002), + [anon_sym_str] = ACTIONS(3002), + [anon_sym_char] = ACTIONS(3002), + [anon_sym_DASH] = ACTIONS(3000), + [anon_sym_BANG] = ACTIONS(3000), + [anon_sym_AMP] = ACTIONS(3000), + [anon_sym_PIPE] = ACTIONS(3000), + [anon_sym_LT] = ACTIONS(3000), + [anon_sym_DOT_DOT] = ACTIONS(3000), + [anon_sym_COLON_COLON] = ACTIONS(3000), + [anon_sym_POUND] = ACTIONS(3000), + [anon_sym_SQUOTE] = ACTIONS(3002), + [anon_sym_async] = ACTIONS(3002), + [anon_sym_break] = ACTIONS(3002), + [anon_sym_const] = ACTIONS(3002), + [anon_sym_continue] = ACTIONS(3002), + [anon_sym_default] = ACTIONS(3002), + [anon_sym_enum] = ACTIONS(3002), + [anon_sym_fn] = ACTIONS(3002), + [anon_sym_for] = ACTIONS(3002), + [anon_sym_gen] = ACTIONS(3002), + [anon_sym_if] = ACTIONS(3002), + [anon_sym_impl] = ACTIONS(3002), + [anon_sym_let] = ACTIONS(3002), + [anon_sym_loop] = ACTIONS(3002), + [anon_sym_match] = ACTIONS(3002), + [anon_sym_mod] = ACTIONS(3002), + [anon_sym_pub] = ACTIONS(3002), + [anon_sym_return] = ACTIONS(3002), + [anon_sym_static] = ACTIONS(3002), + [anon_sym_struct] = ACTIONS(3002), + [anon_sym_trait] = ACTIONS(3002), + [anon_sym_type] = ACTIONS(3002), + [anon_sym_union] = ACTIONS(3002), + [anon_sym_unsafe] = ACTIONS(3002), + [anon_sym_use] = ACTIONS(3002), + [anon_sym_while] = ACTIONS(3002), + [anon_sym_extern] = ACTIONS(3002), + [anon_sym_safe] = ACTIONS(3002), + [anon_sym_yield] = ACTIONS(3002), + [anon_sym_move] = ACTIONS(3002), + [anon_sym_try] = ACTIONS(3002), + [sym_integer_literal] = ACTIONS(3000), + [aux_sym_string_literal_token1] = ACTIONS(3000), + [sym_char_literal] = ACTIONS(3000), + [anon_sym_true] = ACTIONS(3002), + [anon_sym_false] = ACTIONS(3002), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(3002), + [sym_super] = ACTIONS(3002), + [sym_crate] = ACTIONS(3002), + [sym_metavariable] = ACTIONS(3000), + [sym__raw_string_literal_start] = ACTIONS(3000), + [sym_float_literal] = ACTIONS(3000), }, [STATE(769)] = { [sym_line_comment] = STATE(769), [sym_block_comment] = STATE(769), - [ts_builtin_sym_end] = ACTIONS(2986), - [sym_identifier] = ACTIONS(2988), - [anon_sym_SEMI] = ACTIONS(2986), - [anon_sym_macro_rules_BANG] = ACTIONS(2986), - [anon_sym_LPAREN] = ACTIONS(2986), - [anon_sym_LBRACK] = ACTIONS(2986), - [anon_sym_LBRACE] = ACTIONS(2986), - [anon_sym_RBRACE] = ACTIONS(2986), - [anon_sym_STAR] = ACTIONS(2986), - [anon_sym_u8] = ACTIONS(2988), - [anon_sym_i8] = ACTIONS(2988), - [anon_sym_u16] = ACTIONS(2988), - [anon_sym_i16] = ACTIONS(2988), - [anon_sym_u32] = ACTIONS(2988), - [anon_sym_i32] = ACTIONS(2988), - [anon_sym_u64] = ACTIONS(2988), - [anon_sym_i64] = ACTIONS(2988), - [anon_sym_u128] = ACTIONS(2988), - [anon_sym_i128] = ACTIONS(2988), - [anon_sym_isize] = ACTIONS(2988), - [anon_sym_usize] = ACTIONS(2988), - [anon_sym_f32] = ACTIONS(2988), - [anon_sym_f64] = ACTIONS(2988), - [anon_sym_bool] = ACTIONS(2988), - [anon_sym_str] = ACTIONS(2988), - [anon_sym_char] = ACTIONS(2988), - [anon_sym_DASH] = ACTIONS(2986), - [anon_sym_BANG] = ACTIONS(2986), - [anon_sym_AMP] = ACTIONS(2986), - [anon_sym_PIPE] = ACTIONS(2986), - [anon_sym_LT] = ACTIONS(2986), - [anon_sym_DOT_DOT] = ACTIONS(2986), - [anon_sym_COLON_COLON] = ACTIONS(2986), - [anon_sym_POUND] = ACTIONS(2986), - [anon_sym_SQUOTE] = ACTIONS(2988), - [anon_sym_async] = ACTIONS(2988), - [anon_sym_break] = ACTIONS(2988), - [anon_sym_const] = ACTIONS(2988), - [anon_sym_continue] = ACTIONS(2988), - [anon_sym_default] = ACTIONS(2988), - [anon_sym_enum] = ACTIONS(2988), - [anon_sym_fn] = ACTIONS(2988), - [anon_sym_for] = ACTIONS(2988), - [anon_sym_gen] = ACTIONS(2988), - [anon_sym_if] = ACTIONS(2988), - [anon_sym_impl] = ACTIONS(2988), - [anon_sym_let] = ACTIONS(2988), - [anon_sym_loop] = ACTIONS(2988), - [anon_sym_match] = ACTIONS(2988), - [anon_sym_mod] = ACTIONS(2988), - [anon_sym_pub] = ACTIONS(2988), - [anon_sym_return] = ACTIONS(2988), - [anon_sym_static] = ACTIONS(2988), - [anon_sym_struct] = ACTIONS(2988), - [anon_sym_trait] = ACTIONS(2988), - [anon_sym_type] = ACTIONS(2988), - [anon_sym_union] = ACTIONS(2988), - [anon_sym_unsafe] = ACTIONS(2988), - [anon_sym_use] = ACTIONS(2988), - [anon_sym_while] = ACTIONS(2988), - [anon_sym_extern] = ACTIONS(2988), - [anon_sym_yield] = ACTIONS(2988), - [anon_sym_move] = ACTIONS(2988), - [anon_sym_try] = ACTIONS(2988), - [sym_integer_literal] = ACTIONS(2986), - [aux_sym_string_literal_token1] = ACTIONS(2986), - [sym_char_literal] = ACTIONS(2986), - [anon_sym_true] = ACTIONS(2988), - [anon_sym_false] = ACTIONS(2988), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2988), - [sym_super] = ACTIONS(2988), - [sym_crate] = ACTIONS(2988), - [sym_metavariable] = ACTIONS(2986), - [sym__raw_string_literal_start] = ACTIONS(2986), - [sym_float_literal] = ACTIONS(2986), + [ts_builtin_sym_end] = ACTIONS(3004), + [sym_identifier] = ACTIONS(3006), + [anon_sym_SEMI] = ACTIONS(3004), + [anon_sym_macro_rules_BANG] = ACTIONS(3004), + [anon_sym_LPAREN] = ACTIONS(3004), + [anon_sym_LBRACK] = ACTIONS(3004), + [anon_sym_LBRACE] = ACTIONS(3004), + [anon_sym_RBRACE] = ACTIONS(3004), + [anon_sym_STAR] = ACTIONS(3004), + [anon_sym_u8] = ACTIONS(3006), + [anon_sym_i8] = ACTIONS(3006), + [anon_sym_u16] = ACTIONS(3006), + [anon_sym_i16] = ACTIONS(3006), + [anon_sym_u32] = ACTIONS(3006), + [anon_sym_i32] = ACTIONS(3006), + [anon_sym_u64] = ACTIONS(3006), + [anon_sym_i64] = ACTIONS(3006), + [anon_sym_u128] = ACTIONS(3006), + [anon_sym_i128] = ACTIONS(3006), + [anon_sym_isize] = ACTIONS(3006), + [anon_sym_usize] = ACTIONS(3006), + [anon_sym_f32] = ACTIONS(3006), + [anon_sym_f64] = ACTIONS(3006), + [anon_sym_bool] = ACTIONS(3006), + [anon_sym_str] = ACTIONS(3006), + [anon_sym_char] = ACTIONS(3006), + [anon_sym_DASH] = ACTIONS(3004), + [anon_sym_BANG] = ACTIONS(3004), + [anon_sym_AMP] = ACTIONS(3004), + [anon_sym_PIPE] = ACTIONS(3004), + [anon_sym_LT] = ACTIONS(3004), + [anon_sym_DOT_DOT] = ACTIONS(3004), + [anon_sym_COLON_COLON] = ACTIONS(3004), + [anon_sym_POUND] = ACTIONS(3004), + [anon_sym_SQUOTE] = ACTIONS(3006), + [anon_sym_async] = ACTIONS(3006), + [anon_sym_break] = ACTIONS(3006), + [anon_sym_const] = ACTIONS(3006), + [anon_sym_continue] = ACTIONS(3006), + [anon_sym_default] = ACTIONS(3006), + [anon_sym_enum] = ACTIONS(3006), + [anon_sym_fn] = ACTIONS(3006), + [anon_sym_for] = ACTIONS(3006), + [anon_sym_gen] = ACTIONS(3006), + [anon_sym_if] = ACTIONS(3006), + [anon_sym_impl] = ACTIONS(3006), + [anon_sym_let] = ACTIONS(3006), + [anon_sym_loop] = ACTIONS(3006), + [anon_sym_match] = ACTIONS(3006), + [anon_sym_mod] = ACTIONS(3006), + [anon_sym_pub] = ACTIONS(3006), + [anon_sym_return] = ACTIONS(3006), + [anon_sym_static] = ACTIONS(3006), + [anon_sym_struct] = ACTIONS(3006), + [anon_sym_trait] = ACTIONS(3006), + [anon_sym_type] = ACTIONS(3006), + [anon_sym_union] = ACTIONS(3006), + [anon_sym_unsafe] = ACTIONS(3006), + [anon_sym_use] = ACTIONS(3006), + [anon_sym_while] = ACTIONS(3006), + [anon_sym_extern] = ACTIONS(3006), + [anon_sym_safe] = ACTIONS(3006), + [anon_sym_yield] = ACTIONS(3006), + [anon_sym_move] = ACTIONS(3006), + [anon_sym_try] = ACTIONS(3006), + [sym_integer_literal] = ACTIONS(3004), + [aux_sym_string_literal_token1] = ACTIONS(3004), + [sym_char_literal] = ACTIONS(3004), + [anon_sym_true] = ACTIONS(3006), + [anon_sym_false] = ACTIONS(3006), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(3006), + [sym_super] = ACTIONS(3006), + [sym_crate] = ACTIONS(3006), + [sym_metavariable] = ACTIONS(3004), + [sym__raw_string_literal_start] = ACTIONS(3004), + [sym_float_literal] = ACTIONS(3004), }, [STATE(770)] = { [sym_line_comment] = STATE(770), [sym_block_comment] = STATE(770), - [ts_builtin_sym_end] = ACTIONS(2990), - [sym_identifier] = ACTIONS(2992), - [anon_sym_SEMI] = ACTIONS(2990), - [anon_sym_macro_rules_BANG] = ACTIONS(2990), - [anon_sym_LPAREN] = ACTIONS(2990), - [anon_sym_LBRACK] = ACTIONS(2990), - [anon_sym_LBRACE] = ACTIONS(2990), - [anon_sym_RBRACE] = ACTIONS(2990), - [anon_sym_STAR] = ACTIONS(2990), - [anon_sym_u8] = ACTIONS(2992), - [anon_sym_i8] = ACTIONS(2992), - [anon_sym_u16] = ACTIONS(2992), - [anon_sym_i16] = ACTIONS(2992), - [anon_sym_u32] = ACTIONS(2992), - [anon_sym_i32] = ACTIONS(2992), - [anon_sym_u64] = ACTIONS(2992), - [anon_sym_i64] = ACTIONS(2992), - [anon_sym_u128] = ACTIONS(2992), - [anon_sym_i128] = ACTIONS(2992), - [anon_sym_isize] = ACTIONS(2992), - [anon_sym_usize] = ACTIONS(2992), - [anon_sym_f32] = ACTIONS(2992), - [anon_sym_f64] = ACTIONS(2992), - [anon_sym_bool] = ACTIONS(2992), - [anon_sym_str] = ACTIONS(2992), - [anon_sym_char] = ACTIONS(2992), - [anon_sym_DASH] = ACTIONS(2990), - [anon_sym_BANG] = ACTIONS(2990), - [anon_sym_AMP] = ACTIONS(2990), - [anon_sym_PIPE] = ACTIONS(2990), - [anon_sym_LT] = ACTIONS(2990), - [anon_sym_DOT_DOT] = ACTIONS(2990), - [anon_sym_COLON_COLON] = ACTIONS(2990), - [anon_sym_POUND] = ACTIONS(2990), - [anon_sym_SQUOTE] = ACTIONS(2992), - [anon_sym_async] = ACTIONS(2992), - [anon_sym_break] = ACTIONS(2992), - [anon_sym_const] = ACTIONS(2992), - [anon_sym_continue] = ACTIONS(2992), - [anon_sym_default] = ACTIONS(2992), - [anon_sym_enum] = ACTIONS(2992), - [anon_sym_fn] = ACTIONS(2992), - [anon_sym_for] = ACTIONS(2992), - [anon_sym_gen] = ACTIONS(2992), - [anon_sym_if] = ACTIONS(2992), - [anon_sym_impl] = ACTIONS(2992), - [anon_sym_let] = ACTIONS(2992), - [anon_sym_loop] = ACTIONS(2992), - [anon_sym_match] = ACTIONS(2992), - [anon_sym_mod] = ACTIONS(2992), - [anon_sym_pub] = ACTIONS(2992), - [anon_sym_return] = ACTIONS(2992), - [anon_sym_static] = ACTIONS(2992), - [anon_sym_struct] = ACTIONS(2992), - [anon_sym_trait] = ACTIONS(2992), - [anon_sym_type] = ACTIONS(2992), - [anon_sym_union] = ACTIONS(2992), - [anon_sym_unsafe] = ACTIONS(2992), - [anon_sym_use] = ACTIONS(2992), - [anon_sym_while] = ACTIONS(2992), - [anon_sym_extern] = ACTIONS(2992), - [anon_sym_yield] = ACTIONS(2992), - [anon_sym_move] = ACTIONS(2992), - [anon_sym_try] = ACTIONS(2992), - [sym_integer_literal] = ACTIONS(2990), - [aux_sym_string_literal_token1] = ACTIONS(2990), - [sym_char_literal] = ACTIONS(2990), - [anon_sym_true] = ACTIONS(2992), - [anon_sym_false] = ACTIONS(2992), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2992), - [sym_super] = ACTIONS(2992), - [sym_crate] = ACTIONS(2992), - [sym_metavariable] = ACTIONS(2990), - [sym__raw_string_literal_start] = ACTIONS(2990), - [sym_float_literal] = ACTIONS(2990), + [ts_builtin_sym_end] = ACTIONS(3008), + [sym_identifier] = ACTIONS(3010), + [anon_sym_SEMI] = ACTIONS(3008), + [anon_sym_macro_rules_BANG] = ACTIONS(3008), + [anon_sym_LPAREN] = ACTIONS(3008), + [anon_sym_LBRACK] = ACTIONS(3008), + [anon_sym_LBRACE] = ACTIONS(3008), + [anon_sym_RBRACE] = ACTIONS(3008), + [anon_sym_STAR] = ACTIONS(3008), + [anon_sym_u8] = ACTIONS(3010), + [anon_sym_i8] = ACTIONS(3010), + [anon_sym_u16] = ACTIONS(3010), + [anon_sym_i16] = ACTIONS(3010), + [anon_sym_u32] = ACTIONS(3010), + [anon_sym_i32] = ACTIONS(3010), + [anon_sym_u64] = ACTIONS(3010), + [anon_sym_i64] = ACTIONS(3010), + [anon_sym_u128] = ACTIONS(3010), + [anon_sym_i128] = ACTIONS(3010), + [anon_sym_isize] = ACTIONS(3010), + [anon_sym_usize] = ACTIONS(3010), + [anon_sym_f32] = ACTIONS(3010), + [anon_sym_f64] = ACTIONS(3010), + [anon_sym_bool] = ACTIONS(3010), + [anon_sym_str] = ACTIONS(3010), + [anon_sym_char] = ACTIONS(3010), + [anon_sym_DASH] = ACTIONS(3008), + [anon_sym_BANG] = ACTIONS(3008), + [anon_sym_AMP] = ACTIONS(3008), + [anon_sym_PIPE] = ACTIONS(3008), + [anon_sym_LT] = ACTIONS(3008), + [anon_sym_DOT_DOT] = ACTIONS(3008), + [anon_sym_COLON_COLON] = ACTIONS(3008), + [anon_sym_POUND] = ACTIONS(3008), + [anon_sym_SQUOTE] = ACTIONS(3010), + [anon_sym_async] = ACTIONS(3010), + [anon_sym_break] = ACTIONS(3010), + [anon_sym_const] = ACTIONS(3010), + [anon_sym_continue] = ACTIONS(3010), + [anon_sym_default] = ACTIONS(3010), + [anon_sym_enum] = ACTIONS(3010), + [anon_sym_fn] = ACTIONS(3010), + [anon_sym_for] = ACTIONS(3010), + [anon_sym_gen] = ACTIONS(3010), + [anon_sym_if] = ACTIONS(3010), + [anon_sym_impl] = ACTIONS(3010), + [anon_sym_let] = ACTIONS(3010), + [anon_sym_loop] = ACTIONS(3010), + [anon_sym_match] = ACTIONS(3010), + [anon_sym_mod] = ACTIONS(3010), + [anon_sym_pub] = ACTIONS(3010), + [anon_sym_return] = ACTIONS(3010), + [anon_sym_static] = ACTIONS(3010), + [anon_sym_struct] = ACTIONS(3010), + [anon_sym_trait] = ACTIONS(3010), + [anon_sym_type] = ACTIONS(3010), + [anon_sym_union] = ACTIONS(3010), + [anon_sym_unsafe] = ACTIONS(3010), + [anon_sym_use] = ACTIONS(3010), + [anon_sym_while] = ACTIONS(3010), + [anon_sym_extern] = ACTIONS(3010), + [anon_sym_safe] = ACTIONS(3010), + [anon_sym_yield] = ACTIONS(3010), + [anon_sym_move] = ACTIONS(3010), + [anon_sym_try] = ACTIONS(3010), + [sym_integer_literal] = ACTIONS(3008), + [aux_sym_string_literal_token1] = ACTIONS(3008), + [sym_char_literal] = ACTIONS(3008), + [anon_sym_true] = ACTIONS(3010), + [anon_sym_false] = ACTIONS(3010), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(3010), + [sym_super] = ACTIONS(3010), + [sym_crate] = ACTIONS(3010), + [sym_metavariable] = ACTIONS(3008), + [sym__raw_string_literal_start] = ACTIONS(3008), + [sym_float_literal] = ACTIONS(3008), }, [STATE(771)] = { [sym_line_comment] = STATE(771), [sym_block_comment] = STATE(771), - [ts_builtin_sym_end] = ACTIONS(2994), - [sym_identifier] = ACTIONS(2996), - [anon_sym_SEMI] = ACTIONS(2994), - [anon_sym_macro_rules_BANG] = ACTIONS(2994), - [anon_sym_LPAREN] = ACTIONS(2994), - [anon_sym_LBRACK] = ACTIONS(2994), - [anon_sym_LBRACE] = ACTIONS(2994), - [anon_sym_RBRACE] = ACTIONS(2994), - [anon_sym_STAR] = ACTIONS(2994), - [anon_sym_u8] = ACTIONS(2996), - [anon_sym_i8] = ACTIONS(2996), - [anon_sym_u16] = ACTIONS(2996), - [anon_sym_i16] = ACTIONS(2996), - [anon_sym_u32] = ACTIONS(2996), - [anon_sym_i32] = ACTIONS(2996), - [anon_sym_u64] = ACTIONS(2996), - [anon_sym_i64] = ACTIONS(2996), - [anon_sym_u128] = ACTIONS(2996), - [anon_sym_i128] = ACTIONS(2996), - [anon_sym_isize] = ACTIONS(2996), - [anon_sym_usize] = ACTIONS(2996), - [anon_sym_f32] = ACTIONS(2996), - [anon_sym_f64] = ACTIONS(2996), - [anon_sym_bool] = ACTIONS(2996), - [anon_sym_str] = ACTIONS(2996), - [anon_sym_char] = ACTIONS(2996), - [anon_sym_DASH] = ACTIONS(2994), - [anon_sym_BANG] = ACTIONS(2994), - [anon_sym_AMP] = ACTIONS(2994), - [anon_sym_PIPE] = ACTIONS(2994), - [anon_sym_LT] = ACTIONS(2994), - [anon_sym_DOT_DOT] = ACTIONS(2994), - [anon_sym_COLON_COLON] = ACTIONS(2994), - [anon_sym_POUND] = ACTIONS(2994), - [anon_sym_SQUOTE] = ACTIONS(2996), - [anon_sym_async] = ACTIONS(2996), - [anon_sym_break] = ACTIONS(2996), - [anon_sym_const] = ACTIONS(2996), - [anon_sym_continue] = ACTIONS(2996), - [anon_sym_default] = ACTIONS(2996), - [anon_sym_enum] = ACTIONS(2996), - [anon_sym_fn] = ACTIONS(2996), - [anon_sym_for] = ACTIONS(2996), - [anon_sym_gen] = ACTIONS(2996), - [anon_sym_if] = ACTIONS(2996), - [anon_sym_impl] = ACTIONS(2996), - [anon_sym_let] = ACTIONS(2996), - [anon_sym_loop] = ACTIONS(2996), - [anon_sym_match] = ACTIONS(2996), - [anon_sym_mod] = ACTIONS(2996), - [anon_sym_pub] = ACTIONS(2996), - [anon_sym_return] = ACTIONS(2996), - [anon_sym_static] = ACTIONS(2996), - [anon_sym_struct] = ACTIONS(2996), - [anon_sym_trait] = ACTIONS(2996), - [anon_sym_type] = ACTIONS(2996), - [anon_sym_union] = ACTIONS(2996), - [anon_sym_unsafe] = ACTIONS(2996), - [anon_sym_use] = ACTIONS(2996), - [anon_sym_while] = ACTIONS(2996), - [anon_sym_extern] = ACTIONS(2996), - [anon_sym_yield] = ACTIONS(2996), - [anon_sym_move] = ACTIONS(2996), - [anon_sym_try] = ACTIONS(2996), - [sym_integer_literal] = ACTIONS(2994), - [aux_sym_string_literal_token1] = ACTIONS(2994), - [sym_char_literal] = ACTIONS(2994), - [anon_sym_true] = ACTIONS(2996), - [anon_sym_false] = ACTIONS(2996), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2996), - [sym_super] = ACTIONS(2996), - [sym_crate] = ACTIONS(2996), - [sym_metavariable] = ACTIONS(2994), - [sym__raw_string_literal_start] = ACTIONS(2994), - [sym_float_literal] = ACTIONS(2994), + [ts_builtin_sym_end] = ACTIONS(3012), + [sym_identifier] = ACTIONS(3014), + [anon_sym_SEMI] = ACTIONS(3012), + [anon_sym_macro_rules_BANG] = ACTIONS(3012), + [anon_sym_LPAREN] = ACTIONS(3012), + [anon_sym_LBRACK] = ACTIONS(3012), + [anon_sym_LBRACE] = ACTIONS(3012), + [anon_sym_RBRACE] = ACTIONS(3012), + [anon_sym_STAR] = ACTIONS(3012), + [anon_sym_u8] = ACTIONS(3014), + [anon_sym_i8] = ACTIONS(3014), + [anon_sym_u16] = ACTIONS(3014), + [anon_sym_i16] = ACTIONS(3014), + [anon_sym_u32] = ACTIONS(3014), + [anon_sym_i32] = ACTIONS(3014), + [anon_sym_u64] = ACTIONS(3014), + [anon_sym_i64] = ACTIONS(3014), + [anon_sym_u128] = ACTIONS(3014), + [anon_sym_i128] = ACTIONS(3014), + [anon_sym_isize] = ACTIONS(3014), + [anon_sym_usize] = ACTIONS(3014), + [anon_sym_f32] = ACTIONS(3014), + [anon_sym_f64] = ACTIONS(3014), + [anon_sym_bool] = ACTIONS(3014), + [anon_sym_str] = ACTIONS(3014), + [anon_sym_char] = ACTIONS(3014), + [anon_sym_DASH] = ACTIONS(3012), + [anon_sym_BANG] = ACTIONS(3012), + [anon_sym_AMP] = ACTIONS(3012), + [anon_sym_PIPE] = ACTIONS(3012), + [anon_sym_LT] = ACTIONS(3012), + [anon_sym_DOT_DOT] = ACTIONS(3012), + [anon_sym_COLON_COLON] = ACTIONS(3012), + [anon_sym_POUND] = ACTIONS(3012), + [anon_sym_SQUOTE] = ACTIONS(3014), + [anon_sym_async] = ACTIONS(3014), + [anon_sym_break] = ACTIONS(3014), + [anon_sym_const] = ACTIONS(3014), + [anon_sym_continue] = ACTIONS(3014), + [anon_sym_default] = ACTIONS(3014), + [anon_sym_enum] = ACTIONS(3014), + [anon_sym_fn] = ACTIONS(3014), + [anon_sym_for] = ACTIONS(3014), + [anon_sym_gen] = ACTIONS(3014), + [anon_sym_if] = ACTIONS(3014), + [anon_sym_impl] = ACTIONS(3014), + [anon_sym_let] = ACTIONS(3014), + [anon_sym_loop] = ACTIONS(3014), + [anon_sym_match] = ACTIONS(3014), + [anon_sym_mod] = ACTIONS(3014), + [anon_sym_pub] = ACTIONS(3014), + [anon_sym_return] = ACTIONS(3014), + [anon_sym_static] = ACTIONS(3014), + [anon_sym_struct] = ACTIONS(3014), + [anon_sym_trait] = ACTIONS(3014), + [anon_sym_type] = ACTIONS(3014), + [anon_sym_union] = ACTIONS(3014), + [anon_sym_unsafe] = ACTIONS(3014), + [anon_sym_use] = ACTIONS(3014), + [anon_sym_while] = ACTIONS(3014), + [anon_sym_extern] = ACTIONS(3014), + [anon_sym_safe] = ACTIONS(3014), + [anon_sym_yield] = ACTIONS(3014), + [anon_sym_move] = ACTIONS(3014), + [anon_sym_try] = ACTIONS(3014), + [sym_integer_literal] = ACTIONS(3012), + [aux_sym_string_literal_token1] = ACTIONS(3012), + [sym_char_literal] = ACTIONS(3012), + [anon_sym_true] = ACTIONS(3014), + [anon_sym_false] = ACTIONS(3014), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(3014), + [sym_super] = ACTIONS(3014), + [sym_crate] = ACTIONS(3014), + [sym_metavariable] = ACTIONS(3012), + [sym__raw_string_literal_start] = ACTIONS(3012), + [sym_float_literal] = ACTIONS(3012), }, [STATE(772)] = { [sym_line_comment] = STATE(772), [sym_block_comment] = STATE(772), - [ts_builtin_sym_end] = ACTIONS(2998), - [sym_identifier] = ACTIONS(3000), - [anon_sym_SEMI] = ACTIONS(2998), - [anon_sym_macro_rules_BANG] = ACTIONS(2998), - [anon_sym_LPAREN] = ACTIONS(2998), - [anon_sym_LBRACK] = ACTIONS(2998), - [anon_sym_LBRACE] = ACTIONS(2998), - [anon_sym_RBRACE] = ACTIONS(2998), - [anon_sym_STAR] = ACTIONS(2998), - [anon_sym_u8] = ACTIONS(3000), - [anon_sym_i8] = ACTIONS(3000), - [anon_sym_u16] = ACTIONS(3000), - [anon_sym_i16] = ACTIONS(3000), - [anon_sym_u32] = ACTIONS(3000), - [anon_sym_i32] = ACTIONS(3000), - [anon_sym_u64] = ACTIONS(3000), - [anon_sym_i64] = ACTIONS(3000), - [anon_sym_u128] = ACTIONS(3000), - [anon_sym_i128] = ACTIONS(3000), - [anon_sym_isize] = ACTIONS(3000), - [anon_sym_usize] = ACTIONS(3000), - [anon_sym_f32] = ACTIONS(3000), - [anon_sym_f64] = ACTIONS(3000), - [anon_sym_bool] = ACTIONS(3000), - [anon_sym_str] = ACTIONS(3000), - [anon_sym_char] = ACTIONS(3000), - [anon_sym_DASH] = ACTIONS(2998), - [anon_sym_BANG] = ACTIONS(2998), - [anon_sym_AMP] = ACTIONS(2998), - [anon_sym_PIPE] = ACTIONS(2998), - [anon_sym_LT] = ACTIONS(2998), - [anon_sym_DOT_DOT] = ACTIONS(2998), - [anon_sym_COLON_COLON] = ACTIONS(2998), - [anon_sym_POUND] = ACTIONS(2998), - [anon_sym_SQUOTE] = ACTIONS(3000), - [anon_sym_async] = ACTIONS(3000), - [anon_sym_break] = ACTIONS(3000), - [anon_sym_const] = ACTIONS(3000), - [anon_sym_continue] = ACTIONS(3000), - [anon_sym_default] = ACTIONS(3000), - [anon_sym_enum] = ACTIONS(3000), - [anon_sym_fn] = ACTIONS(3000), - [anon_sym_for] = ACTIONS(3000), - [anon_sym_gen] = ACTIONS(3000), - [anon_sym_if] = ACTIONS(3000), - [anon_sym_impl] = ACTIONS(3000), - [anon_sym_let] = ACTIONS(3000), - [anon_sym_loop] = ACTIONS(3000), - [anon_sym_match] = ACTIONS(3000), - [anon_sym_mod] = ACTIONS(3000), - [anon_sym_pub] = ACTIONS(3000), - [anon_sym_return] = ACTIONS(3000), - [anon_sym_static] = ACTIONS(3000), - [anon_sym_struct] = ACTIONS(3000), - [anon_sym_trait] = ACTIONS(3000), - [anon_sym_type] = ACTIONS(3000), - [anon_sym_union] = ACTIONS(3000), - [anon_sym_unsafe] = ACTIONS(3000), - [anon_sym_use] = ACTIONS(3000), - [anon_sym_while] = ACTIONS(3000), - [anon_sym_extern] = ACTIONS(3000), - [anon_sym_yield] = ACTIONS(3000), - [anon_sym_move] = ACTIONS(3000), - [anon_sym_try] = ACTIONS(3000), - [sym_integer_literal] = ACTIONS(2998), - [aux_sym_string_literal_token1] = ACTIONS(2998), - [sym_char_literal] = ACTIONS(2998), - [anon_sym_true] = ACTIONS(3000), - [anon_sym_false] = ACTIONS(3000), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3000), - [sym_super] = ACTIONS(3000), - [sym_crate] = ACTIONS(3000), - [sym_metavariable] = ACTIONS(2998), - [sym__raw_string_literal_start] = ACTIONS(2998), - [sym_float_literal] = ACTIONS(2998), + [ts_builtin_sym_end] = ACTIONS(3016), + [sym_identifier] = ACTIONS(3018), + [anon_sym_SEMI] = ACTIONS(3016), + [anon_sym_macro_rules_BANG] = ACTIONS(3016), + [anon_sym_LPAREN] = ACTIONS(3016), + [anon_sym_LBRACK] = ACTIONS(3016), + [anon_sym_LBRACE] = ACTIONS(3016), + [anon_sym_RBRACE] = ACTIONS(3016), + [anon_sym_STAR] = ACTIONS(3016), + [anon_sym_u8] = ACTIONS(3018), + [anon_sym_i8] = ACTIONS(3018), + [anon_sym_u16] = ACTIONS(3018), + [anon_sym_i16] = ACTIONS(3018), + [anon_sym_u32] = ACTIONS(3018), + [anon_sym_i32] = ACTIONS(3018), + [anon_sym_u64] = ACTIONS(3018), + [anon_sym_i64] = ACTIONS(3018), + [anon_sym_u128] = ACTIONS(3018), + [anon_sym_i128] = ACTIONS(3018), + [anon_sym_isize] = ACTIONS(3018), + [anon_sym_usize] = ACTIONS(3018), + [anon_sym_f32] = ACTIONS(3018), + [anon_sym_f64] = ACTIONS(3018), + [anon_sym_bool] = ACTIONS(3018), + [anon_sym_str] = ACTIONS(3018), + [anon_sym_char] = ACTIONS(3018), + [anon_sym_DASH] = ACTIONS(3016), + [anon_sym_BANG] = ACTIONS(3016), + [anon_sym_AMP] = ACTIONS(3016), + [anon_sym_PIPE] = ACTIONS(3016), + [anon_sym_LT] = ACTIONS(3016), + [anon_sym_DOT_DOT] = ACTIONS(3016), + [anon_sym_COLON_COLON] = ACTIONS(3016), + [anon_sym_POUND] = ACTIONS(3016), + [anon_sym_SQUOTE] = ACTIONS(3018), + [anon_sym_async] = ACTIONS(3018), + [anon_sym_break] = ACTIONS(3018), + [anon_sym_const] = ACTIONS(3018), + [anon_sym_continue] = ACTIONS(3018), + [anon_sym_default] = ACTIONS(3018), + [anon_sym_enum] = ACTIONS(3018), + [anon_sym_fn] = ACTIONS(3018), + [anon_sym_for] = ACTIONS(3018), + [anon_sym_gen] = ACTIONS(3018), + [anon_sym_if] = ACTIONS(3018), + [anon_sym_impl] = ACTIONS(3018), + [anon_sym_let] = ACTIONS(3018), + [anon_sym_loop] = ACTIONS(3018), + [anon_sym_match] = ACTIONS(3018), + [anon_sym_mod] = ACTIONS(3018), + [anon_sym_pub] = ACTIONS(3018), + [anon_sym_return] = ACTIONS(3018), + [anon_sym_static] = ACTIONS(3018), + [anon_sym_struct] = ACTIONS(3018), + [anon_sym_trait] = ACTIONS(3018), + [anon_sym_type] = ACTIONS(3018), + [anon_sym_union] = ACTIONS(3018), + [anon_sym_unsafe] = ACTIONS(3018), + [anon_sym_use] = ACTIONS(3018), + [anon_sym_while] = ACTIONS(3018), + [anon_sym_extern] = ACTIONS(3018), + [anon_sym_safe] = ACTIONS(3018), + [anon_sym_yield] = ACTIONS(3018), + [anon_sym_move] = ACTIONS(3018), + [anon_sym_try] = ACTIONS(3018), + [sym_integer_literal] = ACTIONS(3016), + [aux_sym_string_literal_token1] = ACTIONS(3016), + [sym_char_literal] = ACTIONS(3016), + [anon_sym_true] = ACTIONS(3018), + [anon_sym_false] = ACTIONS(3018), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(3018), + [sym_super] = ACTIONS(3018), + [sym_crate] = ACTIONS(3018), + [sym_metavariable] = ACTIONS(3016), + [sym__raw_string_literal_start] = ACTIONS(3016), + [sym_float_literal] = ACTIONS(3016), }, [STATE(773)] = { [sym_line_comment] = STATE(773), [sym_block_comment] = STATE(773), - [ts_builtin_sym_end] = ACTIONS(3002), - [sym_identifier] = ACTIONS(3004), - [anon_sym_SEMI] = ACTIONS(3002), - [anon_sym_macro_rules_BANG] = ACTIONS(3002), - [anon_sym_LPAREN] = ACTIONS(3002), - [anon_sym_LBRACK] = ACTIONS(3002), - [anon_sym_LBRACE] = ACTIONS(3002), - [anon_sym_RBRACE] = ACTIONS(3002), - [anon_sym_STAR] = ACTIONS(3002), - [anon_sym_u8] = ACTIONS(3004), - [anon_sym_i8] = ACTIONS(3004), - [anon_sym_u16] = ACTIONS(3004), - [anon_sym_i16] = ACTIONS(3004), - [anon_sym_u32] = ACTIONS(3004), - [anon_sym_i32] = ACTIONS(3004), - [anon_sym_u64] = ACTIONS(3004), - [anon_sym_i64] = ACTIONS(3004), - [anon_sym_u128] = ACTIONS(3004), - [anon_sym_i128] = ACTIONS(3004), - [anon_sym_isize] = ACTIONS(3004), - [anon_sym_usize] = ACTIONS(3004), - [anon_sym_f32] = ACTIONS(3004), - [anon_sym_f64] = ACTIONS(3004), - [anon_sym_bool] = ACTIONS(3004), - [anon_sym_str] = ACTIONS(3004), - [anon_sym_char] = ACTIONS(3004), - [anon_sym_DASH] = ACTIONS(3002), - [anon_sym_BANG] = ACTIONS(3002), - [anon_sym_AMP] = ACTIONS(3002), - [anon_sym_PIPE] = ACTIONS(3002), - [anon_sym_LT] = ACTIONS(3002), - [anon_sym_DOT_DOT] = ACTIONS(3002), - [anon_sym_COLON_COLON] = ACTIONS(3002), - [anon_sym_POUND] = ACTIONS(3002), - [anon_sym_SQUOTE] = ACTIONS(3004), - [anon_sym_async] = ACTIONS(3004), - [anon_sym_break] = ACTIONS(3004), - [anon_sym_const] = ACTIONS(3004), - [anon_sym_continue] = ACTIONS(3004), - [anon_sym_default] = ACTIONS(3004), - [anon_sym_enum] = ACTIONS(3004), - [anon_sym_fn] = ACTIONS(3004), - [anon_sym_for] = ACTIONS(3004), - [anon_sym_gen] = ACTIONS(3004), - [anon_sym_if] = ACTIONS(3004), - [anon_sym_impl] = ACTIONS(3004), - [anon_sym_let] = ACTIONS(3004), - [anon_sym_loop] = ACTIONS(3004), - [anon_sym_match] = ACTIONS(3004), - [anon_sym_mod] = ACTIONS(3004), - [anon_sym_pub] = ACTIONS(3004), - [anon_sym_return] = ACTIONS(3004), - [anon_sym_static] = ACTIONS(3004), - [anon_sym_struct] = ACTIONS(3004), - [anon_sym_trait] = ACTIONS(3004), - [anon_sym_type] = ACTIONS(3004), - [anon_sym_union] = ACTIONS(3004), - [anon_sym_unsafe] = ACTIONS(3004), - [anon_sym_use] = ACTIONS(3004), - [anon_sym_while] = ACTIONS(3004), - [anon_sym_extern] = ACTIONS(3004), - [anon_sym_yield] = ACTIONS(3004), - [anon_sym_move] = ACTIONS(3004), - [anon_sym_try] = ACTIONS(3004), - [sym_integer_literal] = ACTIONS(3002), - [aux_sym_string_literal_token1] = ACTIONS(3002), - [sym_char_literal] = ACTIONS(3002), - [anon_sym_true] = ACTIONS(3004), - [anon_sym_false] = ACTIONS(3004), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3004), - [sym_super] = ACTIONS(3004), - [sym_crate] = ACTIONS(3004), - [sym_metavariable] = ACTIONS(3002), - [sym__raw_string_literal_start] = ACTIONS(3002), - [sym_float_literal] = ACTIONS(3002), + [ts_builtin_sym_end] = ACTIONS(3020), + [sym_identifier] = ACTIONS(3022), + [anon_sym_SEMI] = ACTIONS(3020), + [anon_sym_macro_rules_BANG] = ACTIONS(3020), + [anon_sym_LPAREN] = ACTIONS(3020), + [anon_sym_LBRACK] = ACTIONS(3020), + [anon_sym_LBRACE] = ACTIONS(3020), + [anon_sym_RBRACE] = ACTIONS(3020), + [anon_sym_STAR] = ACTIONS(3020), + [anon_sym_u8] = ACTIONS(3022), + [anon_sym_i8] = ACTIONS(3022), + [anon_sym_u16] = ACTIONS(3022), + [anon_sym_i16] = ACTIONS(3022), + [anon_sym_u32] = ACTIONS(3022), + [anon_sym_i32] = ACTIONS(3022), + [anon_sym_u64] = ACTIONS(3022), + [anon_sym_i64] = ACTIONS(3022), + [anon_sym_u128] = ACTIONS(3022), + [anon_sym_i128] = ACTIONS(3022), + [anon_sym_isize] = ACTIONS(3022), + [anon_sym_usize] = ACTIONS(3022), + [anon_sym_f32] = ACTIONS(3022), + [anon_sym_f64] = ACTIONS(3022), + [anon_sym_bool] = ACTIONS(3022), + [anon_sym_str] = ACTIONS(3022), + [anon_sym_char] = ACTIONS(3022), + [anon_sym_DASH] = ACTIONS(3020), + [anon_sym_BANG] = ACTIONS(3020), + [anon_sym_AMP] = ACTIONS(3020), + [anon_sym_PIPE] = ACTIONS(3020), + [anon_sym_LT] = ACTIONS(3020), + [anon_sym_DOT_DOT] = ACTIONS(3020), + [anon_sym_COLON_COLON] = ACTIONS(3020), + [anon_sym_POUND] = ACTIONS(3020), + [anon_sym_SQUOTE] = ACTIONS(3022), + [anon_sym_async] = ACTIONS(3022), + [anon_sym_break] = ACTIONS(3022), + [anon_sym_const] = ACTIONS(3022), + [anon_sym_continue] = ACTIONS(3022), + [anon_sym_default] = ACTIONS(3022), + [anon_sym_enum] = ACTIONS(3022), + [anon_sym_fn] = ACTIONS(3022), + [anon_sym_for] = ACTIONS(3022), + [anon_sym_gen] = ACTIONS(3022), + [anon_sym_if] = ACTIONS(3022), + [anon_sym_impl] = ACTIONS(3022), + [anon_sym_let] = ACTIONS(3022), + [anon_sym_loop] = ACTIONS(3022), + [anon_sym_match] = ACTIONS(3022), + [anon_sym_mod] = ACTIONS(3022), + [anon_sym_pub] = ACTIONS(3022), + [anon_sym_return] = ACTIONS(3022), + [anon_sym_static] = ACTIONS(3022), + [anon_sym_struct] = ACTIONS(3022), + [anon_sym_trait] = ACTIONS(3022), + [anon_sym_type] = ACTIONS(3022), + [anon_sym_union] = ACTIONS(3022), + [anon_sym_unsafe] = ACTIONS(3022), + [anon_sym_use] = ACTIONS(3022), + [anon_sym_while] = ACTIONS(3022), + [anon_sym_extern] = ACTIONS(3022), + [anon_sym_safe] = ACTIONS(3022), + [anon_sym_yield] = ACTIONS(3022), + [anon_sym_move] = ACTIONS(3022), + [anon_sym_try] = ACTIONS(3022), + [sym_integer_literal] = ACTIONS(3020), + [aux_sym_string_literal_token1] = ACTIONS(3020), + [sym_char_literal] = ACTIONS(3020), + [anon_sym_true] = ACTIONS(3022), + [anon_sym_false] = ACTIONS(3022), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(3022), + [sym_super] = ACTIONS(3022), + [sym_crate] = ACTIONS(3022), + [sym_metavariable] = ACTIONS(3020), + [sym__raw_string_literal_start] = ACTIONS(3020), + [sym_float_literal] = ACTIONS(3020), }, [STATE(774)] = { [sym_line_comment] = STATE(774), [sym_block_comment] = STATE(774), - [ts_builtin_sym_end] = ACTIONS(3006), - [sym_identifier] = ACTIONS(3008), - [anon_sym_SEMI] = ACTIONS(3006), - [anon_sym_macro_rules_BANG] = ACTIONS(3006), - [anon_sym_LPAREN] = ACTIONS(3006), - [anon_sym_LBRACK] = ACTIONS(3006), - [anon_sym_LBRACE] = ACTIONS(3006), - [anon_sym_RBRACE] = ACTIONS(3006), - [anon_sym_STAR] = ACTIONS(3006), - [anon_sym_u8] = ACTIONS(3008), - [anon_sym_i8] = ACTIONS(3008), - [anon_sym_u16] = ACTIONS(3008), - [anon_sym_i16] = ACTIONS(3008), - [anon_sym_u32] = ACTIONS(3008), - [anon_sym_i32] = ACTIONS(3008), - [anon_sym_u64] = ACTIONS(3008), - [anon_sym_i64] = ACTIONS(3008), - [anon_sym_u128] = ACTIONS(3008), - [anon_sym_i128] = ACTIONS(3008), - [anon_sym_isize] = ACTIONS(3008), - [anon_sym_usize] = ACTIONS(3008), - [anon_sym_f32] = ACTIONS(3008), - [anon_sym_f64] = ACTIONS(3008), - [anon_sym_bool] = ACTIONS(3008), - [anon_sym_str] = ACTIONS(3008), - [anon_sym_char] = ACTIONS(3008), - [anon_sym_DASH] = ACTIONS(3006), - [anon_sym_BANG] = ACTIONS(3006), - [anon_sym_AMP] = ACTIONS(3006), - [anon_sym_PIPE] = ACTIONS(3006), - [anon_sym_LT] = ACTIONS(3006), - [anon_sym_DOT_DOT] = ACTIONS(3006), - [anon_sym_COLON_COLON] = ACTIONS(3006), - [anon_sym_POUND] = ACTIONS(3006), - [anon_sym_SQUOTE] = ACTIONS(3008), - [anon_sym_async] = ACTIONS(3008), - [anon_sym_break] = ACTIONS(3008), - [anon_sym_const] = ACTIONS(3008), - [anon_sym_continue] = ACTIONS(3008), - [anon_sym_default] = ACTIONS(3008), - [anon_sym_enum] = ACTIONS(3008), - [anon_sym_fn] = ACTIONS(3008), - [anon_sym_for] = ACTIONS(3008), - [anon_sym_gen] = ACTIONS(3008), - [anon_sym_if] = ACTIONS(3008), - [anon_sym_impl] = ACTIONS(3008), - [anon_sym_let] = ACTIONS(3008), - [anon_sym_loop] = ACTIONS(3008), - [anon_sym_match] = ACTIONS(3008), - [anon_sym_mod] = ACTIONS(3008), - [anon_sym_pub] = ACTIONS(3008), - [anon_sym_return] = ACTIONS(3008), - [anon_sym_static] = ACTIONS(3008), - [anon_sym_struct] = ACTIONS(3008), - [anon_sym_trait] = ACTIONS(3008), - [anon_sym_type] = ACTIONS(3008), - [anon_sym_union] = ACTIONS(3008), - [anon_sym_unsafe] = ACTIONS(3008), - [anon_sym_use] = ACTIONS(3008), - [anon_sym_while] = ACTIONS(3008), - [anon_sym_extern] = ACTIONS(3008), - [anon_sym_yield] = ACTIONS(3008), - [anon_sym_move] = ACTIONS(3008), - [anon_sym_try] = ACTIONS(3008), - [sym_integer_literal] = ACTIONS(3006), - [aux_sym_string_literal_token1] = ACTIONS(3006), - [sym_char_literal] = ACTIONS(3006), - [anon_sym_true] = ACTIONS(3008), - [anon_sym_false] = ACTIONS(3008), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3008), - [sym_super] = ACTIONS(3008), - [sym_crate] = ACTIONS(3008), - [sym_metavariable] = ACTIONS(3006), - [sym__raw_string_literal_start] = ACTIONS(3006), - [sym_float_literal] = ACTIONS(3006), + [ts_builtin_sym_end] = ACTIONS(3024), + [sym_identifier] = ACTIONS(3026), + [anon_sym_SEMI] = ACTIONS(3024), + [anon_sym_macro_rules_BANG] = ACTIONS(3024), + [anon_sym_LPAREN] = ACTIONS(3024), + [anon_sym_LBRACK] = ACTIONS(3024), + [anon_sym_LBRACE] = ACTIONS(3024), + [anon_sym_RBRACE] = ACTIONS(3024), + [anon_sym_STAR] = ACTIONS(3024), + [anon_sym_u8] = ACTIONS(3026), + [anon_sym_i8] = ACTIONS(3026), + [anon_sym_u16] = ACTIONS(3026), + [anon_sym_i16] = ACTIONS(3026), + [anon_sym_u32] = ACTIONS(3026), + [anon_sym_i32] = ACTIONS(3026), + [anon_sym_u64] = ACTIONS(3026), + [anon_sym_i64] = ACTIONS(3026), + [anon_sym_u128] = ACTIONS(3026), + [anon_sym_i128] = ACTIONS(3026), + [anon_sym_isize] = ACTIONS(3026), + [anon_sym_usize] = ACTIONS(3026), + [anon_sym_f32] = ACTIONS(3026), + [anon_sym_f64] = ACTIONS(3026), + [anon_sym_bool] = ACTIONS(3026), + [anon_sym_str] = ACTIONS(3026), + [anon_sym_char] = ACTIONS(3026), + [anon_sym_DASH] = ACTIONS(3024), + [anon_sym_BANG] = ACTIONS(3024), + [anon_sym_AMP] = ACTIONS(3024), + [anon_sym_PIPE] = ACTIONS(3024), + [anon_sym_LT] = ACTIONS(3024), + [anon_sym_DOT_DOT] = ACTIONS(3024), + [anon_sym_COLON_COLON] = ACTIONS(3024), + [anon_sym_POUND] = ACTIONS(3024), + [anon_sym_SQUOTE] = ACTIONS(3026), + [anon_sym_async] = ACTIONS(3026), + [anon_sym_break] = ACTIONS(3026), + [anon_sym_const] = ACTIONS(3026), + [anon_sym_continue] = ACTIONS(3026), + [anon_sym_default] = ACTIONS(3026), + [anon_sym_enum] = ACTIONS(3026), + [anon_sym_fn] = ACTIONS(3026), + [anon_sym_for] = ACTIONS(3026), + [anon_sym_gen] = ACTIONS(3026), + [anon_sym_if] = ACTIONS(3026), + [anon_sym_impl] = ACTIONS(3026), + [anon_sym_let] = ACTIONS(3026), + [anon_sym_loop] = ACTIONS(3026), + [anon_sym_match] = ACTIONS(3026), + [anon_sym_mod] = ACTIONS(3026), + [anon_sym_pub] = ACTIONS(3026), + [anon_sym_return] = ACTIONS(3026), + [anon_sym_static] = ACTIONS(3026), + [anon_sym_struct] = ACTIONS(3026), + [anon_sym_trait] = ACTIONS(3026), + [anon_sym_type] = ACTIONS(3026), + [anon_sym_union] = ACTIONS(3026), + [anon_sym_unsafe] = ACTIONS(3026), + [anon_sym_use] = ACTIONS(3026), + [anon_sym_while] = ACTIONS(3026), + [anon_sym_extern] = ACTIONS(3026), + [anon_sym_safe] = ACTIONS(3026), + [anon_sym_yield] = ACTIONS(3026), + [anon_sym_move] = ACTIONS(3026), + [anon_sym_try] = ACTIONS(3026), + [sym_integer_literal] = ACTIONS(3024), + [aux_sym_string_literal_token1] = ACTIONS(3024), + [sym_char_literal] = ACTIONS(3024), + [anon_sym_true] = ACTIONS(3026), + [anon_sym_false] = ACTIONS(3026), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(3026), + [sym_super] = ACTIONS(3026), + [sym_crate] = ACTIONS(3026), + [sym_metavariable] = ACTIONS(3024), + [sym__raw_string_literal_start] = ACTIONS(3024), + [sym_float_literal] = ACTIONS(3024), }, [STATE(775)] = { [sym_line_comment] = STATE(775), [sym_block_comment] = STATE(775), - [ts_builtin_sym_end] = ACTIONS(3010), - [sym_identifier] = ACTIONS(3012), - [anon_sym_SEMI] = ACTIONS(3010), - [anon_sym_macro_rules_BANG] = ACTIONS(3010), - [anon_sym_LPAREN] = ACTIONS(3010), - [anon_sym_LBRACK] = ACTIONS(3010), - [anon_sym_LBRACE] = ACTIONS(3010), - [anon_sym_RBRACE] = ACTIONS(3010), - [anon_sym_STAR] = ACTIONS(3010), - [anon_sym_u8] = ACTIONS(3012), - [anon_sym_i8] = ACTIONS(3012), - [anon_sym_u16] = ACTIONS(3012), - [anon_sym_i16] = ACTIONS(3012), - [anon_sym_u32] = ACTIONS(3012), - [anon_sym_i32] = ACTIONS(3012), - [anon_sym_u64] = ACTIONS(3012), - [anon_sym_i64] = ACTIONS(3012), - [anon_sym_u128] = ACTIONS(3012), - [anon_sym_i128] = ACTIONS(3012), - [anon_sym_isize] = ACTIONS(3012), - [anon_sym_usize] = ACTIONS(3012), - [anon_sym_f32] = ACTIONS(3012), - [anon_sym_f64] = ACTIONS(3012), - [anon_sym_bool] = ACTIONS(3012), - [anon_sym_str] = ACTIONS(3012), - [anon_sym_char] = ACTIONS(3012), - [anon_sym_DASH] = ACTIONS(3010), - [anon_sym_BANG] = ACTIONS(3010), - [anon_sym_AMP] = ACTIONS(3010), - [anon_sym_PIPE] = ACTIONS(3010), - [anon_sym_LT] = ACTIONS(3010), - [anon_sym_DOT_DOT] = ACTIONS(3010), - [anon_sym_COLON_COLON] = ACTIONS(3010), - [anon_sym_POUND] = ACTIONS(3010), - [anon_sym_SQUOTE] = ACTIONS(3012), - [anon_sym_async] = ACTIONS(3012), - [anon_sym_break] = ACTIONS(3012), - [anon_sym_const] = ACTIONS(3012), - [anon_sym_continue] = ACTIONS(3012), - [anon_sym_default] = ACTIONS(3012), - [anon_sym_enum] = ACTIONS(3012), - [anon_sym_fn] = ACTIONS(3012), - [anon_sym_for] = ACTIONS(3012), - [anon_sym_gen] = ACTIONS(3012), - [anon_sym_if] = ACTIONS(3012), - [anon_sym_impl] = ACTIONS(3012), - [anon_sym_let] = ACTIONS(3012), - [anon_sym_loop] = ACTIONS(3012), - [anon_sym_match] = ACTIONS(3012), - [anon_sym_mod] = ACTIONS(3012), - [anon_sym_pub] = ACTIONS(3012), - [anon_sym_return] = ACTIONS(3012), - [anon_sym_static] = ACTIONS(3012), - [anon_sym_struct] = ACTIONS(3012), - [anon_sym_trait] = ACTIONS(3012), - [anon_sym_type] = ACTIONS(3012), - [anon_sym_union] = ACTIONS(3012), - [anon_sym_unsafe] = ACTIONS(3012), - [anon_sym_use] = ACTIONS(3012), - [anon_sym_while] = ACTIONS(3012), - [anon_sym_extern] = ACTIONS(3012), - [anon_sym_yield] = ACTIONS(3012), - [anon_sym_move] = ACTIONS(3012), - [anon_sym_try] = ACTIONS(3012), - [sym_integer_literal] = ACTIONS(3010), - [aux_sym_string_literal_token1] = ACTIONS(3010), - [sym_char_literal] = ACTIONS(3010), - [anon_sym_true] = ACTIONS(3012), - [anon_sym_false] = ACTIONS(3012), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3012), - [sym_super] = ACTIONS(3012), - [sym_crate] = ACTIONS(3012), - [sym_metavariable] = ACTIONS(3010), - [sym__raw_string_literal_start] = ACTIONS(3010), - [sym_float_literal] = ACTIONS(3010), + [ts_builtin_sym_end] = ACTIONS(3028), + [sym_identifier] = ACTIONS(3030), + [anon_sym_SEMI] = ACTIONS(3028), + [anon_sym_macro_rules_BANG] = ACTIONS(3028), + [anon_sym_LPAREN] = ACTIONS(3028), + [anon_sym_LBRACK] = ACTIONS(3028), + [anon_sym_LBRACE] = ACTIONS(3028), + [anon_sym_RBRACE] = ACTIONS(3028), + [anon_sym_STAR] = ACTIONS(3028), + [anon_sym_u8] = ACTIONS(3030), + [anon_sym_i8] = ACTIONS(3030), + [anon_sym_u16] = ACTIONS(3030), + [anon_sym_i16] = ACTIONS(3030), + [anon_sym_u32] = ACTIONS(3030), + [anon_sym_i32] = ACTIONS(3030), + [anon_sym_u64] = ACTIONS(3030), + [anon_sym_i64] = ACTIONS(3030), + [anon_sym_u128] = ACTIONS(3030), + [anon_sym_i128] = ACTIONS(3030), + [anon_sym_isize] = ACTIONS(3030), + [anon_sym_usize] = ACTIONS(3030), + [anon_sym_f32] = ACTIONS(3030), + [anon_sym_f64] = ACTIONS(3030), + [anon_sym_bool] = ACTIONS(3030), + [anon_sym_str] = ACTIONS(3030), + [anon_sym_char] = ACTIONS(3030), + [anon_sym_DASH] = ACTIONS(3028), + [anon_sym_BANG] = ACTIONS(3028), + [anon_sym_AMP] = ACTIONS(3028), + [anon_sym_PIPE] = ACTIONS(3028), + [anon_sym_LT] = ACTIONS(3028), + [anon_sym_DOT_DOT] = ACTIONS(3028), + [anon_sym_COLON_COLON] = ACTIONS(3028), + [anon_sym_POUND] = ACTIONS(3028), + [anon_sym_SQUOTE] = ACTIONS(3030), + [anon_sym_async] = ACTIONS(3030), + [anon_sym_break] = ACTIONS(3030), + [anon_sym_const] = ACTIONS(3030), + [anon_sym_continue] = ACTIONS(3030), + [anon_sym_default] = ACTIONS(3030), + [anon_sym_enum] = ACTIONS(3030), + [anon_sym_fn] = ACTIONS(3030), + [anon_sym_for] = ACTIONS(3030), + [anon_sym_gen] = ACTIONS(3030), + [anon_sym_if] = ACTIONS(3030), + [anon_sym_impl] = ACTIONS(3030), + [anon_sym_let] = ACTIONS(3030), + [anon_sym_loop] = ACTIONS(3030), + [anon_sym_match] = ACTIONS(3030), + [anon_sym_mod] = ACTIONS(3030), + [anon_sym_pub] = ACTIONS(3030), + [anon_sym_return] = ACTIONS(3030), + [anon_sym_static] = ACTIONS(3030), + [anon_sym_struct] = ACTIONS(3030), + [anon_sym_trait] = ACTIONS(3030), + [anon_sym_type] = ACTIONS(3030), + [anon_sym_union] = ACTIONS(3030), + [anon_sym_unsafe] = ACTIONS(3030), + [anon_sym_use] = ACTIONS(3030), + [anon_sym_while] = ACTIONS(3030), + [anon_sym_extern] = ACTIONS(3030), + [anon_sym_safe] = ACTIONS(3030), + [anon_sym_yield] = ACTIONS(3030), + [anon_sym_move] = ACTIONS(3030), + [anon_sym_try] = ACTIONS(3030), + [sym_integer_literal] = ACTIONS(3028), + [aux_sym_string_literal_token1] = ACTIONS(3028), + [sym_char_literal] = ACTIONS(3028), + [anon_sym_true] = ACTIONS(3030), + [anon_sym_false] = ACTIONS(3030), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(3030), + [sym_super] = ACTIONS(3030), + [sym_crate] = ACTIONS(3030), + [sym_metavariable] = ACTIONS(3028), + [sym__raw_string_literal_start] = ACTIONS(3028), + [sym_float_literal] = ACTIONS(3028), }, [STATE(776)] = { [sym_line_comment] = STATE(776), [sym_block_comment] = STATE(776), - [ts_builtin_sym_end] = ACTIONS(3014), - [sym_identifier] = ACTIONS(3016), - [anon_sym_SEMI] = ACTIONS(3014), - [anon_sym_macro_rules_BANG] = ACTIONS(3014), - [anon_sym_LPAREN] = ACTIONS(3014), - [anon_sym_LBRACK] = ACTIONS(3014), - [anon_sym_LBRACE] = ACTIONS(3014), - [anon_sym_RBRACE] = ACTIONS(3014), - [anon_sym_STAR] = ACTIONS(3014), - [anon_sym_u8] = ACTIONS(3016), - [anon_sym_i8] = ACTIONS(3016), - [anon_sym_u16] = ACTIONS(3016), - [anon_sym_i16] = ACTIONS(3016), - [anon_sym_u32] = ACTIONS(3016), - [anon_sym_i32] = ACTIONS(3016), - [anon_sym_u64] = ACTIONS(3016), - [anon_sym_i64] = ACTIONS(3016), - [anon_sym_u128] = ACTIONS(3016), - [anon_sym_i128] = ACTIONS(3016), - [anon_sym_isize] = ACTIONS(3016), - [anon_sym_usize] = ACTIONS(3016), - [anon_sym_f32] = ACTIONS(3016), - [anon_sym_f64] = ACTIONS(3016), - [anon_sym_bool] = ACTIONS(3016), - [anon_sym_str] = ACTIONS(3016), - [anon_sym_char] = ACTIONS(3016), - [anon_sym_DASH] = ACTIONS(3014), - [anon_sym_BANG] = ACTIONS(3014), - [anon_sym_AMP] = ACTIONS(3014), - [anon_sym_PIPE] = ACTIONS(3014), - [anon_sym_LT] = ACTIONS(3014), - [anon_sym_DOT_DOT] = ACTIONS(3014), - [anon_sym_COLON_COLON] = ACTIONS(3014), - [anon_sym_POUND] = ACTIONS(3014), - [anon_sym_SQUOTE] = ACTIONS(3016), - [anon_sym_async] = ACTIONS(3016), - [anon_sym_break] = ACTIONS(3016), - [anon_sym_const] = ACTIONS(3016), - [anon_sym_continue] = ACTIONS(3016), - [anon_sym_default] = ACTIONS(3016), - [anon_sym_enum] = ACTIONS(3016), - [anon_sym_fn] = ACTIONS(3016), - [anon_sym_for] = ACTIONS(3016), - [anon_sym_gen] = ACTIONS(3016), - [anon_sym_if] = ACTIONS(3016), - [anon_sym_impl] = ACTIONS(3016), - [anon_sym_let] = ACTIONS(3016), - [anon_sym_loop] = ACTIONS(3016), - [anon_sym_match] = ACTIONS(3016), - [anon_sym_mod] = ACTIONS(3016), - [anon_sym_pub] = ACTIONS(3016), - [anon_sym_return] = ACTIONS(3016), - [anon_sym_static] = ACTIONS(3016), - [anon_sym_struct] = ACTIONS(3016), - [anon_sym_trait] = ACTIONS(3016), - [anon_sym_type] = ACTIONS(3016), - [anon_sym_union] = ACTIONS(3016), - [anon_sym_unsafe] = ACTIONS(3016), - [anon_sym_use] = ACTIONS(3016), - [anon_sym_while] = ACTIONS(3016), - [anon_sym_extern] = ACTIONS(3016), - [anon_sym_yield] = ACTIONS(3016), - [anon_sym_move] = ACTIONS(3016), - [anon_sym_try] = ACTIONS(3016), - [sym_integer_literal] = ACTIONS(3014), - [aux_sym_string_literal_token1] = ACTIONS(3014), - [sym_char_literal] = ACTIONS(3014), - [anon_sym_true] = ACTIONS(3016), - [anon_sym_false] = ACTIONS(3016), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3016), - [sym_super] = ACTIONS(3016), - [sym_crate] = ACTIONS(3016), - [sym_metavariable] = ACTIONS(3014), - [sym__raw_string_literal_start] = ACTIONS(3014), - [sym_float_literal] = ACTIONS(3014), + [ts_builtin_sym_end] = ACTIONS(3032), + [sym_identifier] = ACTIONS(3034), + [anon_sym_SEMI] = ACTIONS(3032), + [anon_sym_macro_rules_BANG] = ACTIONS(3032), + [anon_sym_LPAREN] = ACTIONS(3032), + [anon_sym_LBRACK] = ACTIONS(3032), + [anon_sym_LBRACE] = ACTIONS(3032), + [anon_sym_RBRACE] = ACTIONS(3032), + [anon_sym_STAR] = ACTIONS(3032), + [anon_sym_u8] = ACTIONS(3034), + [anon_sym_i8] = ACTIONS(3034), + [anon_sym_u16] = ACTIONS(3034), + [anon_sym_i16] = ACTIONS(3034), + [anon_sym_u32] = ACTIONS(3034), + [anon_sym_i32] = ACTIONS(3034), + [anon_sym_u64] = ACTIONS(3034), + [anon_sym_i64] = ACTIONS(3034), + [anon_sym_u128] = ACTIONS(3034), + [anon_sym_i128] = ACTIONS(3034), + [anon_sym_isize] = ACTIONS(3034), + [anon_sym_usize] = ACTIONS(3034), + [anon_sym_f32] = ACTIONS(3034), + [anon_sym_f64] = ACTIONS(3034), + [anon_sym_bool] = ACTIONS(3034), + [anon_sym_str] = ACTIONS(3034), + [anon_sym_char] = ACTIONS(3034), + [anon_sym_DASH] = ACTIONS(3032), + [anon_sym_BANG] = ACTIONS(3032), + [anon_sym_AMP] = ACTIONS(3032), + [anon_sym_PIPE] = ACTIONS(3032), + [anon_sym_LT] = ACTIONS(3032), + [anon_sym_DOT_DOT] = ACTIONS(3032), + [anon_sym_COLON_COLON] = ACTIONS(3032), + [anon_sym_POUND] = ACTIONS(3032), + [anon_sym_SQUOTE] = ACTIONS(3034), + [anon_sym_async] = ACTIONS(3034), + [anon_sym_break] = ACTIONS(3034), + [anon_sym_const] = ACTIONS(3034), + [anon_sym_continue] = ACTIONS(3034), + [anon_sym_default] = ACTIONS(3034), + [anon_sym_enum] = ACTIONS(3034), + [anon_sym_fn] = ACTIONS(3034), + [anon_sym_for] = ACTIONS(3034), + [anon_sym_gen] = ACTIONS(3034), + [anon_sym_if] = ACTIONS(3034), + [anon_sym_impl] = ACTIONS(3034), + [anon_sym_let] = ACTIONS(3034), + [anon_sym_loop] = ACTIONS(3034), + [anon_sym_match] = ACTIONS(3034), + [anon_sym_mod] = ACTIONS(3034), + [anon_sym_pub] = ACTIONS(3034), + [anon_sym_return] = ACTIONS(3034), + [anon_sym_static] = ACTIONS(3034), + [anon_sym_struct] = ACTIONS(3034), + [anon_sym_trait] = ACTIONS(3034), + [anon_sym_type] = ACTIONS(3034), + [anon_sym_union] = ACTIONS(3034), + [anon_sym_unsafe] = ACTIONS(3034), + [anon_sym_use] = ACTIONS(3034), + [anon_sym_while] = ACTIONS(3034), + [anon_sym_extern] = ACTIONS(3034), + [anon_sym_safe] = ACTIONS(3034), + [anon_sym_yield] = ACTIONS(3034), + [anon_sym_move] = ACTIONS(3034), + [anon_sym_try] = ACTIONS(3034), + [sym_integer_literal] = ACTIONS(3032), + [aux_sym_string_literal_token1] = ACTIONS(3032), + [sym_char_literal] = ACTIONS(3032), + [anon_sym_true] = ACTIONS(3034), + [anon_sym_false] = ACTIONS(3034), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(3034), + [sym_super] = ACTIONS(3034), + [sym_crate] = ACTIONS(3034), + [sym_metavariable] = ACTIONS(3032), + [sym__raw_string_literal_start] = ACTIONS(3032), + [sym_float_literal] = ACTIONS(3032), }, [STATE(777)] = { [sym_line_comment] = STATE(777), [sym_block_comment] = STATE(777), - [ts_builtin_sym_end] = ACTIONS(3018), - [sym_identifier] = ACTIONS(3020), - [anon_sym_SEMI] = ACTIONS(3018), - [anon_sym_macro_rules_BANG] = ACTIONS(3018), - [anon_sym_LPAREN] = ACTIONS(3018), - [anon_sym_LBRACK] = ACTIONS(3018), - [anon_sym_LBRACE] = ACTIONS(3018), - [anon_sym_RBRACE] = ACTIONS(3018), - [anon_sym_STAR] = ACTIONS(3018), - [anon_sym_u8] = ACTIONS(3020), - [anon_sym_i8] = ACTIONS(3020), - [anon_sym_u16] = ACTIONS(3020), - [anon_sym_i16] = ACTIONS(3020), - [anon_sym_u32] = ACTIONS(3020), - [anon_sym_i32] = ACTIONS(3020), - [anon_sym_u64] = ACTIONS(3020), - [anon_sym_i64] = ACTIONS(3020), - [anon_sym_u128] = ACTIONS(3020), - [anon_sym_i128] = ACTIONS(3020), - [anon_sym_isize] = ACTIONS(3020), - [anon_sym_usize] = ACTIONS(3020), - [anon_sym_f32] = ACTIONS(3020), - [anon_sym_f64] = ACTIONS(3020), - [anon_sym_bool] = ACTIONS(3020), - [anon_sym_str] = ACTIONS(3020), - [anon_sym_char] = ACTIONS(3020), - [anon_sym_DASH] = ACTIONS(3018), - [anon_sym_BANG] = ACTIONS(3018), - [anon_sym_AMP] = ACTIONS(3018), - [anon_sym_PIPE] = ACTIONS(3018), - [anon_sym_LT] = ACTIONS(3018), - [anon_sym_DOT_DOT] = ACTIONS(3018), - [anon_sym_COLON_COLON] = ACTIONS(3018), - [anon_sym_POUND] = ACTIONS(3018), - [anon_sym_SQUOTE] = ACTIONS(3020), - [anon_sym_async] = ACTIONS(3020), - [anon_sym_break] = ACTIONS(3020), - [anon_sym_const] = ACTIONS(3020), - [anon_sym_continue] = ACTIONS(3020), - [anon_sym_default] = ACTIONS(3020), - [anon_sym_enum] = ACTIONS(3020), - [anon_sym_fn] = ACTIONS(3020), - [anon_sym_for] = ACTIONS(3020), - [anon_sym_gen] = ACTIONS(3020), - [anon_sym_if] = ACTIONS(3020), - [anon_sym_impl] = ACTIONS(3020), - [anon_sym_let] = ACTIONS(3020), - [anon_sym_loop] = ACTIONS(3020), - [anon_sym_match] = ACTIONS(3020), - [anon_sym_mod] = ACTIONS(3020), - [anon_sym_pub] = ACTIONS(3020), - [anon_sym_return] = ACTIONS(3020), - [anon_sym_static] = ACTIONS(3020), - [anon_sym_struct] = ACTIONS(3020), - [anon_sym_trait] = ACTIONS(3020), - [anon_sym_type] = ACTIONS(3020), - [anon_sym_union] = ACTIONS(3020), - [anon_sym_unsafe] = ACTIONS(3020), - [anon_sym_use] = ACTIONS(3020), - [anon_sym_while] = ACTIONS(3020), - [anon_sym_extern] = ACTIONS(3020), - [anon_sym_yield] = ACTIONS(3020), - [anon_sym_move] = ACTIONS(3020), - [anon_sym_try] = ACTIONS(3020), - [sym_integer_literal] = ACTIONS(3018), - [aux_sym_string_literal_token1] = ACTIONS(3018), - [sym_char_literal] = ACTIONS(3018), - [anon_sym_true] = ACTIONS(3020), - [anon_sym_false] = ACTIONS(3020), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3020), - [sym_super] = ACTIONS(3020), - [sym_crate] = ACTIONS(3020), - [sym_metavariable] = ACTIONS(3018), - [sym__raw_string_literal_start] = ACTIONS(3018), - [sym_float_literal] = ACTIONS(3018), + [ts_builtin_sym_end] = ACTIONS(3036), + [sym_identifier] = ACTIONS(3038), + [anon_sym_SEMI] = ACTIONS(3036), + [anon_sym_macro_rules_BANG] = ACTIONS(3036), + [anon_sym_LPAREN] = ACTIONS(3036), + [anon_sym_LBRACK] = ACTIONS(3036), + [anon_sym_LBRACE] = ACTIONS(3036), + [anon_sym_RBRACE] = ACTIONS(3036), + [anon_sym_STAR] = ACTIONS(3036), + [anon_sym_u8] = ACTIONS(3038), + [anon_sym_i8] = ACTIONS(3038), + [anon_sym_u16] = ACTIONS(3038), + [anon_sym_i16] = ACTIONS(3038), + [anon_sym_u32] = ACTIONS(3038), + [anon_sym_i32] = ACTIONS(3038), + [anon_sym_u64] = ACTIONS(3038), + [anon_sym_i64] = ACTIONS(3038), + [anon_sym_u128] = ACTIONS(3038), + [anon_sym_i128] = ACTIONS(3038), + [anon_sym_isize] = ACTIONS(3038), + [anon_sym_usize] = ACTIONS(3038), + [anon_sym_f32] = ACTIONS(3038), + [anon_sym_f64] = ACTIONS(3038), + [anon_sym_bool] = ACTIONS(3038), + [anon_sym_str] = ACTIONS(3038), + [anon_sym_char] = ACTIONS(3038), + [anon_sym_DASH] = ACTIONS(3036), + [anon_sym_BANG] = ACTIONS(3036), + [anon_sym_AMP] = ACTIONS(3036), + [anon_sym_PIPE] = ACTIONS(3036), + [anon_sym_LT] = ACTIONS(3036), + [anon_sym_DOT_DOT] = ACTIONS(3036), + [anon_sym_COLON_COLON] = ACTIONS(3036), + [anon_sym_POUND] = ACTIONS(3036), + [anon_sym_SQUOTE] = ACTIONS(3038), + [anon_sym_async] = ACTIONS(3038), + [anon_sym_break] = ACTIONS(3038), + [anon_sym_const] = ACTIONS(3038), + [anon_sym_continue] = ACTIONS(3038), + [anon_sym_default] = ACTIONS(3038), + [anon_sym_enum] = ACTIONS(3038), + [anon_sym_fn] = ACTIONS(3038), + [anon_sym_for] = ACTIONS(3038), + [anon_sym_gen] = ACTIONS(3038), + [anon_sym_if] = ACTIONS(3038), + [anon_sym_impl] = ACTIONS(3038), + [anon_sym_let] = ACTIONS(3038), + [anon_sym_loop] = ACTIONS(3038), + [anon_sym_match] = ACTIONS(3038), + [anon_sym_mod] = ACTIONS(3038), + [anon_sym_pub] = ACTIONS(3038), + [anon_sym_return] = ACTIONS(3038), + [anon_sym_static] = ACTIONS(3038), + [anon_sym_struct] = ACTIONS(3038), + [anon_sym_trait] = ACTIONS(3038), + [anon_sym_type] = ACTIONS(3038), + [anon_sym_union] = ACTIONS(3038), + [anon_sym_unsafe] = ACTIONS(3038), + [anon_sym_use] = ACTIONS(3038), + [anon_sym_while] = ACTIONS(3038), + [anon_sym_extern] = ACTIONS(3038), + [anon_sym_safe] = ACTIONS(3038), + [anon_sym_yield] = ACTIONS(3038), + [anon_sym_move] = ACTIONS(3038), + [anon_sym_try] = ACTIONS(3038), + [sym_integer_literal] = ACTIONS(3036), + [aux_sym_string_literal_token1] = ACTIONS(3036), + [sym_char_literal] = ACTIONS(3036), + [anon_sym_true] = ACTIONS(3038), + [anon_sym_false] = ACTIONS(3038), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(3038), + [sym_super] = ACTIONS(3038), + [sym_crate] = ACTIONS(3038), + [sym_metavariable] = ACTIONS(3036), + [sym__raw_string_literal_start] = ACTIONS(3036), + [sym_float_literal] = ACTIONS(3036), }, [STATE(778)] = { [sym_line_comment] = STATE(778), [sym_block_comment] = STATE(778), - [ts_builtin_sym_end] = ACTIONS(3022), - [sym_identifier] = ACTIONS(3024), - [anon_sym_SEMI] = ACTIONS(3022), - [anon_sym_macro_rules_BANG] = ACTIONS(3022), - [anon_sym_LPAREN] = ACTIONS(3022), - [anon_sym_LBRACK] = ACTIONS(3022), - [anon_sym_LBRACE] = ACTIONS(3022), - [anon_sym_RBRACE] = ACTIONS(3022), - [anon_sym_STAR] = ACTIONS(3022), - [anon_sym_u8] = ACTIONS(3024), - [anon_sym_i8] = ACTIONS(3024), - [anon_sym_u16] = ACTIONS(3024), - [anon_sym_i16] = ACTIONS(3024), - [anon_sym_u32] = ACTIONS(3024), - [anon_sym_i32] = ACTIONS(3024), - [anon_sym_u64] = ACTIONS(3024), - [anon_sym_i64] = ACTIONS(3024), - [anon_sym_u128] = ACTIONS(3024), - [anon_sym_i128] = ACTIONS(3024), - [anon_sym_isize] = ACTIONS(3024), - [anon_sym_usize] = ACTIONS(3024), - [anon_sym_f32] = ACTIONS(3024), - [anon_sym_f64] = ACTIONS(3024), - [anon_sym_bool] = ACTIONS(3024), - [anon_sym_str] = ACTIONS(3024), - [anon_sym_char] = ACTIONS(3024), - [anon_sym_DASH] = ACTIONS(3022), - [anon_sym_BANG] = ACTIONS(3022), - [anon_sym_AMP] = ACTIONS(3022), - [anon_sym_PIPE] = ACTIONS(3022), - [anon_sym_LT] = ACTIONS(3022), - [anon_sym_DOT_DOT] = ACTIONS(3022), - [anon_sym_COLON_COLON] = ACTIONS(3022), - [anon_sym_POUND] = ACTIONS(3022), - [anon_sym_SQUOTE] = ACTIONS(3024), - [anon_sym_async] = ACTIONS(3024), - [anon_sym_break] = ACTIONS(3024), - [anon_sym_const] = ACTIONS(3024), - [anon_sym_continue] = ACTIONS(3024), - [anon_sym_default] = ACTIONS(3024), - [anon_sym_enum] = ACTIONS(3024), - [anon_sym_fn] = ACTIONS(3024), - [anon_sym_for] = ACTIONS(3024), - [anon_sym_gen] = ACTIONS(3024), - [anon_sym_if] = ACTIONS(3024), - [anon_sym_impl] = ACTIONS(3024), - [anon_sym_let] = ACTIONS(3024), - [anon_sym_loop] = ACTIONS(3024), - [anon_sym_match] = ACTIONS(3024), - [anon_sym_mod] = ACTIONS(3024), - [anon_sym_pub] = ACTIONS(3024), - [anon_sym_return] = ACTIONS(3024), - [anon_sym_static] = ACTIONS(3024), - [anon_sym_struct] = ACTIONS(3024), - [anon_sym_trait] = ACTIONS(3024), - [anon_sym_type] = ACTIONS(3024), - [anon_sym_union] = ACTIONS(3024), - [anon_sym_unsafe] = ACTIONS(3024), - [anon_sym_use] = ACTIONS(3024), - [anon_sym_while] = ACTIONS(3024), - [anon_sym_extern] = ACTIONS(3024), - [anon_sym_yield] = ACTIONS(3024), - [anon_sym_move] = ACTIONS(3024), - [anon_sym_try] = ACTIONS(3024), - [sym_integer_literal] = ACTIONS(3022), - [aux_sym_string_literal_token1] = ACTIONS(3022), - [sym_char_literal] = ACTIONS(3022), - [anon_sym_true] = ACTIONS(3024), - [anon_sym_false] = ACTIONS(3024), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3024), - [sym_super] = ACTIONS(3024), - [sym_crate] = ACTIONS(3024), - [sym_metavariable] = ACTIONS(3022), - [sym__raw_string_literal_start] = ACTIONS(3022), - [sym_float_literal] = ACTIONS(3022), + [ts_builtin_sym_end] = ACTIONS(3040), + [sym_identifier] = ACTIONS(3042), + [anon_sym_SEMI] = ACTIONS(3040), + [anon_sym_macro_rules_BANG] = ACTIONS(3040), + [anon_sym_LPAREN] = ACTIONS(3040), + [anon_sym_LBRACK] = ACTIONS(3040), + [anon_sym_LBRACE] = ACTIONS(3040), + [anon_sym_RBRACE] = ACTIONS(3040), + [anon_sym_STAR] = ACTIONS(3040), + [anon_sym_u8] = ACTIONS(3042), + [anon_sym_i8] = ACTIONS(3042), + [anon_sym_u16] = ACTIONS(3042), + [anon_sym_i16] = ACTIONS(3042), + [anon_sym_u32] = ACTIONS(3042), + [anon_sym_i32] = ACTIONS(3042), + [anon_sym_u64] = ACTIONS(3042), + [anon_sym_i64] = ACTIONS(3042), + [anon_sym_u128] = ACTIONS(3042), + [anon_sym_i128] = ACTIONS(3042), + [anon_sym_isize] = ACTIONS(3042), + [anon_sym_usize] = ACTIONS(3042), + [anon_sym_f32] = ACTIONS(3042), + [anon_sym_f64] = ACTIONS(3042), + [anon_sym_bool] = ACTIONS(3042), + [anon_sym_str] = ACTIONS(3042), + [anon_sym_char] = ACTIONS(3042), + [anon_sym_DASH] = ACTIONS(3040), + [anon_sym_BANG] = ACTIONS(3040), + [anon_sym_AMP] = ACTIONS(3040), + [anon_sym_PIPE] = ACTIONS(3040), + [anon_sym_LT] = ACTIONS(3040), + [anon_sym_DOT_DOT] = ACTIONS(3040), + [anon_sym_COLON_COLON] = ACTIONS(3040), + [anon_sym_POUND] = ACTIONS(3040), + [anon_sym_SQUOTE] = ACTIONS(3042), + [anon_sym_async] = ACTIONS(3042), + [anon_sym_break] = ACTIONS(3042), + [anon_sym_const] = ACTIONS(3042), + [anon_sym_continue] = ACTIONS(3042), + [anon_sym_default] = ACTIONS(3042), + [anon_sym_enum] = ACTIONS(3042), + [anon_sym_fn] = ACTIONS(3042), + [anon_sym_for] = ACTIONS(3042), + [anon_sym_gen] = ACTIONS(3042), + [anon_sym_if] = ACTIONS(3042), + [anon_sym_impl] = ACTIONS(3042), + [anon_sym_let] = ACTIONS(3042), + [anon_sym_loop] = ACTIONS(3042), + [anon_sym_match] = ACTIONS(3042), + [anon_sym_mod] = ACTIONS(3042), + [anon_sym_pub] = ACTIONS(3042), + [anon_sym_return] = ACTIONS(3042), + [anon_sym_static] = ACTIONS(3042), + [anon_sym_struct] = ACTIONS(3042), + [anon_sym_trait] = ACTIONS(3042), + [anon_sym_type] = ACTIONS(3042), + [anon_sym_union] = ACTIONS(3042), + [anon_sym_unsafe] = ACTIONS(3042), + [anon_sym_use] = ACTIONS(3042), + [anon_sym_while] = ACTIONS(3042), + [anon_sym_extern] = ACTIONS(3042), + [anon_sym_safe] = ACTIONS(3042), + [anon_sym_yield] = ACTIONS(3042), + [anon_sym_move] = ACTIONS(3042), + [anon_sym_try] = ACTIONS(3042), + [sym_integer_literal] = ACTIONS(3040), + [aux_sym_string_literal_token1] = ACTIONS(3040), + [sym_char_literal] = ACTIONS(3040), + [anon_sym_true] = ACTIONS(3042), + [anon_sym_false] = ACTIONS(3042), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(3042), + [sym_super] = ACTIONS(3042), + [sym_crate] = ACTIONS(3042), + [sym_metavariable] = ACTIONS(3040), + [sym__raw_string_literal_start] = ACTIONS(3040), + [sym_float_literal] = ACTIONS(3040), }, [STATE(779)] = { [sym_line_comment] = STATE(779), [sym_block_comment] = STATE(779), - [ts_builtin_sym_end] = ACTIONS(3026), - [sym_identifier] = ACTIONS(3028), - [anon_sym_SEMI] = ACTIONS(3026), - [anon_sym_macro_rules_BANG] = ACTIONS(3026), - [anon_sym_LPAREN] = ACTIONS(3026), - [anon_sym_LBRACK] = ACTIONS(3026), - [anon_sym_LBRACE] = ACTIONS(3026), - [anon_sym_RBRACE] = ACTIONS(3026), - [anon_sym_STAR] = ACTIONS(3026), - [anon_sym_u8] = ACTIONS(3028), - [anon_sym_i8] = ACTIONS(3028), - [anon_sym_u16] = ACTIONS(3028), - [anon_sym_i16] = ACTIONS(3028), - [anon_sym_u32] = ACTIONS(3028), - [anon_sym_i32] = ACTIONS(3028), - [anon_sym_u64] = ACTIONS(3028), - [anon_sym_i64] = ACTIONS(3028), - [anon_sym_u128] = ACTIONS(3028), - [anon_sym_i128] = ACTIONS(3028), - [anon_sym_isize] = ACTIONS(3028), - [anon_sym_usize] = ACTIONS(3028), - [anon_sym_f32] = ACTIONS(3028), - [anon_sym_f64] = ACTIONS(3028), - [anon_sym_bool] = ACTIONS(3028), - [anon_sym_str] = ACTIONS(3028), - [anon_sym_char] = ACTIONS(3028), - [anon_sym_DASH] = ACTIONS(3026), - [anon_sym_BANG] = ACTIONS(3026), - [anon_sym_AMP] = ACTIONS(3026), - [anon_sym_PIPE] = ACTIONS(3026), - [anon_sym_LT] = ACTIONS(3026), - [anon_sym_DOT_DOT] = ACTIONS(3026), - [anon_sym_COLON_COLON] = ACTIONS(3026), - [anon_sym_POUND] = ACTIONS(3026), - [anon_sym_SQUOTE] = ACTIONS(3028), - [anon_sym_async] = ACTIONS(3028), - [anon_sym_break] = ACTIONS(3028), - [anon_sym_const] = ACTIONS(3028), - [anon_sym_continue] = ACTIONS(3028), - [anon_sym_default] = ACTIONS(3028), - [anon_sym_enum] = ACTIONS(3028), - [anon_sym_fn] = ACTIONS(3028), - [anon_sym_for] = ACTIONS(3028), - [anon_sym_gen] = ACTIONS(3028), - [anon_sym_if] = ACTIONS(3028), - [anon_sym_impl] = ACTIONS(3028), - [anon_sym_let] = ACTIONS(3028), - [anon_sym_loop] = ACTIONS(3028), - [anon_sym_match] = ACTIONS(3028), - [anon_sym_mod] = ACTIONS(3028), - [anon_sym_pub] = ACTIONS(3028), - [anon_sym_return] = ACTIONS(3028), - [anon_sym_static] = ACTIONS(3028), - [anon_sym_struct] = ACTIONS(3028), - [anon_sym_trait] = ACTIONS(3028), - [anon_sym_type] = ACTIONS(3028), - [anon_sym_union] = ACTIONS(3028), - [anon_sym_unsafe] = ACTIONS(3028), - [anon_sym_use] = ACTIONS(3028), - [anon_sym_while] = ACTIONS(3028), - [anon_sym_extern] = ACTIONS(3028), - [anon_sym_yield] = ACTIONS(3028), - [anon_sym_move] = ACTIONS(3028), - [anon_sym_try] = ACTIONS(3028), - [sym_integer_literal] = ACTIONS(3026), - [aux_sym_string_literal_token1] = ACTIONS(3026), - [sym_char_literal] = ACTIONS(3026), - [anon_sym_true] = ACTIONS(3028), - [anon_sym_false] = ACTIONS(3028), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3028), - [sym_super] = ACTIONS(3028), - [sym_crate] = ACTIONS(3028), - [sym_metavariable] = ACTIONS(3026), - [sym__raw_string_literal_start] = ACTIONS(3026), - [sym_float_literal] = ACTIONS(3026), + [ts_builtin_sym_end] = ACTIONS(3044), + [sym_identifier] = ACTIONS(3046), + [anon_sym_SEMI] = ACTIONS(3044), + [anon_sym_macro_rules_BANG] = ACTIONS(3044), + [anon_sym_LPAREN] = ACTIONS(3044), + [anon_sym_LBRACK] = ACTIONS(3044), + [anon_sym_LBRACE] = ACTIONS(3044), + [anon_sym_RBRACE] = ACTIONS(3044), + [anon_sym_STAR] = ACTIONS(3044), + [anon_sym_u8] = ACTIONS(3046), + [anon_sym_i8] = ACTIONS(3046), + [anon_sym_u16] = ACTIONS(3046), + [anon_sym_i16] = ACTIONS(3046), + [anon_sym_u32] = ACTIONS(3046), + [anon_sym_i32] = ACTIONS(3046), + [anon_sym_u64] = ACTIONS(3046), + [anon_sym_i64] = ACTIONS(3046), + [anon_sym_u128] = ACTIONS(3046), + [anon_sym_i128] = ACTIONS(3046), + [anon_sym_isize] = ACTIONS(3046), + [anon_sym_usize] = ACTIONS(3046), + [anon_sym_f32] = ACTIONS(3046), + [anon_sym_f64] = ACTIONS(3046), + [anon_sym_bool] = ACTIONS(3046), + [anon_sym_str] = ACTIONS(3046), + [anon_sym_char] = ACTIONS(3046), + [anon_sym_DASH] = ACTIONS(3044), + [anon_sym_BANG] = ACTIONS(3044), + [anon_sym_AMP] = ACTIONS(3044), + [anon_sym_PIPE] = ACTIONS(3044), + [anon_sym_LT] = ACTIONS(3044), + [anon_sym_DOT_DOT] = ACTIONS(3044), + [anon_sym_COLON_COLON] = ACTIONS(3044), + [anon_sym_POUND] = ACTIONS(3044), + [anon_sym_SQUOTE] = ACTIONS(3046), + [anon_sym_async] = ACTIONS(3046), + [anon_sym_break] = ACTIONS(3046), + [anon_sym_const] = ACTIONS(3046), + [anon_sym_continue] = ACTIONS(3046), + [anon_sym_default] = ACTIONS(3046), + [anon_sym_enum] = ACTIONS(3046), + [anon_sym_fn] = ACTIONS(3046), + [anon_sym_for] = ACTIONS(3046), + [anon_sym_gen] = ACTIONS(3046), + [anon_sym_if] = ACTIONS(3046), + [anon_sym_impl] = ACTIONS(3046), + [anon_sym_let] = ACTIONS(3046), + [anon_sym_loop] = ACTIONS(3046), + [anon_sym_match] = ACTIONS(3046), + [anon_sym_mod] = ACTIONS(3046), + [anon_sym_pub] = ACTIONS(3046), + [anon_sym_return] = ACTIONS(3046), + [anon_sym_static] = ACTIONS(3046), + [anon_sym_struct] = ACTIONS(3046), + [anon_sym_trait] = ACTIONS(3046), + [anon_sym_type] = ACTIONS(3046), + [anon_sym_union] = ACTIONS(3046), + [anon_sym_unsafe] = ACTIONS(3046), + [anon_sym_use] = ACTIONS(3046), + [anon_sym_while] = ACTIONS(3046), + [anon_sym_extern] = ACTIONS(3046), + [anon_sym_safe] = ACTIONS(3046), + [anon_sym_yield] = ACTIONS(3046), + [anon_sym_move] = ACTIONS(3046), + [anon_sym_try] = ACTIONS(3046), + [sym_integer_literal] = ACTIONS(3044), + [aux_sym_string_literal_token1] = ACTIONS(3044), + [sym_char_literal] = ACTIONS(3044), + [anon_sym_true] = ACTIONS(3046), + [anon_sym_false] = ACTIONS(3046), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(3046), + [sym_super] = ACTIONS(3046), + [sym_crate] = ACTIONS(3046), + [sym_metavariable] = ACTIONS(3044), + [sym__raw_string_literal_start] = ACTIONS(3044), + [sym_float_literal] = ACTIONS(3044), }, [STATE(780)] = { [sym_line_comment] = STATE(780), [sym_block_comment] = STATE(780), - [ts_builtin_sym_end] = ACTIONS(3030), - [sym_identifier] = ACTIONS(3032), - [anon_sym_SEMI] = ACTIONS(3030), - [anon_sym_macro_rules_BANG] = ACTIONS(3030), - [anon_sym_LPAREN] = ACTIONS(3030), - [anon_sym_LBRACK] = ACTIONS(3030), - [anon_sym_LBRACE] = ACTIONS(3030), - [anon_sym_RBRACE] = ACTIONS(3030), - [anon_sym_STAR] = ACTIONS(3030), - [anon_sym_u8] = ACTIONS(3032), - [anon_sym_i8] = ACTIONS(3032), - [anon_sym_u16] = ACTIONS(3032), - [anon_sym_i16] = ACTIONS(3032), - [anon_sym_u32] = ACTIONS(3032), - [anon_sym_i32] = ACTIONS(3032), - [anon_sym_u64] = ACTIONS(3032), - [anon_sym_i64] = ACTIONS(3032), - [anon_sym_u128] = ACTIONS(3032), - [anon_sym_i128] = ACTIONS(3032), - [anon_sym_isize] = ACTIONS(3032), - [anon_sym_usize] = ACTIONS(3032), - [anon_sym_f32] = ACTIONS(3032), - [anon_sym_f64] = ACTIONS(3032), - [anon_sym_bool] = ACTIONS(3032), - [anon_sym_str] = ACTIONS(3032), - [anon_sym_char] = ACTIONS(3032), - [anon_sym_DASH] = ACTIONS(3030), - [anon_sym_BANG] = ACTIONS(3030), - [anon_sym_AMP] = ACTIONS(3030), - [anon_sym_PIPE] = ACTIONS(3030), - [anon_sym_LT] = ACTIONS(3030), - [anon_sym_DOT_DOT] = ACTIONS(3030), - [anon_sym_COLON_COLON] = ACTIONS(3030), - [anon_sym_POUND] = ACTIONS(3030), - [anon_sym_SQUOTE] = ACTIONS(3032), - [anon_sym_async] = ACTIONS(3032), - [anon_sym_break] = ACTIONS(3032), - [anon_sym_const] = ACTIONS(3032), - [anon_sym_continue] = ACTIONS(3032), - [anon_sym_default] = ACTIONS(3032), - [anon_sym_enum] = ACTIONS(3032), - [anon_sym_fn] = ACTIONS(3032), - [anon_sym_for] = ACTIONS(3032), - [anon_sym_gen] = ACTIONS(3032), - [anon_sym_if] = ACTIONS(3032), - [anon_sym_impl] = ACTIONS(3032), - [anon_sym_let] = ACTIONS(3032), - [anon_sym_loop] = ACTIONS(3032), - [anon_sym_match] = ACTIONS(3032), - [anon_sym_mod] = ACTIONS(3032), - [anon_sym_pub] = ACTIONS(3032), - [anon_sym_return] = ACTIONS(3032), - [anon_sym_static] = ACTIONS(3032), - [anon_sym_struct] = ACTIONS(3032), - [anon_sym_trait] = ACTIONS(3032), - [anon_sym_type] = ACTIONS(3032), - [anon_sym_union] = ACTIONS(3032), - [anon_sym_unsafe] = ACTIONS(3032), - [anon_sym_use] = ACTIONS(3032), - [anon_sym_while] = ACTIONS(3032), - [anon_sym_extern] = ACTIONS(3032), - [anon_sym_yield] = ACTIONS(3032), - [anon_sym_move] = ACTIONS(3032), - [anon_sym_try] = ACTIONS(3032), - [sym_integer_literal] = ACTIONS(3030), - [aux_sym_string_literal_token1] = ACTIONS(3030), - [sym_char_literal] = ACTIONS(3030), - [anon_sym_true] = ACTIONS(3032), - [anon_sym_false] = ACTIONS(3032), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3032), - [sym_super] = ACTIONS(3032), - [sym_crate] = ACTIONS(3032), - [sym_metavariable] = ACTIONS(3030), - [sym__raw_string_literal_start] = ACTIONS(3030), - [sym_float_literal] = ACTIONS(3030), + [ts_builtin_sym_end] = ACTIONS(3048), + [sym_identifier] = ACTIONS(3050), + [anon_sym_SEMI] = ACTIONS(3048), + [anon_sym_macro_rules_BANG] = ACTIONS(3048), + [anon_sym_LPAREN] = ACTIONS(3048), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_LBRACE] = ACTIONS(3048), + [anon_sym_RBRACE] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3048), + [anon_sym_u8] = ACTIONS(3050), + [anon_sym_i8] = ACTIONS(3050), + [anon_sym_u16] = ACTIONS(3050), + [anon_sym_i16] = ACTIONS(3050), + [anon_sym_u32] = ACTIONS(3050), + [anon_sym_i32] = ACTIONS(3050), + [anon_sym_u64] = ACTIONS(3050), + [anon_sym_i64] = ACTIONS(3050), + [anon_sym_u128] = ACTIONS(3050), + [anon_sym_i128] = ACTIONS(3050), + [anon_sym_isize] = ACTIONS(3050), + [anon_sym_usize] = ACTIONS(3050), + [anon_sym_f32] = ACTIONS(3050), + [anon_sym_f64] = ACTIONS(3050), + [anon_sym_bool] = ACTIONS(3050), + [anon_sym_str] = ACTIONS(3050), + [anon_sym_char] = ACTIONS(3050), + [anon_sym_DASH] = ACTIONS(3048), + [anon_sym_BANG] = ACTIONS(3048), + [anon_sym_AMP] = ACTIONS(3048), + [anon_sym_PIPE] = ACTIONS(3048), + [anon_sym_LT] = ACTIONS(3048), + [anon_sym_DOT_DOT] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3048), + [anon_sym_POUND] = ACTIONS(3048), + [anon_sym_SQUOTE] = ACTIONS(3050), + [anon_sym_async] = ACTIONS(3050), + [anon_sym_break] = ACTIONS(3050), + [anon_sym_const] = ACTIONS(3050), + [anon_sym_continue] = ACTIONS(3050), + [anon_sym_default] = ACTIONS(3050), + [anon_sym_enum] = ACTIONS(3050), + [anon_sym_fn] = ACTIONS(3050), + [anon_sym_for] = ACTIONS(3050), + [anon_sym_gen] = ACTIONS(3050), + [anon_sym_if] = ACTIONS(3050), + [anon_sym_impl] = ACTIONS(3050), + [anon_sym_let] = ACTIONS(3050), + [anon_sym_loop] = ACTIONS(3050), + [anon_sym_match] = ACTIONS(3050), + [anon_sym_mod] = ACTIONS(3050), + [anon_sym_pub] = ACTIONS(3050), + [anon_sym_return] = ACTIONS(3050), + [anon_sym_static] = ACTIONS(3050), + [anon_sym_struct] = ACTIONS(3050), + [anon_sym_trait] = ACTIONS(3050), + [anon_sym_type] = ACTIONS(3050), + [anon_sym_union] = ACTIONS(3050), + [anon_sym_unsafe] = ACTIONS(3050), + [anon_sym_use] = ACTIONS(3050), + [anon_sym_while] = ACTIONS(3050), + [anon_sym_extern] = ACTIONS(3050), + [anon_sym_safe] = ACTIONS(3050), + [anon_sym_yield] = ACTIONS(3050), + [anon_sym_move] = ACTIONS(3050), + [anon_sym_try] = ACTIONS(3050), + [sym_integer_literal] = ACTIONS(3048), + [aux_sym_string_literal_token1] = ACTIONS(3048), + [sym_char_literal] = ACTIONS(3048), + [anon_sym_true] = ACTIONS(3050), + [anon_sym_false] = ACTIONS(3050), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(3050), + [sym_super] = ACTIONS(3050), + [sym_crate] = ACTIONS(3050), + [sym_metavariable] = ACTIONS(3048), + [sym__raw_string_literal_start] = ACTIONS(3048), + [sym_float_literal] = ACTIONS(3048), }, [STATE(781)] = { [sym_line_comment] = STATE(781), [sym_block_comment] = STATE(781), - [ts_builtin_sym_end] = ACTIONS(3034), - [sym_identifier] = ACTIONS(3036), - [anon_sym_SEMI] = ACTIONS(3034), - [anon_sym_macro_rules_BANG] = ACTIONS(3034), - [anon_sym_LPAREN] = ACTIONS(3034), - [anon_sym_LBRACK] = ACTIONS(3034), - [anon_sym_LBRACE] = ACTIONS(3034), - [anon_sym_RBRACE] = ACTIONS(3034), - [anon_sym_STAR] = ACTIONS(3034), - [anon_sym_u8] = ACTIONS(3036), - [anon_sym_i8] = ACTIONS(3036), - [anon_sym_u16] = ACTIONS(3036), - [anon_sym_i16] = ACTIONS(3036), - [anon_sym_u32] = ACTIONS(3036), - [anon_sym_i32] = ACTIONS(3036), - [anon_sym_u64] = ACTIONS(3036), - [anon_sym_i64] = ACTIONS(3036), - [anon_sym_u128] = ACTIONS(3036), - [anon_sym_i128] = ACTIONS(3036), - [anon_sym_isize] = ACTIONS(3036), - [anon_sym_usize] = ACTIONS(3036), - [anon_sym_f32] = ACTIONS(3036), - [anon_sym_f64] = ACTIONS(3036), - [anon_sym_bool] = ACTIONS(3036), - [anon_sym_str] = ACTIONS(3036), - [anon_sym_char] = ACTIONS(3036), - [anon_sym_DASH] = ACTIONS(3034), - [anon_sym_BANG] = ACTIONS(3034), - [anon_sym_AMP] = ACTIONS(3034), - [anon_sym_PIPE] = ACTIONS(3034), - [anon_sym_LT] = ACTIONS(3034), - [anon_sym_DOT_DOT] = ACTIONS(3034), - [anon_sym_COLON_COLON] = ACTIONS(3034), - [anon_sym_POUND] = ACTIONS(3034), - [anon_sym_SQUOTE] = ACTIONS(3036), - [anon_sym_async] = ACTIONS(3036), - [anon_sym_break] = ACTIONS(3036), - [anon_sym_const] = ACTIONS(3036), - [anon_sym_continue] = ACTIONS(3036), - [anon_sym_default] = ACTIONS(3036), - [anon_sym_enum] = ACTIONS(3036), - [anon_sym_fn] = ACTIONS(3036), - [anon_sym_for] = ACTIONS(3036), - [anon_sym_gen] = ACTIONS(3036), - [anon_sym_if] = ACTIONS(3036), - [anon_sym_impl] = ACTIONS(3036), - [anon_sym_let] = ACTIONS(3036), - [anon_sym_loop] = ACTIONS(3036), - [anon_sym_match] = ACTIONS(3036), - [anon_sym_mod] = ACTIONS(3036), - [anon_sym_pub] = ACTIONS(3036), - [anon_sym_return] = ACTIONS(3036), - [anon_sym_static] = ACTIONS(3036), - [anon_sym_struct] = ACTIONS(3036), - [anon_sym_trait] = ACTIONS(3036), - [anon_sym_type] = ACTIONS(3036), - [anon_sym_union] = ACTIONS(3036), - [anon_sym_unsafe] = ACTIONS(3036), - [anon_sym_use] = ACTIONS(3036), - [anon_sym_while] = ACTIONS(3036), - [anon_sym_extern] = ACTIONS(3036), - [anon_sym_yield] = ACTIONS(3036), - [anon_sym_move] = ACTIONS(3036), - [anon_sym_try] = ACTIONS(3036), - [sym_integer_literal] = ACTIONS(3034), - [aux_sym_string_literal_token1] = ACTIONS(3034), - [sym_char_literal] = ACTIONS(3034), - [anon_sym_true] = ACTIONS(3036), - [anon_sym_false] = ACTIONS(3036), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3036), - [sym_super] = ACTIONS(3036), - [sym_crate] = ACTIONS(3036), - [sym_metavariable] = ACTIONS(3034), - [sym__raw_string_literal_start] = ACTIONS(3034), - [sym_float_literal] = ACTIONS(3034), + [ts_builtin_sym_end] = ACTIONS(3052), + [sym_identifier] = ACTIONS(3054), + [anon_sym_SEMI] = ACTIONS(3052), + [anon_sym_macro_rules_BANG] = ACTIONS(3052), + [anon_sym_LPAREN] = ACTIONS(3052), + [anon_sym_LBRACK] = ACTIONS(3052), + [anon_sym_LBRACE] = ACTIONS(3052), + [anon_sym_RBRACE] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(3052), + [anon_sym_u8] = ACTIONS(3054), + [anon_sym_i8] = ACTIONS(3054), + [anon_sym_u16] = ACTIONS(3054), + [anon_sym_i16] = ACTIONS(3054), + [anon_sym_u32] = ACTIONS(3054), + [anon_sym_i32] = ACTIONS(3054), + [anon_sym_u64] = ACTIONS(3054), + [anon_sym_i64] = ACTIONS(3054), + [anon_sym_u128] = ACTIONS(3054), + [anon_sym_i128] = ACTIONS(3054), + [anon_sym_isize] = ACTIONS(3054), + [anon_sym_usize] = ACTIONS(3054), + [anon_sym_f32] = ACTIONS(3054), + [anon_sym_f64] = ACTIONS(3054), + [anon_sym_bool] = ACTIONS(3054), + [anon_sym_str] = ACTIONS(3054), + [anon_sym_char] = ACTIONS(3054), + [anon_sym_DASH] = ACTIONS(3052), + [anon_sym_BANG] = ACTIONS(3052), + [anon_sym_AMP] = ACTIONS(3052), + [anon_sym_PIPE] = ACTIONS(3052), + [anon_sym_LT] = ACTIONS(3052), + [anon_sym_DOT_DOT] = ACTIONS(3052), + [anon_sym_COLON_COLON] = ACTIONS(3052), + [anon_sym_POUND] = ACTIONS(3052), + [anon_sym_SQUOTE] = ACTIONS(3054), + [anon_sym_async] = ACTIONS(3054), + [anon_sym_break] = ACTIONS(3054), + [anon_sym_const] = ACTIONS(3054), + [anon_sym_continue] = ACTIONS(3054), + [anon_sym_default] = ACTIONS(3054), + [anon_sym_enum] = ACTIONS(3054), + [anon_sym_fn] = ACTIONS(3054), + [anon_sym_for] = ACTIONS(3054), + [anon_sym_gen] = ACTIONS(3054), + [anon_sym_if] = ACTIONS(3054), + [anon_sym_impl] = ACTIONS(3054), + [anon_sym_let] = ACTIONS(3054), + [anon_sym_loop] = ACTIONS(3054), + [anon_sym_match] = ACTIONS(3054), + [anon_sym_mod] = ACTIONS(3054), + [anon_sym_pub] = ACTIONS(3054), + [anon_sym_return] = ACTIONS(3054), + [anon_sym_static] = ACTIONS(3054), + [anon_sym_struct] = ACTIONS(3054), + [anon_sym_trait] = ACTIONS(3054), + [anon_sym_type] = ACTIONS(3054), + [anon_sym_union] = ACTIONS(3054), + [anon_sym_unsafe] = ACTIONS(3054), + [anon_sym_use] = ACTIONS(3054), + [anon_sym_while] = ACTIONS(3054), + [anon_sym_extern] = ACTIONS(3054), + [anon_sym_safe] = ACTIONS(3054), + [anon_sym_yield] = ACTIONS(3054), + [anon_sym_move] = ACTIONS(3054), + [anon_sym_try] = ACTIONS(3054), + [sym_integer_literal] = ACTIONS(3052), + [aux_sym_string_literal_token1] = ACTIONS(3052), + [sym_char_literal] = ACTIONS(3052), + [anon_sym_true] = ACTIONS(3054), + [anon_sym_false] = ACTIONS(3054), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(3054), + [sym_super] = ACTIONS(3054), + [sym_crate] = ACTIONS(3054), + [sym_metavariable] = ACTIONS(3052), + [sym__raw_string_literal_start] = ACTIONS(3052), + [sym_float_literal] = ACTIONS(3052), }, [STATE(782)] = { - [sym_bracketed_type] = STATE(3448), - [sym_generic_type] = STATE(3450), - [sym_generic_type_with_turbofish] = STATE(3159), - [sym_macro_invocation] = STATE(2150), - [sym_scoped_identifier] = STATE(2016), - [sym_scoped_type_identifier] = STATE(2988), - [sym_const_block] = STATE(2150), - [sym_closure_expression] = STATE(3252), - [sym_closure_parameters] = STATE(239), - [sym__pattern] = STATE(3040), - [sym_generic_pattern] = STATE(2150), - [sym_tuple_pattern] = STATE(2150), - [sym_slice_pattern] = STATE(2150), - [sym_tuple_struct_pattern] = STATE(2150), - [sym_struct_pattern] = STATE(2150), - [sym_remaining_field_pattern] = STATE(2150), - [sym_mut_pattern] = STATE(2150), - [sym_range_pattern] = STATE(2150), - [sym_ref_pattern] = STATE(2150), - [sym_captured_pattern] = STATE(2150), - [sym_reference_pattern] = STATE(2150), - [sym_or_pattern] = STATE(2150), - [sym__literal_pattern] = STATE(2076), - [sym_negative_literal] = STATE(2074), - [sym_string_literal] = STATE(2074), - [sym_raw_string_literal] = STATE(2074), - [sym_boolean_literal] = STATE(2074), + [sym_bracketed_type] = STATE(3581), + [sym_generic_type] = STATE(3475), + [sym_generic_type_with_turbofish] = STATE(3233), + [sym_macro_invocation] = STATE(2163), + [sym_scoped_identifier] = STATE(2032), + [sym_scoped_type_identifier] = STATE(2893), + [sym_const_block] = STATE(2163), + [sym_closure_expression] = STATE(3387), + [sym_closure_parameters] = STATE(220), + [sym__pattern] = STATE(3116), + [sym_generic_pattern] = STATE(2163), + [sym_tuple_pattern] = STATE(2163), + [sym_slice_pattern] = STATE(2163), + [sym_tuple_struct_pattern] = STATE(2163), + [sym_struct_pattern] = STATE(2163), + [sym_remaining_field_pattern] = STATE(2163), + [sym_mut_pattern] = STATE(2163), + [sym_range_pattern] = STATE(2163), + [sym_ref_pattern] = STATE(2163), + [sym_captured_pattern] = STATE(2163), + [sym_reference_pattern] = STATE(2163), + [sym_or_pattern] = STATE(2163), + [sym__literal_pattern] = STATE(2098), + [sym_negative_literal] = STATE(2095), + [sym_string_literal] = STATE(2095), + [sym_raw_string_literal] = STATE(2095), + [sym_boolean_literal] = STATE(2095), [sym_line_comment] = STATE(782), [sym_block_comment] = STATE(782), - [sym_identifier] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_LBRACK] = ACTIONS(1782), - [anon_sym_u8] = ACTIONS(1784), - [anon_sym_i8] = ACTIONS(1784), - [anon_sym_u16] = ACTIONS(1784), - [anon_sym_i16] = ACTIONS(1784), - [anon_sym_u32] = ACTIONS(1784), - [anon_sym_i32] = ACTIONS(1784), - [anon_sym_u64] = ACTIONS(1784), - [anon_sym_i64] = ACTIONS(1784), - [anon_sym_u128] = ACTIONS(1784), - [anon_sym_i128] = ACTIONS(1784), - [anon_sym_isize] = ACTIONS(1784), - [anon_sym_usize] = ACTIONS(1784), - [anon_sym_f32] = ACTIONS(1784), - [anon_sym_f64] = ACTIONS(1784), - [anon_sym_bool] = ACTIONS(1784), - [anon_sym_str] = ACTIONS(1784), - [anon_sym_char] = ACTIONS(1784), - [anon_sym_DASH] = ACTIONS(1241), - [anon_sym_AMP] = ACTIONS(1786), - [anon_sym_PIPE] = ACTIONS(1449), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1451), - [anon_sym_DOT_DOT] = ACTIONS(1251), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1255), - [anon_sym_COLON_COLON] = ACTIONS(1790), - [anon_sym_const] = ACTIONS(1792), - [anon_sym_default] = ACTIONS(1794), - [anon_sym_gen] = ACTIONS(1794), - [anon_sym_static] = ACTIONS(1455), - [anon_sym_union] = ACTIONS(1794), - [anon_sym_ref] = ACTIONS(1281), - [sym_mutable_specifier] = ACTIONS(1457), - [anon_sym_move] = ACTIONS(1459), - [sym_integer_literal] = ACTIONS(1287), - [aux_sym_string_literal_token1] = ACTIONS(1289), - [sym_char_literal] = ACTIONS(1287), - [anon_sym_true] = ACTIONS(1291), - [anon_sym_false] = ACTIONS(1291), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1796), - [sym_super] = ACTIONS(1796), - [sym_crate] = ACTIONS(1796), - [sym_metavariable] = ACTIONS(1798), - [sym__raw_string_literal_start] = ACTIONS(1299), - [sym_float_literal] = ACTIONS(1287), + [sym_identifier] = ACTIONS(2369), + [anon_sym_LPAREN] = ACTIONS(2371), + [anon_sym_RPAREN] = ACTIONS(3056), + [anon_sym_LBRACK] = 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(1246), + [anon_sym_AMP] = ACTIONS(2379), + [anon_sym_PIPE] = ACTIONS(1426), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1428), + [anon_sym_DOT_DOT] = ACTIONS(1256), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1260), + [anon_sym_COLON_COLON] = ACTIONS(2383), + [anon_sym_const] = ACTIONS(2385), + [anon_sym_default] = ACTIONS(2387), + [anon_sym_gen] = ACTIONS(2387), + [anon_sym_static] = ACTIONS(1432), + [anon_sym_union] = ACTIONS(2387), + [anon_sym_ref] = ACTIONS(1286), + [sym_mutable_specifier] = ACTIONS(1434), + [anon_sym_move] = ACTIONS(1436), + [sym_integer_literal] = ACTIONS(1292), + [aux_sym_string_literal_token1] = ACTIONS(1294), + [sym_char_literal] = ACTIONS(1292), + [anon_sym_true] = ACTIONS(1296), + [anon_sym_false] = ACTIONS(1296), + [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(2391), + [sym__raw_string_literal_start] = ACTIONS(1304), + [sym_float_literal] = ACTIONS(1292), }, [STATE(783)] = { - [sym_bracketed_type] = STATE(3448), - [sym_generic_type] = STATE(3450), - [sym_generic_type_with_turbofish] = STATE(3159), - [sym_macro_invocation] = STATE(2150), - [sym_scoped_identifier] = STATE(2016), - [sym_scoped_type_identifier] = STATE(2988), - [sym_const_block] = STATE(2150), - [sym__pattern] = STATE(2624), - [sym_generic_pattern] = STATE(2150), - [sym_tuple_pattern] = STATE(2150), - [sym_slice_pattern] = STATE(2150), - [sym_tuple_struct_pattern] = STATE(2150), - [sym_struct_pattern] = STATE(2150), - [sym_remaining_field_pattern] = STATE(2150), - [sym_mut_pattern] = STATE(2150), - [sym_range_pattern] = STATE(2150), - [sym_ref_pattern] = STATE(2150), - [sym_captured_pattern] = STATE(2150), - [sym_reference_pattern] = STATE(2150), - [sym_or_pattern] = STATE(2150), - [sym__literal_pattern] = STATE(2076), - [sym_negative_literal] = STATE(2074), - [sym_string_literal] = STATE(2074), - [sym_raw_string_literal] = STATE(2074), - [sym_boolean_literal] = STATE(2074), + [sym_bracketed_type] = STATE(3581), + [sym_generic_type] = STATE(3475), + [sym_generic_type_with_turbofish] = STATE(3233), + [sym_macro_invocation] = STATE(2163), + [sym_scoped_identifier] = STATE(2032), + [sym_scoped_type_identifier] = STATE(2893), + [sym_const_block] = STATE(2163), + [sym_closure_expression] = STATE(3387), + [sym_closure_parameters] = STATE(220), + [sym__pattern] = STATE(3116), + [sym_generic_pattern] = STATE(2163), + [sym_tuple_pattern] = STATE(2163), + [sym_slice_pattern] = STATE(2163), + [sym_tuple_struct_pattern] = STATE(2163), + [sym_struct_pattern] = STATE(2163), + [sym_remaining_field_pattern] = STATE(2163), + [sym_mut_pattern] = STATE(2163), + [sym_range_pattern] = STATE(2163), + [sym_ref_pattern] = STATE(2163), + [sym_captured_pattern] = STATE(2163), + [sym_reference_pattern] = STATE(2163), + [sym_or_pattern] = STATE(2163), + [sym__literal_pattern] = STATE(2098), + [sym_negative_literal] = STATE(2095), + [sym_string_literal] = STATE(2095), + [sym_raw_string_literal] = STATE(2095), + [sym_boolean_literal] = STATE(2095), [sym_line_comment] = STATE(783), [sym_block_comment] = STATE(783), - [sym_identifier] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_RPAREN] = ACTIONS(3038), - [anon_sym_LBRACK] = ACTIONS(1782), - [anon_sym_u8] = ACTIONS(1784), - [anon_sym_i8] = ACTIONS(1784), - [anon_sym_u16] = ACTIONS(1784), - [anon_sym_i16] = ACTIONS(1784), - [anon_sym_u32] = ACTIONS(1784), - [anon_sym_i32] = ACTIONS(1784), - [anon_sym_u64] = ACTIONS(1784), - [anon_sym_i64] = ACTIONS(1784), - [anon_sym_u128] = ACTIONS(1784), - [anon_sym_i128] = ACTIONS(1784), - [anon_sym_isize] = ACTIONS(1784), - [anon_sym_usize] = ACTIONS(1784), - [anon_sym_f32] = ACTIONS(1784), - [anon_sym_f64] = ACTIONS(1784), - [anon_sym_bool] = ACTIONS(1784), - [anon_sym_str] = ACTIONS(1784), - [anon_sym_char] = ACTIONS(1784), - [anon_sym_DASH] = ACTIONS(1241), - [anon_sym_AMP] = ACTIONS(1786), - [anon_sym_PIPE] = ACTIONS(1247), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1451), - [anon_sym_DOT_DOT] = ACTIONS(1251), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1255), - [anon_sym_COMMA] = ACTIONS(3040), - [anon_sym_COLON_COLON] = ACTIONS(1790), - [anon_sym_const] = ACTIONS(1792), - [anon_sym_default] = ACTIONS(1794), - [anon_sym_gen] = ACTIONS(1794), - [anon_sym_union] = ACTIONS(1794), - [anon_sym_ref] = ACTIONS(1281), - [sym_mutable_specifier] = ACTIONS(1457), - [sym_integer_literal] = ACTIONS(1287), - [aux_sym_string_literal_token1] = ACTIONS(1289), - [sym_char_literal] = ACTIONS(1287), - [anon_sym_true] = ACTIONS(1291), - [anon_sym_false] = ACTIONS(1291), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1796), - [sym_super] = ACTIONS(1796), - [sym_crate] = ACTIONS(1796), - [sym_metavariable] = ACTIONS(1798), - [sym__raw_string_literal_start] = ACTIONS(1299), - [sym_float_literal] = ACTIONS(1287), + [sym_identifier] = ACTIONS(2369), + [anon_sym_LPAREN] = ACTIONS(2371), + [anon_sym_RPAREN] = ACTIONS(3058), + [anon_sym_LBRACK] = 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(1246), + [anon_sym_AMP] = ACTIONS(2379), + [anon_sym_PIPE] = ACTIONS(1426), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1428), + [anon_sym_DOT_DOT] = ACTIONS(1256), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1260), + [anon_sym_COLON_COLON] = ACTIONS(2383), + [anon_sym_const] = ACTIONS(2385), + [anon_sym_default] = ACTIONS(2387), + [anon_sym_gen] = ACTIONS(2387), + [anon_sym_static] = ACTIONS(1432), + [anon_sym_union] = ACTIONS(2387), + [anon_sym_ref] = ACTIONS(1286), + [sym_mutable_specifier] = ACTIONS(1434), + [anon_sym_move] = ACTIONS(1436), + [sym_integer_literal] = ACTIONS(1292), + [aux_sym_string_literal_token1] = ACTIONS(1294), + [sym_char_literal] = ACTIONS(1292), + [anon_sym_true] = ACTIONS(1296), + [anon_sym_false] = ACTIONS(1296), + [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(2391), + [sym__raw_string_literal_start] = ACTIONS(1304), + [sym_float_literal] = ACTIONS(1292), }, [STATE(784)] = { - [sym_attribute_item] = STATE(1494), - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_const_parameter] = STATE(2872), - [sym_type_parameter] = STATE(2872), - [sym_lifetime_parameter] = STATE(2872), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2954), - [sym_bracketed_type] = STATE(3449), - [sym_qualified_type] = STATE(3737), - [sym_lifetime] = STATE(2555), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_attribute_item] = STATE(1403), + [sym_inner_attribute_item] = STATE(1403), + [sym_bracketed_type] = STATE(3677), + [sym_generic_type] = STATE(3475), + [sym_generic_type_with_turbofish] = STATE(3405), + [sym_macro_invocation] = STATE(2996), + [sym_scoped_identifier] = STATE(2238), + [sym_scoped_type_identifier] = STATE(3090), + [sym_match_pattern] = STATE(3712), + [sym_const_block] = STATE(2996), + [sym__pattern] = STATE(2947), + [sym_generic_pattern] = STATE(2996), + [sym_tuple_pattern] = STATE(2996), + [sym_slice_pattern] = STATE(2996), + [sym_tuple_struct_pattern] = STATE(2996), + [sym_struct_pattern] = STATE(2996), + [sym_remaining_field_pattern] = STATE(2996), + [sym_mut_pattern] = STATE(2996), + [sym_range_pattern] = STATE(2996), + [sym_ref_pattern] = STATE(2996), + [sym_captured_pattern] = STATE(2996), + [sym_reference_pattern] = STATE(2996), + [sym_or_pattern] = STATE(2996), + [sym__literal_pattern] = STATE(2429), + [sym_negative_literal] = STATE(2440), + [sym_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_boolean_literal] = STATE(2440), [sym_line_comment] = STATE(784), [sym_block_comment] = STATE(784), - [aux_sym_enum_variant_list_repeat1] = STATE(2120), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(3042), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1235), - [anon_sym_QMARK] = ACTIONS(1237), - [anon_sym_u8] = ACTIONS(1603), - [anon_sym_i8] = ACTIONS(1603), - [anon_sym_u16] = ACTIONS(1603), - [anon_sym_i16] = ACTIONS(1603), - [anon_sym_u32] = ACTIONS(1603), - [anon_sym_i32] = ACTIONS(1603), - [anon_sym_u64] = ACTIONS(1603), - [anon_sym_i64] = ACTIONS(1603), - [anon_sym_u128] = ACTIONS(1603), - [anon_sym_i128] = ACTIONS(1603), - [anon_sym_isize] = ACTIONS(1603), - [anon_sym_usize] = ACTIONS(1603), - [anon_sym_f32] = ACTIONS(1603), - [anon_sym_f64] = ACTIONS(1603), - [anon_sym_bool] = ACTIONS(1603), - [anon_sym_str] = ACTIONS(1603), - [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1243), - [anon_sym_AMP] = ACTIONS(1605), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_POUND] = ACTIONS(3044), - [anon_sym_SQUOTE] = ACTIONS(3046), - [anon_sym_async] = ACTIONS(1265), - [anon_sym_const] = ACTIONS(3048), - [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1271), - [anon_sym_for] = ACTIONS(1273), - [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1277), - [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1265), - [anon_sym_extern] = ACTIONS(1279), - [anon_sym_dyn] = ACTIONS(1283), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1619), - [sym_super] = ACTIONS(1619), - [sym_crate] = ACTIONS(1619), - [sym_metavariable] = ACTIONS(3050), + [aux_sym_match_arm_repeat1] = STATE(1065), + [sym_identifier] = ACTIONS(1650), + [anon_sym_LPAREN] = ACTIONS(1652), + [anon_sym_LBRACK] = ACTIONS(1654), + [anon_sym_u8] = ACTIONS(1658), + [anon_sym_i8] = ACTIONS(1658), + [anon_sym_u16] = ACTIONS(1658), + [anon_sym_i16] = ACTIONS(1658), + [anon_sym_u32] = ACTIONS(1658), + [anon_sym_i32] = ACTIONS(1658), + [anon_sym_u64] = ACTIONS(1658), + [anon_sym_i64] = ACTIONS(1658), + [anon_sym_u128] = ACTIONS(1658), + [anon_sym_i128] = ACTIONS(1658), + [anon_sym_isize] = ACTIONS(1658), + [anon_sym_usize] = ACTIONS(1658), + [anon_sym_f32] = ACTIONS(1658), + [anon_sym_f64] = ACTIONS(1658), + [anon_sym_bool] = ACTIONS(1658), + [anon_sym_str] = ACTIONS(1658), + [anon_sym_char] = ACTIONS(1658), + [anon_sym_DASH] = ACTIONS(1660), + [anon_sym_AMP] = ACTIONS(1662), + [anon_sym_PIPE] = ACTIONS(1664), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1666), + [anon_sym_DOT_DOT] = ACTIONS(1668), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1670), + [anon_sym_COLON_COLON] = ACTIONS(1672), + [anon_sym_POUND] = ACTIONS(1674), + [anon_sym_const] = ACTIONS(1676), + [anon_sym_default] = ACTIONS(1678), + [anon_sym_gen] = ACTIONS(1678), + [anon_sym_union] = ACTIONS(1678), + [anon_sym_ref] = ACTIONS(1680), + [sym_mutable_specifier] = ACTIONS(1682), + [sym_integer_literal] = ACTIONS(1684), + [aux_sym_string_literal_token1] = ACTIONS(1686), + [sym_char_literal] = ACTIONS(1684), + [anon_sym_true] = ACTIONS(1688), + [anon_sym_false] = ACTIONS(1688), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1690), + [sym_super] = ACTIONS(1690), + [sym_crate] = ACTIONS(1690), + [sym_metavariable] = ACTIONS(1692), + [sym__raw_string_literal_start] = ACTIONS(1694), + [sym_float_literal] = ACTIONS(1684), }, [STATE(785)] = { - [sym_attribute_item] = STATE(1494), - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym_visibility_modifier] = STATE(938), - [sym__type] = STATE(2750), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_bracketed_type] = STATE(3581), + [sym_generic_type] = STATE(3475), + [sym_generic_type_with_turbofish] = STATE(3233), + [sym_macro_invocation] = STATE(2163), + [sym_scoped_identifier] = STATE(2032), + [sym_scoped_type_identifier] = STATE(2893), + [sym_const_block] = STATE(2163), + [sym_closure_expression] = STATE(3387), + [sym_closure_parameters] = STATE(220), + [sym__pattern] = STATE(3116), + [sym_generic_pattern] = STATE(2163), + [sym_tuple_pattern] = STATE(2163), + [sym_slice_pattern] = STATE(2163), + [sym_tuple_struct_pattern] = STATE(2163), + [sym_struct_pattern] = STATE(2163), + [sym_remaining_field_pattern] = STATE(2163), + [sym_mut_pattern] = STATE(2163), + [sym_range_pattern] = STATE(2163), + [sym_ref_pattern] = STATE(2163), + [sym_captured_pattern] = STATE(2163), + [sym_reference_pattern] = STATE(2163), + [sym_or_pattern] = STATE(2163), + [sym__literal_pattern] = STATE(2098), + [sym_negative_literal] = STATE(2095), + [sym_string_literal] = STATE(2095), + [sym_raw_string_literal] = STATE(2095), + [sym_boolean_literal] = STATE(2095), [sym_line_comment] = STATE(785), [sym_block_comment] = STATE(785), - [aux_sym_enum_variant_list_repeat1] = STATE(831), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(3052), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_RPAREN] = ACTIONS(3054), - [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1235), - [anon_sym_QMARK] = ACTIONS(1237), - [anon_sym_u8] = ACTIONS(1603), - [anon_sym_i8] = ACTIONS(1603), - [anon_sym_u16] = ACTIONS(1603), - [anon_sym_i16] = ACTIONS(1603), - [anon_sym_u32] = ACTIONS(1603), - [anon_sym_i32] = ACTIONS(1603), - [anon_sym_u64] = ACTIONS(1603), - [anon_sym_i64] = ACTIONS(1603), - [anon_sym_u128] = ACTIONS(1603), - [anon_sym_i128] = ACTIONS(1603), - [anon_sym_isize] = ACTIONS(1603), - [anon_sym_usize] = ACTIONS(1603), - [anon_sym_f32] = ACTIONS(1603), - [anon_sym_f64] = ACTIONS(1603), - [anon_sym_bool] = ACTIONS(1603), - [anon_sym_str] = ACTIONS(1603), - [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1243), - [anon_sym_AMP] = ACTIONS(1605), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COMMA] = ACTIONS(3056), - [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_POUND] = ACTIONS(3044), - [anon_sym_SQUOTE] = ACTIONS(3058), - [anon_sym_async] = ACTIONS(1265), - [anon_sym_const] = ACTIONS(1265), - [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1271), - [anon_sym_for] = ACTIONS(1273), - [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1277), - [anon_sym_pub] = ACTIONS(3060), - [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1265), - [anon_sym_extern] = ACTIONS(1279), - [anon_sym_dyn] = ACTIONS(1283), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1619), - [sym_super] = ACTIONS(1619), - [sym_crate] = ACTIONS(3062), - [sym_metavariable] = ACTIONS(1621), + [sym_identifier] = ACTIONS(2369), + [anon_sym_LPAREN] = ACTIONS(2371), + [anon_sym_RPAREN] = ACTIONS(3060), + [anon_sym_LBRACK] = 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(1246), + [anon_sym_AMP] = ACTIONS(2379), + [anon_sym_PIPE] = ACTIONS(1426), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1428), + [anon_sym_DOT_DOT] = ACTIONS(1256), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1260), + [anon_sym_COLON_COLON] = ACTIONS(2383), + [anon_sym_const] = ACTIONS(2385), + [anon_sym_default] = ACTIONS(2387), + [anon_sym_gen] = ACTIONS(2387), + [anon_sym_static] = ACTIONS(1432), + [anon_sym_union] = ACTIONS(2387), + [anon_sym_ref] = ACTIONS(1286), + [sym_mutable_specifier] = ACTIONS(1434), + [anon_sym_move] = ACTIONS(1436), + [sym_integer_literal] = ACTIONS(1292), + [aux_sym_string_literal_token1] = ACTIONS(1294), + [sym_char_literal] = ACTIONS(1292), + [anon_sym_true] = ACTIONS(1296), + [anon_sym_false] = ACTIONS(1296), + [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(2391), + [sym__raw_string_literal_start] = ACTIONS(1304), + [sym_float_literal] = ACTIONS(1292), }, [STATE(786)] = { - [sym_bracketed_type] = STATE(3448), - [sym_generic_type] = STATE(3450), - [sym_generic_type_with_turbofish] = STATE(3159), - [sym_macro_invocation] = STATE(2150), - [sym_scoped_identifier] = STATE(2016), - [sym_scoped_type_identifier] = STATE(2988), - [sym_const_block] = STATE(2150), - [sym__pattern] = STATE(2621), - [sym_generic_pattern] = STATE(2150), - [sym_tuple_pattern] = STATE(2150), - [sym_slice_pattern] = STATE(2150), - [sym_tuple_struct_pattern] = STATE(2150), - [sym_struct_pattern] = STATE(2150), - [sym_remaining_field_pattern] = STATE(2150), - [sym_mut_pattern] = STATE(2150), - [sym_range_pattern] = STATE(2150), - [sym_ref_pattern] = STATE(2150), - [sym_captured_pattern] = STATE(2150), - [sym_reference_pattern] = STATE(2150), - [sym_or_pattern] = STATE(2150), - [sym__literal_pattern] = STATE(2076), - [sym_negative_literal] = STATE(2074), - [sym_string_literal] = STATE(2074), - [sym_raw_string_literal] = STATE(2074), - [sym_boolean_literal] = STATE(2074), + [sym_bracketed_type] = STATE(3581), + [sym_generic_type] = STATE(3475), + [sym_generic_type_with_turbofish] = STATE(3233), + [sym_macro_invocation] = STATE(2163), + [sym_scoped_identifier] = STATE(2032), + [sym_scoped_type_identifier] = STATE(2893), + [sym_const_block] = STATE(2163), + [sym_closure_expression] = STATE(3387), + [sym_closure_parameters] = STATE(220), + [sym__pattern] = STATE(3116), + [sym_generic_pattern] = STATE(2163), + [sym_tuple_pattern] = STATE(2163), + [sym_slice_pattern] = STATE(2163), + [sym_tuple_struct_pattern] = STATE(2163), + [sym_struct_pattern] = STATE(2163), + [sym_remaining_field_pattern] = STATE(2163), + [sym_mut_pattern] = STATE(2163), + [sym_range_pattern] = STATE(2163), + [sym_ref_pattern] = STATE(2163), + [sym_captured_pattern] = STATE(2163), + [sym_reference_pattern] = STATE(2163), + [sym_or_pattern] = STATE(2163), + [sym__literal_pattern] = STATE(2098), + [sym_negative_literal] = STATE(2095), + [sym_string_literal] = STATE(2095), + [sym_raw_string_literal] = STATE(2095), + [sym_boolean_literal] = STATE(2095), [sym_line_comment] = STATE(786), [sym_block_comment] = STATE(786), - [sym_identifier] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_LBRACK] = ACTIONS(1782), - [anon_sym_RBRACK] = ACTIONS(3064), - [anon_sym_u8] = ACTIONS(1784), - [anon_sym_i8] = ACTIONS(1784), - [anon_sym_u16] = ACTIONS(1784), - [anon_sym_i16] = ACTIONS(1784), - [anon_sym_u32] = ACTIONS(1784), - [anon_sym_i32] = ACTIONS(1784), - [anon_sym_u64] = ACTIONS(1784), - [anon_sym_i64] = ACTIONS(1784), - [anon_sym_u128] = ACTIONS(1784), - [anon_sym_i128] = ACTIONS(1784), - [anon_sym_isize] = ACTIONS(1784), - [anon_sym_usize] = ACTIONS(1784), - [anon_sym_f32] = ACTIONS(1784), - [anon_sym_f64] = ACTIONS(1784), - [anon_sym_bool] = ACTIONS(1784), - [anon_sym_str] = ACTIONS(1784), - [anon_sym_char] = ACTIONS(1784), - [anon_sym_DASH] = ACTIONS(1241), - [anon_sym_AMP] = ACTIONS(1786), - [anon_sym_PIPE] = ACTIONS(1247), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1451), - [anon_sym_DOT_DOT] = ACTIONS(1251), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1255), - [anon_sym_COMMA] = ACTIONS(3066), - [anon_sym_COLON_COLON] = ACTIONS(1790), - [anon_sym_const] = ACTIONS(1792), - [anon_sym_default] = ACTIONS(1794), - [anon_sym_gen] = ACTIONS(1794), - [anon_sym_union] = ACTIONS(1794), - [anon_sym_ref] = ACTIONS(1281), - [sym_mutable_specifier] = ACTIONS(1457), - [sym_integer_literal] = ACTIONS(1287), - [aux_sym_string_literal_token1] = ACTIONS(1289), - [sym_char_literal] = ACTIONS(1287), - [anon_sym_true] = ACTIONS(1291), - [anon_sym_false] = ACTIONS(1291), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1796), - [sym_super] = ACTIONS(1796), - [sym_crate] = ACTIONS(1796), - [sym_metavariable] = ACTIONS(1798), - [sym__raw_string_literal_start] = ACTIONS(1299), - [sym_float_literal] = ACTIONS(1287), + [sym_identifier] = ACTIONS(2369), + [anon_sym_LPAREN] = ACTIONS(2371), + [anon_sym_RPAREN] = ACTIONS(3062), + [anon_sym_LBRACK] = 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(1246), + [anon_sym_AMP] = ACTIONS(2379), + [anon_sym_PIPE] = ACTIONS(1426), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1428), + [anon_sym_DOT_DOT] = ACTIONS(1256), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1260), + [anon_sym_COLON_COLON] = ACTIONS(2383), + [anon_sym_const] = ACTIONS(2385), + [anon_sym_default] = ACTIONS(2387), + [anon_sym_gen] = ACTIONS(2387), + [anon_sym_static] = ACTIONS(1432), + [anon_sym_union] = ACTIONS(2387), + [anon_sym_ref] = ACTIONS(1286), + [sym_mutable_specifier] = ACTIONS(1434), + [anon_sym_move] = ACTIONS(1436), + [sym_integer_literal] = ACTIONS(1292), + [aux_sym_string_literal_token1] = ACTIONS(1294), + [sym_char_literal] = ACTIONS(1292), + [anon_sym_true] = ACTIONS(1296), + [anon_sym_false] = ACTIONS(1296), + [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(2391), + [sym__raw_string_literal_start] = ACTIONS(1304), + [sym_float_literal] = ACTIONS(1292), }, [STATE(787)] = { - [sym_bracketed_type] = STATE(3448), - [sym_generic_type] = STATE(3450), - [sym_generic_type_with_turbofish] = STATE(3159), - [sym_macro_invocation] = STATE(2150), - [sym_scoped_identifier] = STATE(2016), - [sym_scoped_type_identifier] = STATE(2988), - [sym_const_block] = STATE(2150), - [sym__pattern] = STATE(2787), - [sym_generic_pattern] = STATE(2150), - [sym_tuple_pattern] = STATE(2150), - [sym_slice_pattern] = STATE(2150), - [sym_tuple_struct_pattern] = STATE(2150), - [sym_struct_pattern] = STATE(2150), - [sym_remaining_field_pattern] = STATE(2150), - [sym_mut_pattern] = STATE(2150), - [sym_range_pattern] = STATE(2150), - [sym_ref_pattern] = STATE(2150), - [sym_captured_pattern] = STATE(2150), - [sym_reference_pattern] = STATE(2150), - [sym_or_pattern] = STATE(2150), - [sym__literal_pattern] = STATE(2076), - [sym_negative_literal] = STATE(2074), - [sym_string_literal] = STATE(2074), - [sym_raw_string_literal] = STATE(2074), - [sym_boolean_literal] = STATE(2074), + [sym_attribute_item] = STATE(1403), + [sym_inner_attribute_item] = STATE(1403), + [sym_bracketed_type] = STATE(3677), + [sym_generic_type] = STATE(3475), + [sym_generic_type_with_turbofish] = STATE(3405), + [sym_macro_invocation] = STATE(2996), + [sym_scoped_identifier] = STATE(2238), + [sym_scoped_type_identifier] = STATE(3090), + [sym_match_pattern] = STATE(3607), + [sym_const_block] = STATE(2996), + [sym__pattern] = STATE(2947), + [sym_generic_pattern] = STATE(2996), + [sym_tuple_pattern] = STATE(2996), + [sym_slice_pattern] = STATE(2996), + [sym_tuple_struct_pattern] = STATE(2996), + [sym_struct_pattern] = STATE(2996), + [sym_remaining_field_pattern] = STATE(2996), + [sym_mut_pattern] = STATE(2996), + [sym_range_pattern] = STATE(2996), + [sym_ref_pattern] = STATE(2996), + [sym_captured_pattern] = STATE(2996), + [sym_reference_pattern] = STATE(2996), + [sym_or_pattern] = STATE(2996), + [sym__literal_pattern] = STATE(2429), + [sym_negative_literal] = STATE(2440), + [sym_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_boolean_literal] = STATE(2440), [sym_line_comment] = STATE(787), [sym_block_comment] = STATE(787), - [sym_identifier] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_LBRACK] = ACTIONS(1782), - [anon_sym_RBRACK] = ACTIONS(1545), - [anon_sym_u8] = ACTIONS(1784), - [anon_sym_i8] = ACTIONS(1784), - [anon_sym_u16] = ACTIONS(1784), - [anon_sym_i16] = ACTIONS(1784), - [anon_sym_u32] = ACTIONS(1784), - [anon_sym_i32] = ACTIONS(1784), - [anon_sym_u64] = ACTIONS(1784), - [anon_sym_i64] = ACTIONS(1784), - [anon_sym_u128] = ACTIONS(1784), - [anon_sym_i128] = ACTIONS(1784), - [anon_sym_isize] = ACTIONS(1784), - [anon_sym_usize] = ACTIONS(1784), - [anon_sym_f32] = ACTIONS(1784), - [anon_sym_f64] = ACTIONS(1784), - [anon_sym_bool] = ACTIONS(1784), - [anon_sym_str] = ACTIONS(1784), - [anon_sym_char] = ACTIONS(1784), - [anon_sym_DASH] = ACTIONS(1241), - [anon_sym_AMP] = ACTIONS(1786), - [anon_sym_PIPE] = ACTIONS(1247), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1451), - [anon_sym_DOT_DOT] = ACTIONS(1251), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1255), - [anon_sym_COMMA] = ACTIONS(1551), - [anon_sym_COLON_COLON] = ACTIONS(1790), - [anon_sym_const] = ACTIONS(1792), - [anon_sym_default] = ACTIONS(1794), - [anon_sym_gen] = ACTIONS(1794), - [anon_sym_union] = ACTIONS(1794), - [anon_sym_ref] = ACTIONS(1281), - [sym_mutable_specifier] = ACTIONS(1457), - [sym_integer_literal] = ACTIONS(1287), - [aux_sym_string_literal_token1] = ACTIONS(1289), - [sym_char_literal] = ACTIONS(1287), - [anon_sym_true] = ACTIONS(1291), - [anon_sym_false] = ACTIONS(1291), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1796), - [sym_super] = ACTIONS(1796), - [sym_crate] = ACTIONS(1796), - [sym_metavariable] = ACTIONS(1798), - [sym__raw_string_literal_start] = ACTIONS(1299), - [sym_float_literal] = ACTIONS(1287), + [aux_sym_match_arm_repeat1] = STATE(1065), + [sym_identifier] = ACTIONS(1650), + [anon_sym_LPAREN] = ACTIONS(1652), + [anon_sym_LBRACK] = ACTIONS(1654), + [anon_sym_u8] = ACTIONS(1658), + [anon_sym_i8] = ACTIONS(1658), + [anon_sym_u16] = ACTIONS(1658), + [anon_sym_i16] = ACTIONS(1658), + [anon_sym_u32] = ACTIONS(1658), + [anon_sym_i32] = ACTIONS(1658), + [anon_sym_u64] = ACTIONS(1658), + [anon_sym_i64] = ACTIONS(1658), + [anon_sym_u128] = ACTIONS(1658), + [anon_sym_i128] = ACTIONS(1658), + [anon_sym_isize] = ACTIONS(1658), + [anon_sym_usize] = ACTIONS(1658), + [anon_sym_f32] = ACTIONS(1658), + [anon_sym_f64] = ACTIONS(1658), + [anon_sym_bool] = ACTIONS(1658), + [anon_sym_str] = ACTIONS(1658), + [anon_sym_char] = ACTIONS(1658), + [anon_sym_DASH] = ACTIONS(1660), + [anon_sym_AMP] = ACTIONS(1662), + [anon_sym_PIPE] = ACTIONS(1664), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1666), + [anon_sym_DOT_DOT] = ACTIONS(1668), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1670), + [anon_sym_COLON_COLON] = ACTIONS(1672), + [anon_sym_POUND] = ACTIONS(1674), + [anon_sym_const] = ACTIONS(1676), + [anon_sym_default] = ACTIONS(1678), + [anon_sym_gen] = ACTIONS(1678), + [anon_sym_union] = ACTIONS(1678), + [anon_sym_ref] = ACTIONS(1680), + [sym_mutable_specifier] = ACTIONS(1682), + [sym_integer_literal] = ACTIONS(1684), + [aux_sym_string_literal_token1] = ACTIONS(1686), + [sym_char_literal] = ACTIONS(1684), + [anon_sym_true] = ACTIONS(1688), + [anon_sym_false] = ACTIONS(1688), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1690), + [sym_super] = ACTIONS(1690), + [sym_crate] = ACTIONS(1690), + [sym_metavariable] = ACTIONS(1692), + [sym__raw_string_literal_start] = ACTIONS(1694), + [sym_float_literal] = ACTIONS(1684), }, [STATE(788)] = { - [sym_bracketed_type] = STATE(3448), - [sym_generic_type] = STATE(3450), - [sym_generic_type_with_turbofish] = STATE(3159), - [sym_macro_invocation] = STATE(2150), - [sym_scoped_identifier] = STATE(2016), - [sym_scoped_type_identifier] = STATE(2988), - [sym_const_block] = STATE(2150), - [sym__pattern] = STATE(2724), - [sym_generic_pattern] = STATE(2150), - [sym_tuple_pattern] = STATE(2150), - [sym_slice_pattern] = STATE(2150), - [sym_tuple_struct_pattern] = STATE(2150), - [sym_struct_pattern] = STATE(2150), - [sym_remaining_field_pattern] = STATE(2150), - [sym_mut_pattern] = STATE(2150), - [sym_range_pattern] = STATE(2150), - [sym_ref_pattern] = STATE(2150), - [sym_captured_pattern] = STATE(2150), - [sym_reference_pattern] = STATE(2150), - [sym_or_pattern] = STATE(2150), - [sym__literal_pattern] = STATE(2076), - [sym_negative_literal] = STATE(2074), - [sym_string_literal] = STATE(2074), - [sym_raw_string_literal] = STATE(2074), - [sym_boolean_literal] = STATE(2074), + [sym_bracketed_type] = STATE(3581), + [sym_generic_type] = STATE(3475), + [sym_generic_type_with_turbofish] = STATE(3233), + [sym_macro_invocation] = STATE(2163), + [sym_scoped_identifier] = STATE(2032), + [sym_scoped_type_identifier] = STATE(2893), + [sym_const_block] = STATE(2163), + [sym_closure_expression] = STATE(3387), + [sym_closure_parameters] = STATE(220), + [sym__pattern] = STATE(3116), + [sym_generic_pattern] = STATE(2163), + [sym_tuple_pattern] = STATE(2163), + [sym_slice_pattern] = STATE(2163), + [sym_tuple_struct_pattern] = STATE(2163), + [sym_struct_pattern] = STATE(2163), + [sym_remaining_field_pattern] = STATE(2163), + [sym_mut_pattern] = STATE(2163), + [sym_range_pattern] = STATE(2163), + [sym_ref_pattern] = STATE(2163), + [sym_captured_pattern] = STATE(2163), + [sym_reference_pattern] = STATE(2163), + [sym_or_pattern] = STATE(2163), + [sym__literal_pattern] = STATE(2098), + [sym_negative_literal] = STATE(2095), + [sym_string_literal] = STATE(2095), + [sym_raw_string_literal] = STATE(2095), + [sym_boolean_literal] = STATE(2095), [sym_line_comment] = STATE(788), [sym_block_comment] = STATE(788), - [sym_identifier] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_RPAREN] = ACTIONS(3068), - [anon_sym_LBRACK] = ACTIONS(1782), - [anon_sym_u8] = ACTIONS(1784), - [anon_sym_i8] = ACTIONS(1784), - [anon_sym_u16] = ACTIONS(1784), - [anon_sym_i16] = ACTIONS(1784), - [anon_sym_u32] = ACTIONS(1784), - [anon_sym_i32] = ACTIONS(1784), - [anon_sym_u64] = ACTIONS(1784), - [anon_sym_i64] = ACTIONS(1784), - [anon_sym_u128] = ACTIONS(1784), - [anon_sym_i128] = ACTIONS(1784), - [anon_sym_isize] = ACTIONS(1784), - [anon_sym_usize] = ACTIONS(1784), - [anon_sym_f32] = ACTIONS(1784), - [anon_sym_f64] = ACTIONS(1784), - [anon_sym_bool] = ACTIONS(1784), - [anon_sym_str] = ACTIONS(1784), - [anon_sym_char] = ACTIONS(1784), - [anon_sym_DASH] = ACTIONS(1241), - [anon_sym_AMP] = ACTIONS(1786), - [anon_sym_PIPE] = ACTIONS(1247), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1451), - [anon_sym_DOT_DOT] = ACTIONS(1251), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1255), - [anon_sym_COMMA] = ACTIONS(3070), - [anon_sym_COLON_COLON] = ACTIONS(1790), - [anon_sym_const] = ACTIONS(1792), - [anon_sym_default] = ACTIONS(1794), - [anon_sym_gen] = ACTIONS(1794), - [anon_sym_union] = ACTIONS(1794), - [anon_sym_ref] = ACTIONS(1281), - [sym_mutable_specifier] = ACTIONS(1457), - [sym_integer_literal] = ACTIONS(1287), - [aux_sym_string_literal_token1] = ACTIONS(1289), - [sym_char_literal] = ACTIONS(1287), - [anon_sym_true] = ACTIONS(1291), - [anon_sym_false] = ACTIONS(1291), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1796), - [sym_super] = ACTIONS(1796), - [sym_crate] = ACTIONS(1796), - [sym_metavariable] = ACTIONS(1798), - [sym__raw_string_literal_start] = ACTIONS(1299), - [sym_float_literal] = ACTIONS(1287), + [sym_identifier] = ACTIONS(2369), + [anon_sym_LPAREN] = ACTIONS(2371), + [anon_sym_LBRACK] = 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(1246), + [anon_sym_AMP] = ACTIONS(2379), + [anon_sym_PIPE] = ACTIONS(1426), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1428), + [anon_sym_DOT_DOT] = ACTIONS(1256), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1260), + [anon_sym_COLON_COLON] = ACTIONS(2383), + [anon_sym_const] = ACTIONS(2385), + [anon_sym_default] = ACTIONS(2387), + [anon_sym_gen] = ACTIONS(2387), + [anon_sym_static] = ACTIONS(1432), + [anon_sym_union] = ACTIONS(2387), + [anon_sym_ref] = ACTIONS(1286), + [sym_mutable_specifier] = ACTIONS(1434), + [anon_sym_move] = ACTIONS(1436), + [sym_integer_literal] = ACTIONS(1292), + [aux_sym_string_literal_token1] = ACTIONS(1294), + [sym_char_literal] = ACTIONS(1292), + [anon_sym_true] = ACTIONS(1296), + [anon_sym_false] = ACTIONS(1296), + [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(2391), + [sym__raw_string_literal_start] = ACTIONS(1304), + [sym_float_literal] = ACTIONS(1292), }, [STATE(789)] = { - [sym_bracketed_type] = STATE(3448), - [sym_generic_type] = STATE(3450), - [sym_generic_type_with_turbofish] = STATE(3159), - [sym_macro_invocation] = STATE(2150), - [sym_scoped_identifier] = STATE(2016), - [sym_scoped_type_identifier] = STATE(2988), - [sym_const_block] = STATE(2150), - [sym__pattern] = STATE(2730), - [sym_generic_pattern] = STATE(2150), - [sym_tuple_pattern] = STATE(2150), - [sym_slice_pattern] = STATE(2150), - [sym_tuple_struct_pattern] = STATE(2150), - [sym_struct_pattern] = STATE(2150), - [sym_remaining_field_pattern] = STATE(2150), - [sym_mut_pattern] = STATE(2150), - [sym_range_pattern] = STATE(2150), - [sym_ref_pattern] = STATE(2150), - [sym_captured_pattern] = STATE(2150), - [sym_reference_pattern] = STATE(2150), - [sym_or_pattern] = STATE(2150), - [sym__literal_pattern] = STATE(2076), - [sym_negative_literal] = STATE(2074), - [sym_string_literal] = STATE(2074), - [sym_raw_string_literal] = STATE(2074), - [sym_boolean_literal] = STATE(2074), + [sym_attribute_item] = STATE(1377), + [sym_function_modifiers] = STATE(3591), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2373), + [sym_visibility_modifier] = STATE(909), + [sym__type] = STATE(2810), + [sym_bracketed_type] = STATE(3474), + [sym_lifetime] = STATE(3727), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1591), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2022), + [sym_generic_type_with_turbofish] = STATE(3764), + [sym_bounded_type] = STATE(2069), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3334), + [sym_scoped_type_identifier] = STATE(1990), [sym_line_comment] = STATE(789), [sym_block_comment] = STATE(789), - [sym_identifier] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_RPAREN] = ACTIONS(3072), - [anon_sym_LBRACK] = ACTIONS(1782), - [anon_sym_u8] = ACTIONS(1784), - [anon_sym_i8] = ACTIONS(1784), - [anon_sym_u16] = ACTIONS(1784), - [anon_sym_i16] = ACTIONS(1784), - [anon_sym_u32] = ACTIONS(1784), - [anon_sym_i32] = ACTIONS(1784), - [anon_sym_u64] = ACTIONS(1784), - [anon_sym_i64] = ACTIONS(1784), - [anon_sym_u128] = ACTIONS(1784), - [anon_sym_i128] = ACTIONS(1784), - [anon_sym_isize] = ACTIONS(1784), - [anon_sym_usize] = ACTIONS(1784), - [anon_sym_f32] = ACTIONS(1784), - [anon_sym_f64] = ACTIONS(1784), - [anon_sym_bool] = ACTIONS(1784), - [anon_sym_str] = ACTIONS(1784), - [anon_sym_char] = ACTIONS(1784), - [anon_sym_DASH] = ACTIONS(1241), - [anon_sym_AMP] = ACTIONS(1786), - [anon_sym_PIPE] = ACTIONS(1247), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1451), - [anon_sym_DOT_DOT] = ACTIONS(1251), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1255), - [anon_sym_COMMA] = ACTIONS(3074), - [anon_sym_COLON_COLON] = ACTIONS(1790), - [anon_sym_const] = ACTIONS(1792), - [anon_sym_default] = ACTIONS(1794), - [anon_sym_gen] = ACTIONS(1794), - [anon_sym_union] = ACTIONS(1794), - [anon_sym_ref] = ACTIONS(1281), - [sym_mutable_specifier] = ACTIONS(1457), - [sym_integer_literal] = ACTIONS(1287), - [aux_sym_string_literal_token1] = ACTIONS(1289), - [sym_char_literal] = ACTIONS(1287), - [anon_sym_true] = ACTIONS(1291), - [anon_sym_false] = ACTIONS(1291), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1796), - [sym_super] = ACTIONS(1796), - [sym_crate] = ACTIONS(1796), - [sym_metavariable] = ACTIONS(1798), - [sym__raw_string_literal_start] = ACTIONS(1299), - [sym_float_literal] = ACTIONS(1287), + [aux_sym_enum_variant_list_repeat1] = STATE(814), + [aux_sym_function_modifiers_repeat1] = STATE(2244), + [sym_identifier] = ACTIONS(3064), + [anon_sym_LPAREN] = ACTIONS(1602), + [anon_sym_RPAREN] = ACTIONS(3066), + [anon_sym_LBRACK] = ACTIONS(1604), + [anon_sym_STAR] = ACTIONS(1240), + [anon_sym_QMARK] = ACTIONS(1242), + [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_BANG] = ACTIONS(1248), + [anon_sym_AMP] = ACTIONS(1610), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COMMA] = ACTIONS(3068), + [anon_sym_COLON_COLON] = ACTIONS(1614), + [anon_sym_POUND] = ACTIONS(3070), + [anon_sym_SQUOTE] = ACTIONS(3072), + [anon_sym_async] = ACTIONS(1270), + [anon_sym_const] = ACTIONS(1270), + [anon_sym_default] = ACTIONS(1618), + [anon_sym_fn] = ACTIONS(1276), + [anon_sym_for] = ACTIONS(1278), + [anon_sym_gen] = ACTIONS(1620), + [anon_sym_impl] = ACTIONS(1282), + [anon_sym_pub] = ACTIONS(3074), + [anon_sym_union] = ACTIONS(1620), + [anon_sym_unsafe] = ACTIONS(1270), + [anon_sym_extern] = ACTIONS(1284), + [anon_sym_safe] = ACTIONS(1270), + [anon_sym_dyn] = ACTIONS(1288), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1624), + [sym_super] = ACTIONS(1624), + [sym_crate] = ACTIONS(3076), + [sym_metavariable] = ACTIONS(1626), }, [STATE(790)] = { - [sym_bracketed_type] = STATE(3448), - [sym_generic_type] = STATE(3450), - [sym_generic_type_with_turbofish] = STATE(3159), - [sym_macro_invocation] = STATE(2150), - [sym_scoped_identifier] = STATE(2016), - [sym_scoped_type_identifier] = STATE(2988), - [sym_const_block] = STATE(2150), - [sym__pattern] = STATE(2795), - [sym_generic_pattern] = STATE(2150), - [sym_tuple_pattern] = STATE(2150), - [sym_slice_pattern] = STATE(2150), - [sym_tuple_struct_pattern] = STATE(2150), - [sym_struct_pattern] = STATE(2150), - [sym_remaining_field_pattern] = STATE(2150), - [sym_mut_pattern] = STATE(2150), - [sym_range_pattern] = STATE(2150), - [sym_ref_pattern] = STATE(2150), - [sym_captured_pattern] = STATE(2150), - [sym_reference_pattern] = STATE(2150), - [sym_or_pattern] = STATE(2150), - [sym__literal_pattern] = STATE(2076), - [sym_negative_literal] = STATE(2074), - [sym_string_literal] = STATE(2074), - [sym_raw_string_literal] = STATE(2074), - [sym_boolean_literal] = STATE(2074), + [sym_attribute_item] = STATE(1377), + [sym_function_modifiers] = STATE(3591), + [sym_removed_trait_bound] = STATE(2069), + [sym_const_parameter] = STATE(2888), + [sym_type_parameter] = STATE(2888), + [sym_lifetime_parameter] = STATE(2888), + [sym_extern_modifier] = STATE(2373), + [sym__type] = STATE(2920), + [sym_bracketed_type] = STATE(3474), + [sym_qualified_type] = STATE(3639), + [sym_lifetime] = STATE(2484), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1591), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2022), + [sym_generic_type_with_turbofish] = STATE(3764), + [sym_bounded_type] = STATE(2069), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3334), + [sym_scoped_type_identifier] = STATE(1990), [sym_line_comment] = STATE(790), [sym_block_comment] = STATE(790), - [sym_identifier] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_RPAREN] = ACTIONS(3076), - [anon_sym_LBRACK] = ACTIONS(1782), - [anon_sym_u8] = ACTIONS(1784), - [anon_sym_i8] = ACTIONS(1784), - [anon_sym_u16] = ACTIONS(1784), - [anon_sym_i16] = ACTIONS(1784), - [anon_sym_u32] = ACTIONS(1784), - [anon_sym_i32] = ACTIONS(1784), - [anon_sym_u64] = ACTIONS(1784), - [anon_sym_i64] = ACTIONS(1784), - [anon_sym_u128] = ACTIONS(1784), - [anon_sym_i128] = ACTIONS(1784), - [anon_sym_isize] = ACTIONS(1784), - [anon_sym_usize] = ACTIONS(1784), - [anon_sym_f32] = ACTIONS(1784), - [anon_sym_f64] = ACTIONS(1784), - [anon_sym_bool] = ACTIONS(1784), - [anon_sym_str] = ACTIONS(1784), - [anon_sym_char] = ACTIONS(1784), - [anon_sym_DASH] = ACTIONS(1241), - [anon_sym_AMP] = ACTIONS(1786), - [anon_sym_PIPE] = ACTIONS(1247), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1451), - [anon_sym_DOT_DOT] = ACTIONS(1251), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1255), - [anon_sym_COMMA] = ACTIONS(3078), - [anon_sym_COLON_COLON] = ACTIONS(1790), - [anon_sym_const] = ACTIONS(1792), - [anon_sym_default] = ACTIONS(1794), - [anon_sym_gen] = ACTIONS(1794), - [anon_sym_union] = ACTIONS(1794), - [anon_sym_ref] = ACTIONS(1281), - [sym_mutable_specifier] = ACTIONS(1457), - [sym_integer_literal] = ACTIONS(1287), - [aux_sym_string_literal_token1] = ACTIONS(1289), - [sym_char_literal] = ACTIONS(1287), - [anon_sym_true] = ACTIONS(1291), - [anon_sym_false] = ACTIONS(1291), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1796), - [sym_super] = ACTIONS(1796), - [sym_crate] = ACTIONS(1796), - [sym_metavariable] = ACTIONS(1798), - [sym__raw_string_literal_start] = ACTIONS(1299), - [sym_float_literal] = ACTIONS(1287), + [aux_sym_enum_variant_list_repeat1] = STATE(2150), + [aux_sym_function_modifiers_repeat1] = STATE(2244), + [sym_identifier] = ACTIONS(3078), + [anon_sym_LPAREN] = ACTIONS(1602), + [anon_sym_LBRACK] = ACTIONS(1604), + [anon_sym_STAR] = ACTIONS(1240), + [anon_sym_QMARK] = ACTIONS(1242), + [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_BANG] = ACTIONS(1248), + [anon_sym_AMP] = ACTIONS(1610), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1614), + [anon_sym_POUND] = ACTIONS(3070), + [anon_sym_SQUOTE] = ACTIONS(3080), + [anon_sym_async] = ACTIONS(1270), + [anon_sym_const] = ACTIONS(3082), + [anon_sym_default] = ACTIONS(1618), + [anon_sym_fn] = ACTIONS(1276), + [anon_sym_for] = ACTIONS(1278), + [anon_sym_gen] = ACTIONS(1620), + [anon_sym_impl] = ACTIONS(1282), + [anon_sym_union] = ACTIONS(1620), + [anon_sym_unsafe] = ACTIONS(1270), + [anon_sym_extern] = ACTIONS(1284), + [anon_sym_safe] = ACTIONS(1270), + [anon_sym_dyn] = ACTIONS(1288), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1624), + [sym_super] = ACTIONS(1624), + [sym_crate] = ACTIONS(1624), + [sym_metavariable] = ACTIONS(3084), }, [STATE(791)] = { - [sym_bracketed_type] = STATE(3448), - [sym_generic_type] = STATE(3450), - [sym_generic_type_with_turbofish] = STATE(3159), - [sym_macro_invocation] = STATE(2150), - [sym_scoped_identifier] = STATE(2016), - [sym_scoped_type_identifier] = STATE(2988), - [sym_const_block] = STATE(2150), - [sym__pattern] = STATE(2649), - [sym_generic_pattern] = STATE(2150), - [sym_tuple_pattern] = STATE(2150), - [sym_slice_pattern] = STATE(2150), - [sym_tuple_struct_pattern] = STATE(2150), - [sym_struct_pattern] = STATE(2150), - [sym_remaining_field_pattern] = STATE(2150), - [sym_mut_pattern] = STATE(2150), - [sym_range_pattern] = STATE(2150), - [sym_ref_pattern] = STATE(2150), - [sym_captured_pattern] = STATE(2150), - [sym_reference_pattern] = STATE(2150), - [sym_or_pattern] = STATE(2150), - [sym__literal_pattern] = STATE(2076), - [sym_negative_literal] = STATE(2074), - [sym_string_literal] = STATE(2074), - [sym_raw_string_literal] = STATE(2074), - [sym_boolean_literal] = STATE(2074), + [sym_bracketed_type] = STATE(3581), + [sym_generic_type] = STATE(3475), + [sym_generic_type_with_turbofish] = STATE(3233), + [sym_macro_invocation] = STATE(2163), + [sym_scoped_identifier] = STATE(2032), + [sym_scoped_type_identifier] = STATE(2893), + [sym_const_block] = STATE(2163), + [sym__pattern] = STATE(2720), + [sym_generic_pattern] = STATE(2163), + [sym_tuple_pattern] = STATE(2163), + [sym_slice_pattern] = STATE(2163), + [sym_tuple_struct_pattern] = STATE(2163), + [sym_struct_pattern] = STATE(2163), + [sym_remaining_field_pattern] = STATE(2163), + [sym_mut_pattern] = STATE(2163), + [sym_range_pattern] = STATE(2163), + [sym_ref_pattern] = STATE(2163), + [sym_captured_pattern] = STATE(2163), + [sym_reference_pattern] = STATE(2163), + [sym_or_pattern] = STATE(2163), + [sym__literal_pattern] = STATE(2098), + [sym_negative_literal] = STATE(2095), + [sym_string_literal] = STATE(2095), + [sym_raw_string_literal] = STATE(2095), + [sym_boolean_literal] = STATE(2095), [sym_line_comment] = STATE(791), [sym_block_comment] = STATE(791), - [sym_identifier] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_LBRACK] = ACTIONS(1782), - [anon_sym_RBRACK] = ACTIONS(3080), - [anon_sym_u8] = ACTIONS(1784), - [anon_sym_i8] = ACTIONS(1784), - [anon_sym_u16] = ACTIONS(1784), - [anon_sym_i16] = ACTIONS(1784), - [anon_sym_u32] = ACTIONS(1784), - [anon_sym_i32] = ACTIONS(1784), - [anon_sym_u64] = ACTIONS(1784), - [anon_sym_i64] = ACTIONS(1784), - [anon_sym_u128] = ACTIONS(1784), - [anon_sym_i128] = ACTIONS(1784), - [anon_sym_isize] = ACTIONS(1784), - [anon_sym_usize] = ACTIONS(1784), - [anon_sym_f32] = ACTIONS(1784), - [anon_sym_f64] = ACTIONS(1784), - [anon_sym_bool] = ACTIONS(1784), - [anon_sym_str] = ACTIONS(1784), - [anon_sym_char] = ACTIONS(1784), - [anon_sym_DASH] = ACTIONS(1241), - [anon_sym_AMP] = ACTIONS(1786), - [anon_sym_PIPE] = ACTIONS(1247), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1451), - [anon_sym_DOT_DOT] = ACTIONS(1251), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1255), - [anon_sym_COLON_COLON] = ACTIONS(1790), - [anon_sym_const] = ACTIONS(1792), - [anon_sym_default] = ACTIONS(1794), - [anon_sym_gen] = ACTIONS(1794), - [anon_sym_union] = ACTIONS(1794), - [anon_sym_ref] = ACTIONS(1281), - [sym_mutable_specifier] = ACTIONS(1457), - [sym_integer_literal] = ACTIONS(1287), - [aux_sym_string_literal_token1] = ACTIONS(1289), - [sym_char_literal] = ACTIONS(1287), - [anon_sym_true] = ACTIONS(1291), - [anon_sym_false] = ACTIONS(1291), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1796), - [sym_super] = ACTIONS(1796), - [sym_crate] = ACTIONS(1796), - [sym_metavariable] = ACTIONS(1798), - [sym__raw_string_literal_start] = ACTIONS(1299), - [sym_float_literal] = ACTIONS(1287), + [sym_identifier] = ACTIONS(2369), + [anon_sym_LPAREN] = ACTIONS(2371), + [anon_sym_RPAREN] = ACTIONS(3086), + [anon_sym_LBRACK] = 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(1246), + [anon_sym_AMP] = ACTIONS(2379), + [anon_sym_PIPE] = ACTIONS(1252), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1428), + [anon_sym_DOT_DOT] = ACTIONS(1256), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1260), + [anon_sym_COMMA] = ACTIONS(3088), + [anon_sym_COLON_COLON] = ACTIONS(2383), + [anon_sym_const] = ACTIONS(2385), + [anon_sym_default] = ACTIONS(2387), + [anon_sym_gen] = ACTIONS(2387), + [anon_sym_union] = ACTIONS(2387), + [anon_sym_ref] = ACTIONS(1286), + [sym_mutable_specifier] = ACTIONS(1434), + [sym_integer_literal] = ACTIONS(1292), + [aux_sym_string_literal_token1] = ACTIONS(1294), + [sym_char_literal] = ACTIONS(1292), + [anon_sym_true] = ACTIONS(1296), + [anon_sym_false] = ACTIONS(1296), + [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(2391), + [sym__raw_string_literal_start] = ACTIONS(1304), + [sym_float_literal] = ACTIONS(1292), }, [STATE(792)] = { - [sym_bracketed_type] = STATE(3448), - [sym_generic_type] = STATE(3450), - [sym_generic_type_with_turbofish] = STATE(3159), - [sym_macro_invocation] = STATE(2150), - [sym_scoped_identifier] = STATE(2016), - [sym_scoped_type_identifier] = STATE(2988), - [sym_const_block] = STATE(2150), - [sym__pattern] = STATE(2649), - [sym_generic_pattern] = STATE(2150), - [sym_tuple_pattern] = STATE(2150), - [sym_slice_pattern] = STATE(2150), - [sym_tuple_struct_pattern] = STATE(2150), - [sym_struct_pattern] = STATE(2150), - [sym_remaining_field_pattern] = STATE(2150), - [sym_mut_pattern] = STATE(2150), - [sym_range_pattern] = STATE(2150), - [sym_ref_pattern] = STATE(2150), - [sym_captured_pattern] = STATE(2150), - [sym_reference_pattern] = STATE(2150), - [sym_or_pattern] = STATE(2150), - [sym__literal_pattern] = STATE(2076), - [sym_negative_literal] = STATE(2074), - [sym_string_literal] = STATE(2074), - [sym_raw_string_literal] = STATE(2074), - [sym_boolean_literal] = STATE(2074), + [sym_bracketed_type] = STATE(3581), + [sym_generic_type] = STATE(3475), + [sym_generic_type_with_turbofish] = STATE(3233), + [sym_macro_invocation] = STATE(2163), + [sym_scoped_identifier] = STATE(2032), + [sym_scoped_type_identifier] = STATE(2893), + [sym_const_block] = STATE(2163), + [sym__pattern] = STATE(2630), + [sym_generic_pattern] = STATE(2163), + [sym_tuple_pattern] = STATE(2163), + [sym_slice_pattern] = STATE(2163), + [sym_tuple_struct_pattern] = STATE(2163), + [sym_struct_pattern] = STATE(2163), + [sym_remaining_field_pattern] = STATE(2163), + [sym_mut_pattern] = STATE(2163), + [sym_range_pattern] = STATE(2163), + [sym_ref_pattern] = STATE(2163), + [sym_captured_pattern] = STATE(2163), + [sym_reference_pattern] = STATE(2163), + [sym_or_pattern] = STATE(2163), + [sym__literal_pattern] = STATE(2098), + [sym_negative_literal] = STATE(2095), + [sym_string_literal] = STATE(2095), + [sym_raw_string_literal] = STATE(2095), + [sym_boolean_literal] = STATE(2095), [sym_line_comment] = STATE(792), [sym_block_comment] = STATE(792), - [sym_identifier] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_RPAREN] = ACTIONS(3082), - [anon_sym_LBRACK] = ACTIONS(1782), - [anon_sym_u8] = ACTIONS(1784), - [anon_sym_i8] = ACTIONS(1784), - [anon_sym_u16] = ACTIONS(1784), - [anon_sym_i16] = ACTIONS(1784), - [anon_sym_u32] = ACTIONS(1784), - [anon_sym_i32] = ACTIONS(1784), - [anon_sym_u64] = ACTIONS(1784), - [anon_sym_i64] = ACTIONS(1784), - [anon_sym_u128] = ACTIONS(1784), - [anon_sym_i128] = ACTIONS(1784), - [anon_sym_isize] = ACTIONS(1784), - [anon_sym_usize] = ACTIONS(1784), - [anon_sym_f32] = ACTIONS(1784), - [anon_sym_f64] = ACTIONS(1784), - [anon_sym_bool] = ACTIONS(1784), - [anon_sym_str] = ACTIONS(1784), - [anon_sym_char] = ACTIONS(1784), - [anon_sym_DASH] = ACTIONS(1241), - [anon_sym_AMP] = ACTIONS(1786), - [anon_sym_PIPE] = ACTIONS(1247), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1451), - [anon_sym_DOT_DOT] = ACTIONS(1251), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1255), - [anon_sym_COLON_COLON] = ACTIONS(1790), - [anon_sym_const] = ACTIONS(1792), - [anon_sym_default] = ACTIONS(1794), - [anon_sym_gen] = ACTIONS(1794), - [anon_sym_union] = ACTIONS(1794), - [anon_sym_ref] = ACTIONS(1281), - [sym_mutable_specifier] = ACTIONS(1457), - [sym_integer_literal] = ACTIONS(1287), - [aux_sym_string_literal_token1] = ACTIONS(1289), - [sym_char_literal] = ACTIONS(1287), - [anon_sym_true] = ACTIONS(1291), - [anon_sym_false] = ACTIONS(1291), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1796), - [sym_super] = ACTIONS(1796), - [sym_crate] = ACTIONS(1796), - [sym_metavariable] = ACTIONS(1798), - [sym__raw_string_literal_start] = ACTIONS(1299), - [sym_float_literal] = ACTIONS(1287), + [sym_identifier] = ACTIONS(2369), + [anon_sym_LPAREN] = ACTIONS(2371), + [anon_sym_LBRACK] = ACTIONS(2375), + [anon_sym_RBRACK] = ACTIONS(1550), + [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(1246), + [anon_sym_AMP] = ACTIONS(2379), + [anon_sym_PIPE] = ACTIONS(1252), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1428), + [anon_sym_DOT_DOT] = ACTIONS(1256), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1260), + [anon_sym_COMMA] = ACTIONS(1556), + [anon_sym_COLON_COLON] = ACTIONS(2383), + [anon_sym_const] = ACTIONS(2385), + [anon_sym_default] = ACTIONS(2387), + [anon_sym_gen] = ACTIONS(2387), + [anon_sym_union] = ACTIONS(2387), + [anon_sym_ref] = ACTIONS(1286), + [sym_mutable_specifier] = ACTIONS(1434), + [sym_integer_literal] = ACTIONS(1292), + [aux_sym_string_literal_token1] = ACTIONS(1294), + [sym_char_literal] = ACTIONS(1292), + [anon_sym_true] = ACTIONS(1296), + [anon_sym_false] = ACTIONS(1296), + [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(2391), + [sym__raw_string_literal_start] = ACTIONS(1304), + [sym_float_literal] = ACTIONS(1292), }, [STATE(793)] = { - [sym_bracketed_type] = STATE(3448), - [sym_generic_type] = STATE(3450), - [sym_generic_type_with_turbofish] = STATE(3159), - [sym_macro_invocation] = STATE(2150), - [sym_scoped_identifier] = STATE(2016), - [sym_scoped_type_identifier] = STATE(2988), - [sym_const_block] = STATE(2150), - [sym__pattern] = STATE(2649), - [sym_generic_pattern] = STATE(2150), - [sym_tuple_pattern] = STATE(2150), - [sym_slice_pattern] = STATE(2150), - [sym_tuple_struct_pattern] = STATE(2150), - [sym_struct_pattern] = STATE(2150), - [sym_remaining_field_pattern] = STATE(2150), - [sym_mut_pattern] = STATE(2150), - [sym_range_pattern] = STATE(2150), - [sym_ref_pattern] = STATE(2150), - [sym_captured_pattern] = STATE(2150), - [sym_reference_pattern] = STATE(2150), - [sym_or_pattern] = STATE(2150), - [sym__literal_pattern] = STATE(2076), - [sym_negative_literal] = STATE(2074), - [sym_string_literal] = STATE(2074), - [sym_raw_string_literal] = STATE(2074), - [sym_boolean_literal] = STATE(2074), + [sym_bracketed_type] = STATE(3581), + [sym_generic_type] = STATE(3475), + [sym_generic_type_with_turbofish] = STATE(3233), + [sym_macro_invocation] = STATE(2163), + [sym_scoped_identifier] = STATE(2032), + [sym_scoped_type_identifier] = STATE(2893), + [sym_const_block] = STATE(2163), + [sym__pattern] = STATE(2725), + [sym_generic_pattern] = STATE(2163), + [sym_tuple_pattern] = STATE(2163), + [sym_slice_pattern] = STATE(2163), + [sym_tuple_struct_pattern] = STATE(2163), + [sym_struct_pattern] = STATE(2163), + [sym_remaining_field_pattern] = STATE(2163), + [sym_mut_pattern] = STATE(2163), + [sym_range_pattern] = STATE(2163), + [sym_ref_pattern] = STATE(2163), + [sym_captured_pattern] = STATE(2163), + [sym_reference_pattern] = STATE(2163), + [sym_or_pattern] = STATE(2163), + [sym__literal_pattern] = STATE(2098), + [sym_negative_literal] = STATE(2095), + [sym_string_literal] = STATE(2095), + [sym_raw_string_literal] = STATE(2095), + [sym_boolean_literal] = STATE(2095), [sym_line_comment] = STATE(793), [sym_block_comment] = STATE(793), - [sym_identifier] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_RPAREN] = ACTIONS(3084), - [anon_sym_LBRACK] = ACTIONS(1782), - [anon_sym_u8] = ACTIONS(1784), - [anon_sym_i8] = ACTIONS(1784), - [anon_sym_u16] = ACTIONS(1784), - [anon_sym_i16] = ACTIONS(1784), - [anon_sym_u32] = ACTIONS(1784), - [anon_sym_i32] = ACTIONS(1784), - [anon_sym_u64] = ACTIONS(1784), - [anon_sym_i64] = ACTIONS(1784), - [anon_sym_u128] = ACTIONS(1784), - [anon_sym_i128] = ACTIONS(1784), - [anon_sym_isize] = ACTIONS(1784), - [anon_sym_usize] = ACTIONS(1784), - [anon_sym_f32] = ACTIONS(1784), - [anon_sym_f64] = ACTIONS(1784), - [anon_sym_bool] = ACTIONS(1784), - [anon_sym_str] = ACTIONS(1784), - [anon_sym_char] = ACTIONS(1784), - [anon_sym_DASH] = ACTIONS(1241), - [anon_sym_AMP] = ACTIONS(1786), - [anon_sym_PIPE] = ACTIONS(1247), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1451), - [anon_sym_DOT_DOT] = ACTIONS(1251), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1255), - [anon_sym_COLON_COLON] = ACTIONS(1790), - [anon_sym_const] = ACTIONS(1792), - [anon_sym_default] = ACTIONS(1794), - [anon_sym_gen] = ACTIONS(1794), - [anon_sym_union] = ACTIONS(1794), - [anon_sym_ref] = ACTIONS(1281), - [sym_mutable_specifier] = ACTIONS(1457), - [sym_integer_literal] = ACTIONS(1287), - [aux_sym_string_literal_token1] = ACTIONS(1289), - [sym_char_literal] = ACTIONS(1287), - [anon_sym_true] = ACTIONS(1291), - [anon_sym_false] = ACTIONS(1291), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1796), - [sym_super] = ACTIONS(1796), - [sym_crate] = ACTIONS(1796), - [sym_metavariable] = ACTIONS(1798), - [sym__raw_string_literal_start] = ACTIONS(1299), - [sym_float_literal] = ACTIONS(1287), + [sym_identifier] = ACTIONS(2369), + [anon_sym_LPAREN] = ACTIONS(2371), + [anon_sym_RPAREN] = ACTIONS(3090), + [anon_sym_LBRACK] = 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(1246), + [anon_sym_AMP] = ACTIONS(2379), + [anon_sym_PIPE] = ACTIONS(1252), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1428), + [anon_sym_DOT_DOT] = ACTIONS(1256), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1260), + [anon_sym_COMMA] = ACTIONS(3092), + [anon_sym_COLON_COLON] = ACTIONS(2383), + [anon_sym_const] = ACTIONS(2385), + [anon_sym_default] = ACTIONS(2387), + [anon_sym_gen] = ACTIONS(2387), + [anon_sym_union] = ACTIONS(2387), + [anon_sym_ref] = ACTIONS(1286), + [sym_mutable_specifier] = ACTIONS(1434), + [sym_integer_literal] = ACTIONS(1292), + [aux_sym_string_literal_token1] = ACTIONS(1294), + [sym_char_literal] = ACTIONS(1292), + [anon_sym_true] = ACTIONS(1296), + [anon_sym_false] = ACTIONS(1296), + [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(2391), + [sym__raw_string_literal_start] = ACTIONS(1304), + [sym_float_literal] = ACTIONS(1292), }, [STATE(794)] = { - [sym_attribute_item] = STATE(1494), - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym_visibility_modifier] = STATE(906), - [sym__type] = STATE(2871), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_bracketed_type] = STATE(3581), + [sym_generic_type] = STATE(3475), + [sym_generic_type_with_turbofish] = STATE(3233), + [sym_macro_invocation] = STATE(2163), + [sym_scoped_identifier] = STATE(2032), + [sym_scoped_type_identifier] = STATE(2893), + [sym_const_block] = STATE(2163), + [sym__pattern] = STATE(2658), + [sym_generic_pattern] = STATE(2163), + [sym_tuple_pattern] = STATE(2163), + [sym_slice_pattern] = STATE(2163), + [sym_tuple_struct_pattern] = STATE(2163), + [sym_struct_pattern] = STATE(2163), + [sym_remaining_field_pattern] = STATE(2163), + [sym_mut_pattern] = STATE(2163), + [sym_range_pattern] = STATE(2163), + [sym_ref_pattern] = STATE(2163), + [sym_captured_pattern] = STATE(2163), + [sym_reference_pattern] = STATE(2163), + [sym_or_pattern] = STATE(2163), + [sym__literal_pattern] = STATE(2098), + [sym_negative_literal] = STATE(2095), + [sym_string_literal] = STATE(2095), + [sym_raw_string_literal] = STATE(2095), + [sym_boolean_literal] = STATE(2095), [sym_line_comment] = STATE(794), [sym_block_comment] = STATE(794), - [aux_sym_enum_variant_list_repeat1] = STATE(822), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(3052), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_RPAREN] = ACTIONS(3086), - [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1235), - [anon_sym_QMARK] = ACTIONS(1237), - [anon_sym_u8] = ACTIONS(1603), - [anon_sym_i8] = ACTIONS(1603), - [anon_sym_u16] = ACTIONS(1603), - [anon_sym_i16] = ACTIONS(1603), - [anon_sym_u32] = ACTIONS(1603), - [anon_sym_i32] = ACTIONS(1603), - [anon_sym_u64] = ACTIONS(1603), - [anon_sym_i64] = ACTIONS(1603), - [anon_sym_u128] = ACTIONS(1603), - [anon_sym_i128] = ACTIONS(1603), - [anon_sym_isize] = ACTIONS(1603), - [anon_sym_usize] = ACTIONS(1603), - [anon_sym_f32] = ACTIONS(1603), - [anon_sym_f64] = ACTIONS(1603), - [anon_sym_bool] = ACTIONS(1603), - [anon_sym_str] = ACTIONS(1603), - [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1243), - [anon_sym_AMP] = ACTIONS(1605), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_POUND] = ACTIONS(3044), - [anon_sym_SQUOTE] = ACTIONS(3058), - [anon_sym_async] = ACTIONS(1265), - [anon_sym_const] = ACTIONS(1265), - [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1271), - [anon_sym_for] = ACTIONS(1273), - [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1277), - [anon_sym_pub] = ACTIONS(3060), - [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1265), - [anon_sym_extern] = ACTIONS(1279), - [anon_sym_dyn] = ACTIONS(1283), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1619), - [sym_super] = ACTIONS(1619), - [sym_crate] = ACTIONS(3062), - [sym_metavariable] = ACTIONS(1621), + [sym_identifier] = ACTIONS(2369), + [anon_sym_LPAREN] = ACTIONS(2371), + [anon_sym_RPAREN] = ACTIONS(3094), + [anon_sym_LBRACK] = 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(1246), + [anon_sym_AMP] = ACTIONS(2379), + [anon_sym_PIPE] = ACTIONS(1252), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1428), + [anon_sym_DOT_DOT] = ACTIONS(1256), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1260), + [anon_sym_COMMA] = ACTIONS(3096), + [anon_sym_COLON_COLON] = ACTIONS(2383), + [anon_sym_const] = ACTIONS(2385), + [anon_sym_default] = ACTIONS(2387), + [anon_sym_gen] = ACTIONS(2387), + [anon_sym_union] = ACTIONS(2387), + [anon_sym_ref] = ACTIONS(1286), + [sym_mutable_specifier] = ACTIONS(1434), + [sym_integer_literal] = ACTIONS(1292), + [aux_sym_string_literal_token1] = ACTIONS(1294), + [sym_char_literal] = ACTIONS(1292), + [anon_sym_true] = ACTIONS(1296), + [anon_sym_false] = ACTIONS(1296), + [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(2391), + [sym__raw_string_literal_start] = ACTIONS(1304), + [sym_float_literal] = ACTIONS(1292), }, [STATE(795)] = { - [sym_bracketed_type] = STATE(3448), - [sym_generic_type] = STATE(3450), - [sym_generic_type_with_turbofish] = STATE(3159), - [sym_macro_invocation] = STATE(2150), - [sym_scoped_identifier] = STATE(2016), - [sym_scoped_type_identifier] = STATE(2988), - [sym_const_block] = STATE(2150), - [sym__pattern] = STATE(2649), - [sym_generic_pattern] = STATE(2150), - [sym_tuple_pattern] = STATE(2150), - [sym_slice_pattern] = STATE(2150), - [sym_tuple_struct_pattern] = STATE(2150), - [sym_struct_pattern] = STATE(2150), - [sym_remaining_field_pattern] = STATE(2150), - [sym_mut_pattern] = STATE(2150), - [sym_range_pattern] = STATE(2150), - [sym_ref_pattern] = STATE(2150), - [sym_captured_pattern] = STATE(2150), - [sym_reference_pattern] = STATE(2150), - [sym_or_pattern] = STATE(2150), - [sym__literal_pattern] = STATE(2076), - [sym_negative_literal] = STATE(2074), - [sym_string_literal] = STATE(2074), - [sym_raw_string_literal] = STATE(2074), - [sym_boolean_literal] = STATE(2074), + [sym_bracketed_type] = STATE(3581), + [sym_generic_type] = STATE(3475), + [sym_generic_type_with_turbofish] = STATE(3233), + [sym_macro_invocation] = STATE(2163), + [sym_scoped_identifier] = STATE(2032), + [sym_scoped_type_identifier] = STATE(2893), + [sym_const_block] = STATE(2163), + [sym__pattern] = STATE(2644), + [sym_generic_pattern] = STATE(2163), + [sym_tuple_pattern] = STATE(2163), + [sym_slice_pattern] = STATE(2163), + [sym_tuple_struct_pattern] = STATE(2163), + [sym_struct_pattern] = STATE(2163), + [sym_remaining_field_pattern] = STATE(2163), + [sym_mut_pattern] = STATE(2163), + [sym_range_pattern] = STATE(2163), + [sym_ref_pattern] = STATE(2163), + [sym_captured_pattern] = STATE(2163), + [sym_reference_pattern] = STATE(2163), + [sym_or_pattern] = STATE(2163), + [sym__literal_pattern] = STATE(2098), + [sym_negative_literal] = STATE(2095), + [sym_string_literal] = STATE(2095), + [sym_raw_string_literal] = STATE(2095), + [sym_boolean_literal] = STATE(2095), [sym_line_comment] = STATE(795), [sym_block_comment] = STATE(795), - [sym_identifier] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_RPAREN] = ACTIONS(3088), - [anon_sym_LBRACK] = ACTIONS(1782), - [anon_sym_u8] = ACTIONS(1784), - [anon_sym_i8] = ACTIONS(1784), - [anon_sym_u16] = ACTIONS(1784), - [anon_sym_i16] = ACTIONS(1784), - [anon_sym_u32] = ACTIONS(1784), - [anon_sym_i32] = ACTIONS(1784), - [anon_sym_u64] = ACTIONS(1784), - [anon_sym_i64] = ACTIONS(1784), - [anon_sym_u128] = ACTIONS(1784), - [anon_sym_i128] = ACTIONS(1784), - [anon_sym_isize] = ACTIONS(1784), - [anon_sym_usize] = ACTIONS(1784), - [anon_sym_f32] = ACTIONS(1784), - [anon_sym_f64] = ACTIONS(1784), - [anon_sym_bool] = ACTIONS(1784), - [anon_sym_str] = ACTIONS(1784), - [anon_sym_char] = ACTIONS(1784), - [anon_sym_DASH] = ACTIONS(1241), - [anon_sym_AMP] = ACTIONS(1786), - [anon_sym_PIPE] = ACTIONS(1247), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1451), - [anon_sym_DOT_DOT] = ACTIONS(1251), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1255), - [anon_sym_COLON_COLON] = ACTIONS(1790), - [anon_sym_const] = ACTIONS(1792), - [anon_sym_default] = ACTIONS(1794), - [anon_sym_gen] = ACTIONS(1794), - [anon_sym_union] = ACTIONS(1794), - [anon_sym_ref] = ACTIONS(1281), - [sym_mutable_specifier] = ACTIONS(1457), - [sym_integer_literal] = ACTIONS(1287), - [aux_sym_string_literal_token1] = ACTIONS(1289), - [sym_char_literal] = ACTIONS(1287), - [anon_sym_true] = ACTIONS(1291), - [anon_sym_false] = ACTIONS(1291), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1796), - [sym_super] = ACTIONS(1796), - [sym_crate] = ACTIONS(1796), - [sym_metavariable] = ACTIONS(1798), - [sym__raw_string_literal_start] = ACTIONS(1299), - [sym_float_literal] = ACTIONS(1287), + [sym_identifier] = ACTIONS(2369), + [anon_sym_LPAREN] = ACTIONS(2371), + [anon_sym_RPAREN] = ACTIONS(3098), + [anon_sym_LBRACK] = 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(1246), + [anon_sym_AMP] = ACTIONS(2379), + [anon_sym_PIPE] = ACTIONS(1252), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1428), + [anon_sym_DOT_DOT] = ACTIONS(1256), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1260), + [anon_sym_COMMA] = ACTIONS(3100), + [anon_sym_COLON_COLON] = ACTIONS(2383), + [anon_sym_const] = ACTIONS(2385), + [anon_sym_default] = ACTIONS(2387), + [anon_sym_gen] = ACTIONS(2387), + [anon_sym_union] = ACTIONS(2387), + [anon_sym_ref] = ACTIONS(1286), + [sym_mutable_specifier] = ACTIONS(1434), + [sym_integer_literal] = ACTIONS(1292), + [aux_sym_string_literal_token1] = ACTIONS(1294), + [sym_char_literal] = ACTIONS(1292), + [anon_sym_true] = ACTIONS(1296), + [anon_sym_false] = ACTIONS(1296), + [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(2391), + [sym__raw_string_literal_start] = ACTIONS(1304), + [sym_float_literal] = ACTIONS(1292), }, [STATE(796)] = { - [sym_bracketed_type] = STATE(3448), - [sym_generic_type] = STATE(3450), - [sym_generic_type_with_turbofish] = STATE(3159), - [sym_macro_invocation] = STATE(2150), - [sym_scoped_identifier] = STATE(2016), - [sym_scoped_type_identifier] = STATE(2988), - [sym_const_block] = STATE(2150), - [sym__pattern] = STATE(2649), - [sym_generic_pattern] = STATE(2150), - [sym_tuple_pattern] = STATE(2150), - [sym_slice_pattern] = STATE(2150), - [sym_tuple_struct_pattern] = STATE(2150), - [sym_struct_pattern] = STATE(2150), - [sym_remaining_field_pattern] = STATE(2150), - [sym_mut_pattern] = STATE(2150), - [sym_range_pattern] = STATE(2150), - [sym_ref_pattern] = STATE(2150), - [sym_captured_pattern] = STATE(2150), - [sym_reference_pattern] = STATE(2150), - [sym_or_pattern] = STATE(2150), - [sym__literal_pattern] = STATE(2076), - [sym_negative_literal] = STATE(2074), - [sym_string_literal] = STATE(2074), - [sym_raw_string_literal] = STATE(2074), - [sym_boolean_literal] = STATE(2074), + [sym_attribute_item] = STATE(1377), + [sym_function_modifiers] = STATE(3591), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2373), + [sym_visibility_modifier] = STATE(951), + [sym__type] = STATE(2980), + [sym_bracketed_type] = STATE(3474), + [sym_lifetime] = STATE(3727), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1591), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2022), + [sym_generic_type_with_turbofish] = STATE(3764), + [sym_bounded_type] = STATE(2069), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3334), + [sym_scoped_type_identifier] = STATE(1990), [sym_line_comment] = STATE(796), [sym_block_comment] = STATE(796), - [sym_identifier] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_RPAREN] = ACTIONS(3090), - [anon_sym_LBRACK] = ACTIONS(1782), - [anon_sym_u8] = ACTIONS(1784), - [anon_sym_i8] = ACTIONS(1784), - [anon_sym_u16] = ACTIONS(1784), - [anon_sym_i16] = ACTIONS(1784), - [anon_sym_u32] = ACTIONS(1784), - [anon_sym_i32] = ACTIONS(1784), - [anon_sym_u64] = ACTIONS(1784), - [anon_sym_i64] = ACTIONS(1784), - [anon_sym_u128] = ACTIONS(1784), - [anon_sym_i128] = ACTIONS(1784), - [anon_sym_isize] = ACTIONS(1784), - [anon_sym_usize] = ACTIONS(1784), - [anon_sym_f32] = ACTIONS(1784), - [anon_sym_f64] = ACTIONS(1784), - [anon_sym_bool] = ACTIONS(1784), - [anon_sym_str] = ACTIONS(1784), - [anon_sym_char] = ACTIONS(1784), - [anon_sym_DASH] = ACTIONS(1241), - [anon_sym_AMP] = ACTIONS(1786), - [anon_sym_PIPE] = ACTIONS(1247), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1451), - [anon_sym_DOT_DOT] = ACTIONS(1251), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1255), - [anon_sym_COLON_COLON] = ACTIONS(1790), - [anon_sym_const] = ACTIONS(1792), - [anon_sym_default] = ACTIONS(1794), - [anon_sym_gen] = ACTIONS(1794), - [anon_sym_union] = ACTIONS(1794), - [anon_sym_ref] = ACTIONS(1281), - [sym_mutable_specifier] = ACTIONS(1457), - [sym_integer_literal] = ACTIONS(1287), - [aux_sym_string_literal_token1] = ACTIONS(1289), - [sym_char_literal] = ACTIONS(1287), - [anon_sym_true] = ACTIONS(1291), - [anon_sym_false] = ACTIONS(1291), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1796), - [sym_super] = ACTIONS(1796), - [sym_crate] = ACTIONS(1796), - [sym_metavariable] = ACTIONS(1798), - [sym__raw_string_literal_start] = ACTIONS(1299), - [sym_float_literal] = ACTIONS(1287), + [aux_sym_enum_variant_list_repeat1] = STATE(812), + [aux_sym_function_modifiers_repeat1] = STATE(2244), + [sym_identifier] = ACTIONS(3064), + [anon_sym_LPAREN] = ACTIONS(1602), + [anon_sym_RPAREN] = ACTIONS(3102), + [anon_sym_LBRACK] = ACTIONS(1604), + [anon_sym_STAR] = ACTIONS(1240), + [anon_sym_QMARK] = ACTIONS(1242), + [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_BANG] = ACTIONS(1248), + [anon_sym_AMP] = ACTIONS(1610), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1614), + [anon_sym_POUND] = ACTIONS(3070), + [anon_sym_SQUOTE] = ACTIONS(3072), + [anon_sym_async] = ACTIONS(1270), + [anon_sym_const] = ACTIONS(1270), + [anon_sym_default] = ACTIONS(1618), + [anon_sym_fn] = ACTIONS(1276), + [anon_sym_for] = ACTIONS(1278), + [anon_sym_gen] = ACTIONS(1620), + [anon_sym_impl] = ACTIONS(1282), + [anon_sym_pub] = ACTIONS(3074), + [anon_sym_union] = ACTIONS(1620), + [anon_sym_unsafe] = ACTIONS(1270), + [anon_sym_extern] = ACTIONS(1284), + [anon_sym_safe] = ACTIONS(1270), + [anon_sym_dyn] = ACTIONS(1288), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1624), + [sym_super] = ACTIONS(1624), + [sym_crate] = ACTIONS(3076), + [sym_metavariable] = ACTIONS(1626), }, [STATE(797)] = { - [sym_bracketed_type] = STATE(3448), - [sym_generic_type] = STATE(3450), - [sym_generic_type_with_turbofish] = STATE(3159), - [sym_macro_invocation] = STATE(2150), - [sym_scoped_identifier] = STATE(2016), - [sym_scoped_type_identifier] = STATE(2988), - [sym_const_block] = STATE(2150), - [sym__pattern] = STATE(2649), - [sym_generic_pattern] = STATE(2150), - [sym_tuple_pattern] = STATE(2150), - [sym_slice_pattern] = STATE(2150), - [sym_tuple_struct_pattern] = STATE(2150), - [sym_struct_pattern] = STATE(2150), - [sym_remaining_field_pattern] = STATE(2150), - [sym_mut_pattern] = STATE(2150), - [sym_range_pattern] = STATE(2150), - [sym_ref_pattern] = STATE(2150), - [sym_captured_pattern] = STATE(2150), - [sym_reference_pattern] = STATE(2150), - [sym_or_pattern] = STATE(2150), - [sym__literal_pattern] = STATE(2076), - [sym_negative_literal] = STATE(2074), - [sym_string_literal] = STATE(2074), - [sym_raw_string_literal] = STATE(2074), - [sym_boolean_literal] = STATE(2074), + [sym_bracketed_type] = STATE(3581), + [sym_generic_type] = STATE(3475), + [sym_generic_type_with_turbofish] = STATE(3233), + [sym_macro_invocation] = STATE(2163), + [sym_scoped_identifier] = STATE(2032), + [sym_scoped_type_identifier] = STATE(2893), + [sym_const_block] = STATE(2163), + [sym__pattern] = STATE(2808), + [sym_generic_pattern] = STATE(2163), + [sym_tuple_pattern] = STATE(2163), + [sym_slice_pattern] = STATE(2163), + [sym_tuple_struct_pattern] = STATE(2163), + [sym_struct_pattern] = STATE(2163), + [sym_remaining_field_pattern] = STATE(2163), + [sym_mut_pattern] = STATE(2163), + [sym_range_pattern] = STATE(2163), + [sym_ref_pattern] = STATE(2163), + [sym_captured_pattern] = STATE(2163), + [sym_reference_pattern] = STATE(2163), + [sym_or_pattern] = STATE(2163), + [sym__literal_pattern] = STATE(2098), + [sym_negative_literal] = STATE(2095), + [sym_string_literal] = STATE(2095), + [sym_raw_string_literal] = STATE(2095), + [sym_boolean_literal] = STATE(2095), [sym_line_comment] = STATE(797), [sym_block_comment] = STATE(797), - [sym_identifier] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_LBRACK] = ACTIONS(1782), - [anon_sym_RBRACK] = ACTIONS(3092), - [anon_sym_u8] = ACTIONS(1784), - [anon_sym_i8] = ACTIONS(1784), - [anon_sym_u16] = ACTIONS(1784), - [anon_sym_i16] = ACTIONS(1784), - [anon_sym_u32] = ACTIONS(1784), - [anon_sym_i32] = ACTIONS(1784), - [anon_sym_u64] = ACTIONS(1784), - [anon_sym_i64] = ACTIONS(1784), - [anon_sym_u128] = ACTIONS(1784), - [anon_sym_i128] = ACTIONS(1784), - [anon_sym_isize] = ACTIONS(1784), - [anon_sym_usize] = ACTIONS(1784), - [anon_sym_f32] = ACTIONS(1784), - [anon_sym_f64] = ACTIONS(1784), - [anon_sym_bool] = ACTIONS(1784), - [anon_sym_str] = ACTIONS(1784), - [anon_sym_char] = ACTIONS(1784), - [anon_sym_DASH] = ACTIONS(1241), - [anon_sym_AMP] = ACTIONS(1786), - [anon_sym_PIPE] = ACTIONS(1247), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1451), - [anon_sym_DOT_DOT] = ACTIONS(1251), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1255), - [anon_sym_COLON_COLON] = ACTIONS(1790), - [anon_sym_const] = ACTIONS(1792), - [anon_sym_default] = ACTIONS(1794), - [anon_sym_gen] = ACTIONS(1794), - [anon_sym_union] = ACTIONS(1794), - [anon_sym_ref] = ACTIONS(1281), - [sym_mutable_specifier] = ACTIONS(1457), - [sym_integer_literal] = ACTIONS(1287), - [aux_sym_string_literal_token1] = ACTIONS(1289), - [sym_char_literal] = ACTIONS(1287), - [anon_sym_true] = ACTIONS(1291), - [anon_sym_false] = ACTIONS(1291), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1796), - [sym_super] = ACTIONS(1796), - [sym_crate] = ACTIONS(1796), - [sym_metavariable] = ACTIONS(1798), - [sym__raw_string_literal_start] = ACTIONS(1299), - [sym_float_literal] = ACTIONS(1287), + [sym_identifier] = ACTIONS(2369), + [anon_sym_LPAREN] = ACTIONS(2371), + [anon_sym_LBRACK] = ACTIONS(2375), + [anon_sym_RBRACK] = ACTIONS(3104), + [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(1246), + [anon_sym_AMP] = ACTIONS(2379), + [anon_sym_PIPE] = ACTIONS(1252), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1428), + [anon_sym_DOT_DOT] = ACTIONS(1256), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1260), + [anon_sym_COMMA] = ACTIONS(3106), + [anon_sym_COLON_COLON] = ACTIONS(2383), + [anon_sym_const] = ACTIONS(2385), + [anon_sym_default] = ACTIONS(2387), + [anon_sym_gen] = ACTIONS(2387), + [anon_sym_union] = ACTIONS(2387), + [anon_sym_ref] = ACTIONS(1286), + [sym_mutable_specifier] = ACTIONS(1434), + [sym_integer_literal] = ACTIONS(1292), + [aux_sym_string_literal_token1] = ACTIONS(1294), + [sym_char_literal] = ACTIONS(1292), + [anon_sym_true] = ACTIONS(1296), + [anon_sym_false] = ACTIONS(1296), + [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(2391), + [sym__raw_string_literal_start] = ACTIONS(1304), + [sym_float_literal] = ACTIONS(1292), }, [STATE(798)] = { - [sym_bracketed_type] = STATE(3448), - [sym_generic_type] = STATE(3450), - [sym_generic_type_with_turbofish] = STATE(3159), - [sym_macro_invocation] = STATE(2150), - [sym_scoped_identifier] = STATE(2016), - [sym_scoped_type_identifier] = STATE(2988), - [sym_const_block] = STATE(2150), - [sym__pattern] = STATE(2649), - [sym_generic_pattern] = STATE(2150), - [sym_tuple_pattern] = STATE(2150), - [sym_slice_pattern] = STATE(2150), - [sym_tuple_struct_pattern] = STATE(2150), - [sym_struct_pattern] = STATE(2150), - [sym_remaining_field_pattern] = STATE(2150), - [sym_mut_pattern] = STATE(2150), - [sym_range_pattern] = STATE(2150), - [sym_ref_pattern] = STATE(2150), - [sym_captured_pattern] = STATE(2150), - [sym_reference_pattern] = STATE(2150), - [sym_or_pattern] = STATE(2150), - [sym__literal_pattern] = STATE(2076), - [sym_negative_literal] = STATE(2074), - [sym_string_literal] = STATE(2074), - [sym_raw_string_literal] = STATE(2074), - [sym_boolean_literal] = STATE(2074), + [sym_attribute_item] = STATE(1377), + [sym_function_modifiers] = STATE(3591), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2373), + [sym_visibility_modifier] = STATE(951), + [sym__type] = STATE(2980), + [sym_bracketed_type] = STATE(3474), + [sym_lifetime] = STATE(3727), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1591), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2022), + [sym_generic_type_with_turbofish] = STATE(3764), + [sym_bounded_type] = STATE(2069), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3334), + [sym_scoped_type_identifier] = STATE(1990), [sym_line_comment] = STATE(798), [sym_block_comment] = STATE(798), - [sym_identifier] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_LBRACK] = ACTIONS(1782), - [anon_sym_RBRACK] = ACTIONS(3094), - [anon_sym_u8] = ACTIONS(1784), - [anon_sym_i8] = ACTIONS(1784), - [anon_sym_u16] = ACTIONS(1784), - [anon_sym_i16] = ACTIONS(1784), - [anon_sym_u32] = ACTIONS(1784), - [anon_sym_i32] = ACTIONS(1784), - [anon_sym_u64] = ACTIONS(1784), - [anon_sym_i64] = ACTIONS(1784), - [anon_sym_u128] = ACTIONS(1784), - [anon_sym_i128] = ACTIONS(1784), - [anon_sym_isize] = ACTIONS(1784), - [anon_sym_usize] = ACTIONS(1784), - [anon_sym_f32] = ACTIONS(1784), - [anon_sym_f64] = ACTIONS(1784), - [anon_sym_bool] = ACTIONS(1784), - [anon_sym_str] = ACTIONS(1784), - [anon_sym_char] = ACTIONS(1784), - [anon_sym_DASH] = ACTIONS(1241), - [anon_sym_AMP] = ACTIONS(1786), - [anon_sym_PIPE] = ACTIONS(1247), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1451), - [anon_sym_DOT_DOT] = ACTIONS(1251), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1255), - [anon_sym_COLON_COLON] = ACTIONS(1790), - [anon_sym_const] = ACTIONS(1792), - [anon_sym_default] = ACTIONS(1794), - [anon_sym_gen] = ACTIONS(1794), - [anon_sym_union] = ACTIONS(1794), - [anon_sym_ref] = ACTIONS(1281), - [sym_mutable_specifier] = ACTIONS(1457), - [sym_integer_literal] = ACTIONS(1287), - [aux_sym_string_literal_token1] = ACTIONS(1289), - [sym_char_literal] = ACTIONS(1287), - [anon_sym_true] = ACTIONS(1291), - [anon_sym_false] = ACTIONS(1291), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1796), - [sym_super] = ACTIONS(1796), - [sym_crate] = ACTIONS(1796), - [sym_metavariable] = ACTIONS(1798), - [sym__raw_string_literal_start] = ACTIONS(1299), - [sym_float_literal] = ACTIONS(1287), + [aux_sym_enum_variant_list_repeat1] = STATE(812), + [aux_sym_function_modifiers_repeat1] = STATE(2244), + [sym_identifier] = ACTIONS(3064), + [anon_sym_LPAREN] = ACTIONS(1602), + [anon_sym_RPAREN] = ACTIONS(3108), + [anon_sym_LBRACK] = ACTIONS(1604), + [anon_sym_STAR] = ACTIONS(1240), + [anon_sym_QMARK] = ACTIONS(1242), + [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_BANG] = ACTIONS(1248), + [anon_sym_AMP] = ACTIONS(1610), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1614), + [anon_sym_POUND] = ACTIONS(3070), + [anon_sym_SQUOTE] = ACTIONS(3072), + [anon_sym_async] = ACTIONS(1270), + [anon_sym_const] = ACTIONS(1270), + [anon_sym_default] = ACTIONS(1618), + [anon_sym_fn] = ACTIONS(1276), + [anon_sym_for] = ACTIONS(1278), + [anon_sym_gen] = ACTIONS(1620), + [anon_sym_impl] = ACTIONS(1282), + [anon_sym_pub] = ACTIONS(3074), + [anon_sym_union] = ACTIONS(1620), + [anon_sym_unsafe] = ACTIONS(1270), + [anon_sym_extern] = ACTIONS(1284), + [anon_sym_safe] = ACTIONS(1270), + [anon_sym_dyn] = ACTIONS(1288), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1624), + [sym_super] = ACTIONS(1624), + [sym_crate] = ACTIONS(3076), + [sym_metavariable] = ACTIONS(1626), }, [STATE(799)] = { - [sym_bracketed_type] = STATE(3448), - [sym_generic_type] = STATE(3450), - [sym_generic_type_with_turbofish] = STATE(3159), - [sym_macro_invocation] = STATE(2150), - [sym_scoped_identifier] = STATE(2016), - [sym_scoped_type_identifier] = STATE(2988), - [sym_const_block] = STATE(2150), - [sym__pattern] = STATE(2649), - [sym_generic_pattern] = STATE(2150), - [sym_tuple_pattern] = STATE(2150), - [sym_slice_pattern] = STATE(2150), - [sym_tuple_struct_pattern] = STATE(2150), - [sym_struct_pattern] = STATE(2150), - [sym_remaining_field_pattern] = STATE(2150), - [sym_mut_pattern] = STATE(2150), - [sym_range_pattern] = STATE(2150), - [sym_ref_pattern] = STATE(2150), - [sym_captured_pattern] = STATE(2150), - [sym_reference_pattern] = STATE(2150), - [sym_or_pattern] = STATE(2150), - [sym__literal_pattern] = STATE(2076), - [sym_negative_literal] = STATE(2074), - [sym_string_literal] = STATE(2074), - [sym_raw_string_literal] = STATE(2074), - [sym_boolean_literal] = STATE(2074), + [sym_attribute_item] = STATE(1377), + [sym_function_modifiers] = STATE(3591), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2373), + [sym_visibility_modifier] = STATE(951), + [sym__type] = STATE(2980), + [sym_bracketed_type] = STATE(3474), + [sym_lifetime] = STATE(3727), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1591), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2022), + [sym_generic_type_with_turbofish] = STATE(3764), + [sym_bounded_type] = STATE(2069), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3334), + [sym_scoped_type_identifier] = STATE(1990), [sym_line_comment] = STATE(799), [sym_block_comment] = STATE(799), - [sym_identifier] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_LBRACK] = ACTIONS(1782), - [anon_sym_RBRACK] = ACTIONS(3096), - [anon_sym_u8] = ACTIONS(1784), - [anon_sym_i8] = ACTIONS(1784), - [anon_sym_u16] = ACTIONS(1784), - [anon_sym_i16] = ACTIONS(1784), - [anon_sym_u32] = ACTIONS(1784), - [anon_sym_i32] = ACTIONS(1784), - [anon_sym_u64] = ACTIONS(1784), - [anon_sym_i64] = ACTIONS(1784), - [anon_sym_u128] = ACTIONS(1784), - [anon_sym_i128] = ACTIONS(1784), - [anon_sym_isize] = ACTIONS(1784), - [anon_sym_usize] = ACTIONS(1784), - [anon_sym_f32] = ACTIONS(1784), - [anon_sym_f64] = ACTIONS(1784), - [anon_sym_bool] = ACTIONS(1784), - [anon_sym_str] = ACTIONS(1784), - [anon_sym_char] = ACTIONS(1784), - [anon_sym_DASH] = ACTIONS(1241), - [anon_sym_AMP] = ACTIONS(1786), - [anon_sym_PIPE] = ACTIONS(1247), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1451), - [anon_sym_DOT_DOT] = ACTIONS(1251), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1255), - [anon_sym_COLON_COLON] = ACTIONS(1790), - [anon_sym_const] = ACTIONS(1792), - [anon_sym_default] = ACTIONS(1794), - [anon_sym_gen] = ACTIONS(1794), - [anon_sym_union] = ACTIONS(1794), - [anon_sym_ref] = ACTIONS(1281), - [sym_mutable_specifier] = ACTIONS(1457), - [sym_integer_literal] = ACTIONS(1287), - [aux_sym_string_literal_token1] = ACTIONS(1289), - [sym_char_literal] = ACTIONS(1287), - [anon_sym_true] = ACTIONS(1291), - [anon_sym_false] = ACTIONS(1291), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1796), - [sym_super] = ACTIONS(1796), - [sym_crate] = ACTIONS(1796), - [sym_metavariable] = ACTIONS(1798), - [sym__raw_string_literal_start] = ACTIONS(1299), - [sym_float_literal] = ACTIONS(1287), + [aux_sym_enum_variant_list_repeat1] = STATE(812), + [aux_sym_function_modifiers_repeat1] = STATE(2244), + [sym_identifier] = ACTIONS(3064), + [anon_sym_LPAREN] = ACTIONS(1602), + [anon_sym_RPAREN] = ACTIONS(3110), + [anon_sym_LBRACK] = ACTIONS(1604), + [anon_sym_STAR] = ACTIONS(1240), + [anon_sym_QMARK] = ACTIONS(1242), + [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_BANG] = ACTIONS(1248), + [anon_sym_AMP] = ACTIONS(1610), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1614), + [anon_sym_POUND] = ACTIONS(3070), + [anon_sym_SQUOTE] = ACTIONS(3072), + [anon_sym_async] = ACTIONS(1270), + [anon_sym_const] = ACTIONS(1270), + [anon_sym_default] = ACTIONS(1618), + [anon_sym_fn] = ACTIONS(1276), + [anon_sym_for] = ACTIONS(1278), + [anon_sym_gen] = ACTIONS(1620), + [anon_sym_impl] = ACTIONS(1282), + [anon_sym_pub] = ACTIONS(3074), + [anon_sym_union] = ACTIONS(1620), + [anon_sym_unsafe] = ACTIONS(1270), + [anon_sym_extern] = ACTIONS(1284), + [anon_sym_safe] = ACTIONS(1270), + [anon_sym_dyn] = ACTIONS(1288), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1624), + [sym_super] = ACTIONS(1624), + [sym_crate] = ACTIONS(3076), + [sym_metavariable] = ACTIONS(1626), }, [STATE(800)] = { - [sym_bracketed_type] = STATE(3448), - [sym_generic_type] = STATE(3450), - [sym_generic_type_with_turbofish] = STATE(3159), - [sym_macro_invocation] = STATE(2150), - [sym_scoped_identifier] = STATE(2016), - [sym_scoped_type_identifier] = STATE(2988), - [sym_const_block] = STATE(2150), - [sym__pattern] = STATE(2649), - [sym_generic_pattern] = STATE(2150), - [sym_tuple_pattern] = STATE(2150), - [sym_slice_pattern] = STATE(2150), - [sym_tuple_struct_pattern] = STATE(2150), - [sym_struct_pattern] = STATE(2150), - [sym_remaining_field_pattern] = STATE(2150), - [sym_mut_pattern] = STATE(2150), - [sym_range_pattern] = STATE(2150), - [sym_ref_pattern] = STATE(2150), - [sym_captured_pattern] = STATE(2150), - [sym_reference_pattern] = STATE(2150), - [sym_or_pattern] = STATE(2150), - [sym__literal_pattern] = STATE(2076), - [sym_negative_literal] = STATE(2074), - [sym_string_literal] = STATE(2074), - [sym_raw_string_literal] = STATE(2074), - [sym_boolean_literal] = STATE(2074), + [sym_attribute_item] = STATE(1377), + [sym_function_modifiers] = STATE(3591), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2373), + [sym_visibility_modifier] = STATE(951), + [sym__type] = STATE(2980), + [sym_bracketed_type] = STATE(3474), + [sym_lifetime] = STATE(3727), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1591), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2022), + [sym_generic_type_with_turbofish] = STATE(3764), + [sym_bounded_type] = STATE(2069), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3334), + [sym_scoped_type_identifier] = STATE(1990), [sym_line_comment] = STATE(800), [sym_block_comment] = STATE(800), - [sym_identifier] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_RPAREN] = ACTIONS(3098), - [anon_sym_LBRACK] = ACTIONS(1782), - [anon_sym_u8] = ACTIONS(1784), - [anon_sym_i8] = ACTIONS(1784), - [anon_sym_u16] = ACTIONS(1784), - [anon_sym_i16] = ACTIONS(1784), - [anon_sym_u32] = ACTIONS(1784), - [anon_sym_i32] = ACTIONS(1784), - [anon_sym_u64] = ACTIONS(1784), - [anon_sym_i64] = ACTIONS(1784), - [anon_sym_u128] = ACTIONS(1784), - [anon_sym_i128] = ACTIONS(1784), - [anon_sym_isize] = ACTIONS(1784), - [anon_sym_usize] = ACTIONS(1784), - [anon_sym_f32] = ACTIONS(1784), - [anon_sym_f64] = ACTIONS(1784), - [anon_sym_bool] = ACTIONS(1784), - [anon_sym_str] = ACTIONS(1784), - [anon_sym_char] = ACTIONS(1784), - [anon_sym_DASH] = ACTIONS(1241), - [anon_sym_AMP] = ACTIONS(1786), - [anon_sym_PIPE] = ACTIONS(1247), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1451), - [anon_sym_DOT_DOT] = ACTIONS(1251), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1255), - [anon_sym_COLON_COLON] = ACTIONS(1790), - [anon_sym_const] = ACTIONS(1792), - [anon_sym_default] = ACTIONS(1794), - [anon_sym_gen] = ACTIONS(1794), - [anon_sym_union] = ACTIONS(1794), - [anon_sym_ref] = ACTIONS(1281), - [sym_mutable_specifier] = ACTIONS(1457), - [sym_integer_literal] = ACTIONS(1287), - [aux_sym_string_literal_token1] = ACTIONS(1289), - [sym_char_literal] = ACTIONS(1287), - [anon_sym_true] = ACTIONS(1291), - [anon_sym_false] = ACTIONS(1291), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1796), - [sym_super] = ACTIONS(1796), - [sym_crate] = ACTIONS(1796), - [sym_metavariable] = ACTIONS(1798), - [sym__raw_string_literal_start] = ACTIONS(1299), - [sym_float_literal] = ACTIONS(1287), + [aux_sym_enum_variant_list_repeat1] = STATE(812), + [aux_sym_function_modifiers_repeat1] = STATE(2244), + [sym_identifier] = ACTIONS(3064), + [anon_sym_LPAREN] = ACTIONS(1602), + [anon_sym_RPAREN] = ACTIONS(3112), + [anon_sym_LBRACK] = ACTIONS(1604), + [anon_sym_STAR] = ACTIONS(1240), + [anon_sym_QMARK] = ACTIONS(1242), + [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_BANG] = ACTIONS(1248), + [anon_sym_AMP] = ACTIONS(1610), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1614), + [anon_sym_POUND] = ACTIONS(3070), + [anon_sym_SQUOTE] = ACTIONS(3072), + [anon_sym_async] = ACTIONS(1270), + [anon_sym_const] = ACTIONS(1270), + [anon_sym_default] = ACTIONS(1618), + [anon_sym_fn] = ACTIONS(1276), + [anon_sym_for] = ACTIONS(1278), + [anon_sym_gen] = ACTIONS(1620), + [anon_sym_impl] = ACTIONS(1282), + [anon_sym_pub] = ACTIONS(3074), + [anon_sym_union] = ACTIONS(1620), + [anon_sym_unsafe] = ACTIONS(1270), + [anon_sym_extern] = ACTIONS(1284), + [anon_sym_safe] = ACTIONS(1270), + [anon_sym_dyn] = ACTIONS(1288), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1624), + [sym_super] = ACTIONS(1624), + [sym_crate] = ACTIONS(3076), + [sym_metavariable] = ACTIONS(1626), }, [STATE(801)] = { - [sym_bracketed_type] = STATE(3448), - [sym_generic_type] = STATE(3450), - [sym_generic_type_with_turbofish] = STATE(3159), - [sym_macro_invocation] = STATE(2150), - [sym_scoped_identifier] = STATE(2016), - [sym_scoped_type_identifier] = STATE(2988), - [sym_const_block] = STATE(2150), - [sym__pattern] = STATE(2649), - [sym_generic_pattern] = STATE(2150), - [sym_tuple_pattern] = STATE(2150), - [sym_slice_pattern] = STATE(2150), - [sym_tuple_struct_pattern] = STATE(2150), - [sym_struct_pattern] = STATE(2150), - [sym_remaining_field_pattern] = STATE(2150), - [sym_mut_pattern] = STATE(2150), - [sym_range_pattern] = STATE(2150), - [sym_ref_pattern] = STATE(2150), - [sym_captured_pattern] = STATE(2150), - [sym_reference_pattern] = STATE(2150), - [sym_or_pattern] = STATE(2150), - [sym__literal_pattern] = STATE(2076), - [sym_negative_literal] = STATE(2074), - [sym_string_literal] = STATE(2074), - [sym_raw_string_literal] = STATE(2074), - [sym_boolean_literal] = STATE(2074), + [sym_attribute_item] = STATE(1377), + [sym_function_modifiers] = STATE(3591), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2373), + [sym_visibility_modifier] = STATE(951), + [sym__type] = STATE(2980), + [sym_bracketed_type] = STATE(3474), + [sym_lifetime] = STATE(3727), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1591), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2022), + [sym_generic_type_with_turbofish] = STATE(3764), + [sym_bounded_type] = STATE(2069), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3334), + [sym_scoped_type_identifier] = STATE(1990), [sym_line_comment] = STATE(801), [sym_block_comment] = STATE(801), - [sym_identifier] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_RPAREN] = ACTIONS(3100), - [anon_sym_LBRACK] = ACTIONS(1782), - [anon_sym_u8] = ACTIONS(1784), - [anon_sym_i8] = ACTIONS(1784), - [anon_sym_u16] = ACTIONS(1784), - [anon_sym_i16] = ACTIONS(1784), - [anon_sym_u32] = ACTIONS(1784), - [anon_sym_i32] = ACTIONS(1784), - [anon_sym_u64] = ACTIONS(1784), - [anon_sym_i64] = ACTIONS(1784), - [anon_sym_u128] = ACTIONS(1784), - [anon_sym_i128] = ACTIONS(1784), - [anon_sym_isize] = ACTIONS(1784), - [anon_sym_usize] = ACTIONS(1784), - [anon_sym_f32] = ACTIONS(1784), - [anon_sym_f64] = ACTIONS(1784), - [anon_sym_bool] = ACTIONS(1784), - [anon_sym_str] = ACTIONS(1784), - [anon_sym_char] = ACTIONS(1784), - [anon_sym_DASH] = ACTIONS(1241), - [anon_sym_AMP] = ACTIONS(1786), - [anon_sym_PIPE] = ACTIONS(1247), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1451), - [anon_sym_DOT_DOT] = ACTIONS(1251), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1255), - [anon_sym_COLON_COLON] = ACTIONS(1790), - [anon_sym_const] = ACTIONS(1792), - [anon_sym_default] = ACTIONS(1794), - [anon_sym_gen] = ACTIONS(1794), - [anon_sym_union] = ACTIONS(1794), - [anon_sym_ref] = ACTIONS(1281), - [sym_mutable_specifier] = ACTIONS(1457), - [sym_integer_literal] = ACTIONS(1287), - [aux_sym_string_literal_token1] = ACTIONS(1289), - [sym_char_literal] = ACTIONS(1287), - [anon_sym_true] = ACTIONS(1291), - [anon_sym_false] = ACTIONS(1291), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1796), - [sym_super] = ACTIONS(1796), - [sym_crate] = ACTIONS(1796), - [sym_metavariable] = ACTIONS(1798), - [sym__raw_string_literal_start] = ACTIONS(1299), - [sym_float_literal] = ACTIONS(1287), + [aux_sym_enum_variant_list_repeat1] = STATE(812), + [aux_sym_function_modifiers_repeat1] = STATE(2244), + [sym_identifier] = ACTIONS(3064), + [anon_sym_LPAREN] = ACTIONS(1602), + [anon_sym_RPAREN] = ACTIONS(3114), + [anon_sym_LBRACK] = ACTIONS(1604), + [anon_sym_STAR] = ACTIONS(1240), + [anon_sym_QMARK] = ACTIONS(1242), + [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_BANG] = ACTIONS(1248), + [anon_sym_AMP] = ACTIONS(1610), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1614), + [anon_sym_POUND] = ACTIONS(3070), + [anon_sym_SQUOTE] = ACTIONS(3072), + [anon_sym_async] = ACTIONS(1270), + [anon_sym_const] = ACTIONS(1270), + [anon_sym_default] = ACTIONS(1618), + [anon_sym_fn] = ACTIONS(1276), + [anon_sym_for] = ACTIONS(1278), + [anon_sym_gen] = ACTIONS(1620), + [anon_sym_impl] = ACTIONS(1282), + [anon_sym_pub] = ACTIONS(3074), + [anon_sym_union] = ACTIONS(1620), + [anon_sym_unsafe] = ACTIONS(1270), + [anon_sym_extern] = ACTIONS(1284), + [anon_sym_safe] = ACTIONS(1270), + [anon_sym_dyn] = ACTIONS(1288), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1624), + [sym_super] = ACTIONS(1624), + [sym_crate] = ACTIONS(3076), + [sym_metavariable] = ACTIONS(1626), }, [STATE(802)] = { - [sym_parameter] = STATE(2974), - [sym_bracketed_type] = STATE(3448), - [sym_generic_type] = STATE(3450), - [sym_generic_type_with_turbofish] = STATE(3159), - [sym_macro_invocation] = STATE(2150), - [sym_scoped_identifier] = STATE(2016), - [sym_scoped_type_identifier] = STATE(2988), - [sym_const_block] = STATE(2150), - [sym__pattern] = STATE(2490), - [sym_generic_pattern] = STATE(2150), - [sym_tuple_pattern] = STATE(2150), - [sym_slice_pattern] = STATE(2150), - [sym_tuple_struct_pattern] = STATE(2150), - [sym_struct_pattern] = STATE(2150), - [sym_remaining_field_pattern] = STATE(2150), - [sym_mut_pattern] = STATE(2150), - [sym_range_pattern] = STATE(2150), - [sym_ref_pattern] = STATE(2150), - [sym_captured_pattern] = STATE(2150), - [sym_reference_pattern] = STATE(2150), - [sym_or_pattern] = STATE(2150), - [sym__literal_pattern] = STATE(2076), - [sym_negative_literal] = STATE(2074), - [sym_string_literal] = STATE(2074), - [sym_raw_string_literal] = STATE(2074), - [sym_boolean_literal] = STATE(2074), + [sym_attribute_item] = STATE(1377), + [sym_function_modifiers] = STATE(3591), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2373), + [sym_visibility_modifier] = STATE(951), + [sym__type] = STATE(2980), + [sym_bracketed_type] = STATE(3474), + [sym_lifetime] = STATE(3727), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1591), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2022), + [sym_generic_type_with_turbofish] = STATE(3764), + [sym_bounded_type] = STATE(2069), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3334), + [sym_scoped_type_identifier] = STATE(1990), [sym_line_comment] = STATE(802), [sym_block_comment] = STATE(802), - [sym_identifier] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_LBRACK] = ACTIONS(1782), - [anon_sym_u8] = ACTIONS(1784), - [anon_sym_i8] = ACTIONS(1784), - [anon_sym_u16] = ACTIONS(1784), - [anon_sym_i16] = ACTIONS(1784), - [anon_sym_u32] = ACTIONS(1784), - [anon_sym_i32] = ACTIONS(1784), - [anon_sym_u64] = ACTIONS(1784), - [anon_sym_i64] = ACTIONS(1784), - [anon_sym_u128] = ACTIONS(1784), - [anon_sym_i128] = ACTIONS(1784), - [anon_sym_isize] = ACTIONS(1784), - [anon_sym_usize] = ACTIONS(1784), - [anon_sym_f32] = ACTIONS(1784), - [anon_sym_f64] = ACTIONS(1784), - [anon_sym_bool] = ACTIONS(1784), - [anon_sym_str] = ACTIONS(1784), - [anon_sym_char] = ACTIONS(1784), - [anon_sym_DASH] = ACTIONS(1241), - [anon_sym_AMP] = ACTIONS(1786), - [anon_sym_PIPE] = ACTIONS(3102), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1451), - [anon_sym_DOT_DOT] = ACTIONS(1251), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1255), - [anon_sym_COLON_COLON] = ACTIONS(1790), - [anon_sym_const] = ACTIONS(1792), - [anon_sym_default] = ACTIONS(1794), - [anon_sym_gen] = ACTIONS(1794), - [anon_sym_union] = ACTIONS(1794), - [anon_sym_ref] = ACTIONS(1281), - [sym_mutable_specifier] = ACTIONS(3104), - [sym_integer_literal] = ACTIONS(1287), - [aux_sym_string_literal_token1] = ACTIONS(1289), - [sym_char_literal] = ACTIONS(1287), - [anon_sym_true] = ACTIONS(1291), - [anon_sym_false] = ACTIONS(1291), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3106), - [sym_super] = ACTIONS(1796), - [sym_crate] = ACTIONS(1796), - [sym_metavariable] = ACTIONS(1798), - [sym__raw_string_literal_start] = ACTIONS(1299), - [sym_float_literal] = ACTIONS(1287), + [aux_sym_enum_variant_list_repeat1] = STATE(812), + [aux_sym_function_modifiers_repeat1] = STATE(2244), + [sym_identifier] = ACTIONS(3064), + [anon_sym_LPAREN] = ACTIONS(1602), + [anon_sym_RPAREN] = ACTIONS(3116), + [anon_sym_LBRACK] = ACTIONS(1604), + [anon_sym_STAR] = ACTIONS(1240), + [anon_sym_QMARK] = ACTIONS(1242), + [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_BANG] = ACTIONS(1248), + [anon_sym_AMP] = ACTIONS(1610), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1614), + [anon_sym_POUND] = ACTIONS(3070), + [anon_sym_SQUOTE] = ACTIONS(3072), + [anon_sym_async] = ACTIONS(1270), + [anon_sym_const] = ACTIONS(1270), + [anon_sym_default] = ACTIONS(1618), + [anon_sym_fn] = ACTIONS(1276), + [anon_sym_for] = ACTIONS(1278), + [anon_sym_gen] = ACTIONS(1620), + [anon_sym_impl] = ACTIONS(1282), + [anon_sym_pub] = ACTIONS(3074), + [anon_sym_union] = ACTIONS(1620), + [anon_sym_unsafe] = ACTIONS(1270), + [anon_sym_extern] = ACTIONS(1284), + [anon_sym_safe] = ACTIONS(1270), + [anon_sym_dyn] = ACTIONS(1288), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1624), + [sym_super] = ACTIONS(1624), + [sym_crate] = ACTIONS(3076), + [sym_metavariable] = ACTIONS(1626), }, [STATE(803)] = { - [sym_bracketed_type] = STATE(3448), - [sym_generic_type] = STATE(3450), - [sym_generic_type_with_turbofish] = STATE(3159), - [sym_macro_invocation] = STATE(2150), - [sym_scoped_identifier] = STATE(2016), - [sym_scoped_type_identifier] = STATE(2988), - [sym_const_block] = STATE(2150), - [sym__pattern] = STATE(2719), - [sym_generic_pattern] = STATE(2150), - [sym_tuple_pattern] = STATE(2150), - [sym_slice_pattern] = STATE(2150), - [sym_tuple_struct_pattern] = STATE(2150), - [sym_struct_pattern] = STATE(2150), - [sym_remaining_field_pattern] = STATE(2150), - [sym_mut_pattern] = STATE(2150), - [sym_range_pattern] = STATE(2150), - [sym_ref_pattern] = STATE(2150), - [sym_captured_pattern] = STATE(2150), - [sym_reference_pattern] = STATE(2150), - [sym_or_pattern] = STATE(2150), - [sym__literal_pattern] = STATE(2076), - [sym_negative_literal] = STATE(2074), - [sym_string_literal] = STATE(2074), - [sym_raw_string_literal] = STATE(2074), - [sym_boolean_literal] = STATE(2074), + [sym_bracketed_type] = STATE(3581), + [sym_generic_type] = STATE(3475), + [sym_generic_type_with_turbofish] = STATE(3233), + [sym_macro_invocation] = STATE(2163), + [sym_scoped_identifier] = STATE(2032), + [sym_scoped_type_identifier] = STATE(2893), + [sym_const_block] = STATE(2163), + [sym__pattern] = STATE(2780), + [sym_generic_pattern] = STATE(2163), + [sym_tuple_pattern] = STATE(2163), + [sym_slice_pattern] = STATE(2163), + [sym_tuple_struct_pattern] = STATE(2163), + [sym_struct_pattern] = STATE(2163), + [sym_remaining_field_pattern] = STATE(2163), + [sym_mut_pattern] = STATE(2163), + [sym_range_pattern] = STATE(2163), + [sym_ref_pattern] = STATE(2163), + [sym_captured_pattern] = STATE(2163), + [sym_reference_pattern] = STATE(2163), + [sym_or_pattern] = STATE(2163), + [sym__literal_pattern] = STATE(2098), + [sym_negative_literal] = STATE(2095), + [sym_string_literal] = STATE(2095), + [sym_raw_string_literal] = STATE(2095), + [sym_boolean_literal] = STATE(2095), [sym_line_comment] = STATE(803), [sym_block_comment] = STATE(803), - [sym_identifier] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_LBRACK] = ACTIONS(1782), - [anon_sym_u8] = ACTIONS(1784), - [anon_sym_i8] = ACTIONS(1784), - [anon_sym_u16] = ACTIONS(1784), - [anon_sym_i16] = ACTIONS(1784), - [anon_sym_u32] = ACTIONS(1784), - [anon_sym_i32] = ACTIONS(1784), - [anon_sym_u64] = ACTIONS(1784), - [anon_sym_i64] = ACTIONS(1784), - [anon_sym_u128] = ACTIONS(1784), - [anon_sym_i128] = ACTIONS(1784), - [anon_sym_isize] = ACTIONS(1784), - [anon_sym_usize] = ACTIONS(1784), - [anon_sym_f32] = ACTIONS(1784), - [anon_sym_f64] = ACTIONS(1784), - [anon_sym_bool] = ACTIONS(1784), - [anon_sym_str] = ACTIONS(1784), - [anon_sym_char] = ACTIONS(1784), - [anon_sym_DASH] = ACTIONS(1241), - [anon_sym_AMP] = ACTIONS(1786), - [anon_sym_PIPE] = ACTIONS(1247), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1451), - [anon_sym_DOT_DOT] = ACTIONS(1251), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3108), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1255), - [anon_sym_COLON_COLON] = ACTIONS(1790), - [anon_sym_const] = ACTIONS(1792), - [anon_sym_default] = ACTIONS(1794), - [anon_sym_gen] = ACTIONS(1794), - [anon_sym_union] = ACTIONS(1794), - [anon_sym_ref] = ACTIONS(1281), - [sym_mutable_specifier] = ACTIONS(1457), - [sym_integer_literal] = ACTIONS(1287), - [aux_sym_string_literal_token1] = ACTIONS(1289), - [sym_char_literal] = ACTIONS(1287), - [anon_sym_true] = ACTIONS(1291), - [anon_sym_false] = ACTIONS(1291), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3110), - [sym_super] = ACTIONS(1796), - [sym_crate] = ACTIONS(1796), - [sym_metavariable] = ACTIONS(1798), - [sym__raw_string_literal_start] = ACTIONS(1299), - [sym_float_literal] = ACTIONS(1287), + [sym_identifier] = ACTIONS(2369), + [anon_sym_LPAREN] = ACTIONS(2371), + [anon_sym_RPAREN] = ACTIONS(3118), + [anon_sym_LBRACK] = 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(1246), + [anon_sym_AMP] = ACTIONS(2379), + [anon_sym_PIPE] = ACTIONS(1252), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1428), + [anon_sym_DOT_DOT] = ACTIONS(1256), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1260), + [anon_sym_COLON_COLON] = ACTIONS(2383), + [anon_sym_const] = ACTIONS(2385), + [anon_sym_default] = ACTIONS(2387), + [anon_sym_gen] = ACTIONS(2387), + [anon_sym_union] = ACTIONS(2387), + [anon_sym_ref] = ACTIONS(1286), + [sym_mutable_specifier] = ACTIONS(1434), + [sym_integer_literal] = ACTIONS(1292), + [aux_sym_string_literal_token1] = ACTIONS(1294), + [sym_char_literal] = ACTIONS(1292), + [anon_sym_true] = ACTIONS(1296), + [anon_sym_false] = ACTIONS(1296), + [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(2391), + [sym__raw_string_literal_start] = ACTIONS(1304), + [sym_float_literal] = ACTIONS(1292), }, [STATE(804)] = { - [sym_bracketed_type] = STATE(3448), - [sym_generic_type] = STATE(3450), - [sym_generic_type_with_turbofish] = STATE(3159), - [sym_macro_invocation] = STATE(2150), - [sym_scoped_identifier] = STATE(2016), - [sym_scoped_type_identifier] = STATE(2988), - [sym_const_block] = STATE(2150), - [sym__pattern] = STATE(2649), - [sym_generic_pattern] = STATE(2150), - [sym_tuple_pattern] = STATE(2150), - [sym_slice_pattern] = STATE(2150), - [sym_tuple_struct_pattern] = STATE(2150), - [sym_struct_pattern] = STATE(2150), - [sym_remaining_field_pattern] = STATE(2150), - [sym_mut_pattern] = STATE(2150), - [sym_range_pattern] = STATE(2150), - [sym_ref_pattern] = STATE(2150), - [sym_captured_pattern] = STATE(2150), - [sym_reference_pattern] = STATE(2150), - [sym_or_pattern] = STATE(2150), - [sym__literal_pattern] = STATE(2076), - [sym_negative_literal] = STATE(2074), - [sym_string_literal] = STATE(2074), - [sym_raw_string_literal] = STATE(2074), - [sym_boolean_literal] = STATE(2074), + [sym_bracketed_type] = STATE(3581), + [sym_generic_type] = STATE(3475), + [sym_generic_type_with_turbofish] = STATE(3233), + [sym_macro_invocation] = STATE(2163), + [sym_scoped_identifier] = STATE(2032), + [sym_scoped_type_identifier] = STATE(2893), + [sym_const_block] = STATE(2163), + [sym__pattern] = STATE(2780), + [sym_generic_pattern] = STATE(2163), + [sym_tuple_pattern] = STATE(2163), + [sym_slice_pattern] = STATE(2163), + [sym_tuple_struct_pattern] = STATE(2163), + [sym_struct_pattern] = STATE(2163), + [sym_remaining_field_pattern] = STATE(2163), + [sym_mut_pattern] = STATE(2163), + [sym_range_pattern] = STATE(2163), + [sym_ref_pattern] = STATE(2163), + [sym_captured_pattern] = STATE(2163), + [sym_reference_pattern] = STATE(2163), + [sym_or_pattern] = STATE(2163), + [sym__literal_pattern] = STATE(2098), + [sym_negative_literal] = STATE(2095), + [sym_string_literal] = STATE(2095), + [sym_raw_string_literal] = STATE(2095), + [sym_boolean_literal] = STATE(2095), [sym_line_comment] = STATE(804), [sym_block_comment] = STATE(804), - [sym_identifier] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_RPAREN] = ACTIONS(3112), - [anon_sym_LBRACK] = ACTIONS(1782), - [anon_sym_u8] = ACTIONS(1784), - [anon_sym_i8] = ACTIONS(1784), - [anon_sym_u16] = ACTIONS(1784), - [anon_sym_i16] = ACTIONS(1784), - [anon_sym_u32] = ACTIONS(1784), - [anon_sym_i32] = ACTIONS(1784), - [anon_sym_u64] = ACTIONS(1784), - [anon_sym_i64] = ACTIONS(1784), - [anon_sym_u128] = ACTIONS(1784), - [anon_sym_i128] = ACTIONS(1784), - [anon_sym_isize] = ACTIONS(1784), - [anon_sym_usize] = ACTIONS(1784), - [anon_sym_f32] = ACTIONS(1784), - [anon_sym_f64] = ACTIONS(1784), - [anon_sym_bool] = ACTIONS(1784), - [anon_sym_str] = ACTIONS(1784), - [anon_sym_char] = ACTIONS(1784), - [anon_sym_DASH] = ACTIONS(1241), - [anon_sym_AMP] = ACTIONS(1786), - [anon_sym_PIPE] = ACTIONS(1247), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1451), - [anon_sym_DOT_DOT] = ACTIONS(1251), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1255), - [anon_sym_COLON_COLON] = ACTIONS(1790), - [anon_sym_const] = ACTIONS(1792), - [anon_sym_default] = ACTIONS(1794), - [anon_sym_gen] = ACTIONS(1794), - [anon_sym_union] = ACTIONS(1794), - [anon_sym_ref] = ACTIONS(1281), - [sym_mutable_specifier] = ACTIONS(1457), - [sym_integer_literal] = ACTIONS(1287), - [aux_sym_string_literal_token1] = ACTIONS(1289), - [sym_char_literal] = ACTIONS(1287), - [anon_sym_true] = ACTIONS(1291), - [anon_sym_false] = ACTIONS(1291), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1796), - [sym_super] = ACTIONS(1796), - [sym_crate] = ACTIONS(1796), - [sym_metavariable] = ACTIONS(1798), - [sym__raw_string_literal_start] = ACTIONS(1299), - [sym_float_literal] = ACTIONS(1287), + [sym_identifier] = ACTIONS(2369), + [anon_sym_LPAREN] = ACTIONS(2371), + [anon_sym_LBRACK] = ACTIONS(2375), + [anon_sym_RBRACK] = ACTIONS(3120), + [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(1246), + [anon_sym_AMP] = ACTIONS(2379), + [anon_sym_PIPE] = ACTIONS(1252), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1428), + [anon_sym_DOT_DOT] = ACTIONS(1256), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1260), + [anon_sym_COLON_COLON] = ACTIONS(2383), + [anon_sym_const] = ACTIONS(2385), + [anon_sym_default] = ACTIONS(2387), + [anon_sym_gen] = ACTIONS(2387), + [anon_sym_union] = ACTIONS(2387), + [anon_sym_ref] = ACTIONS(1286), + [sym_mutable_specifier] = ACTIONS(1434), + [sym_integer_literal] = ACTIONS(1292), + [aux_sym_string_literal_token1] = ACTIONS(1294), + [sym_char_literal] = ACTIONS(1292), + [anon_sym_true] = ACTIONS(1296), + [anon_sym_false] = ACTIONS(1296), + [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(2391), + [sym__raw_string_literal_start] = ACTIONS(1304), + [sym_float_literal] = ACTIONS(1292), }, [STATE(805)] = { - [sym_bracketed_type] = STATE(3448), - [sym_generic_type] = STATE(3450), - [sym_generic_type_with_turbofish] = STATE(3159), - [sym_macro_invocation] = STATE(2150), - [sym_scoped_identifier] = STATE(2016), - [sym_scoped_type_identifier] = STATE(2988), - [sym_const_block] = STATE(2150), - [sym__pattern] = STATE(2649), - [sym_generic_pattern] = STATE(2150), - [sym_tuple_pattern] = STATE(2150), - [sym_slice_pattern] = STATE(2150), - [sym_tuple_struct_pattern] = STATE(2150), - [sym_struct_pattern] = STATE(2150), - [sym_remaining_field_pattern] = STATE(2150), - [sym_mut_pattern] = STATE(2150), - [sym_range_pattern] = STATE(2150), - [sym_ref_pattern] = STATE(2150), - [sym_captured_pattern] = STATE(2150), - [sym_reference_pattern] = STATE(2150), - [sym_or_pattern] = STATE(2150), - [sym__literal_pattern] = STATE(2076), - [sym_negative_literal] = STATE(2074), - [sym_string_literal] = STATE(2074), - [sym_raw_string_literal] = STATE(2074), - [sym_boolean_literal] = STATE(2074), + [sym_bracketed_type] = STATE(3581), + [sym_generic_type] = STATE(3475), + [sym_generic_type_with_turbofish] = STATE(3233), + [sym_macro_invocation] = STATE(2163), + [sym_scoped_identifier] = STATE(2032), + [sym_scoped_type_identifier] = STATE(2893), + [sym_const_block] = STATE(2163), + [sym__pattern] = STATE(2716), + [sym_generic_pattern] = STATE(2163), + [sym_tuple_pattern] = STATE(2163), + [sym_slice_pattern] = STATE(2163), + [sym_tuple_struct_pattern] = STATE(2163), + [sym_struct_pattern] = STATE(2163), + [sym_remaining_field_pattern] = STATE(2163), + [sym_mut_pattern] = STATE(2163), + [sym_range_pattern] = STATE(2163), + [sym_ref_pattern] = STATE(2163), + [sym_captured_pattern] = STATE(2163), + [sym_reference_pattern] = STATE(2163), + [sym_or_pattern] = STATE(2163), + [sym__literal_pattern] = STATE(2098), + [sym_negative_literal] = STATE(2095), + [sym_string_literal] = STATE(2095), + [sym_raw_string_literal] = STATE(2095), + [sym_boolean_literal] = STATE(2095), [sym_line_comment] = STATE(805), [sym_block_comment] = STATE(805), - [sym_identifier] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_RPAREN] = ACTIONS(3114), - [anon_sym_LBRACK] = ACTIONS(1782), - [anon_sym_u8] = ACTIONS(1784), - [anon_sym_i8] = ACTIONS(1784), - [anon_sym_u16] = ACTIONS(1784), - [anon_sym_i16] = ACTIONS(1784), - [anon_sym_u32] = ACTIONS(1784), - [anon_sym_i32] = ACTIONS(1784), - [anon_sym_u64] = ACTIONS(1784), - [anon_sym_i64] = ACTIONS(1784), - [anon_sym_u128] = ACTIONS(1784), - [anon_sym_i128] = ACTIONS(1784), - [anon_sym_isize] = ACTIONS(1784), - [anon_sym_usize] = ACTIONS(1784), - [anon_sym_f32] = ACTIONS(1784), - [anon_sym_f64] = ACTIONS(1784), - [anon_sym_bool] = ACTIONS(1784), - [anon_sym_str] = ACTIONS(1784), - [anon_sym_char] = ACTIONS(1784), - [anon_sym_DASH] = ACTIONS(1241), - [anon_sym_AMP] = ACTIONS(1786), - [anon_sym_PIPE] = ACTIONS(1247), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1451), - [anon_sym_DOT_DOT] = ACTIONS(1251), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1255), - [anon_sym_COLON_COLON] = ACTIONS(1790), - [anon_sym_const] = ACTIONS(1792), - [anon_sym_default] = ACTIONS(1794), - [anon_sym_gen] = ACTIONS(1794), - [anon_sym_union] = ACTIONS(1794), - [anon_sym_ref] = ACTIONS(1281), - [sym_mutable_specifier] = ACTIONS(1457), - [sym_integer_literal] = ACTIONS(1287), - [aux_sym_string_literal_token1] = ACTIONS(1289), - [sym_char_literal] = ACTIONS(1287), - [anon_sym_true] = ACTIONS(1291), - [anon_sym_false] = ACTIONS(1291), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1796), - [sym_super] = ACTIONS(1796), - [sym_crate] = ACTIONS(1796), - [sym_metavariable] = ACTIONS(1798), - [sym__raw_string_literal_start] = ACTIONS(1299), - [sym_float_literal] = ACTIONS(1287), + [sym_identifier] = ACTIONS(2369), + [anon_sym_LPAREN] = ACTIONS(2371), + [anon_sym_LBRACK] = 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(1246), + [anon_sym_AMP] = ACTIONS(2379), + [anon_sym_PIPE] = ACTIONS(1252), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1428), + [anon_sym_DOT_DOT] = ACTIONS(1256), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3122), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1260), + [anon_sym_COLON_COLON] = ACTIONS(2383), + [anon_sym_const] = ACTIONS(2385), + [anon_sym_default] = ACTIONS(2387), + [anon_sym_gen] = ACTIONS(2387), + [anon_sym_union] = ACTIONS(2387), + [anon_sym_ref] = ACTIONS(1286), + [sym_mutable_specifier] = ACTIONS(1434), + [sym_integer_literal] = ACTIONS(1292), + [aux_sym_string_literal_token1] = ACTIONS(1294), + [sym_char_literal] = ACTIONS(1292), + [anon_sym_true] = ACTIONS(1296), + [anon_sym_false] = ACTIONS(1296), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(3124), + [sym_super] = ACTIONS(2389), + [sym_crate] = ACTIONS(2389), + [sym_metavariable] = ACTIONS(2391), + [sym__raw_string_literal_start] = ACTIONS(1304), + [sym_float_literal] = ACTIONS(1292), }, [STATE(806)] = { - [sym_attribute_item] = STATE(1494), - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym_visibility_modifier] = STATE(906), - [sym__type] = STATE(2871), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_attribute_item] = STATE(1377), + [sym_function_modifiers] = STATE(3591), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2373), + [sym_visibility_modifier] = STATE(951), + [sym__type] = STATE(2980), + [sym_bracketed_type] = STATE(3474), + [sym_lifetime] = STATE(3727), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1591), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2022), + [sym_generic_type_with_turbofish] = STATE(3764), + [sym_bounded_type] = STATE(2069), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3334), + [sym_scoped_type_identifier] = STATE(1990), [sym_line_comment] = STATE(806), [sym_block_comment] = STATE(806), - [aux_sym_enum_variant_list_repeat1] = STATE(822), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(3052), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_RPAREN] = ACTIONS(3116), - [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1235), - [anon_sym_QMARK] = ACTIONS(1237), - [anon_sym_u8] = ACTIONS(1603), - [anon_sym_i8] = ACTIONS(1603), - [anon_sym_u16] = ACTIONS(1603), - [anon_sym_i16] = ACTIONS(1603), - [anon_sym_u32] = ACTIONS(1603), - [anon_sym_i32] = ACTIONS(1603), - [anon_sym_u64] = ACTIONS(1603), - [anon_sym_i64] = ACTIONS(1603), - [anon_sym_u128] = ACTIONS(1603), - [anon_sym_i128] = ACTIONS(1603), - [anon_sym_isize] = ACTIONS(1603), - [anon_sym_usize] = ACTIONS(1603), - [anon_sym_f32] = ACTIONS(1603), - [anon_sym_f64] = ACTIONS(1603), - [anon_sym_bool] = ACTIONS(1603), - [anon_sym_str] = ACTIONS(1603), - [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1243), - [anon_sym_AMP] = ACTIONS(1605), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_POUND] = ACTIONS(3044), - [anon_sym_SQUOTE] = ACTIONS(3058), - [anon_sym_async] = ACTIONS(1265), - [anon_sym_const] = ACTIONS(1265), - [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1271), - [anon_sym_for] = ACTIONS(1273), - [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1277), - [anon_sym_pub] = ACTIONS(3060), - [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1265), - [anon_sym_extern] = ACTIONS(1279), - [anon_sym_dyn] = ACTIONS(1283), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1619), - [sym_super] = ACTIONS(1619), - [sym_crate] = ACTIONS(3062), - [sym_metavariable] = ACTIONS(1621), + [aux_sym_enum_variant_list_repeat1] = STATE(812), + [aux_sym_function_modifiers_repeat1] = STATE(2244), + [sym_identifier] = ACTIONS(3064), + [anon_sym_LPAREN] = ACTIONS(1602), + [anon_sym_LBRACK] = ACTIONS(1604), + [anon_sym_STAR] = ACTIONS(1240), + [anon_sym_QMARK] = ACTIONS(1242), + [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_BANG] = ACTIONS(1248), + [anon_sym_AMP] = ACTIONS(1610), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1614), + [anon_sym_POUND] = ACTIONS(3070), + [anon_sym_SQUOTE] = ACTIONS(3072), + [anon_sym_async] = ACTIONS(1270), + [anon_sym_const] = ACTIONS(1270), + [anon_sym_default] = ACTIONS(1618), + [anon_sym_fn] = ACTIONS(1276), + [anon_sym_for] = ACTIONS(1278), + [anon_sym_gen] = ACTIONS(1620), + [anon_sym_impl] = ACTIONS(1282), + [anon_sym_pub] = ACTIONS(3074), + [anon_sym_union] = ACTIONS(1620), + [anon_sym_unsafe] = ACTIONS(1270), + [anon_sym_extern] = ACTIONS(1284), + [anon_sym_safe] = ACTIONS(1270), + [anon_sym_dyn] = ACTIONS(1288), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1624), + [sym_super] = ACTIONS(1624), + [sym_crate] = ACTIONS(3076), + [sym_metavariable] = ACTIONS(1626), }, [STATE(807)] = { - [sym_attribute_item] = STATE(1494), - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym_visibility_modifier] = STATE(906), - [sym__type] = STATE(2871), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_bracketed_type] = STATE(3581), + [sym_generic_type] = STATE(3475), + [sym_generic_type_with_turbofish] = STATE(3233), + [sym_macro_invocation] = STATE(2163), + [sym_scoped_identifier] = STATE(2032), + [sym_scoped_type_identifier] = STATE(2893), + [sym_const_block] = STATE(2163), + [sym__pattern] = STATE(2780), + [sym_generic_pattern] = STATE(2163), + [sym_tuple_pattern] = STATE(2163), + [sym_slice_pattern] = STATE(2163), + [sym_tuple_struct_pattern] = STATE(2163), + [sym_struct_pattern] = STATE(2163), + [sym_remaining_field_pattern] = STATE(2163), + [sym_mut_pattern] = STATE(2163), + [sym_range_pattern] = STATE(2163), + [sym_ref_pattern] = STATE(2163), + [sym_captured_pattern] = STATE(2163), + [sym_reference_pattern] = STATE(2163), + [sym_or_pattern] = STATE(2163), + [sym__literal_pattern] = STATE(2098), + [sym_negative_literal] = STATE(2095), + [sym_string_literal] = STATE(2095), + [sym_raw_string_literal] = STATE(2095), + [sym_boolean_literal] = STATE(2095), [sym_line_comment] = STATE(807), [sym_block_comment] = STATE(807), - [aux_sym_enum_variant_list_repeat1] = STATE(822), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(3052), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_RPAREN] = ACTIONS(3118), - [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1235), - [anon_sym_QMARK] = ACTIONS(1237), - [anon_sym_u8] = ACTIONS(1603), - [anon_sym_i8] = ACTIONS(1603), - [anon_sym_u16] = ACTIONS(1603), - [anon_sym_i16] = ACTIONS(1603), - [anon_sym_u32] = ACTIONS(1603), - [anon_sym_i32] = ACTIONS(1603), - [anon_sym_u64] = ACTIONS(1603), - [anon_sym_i64] = ACTIONS(1603), - [anon_sym_u128] = ACTIONS(1603), - [anon_sym_i128] = ACTIONS(1603), - [anon_sym_isize] = ACTIONS(1603), - [anon_sym_usize] = ACTIONS(1603), - [anon_sym_f32] = ACTIONS(1603), - [anon_sym_f64] = ACTIONS(1603), - [anon_sym_bool] = ACTIONS(1603), - [anon_sym_str] = ACTIONS(1603), - [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1243), - [anon_sym_AMP] = ACTIONS(1605), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_POUND] = ACTIONS(3044), - [anon_sym_SQUOTE] = ACTIONS(3058), - [anon_sym_async] = ACTIONS(1265), - [anon_sym_const] = ACTIONS(1265), - [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1271), - [anon_sym_for] = ACTIONS(1273), - [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1277), - [anon_sym_pub] = ACTIONS(3060), - [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1265), - [anon_sym_extern] = ACTIONS(1279), - [anon_sym_dyn] = ACTIONS(1283), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1619), - [sym_super] = ACTIONS(1619), - [sym_crate] = ACTIONS(3062), - [sym_metavariable] = ACTIONS(1621), + [sym_identifier] = ACTIONS(2369), + [anon_sym_LPAREN] = ACTIONS(2371), + [anon_sym_RPAREN] = ACTIONS(3126), + [anon_sym_LBRACK] = 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(1246), + [anon_sym_AMP] = ACTIONS(2379), + [anon_sym_PIPE] = ACTIONS(1252), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1428), + [anon_sym_DOT_DOT] = ACTIONS(1256), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1260), + [anon_sym_COLON_COLON] = ACTIONS(2383), + [anon_sym_const] = ACTIONS(2385), + [anon_sym_default] = ACTIONS(2387), + [anon_sym_gen] = ACTIONS(2387), + [anon_sym_union] = ACTIONS(2387), + [anon_sym_ref] = ACTIONS(1286), + [sym_mutable_specifier] = ACTIONS(1434), + [sym_integer_literal] = ACTIONS(1292), + [aux_sym_string_literal_token1] = ACTIONS(1294), + [sym_char_literal] = ACTIONS(1292), + [anon_sym_true] = ACTIONS(1296), + [anon_sym_false] = ACTIONS(1296), + [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(2391), + [sym__raw_string_literal_start] = ACTIONS(1304), + [sym_float_literal] = ACTIONS(1292), }, [STATE(808)] = { - [sym_attribute_item] = STATE(1494), - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym_visibility_modifier] = STATE(906), - [sym__type] = STATE(2871), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_bracketed_type] = STATE(3581), + [sym_generic_type] = STATE(3475), + [sym_generic_type_with_turbofish] = STATE(3233), + [sym_macro_invocation] = STATE(2163), + [sym_scoped_identifier] = STATE(2032), + [sym_scoped_type_identifier] = STATE(2893), + [sym_const_block] = STATE(2163), + [sym__pattern] = STATE(2780), + [sym_generic_pattern] = STATE(2163), + [sym_tuple_pattern] = STATE(2163), + [sym_slice_pattern] = STATE(2163), + [sym_tuple_struct_pattern] = STATE(2163), + [sym_struct_pattern] = STATE(2163), + [sym_remaining_field_pattern] = STATE(2163), + [sym_mut_pattern] = STATE(2163), + [sym_range_pattern] = STATE(2163), + [sym_ref_pattern] = STATE(2163), + [sym_captured_pattern] = STATE(2163), + [sym_reference_pattern] = STATE(2163), + [sym_or_pattern] = STATE(2163), + [sym__literal_pattern] = STATE(2098), + [sym_negative_literal] = STATE(2095), + [sym_string_literal] = STATE(2095), + [sym_raw_string_literal] = STATE(2095), + [sym_boolean_literal] = STATE(2095), [sym_line_comment] = STATE(808), [sym_block_comment] = STATE(808), - [aux_sym_enum_variant_list_repeat1] = STATE(822), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(3052), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_RPAREN] = ACTIONS(3120), - [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1235), - [anon_sym_QMARK] = ACTIONS(1237), - [anon_sym_u8] = ACTIONS(1603), - [anon_sym_i8] = ACTIONS(1603), - [anon_sym_u16] = ACTIONS(1603), - [anon_sym_i16] = ACTIONS(1603), - [anon_sym_u32] = ACTIONS(1603), - [anon_sym_i32] = ACTIONS(1603), - [anon_sym_u64] = ACTIONS(1603), - [anon_sym_i64] = ACTIONS(1603), - [anon_sym_u128] = ACTIONS(1603), - [anon_sym_i128] = ACTIONS(1603), - [anon_sym_isize] = ACTIONS(1603), - [anon_sym_usize] = ACTIONS(1603), - [anon_sym_f32] = ACTIONS(1603), - [anon_sym_f64] = ACTIONS(1603), - [anon_sym_bool] = ACTIONS(1603), - [anon_sym_str] = ACTIONS(1603), - [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1243), - [anon_sym_AMP] = ACTIONS(1605), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_POUND] = ACTIONS(3044), - [anon_sym_SQUOTE] = ACTIONS(3058), - [anon_sym_async] = ACTIONS(1265), - [anon_sym_const] = ACTIONS(1265), - [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1271), - [anon_sym_for] = ACTIONS(1273), - [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1277), - [anon_sym_pub] = ACTIONS(3060), - [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1265), - [anon_sym_extern] = ACTIONS(1279), - [anon_sym_dyn] = ACTIONS(1283), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1619), - [sym_super] = ACTIONS(1619), - [sym_crate] = ACTIONS(3062), - [sym_metavariable] = ACTIONS(1621), + [sym_identifier] = ACTIONS(2369), + [anon_sym_LPAREN] = ACTIONS(2371), + [anon_sym_RPAREN] = ACTIONS(3128), + [anon_sym_LBRACK] = 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(1246), + [anon_sym_AMP] = ACTIONS(2379), + [anon_sym_PIPE] = ACTIONS(1252), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1428), + [anon_sym_DOT_DOT] = ACTIONS(1256), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1260), + [anon_sym_COLON_COLON] = ACTIONS(2383), + [anon_sym_const] = ACTIONS(2385), + [anon_sym_default] = ACTIONS(2387), + [anon_sym_gen] = ACTIONS(2387), + [anon_sym_union] = ACTIONS(2387), + [anon_sym_ref] = ACTIONS(1286), + [sym_mutable_specifier] = ACTIONS(1434), + [sym_integer_literal] = ACTIONS(1292), + [aux_sym_string_literal_token1] = ACTIONS(1294), + [sym_char_literal] = ACTIONS(1292), + [anon_sym_true] = ACTIONS(1296), + [anon_sym_false] = ACTIONS(1296), + [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(2391), + [sym__raw_string_literal_start] = ACTIONS(1304), + [sym_float_literal] = ACTIONS(1292), }, [STATE(809)] = { - [sym_attribute_item] = STATE(1494), - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym_visibility_modifier] = STATE(906), - [sym__type] = STATE(2871), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_bracketed_type] = STATE(3581), + [sym_generic_type] = STATE(3475), + [sym_generic_type_with_turbofish] = STATE(3233), + [sym_macro_invocation] = STATE(2163), + [sym_scoped_identifier] = STATE(2032), + [sym_scoped_type_identifier] = STATE(2893), + [sym_const_block] = STATE(2163), + [sym__pattern] = STATE(2780), + [sym_generic_pattern] = STATE(2163), + [sym_tuple_pattern] = STATE(2163), + [sym_slice_pattern] = STATE(2163), + [sym_tuple_struct_pattern] = STATE(2163), + [sym_struct_pattern] = STATE(2163), + [sym_remaining_field_pattern] = STATE(2163), + [sym_mut_pattern] = STATE(2163), + [sym_range_pattern] = STATE(2163), + [sym_ref_pattern] = STATE(2163), + [sym_captured_pattern] = STATE(2163), + [sym_reference_pattern] = STATE(2163), + [sym_or_pattern] = STATE(2163), + [sym__literal_pattern] = STATE(2098), + [sym_negative_literal] = STATE(2095), + [sym_string_literal] = STATE(2095), + [sym_raw_string_literal] = STATE(2095), + [sym_boolean_literal] = STATE(2095), [sym_line_comment] = STATE(809), [sym_block_comment] = STATE(809), - [aux_sym_enum_variant_list_repeat1] = STATE(822), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(3052), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_RPAREN] = ACTIONS(3122), - [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1235), - [anon_sym_QMARK] = ACTIONS(1237), - [anon_sym_u8] = ACTIONS(1603), - [anon_sym_i8] = ACTIONS(1603), - [anon_sym_u16] = ACTIONS(1603), - [anon_sym_i16] = ACTIONS(1603), - [anon_sym_u32] = ACTIONS(1603), - [anon_sym_i32] = ACTIONS(1603), - [anon_sym_u64] = ACTIONS(1603), - [anon_sym_i64] = ACTIONS(1603), - [anon_sym_u128] = ACTIONS(1603), - [anon_sym_i128] = ACTIONS(1603), - [anon_sym_isize] = ACTIONS(1603), - [anon_sym_usize] = ACTIONS(1603), - [anon_sym_f32] = ACTIONS(1603), - [anon_sym_f64] = ACTIONS(1603), - [anon_sym_bool] = ACTIONS(1603), - [anon_sym_str] = ACTIONS(1603), - [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1243), - [anon_sym_AMP] = ACTIONS(1605), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_POUND] = ACTIONS(3044), - [anon_sym_SQUOTE] = ACTIONS(3058), - [anon_sym_async] = ACTIONS(1265), - [anon_sym_const] = ACTIONS(1265), - [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1271), - [anon_sym_for] = ACTIONS(1273), - [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1277), - [anon_sym_pub] = ACTIONS(3060), - [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1265), - [anon_sym_extern] = ACTIONS(1279), - [anon_sym_dyn] = ACTIONS(1283), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1619), - [sym_super] = ACTIONS(1619), - [sym_crate] = ACTIONS(3062), - [sym_metavariable] = ACTIONS(1621), + [sym_identifier] = ACTIONS(2369), + [anon_sym_LPAREN] = ACTIONS(2371), + [anon_sym_LBRACK] = ACTIONS(2375), + [anon_sym_RBRACK] = ACTIONS(3130), + [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(1246), + [anon_sym_AMP] = ACTIONS(2379), + [anon_sym_PIPE] = ACTIONS(1252), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1428), + [anon_sym_DOT_DOT] = ACTIONS(1256), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1260), + [anon_sym_COLON_COLON] = ACTIONS(2383), + [anon_sym_const] = ACTIONS(2385), + [anon_sym_default] = ACTIONS(2387), + [anon_sym_gen] = ACTIONS(2387), + [anon_sym_union] = ACTIONS(2387), + [anon_sym_ref] = ACTIONS(1286), + [sym_mutable_specifier] = ACTIONS(1434), + [sym_integer_literal] = ACTIONS(1292), + [aux_sym_string_literal_token1] = ACTIONS(1294), + [sym_char_literal] = ACTIONS(1292), + [anon_sym_true] = ACTIONS(1296), + [anon_sym_false] = ACTIONS(1296), + [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(2391), + [sym__raw_string_literal_start] = ACTIONS(1304), + [sym_float_literal] = ACTIONS(1292), }, [STATE(810)] = { - [sym_parameter] = STATE(2974), - [sym_bracketed_type] = STATE(3448), - [sym_generic_type] = STATE(3450), - [sym_generic_type_with_turbofish] = STATE(3159), - [sym_macro_invocation] = STATE(2150), - [sym_scoped_identifier] = STATE(2016), - [sym_scoped_type_identifier] = STATE(2988), - [sym_const_block] = STATE(2150), - [sym__pattern] = STATE(2681), - [sym_generic_pattern] = STATE(2150), - [sym_tuple_pattern] = STATE(2150), - [sym_slice_pattern] = STATE(2150), - [sym_tuple_struct_pattern] = STATE(2150), - [sym_struct_pattern] = STATE(2150), - [sym_remaining_field_pattern] = STATE(2150), - [sym_mut_pattern] = STATE(2150), - [sym_range_pattern] = STATE(2150), - [sym_ref_pattern] = STATE(2150), - [sym_captured_pattern] = STATE(2150), - [sym_reference_pattern] = STATE(2150), - [sym_or_pattern] = STATE(2150), - [sym__literal_pattern] = STATE(2076), - [sym_negative_literal] = STATE(2074), - [sym_string_literal] = STATE(2074), - [sym_raw_string_literal] = STATE(2074), - [sym_boolean_literal] = STATE(2074), + [sym_bracketed_type] = STATE(3581), + [sym_generic_type] = STATE(3475), + [sym_generic_type_with_turbofish] = STATE(3233), + [sym_macro_invocation] = STATE(2163), + [sym_scoped_identifier] = STATE(2032), + [sym_scoped_type_identifier] = STATE(2893), + [sym_const_block] = STATE(2163), + [sym__pattern] = STATE(2780), + [sym_generic_pattern] = STATE(2163), + [sym_tuple_pattern] = STATE(2163), + [sym_slice_pattern] = STATE(2163), + [sym_tuple_struct_pattern] = STATE(2163), + [sym_struct_pattern] = STATE(2163), + [sym_remaining_field_pattern] = STATE(2163), + [sym_mut_pattern] = STATE(2163), + [sym_range_pattern] = STATE(2163), + [sym_ref_pattern] = STATE(2163), + [sym_captured_pattern] = STATE(2163), + [sym_reference_pattern] = STATE(2163), + [sym_or_pattern] = STATE(2163), + [sym__literal_pattern] = STATE(2098), + [sym_negative_literal] = STATE(2095), + [sym_string_literal] = STATE(2095), + [sym_raw_string_literal] = STATE(2095), + [sym_boolean_literal] = STATE(2095), [sym_line_comment] = STATE(810), [sym_block_comment] = STATE(810), - [sym_identifier] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_LBRACK] = ACTIONS(1782), - [anon_sym_u8] = ACTIONS(1784), - [anon_sym_i8] = ACTIONS(1784), - [anon_sym_u16] = ACTIONS(1784), - [anon_sym_i16] = ACTIONS(1784), - [anon_sym_u32] = ACTIONS(1784), - [anon_sym_i32] = ACTIONS(1784), - [anon_sym_u64] = ACTIONS(1784), - [anon_sym_i64] = ACTIONS(1784), - [anon_sym_u128] = ACTIONS(1784), - [anon_sym_i128] = ACTIONS(1784), - [anon_sym_isize] = ACTIONS(1784), - [anon_sym_usize] = ACTIONS(1784), - [anon_sym_f32] = ACTIONS(1784), - [anon_sym_f64] = ACTIONS(1784), - [anon_sym_bool] = ACTIONS(1784), - [anon_sym_str] = ACTIONS(1784), - [anon_sym_char] = ACTIONS(1784), - [anon_sym_DASH] = ACTIONS(1241), - [anon_sym_AMP] = ACTIONS(1786), - [anon_sym_PIPE] = ACTIONS(3102), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1451), - [anon_sym_DOT_DOT] = ACTIONS(1251), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1255), - [anon_sym_COLON_COLON] = ACTIONS(1790), - [anon_sym_const] = ACTIONS(1792), - [anon_sym_default] = ACTIONS(1794), - [anon_sym_gen] = ACTIONS(1794), - [anon_sym_union] = ACTIONS(1794), - [anon_sym_ref] = ACTIONS(1281), - [sym_mutable_specifier] = ACTIONS(3104), - [sym_integer_literal] = ACTIONS(1287), - [aux_sym_string_literal_token1] = ACTIONS(1289), - [sym_char_literal] = ACTIONS(1287), - [anon_sym_true] = ACTIONS(1291), - [anon_sym_false] = ACTIONS(1291), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3106), - [sym_super] = ACTIONS(1796), - [sym_crate] = ACTIONS(1796), - [sym_metavariable] = ACTIONS(1798), - [sym__raw_string_literal_start] = ACTIONS(1299), - [sym_float_literal] = ACTIONS(1287), + [sym_identifier] = ACTIONS(2369), + [anon_sym_LPAREN] = ACTIONS(2371), + [anon_sym_RPAREN] = ACTIONS(3132), + [anon_sym_LBRACK] = 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(1246), + [anon_sym_AMP] = ACTIONS(2379), + [anon_sym_PIPE] = ACTIONS(1252), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1428), + [anon_sym_DOT_DOT] = ACTIONS(1256), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1260), + [anon_sym_COLON_COLON] = ACTIONS(2383), + [anon_sym_const] = ACTIONS(2385), + [anon_sym_default] = ACTIONS(2387), + [anon_sym_gen] = ACTIONS(2387), + [anon_sym_union] = ACTIONS(2387), + [anon_sym_ref] = ACTIONS(1286), + [sym_mutable_specifier] = ACTIONS(1434), + [sym_integer_literal] = ACTIONS(1292), + [aux_sym_string_literal_token1] = ACTIONS(1294), + [sym_char_literal] = ACTIONS(1292), + [anon_sym_true] = ACTIONS(1296), + [anon_sym_false] = ACTIONS(1296), + [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(2391), + [sym__raw_string_literal_start] = ACTIONS(1304), + [sym_float_literal] = ACTIONS(1292), }, [STATE(811)] = { - [sym_attribute_item] = STATE(1494), - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym_visibility_modifier] = STATE(906), - [sym__type] = STATE(2871), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_bracketed_type] = STATE(3581), + [sym_generic_type] = STATE(3475), + [sym_generic_type_with_turbofish] = STATE(3233), + [sym_macro_invocation] = STATE(2163), + [sym_scoped_identifier] = STATE(2032), + [sym_scoped_type_identifier] = STATE(2893), + [sym_const_block] = STATE(2163), + [sym__pattern] = STATE(2780), + [sym_generic_pattern] = STATE(2163), + [sym_tuple_pattern] = STATE(2163), + [sym_slice_pattern] = STATE(2163), + [sym_tuple_struct_pattern] = STATE(2163), + [sym_struct_pattern] = STATE(2163), + [sym_remaining_field_pattern] = STATE(2163), + [sym_mut_pattern] = STATE(2163), + [sym_range_pattern] = STATE(2163), + [sym_ref_pattern] = STATE(2163), + [sym_captured_pattern] = STATE(2163), + [sym_reference_pattern] = STATE(2163), + [sym_or_pattern] = STATE(2163), + [sym__literal_pattern] = STATE(2098), + [sym_negative_literal] = STATE(2095), + [sym_string_literal] = STATE(2095), + [sym_raw_string_literal] = STATE(2095), + [sym_boolean_literal] = STATE(2095), [sym_line_comment] = STATE(811), [sym_block_comment] = STATE(811), - [aux_sym_enum_variant_list_repeat1] = STATE(822), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(3052), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_RPAREN] = ACTIONS(3124), - [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1235), - [anon_sym_QMARK] = ACTIONS(1237), - [anon_sym_u8] = ACTIONS(1603), - [anon_sym_i8] = ACTIONS(1603), - [anon_sym_u16] = ACTIONS(1603), - [anon_sym_i16] = ACTIONS(1603), - [anon_sym_u32] = ACTIONS(1603), - [anon_sym_i32] = ACTIONS(1603), - [anon_sym_u64] = ACTIONS(1603), - [anon_sym_i64] = ACTIONS(1603), - [anon_sym_u128] = ACTIONS(1603), - [anon_sym_i128] = ACTIONS(1603), - [anon_sym_isize] = ACTIONS(1603), - [anon_sym_usize] = ACTIONS(1603), - [anon_sym_f32] = ACTIONS(1603), - [anon_sym_f64] = ACTIONS(1603), - [anon_sym_bool] = ACTIONS(1603), - [anon_sym_str] = ACTIONS(1603), - [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1243), - [anon_sym_AMP] = ACTIONS(1605), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_POUND] = ACTIONS(3044), - [anon_sym_SQUOTE] = ACTIONS(3058), - [anon_sym_async] = ACTIONS(1265), - [anon_sym_const] = ACTIONS(1265), - [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1271), - [anon_sym_for] = ACTIONS(1273), - [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1277), - [anon_sym_pub] = ACTIONS(3060), - [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1265), - [anon_sym_extern] = ACTIONS(1279), - [anon_sym_dyn] = ACTIONS(1283), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1619), - [sym_super] = ACTIONS(1619), - [sym_crate] = ACTIONS(3062), - [sym_metavariable] = ACTIONS(1621), + [sym_identifier] = ACTIONS(2369), + [anon_sym_LPAREN] = ACTIONS(2371), + [anon_sym_RPAREN] = ACTIONS(3134), + [anon_sym_LBRACK] = 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(1246), + [anon_sym_AMP] = ACTIONS(2379), + [anon_sym_PIPE] = ACTIONS(1252), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1428), + [anon_sym_DOT_DOT] = ACTIONS(1256), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1260), + [anon_sym_COLON_COLON] = ACTIONS(2383), + [anon_sym_const] = ACTIONS(2385), + [anon_sym_default] = ACTIONS(2387), + [anon_sym_gen] = ACTIONS(2387), + [anon_sym_union] = ACTIONS(2387), + [anon_sym_ref] = ACTIONS(1286), + [sym_mutable_specifier] = ACTIONS(1434), + [sym_integer_literal] = ACTIONS(1292), + [aux_sym_string_literal_token1] = ACTIONS(1294), + [sym_char_literal] = ACTIONS(1292), + [anon_sym_true] = ACTIONS(1296), + [anon_sym_false] = ACTIONS(1296), + [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(2391), + [sym__raw_string_literal_start] = ACTIONS(1304), + [sym_float_literal] = ACTIONS(1292), }, [STATE(812)] = { - [sym_parameter] = STATE(3192), - [sym_bracketed_type] = STATE(3448), - [sym_generic_type] = STATE(3450), - [sym_generic_type_with_turbofish] = STATE(3159), - [sym_macro_invocation] = STATE(2150), - [sym_scoped_identifier] = STATE(2016), - [sym_scoped_type_identifier] = STATE(2988), - [sym_const_block] = STATE(2150), - [sym__pattern] = STATE(2930), - [sym_generic_pattern] = STATE(2150), - [sym_tuple_pattern] = STATE(2150), - [sym_slice_pattern] = STATE(2150), - [sym_tuple_struct_pattern] = STATE(2150), - [sym_struct_pattern] = STATE(2150), - [sym_remaining_field_pattern] = STATE(2150), - [sym_mut_pattern] = STATE(2150), - [sym_range_pattern] = STATE(2150), - [sym_ref_pattern] = STATE(2150), - [sym_captured_pattern] = STATE(2150), - [sym_reference_pattern] = STATE(2150), - [sym_or_pattern] = STATE(2150), - [sym__literal_pattern] = STATE(2076), - [sym_negative_literal] = STATE(2074), - [sym_string_literal] = STATE(2074), - [sym_raw_string_literal] = STATE(2074), - [sym_boolean_literal] = STATE(2074), + [sym_attribute_item] = STATE(1377), + [sym_function_modifiers] = STATE(3591), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2373), + [sym_visibility_modifier] = STATE(944), + [sym__type] = STATE(3094), + [sym_bracketed_type] = STATE(3474), + [sym_lifetime] = STATE(3727), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1591), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2022), + [sym_generic_type_with_turbofish] = STATE(3764), + [sym_bounded_type] = STATE(2069), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3334), + [sym_scoped_type_identifier] = STATE(1990), [sym_line_comment] = STATE(812), [sym_block_comment] = STATE(812), - [sym_identifier] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_LBRACK] = ACTIONS(1782), - [anon_sym_u8] = ACTIONS(1784), - [anon_sym_i8] = ACTIONS(1784), - [anon_sym_u16] = ACTIONS(1784), - [anon_sym_i16] = ACTIONS(1784), - [anon_sym_u32] = ACTIONS(1784), - [anon_sym_i32] = ACTIONS(1784), - [anon_sym_u64] = ACTIONS(1784), - [anon_sym_i64] = ACTIONS(1784), - [anon_sym_u128] = ACTIONS(1784), - [anon_sym_i128] = ACTIONS(1784), - [anon_sym_isize] = ACTIONS(1784), - [anon_sym_usize] = ACTIONS(1784), - [anon_sym_f32] = ACTIONS(1784), - [anon_sym_f64] = ACTIONS(1784), - [anon_sym_bool] = ACTIONS(1784), - [anon_sym_str] = ACTIONS(1784), - [anon_sym_char] = ACTIONS(1784), - [anon_sym_DASH] = ACTIONS(1241), - [anon_sym_AMP] = ACTIONS(1786), - [anon_sym_PIPE] = ACTIONS(1247), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1451), - [anon_sym_DOT_DOT] = ACTIONS(1251), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1255), - [anon_sym_COLON_COLON] = ACTIONS(1790), - [anon_sym_const] = ACTIONS(1792), - [anon_sym_default] = ACTIONS(1794), - [anon_sym_gen] = ACTIONS(1794), - [anon_sym_union] = ACTIONS(1794), - [anon_sym_ref] = ACTIONS(1281), - [sym_mutable_specifier] = ACTIONS(3104), - [sym_integer_literal] = ACTIONS(1287), - [aux_sym_string_literal_token1] = ACTIONS(1289), - [sym_char_literal] = ACTIONS(1287), - [anon_sym_true] = ACTIONS(1291), - [anon_sym_false] = ACTIONS(1291), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3106), - [sym_super] = ACTIONS(1796), - [sym_crate] = ACTIONS(1796), - [sym_metavariable] = ACTIONS(1798), - [sym__raw_string_literal_start] = ACTIONS(1299), - [sym_float_literal] = ACTIONS(1287), + [aux_sym_enum_variant_list_repeat1] = STATE(1085), + [aux_sym_function_modifiers_repeat1] = STATE(2244), + [sym_identifier] = ACTIONS(3064), + [anon_sym_LPAREN] = ACTIONS(1602), + [anon_sym_LBRACK] = ACTIONS(1604), + [anon_sym_STAR] = ACTIONS(1240), + [anon_sym_QMARK] = ACTIONS(1242), + [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_BANG] = ACTIONS(1248), + [anon_sym_AMP] = ACTIONS(1610), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1614), + [anon_sym_POUND] = ACTIONS(3070), + [anon_sym_SQUOTE] = ACTIONS(3072), + [anon_sym_async] = ACTIONS(1270), + [anon_sym_const] = ACTIONS(1270), + [anon_sym_default] = ACTIONS(1618), + [anon_sym_fn] = ACTIONS(1276), + [anon_sym_for] = ACTIONS(1278), + [anon_sym_gen] = ACTIONS(1620), + [anon_sym_impl] = ACTIONS(1282), + [anon_sym_pub] = ACTIONS(3074), + [anon_sym_union] = ACTIONS(1620), + [anon_sym_unsafe] = ACTIONS(1270), + [anon_sym_extern] = ACTIONS(1284), + [anon_sym_safe] = ACTIONS(1270), + [anon_sym_dyn] = ACTIONS(1288), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1624), + [sym_super] = ACTIONS(1624), + [sym_crate] = ACTIONS(3076), + [sym_metavariable] = ACTIONS(1626), }, [STATE(813)] = { - [sym_bracketed_type] = STATE(3448), - [sym_generic_type] = STATE(3450), - [sym_generic_type_with_turbofish] = STATE(3159), - [sym_macro_invocation] = STATE(2150), - [sym_scoped_identifier] = STATE(2016), - [sym_scoped_type_identifier] = STATE(2988), - [sym_const_block] = STATE(2150), - [sym__pattern] = STATE(2971), - [sym_generic_pattern] = STATE(2150), - [sym_tuple_pattern] = STATE(2150), - [sym_slice_pattern] = STATE(2150), - [sym_tuple_struct_pattern] = STATE(2150), - [sym_struct_pattern] = STATE(2150), - [sym_remaining_field_pattern] = STATE(2150), - [sym_mut_pattern] = STATE(2150), - [sym_range_pattern] = STATE(2150), - [sym_ref_pattern] = STATE(2150), - [sym_captured_pattern] = STATE(2150), - [sym_reference_pattern] = STATE(2150), - [sym_or_pattern] = STATE(2150), - [sym__literal_pattern] = STATE(2076), - [sym_negative_literal] = STATE(2074), - [sym_string_literal] = STATE(2074), - [sym_raw_string_literal] = STATE(2074), - [sym_boolean_literal] = STATE(2074), + [sym_parameter] = STATE(2974), + [sym_bracketed_type] = STATE(3581), + [sym_generic_type] = STATE(3475), + [sym_generic_type_with_turbofish] = STATE(3233), + [sym_macro_invocation] = STATE(2163), + [sym_scoped_identifier] = STATE(2032), + [sym_scoped_type_identifier] = STATE(2893), + [sym_const_block] = STATE(2163), + [sym__pattern] = STATE(2493), + [sym_generic_pattern] = STATE(2163), + [sym_tuple_pattern] = STATE(2163), + [sym_slice_pattern] = STATE(2163), + [sym_tuple_struct_pattern] = STATE(2163), + [sym_struct_pattern] = STATE(2163), + [sym_remaining_field_pattern] = STATE(2163), + [sym_mut_pattern] = STATE(2163), + [sym_range_pattern] = STATE(2163), + [sym_ref_pattern] = STATE(2163), + [sym_captured_pattern] = STATE(2163), + [sym_reference_pattern] = STATE(2163), + [sym_or_pattern] = STATE(2163), + [sym__literal_pattern] = STATE(2098), + [sym_negative_literal] = STATE(2095), + [sym_string_literal] = STATE(2095), + [sym_raw_string_literal] = STATE(2095), + [sym_boolean_literal] = STATE(2095), [sym_line_comment] = STATE(813), [sym_block_comment] = STATE(813), - [sym_identifier] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_LBRACK] = ACTIONS(1782), - [anon_sym_u8] = ACTIONS(1784), - [anon_sym_i8] = ACTIONS(1784), - [anon_sym_u16] = ACTIONS(1784), - [anon_sym_i16] = ACTIONS(1784), - [anon_sym_u32] = ACTIONS(1784), - [anon_sym_i32] = ACTIONS(1784), - [anon_sym_u64] = ACTIONS(1784), - [anon_sym_i64] = ACTIONS(1784), - [anon_sym_u128] = ACTIONS(1784), - [anon_sym_i128] = ACTIONS(1784), - [anon_sym_isize] = ACTIONS(1784), - [anon_sym_usize] = ACTIONS(1784), - [anon_sym_f32] = ACTIONS(1784), - [anon_sym_f64] = ACTIONS(1784), - [anon_sym_bool] = ACTIONS(1784), - [anon_sym_str] = ACTIONS(1784), - [anon_sym_char] = ACTIONS(1784), - [anon_sym_DASH] = ACTIONS(1241), - [anon_sym_AMP] = ACTIONS(1786), - [anon_sym_PIPE] = ACTIONS(1247), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1451), - [anon_sym_DOT_DOT] = ACTIONS(1251), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1255), - [anon_sym_COLON_COLON] = ACTIONS(1790), - [anon_sym_const] = ACTIONS(1792), - [anon_sym_default] = ACTIONS(1794), - [anon_sym_gen] = ACTIONS(1794), - [anon_sym_union] = ACTIONS(1794), - [anon_sym_ref] = ACTIONS(1281), - [sym_mutable_specifier] = ACTIONS(1457), - [sym_integer_literal] = ACTIONS(1287), - [aux_sym_string_literal_token1] = ACTIONS(1289), - [sym_char_literal] = ACTIONS(1287), - [anon_sym_true] = ACTIONS(1291), - [anon_sym_false] = ACTIONS(1291), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1796), - [sym_super] = ACTIONS(1796), - [sym_crate] = ACTIONS(1796), - [sym_metavariable] = ACTIONS(1798), - [sym__raw_string_literal_start] = ACTIONS(1299), - [sym_float_literal] = ACTIONS(1287), + [sym_identifier] = ACTIONS(2369), + [anon_sym_LPAREN] = ACTIONS(2371), + [anon_sym_LBRACK] = 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(1246), + [anon_sym_AMP] = ACTIONS(2379), + [anon_sym_PIPE] = ACTIONS(3136), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1428), + [anon_sym_DOT_DOT] = ACTIONS(1256), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1260), + [anon_sym_COLON_COLON] = ACTIONS(2383), + [anon_sym_const] = ACTIONS(2385), + [anon_sym_default] = ACTIONS(2387), + [anon_sym_gen] = ACTIONS(2387), + [anon_sym_union] = ACTIONS(2387), + [anon_sym_ref] = ACTIONS(1286), + [sym_mutable_specifier] = ACTIONS(3138), + [sym_integer_literal] = ACTIONS(1292), + [aux_sym_string_literal_token1] = ACTIONS(1294), + [sym_char_literal] = ACTIONS(1292), + [anon_sym_true] = ACTIONS(1296), + [anon_sym_false] = ACTIONS(1296), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(3140), + [sym_super] = ACTIONS(2389), + [sym_crate] = ACTIONS(2389), + [sym_metavariable] = ACTIONS(2391), + [sym__raw_string_literal_start] = ACTIONS(1304), + [sym_float_literal] = ACTIONS(1292), }, [STATE(814)] = { - [sym_bracketed_type] = STATE(3448), - [sym_generic_type] = STATE(3450), - [sym_generic_type_with_turbofish] = STATE(3159), - [sym_macro_invocation] = STATE(2150), - [sym_scoped_identifier] = STATE(2016), - [sym_scoped_type_identifier] = STATE(2988), - [sym_const_block] = STATE(2150), - [sym__pattern] = STATE(2802), - [sym_generic_pattern] = STATE(2150), - [sym_tuple_pattern] = STATE(2150), - [sym_slice_pattern] = STATE(2150), - [sym_tuple_struct_pattern] = STATE(2150), - [sym_struct_pattern] = STATE(2150), - [sym_remaining_field_pattern] = STATE(2150), - [sym_mut_pattern] = STATE(2150), - [sym_range_pattern] = STATE(2150), - [sym_ref_pattern] = STATE(2150), - [sym_captured_pattern] = STATE(2150), - [sym_reference_pattern] = STATE(2150), - [sym_or_pattern] = STATE(2150), - [sym__literal_pattern] = STATE(2076), - [sym_negative_literal] = STATE(2074), - [sym_string_literal] = STATE(2074), - [sym_raw_string_literal] = STATE(2074), - [sym_boolean_literal] = STATE(2074), + [sym_attribute_item] = STATE(1377), + [sym_function_modifiers] = STATE(3591), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2373), + [sym_visibility_modifier] = STATE(914), + [sym__type] = STATE(2841), + [sym_bracketed_type] = STATE(3474), + [sym_lifetime] = STATE(3727), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1591), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2022), + [sym_generic_type_with_turbofish] = STATE(3764), + [sym_bounded_type] = STATE(2069), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3334), + [sym_scoped_type_identifier] = STATE(1990), [sym_line_comment] = STATE(814), [sym_block_comment] = STATE(814), - [sym_identifier] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_LBRACK] = ACTIONS(1782), - [anon_sym_u8] = ACTIONS(1784), - [anon_sym_i8] = ACTIONS(1784), - [anon_sym_u16] = ACTIONS(1784), - [anon_sym_i16] = ACTIONS(1784), - [anon_sym_u32] = ACTIONS(1784), - [anon_sym_i32] = ACTIONS(1784), - [anon_sym_u64] = ACTIONS(1784), - [anon_sym_i64] = ACTIONS(1784), - [anon_sym_u128] = ACTIONS(1784), - [anon_sym_i128] = ACTIONS(1784), - [anon_sym_isize] = ACTIONS(1784), - [anon_sym_usize] = ACTIONS(1784), - [anon_sym_f32] = ACTIONS(1784), - [anon_sym_f64] = ACTIONS(1784), - [anon_sym_bool] = ACTIONS(1784), - [anon_sym_str] = ACTIONS(1784), - [anon_sym_char] = ACTIONS(1784), - [anon_sym_DASH] = ACTIONS(1241), - [anon_sym_AMP] = ACTIONS(1786), - [anon_sym_PIPE] = ACTIONS(1247), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1451), - [anon_sym_DOT_DOT] = ACTIONS(1251), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1255), - [anon_sym_COLON_COLON] = ACTIONS(1790), - [anon_sym_const] = ACTIONS(1792), - [anon_sym_default] = ACTIONS(1794), - [anon_sym_gen] = ACTIONS(1794), - [anon_sym_union] = ACTIONS(1794), - [anon_sym_ref] = ACTIONS(1281), - [sym_mutable_specifier] = ACTIONS(1457), - [sym_integer_literal] = ACTIONS(1287), - [aux_sym_string_literal_token1] = ACTIONS(1289), - [sym_char_literal] = ACTIONS(1287), - [anon_sym_true] = ACTIONS(1291), - [anon_sym_false] = ACTIONS(1291), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3126), - [sym_super] = ACTIONS(1796), - [sym_crate] = ACTIONS(1796), - [sym_metavariable] = ACTIONS(1798), - [sym__raw_string_literal_start] = ACTIONS(1299), - [sym_float_literal] = ACTIONS(1287), + [aux_sym_enum_variant_list_repeat1] = STATE(1085), + [aux_sym_function_modifiers_repeat1] = STATE(2244), + [sym_identifier] = ACTIONS(3064), + [anon_sym_LPAREN] = ACTIONS(1602), + [anon_sym_LBRACK] = ACTIONS(1604), + [anon_sym_STAR] = ACTIONS(1240), + [anon_sym_QMARK] = ACTIONS(1242), + [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_BANG] = ACTIONS(1248), + [anon_sym_AMP] = ACTIONS(1610), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1614), + [anon_sym_POUND] = ACTIONS(3070), + [anon_sym_SQUOTE] = ACTIONS(3072), + [anon_sym_async] = ACTIONS(1270), + [anon_sym_const] = ACTIONS(1270), + [anon_sym_default] = ACTIONS(1618), + [anon_sym_fn] = ACTIONS(1276), + [anon_sym_for] = ACTIONS(1278), + [anon_sym_gen] = ACTIONS(1620), + [anon_sym_impl] = ACTIONS(1282), + [anon_sym_pub] = ACTIONS(3074), + [anon_sym_union] = ACTIONS(1620), + [anon_sym_unsafe] = ACTIONS(1270), + [anon_sym_extern] = ACTIONS(1284), + [anon_sym_safe] = ACTIONS(1270), + [anon_sym_dyn] = ACTIONS(1288), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1624), + [sym_super] = ACTIONS(1624), + [sym_crate] = ACTIONS(3076), + [sym_metavariable] = ACTIONS(1626), }, [STATE(815)] = { - [sym_bracketed_type] = STATE(3448), - [sym_generic_type] = STATE(3450), - [sym_generic_type_with_turbofish] = STATE(3159), - [sym_macro_invocation] = STATE(2150), - [sym_scoped_identifier] = STATE(2016), - [sym_scoped_type_identifier] = STATE(2988), - [sym_const_block] = STATE(2150), - [sym__pattern] = STATE(2500), - [sym_generic_pattern] = STATE(2150), - [sym_tuple_pattern] = STATE(2150), - [sym_slice_pattern] = STATE(2150), - [sym_tuple_struct_pattern] = STATE(2150), - [sym_struct_pattern] = STATE(2150), - [sym_remaining_field_pattern] = STATE(2150), - [sym_mut_pattern] = STATE(2150), - [sym_range_pattern] = STATE(2150), - [sym_ref_pattern] = STATE(2150), - [sym_captured_pattern] = STATE(2150), - [sym_reference_pattern] = STATE(2150), - [sym_or_pattern] = STATE(2150), - [sym__literal_pattern] = STATE(2076), - [sym_negative_literal] = STATE(2074), - [sym_string_literal] = STATE(2074), - [sym_raw_string_literal] = STATE(2074), - [sym_boolean_literal] = STATE(2074), + [sym_parameter] = STATE(3349), + [sym_bracketed_type] = STATE(3581), + [sym_generic_type] = STATE(3475), + [sym_generic_type_with_turbofish] = STATE(3233), + [sym_macro_invocation] = STATE(2163), + [sym_scoped_identifier] = STATE(2032), + [sym_scoped_type_identifier] = STATE(2893), + [sym_const_block] = STATE(2163), + [sym__pattern] = STATE(3100), + [sym_generic_pattern] = STATE(2163), + [sym_tuple_pattern] = STATE(2163), + [sym_slice_pattern] = STATE(2163), + [sym_tuple_struct_pattern] = STATE(2163), + [sym_struct_pattern] = STATE(2163), + [sym_remaining_field_pattern] = STATE(2163), + [sym_mut_pattern] = STATE(2163), + [sym_range_pattern] = STATE(2163), + [sym_ref_pattern] = STATE(2163), + [sym_captured_pattern] = STATE(2163), + [sym_reference_pattern] = STATE(2163), + [sym_or_pattern] = STATE(2163), + [sym__literal_pattern] = STATE(2098), + [sym_negative_literal] = STATE(2095), + [sym_string_literal] = STATE(2095), + [sym_raw_string_literal] = STATE(2095), + [sym_boolean_literal] = STATE(2095), [sym_line_comment] = STATE(815), [sym_block_comment] = STATE(815), - [sym_identifier] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_LBRACK] = ACTIONS(1782), - [anon_sym_u8] = ACTIONS(1784), - [anon_sym_i8] = ACTIONS(1784), - [anon_sym_u16] = ACTIONS(1784), - [anon_sym_i16] = ACTIONS(1784), - [anon_sym_u32] = ACTIONS(1784), - [anon_sym_i32] = ACTIONS(1784), - [anon_sym_u64] = ACTIONS(1784), - [anon_sym_i64] = ACTIONS(1784), - [anon_sym_u128] = ACTIONS(1784), - [anon_sym_i128] = ACTIONS(1784), - [anon_sym_isize] = ACTIONS(1784), - [anon_sym_usize] = ACTIONS(1784), - [anon_sym_f32] = ACTIONS(1784), - [anon_sym_f64] = ACTIONS(1784), - [anon_sym_bool] = ACTIONS(1784), - [anon_sym_str] = ACTIONS(1784), - [anon_sym_char] = ACTIONS(1784), - [anon_sym_DASH] = ACTIONS(1241), - [anon_sym_AMP] = ACTIONS(1786), - [anon_sym_PIPE] = ACTIONS(1247), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1451), - [anon_sym_DOT_DOT] = ACTIONS(1251), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1255), - [anon_sym_COLON_COLON] = ACTIONS(1790), - [anon_sym_const] = ACTIONS(1792), - [anon_sym_default] = ACTIONS(1794), - [anon_sym_gen] = ACTIONS(1794), - [anon_sym_union] = ACTIONS(1794), - [anon_sym_ref] = ACTIONS(1281), - [sym_mutable_specifier] = ACTIONS(3128), - [sym_integer_literal] = ACTIONS(1287), - [aux_sym_string_literal_token1] = ACTIONS(1289), - [sym_char_literal] = ACTIONS(1287), - [anon_sym_true] = ACTIONS(1291), - [anon_sym_false] = ACTIONS(1291), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1796), - [sym_super] = ACTIONS(1796), - [sym_crate] = ACTIONS(1796), - [sym_metavariable] = ACTIONS(1798), - [sym__raw_string_literal_start] = ACTIONS(1299), - [sym_float_literal] = ACTIONS(1287), + [sym_identifier] = ACTIONS(2369), + [anon_sym_LPAREN] = ACTIONS(2371), + [anon_sym_LBRACK] = 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(1246), + [anon_sym_AMP] = ACTIONS(2379), + [anon_sym_PIPE] = ACTIONS(1252), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1428), + [anon_sym_DOT_DOT] = ACTIONS(1256), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1260), + [anon_sym_COLON_COLON] = ACTIONS(2383), + [anon_sym_const] = ACTIONS(2385), + [anon_sym_default] = ACTIONS(2387), + [anon_sym_gen] = ACTIONS(2387), + [anon_sym_union] = ACTIONS(2387), + [anon_sym_ref] = ACTIONS(1286), + [sym_mutable_specifier] = ACTIONS(3138), + [sym_integer_literal] = ACTIONS(1292), + [aux_sym_string_literal_token1] = ACTIONS(1294), + [sym_char_literal] = ACTIONS(1292), + [anon_sym_true] = ACTIONS(1296), + [anon_sym_false] = ACTIONS(1296), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(3140), + [sym_super] = ACTIONS(2389), + [sym_crate] = ACTIONS(2389), + [sym_metavariable] = ACTIONS(2391), + [sym__raw_string_literal_start] = ACTIONS(1304), + [sym_float_literal] = ACTIONS(1292), }, [STATE(816)] = { - [sym_bracketed_type] = STATE(3648), - [sym_generic_type] = STATE(3450), - [sym_generic_type_with_turbofish] = STATE(3370), - [sym_macro_invocation] = STATE(3108), - [sym_scoped_identifier] = STATE(2218), - [sym_scoped_type_identifier] = STATE(3059), - [sym_const_block] = STATE(3108), - [sym__pattern] = STATE(3025), - [sym_generic_pattern] = STATE(3108), - [sym_tuple_pattern] = STATE(3108), - [sym_slice_pattern] = STATE(3108), - [sym_tuple_struct_pattern] = STATE(3108), - [sym_struct_pattern] = STATE(3108), - [sym_remaining_field_pattern] = STATE(3108), - [sym_mut_pattern] = STATE(3108), - [sym_range_pattern] = STATE(3108), - [sym_ref_pattern] = STATE(3108), - [sym_captured_pattern] = STATE(3108), - [sym_reference_pattern] = STATE(3108), - [sym_or_pattern] = STATE(3108), - [sym__literal_pattern] = STATE(2401), - [sym_negative_literal] = STATE(2389), - [sym_string_literal] = STATE(2389), - [sym_raw_string_literal] = STATE(2389), - [sym_boolean_literal] = STATE(2389), + [sym_bracketed_type] = STATE(3581), + [sym_generic_type] = STATE(3475), + [sym_generic_type_with_turbofish] = STATE(3233), + [sym_macro_invocation] = STATE(2163), + [sym_scoped_identifier] = STATE(2032), + [sym_scoped_type_identifier] = STATE(2893), + [sym_const_block] = STATE(2163), + [sym__pattern] = STATE(2780), + [sym_generic_pattern] = STATE(2163), + [sym_tuple_pattern] = STATE(2163), + [sym_slice_pattern] = STATE(2163), + [sym_tuple_struct_pattern] = STATE(2163), + [sym_struct_pattern] = STATE(2163), + [sym_remaining_field_pattern] = STATE(2163), + [sym_mut_pattern] = STATE(2163), + [sym_range_pattern] = STATE(2163), + [sym_ref_pattern] = STATE(2163), + [sym_captured_pattern] = STATE(2163), + [sym_reference_pattern] = STATE(2163), + [sym_or_pattern] = STATE(2163), + [sym__literal_pattern] = STATE(2098), + [sym_negative_literal] = STATE(2095), + [sym_string_literal] = STATE(2095), + [sym_raw_string_literal] = STATE(2095), + [sym_boolean_literal] = STATE(2095), [sym_line_comment] = STATE(816), [sym_block_comment] = STATE(816), - [sym_identifier] = ACTIONS(1645), - [anon_sym_LPAREN] = ACTIONS(1647), - [anon_sym_LBRACK] = ACTIONS(1649), - [anon_sym_u8] = ACTIONS(1653), - [anon_sym_i8] = ACTIONS(1653), - [anon_sym_u16] = ACTIONS(1653), - [anon_sym_i16] = ACTIONS(1653), - [anon_sym_u32] = ACTIONS(1653), - [anon_sym_i32] = ACTIONS(1653), - [anon_sym_u64] = ACTIONS(1653), - [anon_sym_i64] = ACTIONS(1653), - [anon_sym_u128] = ACTIONS(1653), - [anon_sym_i128] = ACTIONS(1653), - [anon_sym_isize] = ACTIONS(1653), - [anon_sym_usize] = ACTIONS(1653), - [anon_sym_f32] = ACTIONS(1653), - [anon_sym_f64] = ACTIONS(1653), - [anon_sym_bool] = ACTIONS(1653), - [anon_sym_str] = ACTIONS(1653), - [anon_sym_char] = ACTIONS(1653), - [anon_sym_DASH] = ACTIONS(1655), - [anon_sym_AMP] = ACTIONS(1657), - [anon_sym_PIPE] = ACTIONS(1659), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1661), - [anon_sym_DOT_DOT] = ACTIONS(1663), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1665), - [anon_sym_COLON_COLON] = ACTIONS(1667), - [anon_sym_const] = ACTIONS(1671), - [anon_sym_default] = ACTIONS(1673), - [anon_sym_gen] = ACTIONS(1673), - [anon_sym_union] = ACTIONS(1673), - [anon_sym_ref] = ACTIONS(1675), - [sym_mutable_specifier] = ACTIONS(1677), - [sym_integer_literal] = ACTIONS(1679), - [aux_sym_string_literal_token1] = ACTIONS(1681), - [sym_char_literal] = ACTIONS(1679), - [anon_sym_true] = ACTIONS(1683), - [anon_sym_false] = ACTIONS(1683), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1685), - [sym_super] = ACTIONS(1685), - [sym_crate] = ACTIONS(1685), - [sym_metavariable] = ACTIONS(1687), - [sym__raw_string_literal_start] = ACTIONS(1689), - [sym_float_literal] = ACTIONS(1679), + [sym_identifier] = ACTIONS(2369), + [anon_sym_LPAREN] = ACTIONS(2371), + [anon_sym_LBRACK] = ACTIONS(2375), + [anon_sym_RBRACK] = ACTIONS(3142), + [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(1246), + [anon_sym_AMP] = ACTIONS(2379), + [anon_sym_PIPE] = ACTIONS(1252), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1428), + [anon_sym_DOT_DOT] = ACTIONS(1256), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1260), + [anon_sym_COLON_COLON] = ACTIONS(2383), + [anon_sym_const] = ACTIONS(2385), + [anon_sym_default] = ACTIONS(2387), + [anon_sym_gen] = ACTIONS(2387), + [anon_sym_union] = ACTIONS(2387), + [anon_sym_ref] = ACTIONS(1286), + [sym_mutable_specifier] = ACTIONS(1434), + [sym_integer_literal] = ACTIONS(1292), + [aux_sym_string_literal_token1] = ACTIONS(1294), + [sym_char_literal] = ACTIONS(1292), + [anon_sym_true] = ACTIONS(1296), + [anon_sym_false] = ACTIONS(1296), + [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(2391), + [sym__raw_string_literal_start] = ACTIONS(1304), + [sym_float_literal] = ACTIONS(1292), }, [STATE(817)] = { - [sym_bracketed_type] = STATE(3448), - [sym_generic_type] = STATE(3450), - [sym_generic_type_with_turbofish] = STATE(3159), - [sym_macro_invocation] = STATE(2150), - [sym_scoped_identifier] = STATE(2016), - [sym_scoped_type_identifier] = STATE(2988), - [sym_const_block] = STATE(2150), - [sym__pattern] = STATE(3071), - [sym_generic_pattern] = STATE(2150), - [sym_tuple_pattern] = STATE(2150), - [sym_slice_pattern] = STATE(2150), - [sym_tuple_struct_pattern] = STATE(2150), - [sym_struct_pattern] = STATE(2150), - [sym_remaining_field_pattern] = STATE(2150), - [sym_mut_pattern] = STATE(2150), - [sym_range_pattern] = STATE(2150), - [sym_ref_pattern] = STATE(2150), - [sym_captured_pattern] = STATE(2150), - [sym_reference_pattern] = STATE(2150), - [sym_or_pattern] = STATE(2150), - [sym__literal_pattern] = STATE(2076), - [sym_negative_literal] = STATE(2074), - [sym_string_literal] = STATE(2074), - [sym_raw_string_literal] = STATE(2074), - [sym_boolean_literal] = STATE(2074), + [sym_parameter] = STATE(2974), + [sym_bracketed_type] = STATE(3581), + [sym_generic_type] = STATE(3475), + [sym_generic_type_with_turbofish] = STATE(3233), + [sym_macro_invocation] = STATE(2163), + [sym_scoped_identifier] = STATE(2032), + [sym_scoped_type_identifier] = STATE(2893), + [sym_const_block] = STATE(2163), + [sym__pattern] = STATE(2785), + [sym_generic_pattern] = STATE(2163), + [sym_tuple_pattern] = STATE(2163), + [sym_slice_pattern] = STATE(2163), + [sym_tuple_struct_pattern] = STATE(2163), + [sym_struct_pattern] = STATE(2163), + [sym_remaining_field_pattern] = STATE(2163), + [sym_mut_pattern] = STATE(2163), + [sym_range_pattern] = STATE(2163), + [sym_ref_pattern] = STATE(2163), + [sym_captured_pattern] = STATE(2163), + [sym_reference_pattern] = STATE(2163), + [sym_or_pattern] = STATE(2163), + [sym__literal_pattern] = STATE(2098), + [sym_negative_literal] = STATE(2095), + [sym_string_literal] = STATE(2095), + [sym_raw_string_literal] = STATE(2095), + [sym_boolean_literal] = STATE(2095), [sym_line_comment] = STATE(817), [sym_block_comment] = STATE(817), - [sym_identifier] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_LBRACK] = ACTIONS(1782), - [anon_sym_u8] = ACTIONS(1784), - [anon_sym_i8] = ACTIONS(1784), - [anon_sym_u16] = ACTIONS(1784), - [anon_sym_i16] = ACTIONS(1784), - [anon_sym_u32] = ACTIONS(1784), - [anon_sym_i32] = ACTIONS(1784), - [anon_sym_u64] = ACTIONS(1784), - [anon_sym_i64] = ACTIONS(1784), - [anon_sym_u128] = ACTIONS(1784), - [anon_sym_i128] = ACTIONS(1784), - [anon_sym_isize] = ACTIONS(1784), - [anon_sym_usize] = ACTIONS(1784), - [anon_sym_f32] = ACTIONS(1784), - [anon_sym_f64] = ACTIONS(1784), - [anon_sym_bool] = ACTIONS(1784), - [anon_sym_str] = ACTIONS(1784), - [anon_sym_char] = ACTIONS(1784), - [anon_sym_DASH] = ACTIONS(1241), - [anon_sym_AMP] = ACTIONS(1786), - [anon_sym_PIPE] = ACTIONS(1247), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1451), - [anon_sym_DOT_DOT] = ACTIONS(1251), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1255), - [anon_sym_COLON_COLON] = ACTIONS(1790), - [anon_sym_const] = ACTIONS(1792), - [anon_sym_default] = ACTIONS(1794), - [anon_sym_gen] = ACTIONS(1794), - [anon_sym_union] = ACTIONS(1794), - [anon_sym_ref] = ACTIONS(1281), - [sym_mutable_specifier] = ACTIONS(1457), - [sym_integer_literal] = ACTIONS(1287), - [aux_sym_string_literal_token1] = ACTIONS(1289), - [sym_char_literal] = ACTIONS(1287), - [anon_sym_true] = ACTIONS(1291), - [anon_sym_false] = ACTIONS(1291), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1796), - [sym_super] = ACTIONS(1796), - [sym_crate] = ACTIONS(1796), - [sym_metavariable] = ACTIONS(1798), - [sym__raw_string_literal_start] = ACTIONS(1299), - [sym_float_literal] = ACTIONS(1287), + [sym_identifier] = ACTIONS(2369), + [anon_sym_LPAREN] = ACTIONS(2371), + [anon_sym_LBRACK] = 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(1246), + [anon_sym_AMP] = ACTIONS(2379), + [anon_sym_PIPE] = ACTIONS(3136), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1428), + [anon_sym_DOT_DOT] = ACTIONS(1256), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1260), + [anon_sym_COLON_COLON] = ACTIONS(2383), + [anon_sym_const] = ACTIONS(2385), + [anon_sym_default] = ACTIONS(2387), + [anon_sym_gen] = ACTIONS(2387), + [anon_sym_union] = ACTIONS(2387), + [anon_sym_ref] = ACTIONS(1286), + [sym_mutable_specifier] = ACTIONS(3138), + [sym_integer_literal] = ACTIONS(1292), + [aux_sym_string_literal_token1] = ACTIONS(1294), + [sym_char_literal] = ACTIONS(1292), + [anon_sym_true] = ACTIONS(1296), + [anon_sym_false] = ACTIONS(1296), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(3140), + [sym_super] = ACTIONS(2389), + [sym_crate] = ACTIONS(2389), + [sym_metavariable] = ACTIONS(2391), + [sym__raw_string_literal_start] = ACTIONS(1304), + [sym_float_literal] = ACTIONS(1292), }, [STATE(818)] = { - [sym_bracketed_type] = STATE(3448), - [sym_generic_type] = STATE(3450), - [sym_generic_type_with_turbofish] = STATE(3159), - [sym_macro_invocation] = STATE(2150), - [sym_scoped_identifier] = STATE(2016), - [sym_scoped_type_identifier] = STATE(2988), - [sym_const_block] = STATE(2150), - [sym__pattern] = STATE(2908), - [sym_generic_pattern] = STATE(2150), - [sym_tuple_pattern] = STATE(2150), - [sym_slice_pattern] = STATE(2150), - [sym_tuple_struct_pattern] = STATE(2150), - [sym_struct_pattern] = STATE(2150), - [sym_remaining_field_pattern] = STATE(2150), - [sym_mut_pattern] = STATE(2150), - [sym_range_pattern] = STATE(2150), - [sym_ref_pattern] = STATE(2150), - [sym_captured_pattern] = STATE(2150), - [sym_reference_pattern] = STATE(2150), - [sym_or_pattern] = STATE(2150), - [sym__literal_pattern] = STATE(2076), - [sym_negative_literal] = STATE(2074), - [sym_string_literal] = STATE(2074), - [sym_raw_string_literal] = STATE(2074), - [sym_boolean_literal] = STATE(2074), + [sym_bracketed_type] = STATE(3581), + [sym_generic_type] = STATE(3475), + [sym_generic_type_with_turbofish] = STATE(3233), + [sym_macro_invocation] = STATE(2163), + [sym_scoped_identifier] = STATE(2032), + [sym_scoped_type_identifier] = STATE(2893), + [sym_const_block] = STATE(2163), + [sym__pattern] = STATE(2780), + [sym_generic_pattern] = STATE(2163), + [sym_tuple_pattern] = STATE(2163), + [sym_slice_pattern] = STATE(2163), + [sym_tuple_struct_pattern] = STATE(2163), + [sym_struct_pattern] = STATE(2163), + [sym_remaining_field_pattern] = STATE(2163), + [sym_mut_pattern] = STATE(2163), + [sym_range_pattern] = STATE(2163), + [sym_ref_pattern] = STATE(2163), + [sym_captured_pattern] = STATE(2163), + [sym_reference_pattern] = STATE(2163), + [sym_or_pattern] = STATE(2163), + [sym__literal_pattern] = STATE(2098), + [sym_negative_literal] = STATE(2095), + [sym_string_literal] = STATE(2095), + [sym_raw_string_literal] = STATE(2095), + [sym_boolean_literal] = STATE(2095), [sym_line_comment] = STATE(818), [sym_block_comment] = STATE(818), - [sym_identifier] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_LBRACK] = ACTIONS(1782), - [anon_sym_u8] = ACTIONS(1784), - [anon_sym_i8] = ACTIONS(1784), - [anon_sym_u16] = ACTIONS(1784), - [anon_sym_i16] = ACTIONS(1784), - [anon_sym_u32] = ACTIONS(1784), - [anon_sym_i32] = ACTIONS(1784), - [anon_sym_u64] = ACTIONS(1784), - [anon_sym_i64] = ACTIONS(1784), - [anon_sym_u128] = ACTIONS(1784), - [anon_sym_i128] = ACTIONS(1784), - [anon_sym_isize] = ACTIONS(1784), - [anon_sym_usize] = ACTIONS(1784), - [anon_sym_f32] = ACTIONS(1784), - [anon_sym_f64] = ACTIONS(1784), - [anon_sym_bool] = ACTIONS(1784), - [anon_sym_str] = ACTIONS(1784), - [anon_sym_char] = ACTIONS(1784), - [anon_sym_DASH] = ACTIONS(1241), - [anon_sym_AMP] = ACTIONS(1786), - [anon_sym_PIPE] = ACTIONS(1247), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1451), - [anon_sym_DOT_DOT] = ACTIONS(1251), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1255), - [anon_sym_COLON_COLON] = ACTIONS(1790), - [anon_sym_const] = ACTIONS(1792), - [anon_sym_default] = ACTIONS(1794), - [anon_sym_gen] = ACTIONS(1794), - [anon_sym_union] = ACTIONS(1794), - [anon_sym_ref] = ACTIONS(1281), - [sym_mutable_specifier] = ACTIONS(1457), - [sym_integer_literal] = ACTIONS(1287), - [aux_sym_string_literal_token1] = ACTIONS(1289), - [sym_char_literal] = ACTIONS(1287), - [anon_sym_true] = ACTIONS(1291), - [anon_sym_false] = ACTIONS(1291), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1796), - [sym_super] = ACTIONS(1796), - [sym_crate] = ACTIONS(1796), - [sym_metavariable] = ACTIONS(1798), - [sym__raw_string_literal_start] = ACTIONS(1299), - [sym_float_literal] = ACTIONS(1287), + [sym_identifier] = ACTIONS(2369), + [anon_sym_LPAREN] = ACTIONS(2371), + [anon_sym_LBRACK] = ACTIONS(2375), + [anon_sym_RBRACK] = ACTIONS(3144), + [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(1246), + [anon_sym_AMP] = ACTIONS(2379), + [anon_sym_PIPE] = ACTIONS(1252), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1428), + [anon_sym_DOT_DOT] = ACTIONS(1256), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1260), + [anon_sym_COLON_COLON] = ACTIONS(2383), + [anon_sym_const] = ACTIONS(2385), + [anon_sym_default] = ACTIONS(2387), + [anon_sym_gen] = ACTIONS(2387), + [anon_sym_union] = ACTIONS(2387), + [anon_sym_ref] = ACTIONS(1286), + [sym_mutable_specifier] = ACTIONS(1434), + [sym_integer_literal] = ACTIONS(1292), + [aux_sym_string_literal_token1] = ACTIONS(1294), + [sym_char_literal] = ACTIONS(1292), + [anon_sym_true] = ACTIONS(1296), + [anon_sym_false] = ACTIONS(1296), + [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(2391), + [sym__raw_string_literal_start] = ACTIONS(1304), + [sym_float_literal] = ACTIONS(1292), }, [STATE(819)] = { - [sym_bracketed_type] = STATE(3448), - [sym_generic_type] = STATE(3450), - [sym_generic_type_with_turbofish] = STATE(3159), - [sym_macro_invocation] = STATE(2150), - [sym_scoped_identifier] = STATE(2016), - [sym_scoped_type_identifier] = STATE(2988), - [sym_const_block] = STATE(2150), - [sym__pattern] = STATE(3389), - [sym_generic_pattern] = STATE(2150), - [sym_tuple_pattern] = STATE(2150), - [sym_slice_pattern] = STATE(2150), - [sym_tuple_struct_pattern] = STATE(2150), - [sym_struct_pattern] = STATE(2150), - [sym_remaining_field_pattern] = STATE(2150), - [sym_mut_pattern] = STATE(2150), - [sym_range_pattern] = STATE(2150), - [sym_ref_pattern] = STATE(2150), - [sym_captured_pattern] = STATE(2150), - [sym_reference_pattern] = STATE(2150), - [sym_or_pattern] = STATE(2150), - [sym__literal_pattern] = STATE(2076), - [sym_negative_literal] = STATE(2074), - [sym_string_literal] = STATE(2074), - [sym_raw_string_literal] = STATE(2074), - [sym_boolean_literal] = STATE(2074), + [sym_bracketed_type] = STATE(3581), + [sym_generic_type] = STATE(3475), + [sym_generic_type_with_turbofish] = STATE(3233), + [sym_macro_invocation] = STATE(2163), + [sym_scoped_identifier] = STATE(2032), + [sym_scoped_type_identifier] = STATE(2893), + [sym_const_block] = STATE(2163), + [sym__pattern] = STATE(2780), + [sym_generic_pattern] = STATE(2163), + [sym_tuple_pattern] = STATE(2163), + [sym_slice_pattern] = STATE(2163), + [sym_tuple_struct_pattern] = STATE(2163), + [sym_struct_pattern] = STATE(2163), + [sym_remaining_field_pattern] = STATE(2163), + [sym_mut_pattern] = STATE(2163), + [sym_range_pattern] = STATE(2163), + [sym_ref_pattern] = STATE(2163), + [sym_captured_pattern] = STATE(2163), + [sym_reference_pattern] = STATE(2163), + [sym_or_pattern] = STATE(2163), + [sym__literal_pattern] = STATE(2098), + [sym_negative_literal] = STATE(2095), + [sym_string_literal] = STATE(2095), + [sym_raw_string_literal] = STATE(2095), + [sym_boolean_literal] = STATE(2095), [sym_line_comment] = STATE(819), [sym_block_comment] = STATE(819), - [sym_identifier] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_LBRACK] = ACTIONS(1782), - [anon_sym_u8] = ACTIONS(1784), - [anon_sym_i8] = ACTIONS(1784), - [anon_sym_u16] = ACTIONS(1784), - [anon_sym_i16] = ACTIONS(1784), - [anon_sym_u32] = ACTIONS(1784), - [anon_sym_i32] = ACTIONS(1784), - [anon_sym_u64] = ACTIONS(1784), - [anon_sym_i64] = ACTIONS(1784), - [anon_sym_u128] = ACTIONS(1784), - [anon_sym_i128] = ACTIONS(1784), - [anon_sym_isize] = ACTIONS(1784), - [anon_sym_usize] = ACTIONS(1784), - [anon_sym_f32] = ACTIONS(1784), - [anon_sym_f64] = ACTIONS(1784), - [anon_sym_bool] = ACTIONS(1784), - [anon_sym_str] = ACTIONS(1784), - [anon_sym_char] = ACTIONS(1784), - [anon_sym_DASH] = ACTIONS(1241), - [anon_sym_AMP] = ACTIONS(1786), - [anon_sym_PIPE] = ACTIONS(1247), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1451), - [anon_sym_DOT_DOT] = ACTIONS(1251), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1255), - [anon_sym_COLON_COLON] = ACTIONS(1790), - [anon_sym_const] = ACTIONS(1792), - [anon_sym_default] = ACTIONS(1794), - [anon_sym_gen] = ACTIONS(1794), - [anon_sym_union] = ACTIONS(1794), - [anon_sym_ref] = ACTIONS(1281), - [sym_mutable_specifier] = ACTIONS(1457), - [sym_integer_literal] = ACTIONS(1287), - [aux_sym_string_literal_token1] = ACTIONS(1289), - [sym_char_literal] = ACTIONS(1287), - [anon_sym_true] = ACTIONS(1291), - [anon_sym_false] = ACTIONS(1291), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1796), - [sym_super] = ACTIONS(1796), - [sym_crate] = ACTIONS(1796), - [sym_metavariable] = ACTIONS(1798), - [sym__raw_string_literal_start] = ACTIONS(1299), - [sym_float_literal] = ACTIONS(1287), + [sym_identifier] = ACTIONS(2369), + [anon_sym_LPAREN] = ACTIONS(2371), + [anon_sym_RPAREN] = ACTIONS(3146), + [anon_sym_LBRACK] = 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(1246), + [anon_sym_AMP] = ACTIONS(2379), + [anon_sym_PIPE] = ACTIONS(1252), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1428), + [anon_sym_DOT_DOT] = ACTIONS(1256), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1260), + [anon_sym_COLON_COLON] = ACTIONS(2383), + [anon_sym_const] = ACTIONS(2385), + [anon_sym_default] = ACTIONS(2387), + [anon_sym_gen] = ACTIONS(2387), + [anon_sym_union] = ACTIONS(2387), + [anon_sym_ref] = ACTIONS(1286), + [sym_mutable_specifier] = ACTIONS(1434), + [sym_integer_literal] = ACTIONS(1292), + [aux_sym_string_literal_token1] = ACTIONS(1294), + [sym_char_literal] = ACTIONS(1292), + [anon_sym_true] = ACTIONS(1296), + [anon_sym_false] = ACTIONS(1296), + [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(2391), + [sym__raw_string_literal_start] = ACTIONS(1304), + [sym_float_literal] = ACTIONS(1292), }, [STATE(820)] = { - [sym_bracketed_type] = STATE(3448), - [sym_generic_type] = STATE(3450), - [sym_generic_type_with_turbofish] = STATE(3159), - [sym_macro_invocation] = STATE(2150), - [sym_scoped_identifier] = STATE(2016), - [sym_scoped_type_identifier] = STATE(2988), - [sym_const_block] = STATE(2150), - [sym__pattern] = STATE(2161), - [sym_generic_pattern] = STATE(2150), - [sym_tuple_pattern] = STATE(2150), - [sym_slice_pattern] = STATE(2150), - [sym_tuple_struct_pattern] = STATE(2150), - [sym_struct_pattern] = STATE(2150), - [sym_remaining_field_pattern] = STATE(2150), - [sym_mut_pattern] = STATE(2150), - [sym_range_pattern] = STATE(2150), - [sym_ref_pattern] = STATE(2150), - [sym_captured_pattern] = STATE(2150), - [sym_reference_pattern] = STATE(2150), - [sym_or_pattern] = STATE(2150), - [sym__literal_pattern] = STATE(2076), - [sym_negative_literal] = STATE(2074), - [sym_string_literal] = STATE(2074), - [sym_raw_string_literal] = STATE(2074), - [sym_boolean_literal] = STATE(2074), + [sym_bracketed_type] = STATE(3581), + [sym_generic_type] = STATE(3475), + [sym_generic_type_with_turbofish] = STATE(3233), + [sym_macro_invocation] = STATE(2163), + [sym_scoped_identifier] = STATE(2032), + [sym_scoped_type_identifier] = STATE(2893), + [sym_const_block] = STATE(2163), + [sym__pattern] = STATE(2780), + [sym_generic_pattern] = STATE(2163), + [sym_tuple_pattern] = STATE(2163), + [sym_slice_pattern] = STATE(2163), + [sym_tuple_struct_pattern] = STATE(2163), + [sym_struct_pattern] = STATE(2163), + [sym_remaining_field_pattern] = STATE(2163), + [sym_mut_pattern] = STATE(2163), + [sym_range_pattern] = STATE(2163), + [sym_ref_pattern] = STATE(2163), + [sym_captured_pattern] = STATE(2163), + [sym_reference_pattern] = STATE(2163), + [sym_or_pattern] = STATE(2163), + [sym__literal_pattern] = STATE(2098), + [sym_negative_literal] = STATE(2095), + [sym_string_literal] = STATE(2095), + [sym_raw_string_literal] = STATE(2095), + [sym_boolean_literal] = STATE(2095), [sym_line_comment] = STATE(820), [sym_block_comment] = STATE(820), - [sym_identifier] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_LBRACK] = ACTIONS(1782), - [anon_sym_u8] = ACTIONS(1784), - [anon_sym_i8] = ACTIONS(1784), - [anon_sym_u16] = ACTIONS(1784), - [anon_sym_i16] = ACTIONS(1784), - [anon_sym_u32] = ACTIONS(1784), - [anon_sym_i32] = ACTIONS(1784), - [anon_sym_u64] = ACTIONS(1784), - [anon_sym_i64] = ACTIONS(1784), - [anon_sym_u128] = ACTIONS(1784), - [anon_sym_i128] = ACTIONS(1784), - [anon_sym_isize] = ACTIONS(1784), - [anon_sym_usize] = ACTIONS(1784), - [anon_sym_f32] = ACTIONS(1784), - [anon_sym_f64] = ACTIONS(1784), - [anon_sym_bool] = ACTIONS(1784), - [anon_sym_str] = ACTIONS(1784), - [anon_sym_char] = ACTIONS(1784), - [anon_sym_DASH] = ACTIONS(1241), - [anon_sym_AMP] = ACTIONS(1786), - [anon_sym_PIPE] = ACTIONS(1247), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1451), - [anon_sym_DOT_DOT] = ACTIONS(1251), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1255), - [anon_sym_COLON_COLON] = ACTIONS(1790), - [anon_sym_const] = ACTIONS(1792), - [anon_sym_default] = ACTIONS(1794), - [anon_sym_gen] = ACTIONS(1794), - [anon_sym_union] = ACTIONS(1794), - [anon_sym_ref] = ACTIONS(1281), - [sym_mutable_specifier] = ACTIONS(1457), - [sym_integer_literal] = ACTIONS(1287), - [aux_sym_string_literal_token1] = ACTIONS(1289), - [sym_char_literal] = ACTIONS(1287), - [anon_sym_true] = ACTIONS(1291), - [anon_sym_false] = ACTIONS(1291), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1796), - [sym_super] = ACTIONS(1796), - [sym_crate] = ACTIONS(1796), - [sym_metavariable] = ACTIONS(1798), - [sym__raw_string_literal_start] = ACTIONS(1299), - [sym_float_literal] = ACTIONS(1287), + [sym_identifier] = ACTIONS(2369), + [anon_sym_LPAREN] = ACTIONS(2371), + [anon_sym_RPAREN] = ACTIONS(3148), + [anon_sym_LBRACK] = 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(1246), + [anon_sym_AMP] = ACTIONS(2379), + [anon_sym_PIPE] = ACTIONS(1252), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1428), + [anon_sym_DOT_DOT] = ACTIONS(1256), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1260), + [anon_sym_COLON_COLON] = ACTIONS(2383), + [anon_sym_const] = ACTIONS(2385), + [anon_sym_default] = ACTIONS(2387), + [anon_sym_gen] = ACTIONS(2387), + [anon_sym_union] = ACTIONS(2387), + [anon_sym_ref] = ACTIONS(1286), + [sym_mutable_specifier] = ACTIONS(1434), + [sym_integer_literal] = ACTIONS(1292), + [aux_sym_string_literal_token1] = ACTIONS(1294), + [sym_char_literal] = ACTIONS(1292), + [anon_sym_true] = ACTIONS(1296), + [anon_sym_false] = ACTIONS(1296), + [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(2391), + [sym__raw_string_literal_start] = ACTIONS(1304), + [sym_float_literal] = ACTIONS(1292), }, [STATE(821)] = { - [sym_bracketed_type] = STATE(3448), - [sym_generic_type] = STATE(3450), - [sym_generic_type_with_turbofish] = STATE(3159), - [sym_macro_invocation] = STATE(2150), - [sym_scoped_identifier] = STATE(2016), - [sym_scoped_type_identifier] = STATE(2988), - [sym_const_block] = STATE(2150), - [sym__pattern] = STATE(2183), - [sym_generic_pattern] = STATE(2150), - [sym_tuple_pattern] = STATE(2150), - [sym_slice_pattern] = STATE(2150), - [sym_tuple_struct_pattern] = STATE(2150), - [sym_struct_pattern] = STATE(2150), - [sym_remaining_field_pattern] = STATE(2150), - [sym_mut_pattern] = STATE(2150), - [sym_range_pattern] = STATE(2150), - [sym_ref_pattern] = STATE(2150), - [sym_captured_pattern] = STATE(2150), - [sym_reference_pattern] = STATE(2150), - [sym_or_pattern] = STATE(2150), - [sym__literal_pattern] = STATE(2076), - [sym_negative_literal] = STATE(2074), - [sym_string_literal] = STATE(2074), - [sym_raw_string_literal] = STATE(2074), - [sym_boolean_literal] = STATE(2074), + [sym_bracketed_type] = STATE(3581), + [sym_generic_type] = STATE(3475), + [sym_generic_type_with_turbofish] = STATE(3233), + [sym_macro_invocation] = STATE(2163), + [sym_scoped_identifier] = STATE(2032), + [sym_scoped_type_identifier] = STATE(2893), + [sym_const_block] = STATE(2163), + [sym__pattern] = STATE(2780), + [sym_generic_pattern] = STATE(2163), + [sym_tuple_pattern] = STATE(2163), + [sym_slice_pattern] = STATE(2163), + [sym_tuple_struct_pattern] = STATE(2163), + [sym_struct_pattern] = STATE(2163), + [sym_remaining_field_pattern] = STATE(2163), + [sym_mut_pattern] = STATE(2163), + [sym_range_pattern] = STATE(2163), + [sym_ref_pattern] = STATE(2163), + [sym_captured_pattern] = STATE(2163), + [sym_reference_pattern] = STATE(2163), + [sym_or_pattern] = STATE(2163), + [sym__literal_pattern] = STATE(2098), + [sym_negative_literal] = STATE(2095), + [sym_string_literal] = STATE(2095), + [sym_raw_string_literal] = STATE(2095), + [sym_boolean_literal] = STATE(2095), [sym_line_comment] = STATE(821), [sym_block_comment] = STATE(821), - [sym_identifier] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_LBRACK] = ACTIONS(1782), - [anon_sym_u8] = ACTIONS(1784), - [anon_sym_i8] = ACTIONS(1784), - [anon_sym_u16] = ACTIONS(1784), - [anon_sym_i16] = ACTIONS(1784), - [anon_sym_u32] = ACTIONS(1784), - [anon_sym_i32] = ACTIONS(1784), - [anon_sym_u64] = ACTIONS(1784), - [anon_sym_i64] = ACTIONS(1784), - [anon_sym_u128] = ACTIONS(1784), - [anon_sym_i128] = ACTIONS(1784), - [anon_sym_isize] = ACTIONS(1784), - [anon_sym_usize] = ACTIONS(1784), - [anon_sym_f32] = ACTIONS(1784), - [anon_sym_f64] = ACTIONS(1784), - [anon_sym_bool] = ACTIONS(1784), - [anon_sym_str] = ACTIONS(1784), - [anon_sym_char] = ACTIONS(1784), - [anon_sym_DASH] = ACTIONS(1241), - [anon_sym_AMP] = ACTIONS(1786), - [anon_sym_PIPE] = ACTIONS(1247), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1451), - [anon_sym_DOT_DOT] = ACTIONS(1251), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1255), - [anon_sym_COLON_COLON] = ACTIONS(1790), - [anon_sym_const] = ACTIONS(1792), - [anon_sym_default] = ACTIONS(1794), - [anon_sym_gen] = ACTIONS(1794), - [anon_sym_union] = ACTIONS(1794), - [anon_sym_ref] = ACTIONS(1281), - [sym_mutable_specifier] = ACTIONS(1457), - [sym_integer_literal] = ACTIONS(1287), - [aux_sym_string_literal_token1] = ACTIONS(1289), - [sym_char_literal] = ACTIONS(1287), - [anon_sym_true] = ACTIONS(1291), - [anon_sym_false] = ACTIONS(1291), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1796), - [sym_super] = ACTIONS(1796), - [sym_crate] = ACTIONS(1796), - [sym_metavariable] = ACTIONS(1798), - [sym__raw_string_literal_start] = ACTIONS(1299), - [sym_float_literal] = ACTIONS(1287), + [sym_identifier] = ACTIONS(2369), + [anon_sym_LPAREN] = ACTIONS(2371), + [anon_sym_RPAREN] = ACTIONS(3150), + [anon_sym_LBRACK] = 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(1246), + [anon_sym_AMP] = ACTIONS(2379), + [anon_sym_PIPE] = ACTIONS(1252), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1428), + [anon_sym_DOT_DOT] = ACTIONS(1256), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1260), + [anon_sym_COLON_COLON] = ACTIONS(2383), + [anon_sym_const] = ACTIONS(2385), + [anon_sym_default] = ACTIONS(2387), + [anon_sym_gen] = ACTIONS(2387), + [anon_sym_union] = ACTIONS(2387), + [anon_sym_ref] = ACTIONS(1286), + [sym_mutable_specifier] = ACTIONS(1434), + [sym_integer_literal] = ACTIONS(1292), + [aux_sym_string_literal_token1] = ACTIONS(1294), + [sym_char_literal] = ACTIONS(1292), + [anon_sym_true] = ACTIONS(1296), + [anon_sym_false] = ACTIONS(1296), + [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(2391), + [sym__raw_string_literal_start] = ACTIONS(1304), + [sym_float_literal] = ACTIONS(1292), }, [STATE(822)] = { - [sym_attribute_item] = STATE(1494), - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym_visibility_modifier] = STATE(929), - [sym__type] = STATE(2869), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_bracketed_type] = STATE(3581), + [sym_generic_type] = STATE(3475), + [sym_generic_type_with_turbofish] = STATE(3233), + [sym_macro_invocation] = STATE(2163), + [sym_scoped_identifier] = STATE(2032), + [sym_scoped_type_identifier] = STATE(2893), + [sym_const_block] = STATE(2163), + [sym__pattern] = STATE(2191), + [sym_generic_pattern] = STATE(2163), + [sym_tuple_pattern] = STATE(2163), + [sym_slice_pattern] = STATE(2163), + [sym_tuple_struct_pattern] = STATE(2163), + [sym_struct_pattern] = STATE(2163), + [sym_remaining_field_pattern] = STATE(2163), + [sym_mut_pattern] = STATE(2163), + [sym_range_pattern] = STATE(2163), + [sym_ref_pattern] = STATE(2163), + [sym_captured_pattern] = STATE(2163), + [sym_reference_pattern] = STATE(2163), + [sym_or_pattern] = STATE(2163), + [sym__literal_pattern] = STATE(2098), + [sym_negative_literal] = STATE(2095), + [sym_string_literal] = STATE(2095), + [sym_raw_string_literal] = STATE(2095), + [sym_boolean_literal] = STATE(2095), [sym_line_comment] = STATE(822), [sym_block_comment] = STATE(822), - [aux_sym_enum_variant_list_repeat1] = STATE(1074), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(3052), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1235), - [anon_sym_QMARK] = ACTIONS(1237), - [anon_sym_u8] = ACTIONS(1603), - [anon_sym_i8] = ACTIONS(1603), - [anon_sym_u16] = ACTIONS(1603), - [anon_sym_i16] = ACTIONS(1603), - [anon_sym_u32] = ACTIONS(1603), - [anon_sym_i32] = ACTIONS(1603), - [anon_sym_u64] = ACTIONS(1603), - [anon_sym_i64] = ACTIONS(1603), - [anon_sym_u128] = ACTIONS(1603), - [anon_sym_i128] = ACTIONS(1603), - [anon_sym_isize] = ACTIONS(1603), - [anon_sym_usize] = ACTIONS(1603), - [anon_sym_f32] = ACTIONS(1603), - [anon_sym_f64] = ACTIONS(1603), - [anon_sym_bool] = ACTIONS(1603), - [anon_sym_str] = ACTIONS(1603), - [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1243), - [anon_sym_AMP] = ACTIONS(1605), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_POUND] = ACTIONS(3044), - [anon_sym_SQUOTE] = ACTIONS(3058), - [anon_sym_async] = ACTIONS(1265), - [anon_sym_const] = ACTIONS(1265), - [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1271), - [anon_sym_for] = ACTIONS(1273), - [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1277), - [anon_sym_pub] = ACTIONS(3060), - [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1265), - [anon_sym_extern] = ACTIONS(1279), - [anon_sym_dyn] = ACTIONS(1283), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1619), - [sym_super] = ACTIONS(1619), - [sym_crate] = ACTIONS(3062), - [sym_metavariable] = ACTIONS(1621), + [sym_identifier] = ACTIONS(2369), + [anon_sym_LPAREN] = ACTIONS(2371), + [anon_sym_LBRACK] = 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(1246), + [anon_sym_AMP] = ACTIONS(2379), + [anon_sym_PIPE] = ACTIONS(1252), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1428), + [anon_sym_DOT_DOT] = ACTIONS(1256), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1260), + [anon_sym_COLON_COLON] = ACTIONS(2383), + [anon_sym_const] = ACTIONS(2385), + [anon_sym_default] = ACTIONS(2387), + [anon_sym_gen] = ACTIONS(2387), + [anon_sym_union] = ACTIONS(2387), + [anon_sym_ref] = ACTIONS(1286), + [sym_mutable_specifier] = ACTIONS(3152), + [sym_integer_literal] = ACTIONS(1292), + [aux_sym_string_literal_token1] = ACTIONS(1294), + [sym_char_literal] = ACTIONS(1292), + [anon_sym_true] = ACTIONS(1296), + [anon_sym_false] = ACTIONS(1296), + [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(2391), + [sym__raw_string_literal_start] = ACTIONS(1304), + [sym_float_literal] = ACTIONS(1292), }, [STATE(823)] = { - [sym_bracketed_type] = STATE(3448), - [sym_generic_type] = STATE(3450), - [sym_generic_type_with_turbofish] = STATE(3159), - [sym_macro_invocation] = STATE(2150), - [sym_scoped_identifier] = STATE(2016), - [sym_scoped_type_identifier] = STATE(2988), - [sym_const_block] = STATE(2150), - [sym__pattern] = STATE(2152), - [sym_generic_pattern] = STATE(2150), - [sym_tuple_pattern] = STATE(2150), - [sym_slice_pattern] = STATE(2150), - [sym_tuple_struct_pattern] = STATE(2150), - [sym_struct_pattern] = STATE(2150), - [sym_remaining_field_pattern] = STATE(2150), - [sym_mut_pattern] = STATE(2150), - [sym_range_pattern] = STATE(2150), - [sym_ref_pattern] = STATE(2150), - [sym_captured_pattern] = STATE(2150), - [sym_reference_pattern] = STATE(2150), - [sym_or_pattern] = STATE(2150), - [sym__literal_pattern] = STATE(2076), - [sym_negative_literal] = STATE(2074), - [sym_string_literal] = STATE(2074), - [sym_raw_string_literal] = STATE(2074), - [sym_boolean_literal] = STATE(2074), + [sym_bracketed_type] = STATE(3581), + [sym_generic_type] = STATE(3475), + [sym_generic_type_with_turbofish] = STATE(3233), + [sym_macro_invocation] = STATE(2163), + [sym_scoped_identifier] = STATE(2032), + [sym_scoped_type_identifier] = STATE(2893), + [sym_const_block] = STATE(2163), + [sym__pattern] = STATE(3444), + [sym_generic_pattern] = STATE(2163), + [sym_tuple_pattern] = STATE(2163), + [sym_slice_pattern] = STATE(2163), + [sym_tuple_struct_pattern] = STATE(2163), + [sym_struct_pattern] = STATE(2163), + [sym_remaining_field_pattern] = STATE(2163), + [sym_mut_pattern] = STATE(2163), + [sym_range_pattern] = STATE(2163), + [sym_ref_pattern] = STATE(2163), + [sym_captured_pattern] = STATE(2163), + [sym_reference_pattern] = STATE(2163), + [sym_or_pattern] = STATE(2163), + [sym__literal_pattern] = STATE(2098), + [sym_negative_literal] = STATE(2095), + [sym_string_literal] = STATE(2095), + [sym_raw_string_literal] = STATE(2095), + [sym_boolean_literal] = STATE(2095), [sym_line_comment] = STATE(823), [sym_block_comment] = STATE(823), - [sym_identifier] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_LBRACK] = ACTIONS(1782), - [anon_sym_u8] = ACTIONS(1784), - [anon_sym_i8] = ACTIONS(1784), - [anon_sym_u16] = ACTIONS(1784), - [anon_sym_i16] = ACTIONS(1784), - [anon_sym_u32] = ACTIONS(1784), - [anon_sym_i32] = ACTIONS(1784), - [anon_sym_u64] = ACTIONS(1784), - [anon_sym_i64] = ACTIONS(1784), - [anon_sym_u128] = ACTIONS(1784), - [anon_sym_i128] = ACTIONS(1784), - [anon_sym_isize] = ACTIONS(1784), - [anon_sym_usize] = ACTIONS(1784), - [anon_sym_f32] = ACTIONS(1784), - [anon_sym_f64] = ACTIONS(1784), - [anon_sym_bool] = ACTIONS(1784), - [anon_sym_str] = ACTIONS(1784), - [anon_sym_char] = ACTIONS(1784), - [anon_sym_DASH] = ACTIONS(1241), - [anon_sym_AMP] = ACTIONS(1786), - [anon_sym_PIPE] = ACTIONS(1247), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1451), - [anon_sym_DOT_DOT] = ACTIONS(1251), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1255), - [anon_sym_COLON_COLON] = ACTIONS(1790), - [anon_sym_const] = ACTIONS(1792), - [anon_sym_default] = ACTIONS(1794), - [anon_sym_gen] = ACTIONS(1794), - [anon_sym_union] = ACTIONS(1794), - [anon_sym_ref] = ACTIONS(1281), - [sym_mutable_specifier] = ACTIONS(3130), - [sym_integer_literal] = ACTIONS(1287), - [aux_sym_string_literal_token1] = ACTIONS(1289), - [sym_char_literal] = ACTIONS(1287), - [anon_sym_true] = ACTIONS(1291), - [anon_sym_false] = ACTIONS(1291), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1796), - [sym_super] = ACTIONS(1796), - [sym_crate] = ACTIONS(1796), - [sym_metavariable] = ACTIONS(1798), - [sym__raw_string_literal_start] = ACTIONS(1299), - [sym_float_literal] = ACTIONS(1287), + [sym_identifier] = ACTIONS(2369), + [anon_sym_LPAREN] = ACTIONS(2371), + [anon_sym_LBRACK] = 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(1246), + [anon_sym_AMP] = ACTIONS(2379), + [anon_sym_PIPE] = ACTIONS(1252), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1428), + [anon_sym_DOT_DOT] = ACTIONS(1256), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1260), + [anon_sym_COLON_COLON] = ACTIONS(2383), + [anon_sym_const] = ACTIONS(2385), + [anon_sym_default] = ACTIONS(2387), + [anon_sym_gen] = ACTIONS(2387), + [anon_sym_union] = ACTIONS(2387), + [anon_sym_ref] = ACTIONS(1286), + [sym_mutable_specifier] = ACTIONS(1434), + [sym_integer_literal] = ACTIONS(1292), + [aux_sym_string_literal_token1] = ACTIONS(1294), + [sym_char_literal] = ACTIONS(1292), + [anon_sym_true] = ACTIONS(1296), + [anon_sym_false] = ACTIONS(1296), + [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(2391), + [sym__raw_string_literal_start] = ACTIONS(1304), + [sym_float_literal] = ACTIONS(1292), }, [STATE(824)] = { - [sym_bracketed_type] = STATE(3648), - [sym_generic_type] = STATE(3450), - [sym_generic_type_with_turbofish] = STATE(3370), - [sym_macro_invocation] = STATE(3108), - [sym_scoped_identifier] = STATE(2218), - [sym_scoped_type_identifier] = STATE(3059), - [sym_const_block] = STATE(3108), - [sym__pattern] = STATE(2905), - [sym_generic_pattern] = STATE(3108), - [sym_tuple_pattern] = STATE(3108), - [sym_slice_pattern] = STATE(3108), - [sym_tuple_struct_pattern] = STATE(3108), - [sym_struct_pattern] = STATE(3108), - [sym_remaining_field_pattern] = STATE(3108), - [sym_mut_pattern] = STATE(3108), - [sym_range_pattern] = STATE(3108), - [sym_ref_pattern] = STATE(3108), - [sym_captured_pattern] = STATE(3108), - [sym_reference_pattern] = STATE(3108), - [sym_or_pattern] = STATE(3108), - [sym__literal_pattern] = STATE(2401), - [sym_negative_literal] = STATE(2389), - [sym_string_literal] = STATE(2389), - [sym_raw_string_literal] = STATE(2389), - [sym_boolean_literal] = STATE(2389), + [sym_bracketed_type] = STATE(3581), + [sym_generic_type] = STATE(3475), + [sym_generic_type_with_turbofish] = STATE(3233), + [sym_macro_invocation] = STATE(2163), + [sym_scoped_identifier] = STATE(2032), + [sym_scoped_type_identifier] = STATE(2893), + [sym_const_block] = STATE(2163), + [sym__pattern] = STATE(2505), + [sym_generic_pattern] = STATE(2163), + [sym_tuple_pattern] = STATE(2163), + [sym_slice_pattern] = STATE(2163), + [sym_tuple_struct_pattern] = STATE(2163), + [sym_struct_pattern] = STATE(2163), + [sym_remaining_field_pattern] = STATE(2163), + [sym_mut_pattern] = STATE(2163), + [sym_range_pattern] = STATE(2163), + [sym_ref_pattern] = STATE(2163), + [sym_captured_pattern] = STATE(2163), + [sym_reference_pattern] = STATE(2163), + [sym_or_pattern] = STATE(2163), + [sym__literal_pattern] = STATE(2098), + [sym_negative_literal] = STATE(2095), + [sym_string_literal] = STATE(2095), + [sym_raw_string_literal] = STATE(2095), + [sym_boolean_literal] = STATE(2095), [sym_line_comment] = STATE(824), [sym_block_comment] = STATE(824), - [sym_identifier] = ACTIONS(1645), - [anon_sym_LPAREN] = ACTIONS(1647), - [anon_sym_LBRACK] = ACTIONS(1649), - [anon_sym_u8] = ACTIONS(1653), - [anon_sym_i8] = ACTIONS(1653), - [anon_sym_u16] = ACTIONS(1653), - [anon_sym_i16] = ACTIONS(1653), - [anon_sym_u32] = ACTIONS(1653), - [anon_sym_i32] = ACTIONS(1653), - [anon_sym_u64] = ACTIONS(1653), - [anon_sym_i64] = ACTIONS(1653), - [anon_sym_u128] = ACTIONS(1653), - [anon_sym_i128] = ACTIONS(1653), - [anon_sym_isize] = ACTIONS(1653), - [anon_sym_usize] = ACTIONS(1653), - [anon_sym_f32] = ACTIONS(1653), - [anon_sym_f64] = ACTIONS(1653), - [anon_sym_bool] = ACTIONS(1653), - [anon_sym_str] = ACTIONS(1653), - [anon_sym_char] = ACTIONS(1653), - [anon_sym_DASH] = ACTIONS(1655), - [anon_sym_AMP] = ACTIONS(1657), - [anon_sym_PIPE] = ACTIONS(1659), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1661), - [anon_sym_DOT_DOT] = ACTIONS(1663), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1665), - [anon_sym_COLON_COLON] = ACTIONS(1667), - [anon_sym_const] = ACTIONS(1671), - [anon_sym_default] = ACTIONS(1673), - [anon_sym_gen] = ACTIONS(1673), - [anon_sym_union] = ACTIONS(1673), - [anon_sym_ref] = ACTIONS(1675), - [sym_mutable_specifier] = ACTIONS(3132), - [sym_integer_literal] = ACTIONS(1679), - [aux_sym_string_literal_token1] = ACTIONS(1681), - [sym_char_literal] = ACTIONS(1679), - [anon_sym_true] = ACTIONS(1683), - [anon_sym_false] = ACTIONS(1683), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1685), - [sym_super] = ACTIONS(1685), - [sym_crate] = ACTIONS(1685), - [sym_metavariable] = ACTIONS(1687), - [sym__raw_string_literal_start] = ACTIONS(1689), - [sym_float_literal] = ACTIONS(1679), + [sym_identifier] = ACTIONS(2369), + [anon_sym_LPAREN] = ACTIONS(2371), + [anon_sym_LBRACK] = 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(1246), + [anon_sym_AMP] = ACTIONS(2379), + [anon_sym_PIPE] = ACTIONS(1252), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1428), + [anon_sym_DOT_DOT] = ACTIONS(1256), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1260), + [anon_sym_COLON_COLON] = ACTIONS(2383), + [anon_sym_const] = ACTIONS(2385), + [anon_sym_default] = ACTIONS(2387), + [anon_sym_gen] = ACTIONS(2387), + [anon_sym_union] = ACTIONS(2387), + [anon_sym_ref] = ACTIONS(1286), + [sym_mutable_specifier] = ACTIONS(3154), + [sym_integer_literal] = ACTIONS(1292), + [aux_sym_string_literal_token1] = ACTIONS(1294), + [sym_char_literal] = ACTIONS(1292), + [anon_sym_true] = ACTIONS(1296), + [anon_sym_false] = ACTIONS(1296), + [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(2391), + [sym__raw_string_literal_start] = ACTIONS(1304), + [sym_float_literal] = ACTIONS(1292), }, [STATE(825)] = { - [sym_bracketed_type] = STATE(3448), - [sym_generic_type] = STATE(3450), - [sym_generic_type_with_turbofish] = STATE(3159), - [sym_macro_invocation] = STATE(2150), - [sym_scoped_identifier] = STATE(2016), - [sym_scoped_type_identifier] = STATE(2988), - [sym_const_block] = STATE(2150), - [sym__pattern] = STATE(2153), - [sym_generic_pattern] = STATE(2150), - [sym_tuple_pattern] = STATE(2150), - [sym_slice_pattern] = STATE(2150), - [sym_tuple_struct_pattern] = STATE(2150), - [sym_struct_pattern] = STATE(2150), - [sym_remaining_field_pattern] = STATE(2150), - [sym_mut_pattern] = STATE(2150), - [sym_range_pattern] = STATE(2150), - [sym_ref_pattern] = STATE(2150), - [sym_captured_pattern] = STATE(2150), - [sym_reference_pattern] = STATE(2150), - [sym_or_pattern] = STATE(2150), - [sym__literal_pattern] = STATE(2076), - [sym_negative_literal] = STATE(2074), - [sym_string_literal] = STATE(2074), - [sym_raw_string_literal] = STATE(2074), - [sym_boolean_literal] = STATE(2074), + [sym_bracketed_type] = STATE(3581), + [sym_generic_type] = STATE(3475), + [sym_generic_type_with_turbofish] = STATE(3233), + [sym_macro_invocation] = STATE(2163), + [sym_scoped_identifier] = STATE(2032), + [sym_scoped_type_identifier] = STATE(2893), + [sym_const_block] = STATE(2163), + [sym__pattern] = STATE(2165), + [sym_generic_pattern] = STATE(2163), + [sym_tuple_pattern] = STATE(2163), + [sym_slice_pattern] = STATE(2163), + [sym_tuple_struct_pattern] = STATE(2163), + [sym_struct_pattern] = STATE(2163), + [sym_remaining_field_pattern] = STATE(2163), + [sym_mut_pattern] = STATE(2163), + [sym_range_pattern] = STATE(2163), + [sym_ref_pattern] = STATE(2163), + [sym_captured_pattern] = STATE(2163), + [sym_reference_pattern] = STATE(2163), + [sym_or_pattern] = STATE(2163), + [sym__literal_pattern] = STATE(2098), + [sym_negative_literal] = STATE(2095), + [sym_string_literal] = STATE(2095), + [sym_raw_string_literal] = STATE(2095), + [sym_boolean_literal] = STATE(2095), [sym_line_comment] = STATE(825), [sym_block_comment] = STATE(825), - [sym_identifier] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_LBRACK] = ACTIONS(1782), - [anon_sym_u8] = ACTIONS(1784), - [anon_sym_i8] = ACTIONS(1784), - [anon_sym_u16] = ACTIONS(1784), - [anon_sym_i16] = ACTIONS(1784), - [anon_sym_u32] = ACTIONS(1784), - [anon_sym_i32] = ACTIONS(1784), - [anon_sym_u64] = ACTIONS(1784), - [anon_sym_i64] = ACTIONS(1784), - [anon_sym_u128] = ACTIONS(1784), - [anon_sym_i128] = ACTIONS(1784), - [anon_sym_isize] = ACTIONS(1784), - [anon_sym_usize] = ACTIONS(1784), - [anon_sym_f32] = ACTIONS(1784), - [anon_sym_f64] = ACTIONS(1784), - [anon_sym_bool] = ACTIONS(1784), - [anon_sym_str] = ACTIONS(1784), - [anon_sym_char] = ACTIONS(1784), - [anon_sym_DASH] = ACTIONS(1241), - [anon_sym_AMP] = ACTIONS(1786), - [anon_sym_PIPE] = ACTIONS(1247), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1451), - [anon_sym_DOT_DOT] = ACTIONS(1251), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1255), - [anon_sym_COLON_COLON] = ACTIONS(1790), - [anon_sym_const] = ACTIONS(1792), - [anon_sym_default] = ACTIONS(1794), - [anon_sym_gen] = ACTIONS(1794), - [anon_sym_union] = ACTIONS(1794), - [anon_sym_ref] = ACTIONS(1281), - [sym_mutable_specifier] = ACTIONS(1457), - [sym_integer_literal] = ACTIONS(1287), - [aux_sym_string_literal_token1] = ACTIONS(1289), - [sym_char_literal] = ACTIONS(1287), - [anon_sym_true] = ACTIONS(1291), - [anon_sym_false] = ACTIONS(1291), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1796), - [sym_super] = ACTIONS(1796), - [sym_crate] = ACTIONS(1796), - [sym_metavariable] = ACTIONS(1798), - [sym__raw_string_literal_start] = ACTIONS(1299), - [sym_float_literal] = ACTIONS(1287), + [sym_identifier] = ACTIONS(2369), + [anon_sym_LPAREN] = ACTIONS(2371), + [anon_sym_LBRACK] = 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(1246), + [anon_sym_AMP] = ACTIONS(2379), + [anon_sym_PIPE] = ACTIONS(1252), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1428), + [anon_sym_DOT_DOT] = ACTIONS(1256), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1260), + [anon_sym_COLON_COLON] = ACTIONS(2383), + [anon_sym_const] = ACTIONS(2385), + [anon_sym_default] = ACTIONS(2387), + [anon_sym_gen] = ACTIONS(2387), + [anon_sym_union] = ACTIONS(2387), + [anon_sym_ref] = ACTIONS(1286), + [sym_mutable_specifier] = ACTIONS(1434), + [sym_integer_literal] = ACTIONS(1292), + [aux_sym_string_literal_token1] = ACTIONS(1294), + [sym_char_literal] = ACTIONS(1292), + [anon_sym_true] = ACTIONS(1296), + [anon_sym_false] = ACTIONS(1296), + [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(2391), + [sym__raw_string_literal_start] = ACTIONS(1304), + [sym_float_literal] = ACTIONS(1292), }, [STATE(826)] = { - [sym_bracketed_type] = STATE(3648), - [sym_generic_type] = STATE(3450), - [sym_generic_type_with_turbofish] = STATE(3370), - [sym_macro_invocation] = STATE(3108), - [sym_scoped_identifier] = STATE(2218), - [sym_scoped_type_identifier] = STATE(3059), - [sym_const_block] = STATE(3108), - [sym__pattern] = STATE(2926), - [sym_generic_pattern] = STATE(3108), - [sym_tuple_pattern] = STATE(3108), - [sym_slice_pattern] = STATE(3108), - [sym_tuple_struct_pattern] = STATE(3108), - [sym_struct_pattern] = STATE(3108), - [sym_remaining_field_pattern] = STATE(3108), - [sym_mut_pattern] = STATE(3108), - [sym_range_pattern] = STATE(3108), - [sym_ref_pattern] = STATE(3108), - [sym_captured_pattern] = STATE(3108), - [sym_reference_pattern] = STATE(3108), - [sym_or_pattern] = STATE(3108), - [sym__literal_pattern] = STATE(2401), - [sym_negative_literal] = STATE(2389), - [sym_string_literal] = STATE(2389), - [sym_raw_string_literal] = STATE(2389), - [sym_boolean_literal] = STATE(2389), + [sym_bracketed_type] = STATE(3581), + [sym_generic_type] = STATE(3475), + [sym_generic_type_with_turbofish] = STATE(3233), + [sym_macro_invocation] = STATE(2163), + [sym_scoped_identifier] = STATE(2032), + [sym_scoped_type_identifier] = STATE(2893), + [sym_const_block] = STATE(2163), + [sym__pattern] = STATE(2590), + [sym_generic_pattern] = STATE(2163), + [sym_tuple_pattern] = STATE(2163), + [sym_slice_pattern] = STATE(2163), + [sym_tuple_struct_pattern] = STATE(2163), + [sym_struct_pattern] = STATE(2163), + [sym_remaining_field_pattern] = STATE(2163), + [sym_mut_pattern] = STATE(2163), + [sym_range_pattern] = STATE(2163), + [sym_ref_pattern] = STATE(2163), + [sym_captured_pattern] = STATE(2163), + [sym_reference_pattern] = STATE(2163), + [sym_or_pattern] = STATE(2163), + [sym__literal_pattern] = STATE(2098), + [sym_negative_literal] = STATE(2095), + [sym_string_literal] = STATE(2095), + [sym_raw_string_literal] = STATE(2095), + [sym_boolean_literal] = STATE(2095), [sym_line_comment] = STATE(826), [sym_block_comment] = STATE(826), - [sym_identifier] = ACTIONS(1645), - [anon_sym_LPAREN] = ACTIONS(1647), - [anon_sym_LBRACK] = ACTIONS(1649), - [anon_sym_u8] = ACTIONS(1653), - [anon_sym_i8] = ACTIONS(1653), - [anon_sym_u16] = ACTIONS(1653), - [anon_sym_i16] = ACTIONS(1653), - [anon_sym_u32] = ACTIONS(1653), - [anon_sym_i32] = ACTIONS(1653), - [anon_sym_u64] = ACTIONS(1653), - [anon_sym_i64] = ACTIONS(1653), - [anon_sym_u128] = ACTIONS(1653), - [anon_sym_i128] = ACTIONS(1653), - [anon_sym_isize] = ACTIONS(1653), - [anon_sym_usize] = ACTIONS(1653), - [anon_sym_f32] = ACTIONS(1653), - [anon_sym_f64] = ACTIONS(1653), - [anon_sym_bool] = ACTIONS(1653), - [anon_sym_str] = ACTIONS(1653), - [anon_sym_char] = ACTIONS(1653), - [anon_sym_DASH] = ACTIONS(1655), - [anon_sym_AMP] = ACTIONS(1657), - [anon_sym_PIPE] = ACTIONS(1659), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1661), - [anon_sym_DOT_DOT] = ACTIONS(1663), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1665), - [anon_sym_COLON_COLON] = ACTIONS(1667), - [anon_sym_const] = ACTIONS(1671), - [anon_sym_default] = ACTIONS(1673), - [anon_sym_gen] = ACTIONS(1673), - [anon_sym_union] = ACTIONS(1673), - [anon_sym_ref] = ACTIONS(1675), - [sym_mutable_specifier] = ACTIONS(1677), - [sym_integer_literal] = ACTIONS(1679), - [aux_sym_string_literal_token1] = ACTIONS(1681), - [sym_char_literal] = ACTIONS(1679), - [anon_sym_true] = ACTIONS(1683), - [anon_sym_false] = ACTIONS(1683), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1685), - [sym_super] = ACTIONS(1685), - [sym_crate] = ACTIONS(1685), - [sym_metavariable] = ACTIONS(1687), - [sym__raw_string_literal_start] = ACTIONS(1689), - [sym_float_literal] = ACTIONS(1679), + [sym_identifier] = ACTIONS(2369), + [anon_sym_LPAREN] = ACTIONS(2371), + [anon_sym_LBRACK] = 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(1246), + [anon_sym_AMP] = ACTIONS(2379), + [anon_sym_PIPE] = ACTIONS(1252), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1428), + [anon_sym_DOT_DOT] = ACTIONS(1256), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1260), + [anon_sym_COLON_COLON] = ACTIONS(2383), + [anon_sym_const] = ACTIONS(2385), + [anon_sym_default] = ACTIONS(2387), + [anon_sym_gen] = ACTIONS(2387), + [anon_sym_union] = ACTIONS(2387), + [anon_sym_ref] = ACTIONS(1286), + [sym_mutable_specifier] = ACTIONS(1434), + [sym_integer_literal] = ACTIONS(1292), + [aux_sym_string_literal_token1] = ACTIONS(1294), + [sym_char_literal] = ACTIONS(1292), + [anon_sym_true] = ACTIONS(1296), + [anon_sym_false] = ACTIONS(1296), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(3156), + [sym_super] = ACTIONS(2389), + [sym_crate] = ACTIONS(2389), + [sym_metavariable] = ACTIONS(2391), + [sym__raw_string_literal_start] = ACTIONS(1304), + [sym_float_literal] = ACTIONS(1292), }, [STATE(827)] = { - [sym_bracketed_type] = STATE(3448), - [sym_generic_type] = STATE(3450), - [sym_generic_type_with_turbofish] = STATE(3159), - [sym_macro_invocation] = STATE(2150), - [sym_scoped_identifier] = STATE(2016), - [sym_scoped_type_identifier] = STATE(2988), - [sym_const_block] = STATE(2150), - [sym__pattern] = STATE(2148), - [sym_generic_pattern] = STATE(2150), - [sym_tuple_pattern] = STATE(2150), - [sym_slice_pattern] = STATE(2150), - [sym_tuple_struct_pattern] = STATE(2150), - [sym_struct_pattern] = STATE(2150), - [sym_remaining_field_pattern] = STATE(2150), - [sym_mut_pattern] = STATE(2150), - [sym_range_pattern] = STATE(2150), - [sym_ref_pattern] = STATE(2150), - [sym_captured_pattern] = STATE(2150), - [sym_reference_pattern] = STATE(2150), - [sym_or_pattern] = STATE(2150), - [sym__literal_pattern] = STATE(2076), - [sym_negative_literal] = STATE(2074), - [sym_string_literal] = STATE(2074), - [sym_raw_string_literal] = STATE(2074), - [sym_boolean_literal] = STATE(2074), + [sym_bracketed_type] = STATE(3581), + [sym_generic_type] = STATE(3475), + [sym_generic_type_with_turbofish] = STATE(3233), + [sym_macro_invocation] = STATE(2163), + [sym_scoped_identifier] = STATE(2032), + [sym_scoped_type_identifier] = STATE(2893), + [sym_const_block] = STATE(2163), + [sym__pattern] = STATE(3078), + [sym_generic_pattern] = STATE(2163), + [sym_tuple_pattern] = STATE(2163), + [sym_slice_pattern] = STATE(2163), + [sym_tuple_struct_pattern] = STATE(2163), + [sym_struct_pattern] = STATE(2163), + [sym_remaining_field_pattern] = STATE(2163), + [sym_mut_pattern] = STATE(2163), + [sym_range_pattern] = STATE(2163), + [sym_ref_pattern] = STATE(2163), + [sym_captured_pattern] = STATE(2163), + [sym_reference_pattern] = STATE(2163), + [sym_or_pattern] = STATE(2163), + [sym__literal_pattern] = STATE(2098), + [sym_negative_literal] = STATE(2095), + [sym_string_literal] = STATE(2095), + [sym_raw_string_literal] = STATE(2095), + [sym_boolean_literal] = STATE(2095), [sym_line_comment] = STATE(827), [sym_block_comment] = STATE(827), - [sym_identifier] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_LBRACK] = ACTIONS(1782), - [anon_sym_u8] = ACTIONS(1784), - [anon_sym_i8] = ACTIONS(1784), - [anon_sym_u16] = ACTIONS(1784), - [anon_sym_i16] = ACTIONS(1784), - [anon_sym_u32] = ACTIONS(1784), - [anon_sym_i32] = ACTIONS(1784), - [anon_sym_u64] = ACTIONS(1784), - [anon_sym_i64] = ACTIONS(1784), - [anon_sym_u128] = ACTIONS(1784), - [anon_sym_i128] = ACTIONS(1784), - [anon_sym_isize] = ACTIONS(1784), - [anon_sym_usize] = ACTIONS(1784), - [anon_sym_f32] = ACTIONS(1784), - [anon_sym_f64] = ACTIONS(1784), - [anon_sym_bool] = ACTIONS(1784), - [anon_sym_str] = ACTIONS(1784), - [anon_sym_char] = ACTIONS(1784), - [anon_sym_DASH] = ACTIONS(1241), - [anon_sym_AMP] = ACTIONS(1786), - [anon_sym_PIPE] = ACTIONS(1247), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1451), - [anon_sym_DOT_DOT] = ACTIONS(1251), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1255), - [anon_sym_COLON_COLON] = ACTIONS(1790), - [anon_sym_const] = ACTIONS(1792), - [anon_sym_default] = ACTIONS(1794), - [anon_sym_gen] = ACTIONS(1794), - [anon_sym_union] = ACTIONS(1794), - [anon_sym_ref] = ACTIONS(1281), - [sym_mutable_specifier] = ACTIONS(1457), - [sym_integer_literal] = ACTIONS(1287), - [aux_sym_string_literal_token1] = ACTIONS(1289), - [sym_char_literal] = ACTIONS(1287), - [anon_sym_true] = ACTIONS(1291), - [anon_sym_false] = ACTIONS(1291), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1796), - [sym_super] = ACTIONS(1796), - [sym_crate] = ACTIONS(1796), - [sym_metavariable] = ACTIONS(1798), - [sym__raw_string_literal_start] = ACTIONS(1299), - [sym_float_literal] = ACTIONS(1287), + [sym_identifier] = ACTIONS(2369), + [anon_sym_LPAREN] = ACTIONS(2371), + [anon_sym_LBRACK] = 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(1246), + [anon_sym_AMP] = ACTIONS(2379), + [anon_sym_PIPE] = ACTIONS(1252), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1428), + [anon_sym_DOT_DOT] = ACTIONS(1256), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1260), + [anon_sym_COLON_COLON] = ACTIONS(2383), + [anon_sym_const] = ACTIONS(2385), + [anon_sym_default] = ACTIONS(2387), + [anon_sym_gen] = ACTIONS(2387), + [anon_sym_union] = ACTIONS(2387), + [anon_sym_ref] = ACTIONS(1286), + [sym_mutable_specifier] = ACTIONS(1434), + [sym_integer_literal] = ACTIONS(1292), + [aux_sym_string_literal_token1] = ACTIONS(1294), + [sym_char_literal] = ACTIONS(1292), + [anon_sym_true] = ACTIONS(1296), + [anon_sym_false] = ACTIONS(1296), + [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(2391), + [sym__raw_string_literal_start] = ACTIONS(1304), + [sym_float_literal] = ACTIONS(1292), }, [STATE(828)] = { - [sym_bracketed_type] = STATE(3448), - [sym_generic_type] = STATE(3450), - [sym_generic_type_with_turbofish] = STATE(3159), - [sym_macro_invocation] = STATE(2150), - [sym_scoped_identifier] = STATE(2016), - [sym_scoped_type_identifier] = STATE(2988), - [sym_const_block] = STATE(2150), - [sym__pattern] = STATE(2151), - [sym_generic_pattern] = STATE(2150), - [sym_tuple_pattern] = STATE(2150), - [sym_slice_pattern] = STATE(2150), - [sym_tuple_struct_pattern] = STATE(2150), - [sym_struct_pattern] = STATE(2150), - [sym_remaining_field_pattern] = STATE(2150), - [sym_mut_pattern] = STATE(2150), - [sym_range_pattern] = STATE(2150), - [sym_ref_pattern] = STATE(2150), - [sym_captured_pattern] = STATE(2150), - [sym_reference_pattern] = STATE(2150), - [sym_or_pattern] = STATE(2150), - [sym__literal_pattern] = STATE(2076), - [sym_negative_literal] = STATE(2074), - [sym_string_literal] = STATE(2074), - [sym_raw_string_literal] = STATE(2074), - [sym_boolean_literal] = STATE(2074), + [sym_bracketed_type] = STATE(3581), + [sym_generic_type] = STATE(3475), + [sym_generic_type_with_turbofish] = STATE(3233), + [sym_macro_invocation] = STATE(2163), + [sym_scoped_identifier] = STATE(2032), + [sym_scoped_type_identifier] = STATE(2893), + [sym_const_block] = STATE(2163), + [sym__pattern] = STATE(2195), + [sym_generic_pattern] = STATE(2163), + [sym_tuple_pattern] = STATE(2163), + [sym_slice_pattern] = STATE(2163), + [sym_tuple_struct_pattern] = STATE(2163), + [sym_struct_pattern] = STATE(2163), + [sym_remaining_field_pattern] = STATE(2163), + [sym_mut_pattern] = STATE(2163), + [sym_range_pattern] = STATE(2163), + [sym_ref_pattern] = STATE(2163), + [sym_captured_pattern] = STATE(2163), + [sym_reference_pattern] = STATE(2163), + [sym_or_pattern] = STATE(2163), + [sym__literal_pattern] = STATE(2098), + [sym_negative_literal] = STATE(2095), + [sym_string_literal] = STATE(2095), + [sym_raw_string_literal] = STATE(2095), + [sym_boolean_literal] = STATE(2095), [sym_line_comment] = STATE(828), [sym_block_comment] = STATE(828), - [sym_identifier] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_LBRACK] = ACTIONS(1782), - [anon_sym_u8] = ACTIONS(1784), - [anon_sym_i8] = ACTIONS(1784), - [anon_sym_u16] = ACTIONS(1784), - [anon_sym_i16] = ACTIONS(1784), - [anon_sym_u32] = ACTIONS(1784), - [anon_sym_i32] = ACTIONS(1784), - [anon_sym_u64] = ACTIONS(1784), - [anon_sym_i64] = ACTIONS(1784), - [anon_sym_u128] = ACTIONS(1784), - [anon_sym_i128] = ACTIONS(1784), - [anon_sym_isize] = ACTIONS(1784), - [anon_sym_usize] = ACTIONS(1784), - [anon_sym_f32] = ACTIONS(1784), - [anon_sym_f64] = ACTIONS(1784), - [anon_sym_bool] = ACTIONS(1784), - [anon_sym_str] = ACTIONS(1784), - [anon_sym_char] = ACTIONS(1784), - [anon_sym_DASH] = ACTIONS(1241), - [anon_sym_AMP] = ACTIONS(1786), - [anon_sym_PIPE] = ACTIONS(1247), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1451), - [anon_sym_DOT_DOT] = ACTIONS(1251), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1255), - [anon_sym_COLON_COLON] = ACTIONS(1790), - [anon_sym_const] = ACTIONS(1792), - [anon_sym_default] = ACTIONS(1794), - [anon_sym_gen] = ACTIONS(1794), - [anon_sym_union] = ACTIONS(1794), - [anon_sym_ref] = ACTIONS(1281), - [sym_mutable_specifier] = ACTIONS(1457), - [sym_integer_literal] = ACTIONS(1287), - [aux_sym_string_literal_token1] = ACTIONS(1289), - [sym_char_literal] = ACTIONS(1287), - [anon_sym_true] = ACTIONS(1291), - [anon_sym_false] = ACTIONS(1291), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1796), - [sym_super] = ACTIONS(1796), - [sym_crate] = ACTIONS(1796), - [sym_metavariable] = ACTIONS(1798), - [sym__raw_string_literal_start] = ACTIONS(1299), - [sym_float_literal] = ACTIONS(1287), + [sym_identifier] = ACTIONS(2369), + [anon_sym_LPAREN] = ACTIONS(2371), + [anon_sym_LBRACK] = 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(1246), + [anon_sym_AMP] = ACTIONS(2379), + [anon_sym_PIPE] = ACTIONS(1252), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1428), + [anon_sym_DOT_DOT] = ACTIONS(1256), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1260), + [anon_sym_COLON_COLON] = ACTIONS(2383), + [anon_sym_const] = ACTIONS(2385), + [anon_sym_default] = ACTIONS(2387), + [anon_sym_gen] = ACTIONS(2387), + [anon_sym_union] = ACTIONS(2387), + [anon_sym_ref] = ACTIONS(1286), + [sym_mutable_specifier] = ACTIONS(1434), + [sym_integer_literal] = ACTIONS(1292), + [aux_sym_string_literal_token1] = ACTIONS(1294), + [sym_char_literal] = ACTIONS(1292), + [anon_sym_true] = ACTIONS(1296), + [anon_sym_false] = ACTIONS(1296), + [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(2391), + [sym__raw_string_literal_start] = ACTIONS(1304), + [sym_float_literal] = ACTIONS(1292), }, [STATE(829)] = { - [sym_bracketed_type] = STATE(3648), - [sym_generic_type] = STATE(3450), - [sym_generic_type_with_turbofish] = STATE(3370), - [sym_macro_invocation] = STATE(3108), - [sym_scoped_identifier] = STATE(2218), - [sym_scoped_type_identifier] = STATE(3059), - [sym_const_block] = STATE(3108), - [sym__pattern] = STATE(2907), - [sym_generic_pattern] = STATE(3108), - [sym_tuple_pattern] = STATE(3108), - [sym_slice_pattern] = STATE(3108), - [sym_tuple_struct_pattern] = STATE(3108), - [sym_struct_pattern] = STATE(3108), - [sym_remaining_field_pattern] = STATE(3108), - [sym_mut_pattern] = STATE(3108), - [sym_range_pattern] = STATE(3108), - [sym_ref_pattern] = STATE(3108), - [sym_captured_pattern] = STATE(3108), - [sym_reference_pattern] = STATE(3108), - [sym_or_pattern] = STATE(3108), - [sym__literal_pattern] = STATE(2401), - [sym_negative_literal] = STATE(2389), - [sym_string_literal] = STATE(2389), - [sym_raw_string_literal] = STATE(2389), - [sym_boolean_literal] = STATE(2389), + [sym_bracketed_type] = STATE(3581), + [sym_generic_type] = STATE(3475), + [sym_generic_type_with_turbofish] = STATE(3233), + [sym_macro_invocation] = STATE(2163), + [sym_scoped_identifier] = STATE(2032), + [sym_scoped_type_identifier] = STATE(2893), + [sym_const_block] = STATE(2163), + [sym__pattern] = STATE(2202), + [sym_generic_pattern] = STATE(2163), + [sym_tuple_pattern] = STATE(2163), + [sym_slice_pattern] = STATE(2163), + [sym_tuple_struct_pattern] = STATE(2163), + [sym_struct_pattern] = STATE(2163), + [sym_remaining_field_pattern] = STATE(2163), + [sym_mut_pattern] = STATE(2163), + [sym_range_pattern] = STATE(2163), + [sym_ref_pattern] = STATE(2163), + [sym_captured_pattern] = STATE(2163), + [sym_reference_pattern] = STATE(2163), + [sym_or_pattern] = STATE(2163), + [sym__literal_pattern] = STATE(2098), + [sym_negative_literal] = STATE(2095), + [sym_string_literal] = STATE(2095), + [sym_raw_string_literal] = STATE(2095), + [sym_boolean_literal] = STATE(2095), [sym_line_comment] = STATE(829), [sym_block_comment] = STATE(829), - [sym_identifier] = ACTIONS(1645), - [anon_sym_LPAREN] = ACTIONS(1647), - [anon_sym_LBRACK] = ACTIONS(1649), - [anon_sym_u8] = ACTIONS(1653), - [anon_sym_i8] = ACTIONS(1653), - [anon_sym_u16] = ACTIONS(1653), - [anon_sym_i16] = ACTIONS(1653), - [anon_sym_u32] = ACTIONS(1653), - [anon_sym_i32] = ACTIONS(1653), - [anon_sym_u64] = ACTIONS(1653), - [anon_sym_i64] = ACTIONS(1653), - [anon_sym_u128] = ACTIONS(1653), - [anon_sym_i128] = ACTIONS(1653), - [anon_sym_isize] = ACTIONS(1653), - [anon_sym_usize] = ACTIONS(1653), - [anon_sym_f32] = ACTIONS(1653), - [anon_sym_f64] = ACTIONS(1653), - [anon_sym_bool] = ACTIONS(1653), - [anon_sym_str] = ACTIONS(1653), - [anon_sym_char] = ACTIONS(1653), - [anon_sym_DASH] = ACTIONS(1655), - [anon_sym_AMP] = ACTIONS(1657), - [anon_sym_PIPE] = ACTIONS(1659), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1661), - [anon_sym_DOT_DOT] = ACTIONS(1663), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1665), - [anon_sym_COLON_COLON] = ACTIONS(1667), - [anon_sym_const] = ACTIONS(1671), - [anon_sym_default] = ACTIONS(1673), - [anon_sym_gen] = ACTIONS(1673), - [anon_sym_union] = ACTIONS(1673), - [anon_sym_ref] = ACTIONS(1675), - [sym_mutable_specifier] = ACTIONS(1677), - [sym_integer_literal] = ACTIONS(1679), - [aux_sym_string_literal_token1] = ACTIONS(1681), - [sym_char_literal] = ACTIONS(1679), - [anon_sym_true] = ACTIONS(1683), - [anon_sym_false] = ACTIONS(1683), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1685), - [sym_super] = ACTIONS(1685), - [sym_crate] = ACTIONS(1685), - [sym_metavariable] = ACTIONS(1687), - [sym__raw_string_literal_start] = ACTIONS(1689), - [sym_float_literal] = ACTIONS(1679), + [sym_identifier] = ACTIONS(2369), + [anon_sym_LPAREN] = ACTIONS(2371), + [anon_sym_LBRACK] = 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(1246), + [anon_sym_AMP] = ACTIONS(2379), + [anon_sym_PIPE] = ACTIONS(1252), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1428), + [anon_sym_DOT_DOT] = ACTIONS(1256), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1260), + [anon_sym_COLON_COLON] = ACTIONS(2383), + [anon_sym_const] = ACTIONS(2385), + [anon_sym_default] = ACTIONS(2387), + [anon_sym_gen] = ACTIONS(2387), + [anon_sym_union] = ACTIONS(2387), + [anon_sym_ref] = ACTIONS(1286), + [sym_mutable_specifier] = ACTIONS(1434), + [sym_integer_literal] = ACTIONS(1292), + [aux_sym_string_literal_token1] = ACTIONS(1294), + [sym_char_literal] = ACTIONS(1292), + [anon_sym_true] = ACTIONS(1296), + [anon_sym_false] = ACTIONS(1296), + [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(2391), + [sym__raw_string_literal_start] = ACTIONS(1304), + [sym_float_literal] = ACTIONS(1292), }, [STATE(830)] = { - [sym_bracketed_type] = STATE(3648), - [sym_generic_type] = STATE(3450), - [sym_generic_type_with_turbofish] = STATE(3370), - [sym_macro_invocation] = STATE(3108), - [sym_scoped_identifier] = STATE(2218), - [sym_scoped_type_identifier] = STATE(3059), - [sym_const_block] = STATE(3108), - [sym__pattern] = STATE(2953), - [sym_generic_pattern] = STATE(3108), - [sym_tuple_pattern] = STATE(3108), - [sym_slice_pattern] = STATE(3108), - [sym_tuple_struct_pattern] = STATE(3108), - [sym_struct_pattern] = STATE(3108), - [sym_remaining_field_pattern] = STATE(3108), - [sym_mut_pattern] = STATE(3108), - [sym_range_pattern] = STATE(3108), - [sym_ref_pattern] = STATE(3108), - [sym_captured_pattern] = STATE(3108), - [sym_reference_pattern] = STATE(3108), - [sym_or_pattern] = STATE(3108), - [sym__literal_pattern] = STATE(2401), - [sym_negative_literal] = STATE(2389), - [sym_string_literal] = STATE(2389), - [sym_raw_string_literal] = STATE(2389), - [sym_boolean_literal] = STATE(2389), + [sym_bracketed_type] = STATE(3581), + [sym_generic_type] = STATE(3475), + [sym_generic_type_with_turbofish] = STATE(3233), + [sym_macro_invocation] = STATE(2163), + [sym_scoped_identifier] = STATE(2032), + [sym_scoped_type_identifier] = STATE(2893), + [sym_const_block] = STATE(2163), + [sym__pattern] = STATE(2561), + [sym_generic_pattern] = STATE(2163), + [sym_tuple_pattern] = STATE(2163), + [sym_slice_pattern] = STATE(2163), + [sym_tuple_struct_pattern] = STATE(2163), + [sym_struct_pattern] = STATE(2163), + [sym_remaining_field_pattern] = STATE(2163), + [sym_mut_pattern] = STATE(2163), + [sym_range_pattern] = STATE(2163), + [sym_ref_pattern] = STATE(2163), + [sym_captured_pattern] = STATE(2163), + [sym_reference_pattern] = STATE(2163), + [sym_or_pattern] = STATE(2163), + [sym__literal_pattern] = STATE(2098), + [sym_negative_literal] = STATE(2095), + [sym_string_literal] = STATE(2095), + [sym_raw_string_literal] = STATE(2095), + [sym_boolean_literal] = STATE(2095), [sym_line_comment] = STATE(830), [sym_block_comment] = STATE(830), - [sym_identifier] = ACTIONS(1645), - [anon_sym_LPAREN] = ACTIONS(1647), - [anon_sym_LBRACK] = ACTIONS(1649), - [anon_sym_u8] = ACTIONS(1653), - [anon_sym_i8] = ACTIONS(1653), - [anon_sym_u16] = ACTIONS(1653), - [anon_sym_i16] = ACTIONS(1653), - [anon_sym_u32] = ACTIONS(1653), - [anon_sym_i32] = ACTIONS(1653), - [anon_sym_u64] = ACTIONS(1653), - [anon_sym_i64] = ACTIONS(1653), - [anon_sym_u128] = ACTIONS(1653), - [anon_sym_i128] = ACTIONS(1653), - [anon_sym_isize] = ACTIONS(1653), - [anon_sym_usize] = ACTIONS(1653), - [anon_sym_f32] = ACTIONS(1653), - [anon_sym_f64] = ACTIONS(1653), - [anon_sym_bool] = ACTIONS(1653), - [anon_sym_str] = ACTIONS(1653), - [anon_sym_char] = ACTIONS(1653), - [anon_sym_DASH] = ACTIONS(1655), - [anon_sym_AMP] = ACTIONS(1657), - [anon_sym_PIPE] = ACTIONS(1659), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1661), - [anon_sym_DOT_DOT] = ACTIONS(1663), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1665), - [anon_sym_COLON_COLON] = ACTIONS(1667), - [anon_sym_const] = ACTIONS(1671), - [anon_sym_default] = ACTIONS(1673), - [anon_sym_gen] = ACTIONS(1673), - [anon_sym_union] = ACTIONS(1673), - [anon_sym_ref] = ACTIONS(1675), - [sym_mutable_specifier] = ACTIONS(1677), - [sym_integer_literal] = ACTIONS(1679), - [aux_sym_string_literal_token1] = ACTIONS(1681), - [sym_char_literal] = ACTIONS(1679), - [anon_sym_true] = ACTIONS(1683), - [anon_sym_false] = ACTIONS(1683), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1685), - [sym_super] = ACTIONS(1685), - [sym_crate] = ACTIONS(1685), - [sym_metavariable] = ACTIONS(1687), - [sym__raw_string_literal_start] = ACTIONS(1689), - [sym_float_literal] = ACTIONS(1679), + [sym_identifier] = ACTIONS(2369), + [anon_sym_LPAREN] = ACTIONS(2371), + [anon_sym_LBRACK] = 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(1246), + [anon_sym_AMP] = ACTIONS(2379), + [anon_sym_PIPE] = ACTIONS(1252), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1428), + [anon_sym_DOT_DOT] = ACTIONS(1256), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1260), + [anon_sym_COLON_COLON] = ACTIONS(2383), + [anon_sym_const] = ACTIONS(2385), + [anon_sym_default] = ACTIONS(2387), + [anon_sym_gen] = ACTIONS(2387), + [anon_sym_union] = ACTIONS(2387), + [anon_sym_ref] = ACTIONS(1286), + [sym_mutable_specifier] = ACTIONS(1434), + [sym_integer_literal] = ACTIONS(1292), + [aux_sym_string_literal_token1] = ACTIONS(1294), + [sym_char_literal] = ACTIONS(1292), + [anon_sym_true] = ACTIONS(1296), + [anon_sym_false] = ACTIONS(1296), + [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(2391), + [sym__raw_string_literal_start] = ACTIONS(1304), + [sym_float_literal] = ACTIONS(1292), }, [STATE(831)] = { - [sym_attribute_item] = STATE(1494), - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym_visibility_modifier] = STATE(891), - [sym__type] = STATE(2667), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_bracketed_type] = STATE(3581), + [sym_generic_type] = STATE(3475), + [sym_generic_type_with_turbofish] = STATE(3233), + [sym_macro_invocation] = STATE(2163), + [sym_scoped_identifier] = STATE(2032), + [sym_scoped_type_identifier] = STATE(2893), + [sym_const_block] = STATE(2163), + [sym__pattern] = STATE(3323), + [sym_generic_pattern] = STATE(2163), + [sym_tuple_pattern] = STATE(2163), + [sym_slice_pattern] = STATE(2163), + [sym_tuple_struct_pattern] = STATE(2163), + [sym_struct_pattern] = STATE(2163), + [sym_remaining_field_pattern] = STATE(2163), + [sym_mut_pattern] = STATE(2163), + [sym_range_pattern] = STATE(2163), + [sym_ref_pattern] = STATE(2163), + [sym_captured_pattern] = STATE(2163), + [sym_reference_pattern] = STATE(2163), + [sym_or_pattern] = STATE(2163), + [sym__literal_pattern] = STATE(2098), + [sym_negative_literal] = STATE(2095), + [sym_string_literal] = STATE(2095), + [sym_raw_string_literal] = STATE(2095), + [sym_boolean_literal] = STATE(2095), [sym_line_comment] = STATE(831), [sym_block_comment] = STATE(831), - [aux_sym_enum_variant_list_repeat1] = STATE(1074), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(3052), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1235), - [anon_sym_QMARK] = ACTIONS(1237), - [anon_sym_u8] = ACTIONS(1603), - [anon_sym_i8] = ACTIONS(1603), - [anon_sym_u16] = ACTIONS(1603), - [anon_sym_i16] = ACTIONS(1603), - [anon_sym_u32] = ACTIONS(1603), - [anon_sym_i32] = ACTIONS(1603), - [anon_sym_u64] = ACTIONS(1603), - [anon_sym_i64] = ACTIONS(1603), - [anon_sym_u128] = ACTIONS(1603), - [anon_sym_i128] = ACTIONS(1603), - [anon_sym_isize] = ACTIONS(1603), - [anon_sym_usize] = ACTIONS(1603), - [anon_sym_f32] = ACTIONS(1603), - [anon_sym_f64] = ACTIONS(1603), - [anon_sym_bool] = ACTIONS(1603), - [anon_sym_str] = ACTIONS(1603), - [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1243), - [anon_sym_AMP] = ACTIONS(1605), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_POUND] = ACTIONS(3044), - [anon_sym_SQUOTE] = ACTIONS(3058), - [anon_sym_async] = ACTIONS(1265), - [anon_sym_const] = ACTIONS(1265), - [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1271), - [anon_sym_for] = ACTIONS(1273), - [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1277), - [anon_sym_pub] = ACTIONS(3060), - [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1265), - [anon_sym_extern] = ACTIONS(1279), - [anon_sym_dyn] = ACTIONS(1283), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1619), - [sym_super] = ACTIONS(1619), - [sym_crate] = ACTIONS(3062), - [sym_metavariable] = ACTIONS(1621), + [sym_identifier] = ACTIONS(2369), + [anon_sym_LPAREN] = ACTIONS(2371), + [anon_sym_LBRACK] = 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(1246), + [anon_sym_AMP] = ACTIONS(2379), + [anon_sym_PIPE] = ACTIONS(1252), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1428), + [anon_sym_DOT_DOT] = ACTIONS(1256), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1260), + [anon_sym_COLON_COLON] = ACTIONS(2383), + [anon_sym_const] = ACTIONS(2385), + [anon_sym_default] = ACTIONS(2387), + [anon_sym_gen] = ACTIONS(2387), + [anon_sym_union] = ACTIONS(2387), + [anon_sym_ref] = ACTIONS(1286), + [sym_mutable_specifier] = ACTIONS(1434), + [sym_integer_literal] = ACTIONS(1292), + [aux_sym_string_literal_token1] = ACTIONS(1294), + [sym_char_literal] = ACTIONS(1292), + [anon_sym_true] = ACTIONS(1296), + [anon_sym_false] = ACTIONS(1296), + [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(2391), + [sym__raw_string_literal_start] = ACTIONS(1304), + [sym_float_literal] = ACTIONS(1292), }, [STATE(832)] = { - [sym_attribute_item] = STATE(1494), - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym_visibility_modifier] = STATE(906), - [sym__type] = STATE(2871), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_bracketed_type] = STATE(3581), + [sym_generic_type] = STATE(3475), + [sym_generic_type_with_turbofish] = STATE(3233), + [sym_macro_invocation] = STATE(2163), + [sym_scoped_identifier] = STATE(2032), + [sym_scoped_type_identifier] = STATE(2893), + [sym_const_block] = STATE(2163), + [sym__pattern] = STATE(2990), + [sym_generic_pattern] = STATE(2163), + [sym_tuple_pattern] = STATE(2163), + [sym_slice_pattern] = STATE(2163), + [sym_tuple_struct_pattern] = STATE(2163), + [sym_struct_pattern] = STATE(2163), + [sym_remaining_field_pattern] = STATE(2163), + [sym_mut_pattern] = STATE(2163), + [sym_range_pattern] = STATE(2163), + [sym_ref_pattern] = STATE(2163), + [sym_captured_pattern] = STATE(2163), + [sym_reference_pattern] = STATE(2163), + [sym_or_pattern] = STATE(2163), + [sym__literal_pattern] = STATE(2098), + [sym_negative_literal] = STATE(2095), + [sym_string_literal] = STATE(2095), + [sym_raw_string_literal] = STATE(2095), + [sym_boolean_literal] = STATE(2095), [sym_line_comment] = STATE(832), [sym_block_comment] = STATE(832), - [aux_sym_enum_variant_list_repeat1] = STATE(822), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(3052), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1235), - [anon_sym_QMARK] = ACTIONS(1237), - [anon_sym_u8] = ACTIONS(1603), - [anon_sym_i8] = ACTIONS(1603), - [anon_sym_u16] = ACTIONS(1603), - [anon_sym_i16] = ACTIONS(1603), - [anon_sym_u32] = ACTIONS(1603), - [anon_sym_i32] = ACTIONS(1603), - [anon_sym_u64] = ACTIONS(1603), - [anon_sym_i64] = ACTIONS(1603), - [anon_sym_u128] = ACTIONS(1603), - [anon_sym_i128] = ACTIONS(1603), - [anon_sym_isize] = ACTIONS(1603), - [anon_sym_usize] = ACTIONS(1603), - [anon_sym_f32] = ACTIONS(1603), - [anon_sym_f64] = ACTIONS(1603), - [anon_sym_bool] = ACTIONS(1603), - [anon_sym_str] = ACTIONS(1603), - [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1243), - [anon_sym_AMP] = ACTIONS(1605), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_POUND] = ACTIONS(3044), - [anon_sym_SQUOTE] = ACTIONS(3058), - [anon_sym_async] = ACTIONS(1265), - [anon_sym_const] = ACTIONS(1265), - [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1271), - [anon_sym_for] = ACTIONS(1273), - [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1277), - [anon_sym_pub] = ACTIONS(3060), - [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1265), - [anon_sym_extern] = ACTIONS(1279), - [anon_sym_dyn] = ACTIONS(1283), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1619), - [sym_super] = ACTIONS(1619), - [sym_crate] = ACTIONS(3062), - [sym_metavariable] = ACTIONS(1621), + [sym_identifier] = ACTIONS(2369), + [anon_sym_LPAREN] = ACTIONS(2371), + [anon_sym_LBRACK] = 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(1246), + [anon_sym_AMP] = ACTIONS(2379), + [anon_sym_PIPE] = ACTIONS(1252), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1428), + [anon_sym_DOT_DOT] = ACTIONS(1256), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1260), + [anon_sym_COLON_COLON] = ACTIONS(2383), + [anon_sym_const] = ACTIONS(2385), + [anon_sym_default] = ACTIONS(2387), + [anon_sym_gen] = ACTIONS(2387), + [anon_sym_union] = ACTIONS(2387), + [anon_sym_ref] = ACTIONS(1286), + [sym_mutable_specifier] = ACTIONS(1434), + [sym_integer_literal] = ACTIONS(1292), + [aux_sym_string_literal_token1] = ACTIONS(1294), + [sym_char_literal] = ACTIONS(1292), + [anon_sym_true] = ACTIONS(1296), + [anon_sym_false] = ACTIONS(1296), + [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(2391), + [sym__raw_string_literal_start] = ACTIONS(1304), + [sym_float_literal] = ACTIONS(1292), }, [STATE(833)] = { - [sym_bracketed_type] = STATE(3448), - [sym_generic_type] = STATE(3450), - [sym_generic_type_with_turbofish] = STATE(3159), - [sym_macro_invocation] = STATE(2150), - [sym_scoped_identifier] = STATE(2016), - [sym_scoped_type_identifier] = STATE(2988), - [sym_const_block] = STATE(2150), - [sym__pattern] = STATE(3179), - [sym_generic_pattern] = STATE(2150), - [sym_tuple_pattern] = STATE(2150), - [sym_slice_pattern] = STATE(2150), - [sym_tuple_struct_pattern] = STATE(2150), - [sym_struct_pattern] = STATE(2150), - [sym_remaining_field_pattern] = STATE(2150), - [sym_mut_pattern] = STATE(2150), - [sym_range_pattern] = STATE(2150), - [sym_ref_pattern] = STATE(2150), - [sym_captured_pattern] = STATE(2150), - [sym_reference_pattern] = STATE(2150), - [sym_or_pattern] = STATE(2150), - [sym__literal_pattern] = STATE(2076), - [sym_negative_literal] = STATE(2074), - [sym_string_literal] = STATE(2074), - [sym_raw_string_literal] = STATE(2074), - [sym_boolean_literal] = STATE(2074), + [sym_bracketed_type] = STATE(3677), + [sym_generic_type] = STATE(3475), + [sym_generic_type_with_turbofish] = STATE(3405), + [sym_macro_invocation] = STATE(2996), + [sym_scoped_identifier] = STATE(2238), + [sym_scoped_type_identifier] = STATE(3090), + [sym_const_block] = STATE(2996), + [sym__pattern] = STATE(3154), + [sym_generic_pattern] = STATE(2996), + [sym_tuple_pattern] = STATE(2996), + [sym_slice_pattern] = STATE(2996), + [sym_tuple_struct_pattern] = STATE(2996), + [sym_struct_pattern] = STATE(2996), + [sym_remaining_field_pattern] = STATE(2996), + [sym_mut_pattern] = STATE(2996), + [sym_range_pattern] = STATE(2996), + [sym_ref_pattern] = STATE(2996), + [sym_captured_pattern] = STATE(2996), + [sym_reference_pattern] = STATE(2996), + [sym_or_pattern] = STATE(2996), + [sym__literal_pattern] = STATE(2429), + [sym_negative_literal] = STATE(2440), + [sym_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_boolean_literal] = STATE(2440), [sym_line_comment] = STATE(833), [sym_block_comment] = STATE(833), - [sym_identifier] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_LBRACK] = ACTIONS(1782), - [anon_sym_u8] = ACTIONS(1784), - [anon_sym_i8] = ACTIONS(1784), - [anon_sym_u16] = ACTIONS(1784), - [anon_sym_i16] = ACTIONS(1784), - [anon_sym_u32] = ACTIONS(1784), - [anon_sym_i32] = ACTIONS(1784), - [anon_sym_u64] = ACTIONS(1784), - [anon_sym_i64] = ACTIONS(1784), - [anon_sym_u128] = ACTIONS(1784), - [anon_sym_i128] = ACTIONS(1784), - [anon_sym_isize] = ACTIONS(1784), - [anon_sym_usize] = ACTIONS(1784), - [anon_sym_f32] = ACTIONS(1784), - [anon_sym_f64] = ACTIONS(1784), - [anon_sym_bool] = ACTIONS(1784), - [anon_sym_str] = ACTIONS(1784), - [anon_sym_char] = ACTIONS(1784), - [anon_sym_DASH] = ACTIONS(1241), - [anon_sym_AMP] = ACTIONS(1786), - [anon_sym_PIPE] = ACTIONS(1247), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1451), - [anon_sym_DOT_DOT] = ACTIONS(1251), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1255), - [anon_sym_COLON_COLON] = ACTIONS(1790), - [anon_sym_const] = ACTIONS(1792), - [anon_sym_default] = ACTIONS(1794), - [anon_sym_gen] = ACTIONS(1794), - [anon_sym_union] = ACTIONS(1794), - [anon_sym_ref] = ACTIONS(1281), - [sym_mutable_specifier] = ACTIONS(1457), - [sym_integer_literal] = ACTIONS(1287), - [aux_sym_string_literal_token1] = ACTIONS(1289), - [sym_char_literal] = ACTIONS(1287), - [anon_sym_true] = ACTIONS(1291), - [anon_sym_false] = ACTIONS(1291), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1796), - [sym_super] = ACTIONS(1796), - [sym_crate] = ACTIONS(1796), - [sym_metavariable] = ACTIONS(1798), - [sym__raw_string_literal_start] = ACTIONS(1299), - [sym_float_literal] = ACTIONS(1287), + [sym_identifier] = ACTIONS(1650), + [anon_sym_LPAREN] = ACTIONS(1652), + [anon_sym_LBRACK] = ACTIONS(1654), + [anon_sym_u8] = ACTIONS(1658), + [anon_sym_i8] = ACTIONS(1658), + [anon_sym_u16] = ACTIONS(1658), + [anon_sym_i16] = ACTIONS(1658), + [anon_sym_u32] = ACTIONS(1658), + [anon_sym_i32] = ACTIONS(1658), + [anon_sym_u64] = ACTIONS(1658), + [anon_sym_i64] = ACTIONS(1658), + [anon_sym_u128] = ACTIONS(1658), + [anon_sym_i128] = ACTIONS(1658), + [anon_sym_isize] = ACTIONS(1658), + [anon_sym_usize] = ACTIONS(1658), + [anon_sym_f32] = ACTIONS(1658), + [anon_sym_f64] = ACTIONS(1658), + [anon_sym_bool] = ACTIONS(1658), + [anon_sym_str] = ACTIONS(1658), + [anon_sym_char] = ACTIONS(1658), + [anon_sym_DASH] = ACTIONS(1660), + [anon_sym_AMP] = ACTIONS(1662), + [anon_sym_PIPE] = ACTIONS(1664), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1666), + [anon_sym_DOT_DOT] = ACTIONS(1668), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1670), + [anon_sym_COLON_COLON] = ACTIONS(1672), + [anon_sym_const] = ACTIONS(1676), + [anon_sym_default] = ACTIONS(1678), + [anon_sym_gen] = ACTIONS(1678), + [anon_sym_union] = ACTIONS(1678), + [anon_sym_ref] = ACTIONS(1680), + [sym_mutable_specifier] = ACTIONS(3158), + [sym_integer_literal] = ACTIONS(1684), + [aux_sym_string_literal_token1] = ACTIONS(1686), + [sym_char_literal] = ACTIONS(1684), + [anon_sym_true] = ACTIONS(1688), + [anon_sym_false] = ACTIONS(1688), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1690), + [sym_super] = ACTIONS(1690), + [sym_crate] = ACTIONS(1690), + [sym_metavariable] = ACTIONS(1692), + [sym__raw_string_literal_start] = ACTIONS(1694), + [sym_float_literal] = ACTIONS(1684), }, [STATE(834)] = { - [sym_bracketed_type] = STATE(3448), - [sym_generic_type] = STATE(3450), - [sym_generic_type_with_turbofish] = STATE(3159), - [sym_macro_invocation] = STATE(2150), - [sym_scoped_identifier] = STATE(2016), - [sym_scoped_type_identifier] = STATE(2988), - [sym_const_block] = STATE(2150), - [sym__pattern] = STATE(2486), - [sym_generic_pattern] = STATE(2150), - [sym_tuple_pattern] = STATE(2150), - [sym_slice_pattern] = STATE(2150), - [sym_tuple_struct_pattern] = STATE(2150), - [sym_struct_pattern] = STATE(2150), - [sym_remaining_field_pattern] = STATE(2150), - [sym_mut_pattern] = STATE(2150), - [sym_range_pattern] = STATE(2150), - [sym_ref_pattern] = STATE(2150), - [sym_captured_pattern] = STATE(2150), - [sym_reference_pattern] = STATE(2150), - [sym_or_pattern] = STATE(2150), - [sym__literal_pattern] = STATE(2076), - [sym_negative_literal] = STATE(2074), - [sym_string_literal] = STATE(2074), - [sym_raw_string_literal] = STATE(2074), - [sym_boolean_literal] = STATE(2074), + [sym_bracketed_type] = STATE(3677), + [sym_generic_type] = STATE(3475), + [sym_generic_type_with_turbofish] = STATE(3405), + [sym_macro_invocation] = STATE(2996), + [sym_scoped_identifier] = STATE(2238), + [sym_scoped_type_identifier] = STATE(3090), + [sym_const_block] = STATE(2996), + [sym__pattern] = STATE(2859), + [sym_generic_pattern] = STATE(2996), + [sym_tuple_pattern] = STATE(2996), + [sym_slice_pattern] = STATE(2996), + [sym_tuple_struct_pattern] = STATE(2996), + [sym_struct_pattern] = STATE(2996), + [sym_remaining_field_pattern] = STATE(2996), + [sym_mut_pattern] = STATE(2996), + [sym_range_pattern] = STATE(2996), + [sym_ref_pattern] = STATE(2996), + [sym_captured_pattern] = STATE(2996), + [sym_reference_pattern] = STATE(2996), + [sym_or_pattern] = STATE(2996), + [sym__literal_pattern] = STATE(2429), + [sym_negative_literal] = STATE(2440), + [sym_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_boolean_literal] = STATE(2440), [sym_line_comment] = STATE(834), [sym_block_comment] = STATE(834), - [sym_identifier] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_LBRACK] = ACTIONS(1782), - [anon_sym_u8] = ACTIONS(1784), - [anon_sym_i8] = ACTIONS(1784), - [anon_sym_u16] = ACTIONS(1784), - [anon_sym_i16] = ACTIONS(1784), - [anon_sym_u32] = ACTIONS(1784), - [anon_sym_i32] = ACTIONS(1784), - [anon_sym_u64] = ACTIONS(1784), - [anon_sym_i64] = ACTIONS(1784), - [anon_sym_u128] = ACTIONS(1784), - [anon_sym_i128] = ACTIONS(1784), - [anon_sym_isize] = ACTIONS(1784), - [anon_sym_usize] = ACTIONS(1784), - [anon_sym_f32] = ACTIONS(1784), - [anon_sym_f64] = ACTIONS(1784), - [anon_sym_bool] = ACTIONS(1784), - [anon_sym_str] = ACTIONS(1784), - [anon_sym_char] = ACTIONS(1784), - [anon_sym_DASH] = ACTIONS(1241), - [anon_sym_AMP] = ACTIONS(1786), - [anon_sym_PIPE] = ACTIONS(1247), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1451), - [anon_sym_DOT_DOT] = ACTIONS(1251), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1255), - [anon_sym_COLON_COLON] = ACTIONS(1790), - [anon_sym_const] = ACTIONS(1792), - [anon_sym_default] = ACTIONS(1794), - [anon_sym_gen] = ACTIONS(1794), - [anon_sym_union] = ACTIONS(1794), - [anon_sym_ref] = ACTIONS(1281), - [sym_mutable_specifier] = ACTIONS(3134), - [sym_integer_literal] = ACTIONS(1287), - [aux_sym_string_literal_token1] = ACTIONS(1289), - [sym_char_literal] = ACTIONS(1287), - [anon_sym_true] = ACTIONS(1291), - [anon_sym_false] = ACTIONS(1291), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1796), - [sym_super] = ACTIONS(1796), - [sym_crate] = ACTIONS(1796), - [sym_metavariable] = ACTIONS(1798), - [sym__raw_string_literal_start] = ACTIONS(1299), - [sym_float_literal] = ACTIONS(1287), + [sym_identifier] = ACTIONS(1650), + [anon_sym_LPAREN] = ACTIONS(1652), + [anon_sym_LBRACK] = ACTIONS(1654), + [anon_sym_u8] = ACTIONS(1658), + [anon_sym_i8] = ACTIONS(1658), + [anon_sym_u16] = ACTIONS(1658), + [anon_sym_i16] = ACTIONS(1658), + [anon_sym_u32] = ACTIONS(1658), + [anon_sym_i32] = ACTIONS(1658), + [anon_sym_u64] = ACTIONS(1658), + [anon_sym_i64] = ACTIONS(1658), + [anon_sym_u128] = ACTIONS(1658), + [anon_sym_i128] = ACTIONS(1658), + [anon_sym_isize] = ACTIONS(1658), + [anon_sym_usize] = ACTIONS(1658), + [anon_sym_f32] = ACTIONS(1658), + [anon_sym_f64] = ACTIONS(1658), + [anon_sym_bool] = ACTIONS(1658), + [anon_sym_str] = ACTIONS(1658), + [anon_sym_char] = ACTIONS(1658), + [anon_sym_DASH] = ACTIONS(1660), + [anon_sym_AMP] = ACTIONS(1662), + [anon_sym_PIPE] = ACTIONS(1664), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1666), + [anon_sym_DOT_DOT] = ACTIONS(1668), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1670), + [anon_sym_COLON_COLON] = ACTIONS(1672), + [anon_sym_const] = ACTIONS(1676), + [anon_sym_default] = ACTIONS(1678), + [anon_sym_gen] = ACTIONS(1678), + [anon_sym_union] = ACTIONS(1678), + [anon_sym_ref] = ACTIONS(1680), + [sym_mutable_specifier] = ACTIONS(1682), + [sym_integer_literal] = ACTIONS(1684), + [aux_sym_string_literal_token1] = ACTIONS(1686), + [sym_char_literal] = ACTIONS(1684), + [anon_sym_true] = ACTIONS(1688), + [anon_sym_false] = ACTIONS(1688), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1690), + [sym_super] = ACTIONS(1690), + [sym_crate] = ACTIONS(1690), + [sym_metavariable] = ACTIONS(1692), + [sym__raw_string_literal_start] = ACTIONS(1694), + [sym_float_literal] = ACTIONS(1684), }, [STATE(835)] = { - [sym_bracketed_type] = STATE(3448), - [sym_generic_type] = STATE(3450), - [sym_generic_type_with_turbofish] = STATE(3159), - [sym_macro_invocation] = STATE(2150), - [sym_scoped_identifier] = STATE(2016), - [sym_scoped_type_identifier] = STATE(2988), - [sym_const_block] = STATE(2150), - [sym__pattern] = STATE(3401), - [sym_generic_pattern] = STATE(2150), - [sym_tuple_pattern] = STATE(2150), - [sym_slice_pattern] = STATE(2150), - [sym_tuple_struct_pattern] = STATE(2150), - [sym_struct_pattern] = STATE(2150), - [sym_remaining_field_pattern] = STATE(2150), - [sym_mut_pattern] = STATE(2150), - [sym_range_pattern] = STATE(2150), - [sym_ref_pattern] = STATE(2150), - [sym_captured_pattern] = STATE(2150), - [sym_reference_pattern] = STATE(2150), - [sym_or_pattern] = STATE(2150), - [sym__literal_pattern] = STATE(2076), - [sym_negative_literal] = STATE(2074), - [sym_string_literal] = STATE(2074), - [sym_raw_string_literal] = STATE(2074), - [sym_boolean_literal] = STATE(2074), + [sym_bracketed_type] = STATE(3677), + [sym_generic_type] = STATE(3475), + [sym_generic_type_with_turbofish] = STATE(3405), + [sym_macro_invocation] = STATE(2996), + [sym_scoped_identifier] = STATE(2238), + [sym_scoped_type_identifier] = STATE(3090), + [sym_const_block] = STATE(2996), + [sym__pattern] = STATE(3158), + [sym_generic_pattern] = STATE(2996), + [sym_tuple_pattern] = STATE(2996), + [sym_slice_pattern] = STATE(2996), + [sym_tuple_struct_pattern] = STATE(2996), + [sym_struct_pattern] = STATE(2996), + [sym_remaining_field_pattern] = STATE(2996), + [sym_mut_pattern] = STATE(2996), + [sym_range_pattern] = STATE(2996), + [sym_ref_pattern] = STATE(2996), + [sym_captured_pattern] = STATE(2996), + [sym_reference_pattern] = STATE(2996), + [sym_or_pattern] = STATE(2996), + [sym__literal_pattern] = STATE(2429), + [sym_negative_literal] = STATE(2440), + [sym_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_boolean_literal] = STATE(2440), [sym_line_comment] = STATE(835), [sym_block_comment] = STATE(835), - [sym_identifier] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_LBRACK] = ACTIONS(1782), - [anon_sym_u8] = ACTIONS(1784), - [anon_sym_i8] = ACTIONS(1784), - [anon_sym_u16] = ACTIONS(1784), - [anon_sym_i16] = ACTIONS(1784), - [anon_sym_u32] = ACTIONS(1784), - [anon_sym_i32] = ACTIONS(1784), - [anon_sym_u64] = ACTIONS(1784), - [anon_sym_i64] = ACTIONS(1784), - [anon_sym_u128] = ACTIONS(1784), - [anon_sym_i128] = ACTIONS(1784), - [anon_sym_isize] = ACTIONS(1784), - [anon_sym_usize] = ACTIONS(1784), - [anon_sym_f32] = ACTIONS(1784), - [anon_sym_f64] = ACTIONS(1784), - [anon_sym_bool] = ACTIONS(1784), - [anon_sym_str] = ACTIONS(1784), - [anon_sym_char] = ACTIONS(1784), - [anon_sym_DASH] = ACTIONS(1241), - [anon_sym_AMP] = ACTIONS(1786), - [anon_sym_PIPE] = ACTIONS(1247), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1451), - [anon_sym_DOT_DOT] = ACTIONS(1251), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1255), - [anon_sym_COLON_COLON] = ACTIONS(1790), - [anon_sym_const] = ACTIONS(1792), - [anon_sym_default] = ACTIONS(1794), - [anon_sym_gen] = ACTIONS(1794), - [anon_sym_union] = ACTIONS(1794), - [anon_sym_ref] = ACTIONS(1281), - [sym_mutable_specifier] = ACTIONS(1457), - [sym_integer_literal] = ACTIONS(1287), - [aux_sym_string_literal_token1] = ACTIONS(1289), - [sym_char_literal] = ACTIONS(1287), - [anon_sym_true] = ACTIONS(1291), - [anon_sym_false] = ACTIONS(1291), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1796), - [sym_super] = ACTIONS(1796), - [sym_crate] = ACTIONS(1796), - [sym_metavariable] = ACTIONS(1798), - [sym__raw_string_literal_start] = ACTIONS(1299), - [sym_float_literal] = ACTIONS(1287), + [sym_identifier] = ACTIONS(1650), + [anon_sym_LPAREN] = ACTIONS(1652), + [anon_sym_LBRACK] = ACTIONS(1654), + [anon_sym_u8] = ACTIONS(1658), + [anon_sym_i8] = ACTIONS(1658), + [anon_sym_u16] = ACTIONS(1658), + [anon_sym_i16] = ACTIONS(1658), + [anon_sym_u32] = ACTIONS(1658), + [anon_sym_i32] = ACTIONS(1658), + [anon_sym_u64] = ACTIONS(1658), + [anon_sym_i64] = ACTIONS(1658), + [anon_sym_u128] = ACTIONS(1658), + [anon_sym_i128] = ACTIONS(1658), + [anon_sym_isize] = ACTIONS(1658), + [anon_sym_usize] = ACTIONS(1658), + [anon_sym_f32] = ACTIONS(1658), + [anon_sym_f64] = ACTIONS(1658), + [anon_sym_bool] = ACTIONS(1658), + [anon_sym_str] = ACTIONS(1658), + [anon_sym_char] = ACTIONS(1658), + [anon_sym_DASH] = ACTIONS(1660), + [anon_sym_AMP] = ACTIONS(1662), + [anon_sym_PIPE] = ACTIONS(1664), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1666), + [anon_sym_DOT_DOT] = ACTIONS(1668), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1670), + [anon_sym_COLON_COLON] = ACTIONS(1672), + [anon_sym_const] = ACTIONS(1676), + [anon_sym_default] = ACTIONS(1678), + [anon_sym_gen] = ACTIONS(1678), + [anon_sym_union] = ACTIONS(1678), + [anon_sym_ref] = ACTIONS(1680), + [sym_mutable_specifier] = ACTIONS(1682), + [sym_integer_literal] = ACTIONS(1684), + [aux_sym_string_literal_token1] = ACTIONS(1686), + [sym_char_literal] = ACTIONS(1684), + [anon_sym_true] = ACTIONS(1688), + [anon_sym_false] = ACTIONS(1688), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1690), + [sym_super] = ACTIONS(1690), + [sym_crate] = ACTIONS(1690), + [sym_metavariable] = ACTIONS(1692), + [sym__raw_string_literal_start] = ACTIONS(1694), + [sym_float_literal] = ACTIONS(1684), }, [STATE(836)] = { - [sym_bracketed_type] = STATE(3448), - [sym_generic_type] = STATE(3450), - [sym_generic_type_with_turbofish] = STATE(3159), - [sym_macro_invocation] = STATE(2150), - [sym_scoped_identifier] = STATE(2016), - [sym_scoped_type_identifier] = STATE(2988), - [sym_const_block] = STATE(2150), - [sym__pattern] = STATE(2512), - [sym_generic_pattern] = STATE(2150), - [sym_tuple_pattern] = STATE(2150), - [sym_slice_pattern] = STATE(2150), - [sym_tuple_struct_pattern] = STATE(2150), - [sym_struct_pattern] = STATE(2150), - [sym_remaining_field_pattern] = STATE(2150), - [sym_mut_pattern] = STATE(2150), - [sym_range_pattern] = STATE(2150), - [sym_ref_pattern] = STATE(2150), - [sym_captured_pattern] = STATE(2150), - [sym_reference_pattern] = STATE(2150), - [sym_or_pattern] = STATE(2150), - [sym__literal_pattern] = STATE(2076), - [sym_negative_literal] = STATE(2074), - [sym_string_literal] = STATE(2074), - [sym_raw_string_literal] = STATE(2074), - [sym_boolean_literal] = STATE(2074), + [sym_bracketed_type] = STATE(3677), + [sym_generic_type] = STATE(3475), + [sym_generic_type_with_turbofish] = STATE(3405), + [sym_macro_invocation] = STATE(2996), + [sym_scoped_identifier] = STATE(2238), + [sym_scoped_type_identifier] = STATE(3090), + [sym_const_block] = STATE(2996), + [sym__pattern] = STATE(2903), + [sym_generic_pattern] = STATE(2996), + [sym_tuple_pattern] = STATE(2996), + [sym_slice_pattern] = STATE(2996), + [sym_tuple_struct_pattern] = STATE(2996), + [sym_struct_pattern] = STATE(2996), + [sym_remaining_field_pattern] = STATE(2996), + [sym_mut_pattern] = STATE(2996), + [sym_range_pattern] = STATE(2996), + [sym_ref_pattern] = STATE(2996), + [sym_captured_pattern] = STATE(2996), + [sym_reference_pattern] = STATE(2996), + [sym_or_pattern] = STATE(2996), + [sym__literal_pattern] = STATE(2429), + [sym_negative_literal] = STATE(2440), + [sym_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_boolean_literal] = STATE(2440), [sym_line_comment] = STATE(836), [sym_block_comment] = STATE(836), - [sym_identifier] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_LBRACK] = ACTIONS(1782), - [anon_sym_u8] = ACTIONS(1784), - [anon_sym_i8] = ACTIONS(1784), - [anon_sym_u16] = ACTIONS(1784), - [anon_sym_i16] = ACTIONS(1784), - [anon_sym_u32] = ACTIONS(1784), - [anon_sym_i32] = ACTIONS(1784), - [anon_sym_u64] = ACTIONS(1784), - [anon_sym_i64] = ACTIONS(1784), - [anon_sym_u128] = ACTIONS(1784), - [anon_sym_i128] = ACTIONS(1784), - [anon_sym_isize] = ACTIONS(1784), - [anon_sym_usize] = ACTIONS(1784), - [anon_sym_f32] = ACTIONS(1784), - [anon_sym_f64] = ACTIONS(1784), - [anon_sym_bool] = ACTIONS(1784), - [anon_sym_str] = ACTIONS(1784), - [anon_sym_char] = ACTIONS(1784), - [anon_sym_DASH] = ACTIONS(1241), - [anon_sym_AMP] = ACTIONS(1786), - [anon_sym_PIPE] = ACTIONS(1247), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1451), - [anon_sym_DOT_DOT] = ACTIONS(1251), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1255), - [anon_sym_COLON_COLON] = ACTIONS(1790), - [anon_sym_const] = ACTIONS(1792), - [anon_sym_default] = ACTIONS(1794), - [anon_sym_gen] = ACTIONS(1794), - [anon_sym_union] = ACTIONS(1794), - [anon_sym_ref] = ACTIONS(1281), - [sym_mutable_specifier] = ACTIONS(1457), - [sym_integer_literal] = ACTIONS(1287), - [aux_sym_string_literal_token1] = ACTIONS(1289), - [sym_char_literal] = ACTIONS(1287), - [anon_sym_true] = ACTIONS(1291), - [anon_sym_false] = ACTIONS(1291), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1796), - [sym_super] = ACTIONS(1796), - [sym_crate] = ACTIONS(1796), - [sym_metavariable] = ACTIONS(1798), - [sym__raw_string_literal_start] = ACTIONS(1299), - [sym_float_literal] = ACTIONS(1287), + [sym_identifier] = ACTIONS(1650), + [anon_sym_LPAREN] = ACTIONS(1652), + [anon_sym_LBRACK] = ACTIONS(1654), + [anon_sym_u8] = ACTIONS(1658), + [anon_sym_i8] = ACTIONS(1658), + [anon_sym_u16] = ACTIONS(1658), + [anon_sym_i16] = ACTIONS(1658), + [anon_sym_u32] = ACTIONS(1658), + [anon_sym_i32] = ACTIONS(1658), + [anon_sym_u64] = ACTIONS(1658), + [anon_sym_i64] = ACTIONS(1658), + [anon_sym_u128] = ACTIONS(1658), + [anon_sym_i128] = ACTIONS(1658), + [anon_sym_isize] = ACTIONS(1658), + [anon_sym_usize] = ACTIONS(1658), + [anon_sym_f32] = ACTIONS(1658), + [anon_sym_f64] = ACTIONS(1658), + [anon_sym_bool] = ACTIONS(1658), + [anon_sym_str] = ACTIONS(1658), + [anon_sym_char] = ACTIONS(1658), + [anon_sym_DASH] = ACTIONS(1660), + [anon_sym_AMP] = ACTIONS(1662), + [anon_sym_PIPE] = ACTIONS(1664), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1666), + [anon_sym_DOT_DOT] = ACTIONS(1668), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1670), + [anon_sym_COLON_COLON] = ACTIONS(1672), + [anon_sym_const] = ACTIONS(1676), + [anon_sym_default] = ACTIONS(1678), + [anon_sym_gen] = ACTIONS(1678), + [anon_sym_union] = ACTIONS(1678), + [anon_sym_ref] = ACTIONS(1680), + [sym_mutable_specifier] = ACTIONS(1682), + [sym_integer_literal] = ACTIONS(1684), + [aux_sym_string_literal_token1] = ACTIONS(1686), + [sym_char_literal] = ACTIONS(1684), + [anon_sym_true] = ACTIONS(1688), + [anon_sym_false] = ACTIONS(1688), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1690), + [sym_super] = ACTIONS(1690), + [sym_crate] = ACTIONS(1690), + [sym_metavariable] = ACTIONS(1692), + [sym__raw_string_literal_start] = ACTIONS(1694), + [sym_float_literal] = ACTIONS(1684), }, [STATE(837)] = { - [sym_bracketed_type] = STATE(3448), - [sym_generic_type] = STATE(3450), - [sym_generic_type_with_turbofish] = STATE(3159), - [sym_macro_invocation] = STATE(2150), - [sym_scoped_identifier] = STATE(2016), - [sym_scoped_type_identifier] = STATE(2988), - [sym_const_block] = STATE(2150), - [sym__pattern] = STATE(2535), - [sym_generic_pattern] = STATE(2150), - [sym_tuple_pattern] = STATE(2150), - [sym_slice_pattern] = STATE(2150), - [sym_tuple_struct_pattern] = STATE(2150), - [sym_struct_pattern] = STATE(2150), - [sym_remaining_field_pattern] = STATE(2150), - [sym_mut_pattern] = STATE(2150), - [sym_range_pattern] = STATE(2150), - [sym_ref_pattern] = STATE(2150), - [sym_captured_pattern] = STATE(2150), - [sym_reference_pattern] = STATE(2150), - [sym_or_pattern] = STATE(2150), - [sym__literal_pattern] = STATE(2076), - [sym_negative_literal] = STATE(2074), - [sym_string_literal] = STATE(2074), - [sym_raw_string_literal] = STATE(2074), - [sym_boolean_literal] = STATE(2074), + [sym_bracketed_type] = STATE(3581), + [sym_generic_type] = STATE(3475), + [sym_generic_type_with_turbofish] = STATE(3233), + [sym_macro_invocation] = STATE(2163), + [sym_scoped_identifier] = STATE(2032), + [sym_scoped_type_identifier] = STATE(2893), + [sym_const_block] = STATE(2163), + [sym__pattern] = STATE(3445), + [sym_generic_pattern] = STATE(2163), + [sym_tuple_pattern] = STATE(2163), + [sym_slice_pattern] = STATE(2163), + [sym_tuple_struct_pattern] = STATE(2163), + [sym_struct_pattern] = STATE(2163), + [sym_remaining_field_pattern] = STATE(2163), + [sym_mut_pattern] = STATE(2163), + [sym_range_pattern] = STATE(2163), + [sym_ref_pattern] = STATE(2163), + [sym_captured_pattern] = STATE(2163), + [sym_reference_pattern] = STATE(2163), + [sym_or_pattern] = STATE(2163), + [sym__literal_pattern] = STATE(2098), + [sym_negative_literal] = STATE(2095), + [sym_string_literal] = STATE(2095), + [sym_raw_string_literal] = STATE(2095), + [sym_boolean_literal] = STATE(2095), [sym_line_comment] = STATE(837), [sym_block_comment] = STATE(837), - [sym_identifier] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_LBRACK] = ACTIONS(1782), - [anon_sym_u8] = ACTIONS(1784), - [anon_sym_i8] = ACTIONS(1784), - [anon_sym_u16] = ACTIONS(1784), - [anon_sym_i16] = ACTIONS(1784), - [anon_sym_u32] = ACTIONS(1784), - [anon_sym_i32] = ACTIONS(1784), - [anon_sym_u64] = ACTIONS(1784), - [anon_sym_i64] = ACTIONS(1784), - [anon_sym_u128] = ACTIONS(1784), - [anon_sym_i128] = ACTIONS(1784), - [anon_sym_isize] = ACTIONS(1784), - [anon_sym_usize] = ACTIONS(1784), - [anon_sym_f32] = ACTIONS(1784), - [anon_sym_f64] = ACTIONS(1784), - [anon_sym_bool] = ACTIONS(1784), - [anon_sym_str] = ACTIONS(1784), - [anon_sym_char] = ACTIONS(1784), - [anon_sym_DASH] = ACTIONS(1241), - [anon_sym_AMP] = ACTIONS(1786), - [anon_sym_PIPE] = ACTIONS(1247), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1451), - [anon_sym_DOT_DOT] = ACTIONS(1251), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1255), - [anon_sym_COLON_COLON] = ACTIONS(1790), - [anon_sym_const] = ACTIONS(1792), - [anon_sym_default] = ACTIONS(1794), - [anon_sym_gen] = ACTIONS(1794), - [anon_sym_union] = ACTIONS(1794), - [anon_sym_ref] = ACTIONS(1281), - [sym_mutable_specifier] = ACTIONS(1457), - [sym_integer_literal] = ACTIONS(1287), - [aux_sym_string_literal_token1] = ACTIONS(1289), - [sym_char_literal] = ACTIONS(1287), - [anon_sym_true] = ACTIONS(1291), - [anon_sym_false] = ACTIONS(1291), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1796), - [sym_super] = ACTIONS(1796), - [sym_crate] = ACTIONS(1796), - [sym_metavariable] = ACTIONS(1798), - [sym__raw_string_literal_start] = ACTIONS(1299), - [sym_float_literal] = ACTIONS(1287), + [sym_identifier] = ACTIONS(2369), + [anon_sym_LPAREN] = ACTIONS(2371), + [anon_sym_LBRACK] = 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(1246), + [anon_sym_AMP] = ACTIONS(2379), + [anon_sym_PIPE] = ACTIONS(1252), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1428), + [anon_sym_DOT_DOT] = ACTIONS(1256), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1260), + [anon_sym_COLON_COLON] = ACTIONS(2383), + [anon_sym_const] = ACTIONS(2385), + [anon_sym_default] = ACTIONS(2387), + [anon_sym_gen] = ACTIONS(2387), + [anon_sym_union] = ACTIONS(2387), + [anon_sym_ref] = ACTIONS(1286), + [sym_mutable_specifier] = ACTIONS(1434), + [sym_integer_literal] = ACTIONS(1292), + [aux_sym_string_literal_token1] = ACTIONS(1294), + [sym_char_literal] = ACTIONS(1292), + [anon_sym_true] = ACTIONS(1296), + [anon_sym_false] = ACTIONS(1296), + [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(2391), + [sym__raw_string_literal_start] = ACTIONS(1304), + [sym_float_literal] = ACTIONS(1292), }, [STATE(838)] = { - [sym_bracketed_type] = STATE(3448), - [sym_generic_type] = STATE(3450), - [sym_generic_type_with_turbofish] = STATE(3159), - [sym_macro_invocation] = STATE(2150), - [sym_scoped_identifier] = STATE(2016), - [sym_scoped_type_identifier] = STATE(2988), - [sym_const_block] = STATE(2150), - [sym__pattern] = STATE(3193), - [sym_generic_pattern] = STATE(2150), - [sym_tuple_pattern] = STATE(2150), - [sym_slice_pattern] = STATE(2150), - [sym_tuple_struct_pattern] = STATE(2150), - [sym_struct_pattern] = STATE(2150), - [sym_remaining_field_pattern] = STATE(2150), - [sym_mut_pattern] = STATE(2150), - [sym_range_pattern] = STATE(2150), - [sym_ref_pattern] = STATE(2150), - [sym_captured_pattern] = STATE(2150), - [sym_reference_pattern] = STATE(2150), - [sym_or_pattern] = STATE(2150), - [sym__literal_pattern] = STATE(2076), - [sym_negative_literal] = STATE(2074), - [sym_string_literal] = STATE(2074), - [sym_raw_string_literal] = STATE(2074), - [sym_boolean_literal] = STATE(2074), + [sym_bracketed_type] = STATE(3581), + [sym_generic_type] = STATE(3475), + [sym_generic_type_with_turbofish] = STATE(3233), + [sym_macro_invocation] = STATE(2163), + [sym_scoped_identifier] = STATE(2032), + [sym_scoped_type_identifier] = STATE(2893), + [sym_const_block] = STATE(2163), + [sym__pattern] = STATE(3340), + [sym_generic_pattern] = STATE(2163), + [sym_tuple_pattern] = STATE(2163), + [sym_slice_pattern] = STATE(2163), + [sym_tuple_struct_pattern] = STATE(2163), + [sym_struct_pattern] = STATE(2163), + [sym_remaining_field_pattern] = STATE(2163), + [sym_mut_pattern] = STATE(2163), + [sym_range_pattern] = STATE(2163), + [sym_ref_pattern] = STATE(2163), + [sym_captured_pattern] = STATE(2163), + [sym_reference_pattern] = STATE(2163), + [sym_or_pattern] = STATE(2163), + [sym__literal_pattern] = STATE(2098), + [sym_negative_literal] = STATE(2095), + [sym_string_literal] = STATE(2095), + [sym_raw_string_literal] = STATE(2095), + [sym_boolean_literal] = STATE(2095), [sym_line_comment] = STATE(838), [sym_block_comment] = STATE(838), - [sym_identifier] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_LBRACK] = ACTIONS(1782), - [anon_sym_u8] = ACTIONS(1784), - [anon_sym_i8] = ACTIONS(1784), - [anon_sym_u16] = ACTIONS(1784), - [anon_sym_i16] = ACTIONS(1784), - [anon_sym_u32] = ACTIONS(1784), - [anon_sym_i32] = ACTIONS(1784), - [anon_sym_u64] = ACTIONS(1784), - [anon_sym_i64] = ACTIONS(1784), - [anon_sym_u128] = ACTIONS(1784), - [anon_sym_i128] = ACTIONS(1784), - [anon_sym_isize] = ACTIONS(1784), - [anon_sym_usize] = ACTIONS(1784), - [anon_sym_f32] = ACTIONS(1784), - [anon_sym_f64] = ACTIONS(1784), - [anon_sym_bool] = ACTIONS(1784), - [anon_sym_str] = ACTIONS(1784), - [anon_sym_char] = ACTIONS(1784), - [anon_sym_DASH] = ACTIONS(1241), - [anon_sym_AMP] = ACTIONS(1786), - [anon_sym_PIPE] = ACTIONS(1247), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1451), - [anon_sym_DOT_DOT] = ACTIONS(1251), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1255), - [anon_sym_COLON_COLON] = ACTIONS(1790), - [anon_sym_const] = ACTIONS(1792), - [anon_sym_default] = ACTIONS(1794), - [anon_sym_gen] = ACTIONS(1794), - [anon_sym_union] = ACTIONS(1794), - [anon_sym_ref] = ACTIONS(1281), - [sym_mutable_specifier] = ACTIONS(1457), - [sym_integer_literal] = ACTIONS(1287), - [aux_sym_string_literal_token1] = ACTIONS(1289), - [sym_char_literal] = ACTIONS(1287), - [anon_sym_true] = ACTIONS(1291), - [anon_sym_false] = ACTIONS(1291), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1796), - [sym_super] = ACTIONS(1796), - [sym_crate] = ACTIONS(1796), - [sym_metavariable] = ACTIONS(1798), - [sym__raw_string_literal_start] = ACTIONS(1299), - [sym_float_literal] = ACTIONS(1287), + [sym_identifier] = ACTIONS(2369), + [anon_sym_LPAREN] = ACTIONS(2371), + [anon_sym_LBRACK] = 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(1246), + [anon_sym_AMP] = ACTIONS(2379), + [anon_sym_PIPE] = ACTIONS(1252), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1428), + [anon_sym_DOT_DOT] = ACTIONS(1256), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1260), + [anon_sym_COLON_COLON] = ACTIONS(2383), + [anon_sym_const] = ACTIONS(2385), + [anon_sym_default] = ACTIONS(2387), + [anon_sym_gen] = ACTIONS(2387), + [anon_sym_union] = ACTIONS(2387), + [anon_sym_ref] = ACTIONS(1286), + [sym_mutable_specifier] = ACTIONS(1434), + [sym_integer_literal] = ACTIONS(1292), + [aux_sym_string_literal_token1] = ACTIONS(1294), + [sym_char_literal] = ACTIONS(1292), + [anon_sym_true] = ACTIONS(1296), + [anon_sym_false] = ACTIONS(1296), + [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(2391), + [sym__raw_string_literal_start] = ACTIONS(1304), + [sym_float_literal] = ACTIONS(1292), }, [STATE(839)] = { - [sym_bracketed_type] = STATE(3648), - [sym_generic_type] = STATE(3450), - [sym_generic_type_with_turbofish] = STATE(3370), - [sym_macro_invocation] = STATE(3108), - [sym_scoped_identifier] = STATE(2218), - [sym_scoped_type_identifier] = STATE(3059), - [sym_const_block] = STATE(3108), - [sym__pattern] = STATE(3014), - [sym_generic_pattern] = STATE(3108), - [sym_tuple_pattern] = STATE(3108), - [sym_slice_pattern] = STATE(3108), - [sym_tuple_struct_pattern] = STATE(3108), - [sym_struct_pattern] = STATE(3108), - [sym_remaining_field_pattern] = STATE(3108), - [sym_mut_pattern] = STATE(3108), - [sym_range_pattern] = STATE(3108), - [sym_ref_pattern] = STATE(3108), - [sym_captured_pattern] = STATE(3108), - [sym_reference_pattern] = STATE(3108), - [sym_or_pattern] = STATE(3108), - [sym__literal_pattern] = STATE(2401), - [sym_negative_literal] = STATE(2389), - [sym_string_literal] = STATE(2389), - [sym_raw_string_literal] = STATE(2389), - [sym_boolean_literal] = STATE(2389), + [sym_bracketed_type] = STATE(3581), + [sym_generic_type] = STATE(3475), + [sym_generic_type_with_turbofish] = STATE(3233), + [sym_macro_invocation] = STATE(2163), + [sym_scoped_identifier] = STATE(2032), + [sym_scoped_type_identifier] = STATE(2893), + [sym_const_block] = STATE(2163), + [sym__pattern] = STATE(3416), + [sym_generic_pattern] = STATE(2163), + [sym_tuple_pattern] = STATE(2163), + [sym_slice_pattern] = STATE(2163), + [sym_tuple_struct_pattern] = STATE(2163), + [sym_struct_pattern] = STATE(2163), + [sym_remaining_field_pattern] = STATE(2163), + [sym_mut_pattern] = STATE(2163), + [sym_range_pattern] = STATE(2163), + [sym_ref_pattern] = STATE(2163), + [sym_captured_pattern] = STATE(2163), + [sym_reference_pattern] = STATE(2163), + [sym_or_pattern] = STATE(2163), + [sym__literal_pattern] = STATE(2098), + [sym_negative_literal] = STATE(2095), + [sym_string_literal] = STATE(2095), + [sym_raw_string_literal] = STATE(2095), + [sym_boolean_literal] = STATE(2095), [sym_line_comment] = STATE(839), [sym_block_comment] = STATE(839), - [sym_identifier] = ACTIONS(1645), - [anon_sym_LPAREN] = ACTIONS(1647), - [anon_sym_LBRACK] = ACTIONS(1649), - [anon_sym_u8] = ACTIONS(1653), - [anon_sym_i8] = ACTIONS(1653), - [anon_sym_u16] = ACTIONS(1653), - [anon_sym_i16] = ACTIONS(1653), - [anon_sym_u32] = ACTIONS(1653), - [anon_sym_i32] = ACTIONS(1653), - [anon_sym_u64] = ACTIONS(1653), - [anon_sym_i64] = ACTIONS(1653), - [anon_sym_u128] = ACTIONS(1653), - [anon_sym_i128] = ACTIONS(1653), - [anon_sym_isize] = ACTIONS(1653), - [anon_sym_usize] = ACTIONS(1653), - [anon_sym_f32] = ACTIONS(1653), - [anon_sym_f64] = ACTIONS(1653), - [anon_sym_bool] = ACTIONS(1653), - [anon_sym_str] = ACTIONS(1653), - [anon_sym_char] = ACTIONS(1653), - [anon_sym_DASH] = ACTIONS(1655), - [anon_sym_AMP] = ACTIONS(1657), - [anon_sym_PIPE] = ACTIONS(1659), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1661), - [anon_sym_DOT_DOT] = ACTIONS(1663), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1665), - [anon_sym_COLON_COLON] = ACTIONS(1667), - [anon_sym_const] = ACTIONS(1671), - [anon_sym_default] = ACTIONS(1673), - [anon_sym_gen] = ACTIONS(1673), - [anon_sym_union] = ACTIONS(1673), - [anon_sym_ref] = ACTIONS(1675), - [sym_mutable_specifier] = ACTIONS(1677), - [sym_integer_literal] = ACTIONS(1679), - [aux_sym_string_literal_token1] = ACTIONS(1681), - [sym_char_literal] = ACTIONS(1679), - [anon_sym_true] = ACTIONS(1683), - [anon_sym_false] = ACTIONS(1683), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1685), - [sym_super] = ACTIONS(1685), - [sym_crate] = ACTIONS(1685), - [sym_metavariable] = ACTIONS(1687), - [sym__raw_string_literal_start] = ACTIONS(1689), - [sym_float_literal] = ACTIONS(1679), + [sym_identifier] = ACTIONS(2369), + [anon_sym_LPAREN] = ACTIONS(2371), + [anon_sym_LBRACK] = 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(1246), + [anon_sym_AMP] = ACTIONS(2379), + [anon_sym_PIPE] = ACTIONS(1252), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1428), + [anon_sym_DOT_DOT] = ACTIONS(1256), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1260), + [anon_sym_COLON_COLON] = ACTIONS(2383), + [anon_sym_const] = ACTIONS(2385), + [anon_sym_default] = ACTIONS(2387), + [anon_sym_gen] = ACTIONS(2387), + [anon_sym_union] = ACTIONS(2387), + [anon_sym_ref] = ACTIONS(1286), + [sym_mutable_specifier] = ACTIONS(1434), + [sym_integer_literal] = ACTIONS(1292), + [aux_sym_string_literal_token1] = ACTIONS(1294), + [sym_char_literal] = ACTIONS(1292), + [anon_sym_true] = ACTIONS(1296), + [anon_sym_false] = ACTIONS(1296), + [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(2391), + [sym__raw_string_literal_start] = ACTIONS(1304), + [sym_float_literal] = ACTIONS(1292), }, [STATE(840)] = { - [sym_bracketed_type] = STATE(3648), - [sym_generic_type] = STATE(3450), - [sym_generic_type_with_turbofish] = STATE(3370), - [sym_macro_invocation] = STATE(3108), - [sym_scoped_identifier] = STATE(2218), - [sym_scoped_type_identifier] = STATE(3059), - [sym_const_block] = STATE(3108), - [sym__pattern] = STATE(3019), - [sym_generic_pattern] = STATE(3108), - [sym_tuple_pattern] = STATE(3108), - [sym_slice_pattern] = STATE(3108), - [sym_tuple_struct_pattern] = STATE(3108), - [sym_struct_pattern] = STATE(3108), - [sym_remaining_field_pattern] = STATE(3108), - [sym_mut_pattern] = STATE(3108), - [sym_range_pattern] = STATE(3108), - [sym_ref_pattern] = STATE(3108), - [sym_captured_pattern] = STATE(3108), - [sym_reference_pattern] = STATE(3108), - [sym_or_pattern] = STATE(3108), - [sym__literal_pattern] = STATE(2401), - [sym_negative_literal] = STATE(2389), - [sym_string_literal] = STATE(2389), - [sym_raw_string_literal] = STATE(2389), - [sym_boolean_literal] = STATE(2389), + [sym_bracketed_type] = STATE(3581), + [sym_generic_type] = STATE(3475), + [sym_generic_type_with_turbofish] = STATE(3233), + [sym_macro_invocation] = STATE(2163), + [sym_scoped_identifier] = STATE(2032), + [sym_scoped_type_identifier] = STATE(2893), + [sym_const_block] = STATE(2163), + [sym__pattern] = STATE(2200), + [sym_generic_pattern] = STATE(2163), + [sym_tuple_pattern] = STATE(2163), + [sym_slice_pattern] = STATE(2163), + [sym_tuple_struct_pattern] = STATE(2163), + [sym_struct_pattern] = STATE(2163), + [sym_remaining_field_pattern] = STATE(2163), + [sym_mut_pattern] = STATE(2163), + [sym_range_pattern] = STATE(2163), + [sym_ref_pattern] = STATE(2163), + [sym_captured_pattern] = STATE(2163), + [sym_reference_pattern] = STATE(2163), + [sym_or_pattern] = STATE(2163), + [sym__literal_pattern] = STATE(2098), + [sym_negative_literal] = STATE(2095), + [sym_string_literal] = STATE(2095), + [sym_raw_string_literal] = STATE(2095), + [sym_boolean_literal] = STATE(2095), [sym_line_comment] = STATE(840), [sym_block_comment] = STATE(840), - [sym_identifier] = ACTIONS(1645), - [anon_sym_LPAREN] = ACTIONS(1647), - [anon_sym_LBRACK] = ACTIONS(1649), - [anon_sym_u8] = ACTIONS(1653), - [anon_sym_i8] = ACTIONS(1653), - [anon_sym_u16] = ACTIONS(1653), - [anon_sym_i16] = ACTIONS(1653), - [anon_sym_u32] = ACTIONS(1653), - [anon_sym_i32] = ACTIONS(1653), - [anon_sym_u64] = ACTIONS(1653), - [anon_sym_i64] = ACTIONS(1653), - [anon_sym_u128] = ACTIONS(1653), - [anon_sym_i128] = ACTIONS(1653), - [anon_sym_isize] = ACTIONS(1653), - [anon_sym_usize] = ACTIONS(1653), - [anon_sym_f32] = ACTIONS(1653), - [anon_sym_f64] = ACTIONS(1653), - [anon_sym_bool] = ACTIONS(1653), - [anon_sym_str] = ACTIONS(1653), - [anon_sym_char] = ACTIONS(1653), - [anon_sym_DASH] = ACTIONS(1655), - [anon_sym_AMP] = ACTIONS(1657), - [anon_sym_PIPE] = ACTIONS(1659), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1661), - [anon_sym_DOT_DOT] = ACTIONS(1663), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1665), - [anon_sym_COLON_COLON] = ACTIONS(1667), - [anon_sym_const] = ACTIONS(1671), - [anon_sym_default] = ACTIONS(1673), - [anon_sym_gen] = ACTIONS(1673), - [anon_sym_union] = ACTIONS(1673), - [anon_sym_ref] = ACTIONS(1675), - [sym_mutable_specifier] = ACTIONS(1677), - [sym_integer_literal] = ACTIONS(1679), - [aux_sym_string_literal_token1] = ACTIONS(1681), - [sym_char_literal] = ACTIONS(1679), - [anon_sym_true] = ACTIONS(1683), - [anon_sym_false] = ACTIONS(1683), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1685), - [sym_super] = ACTIONS(1685), - [sym_crate] = ACTIONS(1685), - [sym_metavariable] = ACTIONS(1687), - [sym__raw_string_literal_start] = ACTIONS(1689), - [sym_float_literal] = ACTIONS(1679), + [sym_identifier] = ACTIONS(2369), + [anon_sym_LPAREN] = ACTIONS(2371), + [anon_sym_LBRACK] = 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(1246), + [anon_sym_AMP] = ACTIONS(2379), + [anon_sym_PIPE] = ACTIONS(1252), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1428), + [anon_sym_DOT_DOT] = ACTIONS(1256), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1260), + [anon_sym_COLON_COLON] = ACTIONS(2383), + [anon_sym_const] = ACTIONS(2385), + [anon_sym_default] = ACTIONS(2387), + [anon_sym_gen] = ACTIONS(2387), + [anon_sym_union] = ACTIONS(2387), + [anon_sym_ref] = ACTIONS(1286), + [sym_mutable_specifier] = ACTIONS(1434), + [sym_integer_literal] = ACTIONS(1292), + [aux_sym_string_literal_token1] = ACTIONS(1294), + [sym_char_literal] = ACTIONS(1292), + [anon_sym_true] = ACTIONS(1296), + [anon_sym_false] = ACTIONS(1296), + [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(2391), + [sym__raw_string_literal_start] = ACTIONS(1304), + [sym_float_literal] = ACTIONS(1292), }, [STATE(841)] = { - [sym_bracketed_type] = STATE(3448), - [sym_generic_type] = STATE(3450), - [sym_generic_type_with_turbofish] = STATE(3159), - [sym_macro_invocation] = STATE(2150), - [sym_scoped_identifier] = STATE(2016), - [sym_scoped_type_identifier] = STATE(2988), - [sym_const_block] = STATE(2150), - [sym__pattern] = STATE(2649), - [sym_generic_pattern] = STATE(2150), - [sym_tuple_pattern] = STATE(2150), - [sym_slice_pattern] = STATE(2150), - [sym_tuple_struct_pattern] = STATE(2150), - [sym_struct_pattern] = STATE(2150), - [sym_remaining_field_pattern] = STATE(2150), - [sym_mut_pattern] = STATE(2150), - [sym_range_pattern] = STATE(2150), - [sym_ref_pattern] = STATE(2150), - [sym_captured_pattern] = STATE(2150), - [sym_reference_pattern] = STATE(2150), - [sym_or_pattern] = STATE(2150), - [sym__literal_pattern] = STATE(2076), - [sym_negative_literal] = STATE(2074), - [sym_string_literal] = STATE(2074), - [sym_raw_string_literal] = STATE(2074), - [sym_boolean_literal] = STATE(2074), + [sym_bracketed_type] = STATE(3581), + [sym_generic_type] = STATE(3475), + [sym_generic_type_with_turbofish] = STATE(3233), + [sym_macro_invocation] = STATE(2163), + [sym_scoped_identifier] = STATE(2032), + [sym_scoped_type_identifier] = STATE(2893), + [sym_const_block] = STATE(2163), + [sym__pattern] = STATE(2209), + [sym_generic_pattern] = STATE(2163), + [sym_tuple_pattern] = STATE(2163), + [sym_slice_pattern] = STATE(2163), + [sym_tuple_struct_pattern] = STATE(2163), + [sym_struct_pattern] = STATE(2163), + [sym_remaining_field_pattern] = STATE(2163), + [sym_mut_pattern] = STATE(2163), + [sym_range_pattern] = STATE(2163), + [sym_ref_pattern] = STATE(2163), + [sym_captured_pattern] = STATE(2163), + [sym_reference_pattern] = STATE(2163), + [sym_or_pattern] = STATE(2163), + [sym__literal_pattern] = STATE(2098), + [sym_negative_literal] = STATE(2095), + [sym_string_literal] = STATE(2095), + [sym_raw_string_literal] = STATE(2095), + [sym_boolean_literal] = STATE(2095), [sym_line_comment] = STATE(841), [sym_block_comment] = STATE(841), - [sym_identifier] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_LBRACK] = ACTIONS(1782), - [anon_sym_u8] = ACTIONS(1784), - [anon_sym_i8] = ACTIONS(1784), - [anon_sym_u16] = ACTIONS(1784), - [anon_sym_i16] = ACTIONS(1784), - [anon_sym_u32] = ACTIONS(1784), - [anon_sym_i32] = ACTIONS(1784), - [anon_sym_u64] = ACTIONS(1784), - [anon_sym_i64] = ACTIONS(1784), - [anon_sym_u128] = ACTIONS(1784), - [anon_sym_i128] = ACTIONS(1784), - [anon_sym_isize] = ACTIONS(1784), - [anon_sym_usize] = ACTIONS(1784), - [anon_sym_f32] = ACTIONS(1784), - [anon_sym_f64] = ACTIONS(1784), - [anon_sym_bool] = ACTIONS(1784), - [anon_sym_str] = ACTIONS(1784), - [anon_sym_char] = ACTIONS(1784), - [anon_sym_DASH] = ACTIONS(1241), - [anon_sym_AMP] = ACTIONS(1786), - [anon_sym_PIPE] = ACTIONS(1247), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1451), - [anon_sym_DOT_DOT] = ACTIONS(1251), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1255), - [anon_sym_COLON_COLON] = ACTIONS(1790), - [anon_sym_const] = ACTIONS(1792), - [anon_sym_default] = ACTIONS(1794), - [anon_sym_gen] = ACTIONS(1794), - [anon_sym_union] = ACTIONS(1794), - [anon_sym_ref] = ACTIONS(1281), - [sym_mutable_specifier] = ACTIONS(1457), - [sym_integer_literal] = ACTIONS(1287), - [aux_sym_string_literal_token1] = ACTIONS(1289), - [sym_char_literal] = ACTIONS(1287), - [anon_sym_true] = ACTIONS(1291), - [anon_sym_false] = ACTIONS(1291), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1796), - [sym_super] = ACTIONS(1796), - [sym_crate] = ACTIONS(1796), - [sym_metavariable] = ACTIONS(1798), - [sym__raw_string_literal_start] = ACTIONS(1299), - [sym_float_literal] = ACTIONS(1287), + [sym_identifier] = ACTIONS(2369), + [anon_sym_LPAREN] = ACTIONS(2371), + [anon_sym_LBRACK] = 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(1246), + [anon_sym_AMP] = ACTIONS(2379), + [anon_sym_PIPE] = ACTIONS(1252), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1428), + [anon_sym_DOT_DOT] = ACTIONS(1256), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1260), + [anon_sym_COLON_COLON] = ACTIONS(2383), + [anon_sym_const] = ACTIONS(2385), + [anon_sym_default] = ACTIONS(2387), + [anon_sym_gen] = ACTIONS(2387), + [anon_sym_union] = ACTIONS(2387), + [anon_sym_ref] = ACTIONS(1286), + [sym_mutable_specifier] = ACTIONS(1434), + [sym_integer_literal] = ACTIONS(1292), + [aux_sym_string_literal_token1] = ACTIONS(1294), + [sym_char_literal] = ACTIONS(1292), + [anon_sym_true] = ACTIONS(1296), + [anon_sym_false] = ACTIONS(1296), + [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(2391), + [sym__raw_string_literal_start] = ACTIONS(1304), + [sym_float_literal] = ACTIONS(1292), }, [STATE(842)] = { - [sym_bracketed_type] = STATE(3448), - [sym_generic_type] = STATE(3450), - [sym_generic_type_with_turbofish] = STATE(3159), - [sym_macro_invocation] = STATE(2150), - [sym_scoped_identifier] = STATE(2016), - [sym_scoped_type_identifier] = STATE(2988), - [sym_const_block] = STATE(2150), - [sym__pattern] = STATE(3393), - [sym_generic_pattern] = STATE(2150), - [sym_tuple_pattern] = STATE(2150), - [sym_slice_pattern] = STATE(2150), - [sym_tuple_struct_pattern] = STATE(2150), - [sym_struct_pattern] = STATE(2150), - [sym_remaining_field_pattern] = STATE(2150), - [sym_mut_pattern] = STATE(2150), - [sym_range_pattern] = STATE(2150), - [sym_ref_pattern] = STATE(2150), - [sym_captured_pattern] = STATE(2150), - [sym_reference_pattern] = STATE(2150), - [sym_or_pattern] = STATE(2150), - [sym__literal_pattern] = STATE(2076), - [sym_negative_literal] = STATE(2074), - [sym_string_literal] = STATE(2074), - [sym_raw_string_literal] = STATE(2074), - [sym_boolean_literal] = STATE(2074), + [sym_bracketed_type] = STATE(3677), + [sym_generic_type] = STATE(3475), + [sym_generic_type_with_turbofish] = STATE(3405), + [sym_macro_invocation] = STATE(2996), + [sym_scoped_identifier] = STATE(2238), + [sym_scoped_type_identifier] = STATE(3090), + [sym_const_block] = STATE(2996), + [sym__pattern] = STATE(3016), + [sym_generic_pattern] = STATE(2996), + [sym_tuple_pattern] = STATE(2996), + [sym_slice_pattern] = STATE(2996), + [sym_tuple_struct_pattern] = STATE(2996), + [sym_struct_pattern] = STATE(2996), + [sym_remaining_field_pattern] = STATE(2996), + [sym_mut_pattern] = STATE(2996), + [sym_range_pattern] = STATE(2996), + [sym_ref_pattern] = STATE(2996), + [sym_captured_pattern] = STATE(2996), + [sym_reference_pattern] = STATE(2996), + [sym_or_pattern] = STATE(2996), + [sym__literal_pattern] = STATE(2429), + [sym_negative_literal] = STATE(2440), + [sym_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_boolean_literal] = STATE(2440), [sym_line_comment] = STATE(842), [sym_block_comment] = STATE(842), - [sym_identifier] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_LBRACK] = ACTIONS(1782), - [anon_sym_u8] = ACTIONS(1784), - [anon_sym_i8] = ACTIONS(1784), - [anon_sym_u16] = ACTIONS(1784), - [anon_sym_i16] = ACTIONS(1784), - [anon_sym_u32] = ACTIONS(1784), - [anon_sym_i32] = ACTIONS(1784), - [anon_sym_u64] = ACTIONS(1784), - [anon_sym_i64] = ACTIONS(1784), - [anon_sym_u128] = ACTIONS(1784), - [anon_sym_i128] = ACTIONS(1784), - [anon_sym_isize] = ACTIONS(1784), - [anon_sym_usize] = ACTIONS(1784), - [anon_sym_f32] = ACTIONS(1784), - [anon_sym_f64] = ACTIONS(1784), - [anon_sym_bool] = ACTIONS(1784), - [anon_sym_str] = ACTIONS(1784), - [anon_sym_char] = ACTIONS(1784), - [anon_sym_DASH] = ACTIONS(1241), - [anon_sym_AMP] = ACTIONS(1786), - [anon_sym_PIPE] = ACTIONS(1247), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1451), - [anon_sym_DOT_DOT] = ACTIONS(1251), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1255), - [anon_sym_COLON_COLON] = ACTIONS(1790), - [anon_sym_const] = ACTIONS(1792), - [anon_sym_default] = ACTIONS(1794), - [anon_sym_gen] = ACTIONS(1794), - [anon_sym_union] = ACTIONS(1794), - [anon_sym_ref] = ACTIONS(1281), - [sym_mutable_specifier] = ACTIONS(1457), - [sym_integer_literal] = ACTIONS(1287), - [aux_sym_string_literal_token1] = ACTIONS(1289), - [sym_char_literal] = ACTIONS(1287), - [anon_sym_true] = ACTIONS(1291), - [anon_sym_false] = ACTIONS(1291), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1796), - [sym_super] = ACTIONS(1796), - [sym_crate] = ACTIONS(1796), - [sym_metavariable] = ACTIONS(1798), - [sym__raw_string_literal_start] = ACTIONS(1299), - [sym_float_literal] = ACTIONS(1287), + [sym_identifier] = ACTIONS(1650), + [anon_sym_LPAREN] = ACTIONS(1652), + [anon_sym_LBRACK] = ACTIONS(1654), + [anon_sym_u8] = ACTIONS(1658), + [anon_sym_i8] = ACTIONS(1658), + [anon_sym_u16] = ACTIONS(1658), + [anon_sym_i16] = ACTIONS(1658), + [anon_sym_u32] = ACTIONS(1658), + [anon_sym_i32] = ACTIONS(1658), + [anon_sym_u64] = ACTIONS(1658), + [anon_sym_i64] = ACTIONS(1658), + [anon_sym_u128] = ACTIONS(1658), + [anon_sym_i128] = ACTIONS(1658), + [anon_sym_isize] = ACTIONS(1658), + [anon_sym_usize] = ACTIONS(1658), + [anon_sym_f32] = ACTIONS(1658), + [anon_sym_f64] = ACTIONS(1658), + [anon_sym_bool] = ACTIONS(1658), + [anon_sym_str] = ACTIONS(1658), + [anon_sym_char] = ACTIONS(1658), + [anon_sym_DASH] = ACTIONS(1660), + [anon_sym_AMP] = ACTIONS(1662), + [anon_sym_PIPE] = ACTIONS(1664), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1666), + [anon_sym_DOT_DOT] = ACTIONS(1668), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1670), + [anon_sym_COLON_COLON] = ACTIONS(1672), + [anon_sym_const] = ACTIONS(1676), + [anon_sym_default] = ACTIONS(1678), + [anon_sym_gen] = ACTIONS(1678), + [anon_sym_union] = ACTIONS(1678), + [anon_sym_ref] = ACTIONS(1680), + [sym_mutable_specifier] = ACTIONS(1682), + [sym_integer_literal] = ACTIONS(1684), + [aux_sym_string_literal_token1] = ACTIONS(1686), + [sym_char_literal] = ACTIONS(1684), + [anon_sym_true] = ACTIONS(1688), + [anon_sym_false] = ACTIONS(1688), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1690), + [sym_super] = ACTIONS(1690), + [sym_crate] = ACTIONS(1690), + [sym_metavariable] = ACTIONS(1692), + [sym__raw_string_literal_start] = ACTIONS(1694), + [sym_float_literal] = ACTIONS(1684), }, [STATE(843)] = { - [sym_bracketed_type] = STATE(3448), - [sym_generic_type] = STATE(3450), - [sym_generic_type_with_turbofish] = STATE(3159), - [sym_macro_invocation] = STATE(2150), - [sym_scoped_identifier] = STATE(2016), - [sym_scoped_type_identifier] = STATE(2988), - [sym_const_block] = STATE(2150), - [sym__pattern] = STATE(3408), - [sym_generic_pattern] = STATE(2150), - [sym_tuple_pattern] = STATE(2150), - [sym_slice_pattern] = STATE(2150), - [sym_tuple_struct_pattern] = STATE(2150), - [sym_struct_pattern] = STATE(2150), - [sym_remaining_field_pattern] = STATE(2150), - [sym_mut_pattern] = STATE(2150), - [sym_range_pattern] = STATE(2150), - [sym_ref_pattern] = STATE(2150), - [sym_captured_pattern] = STATE(2150), - [sym_reference_pattern] = STATE(2150), - [sym_or_pattern] = STATE(2150), - [sym__literal_pattern] = STATE(2076), - [sym_negative_literal] = STATE(2074), - [sym_string_literal] = STATE(2074), - [sym_raw_string_literal] = STATE(2074), - [sym_boolean_literal] = STATE(2074), + [sym_bracketed_type] = STATE(3677), + [sym_generic_type] = STATE(3475), + [sym_generic_type_with_turbofish] = STATE(3405), + [sym_macro_invocation] = STATE(2996), + [sym_scoped_identifier] = STATE(2238), + [sym_scoped_type_identifier] = STATE(3090), + [sym_const_block] = STATE(2996), + [sym__pattern] = STATE(3030), + [sym_generic_pattern] = STATE(2996), + [sym_tuple_pattern] = STATE(2996), + [sym_slice_pattern] = STATE(2996), + [sym_tuple_struct_pattern] = STATE(2996), + [sym_struct_pattern] = STATE(2996), + [sym_remaining_field_pattern] = STATE(2996), + [sym_mut_pattern] = STATE(2996), + [sym_range_pattern] = STATE(2996), + [sym_ref_pattern] = STATE(2996), + [sym_captured_pattern] = STATE(2996), + [sym_reference_pattern] = STATE(2996), + [sym_or_pattern] = STATE(2996), + [sym__literal_pattern] = STATE(2429), + [sym_negative_literal] = STATE(2440), + [sym_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_boolean_literal] = STATE(2440), [sym_line_comment] = STATE(843), [sym_block_comment] = STATE(843), - [sym_identifier] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_LBRACK] = ACTIONS(1782), - [anon_sym_u8] = ACTIONS(1784), - [anon_sym_i8] = ACTIONS(1784), - [anon_sym_u16] = ACTIONS(1784), - [anon_sym_i16] = ACTIONS(1784), - [anon_sym_u32] = ACTIONS(1784), - [anon_sym_i32] = ACTIONS(1784), - [anon_sym_u64] = ACTIONS(1784), - [anon_sym_i64] = ACTIONS(1784), - [anon_sym_u128] = ACTIONS(1784), - [anon_sym_i128] = ACTIONS(1784), - [anon_sym_isize] = ACTIONS(1784), - [anon_sym_usize] = ACTIONS(1784), - [anon_sym_f32] = ACTIONS(1784), - [anon_sym_f64] = ACTIONS(1784), - [anon_sym_bool] = ACTIONS(1784), - [anon_sym_str] = ACTIONS(1784), - [anon_sym_char] = ACTIONS(1784), - [anon_sym_DASH] = ACTIONS(1241), - [anon_sym_AMP] = ACTIONS(1786), - [anon_sym_PIPE] = ACTIONS(1247), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1451), - [anon_sym_DOT_DOT] = ACTIONS(1251), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1255), - [anon_sym_COLON_COLON] = ACTIONS(1790), - [anon_sym_const] = ACTIONS(1792), - [anon_sym_default] = ACTIONS(1794), - [anon_sym_gen] = ACTIONS(1794), - [anon_sym_union] = ACTIONS(1794), - [anon_sym_ref] = ACTIONS(1281), - [sym_mutable_specifier] = ACTIONS(1457), - [sym_integer_literal] = ACTIONS(1287), - [aux_sym_string_literal_token1] = ACTIONS(1289), - [sym_char_literal] = ACTIONS(1287), - [anon_sym_true] = ACTIONS(1291), - [anon_sym_false] = ACTIONS(1291), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1796), - [sym_super] = ACTIONS(1796), - [sym_crate] = ACTIONS(1796), - [sym_metavariable] = ACTIONS(1798), - [sym__raw_string_literal_start] = ACTIONS(1299), - [sym_float_literal] = ACTIONS(1287), + [sym_identifier] = ACTIONS(1650), + [anon_sym_LPAREN] = ACTIONS(1652), + [anon_sym_LBRACK] = ACTIONS(1654), + [anon_sym_u8] = ACTIONS(1658), + [anon_sym_i8] = ACTIONS(1658), + [anon_sym_u16] = ACTIONS(1658), + [anon_sym_i16] = ACTIONS(1658), + [anon_sym_u32] = ACTIONS(1658), + [anon_sym_i32] = ACTIONS(1658), + [anon_sym_u64] = ACTIONS(1658), + [anon_sym_i64] = ACTIONS(1658), + [anon_sym_u128] = ACTIONS(1658), + [anon_sym_i128] = ACTIONS(1658), + [anon_sym_isize] = ACTIONS(1658), + [anon_sym_usize] = ACTIONS(1658), + [anon_sym_f32] = ACTIONS(1658), + [anon_sym_f64] = ACTIONS(1658), + [anon_sym_bool] = ACTIONS(1658), + [anon_sym_str] = ACTIONS(1658), + [anon_sym_char] = ACTIONS(1658), + [anon_sym_DASH] = ACTIONS(1660), + [anon_sym_AMP] = ACTIONS(1662), + [anon_sym_PIPE] = ACTIONS(1664), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1666), + [anon_sym_DOT_DOT] = ACTIONS(1668), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1670), + [anon_sym_COLON_COLON] = ACTIONS(1672), + [anon_sym_const] = ACTIONS(1676), + [anon_sym_default] = ACTIONS(1678), + [anon_sym_gen] = ACTIONS(1678), + [anon_sym_union] = ACTIONS(1678), + [anon_sym_ref] = ACTIONS(1680), + [sym_mutable_specifier] = ACTIONS(1682), + [sym_integer_literal] = ACTIONS(1684), + [aux_sym_string_literal_token1] = ACTIONS(1686), + [sym_char_literal] = ACTIONS(1684), + [anon_sym_true] = ACTIONS(1688), + [anon_sym_false] = ACTIONS(1688), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1690), + [sym_super] = ACTIONS(1690), + [sym_crate] = ACTIONS(1690), + [sym_metavariable] = ACTIONS(1692), + [sym__raw_string_literal_start] = ACTIONS(1694), + [sym_float_literal] = ACTIONS(1684), }, [STATE(844)] = { - [sym_bracketed_type] = STATE(3448), - [sym_generic_type] = STATE(3450), - [sym_generic_type_with_turbofish] = STATE(3159), - [sym_macro_invocation] = STATE(2150), - [sym_scoped_identifier] = STATE(2016), - [sym_scoped_type_identifier] = STATE(2988), - [sym_const_block] = STATE(2150), - [sym__pattern] = STATE(3412), - [sym_generic_pattern] = STATE(2150), - [sym_tuple_pattern] = STATE(2150), - [sym_slice_pattern] = STATE(2150), - [sym_tuple_struct_pattern] = STATE(2150), - [sym_struct_pattern] = STATE(2150), - [sym_remaining_field_pattern] = STATE(2150), - [sym_mut_pattern] = STATE(2150), - [sym_range_pattern] = STATE(2150), - [sym_ref_pattern] = STATE(2150), - [sym_captured_pattern] = STATE(2150), - [sym_reference_pattern] = STATE(2150), - [sym_or_pattern] = STATE(2150), - [sym__literal_pattern] = STATE(2076), - [sym_negative_literal] = STATE(2074), - [sym_string_literal] = STATE(2074), - [sym_raw_string_literal] = STATE(2074), - [sym_boolean_literal] = STATE(2074), + [sym_bracketed_type] = STATE(3581), + [sym_generic_type] = STATE(3475), + [sym_generic_type_with_turbofish] = STATE(3233), + [sym_macro_invocation] = STATE(2163), + [sym_scoped_identifier] = STATE(2032), + [sym_scoped_type_identifier] = STATE(2893), + [sym_const_block] = STATE(2163), + [sym__pattern] = STATE(3082), + [sym_generic_pattern] = STATE(2163), + [sym_tuple_pattern] = STATE(2163), + [sym_slice_pattern] = STATE(2163), + [sym_tuple_struct_pattern] = STATE(2163), + [sym_struct_pattern] = STATE(2163), + [sym_remaining_field_pattern] = STATE(2163), + [sym_mut_pattern] = STATE(2163), + [sym_range_pattern] = STATE(2163), + [sym_ref_pattern] = STATE(2163), + [sym_captured_pattern] = STATE(2163), + [sym_reference_pattern] = STATE(2163), + [sym_or_pattern] = STATE(2163), + [sym__literal_pattern] = STATE(2098), + [sym_negative_literal] = STATE(2095), + [sym_string_literal] = STATE(2095), + [sym_raw_string_literal] = STATE(2095), + [sym_boolean_literal] = STATE(2095), [sym_line_comment] = STATE(844), [sym_block_comment] = STATE(844), - [sym_identifier] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_LBRACK] = ACTIONS(1782), - [anon_sym_u8] = ACTIONS(1784), - [anon_sym_i8] = ACTIONS(1784), - [anon_sym_u16] = ACTIONS(1784), - [anon_sym_i16] = ACTIONS(1784), - [anon_sym_u32] = ACTIONS(1784), - [anon_sym_i32] = ACTIONS(1784), - [anon_sym_u64] = ACTIONS(1784), - [anon_sym_i64] = ACTIONS(1784), - [anon_sym_u128] = ACTIONS(1784), - [anon_sym_i128] = ACTIONS(1784), - [anon_sym_isize] = ACTIONS(1784), - [anon_sym_usize] = ACTIONS(1784), - [anon_sym_f32] = ACTIONS(1784), - [anon_sym_f64] = ACTIONS(1784), - [anon_sym_bool] = ACTIONS(1784), - [anon_sym_str] = ACTIONS(1784), - [anon_sym_char] = ACTIONS(1784), - [anon_sym_DASH] = ACTIONS(1241), - [anon_sym_AMP] = ACTIONS(1786), - [anon_sym_PIPE] = ACTIONS(1247), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1451), - [anon_sym_DOT_DOT] = ACTIONS(1251), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1255), - [anon_sym_COLON_COLON] = ACTIONS(1790), - [anon_sym_const] = ACTIONS(1792), - [anon_sym_default] = ACTIONS(1794), - [anon_sym_gen] = ACTIONS(1794), - [anon_sym_union] = ACTIONS(1794), - [anon_sym_ref] = ACTIONS(1281), - [sym_mutable_specifier] = ACTIONS(1457), - [sym_integer_literal] = ACTIONS(1287), - [aux_sym_string_literal_token1] = ACTIONS(1289), - [sym_char_literal] = ACTIONS(1287), - [anon_sym_true] = ACTIONS(1291), - [anon_sym_false] = ACTIONS(1291), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1796), - [sym_super] = ACTIONS(1796), - [sym_crate] = ACTIONS(1796), - [sym_metavariable] = ACTIONS(1798), - [sym__raw_string_literal_start] = ACTIONS(1299), - [sym_float_literal] = ACTIONS(1287), + [sym_identifier] = ACTIONS(2369), + [anon_sym_LPAREN] = ACTIONS(2371), + [anon_sym_LBRACK] = 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(1246), + [anon_sym_AMP] = ACTIONS(2379), + [anon_sym_PIPE] = ACTIONS(1252), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1428), + [anon_sym_DOT_DOT] = ACTIONS(1256), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1260), + [anon_sym_COLON_COLON] = ACTIONS(2383), + [anon_sym_const] = ACTIONS(2385), + [anon_sym_default] = ACTIONS(2387), + [anon_sym_gen] = ACTIONS(2387), + [anon_sym_union] = ACTIONS(2387), + [anon_sym_ref] = ACTIONS(1286), + [sym_mutable_specifier] = ACTIONS(1434), + [sym_integer_literal] = ACTIONS(1292), + [aux_sym_string_literal_token1] = ACTIONS(1294), + [sym_char_literal] = ACTIONS(1292), + [anon_sym_true] = ACTIONS(1296), + [anon_sym_false] = ACTIONS(1296), + [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(2391), + [sym__raw_string_literal_start] = ACTIONS(1304), + [sym_float_literal] = ACTIONS(1292), }, [STATE(845)] = { - [sym_bracketed_type] = STATE(3448), - [sym_generic_type] = STATE(3450), - [sym_generic_type_with_turbofish] = STATE(3159), - [sym_macro_invocation] = STATE(2150), - [sym_scoped_identifier] = STATE(2016), - [sym_scoped_type_identifier] = STATE(2988), - [sym_const_block] = STATE(2150), - [sym__pattern] = STATE(3413), - [sym_generic_pattern] = STATE(2150), - [sym_tuple_pattern] = STATE(2150), - [sym_slice_pattern] = STATE(2150), - [sym_tuple_struct_pattern] = STATE(2150), - [sym_struct_pattern] = STATE(2150), - [sym_remaining_field_pattern] = STATE(2150), - [sym_mut_pattern] = STATE(2150), - [sym_range_pattern] = STATE(2150), - [sym_ref_pattern] = STATE(2150), - [sym_captured_pattern] = STATE(2150), - [sym_reference_pattern] = STATE(2150), - [sym_or_pattern] = STATE(2150), - [sym__literal_pattern] = STATE(2076), - [sym_negative_literal] = STATE(2074), - [sym_string_literal] = STATE(2074), - [sym_raw_string_literal] = STATE(2074), - [sym_boolean_literal] = STATE(2074), + [sym_bracketed_type] = STATE(3581), + [sym_generic_type] = STATE(3475), + [sym_generic_type_with_turbofish] = STATE(3233), + [sym_macro_invocation] = STATE(2163), + [sym_scoped_identifier] = STATE(2032), + [sym_scoped_type_identifier] = STATE(2893), + [sym_const_block] = STATE(2163), + [sym__pattern] = STATE(2780), + [sym_generic_pattern] = STATE(2163), + [sym_tuple_pattern] = STATE(2163), + [sym_slice_pattern] = STATE(2163), + [sym_tuple_struct_pattern] = STATE(2163), + [sym_struct_pattern] = STATE(2163), + [sym_remaining_field_pattern] = STATE(2163), + [sym_mut_pattern] = STATE(2163), + [sym_range_pattern] = STATE(2163), + [sym_ref_pattern] = STATE(2163), + [sym_captured_pattern] = STATE(2163), + [sym_reference_pattern] = STATE(2163), + [sym_or_pattern] = STATE(2163), + [sym__literal_pattern] = STATE(2098), + [sym_negative_literal] = STATE(2095), + [sym_string_literal] = STATE(2095), + [sym_raw_string_literal] = STATE(2095), + [sym_boolean_literal] = STATE(2095), [sym_line_comment] = STATE(845), [sym_block_comment] = STATE(845), - [sym_identifier] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_LBRACK] = ACTIONS(1782), - [anon_sym_u8] = ACTIONS(1784), - [anon_sym_i8] = ACTIONS(1784), - [anon_sym_u16] = ACTIONS(1784), - [anon_sym_i16] = ACTIONS(1784), - [anon_sym_u32] = ACTIONS(1784), - [anon_sym_i32] = ACTIONS(1784), - [anon_sym_u64] = ACTIONS(1784), - [anon_sym_i64] = ACTIONS(1784), - [anon_sym_u128] = ACTIONS(1784), - [anon_sym_i128] = ACTIONS(1784), - [anon_sym_isize] = ACTIONS(1784), - [anon_sym_usize] = ACTIONS(1784), - [anon_sym_f32] = ACTIONS(1784), - [anon_sym_f64] = ACTIONS(1784), - [anon_sym_bool] = ACTIONS(1784), - [anon_sym_str] = ACTIONS(1784), - [anon_sym_char] = ACTIONS(1784), - [anon_sym_DASH] = ACTIONS(1241), - [anon_sym_AMP] = ACTIONS(1786), - [anon_sym_PIPE] = ACTIONS(1247), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1451), - [anon_sym_DOT_DOT] = ACTIONS(1251), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1255), - [anon_sym_COLON_COLON] = ACTIONS(1790), - [anon_sym_const] = ACTIONS(1792), - [anon_sym_default] = ACTIONS(1794), - [anon_sym_gen] = ACTIONS(1794), - [anon_sym_union] = ACTIONS(1794), - [anon_sym_ref] = ACTIONS(1281), - [sym_mutable_specifier] = ACTIONS(1457), - [sym_integer_literal] = ACTIONS(1287), - [aux_sym_string_literal_token1] = ACTIONS(1289), - [sym_char_literal] = ACTIONS(1287), - [anon_sym_true] = ACTIONS(1291), - [anon_sym_false] = ACTIONS(1291), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1796), - [sym_super] = ACTIONS(1796), - [sym_crate] = ACTIONS(1796), - [sym_metavariable] = ACTIONS(1798), - [sym__raw_string_literal_start] = ACTIONS(1299), - [sym_float_literal] = ACTIONS(1287), + [sym_identifier] = ACTIONS(2369), + [anon_sym_LPAREN] = ACTIONS(2371), + [anon_sym_LBRACK] = 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(1246), + [anon_sym_AMP] = ACTIONS(2379), + [anon_sym_PIPE] = ACTIONS(1252), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1428), + [anon_sym_DOT_DOT] = ACTIONS(1256), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1260), + [anon_sym_COLON_COLON] = ACTIONS(2383), + [anon_sym_const] = ACTIONS(2385), + [anon_sym_default] = ACTIONS(2387), + [anon_sym_gen] = ACTIONS(2387), + [anon_sym_union] = ACTIONS(2387), + [anon_sym_ref] = ACTIONS(1286), + [sym_mutable_specifier] = ACTIONS(1434), + [sym_integer_literal] = ACTIONS(1292), + [aux_sym_string_literal_token1] = ACTIONS(1294), + [sym_char_literal] = ACTIONS(1292), + [anon_sym_true] = ACTIONS(1296), + [anon_sym_false] = ACTIONS(1296), + [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(2391), + [sym__raw_string_literal_start] = ACTIONS(1304), + [sym_float_literal] = ACTIONS(1292), }, [STATE(846)] = { - [sym_bracketed_type] = STATE(3448), - [sym_generic_type] = STATE(3450), - [sym_generic_type_with_turbofish] = STATE(3159), - [sym_macro_invocation] = STATE(2150), - [sym_scoped_identifier] = STATE(2016), - [sym_scoped_type_identifier] = STATE(2988), - [sym_const_block] = STATE(2150), - [sym__pattern] = STATE(3414), - [sym_generic_pattern] = STATE(2150), - [sym_tuple_pattern] = STATE(2150), - [sym_slice_pattern] = STATE(2150), - [sym_tuple_struct_pattern] = STATE(2150), - [sym_struct_pattern] = STATE(2150), - [sym_remaining_field_pattern] = STATE(2150), - [sym_mut_pattern] = STATE(2150), - [sym_range_pattern] = STATE(2150), - [sym_ref_pattern] = STATE(2150), - [sym_captured_pattern] = STATE(2150), - [sym_reference_pattern] = STATE(2150), - [sym_or_pattern] = STATE(2150), - [sym__literal_pattern] = STATE(2076), - [sym_negative_literal] = STATE(2074), - [sym_string_literal] = STATE(2074), - [sym_raw_string_literal] = STATE(2074), - [sym_boolean_literal] = STATE(2074), + [sym_bracketed_type] = STATE(3677), + [sym_generic_type] = STATE(3475), + [sym_generic_type_with_turbofish] = STATE(3405), + [sym_macro_invocation] = STATE(2996), + [sym_scoped_identifier] = STATE(2238), + [sym_scoped_type_identifier] = STATE(3090), + [sym_const_block] = STATE(2996), + [sym__pattern] = STATE(3056), + [sym_generic_pattern] = STATE(2996), + [sym_tuple_pattern] = STATE(2996), + [sym_slice_pattern] = STATE(2996), + [sym_tuple_struct_pattern] = STATE(2996), + [sym_struct_pattern] = STATE(2996), + [sym_remaining_field_pattern] = STATE(2996), + [sym_mut_pattern] = STATE(2996), + [sym_range_pattern] = STATE(2996), + [sym_ref_pattern] = STATE(2996), + [sym_captured_pattern] = STATE(2996), + [sym_reference_pattern] = STATE(2996), + [sym_or_pattern] = STATE(2996), + [sym__literal_pattern] = STATE(2429), + [sym_negative_literal] = STATE(2440), + [sym_string_literal] = STATE(2440), + [sym_raw_string_literal] = STATE(2440), + [sym_boolean_literal] = STATE(2440), [sym_line_comment] = STATE(846), [sym_block_comment] = STATE(846), - [sym_identifier] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_LBRACK] = ACTIONS(1782), - [anon_sym_u8] = ACTIONS(1784), - [anon_sym_i8] = ACTIONS(1784), - [anon_sym_u16] = ACTIONS(1784), - [anon_sym_i16] = ACTIONS(1784), - [anon_sym_u32] = ACTIONS(1784), - [anon_sym_i32] = ACTIONS(1784), - [anon_sym_u64] = ACTIONS(1784), - [anon_sym_i64] = ACTIONS(1784), - [anon_sym_u128] = ACTIONS(1784), - [anon_sym_i128] = ACTIONS(1784), - [anon_sym_isize] = ACTIONS(1784), - [anon_sym_usize] = ACTIONS(1784), - [anon_sym_f32] = ACTIONS(1784), - [anon_sym_f64] = ACTIONS(1784), - [anon_sym_bool] = ACTIONS(1784), - [anon_sym_str] = ACTIONS(1784), - [anon_sym_char] = ACTIONS(1784), - [anon_sym_DASH] = ACTIONS(1241), - [anon_sym_AMP] = ACTIONS(1786), - [anon_sym_PIPE] = ACTIONS(1247), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1451), - [anon_sym_DOT_DOT] = ACTIONS(1251), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1255), - [anon_sym_COLON_COLON] = ACTIONS(1790), - [anon_sym_const] = ACTIONS(1792), - [anon_sym_default] = ACTIONS(1794), - [anon_sym_gen] = ACTIONS(1794), - [anon_sym_union] = ACTIONS(1794), - [anon_sym_ref] = ACTIONS(1281), - [sym_mutable_specifier] = ACTIONS(1457), - [sym_integer_literal] = ACTIONS(1287), - [aux_sym_string_literal_token1] = ACTIONS(1289), - [sym_char_literal] = ACTIONS(1287), - [anon_sym_true] = ACTIONS(1291), - [anon_sym_false] = ACTIONS(1291), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1796), - [sym_super] = ACTIONS(1796), - [sym_crate] = ACTIONS(1796), - [sym_metavariable] = ACTIONS(1798), - [sym__raw_string_literal_start] = ACTIONS(1299), - [sym_float_literal] = ACTIONS(1287), + [sym_identifier] = ACTIONS(1650), + [anon_sym_LPAREN] = ACTIONS(1652), + [anon_sym_LBRACK] = ACTIONS(1654), + [anon_sym_u8] = ACTIONS(1658), + [anon_sym_i8] = ACTIONS(1658), + [anon_sym_u16] = ACTIONS(1658), + [anon_sym_i16] = ACTIONS(1658), + [anon_sym_u32] = ACTIONS(1658), + [anon_sym_i32] = ACTIONS(1658), + [anon_sym_u64] = ACTIONS(1658), + [anon_sym_i64] = ACTIONS(1658), + [anon_sym_u128] = ACTIONS(1658), + [anon_sym_i128] = ACTIONS(1658), + [anon_sym_isize] = ACTIONS(1658), + [anon_sym_usize] = ACTIONS(1658), + [anon_sym_f32] = ACTIONS(1658), + [anon_sym_f64] = ACTIONS(1658), + [anon_sym_bool] = ACTIONS(1658), + [anon_sym_str] = ACTIONS(1658), + [anon_sym_char] = ACTIONS(1658), + [anon_sym_DASH] = ACTIONS(1660), + [anon_sym_AMP] = ACTIONS(1662), + [anon_sym_PIPE] = ACTIONS(1664), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1666), + [anon_sym_DOT_DOT] = ACTIONS(1668), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1670), + [anon_sym_COLON_COLON] = ACTIONS(1672), + [anon_sym_const] = ACTIONS(1676), + [anon_sym_default] = ACTIONS(1678), + [anon_sym_gen] = ACTIONS(1678), + [anon_sym_union] = ACTIONS(1678), + [anon_sym_ref] = ACTIONS(1680), + [sym_mutable_specifier] = ACTIONS(1682), + [sym_integer_literal] = ACTIONS(1684), + [aux_sym_string_literal_token1] = ACTIONS(1686), + [sym_char_literal] = ACTIONS(1684), + [anon_sym_true] = ACTIONS(1688), + [anon_sym_false] = ACTIONS(1688), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1690), + [sym_super] = ACTIONS(1690), + [sym_crate] = ACTIONS(1690), + [sym_metavariable] = ACTIONS(1692), + [sym__raw_string_literal_start] = ACTIONS(1694), + [sym_float_literal] = ACTIONS(1684), }, [STATE(847)] = { - [sym_bracketed_type] = STATE(3448), - [sym_generic_type] = STATE(3450), - [sym_generic_type_with_turbofish] = STATE(3159), - [sym_macro_invocation] = STATE(2150), - [sym_scoped_identifier] = STATE(2016), - [sym_scoped_type_identifier] = STATE(2988), - [sym_const_block] = STATE(2150), - [sym__pattern] = STATE(3415), - [sym_generic_pattern] = STATE(2150), - [sym_tuple_pattern] = STATE(2150), - [sym_slice_pattern] = STATE(2150), - [sym_tuple_struct_pattern] = STATE(2150), - [sym_struct_pattern] = STATE(2150), - [sym_remaining_field_pattern] = STATE(2150), - [sym_mut_pattern] = STATE(2150), - [sym_range_pattern] = STATE(2150), - [sym_ref_pattern] = STATE(2150), - [sym_captured_pattern] = STATE(2150), - [sym_reference_pattern] = STATE(2150), - [sym_or_pattern] = STATE(2150), - [sym__literal_pattern] = STATE(2076), - [sym_negative_literal] = STATE(2074), - [sym_string_literal] = STATE(2074), - [sym_raw_string_literal] = STATE(2074), - [sym_boolean_literal] = STATE(2074), + [sym_bracketed_type] = STATE(3581), + [sym_generic_type] = STATE(3475), + [sym_generic_type_with_turbofish] = STATE(3233), + [sym_macro_invocation] = STATE(2163), + [sym_scoped_identifier] = STATE(2032), + [sym_scoped_type_identifier] = STATE(2893), + [sym_const_block] = STATE(2163), + [sym__pattern] = STATE(2540), + [sym_generic_pattern] = STATE(2163), + [sym_tuple_pattern] = STATE(2163), + [sym_slice_pattern] = STATE(2163), + [sym_tuple_struct_pattern] = STATE(2163), + [sym_struct_pattern] = STATE(2163), + [sym_remaining_field_pattern] = STATE(2163), + [sym_mut_pattern] = STATE(2163), + [sym_range_pattern] = STATE(2163), + [sym_ref_pattern] = STATE(2163), + [sym_captured_pattern] = STATE(2163), + [sym_reference_pattern] = STATE(2163), + [sym_or_pattern] = STATE(2163), + [sym__literal_pattern] = STATE(2098), + [sym_negative_literal] = STATE(2095), + [sym_string_literal] = STATE(2095), + [sym_raw_string_literal] = STATE(2095), + [sym_boolean_literal] = STATE(2095), [sym_line_comment] = STATE(847), [sym_block_comment] = STATE(847), - [sym_identifier] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_LBRACK] = ACTIONS(1782), - [anon_sym_u8] = ACTIONS(1784), - [anon_sym_i8] = ACTIONS(1784), - [anon_sym_u16] = ACTIONS(1784), - [anon_sym_i16] = ACTIONS(1784), - [anon_sym_u32] = ACTIONS(1784), - [anon_sym_i32] = ACTIONS(1784), - [anon_sym_u64] = ACTIONS(1784), - [anon_sym_i64] = ACTIONS(1784), - [anon_sym_u128] = ACTIONS(1784), - [anon_sym_i128] = ACTIONS(1784), - [anon_sym_isize] = ACTIONS(1784), - [anon_sym_usize] = ACTIONS(1784), - [anon_sym_f32] = ACTIONS(1784), - [anon_sym_f64] = ACTIONS(1784), - [anon_sym_bool] = ACTIONS(1784), - [anon_sym_str] = ACTIONS(1784), - [anon_sym_char] = ACTIONS(1784), - [anon_sym_DASH] = ACTIONS(1241), - [anon_sym_AMP] = ACTIONS(1786), - [anon_sym_PIPE] = ACTIONS(1247), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1451), - [anon_sym_DOT_DOT] = ACTIONS(1251), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1255), - [anon_sym_COLON_COLON] = ACTIONS(1790), - [anon_sym_const] = ACTIONS(1792), - [anon_sym_default] = ACTIONS(1794), - [anon_sym_gen] = ACTIONS(1794), - [anon_sym_union] = ACTIONS(1794), - [anon_sym_ref] = ACTIONS(1281), - [sym_mutable_specifier] = ACTIONS(1457), - [sym_integer_literal] = ACTIONS(1287), - [aux_sym_string_literal_token1] = ACTIONS(1289), - [sym_char_literal] = ACTIONS(1287), - [anon_sym_true] = ACTIONS(1291), - [anon_sym_false] = ACTIONS(1291), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1796), - [sym_super] = ACTIONS(1796), - [sym_crate] = ACTIONS(1796), - [sym_metavariable] = ACTIONS(1798), - [sym__raw_string_literal_start] = ACTIONS(1299), - [sym_float_literal] = ACTIONS(1287), + [sym_identifier] = ACTIONS(2369), + [anon_sym_LPAREN] = ACTIONS(2371), + [anon_sym_LBRACK] = 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(1246), + [anon_sym_AMP] = ACTIONS(2379), + [anon_sym_PIPE] = ACTIONS(1252), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1428), + [anon_sym_DOT_DOT] = ACTIONS(1256), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1260), + [anon_sym_COLON_COLON] = ACTIONS(2383), + [anon_sym_const] = ACTIONS(2385), + [anon_sym_default] = ACTIONS(2387), + [anon_sym_gen] = ACTIONS(2387), + [anon_sym_union] = ACTIONS(2387), + [anon_sym_ref] = ACTIONS(1286), + [sym_mutable_specifier] = ACTIONS(3160), + [sym_integer_literal] = ACTIONS(1292), + [aux_sym_string_literal_token1] = ACTIONS(1294), + [sym_char_literal] = ACTIONS(1292), + [anon_sym_true] = ACTIONS(1296), + [anon_sym_false] = ACTIONS(1296), + [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(2391), + [sym__raw_string_literal_start] = ACTIONS(1304), + [sym_float_literal] = ACTIONS(1292), }, [STATE(848)] = { - [sym_bracketed_type] = STATE(3448), - [sym_generic_type] = STATE(3450), - [sym_generic_type_with_turbofish] = STATE(3159), - [sym_macro_invocation] = STATE(2150), - [sym_scoped_identifier] = STATE(2016), - [sym_scoped_type_identifier] = STATE(2988), - [sym_const_block] = STATE(2150), - [sym__pattern] = STATE(2145), - [sym_generic_pattern] = STATE(2150), - [sym_tuple_pattern] = STATE(2150), - [sym_slice_pattern] = STATE(2150), - [sym_tuple_struct_pattern] = STATE(2150), - [sym_struct_pattern] = STATE(2150), - [sym_remaining_field_pattern] = STATE(2150), - [sym_mut_pattern] = STATE(2150), - [sym_range_pattern] = STATE(2150), - [sym_ref_pattern] = STATE(2150), - [sym_captured_pattern] = STATE(2150), - [sym_reference_pattern] = STATE(2150), - [sym_or_pattern] = STATE(2150), - [sym__literal_pattern] = STATE(2076), - [sym_negative_literal] = STATE(2074), - [sym_string_literal] = STATE(2074), - [sym_raw_string_literal] = STATE(2074), - [sym_boolean_literal] = STATE(2074), + [sym_bracketed_type] = STATE(3581), + [sym_generic_type] = STATE(3475), + [sym_generic_type_with_turbofish] = STATE(3233), + [sym_macro_invocation] = STATE(2163), + [sym_scoped_identifier] = STATE(2032), + [sym_scoped_type_identifier] = STATE(2893), + [sym_const_block] = STATE(2163), + [sym__pattern] = STATE(3437), + [sym_generic_pattern] = STATE(2163), + [sym_tuple_pattern] = STATE(2163), + [sym_slice_pattern] = STATE(2163), + [sym_tuple_struct_pattern] = STATE(2163), + [sym_struct_pattern] = STATE(2163), + [sym_remaining_field_pattern] = STATE(2163), + [sym_mut_pattern] = STATE(2163), + [sym_range_pattern] = STATE(2163), + [sym_ref_pattern] = STATE(2163), + [sym_captured_pattern] = STATE(2163), + [sym_reference_pattern] = STATE(2163), + [sym_or_pattern] = STATE(2163), + [sym__literal_pattern] = STATE(2098), + [sym_negative_literal] = STATE(2095), + [sym_string_literal] = STATE(2095), + [sym_raw_string_literal] = STATE(2095), + [sym_boolean_literal] = STATE(2095), [sym_line_comment] = STATE(848), [sym_block_comment] = STATE(848), - [sym_identifier] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_LBRACK] = ACTIONS(1782), - [anon_sym_u8] = ACTIONS(1784), - [anon_sym_i8] = ACTIONS(1784), - [anon_sym_u16] = ACTIONS(1784), - [anon_sym_i16] = ACTIONS(1784), - [anon_sym_u32] = ACTIONS(1784), - [anon_sym_i32] = ACTIONS(1784), - [anon_sym_u64] = ACTIONS(1784), - [anon_sym_i64] = ACTIONS(1784), - [anon_sym_u128] = ACTIONS(1784), - [anon_sym_i128] = ACTIONS(1784), - [anon_sym_isize] = ACTIONS(1784), - [anon_sym_usize] = ACTIONS(1784), - [anon_sym_f32] = ACTIONS(1784), - [anon_sym_f64] = ACTIONS(1784), - [anon_sym_bool] = ACTIONS(1784), - [anon_sym_str] = ACTIONS(1784), - [anon_sym_char] = ACTIONS(1784), - [anon_sym_DASH] = ACTIONS(1241), - [anon_sym_AMP] = ACTIONS(1786), - [anon_sym_PIPE] = ACTIONS(1247), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1451), - [anon_sym_DOT_DOT] = ACTIONS(1251), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1255), - [anon_sym_COLON_COLON] = ACTIONS(1790), - [anon_sym_const] = ACTIONS(1792), - [anon_sym_default] = ACTIONS(1794), - [anon_sym_gen] = ACTIONS(1794), - [anon_sym_union] = ACTIONS(1794), - [anon_sym_ref] = ACTIONS(1281), - [sym_mutable_specifier] = ACTIONS(1457), - [sym_integer_literal] = ACTIONS(1287), - [aux_sym_string_literal_token1] = ACTIONS(1289), - [sym_char_literal] = ACTIONS(1287), - [anon_sym_true] = ACTIONS(1291), - [anon_sym_false] = ACTIONS(1291), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1796), - [sym_super] = ACTIONS(1796), - [sym_crate] = ACTIONS(1796), - [sym_metavariable] = ACTIONS(1798), - [sym__raw_string_literal_start] = ACTIONS(1299), - [sym_float_literal] = ACTIONS(1287), + [sym_identifier] = ACTIONS(2369), + [anon_sym_LPAREN] = ACTIONS(2371), + [anon_sym_LBRACK] = 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(1246), + [anon_sym_AMP] = ACTIONS(2379), + [anon_sym_PIPE] = ACTIONS(1252), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1428), + [anon_sym_DOT_DOT] = ACTIONS(1256), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1260), + [anon_sym_COLON_COLON] = ACTIONS(2383), + [anon_sym_const] = ACTIONS(2385), + [anon_sym_default] = ACTIONS(2387), + [anon_sym_gen] = ACTIONS(2387), + [anon_sym_union] = ACTIONS(2387), + [anon_sym_ref] = ACTIONS(1286), + [sym_mutable_specifier] = ACTIONS(1434), + [sym_integer_literal] = ACTIONS(1292), + [aux_sym_string_literal_token1] = ACTIONS(1294), + [sym_char_literal] = ACTIONS(1292), + [anon_sym_true] = ACTIONS(1296), + [anon_sym_false] = ACTIONS(1296), + [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(2391), + [sym__raw_string_literal_start] = ACTIONS(1304), + [sym_float_literal] = ACTIONS(1292), }, [STATE(849)] = { - [sym_function_modifiers] = STATE(3477), - [sym_higher_ranked_trait_bound] = STATE(2264), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2288), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(2291), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_use_bounds] = STATE(2054), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_bracketed_type] = STATE(3581), + [sym_generic_type] = STATE(3475), + [sym_generic_type_with_turbofish] = STATE(3233), + [sym_macro_invocation] = STATE(2163), + [sym_scoped_identifier] = STATE(2032), + [sym_scoped_type_identifier] = STATE(2893), + [sym_const_block] = STATE(2163), + [sym__pattern] = STATE(2485), + [sym_generic_pattern] = STATE(2163), + [sym_tuple_pattern] = STATE(2163), + [sym_slice_pattern] = STATE(2163), + [sym_tuple_struct_pattern] = STATE(2163), + [sym_struct_pattern] = STATE(2163), + [sym_remaining_field_pattern] = STATE(2163), + [sym_mut_pattern] = STATE(2163), + [sym_range_pattern] = STATE(2163), + [sym_ref_pattern] = STATE(2163), + [sym_captured_pattern] = STATE(2163), + [sym_reference_pattern] = STATE(2163), + [sym_or_pattern] = STATE(2163), + [sym__literal_pattern] = STATE(2098), + [sym_negative_literal] = STATE(2095), + [sym_string_literal] = STATE(2095), + [sym_raw_string_literal] = STATE(2095), + [sym_boolean_literal] = STATE(2095), [sym_line_comment] = STATE(849), [sym_block_comment] = STATE(849), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(3052), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1235), - [anon_sym_QMARK] = ACTIONS(1237), - [anon_sym_u8] = ACTIONS(1603), - [anon_sym_i8] = ACTIONS(1603), - [anon_sym_u16] = ACTIONS(1603), - [anon_sym_i16] = ACTIONS(1603), - [anon_sym_u32] = ACTIONS(1603), - [anon_sym_i32] = ACTIONS(1603), - [anon_sym_u64] = ACTIONS(1603), - [anon_sym_i64] = ACTIONS(1603), - [anon_sym_u128] = ACTIONS(1603), - [anon_sym_i128] = ACTIONS(1603), - [anon_sym_isize] = ACTIONS(1603), - [anon_sym_usize] = ACTIONS(1603), - [anon_sym_f32] = ACTIONS(1603), - [anon_sym_f64] = ACTIONS(1603), - [anon_sym_bool] = ACTIONS(1603), - [anon_sym_str] = ACTIONS(1603), - [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1243), - [anon_sym_AMP] = ACTIONS(1605), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3058), - [anon_sym_async] = ACTIONS(1265), - [anon_sym_const] = ACTIONS(1265), - [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1271), - [anon_sym_for] = ACTIONS(3136), - [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1277), - [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1265), - [anon_sym_use] = ACTIONS(3138), - [anon_sym_extern] = ACTIONS(1279), - [anon_sym_dyn] = ACTIONS(1283), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1619), - [sym_super] = ACTIONS(1619), - [sym_crate] = ACTIONS(1619), - [sym_metavariable] = ACTIONS(1621), + [sym_identifier] = ACTIONS(2369), + [anon_sym_LPAREN] = ACTIONS(2371), + [anon_sym_LBRACK] = 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(1246), + [anon_sym_AMP] = ACTIONS(2379), + [anon_sym_PIPE] = ACTIONS(1252), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1428), + [anon_sym_DOT_DOT] = ACTIONS(1256), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1260), + [anon_sym_COLON_COLON] = ACTIONS(2383), + [anon_sym_const] = ACTIONS(2385), + [anon_sym_default] = ACTIONS(2387), + [anon_sym_gen] = ACTIONS(2387), + [anon_sym_union] = ACTIONS(2387), + [anon_sym_ref] = ACTIONS(1286), + [sym_mutable_specifier] = ACTIONS(1434), + [sym_integer_literal] = ACTIONS(1292), + [aux_sym_string_literal_token1] = ACTIONS(1294), + [sym_char_literal] = ACTIONS(1292), + [anon_sym_true] = ACTIONS(1296), + [anon_sym_false] = ACTIONS(1296), + [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(2391), + [sym__raw_string_literal_start] = ACTIONS(1304), + [sym_float_literal] = ACTIONS(1292), }, [STATE(850)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(3162), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_bracketed_type] = STATE(3581), + [sym_generic_type] = STATE(3475), + [sym_generic_type_with_turbofish] = STATE(3233), + [sym_macro_invocation] = STATE(2163), + [sym_scoped_identifier] = STATE(2032), + [sym_scoped_type_identifier] = STATE(2893), + [sym_const_block] = STATE(2163), + [sym__pattern] = STATE(3423), + [sym_generic_pattern] = STATE(2163), + [sym_tuple_pattern] = STATE(2163), + [sym_slice_pattern] = STATE(2163), + [sym_tuple_struct_pattern] = STATE(2163), + [sym_struct_pattern] = STATE(2163), + [sym_remaining_field_pattern] = STATE(2163), + [sym_mut_pattern] = STATE(2163), + [sym_range_pattern] = STATE(2163), + [sym_ref_pattern] = STATE(2163), + [sym_captured_pattern] = STATE(2163), + [sym_reference_pattern] = STATE(2163), + [sym_or_pattern] = STATE(2163), + [sym__literal_pattern] = STATE(2098), + [sym_negative_literal] = STATE(2095), + [sym_string_literal] = STATE(2095), + [sym_raw_string_literal] = STATE(2095), + [sym_boolean_literal] = STATE(2095), [sym_line_comment] = STATE(850), [sym_block_comment] = STATE(850), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(3052), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_PLUS] = ACTIONS(3140), - [anon_sym_STAR] = ACTIONS(1235), - [anon_sym_QMARK] = ACTIONS(1237), - [anon_sym_u8] = ACTIONS(1603), - [anon_sym_i8] = ACTIONS(1603), - [anon_sym_u16] = ACTIONS(1603), - [anon_sym_i16] = ACTIONS(1603), - [anon_sym_u32] = ACTIONS(1603), - [anon_sym_i32] = ACTIONS(1603), - [anon_sym_u64] = ACTIONS(1603), - [anon_sym_i64] = ACTIONS(1603), - [anon_sym_u128] = ACTIONS(1603), - [anon_sym_i128] = ACTIONS(1603), - [anon_sym_isize] = ACTIONS(1603), - [anon_sym_usize] = ACTIONS(1603), - [anon_sym_f32] = ACTIONS(1603), - [anon_sym_f64] = ACTIONS(1603), - [anon_sym_bool] = ACTIONS(1603), - [anon_sym_str] = ACTIONS(1603), - [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1243), - [anon_sym_AMP] = ACTIONS(1605), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3058), - [anon_sym_async] = ACTIONS(1265), - [anon_sym_const] = ACTIONS(1265), - [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1271), - [anon_sym_for] = ACTIONS(1273), - [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1277), - [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1265), - [anon_sym_extern] = ACTIONS(1279), - [anon_sym_dyn] = ACTIONS(1283), - [sym_mutable_specifier] = ACTIONS(3142), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1619), - [sym_super] = ACTIONS(1619), - [sym_crate] = ACTIONS(1619), - [sym_metavariable] = ACTIONS(1621), + [sym_identifier] = ACTIONS(2369), + [anon_sym_LPAREN] = ACTIONS(2371), + [anon_sym_LBRACK] = 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(1246), + [anon_sym_AMP] = ACTIONS(2379), + [anon_sym_PIPE] = ACTIONS(1252), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1428), + [anon_sym_DOT_DOT] = ACTIONS(1256), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1260), + [anon_sym_COLON_COLON] = ACTIONS(2383), + [anon_sym_const] = ACTIONS(2385), + [anon_sym_default] = ACTIONS(2387), + [anon_sym_gen] = ACTIONS(2387), + [anon_sym_union] = ACTIONS(2387), + [anon_sym_ref] = ACTIONS(1286), + [sym_mutable_specifier] = ACTIONS(1434), + [sym_integer_literal] = ACTIONS(1292), + [aux_sym_string_literal_token1] = ACTIONS(1294), + [sym_char_literal] = ACTIONS(1292), + [anon_sym_true] = ACTIONS(1296), + [anon_sym_false] = ACTIONS(1296), + [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(2391), + [sym__raw_string_literal_start] = ACTIONS(1304), + [sym_float_literal] = ACTIONS(1292), }, [STATE(851)] = { - [sym_function_modifiers] = STATE(3595), - [sym_removed_trait_bound] = STATE(1787), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(1762), - [sym_bracketed_type] = STATE(3654), - [sym_lifetime] = STATE(3732), - [sym_array_type] = STATE(1787), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(1787), - [sym_tuple_type] = STATE(1787), - [sym_unit_type] = STATE(1787), - [sym_generic_type] = STATE(1646), - [sym_generic_type_with_turbofish] = STATE(3645), - [sym_bounded_type] = STATE(1787), - [sym_reference_type] = STATE(1787), - [sym_pointer_type] = STATE(1787), - [sym_never_type] = STATE(1787), - [sym_abstract_type] = STATE(1787), - [sym_dynamic_type] = STATE(1787), - [sym_macro_invocation] = STATE(1787), - [sym_scoped_identifier] = STATE(3373), - [sym_scoped_type_identifier] = STATE(1590), + [sym_bracketed_type] = STATE(3581), + [sym_generic_type] = STATE(3475), + [sym_generic_type_with_turbofish] = STATE(3233), + [sym_macro_invocation] = STATE(2163), + [sym_scoped_identifier] = STATE(2032), + [sym_scoped_type_identifier] = STATE(2893), + [sym_const_block] = STATE(2163), + [sym__pattern] = STATE(3439), + [sym_generic_pattern] = STATE(2163), + [sym_tuple_pattern] = STATE(2163), + [sym_slice_pattern] = STATE(2163), + [sym_tuple_struct_pattern] = STATE(2163), + [sym_struct_pattern] = STATE(2163), + [sym_remaining_field_pattern] = STATE(2163), + [sym_mut_pattern] = STATE(2163), + [sym_range_pattern] = STATE(2163), + [sym_ref_pattern] = STATE(2163), + [sym_captured_pattern] = STATE(2163), + [sym_reference_pattern] = STATE(2163), + [sym_or_pattern] = STATE(2163), + [sym__literal_pattern] = STATE(2098), + [sym_negative_literal] = STATE(2095), + [sym_string_literal] = STATE(2095), + [sym_raw_string_literal] = STATE(2095), + [sym_boolean_literal] = STATE(2095), [sym_line_comment] = STATE(851), [sym_block_comment] = STATE(851), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(3144), - [anon_sym_LPAREN] = ACTIONS(3146), - [anon_sym_LBRACK] = ACTIONS(3148), - [anon_sym_PLUS] = ACTIONS(3150), - [anon_sym_STAR] = ACTIONS(3152), - [anon_sym_QMARK] = ACTIONS(3154), - [anon_sym_u8] = ACTIONS(3156), - [anon_sym_i8] = ACTIONS(3156), - [anon_sym_u16] = ACTIONS(3156), - [anon_sym_i16] = ACTIONS(3156), - [anon_sym_u32] = ACTIONS(3156), - [anon_sym_i32] = ACTIONS(3156), - [anon_sym_u64] = ACTIONS(3156), - [anon_sym_i64] = ACTIONS(3156), - [anon_sym_u128] = ACTIONS(3156), - [anon_sym_i128] = ACTIONS(3156), - [anon_sym_isize] = ACTIONS(3156), - [anon_sym_usize] = ACTIONS(3156), - [anon_sym_f32] = ACTIONS(3156), - [anon_sym_f64] = ACTIONS(3156), - [anon_sym_bool] = ACTIONS(3156), - [anon_sym_str] = ACTIONS(3156), - [anon_sym_char] = ACTIONS(3156), - [anon_sym_BANG] = ACTIONS(3158), - [anon_sym_AMP] = ACTIONS(3160), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3162), - [anon_sym_SQUOTE] = ACTIONS(3058), - [anon_sym_async] = ACTIONS(1265), - [anon_sym_const] = ACTIONS(1265), - [anon_sym_default] = ACTIONS(3164), - [anon_sym_fn] = ACTIONS(3166), - [anon_sym_for] = ACTIONS(1273), - [anon_sym_gen] = ACTIONS(3168), - [anon_sym_impl] = ACTIONS(3170), - [anon_sym_union] = ACTIONS(3168), - [anon_sym_unsafe] = ACTIONS(1265), - [anon_sym_extern] = ACTIONS(1279), - [anon_sym_dyn] = ACTIONS(3172), - [sym_mutable_specifier] = ACTIONS(3174), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3176), - [sym_super] = ACTIONS(3176), - [sym_crate] = ACTIONS(3176), - [sym_metavariable] = ACTIONS(3178), + [sym_identifier] = ACTIONS(2369), + [anon_sym_LPAREN] = ACTIONS(2371), + [anon_sym_LBRACK] = 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(1246), + [anon_sym_AMP] = ACTIONS(2379), + [anon_sym_PIPE] = ACTIONS(1252), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1428), + [anon_sym_DOT_DOT] = ACTIONS(1256), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1260), + [anon_sym_COLON_COLON] = ACTIONS(2383), + [anon_sym_const] = ACTIONS(2385), + [anon_sym_default] = ACTIONS(2387), + [anon_sym_gen] = ACTIONS(2387), + [anon_sym_union] = ACTIONS(2387), + [anon_sym_ref] = ACTIONS(1286), + [sym_mutable_specifier] = ACTIONS(1434), + [sym_integer_literal] = ACTIONS(1292), + [aux_sym_string_literal_token1] = ACTIONS(1294), + [sym_char_literal] = ACTIONS(1292), + [anon_sym_true] = ACTIONS(1296), + [anon_sym_false] = ACTIONS(1296), + [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(2391), + [sym__raw_string_literal_start] = ACTIONS(1304), + [sym_float_literal] = ACTIONS(1292), }, [STATE(852)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2028), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(2053), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_use_bounds] = STATE(2054), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_bracketed_type] = STATE(3581), + [sym_generic_type] = STATE(3475), + [sym_generic_type_with_turbofish] = STATE(3233), + [sym_macro_invocation] = STATE(2163), + [sym_scoped_identifier] = STATE(2032), + [sym_scoped_type_identifier] = STATE(2893), + [sym_const_block] = STATE(2163), + [sym__pattern] = STATE(3442), + [sym_generic_pattern] = STATE(2163), + [sym_tuple_pattern] = STATE(2163), + [sym_slice_pattern] = STATE(2163), + [sym_tuple_struct_pattern] = STATE(2163), + [sym_struct_pattern] = STATE(2163), + [sym_remaining_field_pattern] = STATE(2163), + [sym_mut_pattern] = STATE(2163), + [sym_range_pattern] = STATE(2163), + [sym_ref_pattern] = STATE(2163), + [sym_captured_pattern] = STATE(2163), + [sym_reference_pattern] = STATE(2163), + [sym_or_pattern] = STATE(2163), + [sym__literal_pattern] = STATE(2098), + [sym_negative_literal] = STATE(2095), + [sym_string_literal] = STATE(2095), + [sym_raw_string_literal] = STATE(2095), + [sym_boolean_literal] = STATE(2095), [sym_line_comment] = STATE(852), [sym_block_comment] = STATE(852), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(3052), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1235), - [anon_sym_QMARK] = ACTIONS(1237), - [anon_sym_u8] = ACTIONS(1603), - [anon_sym_i8] = ACTIONS(1603), - [anon_sym_u16] = ACTIONS(1603), - [anon_sym_i16] = ACTIONS(1603), - [anon_sym_u32] = ACTIONS(1603), - [anon_sym_i32] = ACTIONS(1603), - [anon_sym_u64] = ACTIONS(1603), - [anon_sym_i64] = ACTIONS(1603), - [anon_sym_u128] = ACTIONS(1603), - [anon_sym_i128] = ACTIONS(1603), - [anon_sym_isize] = ACTIONS(1603), - [anon_sym_usize] = ACTIONS(1603), - [anon_sym_f32] = ACTIONS(1603), - [anon_sym_f64] = ACTIONS(1603), - [anon_sym_bool] = ACTIONS(1603), - [anon_sym_str] = ACTIONS(1603), - [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1243), - [anon_sym_AMP] = ACTIONS(1605), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3058), - [anon_sym_async] = ACTIONS(1265), - [anon_sym_const] = ACTIONS(1265), - [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1271), - [anon_sym_for] = ACTIONS(1273), - [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1277), - [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1265), - [anon_sym_use] = ACTIONS(3138), - [anon_sym_extern] = ACTIONS(1279), - [anon_sym_dyn] = ACTIONS(1283), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1619), - [sym_super] = ACTIONS(1619), - [sym_crate] = ACTIONS(1619), - [sym_metavariable] = ACTIONS(1621), + [sym_identifier] = ACTIONS(2369), + [anon_sym_LPAREN] = ACTIONS(2371), + [anon_sym_LBRACK] = 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(1246), + [anon_sym_AMP] = ACTIONS(2379), + [anon_sym_PIPE] = ACTIONS(1252), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1428), + [anon_sym_DOT_DOT] = ACTIONS(1256), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1260), + [anon_sym_COLON_COLON] = ACTIONS(2383), + [anon_sym_const] = ACTIONS(2385), + [anon_sym_default] = ACTIONS(2387), + [anon_sym_gen] = ACTIONS(2387), + [anon_sym_union] = ACTIONS(2387), + [anon_sym_ref] = ACTIONS(1286), + [sym_mutable_specifier] = ACTIONS(1434), + [sym_integer_literal] = ACTIONS(1292), + [aux_sym_string_literal_token1] = ACTIONS(1294), + [sym_char_literal] = ACTIONS(1292), + [anon_sym_true] = ACTIONS(1296), + [anon_sym_false] = ACTIONS(1296), + [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(2391), + [sym__raw_string_literal_start] = ACTIONS(1304), + [sym_float_literal] = ACTIONS(1292), }, [STATE(853)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2029), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_bracketed_type] = STATE(3581), + [sym_generic_type] = STATE(3475), + [sym_generic_type_with_turbofish] = STATE(3233), + [sym_macro_invocation] = STATE(2163), + [sym_scoped_identifier] = STATE(2032), + [sym_scoped_type_identifier] = STATE(2893), + [sym_const_block] = STATE(2163), + [sym__pattern] = STATE(3443), + [sym_generic_pattern] = STATE(2163), + [sym_tuple_pattern] = STATE(2163), + [sym_slice_pattern] = STATE(2163), + [sym_tuple_struct_pattern] = STATE(2163), + [sym_struct_pattern] = STATE(2163), + [sym_remaining_field_pattern] = STATE(2163), + [sym_mut_pattern] = STATE(2163), + [sym_range_pattern] = STATE(2163), + [sym_ref_pattern] = STATE(2163), + [sym_captured_pattern] = STATE(2163), + [sym_reference_pattern] = STATE(2163), + [sym_or_pattern] = STATE(2163), + [sym__literal_pattern] = STATE(2098), + [sym_negative_literal] = STATE(2095), + [sym_string_literal] = STATE(2095), + [sym_raw_string_literal] = STATE(2095), + [sym_boolean_literal] = STATE(2095), [sym_line_comment] = STATE(853), [sym_block_comment] = STATE(853), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(3052), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_PLUS] = ACTIONS(3140), - [anon_sym_STAR] = ACTIONS(1235), - [anon_sym_QMARK] = ACTIONS(1237), - [anon_sym_u8] = ACTIONS(1603), - [anon_sym_i8] = ACTIONS(1603), - [anon_sym_u16] = ACTIONS(1603), - [anon_sym_i16] = ACTIONS(1603), - [anon_sym_u32] = ACTIONS(1603), - [anon_sym_i32] = ACTIONS(1603), - [anon_sym_u64] = ACTIONS(1603), - [anon_sym_i64] = ACTIONS(1603), - [anon_sym_u128] = ACTIONS(1603), - [anon_sym_i128] = ACTIONS(1603), - [anon_sym_isize] = ACTIONS(1603), - [anon_sym_usize] = ACTIONS(1603), - [anon_sym_f32] = ACTIONS(1603), - [anon_sym_f64] = ACTIONS(1603), - [anon_sym_bool] = ACTIONS(1603), - [anon_sym_str] = ACTIONS(1603), - [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1243), - [anon_sym_AMP] = ACTIONS(1605), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3058), - [anon_sym_async] = ACTIONS(1265), - [anon_sym_const] = ACTIONS(1265), - [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1271), - [anon_sym_for] = ACTIONS(1273), - [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1277), - [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1265), - [anon_sym_extern] = ACTIONS(1279), - [anon_sym_dyn] = ACTIONS(1283), - [sym_mutable_specifier] = ACTIONS(3180), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1619), - [sym_super] = ACTIONS(1619), - [sym_crate] = ACTIONS(1619), - [sym_metavariable] = ACTIONS(1621), + [sym_identifier] = ACTIONS(2369), + [anon_sym_LPAREN] = ACTIONS(2371), + [anon_sym_LBRACK] = 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(1246), + [anon_sym_AMP] = ACTIONS(2379), + [anon_sym_PIPE] = ACTIONS(1252), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1428), + [anon_sym_DOT_DOT] = ACTIONS(1256), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1260), + [anon_sym_COLON_COLON] = ACTIONS(2383), + [anon_sym_const] = ACTIONS(2385), + [anon_sym_default] = ACTIONS(2387), + [anon_sym_gen] = ACTIONS(2387), + [anon_sym_union] = ACTIONS(2387), + [anon_sym_ref] = ACTIONS(1286), + [sym_mutable_specifier] = ACTIONS(1434), + [sym_integer_literal] = ACTIONS(1292), + [aux_sym_string_literal_token1] = ACTIONS(1294), + [sym_char_literal] = ACTIONS(1292), + [anon_sym_true] = ACTIONS(1296), + [anon_sym_false] = ACTIONS(1296), + [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(2391), + [sym__raw_string_literal_start] = ACTIONS(1304), + [sym_float_literal] = ACTIONS(1292), }, [STATE(854)] = { - [sym_function_modifiers] = STATE(3455), - [sym_removed_trait_bound] = STATE(1526), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(1457), - [sym_bracketed_type] = STATE(3638), - [sym_lifetime] = STATE(3517), - [sym_array_type] = STATE(1526), - [sym_for_lifetimes] = STATE(1623), - [sym_function_type] = STATE(1526), - [sym_tuple_type] = STATE(1526), - [sym_unit_type] = STATE(1526), - [sym_generic_type] = STATE(1102), - [sym_generic_type_with_turbofish] = STATE(3627), - [sym_bounded_type] = STATE(1526), - [sym_reference_type] = STATE(1526), - [sym_pointer_type] = STATE(1526), - [sym_never_type] = STATE(1526), - [sym_abstract_type] = STATE(1526), - [sym_dynamic_type] = STATE(1526), - [sym_macro_invocation] = STATE(1526), - [sym_scoped_identifier] = STATE(3304), - [sym_scoped_type_identifier] = STATE(1058), + [sym_bracketed_type] = STATE(3581), + [sym_generic_type] = STATE(3475), + [sym_generic_type_with_turbofish] = STATE(3233), + [sym_macro_invocation] = STATE(2163), + [sym_scoped_identifier] = STATE(2032), + [sym_scoped_type_identifier] = STATE(2893), + [sym_const_block] = STATE(2163), + [sym__pattern] = STATE(2188), + [sym_generic_pattern] = STATE(2163), + [sym_tuple_pattern] = STATE(2163), + [sym_slice_pattern] = STATE(2163), + [sym_tuple_struct_pattern] = STATE(2163), + [sym_struct_pattern] = STATE(2163), + [sym_remaining_field_pattern] = STATE(2163), + [sym_mut_pattern] = STATE(2163), + [sym_range_pattern] = STATE(2163), + [sym_ref_pattern] = STATE(2163), + [sym_captured_pattern] = STATE(2163), + [sym_reference_pattern] = STATE(2163), + [sym_or_pattern] = STATE(2163), + [sym__literal_pattern] = STATE(2098), + [sym_negative_literal] = STATE(2095), + [sym_string_literal] = STATE(2095), + [sym_raw_string_literal] = STATE(2095), + [sym_boolean_literal] = STATE(2095), [sym_line_comment] = STATE(854), [sym_block_comment] = STATE(854), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(3182), - [anon_sym_LPAREN] = ACTIONS(3184), - [anon_sym_LBRACK] = ACTIONS(3186), - [anon_sym_PLUS] = ACTIONS(3188), - [anon_sym_STAR] = ACTIONS(3190), - [anon_sym_QMARK] = ACTIONS(3192), - [anon_sym_u8] = ACTIONS(3194), - [anon_sym_i8] = ACTIONS(3194), - [anon_sym_u16] = ACTIONS(3194), - [anon_sym_i16] = ACTIONS(3194), - [anon_sym_u32] = ACTIONS(3194), - [anon_sym_i32] = ACTIONS(3194), - [anon_sym_u64] = ACTIONS(3194), - [anon_sym_i64] = ACTIONS(3194), - [anon_sym_u128] = ACTIONS(3194), - [anon_sym_i128] = ACTIONS(3194), - [anon_sym_isize] = ACTIONS(3194), - [anon_sym_usize] = ACTIONS(3194), - [anon_sym_f32] = ACTIONS(3194), - [anon_sym_f64] = ACTIONS(3194), - [anon_sym_bool] = ACTIONS(3194), - [anon_sym_str] = ACTIONS(3194), - [anon_sym_char] = ACTIONS(3194), - [anon_sym_BANG] = ACTIONS(3196), - [anon_sym_AMP] = ACTIONS(3198), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3200), - [anon_sym_SQUOTE] = ACTIONS(3058), - [anon_sym_async] = ACTIONS(1265), - [anon_sym_const] = ACTIONS(1265), - [anon_sym_default] = ACTIONS(3202), - [anon_sym_fn] = ACTIONS(3204), - [anon_sym_for] = ACTIONS(1273), - [anon_sym_gen] = ACTIONS(3206), - [anon_sym_impl] = ACTIONS(3208), - [anon_sym_union] = ACTIONS(3206), - [anon_sym_unsafe] = ACTIONS(1265), - [anon_sym_extern] = ACTIONS(1279), - [anon_sym_dyn] = ACTIONS(3210), - [sym_mutable_specifier] = ACTIONS(3212), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3214), - [sym_super] = ACTIONS(3214), - [sym_crate] = ACTIONS(3214), - [sym_metavariable] = ACTIONS(3216), + [sym_identifier] = ACTIONS(2369), + [anon_sym_LPAREN] = ACTIONS(2371), + [anon_sym_LBRACK] = 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(1246), + [anon_sym_AMP] = ACTIONS(2379), + [anon_sym_PIPE] = ACTIONS(1252), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1428), + [anon_sym_DOT_DOT] = ACTIONS(1256), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1260), + [anon_sym_COLON_COLON] = ACTIONS(2383), + [anon_sym_const] = ACTIONS(2385), + [anon_sym_default] = ACTIONS(2387), + [anon_sym_gen] = ACTIONS(2387), + [anon_sym_union] = ACTIONS(2387), + [anon_sym_ref] = ACTIONS(1286), + [sym_mutable_specifier] = ACTIONS(1434), + [sym_integer_literal] = ACTIONS(1292), + [aux_sym_string_literal_token1] = ACTIONS(1294), + [sym_char_literal] = ACTIONS(1292), + [anon_sym_true] = ACTIONS(1296), + [anon_sym_false] = ACTIONS(1296), + [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(2391), + [sym__raw_string_literal_start] = ACTIONS(1304), + [sym_float_literal] = ACTIONS(1292), }, [STATE(855)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2029), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_function_modifiers] = STATE(3591), + [sym_higher_ranked_trait_bound] = STATE(2272), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2373), + [sym__type] = STATE(2278), + [sym_bracketed_type] = STATE(3474), + [sym_lifetime] = STATE(2315), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1591), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2022), + [sym_generic_type_with_turbofish] = STATE(3764), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(2076), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3334), + [sym_scoped_type_identifier] = STATE(1990), [sym_line_comment] = STATE(855), [sym_block_comment] = STATE(855), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(3052), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_PLUS] = ACTIONS(3140), - [anon_sym_STAR] = ACTIONS(1235), - [anon_sym_QMARK] = ACTIONS(1237), - [anon_sym_u8] = ACTIONS(1603), - [anon_sym_i8] = ACTIONS(1603), - [anon_sym_u16] = ACTIONS(1603), - [anon_sym_i16] = ACTIONS(1603), - [anon_sym_u32] = ACTIONS(1603), - [anon_sym_i32] = ACTIONS(1603), - [anon_sym_u64] = ACTIONS(1603), - [anon_sym_i64] = ACTIONS(1603), - [anon_sym_u128] = ACTIONS(1603), - [anon_sym_i128] = ACTIONS(1603), - [anon_sym_isize] = ACTIONS(1603), - [anon_sym_usize] = ACTIONS(1603), - [anon_sym_f32] = ACTIONS(1603), - [anon_sym_f64] = ACTIONS(1603), - [anon_sym_bool] = ACTIONS(1603), - [anon_sym_str] = ACTIONS(1603), - [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1243), - [anon_sym_AMP] = ACTIONS(1605), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3058), - [anon_sym_async] = ACTIONS(1265), - [anon_sym_const] = ACTIONS(1265), - [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1271), - [anon_sym_for] = ACTIONS(1273), - [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1277), - [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1265), - [anon_sym_extern] = ACTIONS(1279), - [anon_sym_dyn] = ACTIONS(1283), - [sym_mutable_specifier] = ACTIONS(3218), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3220), - [sym_super] = ACTIONS(1619), - [sym_crate] = ACTIONS(1619), - [sym_metavariable] = ACTIONS(1621), + [aux_sym_function_modifiers_repeat1] = STATE(2244), + [sym_identifier] = ACTIONS(3064), + [anon_sym_LPAREN] = ACTIONS(1602), + [anon_sym_LBRACK] = ACTIONS(1604), + [anon_sym_STAR] = ACTIONS(1240), + [anon_sym_QMARK] = ACTIONS(1242), + [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_BANG] = ACTIONS(1248), + [anon_sym_AMP] = ACTIONS(1610), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1614), + [anon_sym_SQUOTE] = ACTIONS(3072), + [anon_sym_async] = ACTIONS(1270), + [anon_sym_const] = ACTIONS(1270), + [anon_sym_default] = ACTIONS(1618), + [anon_sym_fn] = ACTIONS(1276), + [anon_sym_for] = ACTIONS(3162), + [anon_sym_gen] = ACTIONS(1620), + [anon_sym_impl] = ACTIONS(1282), + [anon_sym_union] = ACTIONS(1620), + [anon_sym_unsafe] = ACTIONS(1270), + [anon_sym_use] = ACTIONS(3164), + [anon_sym_extern] = ACTIONS(1284), + [anon_sym_safe] = ACTIONS(1270), + [anon_sym_dyn] = ACTIONS(1288), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1624), + [sym_super] = ACTIONS(1624), + [sym_crate] = ACTIONS(1624), + [sym_metavariable] = ACTIONS(1626), }, [STATE(856)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2028), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(2053), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_use_bounds] = STATE(2054), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_function_modifiers] = STATE(3591), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2373), + [sym__type] = STATE(2082), + [sym_bracketed_type] = STATE(3474), + [sym_lifetime] = STATE(3727), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1591), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2022), + [sym_generic_type_with_turbofish] = STATE(3764), + [sym_bounded_type] = STATE(2069), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3334), + [sym_scoped_type_identifier] = STATE(1990), [sym_line_comment] = STATE(856), [sym_block_comment] = STATE(856), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(3052), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1235), - [anon_sym_QMARK] = ACTIONS(1237), - [anon_sym_u8] = ACTIONS(1603), - [anon_sym_i8] = ACTIONS(1603), - [anon_sym_u16] = ACTIONS(1603), - [anon_sym_i16] = ACTIONS(1603), - [anon_sym_u32] = ACTIONS(1603), - [anon_sym_i32] = ACTIONS(1603), - [anon_sym_u64] = ACTIONS(1603), - [anon_sym_i64] = ACTIONS(1603), - [anon_sym_u128] = ACTIONS(1603), - [anon_sym_i128] = ACTIONS(1603), - [anon_sym_isize] = ACTIONS(1603), - [anon_sym_usize] = ACTIONS(1603), - [anon_sym_f32] = ACTIONS(1603), - [anon_sym_f64] = ACTIONS(1603), - [anon_sym_bool] = ACTIONS(1603), - [anon_sym_str] = ACTIONS(1603), - [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1243), - [anon_sym_AMP] = ACTIONS(1605), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3046), - [anon_sym_async] = ACTIONS(1265), - [anon_sym_const] = ACTIONS(1265), - [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1271), - [anon_sym_for] = ACTIONS(1273), - [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1277), - [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1265), - [anon_sym_use] = ACTIONS(3138), - [anon_sym_extern] = ACTIONS(1279), - [anon_sym_dyn] = ACTIONS(1283), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1619), - [sym_super] = ACTIONS(1619), - [sym_crate] = ACTIONS(1619), - [sym_metavariable] = ACTIONS(1621), + [aux_sym_function_modifiers_repeat1] = STATE(2244), + [sym_identifier] = ACTIONS(3064), + [anon_sym_LPAREN] = ACTIONS(1602), + [anon_sym_LBRACK] = ACTIONS(1604), + [anon_sym_PLUS] = ACTIONS(3166), + [anon_sym_STAR] = ACTIONS(1240), + [anon_sym_QMARK] = ACTIONS(1242), + [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_BANG] = ACTIONS(1248), + [anon_sym_AMP] = ACTIONS(1610), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1614), + [anon_sym_SQUOTE] = ACTIONS(3072), + [anon_sym_async] = ACTIONS(1270), + [anon_sym_const] = ACTIONS(1270), + [anon_sym_default] = ACTIONS(1618), + [anon_sym_fn] = ACTIONS(1276), + [anon_sym_for] = ACTIONS(1278), + [anon_sym_gen] = ACTIONS(1620), + [anon_sym_impl] = ACTIONS(1282), + [anon_sym_union] = ACTIONS(1620), + [anon_sym_unsafe] = ACTIONS(1270), + [anon_sym_extern] = ACTIONS(1284), + [anon_sym_safe] = ACTIONS(1270), + [anon_sym_dyn] = ACTIONS(1288), + [sym_mutable_specifier] = ACTIONS(3168), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(3170), + [sym_super] = ACTIONS(1624), + [sym_crate] = ACTIONS(1624), + [sym_metavariable] = ACTIONS(1626), }, [STATE(857)] = { - [sym_function_modifiers] = STATE(3455), - [sym_removed_trait_bound] = STATE(1526), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(1427), - [sym_bracketed_type] = STATE(3638), - [sym_lifetime] = STATE(854), - [sym_array_type] = STATE(1526), - [sym_for_lifetimes] = STATE(1623), - [sym_function_type] = STATE(1526), - [sym_tuple_type] = STATE(1526), - [sym_unit_type] = STATE(1526), - [sym_generic_type] = STATE(1102), - [sym_generic_type_with_turbofish] = STATE(3627), - [sym_bounded_type] = STATE(1526), - [sym_reference_type] = STATE(1526), - [sym_pointer_type] = STATE(1526), - [sym_never_type] = STATE(1526), - [sym_abstract_type] = STATE(1526), - [sym_dynamic_type] = STATE(1526), - [sym_macro_invocation] = STATE(1526), - [sym_scoped_identifier] = STATE(3304), - [sym_scoped_type_identifier] = STATE(1058), + [sym_function_modifiers] = STATE(3624), + [sym_removed_trait_bound] = STATE(1721), + [sym_extern_modifier] = STATE(2373), + [sym__type] = STATE(1817), + [sym_bracketed_type] = STATE(3683), + [sym_lifetime] = STATE(3755), + [sym_array_type] = STATE(1721), + [sym_for_lifetimes] = STATE(1605), + [sym_function_type] = STATE(1721), + [sym_tuple_type] = STATE(1721), + [sym_unit_type] = STATE(1721), + [sym_generic_type] = STATE(1679), + [sym_generic_type_with_turbofish] = STATE(3674), + [sym_bounded_type] = STATE(1721), + [sym_reference_type] = STATE(1721), + [sym_pointer_type] = STATE(1721), + [sym_never_type] = STATE(1721), + [sym_abstract_type] = STATE(1721), + [sym_dynamic_type] = STATE(1721), + [sym_macro_invocation] = STATE(1721), + [sym_scoped_identifier] = STATE(3408), + [sym_scoped_type_identifier] = STATE(1595), [sym_line_comment] = STATE(857), [sym_block_comment] = STATE(857), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(3182), - [anon_sym_LPAREN] = ACTIONS(3184), - [anon_sym_LBRACK] = ACTIONS(3186), - [anon_sym_STAR] = ACTIONS(3190), - [anon_sym_QMARK] = ACTIONS(3192), - [anon_sym_u8] = ACTIONS(3194), - [anon_sym_i8] = ACTIONS(3194), - [anon_sym_u16] = ACTIONS(3194), - [anon_sym_i16] = ACTIONS(3194), - [anon_sym_u32] = ACTIONS(3194), - [anon_sym_i32] = ACTIONS(3194), - [anon_sym_u64] = ACTIONS(3194), - [anon_sym_i64] = ACTIONS(3194), - [anon_sym_u128] = ACTIONS(3194), - [anon_sym_i128] = ACTIONS(3194), - [anon_sym_isize] = ACTIONS(3194), - [anon_sym_usize] = ACTIONS(3194), - [anon_sym_f32] = ACTIONS(3194), - [anon_sym_f64] = ACTIONS(3194), - [anon_sym_bool] = ACTIONS(3194), - [anon_sym_str] = ACTIONS(3194), - [anon_sym_char] = ACTIONS(3194), - [anon_sym_BANG] = ACTIONS(3196), - [anon_sym_AMP] = ACTIONS(3198), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3200), - [anon_sym_SQUOTE] = ACTIONS(3058), - [anon_sym_async] = ACTIONS(1265), - [anon_sym_const] = ACTIONS(1265), - [anon_sym_default] = ACTIONS(3202), - [anon_sym_fn] = ACTIONS(3204), - [anon_sym_for] = ACTIONS(1273), - [anon_sym_gen] = ACTIONS(3206), - [anon_sym_impl] = ACTIONS(3208), - [anon_sym_union] = ACTIONS(3206), - [anon_sym_unsafe] = ACTIONS(1265), - [anon_sym_extern] = ACTIONS(1279), - [anon_sym_dyn] = ACTIONS(3210), - [sym_mutable_specifier] = ACTIONS(3222), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3214), - [sym_super] = ACTIONS(3214), - [sym_crate] = ACTIONS(3214), - [sym_metavariable] = ACTIONS(3216), + [aux_sym_function_modifiers_repeat1] = STATE(2244), + [sym_identifier] = ACTIONS(3172), + [anon_sym_LPAREN] = ACTIONS(3174), + [anon_sym_LBRACK] = ACTIONS(3176), + [anon_sym_PLUS] = ACTIONS(3178), + [anon_sym_STAR] = ACTIONS(3180), + [anon_sym_QMARK] = ACTIONS(3182), + [anon_sym_u8] = ACTIONS(3184), + [anon_sym_i8] = ACTIONS(3184), + [anon_sym_u16] = ACTIONS(3184), + [anon_sym_i16] = ACTIONS(3184), + [anon_sym_u32] = ACTIONS(3184), + [anon_sym_i32] = ACTIONS(3184), + [anon_sym_u64] = ACTIONS(3184), + [anon_sym_i64] = ACTIONS(3184), + [anon_sym_u128] = ACTIONS(3184), + [anon_sym_i128] = ACTIONS(3184), + [anon_sym_isize] = ACTIONS(3184), + [anon_sym_usize] = ACTIONS(3184), + [anon_sym_f32] = ACTIONS(3184), + [anon_sym_f64] = ACTIONS(3184), + [anon_sym_bool] = ACTIONS(3184), + [anon_sym_str] = ACTIONS(3184), + [anon_sym_char] = ACTIONS(3184), + [anon_sym_BANG] = ACTIONS(3186), + [anon_sym_AMP] = ACTIONS(3188), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3190), + [anon_sym_SQUOTE] = ACTIONS(3072), + [anon_sym_async] = ACTIONS(1270), + [anon_sym_const] = ACTIONS(1270), + [anon_sym_default] = ACTIONS(3192), + [anon_sym_fn] = ACTIONS(3194), + [anon_sym_for] = ACTIONS(1278), + [anon_sym_gen] = ACTIONS(3196), + [anon_sym_impl] = ACTIONS(3198), + [anon_sym_union] = ACTIONS(3196), + [anon_sym_unsafe] = ACTIONS(1270), + [anon_sym_extern] = ACTIONS(1284), + [anon_sym_safe] = ACTIONS(1270), + [anon_sym_dyn] = ACTIONS(3200), + [sym_mutable_specifier] = ACTIONS(3202), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(3204), + [sym_super] = ACTIONS(3204), + [sym_crate] = ACTIONS(3204), + [sym_metavariable] = ACTIONS(3206), }, [STATE(858)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2056), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(853), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_function_modifiers] = STATE(3591), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2373), + [sym__type] = STATE(2082), + [sym_bracketed_type] = STATE(3474), + [sym_lifetime] = STATE(3727), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1591), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2022), + [sym_generic_type_with_turbofish] = STATE(3764), + [sym_bounded_type] = STATE(2069), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3334), + [sym_scoped_type_identifier] = STATE(1990), [sym_line_comment] = STATE(858), [sym_block_comment] = STATE(858), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(3052), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1235), - [anon_sym_QMARK] = ACTIONS(1237), - [anon_sym_u8] = ACTIONS(1603), - [anon_sym_i8] = ACTIONS(1603), - [anon_sym_u16] = ACTIONS(1603), - [anon_sym_i16] = ACTIONS(1603), - [anon_sym_u32] = ACTIONS(1603), - [anon_sym_i32] = ACTIONS(1603), - [anon_sym_u64] = ACTIONS(1603), - [anon_sym_i64] = ACTIONS(1603), - [anon_sym_u128] = ACTIONS(1603), - [anon_sym_i128] = ACTIONS(1603), - [anon_sym_isize] = ACTIONS(1603), - [anon_sym_usize] = ACTIONS(1603), - [anon_sym_f32] = ACTIONS(1603), - [anon_sym_f64] = ACTIONS(1603), - [anon_sym_bool] = ACTIONS(1603), - [anon_sym_str] = ACTIONS(1603), - [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1243), - [anon_sym_AMP] = ACTIONS(1605), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3058), - [anon_sym_async] = ACTIONS(1265), - [anon_sym_const] = ACTIONS(1265), - [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1271), - [anon_sym_for] = ACTIONS(1273), - [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1277), - [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1265), - [anon_sym_extern] = ACTIONS(1279), - [anon_sym_dyn] = ACTIONS(1283), - [sym_mutable_specifier] = ACTIONS(3224), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1619), - [sym_super] = ACTIONS(1619), - [sym_crate] = ACTIONS(1619), - [sym_metavariable] = ACTIONS(1621), + [aux_sym_function_modifiers_repeat1] = STATE(2244), + [sym_identifier] = ACTIONS(3064), + [anon_sym_LPAREN] = ACTIONS(1602), + [anon_sym_LBRACK] = ACTIONS(1604), + [anon_sym_PLUS] = ACTIONS(3166), + [anon_sym_STAR] = ACTIONS(1240), + [anon_sym_QMARK] = ACTIONS(1242), + [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_BANG] = ACTIONS(1248), + [anon_sym_AMP] = ACTIONS(1610), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1614), + [anon_sym_SQUOTE] = ACTIONS(3072), + [anon_sym_async] = ACTIONS(1270), + [anon_sym_const] = ACTIONS(1270), + [anon_sym_default] = ACTIONS(1618), + [anon_sym_fn] = ACTIONS(1276), + [anon_sym_for] = ACTIONS(1278), + [anon_sym_gen] = ACTIONS(1620), + [anon_sym_impl] = ACTIONS(1282), + [anon_sym_union] = ACTIONS(1620), + [anon_sym_unsafe] = ACTIONS(1270), + [anon_sym_extern] = ACTIONS(1284), + [anon_sym_safe] = ACTIONS(1270), + [anon_sym_dyn] = ACTIONS(1288), + [sym_mutable_specifier] = ACTIONS(3208), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1624), + [sym_super] = ACTIONS(1624), + [sym_crate] = ACTIONS(1624), + [sym_metavariable] = ACTIONS(1626), }, [STATE(859)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2664), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_function_modifiers] = STATE(3480), + [sym_removed_trait_bound] = STATE(1470), + [sym_extern_modifier] = STATE(2373), + [sym__type] = STATE(1443), + [sym_bracketed_type] = STATE(3667), + [sym_lifetime] = STATE(3541), + [sym_array_type] = STATE(1470), + [sym_for_lifetimes] = STATE(1603), + [sym_function_type] = STATE(1470), + [sym_tuple_type] = STATE(1470), + [sym_unit_type] = STATE(1470), + [sym_generic_type] = STATE(1381), + [sym_generic_type_with_turbofish] = STATE(3656), + [sym_bounded_type] = STATE(1470), + [sym_reference_type] = STATE(1470), + [sym_pointer_type] = STATE(1470), + [sym_never_type] = STATE(1470), + [sym_abstract_type] = STATE(1470), + [sym_dynamic_type] = STATE(1470), + [sym_macro_invocation] = STATE(1470), + [sym_scoped_identifier] = STATE(3333), + [sym_scoped_type_identifier] = STATE(1077), [sym_line_comment] = STATE(859), [sym_block_comment] = STATE(859), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(3052), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1235), - [anon_sym_QMARK] = ACTIONS(1237), - [anon_sym_u8] = ACTIONS(1603), - [anon_sym_i8] = ACTIONS(1603), - [anon_sym_u16] = ACTIONS(1603), - [anon_sym_i16] = ACTIONS(1603), - [anon_sym_u32] = ACTIONS(1603), - [anon_sym_i32] = ACTIONS(1603), - [anon_sym_u64] = ACTIONS(1603), - [anon_sym_i64] = ACTIONS(1603), - [anon_sym_u128] = ACTIONS(1603), - [anon_sym_i128] = ACTIONS(1603), - [anon_sym_isize] = ACTIONS(1603), - [anon_sym_usize] = ACTIONS(1603), - [anon_sym_f32] = ACTIONS(1603), - [anon_sym_f64] = ACTIONS(1603), - [anon_sym_bool] = ACTIONS(1603), - [anon_sym_str] = ACTIONS(1603), - [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1243), - [anon_sym_AMP] = ACTIONS(1605), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3226), - [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3058), - [anon_sym_async] = ACTIONS(1265), - [anon_sym_const] = ACTIONS(1265), - [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1271), - [anon_sym_for] = ACTIONS(1273), - [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1277), - [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1265), - [anon_sym_extern] = ACTIONS(1279), - [anon_sym_dyn] = ACTIONS(1283), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1619), - [sym_super] = ACTIONS(1619), - [sym_crate] = ACTIONS(1619), - [sym_metavariable] = ACTIONS(1621), + [aux_sym_function_modifiers_repeat1] = STATE(2244), + [sym_identifier] = ACTIONS(3210), + [anon_sym_LPAREN] = ACTIONS(3212), + [anon_sym_LBRACK] = ACTIONS(3214), + [anon_sym_PLUS] = ACTIONS(3216), + [anon_sym_STAR] = ACTIONS(3218), + [anon_sym_QMARK] = ACTIONS(3220), + [anon_sym_u8] = ACTIONS(3222), + [anon_sym_i8] = ACTIONS(3222), + [anon_sym_u16] = ACTIONS(3222), + [anon_sym_i16] = ACTIONS(3222), + [anon_sym_u32] = ACTIONS(3222), + [anon_sym_i32] = ACTIONS(3222), + [anon_sym_u64] = ACTIONS(3222), + [anon_sym_i64] = ACTIONS(3222), + [anon_sym_u128] = ACTIONS(3222), + [anon_sym_i128] = ACTIONS(3222), + [anon_sym_isize] = ACTIONS(3222), + [anon_sym_usize] = ACTIONS(3222), + [anon_sym_f32] = ACTIONS(3222), + [anon_sym_f64] = ACTIONS(3222), + [anon_sym_bool] = ACTIONS(3222), + [anon_sym_str] = ACTIONS(3222), + [anon_sym_char] = ACTIONS(3222), + [anon_sym_BANG] = ACTIONS(3224), + [anon_sym_AMP] = ACTIONS(3226), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3228), + [anon_sym_SQUOTE] = ACTIONS(3072), + [anon_sym_async] = ACTIONS(1270), + [anon_sym_const] = ACTIONS(1270), + [anon_sym_default] = ACTIONS(3230), + [anon_sym_fn] = ACTIONS(3232), + [anon_sym_for] = ACTIONS(1278), + [anon_sym_gen] = ACTIONS(3234), + [anon_sym_impl] = ACTIONS(3236), + [anon_sym_union] = ACTIONS(3234), + [anon_sym_unsafe] = ACTIONS(1270), + [anon_sym_extern] = ACTIONS(1284), + [anon_sym_safe] = ACTIONS(1270), + [anon_sym_dyn] = ACTIONS(3238), + [sym_mutable_specifier] = ACTIONS(3240), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(3242), + [sym_super] = ACTIONS(3242), + [sym_crate] = ACTIONS(3242), + [sym_metavariable] = ACTIONS(3244), }, [STATE(860)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(3073), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_function_modifiers] = STATE(3591), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2373), + [sym__type] = STATE(3209), + [sym_bracketed_type] = STATE(3474), + [sym_lifetime] = STATE(3727), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1591), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2022), + [sym_generic_type_with_turbofish] = STATE(3764), + [sym_bounded_type] = STATE(2069), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3334), + [sym_scoped_type_identifier] = STATE(1990), [sym_line_comment] = STATE(860), [sym_block_comment] = STATE(860), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(3052), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_RPAREN] = ACTIONS(3228), - [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1235), - [anon_sym_QMARK] = ACTIONS(1237), - [anon_sym_u8] = ACTIONS(1603), - [anon_sym_i8] = ACTIONS(1603), - [anon_sym_u16] = ACTIONS(1603), - [anon_sym_i16] = ACTIONS(1603), - [anon_sym_u32] = ACTIONS(1603), - [anon_sym_i32] = ACTIONS(1603), - [anon_sym_u64] = ACTIONS(1603), - [anon_sym_i64] = ACTIONS(1603), - [anon_sym_u128] = ACTIONS(1603), - [anon_sym_i128] = ACTIONS(1603), - [anon_sym_isize] = ACTIONS(1603), - [anon_sym_usize] = ACTIONS(1603), - [anon_sym_f32] = ACTIONS(1603), - [anon_sym_f64] = ACTIONS(1603), - [anon_sym_bool] = ACTIONS(1603), - [anon_sym_str] = ACTIONS(1603), - [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1243), - [anon_sym_AMP] = ACTIONS(1605), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3058), - [anon_sym_async] = ACTIONS(1265), - [anon_sym_const] = ACTIONS(1265), - [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1271), - [anon_sym_for] = ACTIONS(1273), - [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1277), - [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1265), - [anon_sym_extern] = ACTIONS(1279), - [anon_sym_dyn] = ACTIONS(1283), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1619), - [sym_super] = ACTIONS(1619), - [sym_crate] = ACTIONS(1619), - [sym_metavariable] = ACTIONS(1621), + [aux_sym_function_modifiers_repeat1] = STATE(2244), + [sym_identifier] = ACTIONS(3064), + [anon_sym_LPAREN] = ACTIONS(1602), + [anon_sym_LBRACK] = ACTIONS(1604), + [anon_sym_PLUS] = ACTIONS(3166), + [anon_sym_STAR] = ACTIONS(1240), + [anon_sym_QMARK] = ACTIONS(1242), + [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_BANG] = ACTIONS(1248), + [anon_sym_AMP] = ACTIONS(1610), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1614), + [anon_sym_SQUOTE] = ACTIONS(3072), + [anon_sym_async] = ACTIONS(1270), + [anon_sym_const] = ACTIONS(1270), + [anon_sym_default] = ACTIONS(1618), + [anon_sym_fn] = ACTIONS(1276), + [anon_sym_for] = ACTIONS(1278), + [anon_sym_gen] = ACTIONS(1620), + [anon_sym_impl] = ACTIONS(1282), + [anon_sym_union] = ACTIONS(1620), + [anon_sym_unsafe] = ACTIONS(1270), + [anon_sym_extern] = ACTIONS(1284), + [anon_sym_safe] = ACTIONS(1270), + [anon_sym_dyn] = ACTIONS(1288), + [sym_mutable_specifier] = ACTIONS(3246), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1624), + [sym_super] = ACTIONS(1624), + [sym_crate] = ACTIONS(1624), + [sym_metavariable] = ACTIONS(1626), }, [STATE(861)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(3073), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_function_modifiers] = STATE(3591), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2373), + [sym__type] = STATE(2065), + [sym_bracketed_type] = STATE(3474), + [sym_lifetime] = STATE(2075), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1591), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2022), + [sym_generic_type_with_turbofish] = STATE(3764), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(2076), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3334), + [sym_scoped_type_identifier] = STATE(1990), [sym_line_comment] = STATE(861), [sym_block_comment] = STATE(861), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(3052), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_RPAREN] = ACTIONS(3230), - [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1235), - [anon_sym_QMARK] = ACTIONS(1237), - [anon_sym_u8] = ACTIONS(1603), - [anon_sym_i8] = ACTIONS(1603), - [anon_sym_u16] = ACTIONS(1603), - [anon_sym_i16] = ACTIONS(1603), - [anon_sym_u32] = ACTIONS(1603), - [anon_sym_i32] = ACTIONS(1603), - [anon_sym_u64] = ACTIONS(1603), - [anon_sym_i64] = ACTIONS(1603), - [anon_sym_u128] = ACTIONS(1603), - [anon_sym_i128] = ACTIONS(1603), - [anon_sym_isize] = ACTIONS(1603), - [anon_sym_usize] = ACTIONS(1603), - [anon_sym_f32] = ACTIONS(1603), - [anon_sym_f64] = ACTIONS(1603), - [anon_sym_bool] = ACTIONS(1603), - [anon_sym_str] = ACTIONS(1603), - [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1243), - [anon_sym_AMP] = ACTIONS(1605), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3058), - [anon_sym_async] = ACTIONS(1265), - [anon_sym_const] = ACTIONS(1265), - [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1271), - [anon_sym_for] = ACTIONS(1273), - [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1277), - [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1265), - [anon_sym_extern] = ACTIONS(1279), - [anon_sym_dyn] = ACTIONS(1283), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1619), - [sym_super] = ACTIONS(1619), - [sym_crate] = ACTIONS(1619), - [sym_metavariable] = ACTIONS(1621), + [aux_sym_function_modifiers_repeat1] = STATE(2244), + [sym_identifier] = ACTIONS(3064), + [anon_sym_LPAREN] = ACTIONS(1602), + [anon_sym_LBRACK] = ACTIONS(1604), + [anon_sym_STAR] = ACTIONS(1240), + [anon_sym_QMARK] = ACTIONS(1242), + [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_BANG] = ACTIONS(1248), + [anon_sym_AMP] = ACTIONS(1610), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1614), + [anon_sym_SQUOTE] = ACTIONS(3072), + [anon_sym_async] = ACTIONS(1270), + [anon_sym_const] = ACTIONS(1270), + [anon_sym_default] = ACTIONS(1618), + [anon_sym_fn] = ACTIONS(1276), + [anon_sym_for] = ACTIONS(1278), + [anon_sym_gen] = ACTIONS(1620), + [anon_sym_impl] = ACTIONS(1282), + [anon_sym_union] = ACTIONS(1620), + [anon_sym_unsafe] = ACTIONS(1270), + [anon_sym_use] = ACTIONS(3164), + [anon_sym_extern] = ACTIONS(1284), + [anon_sym_safe] = ACTIONS(1270), + [anon_sym_dyn] = ACTIONS(1288), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1624), + [sym_super] = ACTIONS(1624), + [sym_crate] = ACTIONS(1624), + [sym_metavariable] = ACTIONS(1626), }, [STATE(862)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2817), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_function_modifiers] = STATE(3591), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2373), + [sym__type] = STATE(2065), + [sym_bracketed_type] = STATE(3474), + [sym_lifetime] = STATE(2075), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1591), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2022), + [sym_generic_type_with_turbofish] = STATE(3764), + [sym_bounded_type] = STATE(2069), + [sym_use_bounds] = STATE(2076), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3334), + [sym_scoped_type_identifier] = STATE(1990), [sym_line_comment] = STATE(862), [sym_block_comment] = STATE(862), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(3052), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_RPAREN] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1235), - [anon_sym_QMARK] = ACTIONS(1237), - [anon_sym_u8] = ACTIONS(1603), - [anon_sym_i8] = ACTIONS(1603), - [anon_sym_u16] = ACTIONS(1603), - [anon_sym_i16] = ACTIONS(1603), - [anon_sym_u32] = ACTIONS(1603), - [anon_sym_i32] = ACTIONS(1603), - [anon_sym_u64] = ACTIONS(1603), - [anon_sym_i64] = ACTIONS(1603), - [anon_sym_u128] = ACTIONS(1603), - [anon_sym_i128] = ACTIONS(1603), - [anon_sym_isize] = ACTIONS(1603), - [anon_sym_usize] = ACTIONS(1603), - [anon_sym_f32] = ACTIONS(1603), - [anon_sym_f64] = ACTIONS(1603), - [anon_sym_bool] = ACTIONS(1603), - [anon_sym_str] = ACTIONS(1603), - [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1243), - [anon_sym_AMP] = ACTIONS(1605), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3058), - [anon_sym_async] = ACTIONS(1265), - [anon_sym_const] = ACTIONS(1265), - [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1271), - [anon_sym_for] = ACTIONS(1273), - [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1277), - [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1265), - [anon_sym_extern] = ACTIONS(1279), - [anon_sym_dyn] = ACTIONS(1283), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1619), - [sym_super] = ACTIONS(1619), - [sym_crate] = ACTIONS(1619), - [sym_metavariable] = ACTIONS(1621), + [aux_sym_function_modifiers_repeat1] = STATE(2244), + [sym_identifier] = ACTIONS(3064), + [anon_sym_LPAREN] = ACTIONS(1602), + [anon_sym_LBRACK] = ACTIONS(1604), + [anon_sym_STAR] = ACTIONS(1240), + [anon_sym_QMARK] = ACTIONS(1242), + [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_BANG] = ACTIONS(1248), + [anon_sym_AMP] = ACTIONS(1610), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1614), + [anon_sym_SQUOTE] = ACTIONS(3080), + [anon_sym_async] = ACTIONS(1270), + [anon_sym_const] = ACTIONS(1270), + [anon_sym_default] = ACTIONS(1618), + [anon_sym_fn] = ACTIONS(1276), + [anon_sym_for] = ACTIONS(1278), + [anon_sym_gen] = ACTIONS(1620), + [anon_sym_impl] = ACTIONS(1282), + [anon_sym_union] = ACTIONS(1620), + [anon_sym_unsafe] = ACTIONS(1270), + [anon_sym_use] = ACTIONS(3164), + [anon_sym_extern] = ACTIONS(1284), + [anon_sym_safe] = ACTIONS(1270), + [anon_sym_dyn] = ACTIONS(1288), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1624), + [sym_super] = ACTIONS(1624), + [sym_crate] = ACTIONS(1624), + [sym_metavariable] = ACTIONS(1626), }, [STATE(863)] = { - [sym_function_modifiers] = STATE(3477), - [sym_higher_ranked_trait_bound] = STATE(2264), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2265), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(2270), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_function_modifiers] = STATE(3591), + [sym_higher_ranked_trait_bound] = STATE(2227), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2373), + [sym__type] = STATE(2232), + [sym_bracketed_type] = STATE(3474), + [sym_lifetime] = STATE(2235), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1591), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2022), + [sym_generic_type_with_turbofish] = STATE(3764), + [sym_bounded_type] = STATE(2069), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3334), + [sym_scoped_type_identifier] = STATE(1990), [sym_line_comment] = STATE(863), [sym_block_comment] = STATE(863), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(3052), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1235), - [anon_sym_QMARK] = ACTIONS(1237), - [anon_sym_u8] = ACTIONS(1603), - [anon_sym_i8] = ACTIONS(1603), - [anon_sym_u16] = ACTIONS(1603), - [anon_sym_i16] = ACTIONS(1603), - [anon_sym_u32] = ACTIONS(1603), - [anon_sym_i32] = ACTIONS(1603), - [anon_sym_u64] = ACTIONS(1603), - [anon_sym_i64] = ACTIONS(1603), - [anon_sym_u128] = ACTIONS(1603), - [anon_sym_i128] = ACTIONS(1603), - [anon_sym_isize] = ACTIONS(1603), - [anon_sym_usize] = ACTIONS(1603), - [anon_sym_f32] = ACTIONS(1603), - [anon_sym_f64] = ACTIONS(1603), - [anon_sym_bool] = ACTIONS(1603), - [anon_sym_str] = ACTIONS(1603), - [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1243), - [anon_sym_AMP] = ACTIONS(1605), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3058), - [anon_sym_async] = ACTIONS(1265), - [anon_sym_const] = ACTIONS(1265), - [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1271), - [anon_sym_for] = ACTIONS(3136), - [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1277), - [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1265), - [anon_sym_extern] = ACTIONS(1279), - [anon_sym_dyn] = ACTIONS(1283), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1619), - [sym_super] = ACTIONS(1619), - [sym_crate] = ACTIONS(1619), - [sym_metavariable] = ACTIONS(1621), + [aux_sym_function_modifiers_repeat1] = STATE(2244), + [sym_identifier] = ACTIONS(3064), + [anon_sym_LPAREN] = ACTIONS(1602), + [anon_sym_LBRACK] = ACTIONS(1604), + [anon_sym_STAR] = ACTIONS(1240), + [anon_sym_QMARK] = ACTIONS(1242), + [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_BANG] = ACTIONS(1248), + [anon_sym_AMP] = ACTIONS(1610), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1614), + [anon_sym_SQUOTE] = ACTIONS(3072), + [anon_sym_async] = ACTIONS(1270), + [anon_sym_const] = ACTIONS(1270), + [anon_sym_default] = ACTIONS(1618), + [anon_sym_fn] = ACTIONS(1276), + [anon_sym_for] = ACTIONS(3162), + [anon_sym_gen] = ACTIONS(1620), + [anon_sym_impl] = ACTIONS(1282), + [anon_sym_union] = ACTIONS(1620), + [anon_sym_unsafe] = ACTIONS(1270), + [anon_sym_extern] = ACTIONS(1284), + [anon_sym_safe] = ACTIONS(1270), + [anon_sym_dyn] = ACTIONS(1288), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1624), + [sym_super] = ACTIONS(1624), + [sym_crate] = ACTIONS(1624), + [sym_metavariable] = ACTIONS(1626), }, [STATE(864)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_type_parameters] = STATE(968), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2427), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2430), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(2222), + [sym_function_modifiers] = STATE(3591), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2373), + [sym__type] = STATE(2822), + [sym_bracketed_type] = STATE(3474), + [sym_lifetime] = STATE(3727), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1591), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2022), + [sym_generic_type_with_turbofish] = STATE(3764), + [sym_bounded_type] = STATE(2069), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3334), + [sym_scoped_type_identifier] = STATE(1990), [sym_line_comment] = STATE(864), [sym_block_comment] = STATE(864), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(3234), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1235), - [anon_sym_QMARK] = ACTIONS(1237), - [anon_sym_u8] = ACTIONS(1603), - [anon_sym_i8] = ACTIONS(1603), - [anon_sym_u16] = ACTIONS(1603), - [anon_sym_i16] = ACTIONS(1603), - [anon_sym_u32] = ACTIONS(1603), - [anon_sym_i32] = ACTIONS(1603), - [anon_sym_u64] = ACTIONS(1603), - [anon_sym_i64] = ACTIONS(1603), - [anon_sym_u128] = ACTIONS(1603), - [anon_sym_i128] = ACTIONS(1603), - [anon_sym_isize] = ACTIONS(1603), - [anon_sym_usize] = ACTIONS(1603), - [anon_sym_f32] = ACTIONS(1603), - [anon_sym_f64] = ACTIONS(1603), - [anon_sym_bool] = ACTIONS(1603), - [anon_sym_str] = ACTIONS(1603), - [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(3236), - [anon_sym_AMP] = ACTIONS(1605), - [anon_sym_LT] = ACTIONS(3238), - [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3058), - [anon_sym_async] = ACTIONS(1265), - [anon_sym_const] = ACTIONS(1265), - [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1271), - [anon_sym_for] = ACTIONS(1273), - [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1277), - [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1265), - [anon_sym_extern] = ACTIONS(1279), - [anon_sym_dyn] = ACTIONS(1283), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1619), - [sym_super] = ACTIONS(1619), - [sym_crate] = ACTIONS(1619), - [sym_metavariable] = ACTIONS(1621), + [aux_sym_function_modifiers_repeat1] = STATE(2244), + [sym_identifier] = ACTIONS(3064), + [anon_sym_LPAREN] = ACTIONS(1602), + [anon_sym_RPAREN] = ACTIONS(3248), + [anon_sym_LBRACK] = ACTIONS(1604), + [anon_sym_STAR] = ACTIONS(1240), + [anon_sym_QMARK] = ACTIONS(1242), + [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_BANG] = ACTIONS(1248), + [anon_sym_AMP] = ACTIONS(1610), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1614), + [anon_sym_SQUOTE] = ACTIONS(3072), + [anon_sym_async] = ACTIONS(1270), + [anon_sym_const] = ACTIONS(1270), + [anon_sym_default] = ACTIONS(1618), + [anon_sym_fn] = ACTIONS(1276), + [anon_sym_for] = ACTIONS(1278), + [anon_sym_gen] = ACTIONS(1620), + [anon_sym_impl] = ACTIONS(1282), + [anon_sym_union] = ACTIONS(1620), + [anon_sym_unsafe] = ACTIONS(1270), + [anon_sym_extern] = ACTIONS(1284), + [anon_sym_safe] = ACTIONS(1270), + [anon_sym_dyn] = ACTIONS(1288), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1624), + [sym_super] = ACTIONS(1624), + [sym_crate] = ACTIONS(1624), + [sym_metavariable] = ACTIONS(1626), }, [STATE(865)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_type_parameters] = STATE(951), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2452), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2442), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(2238), + [sym_function_modifiers] = STATE(3591), + [sym_higher_ranked_trait_bound] = STATE(2272), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2373), + [sym__type] = STATE(2278), + [sym_bracketed_type] = STATE(3474), + [sym_lifetime] = STATE(2277), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1591), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2022), + [sym_generic_type_with_turbofish] = STATE(3764), + [sym_bounded_type] = STATE(2069), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3334), + [sym_scoped_type_identifier] = STATE(1990), [sym_line_comment] = STATE(865), [sym_block_comment] = STATE(865), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(3240), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1235), - [anon_sym_QMARK] = ACTIONS(1237), - [anon_sym_u8] = ACTIONS(1603), - [anon_sym_i8] = ACTIONS(1603), - [anon_sym_u16] = ACTIONS(1603), - [anon_sym_i16] = ACTIONS(1603), - [anon_sym_u32] = ACTIONS(1603), - [anon_sym_i32] = ACTIONS(1603), - [anon_sym_u64] = ACTIONS(1603), - [anon_sym_i64] = ACTIONS(1603), - [anon_sym_u128] = ACTIONS(1603), - [anon_sym_i128] = ACTIONS(1603), - [anon_sym_isize] = ACTIONS(1603), - [anon_sym_usize] = ACTIONS(1603), - [anon_sym_f32] = ACTIONS(1603), - [anon_sym_f64] = ACTIONS(1603), - [anon_sym_bool] = ACTIONS(1603), - [anon_sym_str] = ACTIONS(1603), - [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(3242), - [anon_sym_AMP] = ACTIONS(1605), - [anon_sym_LT] = ACTIONS(3238), - [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3058), - [anon_sym_async] = ACTIONS(1265), - [anon_sym_const] = ACTIONS(1265), - [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1271), - [anon_sym_for] = ACTIONS(1273), - [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1277), - [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1265), - [anon_sym_extern] = ACTIONS(1279), - [anon_sym_dyn] = ACTIONS(1283), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1619), - [sym_super] = ACTIONS(1619), - [sym_crate] = ACTIONS(1619), - [sym_metavariable] = ACTIONS(1621), + [aux_sym_function_modifiers_repeat1] = STATE(2244), + [sym_identifier] = ACTIONS(3064), + [anon_sym_LPAREN] = ACTIONS(1602), + [anon_sym_LBRACK] = ACTIONS(1604), + [anon_sym_STAR] = ACTIONS(1240), + [anon_sym_QMARK] = ACTIONS(1242), + [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_BANG] = ACTIONS(1248), + [anon_sym_AMP] = ACTIONS(1610), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1614), + [anon_sym_SQUOTE] = ACTIONS(3072), + [anon_sym_async] = ACTIONS(1270), + [anon_sym_const] = ACTIONS(1270), + [anon_sym_default] = ACTIONS(1618), + [anon_sym_fn] = ACTIONS(1276), + [anon_sym_for] = ACTIONS(3162), + [anon_sym_gen] = ACTIONS(1620), + [anon_sym_impl] = ACTIONS(1282), + [anon_sym_union] = ACTIONS(1620), + [anon_sym_unsafe] = ACTIONS(1270), + [anon_sym_extern] = ACTIONS(1284), + [anon_sym_safe] = ACTIONS(1270), + [anon_sym_dyn] = ACTIONS(1288), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1624), + [sym_super] = ACTIONS(1624), + [sym_crate] = ACTIONS(1624), + [sym_metavariable] = ACTIONS(1626), }, [STATE(866)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(3073), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_function_modifiers] = STATE(3591), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2373), + [sym__type] = STATE(3358), + [sym_bracketed_type] = STATE(3474), + [sym_lifetime] = STATE(860), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1591), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2022), + [sym_generic_type_with_turbofish] = STATE(3764), + [sym_bounded_type] = STATE(2069), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3334), + [sym_scoped_type_identifier] = STATE(1990), [sym_line_comment] = STATE(866), [sym_block_comment] = STATE(866), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(3052), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_RPAREN] = ACTIONS(3244), - [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1235), - [anon_sym_QMARK] = ACTIONS(1237), - [anon_sym_u8] = ACTIONS(1603), - [anon_sym_i8] = ACTIONS(1603), - [anon_sym_u16] = ACTIONS(1603), - [anon_sym_i16] = ACTIONS(1603), - [anon_sym_u32] = ACTIONS(1603), - [anon_sym_i32] = ACTIONS(1603), - [anon_sym_u64] = ACTIONS(1603), - [anon_sym_i64] = ACTIONS(1603), - [anon_sym_u128] = ACTIONS(1603), - [anon_sym_i128] = ACTIONS(1603), - [anon_sym_isize] = ACTIONS(1603), - [anon_sym_usize] = ACTIONS(1603), - [anon_sym_f32] = ACTIONS(1603), - [anon_sym_f64] = ACTIONS(1603), - [anon_sym_bool] = ACTIONS(1603), - [anon_sym_str] = ACTIONS(1603), - [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1243), - [anon_sym_AMP] = ACTIONS(1605), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3058), - [anon_sym_async] = ACTIONS(1265), - [anon_sym_const] = ACTIONS(1265), - [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1271), - [anon_sym_for] = ACTIONS(1273), - [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1277), - [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1265), - [anon_sym_extern] = ACTIONS(1279), - [anon_sym_dyn] = ACTIONS(1283), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1619), - [sym_super] = ACTIONS(1619), - [sym_crate] = ACTIONS(1619), - [sym_metavariable] = ACTIONS(1621), + [aux_sym_function_modifiers_repeat1] = STATE(2244), + [sym_identifier] = ACTIONS(3064), + [anon_sym_LPAREN] = ACTIONS(1602), + [anon_sym_LBRACK] = ACTIONS(1604), + [anon_sym_STAR] = ACTIONS(1240), + [anon_sym_QMARK] = ACTIONS(1242), + [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_BANG] = ACTIONS(1248), + [anon_sym_AMP] = ACTIONS(1610), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1614), + [anon_sym_SQUOTE] = ACTIONS(3072), + [anon_sym_async] = ACTIONS(1270), + [anon_sym_const] = ACTIONS(1270), + [anon_sym_default] = ACTIONS(1618), + [anon_sym_fn] = ACTIONS(1276), + [anon_sym_for] = ACTIONS(1278), + [anon_sym_gen] = ACTIONS(1620), + [anon_sym_impl] = ACTIONS(1282), + [anon_sym_union] = ACTIONS(1620), + [anon_sym_unsafe] = ACTIONS(1270), + [anon_sym_extern] = ACTIONS(1284), + [anon_sym_safe] = ACTIONS(1270), + [anon_sym_dyn] = ACTIONS(1288), + [sym_mutable_specifier] = ACTIONS(3250), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1624), + [sym_super] = ACTIONS(1624), + [sym_crate] = ACTIONS(1624), + [sym_metavariable] = ACTIONS(1626), }, [STATE(867)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_type_parameters] = STATE(890), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2380), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2392), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(2232), + [sym_function_modifiers] = STATE(3591), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2373), + [sym__type] = STATE(2920), + [sym_bracketed_type] = STATE(3474), + [sym_qualified_type] = STATE(3639), + [sym_lifetime] = STATE(3727), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1591), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2022), + [sym_generic_type_with_turbofish] = STATE(3764), + [sym_bounded_type] = STATE(2069), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3334), + [sym_scoped_type_identifier] = STATE(1990), [sym_line_comment] = STATE(867), [sym_block_comment] = STATE(867), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(3246), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1235), - [anon_sym_QMARK] = ACTIONS(1237), - [anon_sym_u8] = ACTIONS(1603), - [anon_sym_i8] = ACTIONS(1603), - [anon_sym_u16] = ACTIONS(1603), - [anon_sym_i16] = ACTIONS(1603), - [anon_sym_u32] = ACTIONS(1603), - [anon_sym_i32] = ACTIONS(1603), - [anon_sym_u64] = ACTIONS(1603), - [anon_sym_i64] = ACTIONS(1603), - [anon_sym_u128] = ACTIONS(1603), - [anon_sym_i128] = ACTIONS(1603), - [anon_sym_isize] = ACTIONS(1603), - [anon_sym_usize] = ACTIONS(1603), - [anon_sym_f32] = ACTIONS(1603), - [anon_sym_f64] = ACTIONS(1603), - [anon_sym_bool] = ACTIONS(1603), - [anon_sym_str] = ACTIONS(1603), - [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(3248), - [anon_sym_AMP] = ACTIONS(1605), - [anon_sym_LT] = ACTIONS(3238), - [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3058), - [anon_sym_async] = ACTIONS(1265), - [anon_sym_const] = ACTIONS(1265), - [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1271), - [anon_sym_for] = ACTIONS(1273), - [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1277), - [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1265), - [anon_sym_extern] = ACTIONS(1279), - [anon_sym_dyn] = ACTIONS(1283), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1619), - [sym_super] = ACTIONS(1619), - [sym_crate] = ACTIONS(1619), - [sym_metavariable] = ACTIONS(1621), + [aux_sym_function_modifiers_repeat1] = STATE(2244), + [sym_identifier] = ACTIONS(3064), + [anon_sym_LPAREN] = ACTIONS(1602), + [anon_sym_LBRACK] = ACTIONS(1604), + [anon_sym_STAR] = ACTIONS(1240), + [anon_sym_QMARK] = ACTIONS(1242), + [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_BANG] = ACTIONS(1248), + [anon_sym_AMP] = ACTIONS(1610), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1614), + [anon_sym_SQUOTE] = ACTIONS(3072), + [anon_sym_async] = ACTIONS(1270), + [anon_sym_const] = ACTIONS(1270), + [anon_sym_default] = ACTIONS(1618), + [anon_sym_fn] = ACTIONS(1276), + [anon_sym_for] = ACTIONS(1278), + [anon_sym_gen] = ACTIONS(1620), + [anon_sym_impl] = ACTIONS(1282), + [anon_sym_union] = ACTIONS(1620), + [anon_sym_unsafe] = ACTIONS(1270), + [anon_sym_extern] = ACTIONS(1284), + [anon_sym_safe] = ACTIONS(1270), + [anon_sym_dyn] = ACTIONS(1288), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1624), + [sym_super] = ACTIONS(1624), + [sym_crate] = ACTIONS(1624), + [sym_metavariable] = ACTIONS(1626), }, [STATE(868)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2632), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_function_modifiers] = STATE(3591), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2373), + [sym__type] = STATE(2638), + [sym_bracketed_type] = STATE(3474), + [sym_lifetime] = STATE(3727), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1591), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2022), + [sym_generic_type_with_turbofish] = STATE(3764), + [sym_bounded_type] = STATE(2069), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3334), + [sym_scoped_type_identifier] = STATE(1990), [sym_line_comment] = STATE(868), [sym_block_comment] = STATE(868), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(3052), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_RPAREN] = ACTIONS(3250), - [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1235), - [anon_sym_QMARK] = ACTIONS(1237), - [anon_sym_u8] = ACTIONS(1603), - [anon_sym_i8] = ACTIONS(1603), - [anon_sym_u16] = ACTIONS(1603), - [anon_sym_i16] = ACTIONS(1603), - [anon_sym_u32] = ACTIONS(1603), - [anon_sym_i32] = ACTIONS(1603), - [anon_sym_u64] = ACTIONS(1603), - [anon_sym_i64] = ACTIONS(1603), - [anon_sym_u128] = ACTIONS(1603), - [anon_sym_i128] = ACTIONS(1603), - [anon_sym_isize] = ACTIONS(1603), - [anon_sym_usize] = ACTIONS(1603), - [anon_sym_f32] = ACTIONS(1603), - [anon_sym_f64] = ACTIONS(1603), - [anon_sym_bool] = ACTIONS(1603), - [anon_sym_str] = ACTIONS(1603), - [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1243), - [anon_sym_AMP] = ACTIONS(1605), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3058), - [anon_sym_async] = ACTIONS(1265), - [anon_sym_const] = ACTIONS(1265), - [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1271), - [anon_sym_for] = ACTIONS(1273), - [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1277), - [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1265), - [anon_sym_extern] = ACTIONS(1279), - [anon_sym_dyn] = ACTIONS(1283), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1619), - [sym_super] = ACTIONS(1619), - [sym_crate] = ACTIONS(1619), - [sym_metavariable] = ACTIONS(1621), + [aux_sym_function_modifiers_repeat1] = STATE(2244), + [sym_identifier] = ACTIONS(3064), + [anon_sym_LPAREN] = ACTIONS(1602), + [anon_sym_RPAREN] = ACTIONS(3252), + [anon_sym_LBRACK] = ACTIONS(1604), + [anon_sym_STAR] = ACTIONS(1240), + [anon_sym_QMARK] = ACTIONS(1242), + [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_BANG] = ACTIONS(1248), + [anon_sym_AMP] = ACTIONS(1610), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1614), + [anon_sym_SQUOTE] = ACTIONS(3072), + [anon_sym_async] = ACTIONS(1270), + [anon_sym_const] = ACTIONS(1270), + [anon_sym_default] = ACTIONS(1618), + [anon_sym_fn] = ACTIONS(1276), + [anon_sym_for] = ACTIONS(1278), + [anon_sym_gen] = ACTIONS(1620), + [anon_sym_impl] = ACTIONS(1282), + [anon_sym_union] = ACTIONS(1620), + [anon_sym_unsafe] = ACTIONS(1270), + [anon_sym_extern] = ACTIONS(1284), + [anon_sym_safe] = ACTIONS(1270), + [anon_sym_dyn] = ACTIONS(1288), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1624), + [sym_super] = ACTIONS(1624), + [sym_crate] = ACTIONS(1624), + [sym_metavariable] = ACTIONS(1626), }, [STATE(869)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_type_parameters] = STATE(967), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2423), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2449), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(2241), + [sym_function_modifiers] = STATE(3591), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2373), + [sym__type] = STATE(2845), + [sym_bracketed_type] = STATE(3474), + [sym_lifetime] = STATE(3727), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1591), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2022), + [sym_generic_type_with_turbofish] = STATE(3764), + [sym_bounded_type] = STATE(2069), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3334), + [sym_scoped_type_identifier] = STATE(1990), [sym_line_comment] = STATE(869), [sym_block_comment] = STATE(869), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(3252), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1235), - [anon_sym_QMARK] = ACTIONS(1237), - [anon_sym_u8] = ACTIONS(1603), - [anon_sym_i8] = ACTIONS(1603), - [anon_sym_u16] = ACTIONS(1603), - [anon_sym_i16] = ACTIONS(1603), - [anon_sym_u32] = ACTIONS(1603), - [anon_sym_i32] = ACTIONS(1603), - [anon_sym_u64] = ACTIONS(1603), - [anon_sym_i64] = ACTIONS(1603), - [anon_sym_u128] = ACTIONS(1603), - [anon_sym_i128] = ACTIONS(1603), - [anon_sym_isize] = ACTIONS(1603), - [anon_sym_usize] = ACTIONS(1603), - [anon_sym_f32] = ACTIONS(1603), - [anon_sym_f64] = ACTIONS(1603), - [anon_sym_bool] = ACTIONS(1603), - [anon_sym_str] = ACTIONS(1603), - [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(3254), - [anon_sym_AMP] = ACTIONS(1605), - [anon_sym_LT] = ACTIONS(3238), - [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3058), - [anon_sym_async] = ACTIONS(1265), - [anon_sym_const] = ACTIONS(1265), - [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1271), - [anon_sym_for] = ACTIONS(1273), - [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1277), - [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1265), - [anon_sym_extern] = ACTIONS(1279), - [anon_sym_dyn] = ACTIONS(1283), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1619), - [sym_super] = ACTIONS(1619), - [sym_crate] = ACTIONS(1619), - [sym_metavariable] = ACTIONS(1621), + [aux_sym_function_modifiers_repeat1] = STATE(2244), + [sym_identifier] = ACTIONS(3064), + [anon_sym_LPAREN] = ACTIONS(1602), + [anon_sym_RPAREN] = ACTIONS(3254), + [anon_sym_LBRACK] = ACTIONS(1604), + [anon_sym_STAR] = ACTIONS(1240), + [anon_sym_QMARK] = ACTIONS(1242), + [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_BANG] = ACTIONS(1248), + [anon_sym_AMP] = ACTIONS(1610), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1614), + [anon_sym_SQUOTE] = ACTIONS(3072), + [anon_sym_async] = ACTIONS(1270), + [anon_sym_const] = ACTIONS(1270), + [anon_sym_default] = ACTIONS(1618), + [anon_sym_fn] = ACTIONS(1276), + [anon_sym_for] = ACTIONS(1278), + [anon_sym_gen] = ACTIONS(1620), + [anon_sym_impl] = ACTIONS(1282), + [anon_sym_union] = ACTIONS(1620), + [anon_sym_unsafe] = ACTIONS(1270), + [anon_sym_extern] = ACTIONS(1284), + [anon_sym_safe] = ACTIONS(1270), + [anon_sym_dyn] = ACTIONS(1288), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1624), + [sym_super] = ACTIONS(1624), + [sym_crate] = ACTIONS(1624), + [sym_metavariable] = ACTIONS(1626), }, [STATE(870)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2706), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_function_modifiers] = STATE(3591), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2373), + [sym__type] = STATE(2060), + [sym_bracketed_type] = STATE(3474), + [sym_lifetime] = STATE(858), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1591), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2022), + [sym_generic_type_with_turbofish] = STATE(3764), + [sym_bounded_type] = STATE(2069), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3334), + [sym_scoped_type_identifier] = STATE(1990), [sym_line_comment] = STATE(870), [sym_block_comment] = STATE(870), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(3052), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1235), - [anon_sym_QMARK] = ACTIONS(1237), - [anon_sym_u8] = ACTIONS(1603), - [anon_sym_i8] = ACTIONS(1603), - [anon_sym_u16] = ACTIONS(1603), - [anon_sym_i16] = ACTIONS(1603), - [anon_sym_u32] = ACTIONS(1603), - [anon_sym_i32] = ACTIONS(1603), - [anon_sym_u64] = ACTIONS(1603), - [anon_sym_i64] = ACTIONS(1603), - [anon_sym_u128] = ACTIONS(1603), - [anon_sym_i128] = ACTIONS(1603), - [anon_sym_isize] = ACTIONS(1603), - [anon_sym_usize] = ACTIONS(1603), - [anon_sym_f32] = ACTIONS(1603), - [anon_sym_f64] = ACTIONS(1603), - [anon_sym_bool] = ACTIONS(1603), - [anon_sym_str] = ACTIONS(1603), - [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1243), - [anon_sym_AMP] = ACTIONS(1605), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3256), - [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3058), - [anon_sym_async] = ACTIONS(1265), - [anon_sym_const] = ACTIONS(1265), - [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1271), - [anon_sym_for] = ACTIONS(1273), - [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1277), - [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1265), - [anon_sym_extern] = ACTIONS(1279), - [anon_sym_dyn] = ACTIONS(1283), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1619), - [sym_super] = ACTIONS(1619), - [sym_crate] = ACTIONS(1619), - [sym_metavariable] = ACTIONS(1621), + [aux_sym_function_modifiers_repeat1] = STATE(2244), + [sym_identifier] = ACTIONS(3064), + [anon_sym_LPAREN] = ACTIONS(1602), + [anon_sym_LBRACK] = ACTIONS(1604), + [anon_sym_STAR] = ACTIONS(1240), + [anon_sym_QMARK] = ACTIONS(1242), + [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_BANG] = ACTIONS(1248), + [anon_sym_AMP] = ACTIONS(1610), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1614), + [anon_sym_SQUOTE] = ACTIONS(3072), + [anon_sym_async] = ACTIONS(1270), + [anon_sym_const] = ACTIONS(1270), + [anon_sym_default] = ACTIONS(1618), + [anon_sym_fn] = ACTIONS(1276), + [anon_sym_for] = ACTIONS(1278), + [anon_sym_gen] = ACTIONS(1620), + [anon_sym_impl] = ACTIONS(1282), + [anon_sym_union] = ACTIONS(1620), + [anon_sym_unsafe] = ACTIONS(1270), + [anon_sym_extern] = ACTIONS(1284), + [anon_sym_safe] = ACTIONS(1270), + [anon_sym_dyn] = ACTIONS(1288), + [sym_mutable_specifier] = ACTIONS(3256), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1624), + [sym_super] = ACTIONS(1624), + [sym_crate] = ACTIONS(1624), + [sym_metavariable] = ACTIONS(1626), }, [STATE(871)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(3073), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_function_modifiers] = STATE(3591), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2373), + [sym__type] = STATE(2845), + [sym_bracketed_type] = STATE(3474), + [sym_lifetime] = STATE(3727), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1591), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2022), + [sym_generic_type_with_turbofish] = STATE(3764), + [sym_bounded_type] = STATE(2069), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3334), + [sym_scoped_type_identifier] = STATE(1990), [sym_line_comment] = STATE(871), [sym_block_comment] = STATE(871), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(3052), - [anon_sym_LPAREN] = ACTIONS(1597), + [aux_sym_function_modifiers_repeat1] = STATE(2244), + [sym_identifier] = ACTIONS(3064), + [anon_sym_LPAREN] = ACTIONS(1602), [anon_sym_RPAREN] = ACTIONS(3258), - [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1235), - [anon_sym_QMARK] = ACTIONS(1237), - [anon_sym_u8] = ACTIONS(1603), - [anon_sym_i8] = ACTIONS(1603), - [anon_sym_u16] = ACTIONS(1603), - [anon_sym_i16] = ACTIONS(1603), - [anon_sym_u32] = ACTIONS(1603), - [anon_sym_i32] = ACTIONS(1603), - [anon_sym_u64] = ACTIONS(1603), - [anon_sym_i64] = ACTIONS(1603), - [anon_sym_u128] = ACTIONS(1603), - [anon_sym_i128] = ACTIONS(1603), - [anon_sym_isize] = ACTIONS(1603), - [anon_sym_usize] = ACTIONS(1603), - [anon_sym_f32] = ACTIONS(1603), - [anon_sym_f64] = ACTIONS(1603), - [anon_sym_bool] = ACTIONS(1603), - [anon_sym_str] = ACTIONS(1603), - [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1243), - [anon_sym_AMP] = ACTIONS(1605), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3058), - [anon_sym_async] = ACTIONS(1265), - [anon_sym_const] = ACTIONS(1265), - [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1271), - [anon_sym_for] = ACTIONS(1273), - [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1277), - [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1265), - [anon_sym_extern] = ACTIONS(1279), - [anon_sym_dyn] = ACTIONS(1283), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1619), - [sym_super] = ACTIONS(1619), - [sym_crate] = ACTIONS(1619), - [sym_metavariable] = ACTIONS(1621), + [anon_sym_LBRACK] = ACTIONS(1604), + [anon_sym_STAR] = ACTIONS(1240), + [anon_sym_QMARK] = ACTIONS(1242), + [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_BANG] = ACTIONS(1248), + [anon_sym_AMP] = ACTIONS(1610), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1614), + [anon_sym_SQUOTE] = ACTIONS(3072), + [anon_sym_async] = ACTIONS(1270), + [anon_sym_const] = ACTIONS(1270), + [anon_sym_default] = ACTIONS(1618), + [anon_sym_fn] = ACTIONS(1276), + [anon_sym_for] = ACTIONS(1278), + [anon_sym_gen] = ACTIONS(1620), + [anon_sym_impl] = ACTIONS(1282), + [anon_sym_union] = ACTIONS(1620), + [anon_sym_unsafe] = ACTIONS(1270), + [anon_sym_extern] = ACTIONS(1284), + [anon_sym_safe] = ACTIONS(1270), + [anon_sym_dyn] = ACTIONS(1288), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1624), + [sym_super] = ACTIONS(1624), + [sym_crate] = ACTIONS(1624), + [sym_metavariable] = ACTIONS(1626), }, [STATE(872)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2816), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_function_modifiers] = STATE(3591), + [sym_removed_trait_bound] = STATE(2069), + [sym_type_parameters] = STATE(979), + [sym_extern_modifier] = STATE(2373), + [sym__type] = STATE(2378), + [sym_bracketed_type] = STATE(3474), + [sym_lifetime] = STATE(3727), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1591), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2389), + [sym_generic_type_with_turbofish] = STATE(3764), + [sym_bounded_type] = STATE(2069), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3334), + [sym_scoped_type_identifier] = STATE(2223), [sym_line_comment] = STATE(872), [sym_block_comment] = STATE(872), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(3052), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_RPAREN] = ACTIONS(3260), - [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1235), - [anon_sym_QMARK] = ACTIONS(1237), - [anon_sym_u8] = ACTIONS(1603), - [anon_sym_i8] = ACTIONS(1603), - [anon_sym_u16] = ACTIONS(1603), - [anon_sym_i16] = ACTIONS(1603), - [anon_sym_u32] = ACTIONS(1603), - [anon_sym_i32] = ACTIONS(1603), - [anon_sym_u64] = ACTIONS(1603), - [anon_sym_i64] = ACTIONS(1603), - [anon_sym_u128] = ACTIONS(1603), - [anon_sym_i128] = ACTIONS(1603), - [anon_sym_isize] = ACTIONS(1603), - [anon_sym_usize] = ACTIONS(1603), - [anon_sym_f32] = ACTIONS(1603), - [anon_sym_f64] = ACTIONS(1603), - [anon_sym_bool] = ACTIONS(1603), - [anon_sym_str] = ACTIONS(1603), - [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1243), - [anon_sym_AMP] = ACTIONS(1605), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3058), - [anon_sym_async] = ACTIONS(1265), - [anon_sym_const] = ACTIONS(1265), - [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1271), - [anon_sym_for] = ACTIONS(1273), - [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1277), - [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1265), - [anon_sym_extern] = ACTIONS(1279), - [anon_sym_dyn] = ACTIONS(1283), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1619), - [sym_super] = ACTIONS(1619), - [sym_crate] = ACTIONS(1619), - [sym_metavariable] = ACTIONS(1621), + [aux_sym_function_modifiers_repeat1] = STATE(2244), + [sym_identifier] = ACTIONS(3260), + [anon_sym_LPAREN] = ACTIONS(1602), + [anon_sym_LBRACK] = ACTIONS(1604), + [anon_sym_STAR] = ACTIONS(1240), + [anon_sym_QMARK] = ACTIONS(1242), + [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_BANG] = ACTIONS(3262), + [anon_sym_AMP] = ACTIONS(1610), + [anon_sym_LT] = ACTIONS(3264), + [anon_sym_COLON_COLON] = ACTIONS(1614), + [anon_sym_SQUOTE] = ACTIONS(3072), + [anon_sym_async] = ACTIONS(1270), + [anon_sym_const] = ACTIONS(1270), + [anon_sym_default] = ACTIONS(1618), + [anon_sym_fn] = ACTIONS(1276), + [anon_sym_for] = ACTIONS(1278), + [anon_sym_gen] = ACTIONS(1620), + [anon_sym_impl] = ACTIONS(1282), + [anon_sym_union] = ACTIONS(1620), + [anon_sym_unsafe] = ACTIONS(1270), + [anon_sym_extern] = ACTIONS(1284), + [anon_sym_safe] = ACTIONS(1270), + [anon_sym_dyn] = ACTIONS(1288), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1624), + [sym_super] = ACTIONS(1624), + [sym_crate] = ACTIONS(1624), + [sym_metavariable] = ACTIONS(1626), }, [STATE(873)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(3135), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(850), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_function_modifiers] = STATE(3591), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2373), + [sym__type] = STATE(2845), + [sym_bracketed_type] = STATE(3474), + [sym_lifetime] = STATE(3727), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1591), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2022), + [sym_generic_type_with_turbofish] = STATE(3764), + [sym_bounded_type] = STATE(2069), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3334), + [sym_scoped_type_identifier] = STATE(1990), [sym_line_comment] = STATE(873), [sym_block_comment] = STATE(873), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(3052), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1235), - [anon_sym_QMARK] = ACTIONS(1237), - [anon_sym_u8] = ACTIONS(1603), - [anon_sym_i8] = ACTIONS(1603), - [anon_sym_u16] = ACTIONS(1603), - [anon_sym_i16] = ACTIONS(1603), - [anon_sym_u32] = ACTIONS(1603), - [anon_sym_i32] = ACTIONS(1603), - [anon_sym_u64] = ACTIONS(1603), - [anon_sym_i64] = ACTIONS(1603), - [anon_sym_u128] = ACTIONS(1603), - [anon_sym_i128] = ACTIONS(1603), - [anon_sym_isize] = ACTIONS(1603), - [anon_sym_usize] = ACTIONS(1603), - [anon_sym_f32] = ACTIONS(1603), - [anon_sym_f64] = ACTIONS(1603), - [anon_sym_bool] = ACTIONS(1603), - [anon_sym_str] = ACTIONS(1603), - [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1243), - [anon_sym_AMP] = ACTIONS(1605), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3058), - [anon_sym_async] = ACTIONS(1265), - [anon_sym_const] = ACTIONS(1265), - [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1271), - [anon_sym_for] = ACTIONS(1273), - [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1277), - [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1265), - [anon_sym_extern] = ACTIONS(1279), - [anon_sym_dyn] = ACTIONS(1283), - [sym_mutable_specifier] = ACTIONS(3262), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1619), - [sym_super] = ACTIONS(1619), - [sym_crate] = ACTIONS(1619), - [sym_metavariable] = ACTIONS(1621), + [aux_sym_function_modifiers_repeat1] = STATE(2244), + [sym_identifier] = ACTIONS(3064), + [anon_sym_LPAREN] = ACTIONS(1602), + [anon_sym_RPAREN] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1604), + [anon_sym_STAR] = ACTIONS(1240), + [anon_sym_QMARK] = ACTIONS(1242), + [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_BANG] = ACTIONS(1248), + [anon_sym_AMP] = ACTIONS(1610), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1614), + [anon_sym_SQUOTE] = ACTIONS(3072), + [anon_sym_async] = ACTIONS(1270), + [anon_sym_const] = ACTIONS(1270), + [anon_sym_default] = ACTIONS(1618), + [anon_sym_fn] = ACTIONS(1276), + [anon_sym_for] = ACTIONS(1278), + [anon_sym_gen] = ACTIONS(1620), + [anon_sym_impl] = ACTIONS(1282), + [anon_sym_union] = ACTIONS(1620), + [anon_sym_unsafe] = ACTIONS(1270), + [anon_sym_extern] = ACTIONS(1284), + [anon_sym_safe] = ACTIONS(1270), + [anon_sym_dyn] = ACTIONS(1288), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1624), + [sym_super] = ACTIONS(1624), + [sym_crate] = ACTIONS(1624), + [sym_metavariable] = ACTIONS(1626), }, [STATE(874)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(3073), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_function_modifiers] = STATE(3591), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2373), + [sym__type] = STATE(2845), + [sym_bracketed_type] = STATE(3474), + [sym_lifetime] = STATE(3727), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1591), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2022), + [sym_generic_type_with_turbofish] = STATE(3764), + [sym_bounded_type] = STATE(2069), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3334), + [sym_scoped_type_identifier] = STATE(1990), [sym_line_comment] = STATE(874), [sym_block_comment] = STATE(874), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(3052), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_RPAREN] = ACTIONS(3264), - [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1235), - [anon_sym_QMARK] = ACTIONS(1237), - [anon_sym_u8] = ACTIONS(1603), - [anon_sym_i8] = ACTIONS(1603), - [anon_sym_u16] = ACTIONS(1603), - [anon_sym_i16] = ACTIONS(1603), - [anon_sym_u32] = ACTIONS(1603), - [anon_sym_i32] = ACTIONS(1603), - [anon_sym_u64] = ACTIONS(1603), - [anon_sym_i64] = ACTIONS(1603), - [anon_sym_u128] = ACTIONS(1603), - [anon_sym_i128] = ACTIONS(1603), - [anon_sym_isize] = ACTIONS(1603), - [anon_sym_usize] = ACTIONS(1603), - [anon_sym_f32] = ACTIONS(1603), - [anon_sym_f64] = ACTIONS(1603), - [anon_sym_bool] = ACTIONS(1603), - [anon_sym_str] = ACTIONS(1603), - [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1243), - [anon_sym_AMP] = ACTIONS(1605), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3058), - [anon_sym_async] = ACTIONS(1265), - [anon_sym_const] = ACTIONS(1265), - [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1271), - [anon_sym_for] = ACTIONS(1273), - [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1277), - [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1265), - [anon_sym_extern] = ACTIONS(1279), - [anon_sym_dyn] = ACTIONS(1283), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1619), - [sym_super] = ACTIONS(1619), - [sym_crate] = ACTIONS(1619), - [sym_metavariable] = ACTIONS(1621), + [aux_sym_function_modifiers_repeat1] = STATE(2244), + [sym_identifier] = ACTIONS(3064), + [anon_sym_LPAREN] = ACTIONS(1602), + [anon_sym_RPAREN] = ACTIONS(3268), + [anon_sym_LBRACK] = ACTIONS(1604), + [anon_sym_STAR] = ACTIONS(1240), + [anon_sym_QMARK] = ACTIONS(1242), + [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_BANG] = ACTIONS(1248), + [anon_sym_AMP] = ACTIONS(1610), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1614), + [anon_sym_SQUOTE] = ACTIONS(3072), + [anon_sym_async] = ACTIONS(1270), + [anon_sym_const] = ACTIONS(1270), + [anon_sym_default] = ACTIONS(1618), + [anon_sym_fn] = ACTIONS(1276), + [anon_sym_for] = ACTIONS(1278), + [anon_sym_gen] = ACTIONS(1620), + [anon_sym_impl] = ACTIONS(1282), + [anon_sym_union] = ACTIONS(1620), + [anon_sym_unsafe] = ACTIONS(1270), + [anon_sym_extern] = ACTIONS(1284), + [anon_sym_safe] = ACTIONS(1270), + [anon_sym_dyn] = ACTIONS(1288), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1624), + [sym_super] = ACTIONS(1624), + [sym_crate] = ACTIONS(1624), + [sym_metavariable] = ACTIONS(1626), }, [STATE(875)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2954), - [sym_bracketed_type] = STATE(3449), - [sym_qualified_type] = STATE(3737), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_function_modifiers] = STATE(3591), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2373), + [sym__type] = STATE(2845), + [sym_bracketed_type] = STATE(3474), + [sym_lifetime] = STATE(3727), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1591), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2022), + [sym_generic_type_with_turbofish] = STATE(3764), + [sym_bounded_type] = STATE(2069), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3334), + [sym_scoped_type_identifier] = STATE(1990), [sym_line_comment] = STATE(875), [sym_block_comment] = STATE(875), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(3052), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1235), - [anon_sym_QMARK] = ACTIONS(1237), - [anon_sym_u8] = ACTIONS(1603), - [anon_sym_i8] = ACTIONS(1603), - [anon_sym_u16] = ACTIONS(1603), - [anon_sym_i16] = ACTIONS(1603), - [anon_sym_u32] = ACTIONS(1603), - [anon_sym_i32] = ACTIONS(1603), - [anon_sym_u64] = ACTIONS(1603), - [anon_sym_i64] = ACTIONS(1603), - [anon_sym_u128] = ACTIONS(1603), - [anon_sym_i128] = ACTIONS(1603), - [anon_sym_isize] = ACTIONS(1603), - [anon_sym_usize] = ACTIONS(1603), - [anon_sym_f32] = ACTIONS(1603), - [anon_sym_f64] = ACTIONS(1603), - [anon_sym_bool] = ACTIONS(1603), - [anon_sym_str] = ACTIONS(1603), - [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1243), - [anon_sym_AMP] = ACTIONS(1605), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3058), - [anon_sym_async] = ACTIONS(1265), - [anon_sym_const] = ACTIONS(1265), - [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1271), - [anon_sym_for] = ACTIONS(1273), - [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1277), - [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1265), - [anon_sym_extern] = ACTIONS(1279), - [anon_sym_dyn] = ACTIONS(1283), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1619), - [sym_super] = ACTIONS(1619), - [sym_crate] = ACTIONS(1619), - [sym_metavariable] = ACTIONS(1621), + [aux_sym_function_modifiers_repeat1] = STATE(2244), + [sym_identifier] = ACTIONS(3064), + [anon_sym_LPAREN] = ACTIONS(1602), + [anon_sym_RPAREN] = ACTIONS(3270), + [anon_sym_LBRACK] = ACTIONS(1604), + [anon_sym_STAR] = ACTIONS(1240), + [anon_sym_QMARK] = ACTIONS(1242), + [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_BANG] = ACTIONS(1248), + [anon_sym_AMP] = ACTIONS(1610), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1614), + [anon_sym_SQUOTE] = ACTIONS(3072), + [anon_sym_async] = ACTIONS(1270), + [anon_sym_const] = ACTIONS(1270), + [anon_sym_default] = ACTIONS(1618), + [anon_sym_fn] = ACTIONS(1276), + [anon_sym_for] = ACTIONS(1278), + [anon_sym_gen] = ACTIONS(1620), + [anon_sym_impl] = ACTIONS(1282), + [anon_sym_union] = ACTIONS(1620), + [anon_sym_unsafe] = ACTIONS(1270), + [anon_sym_extern] = ACTIONS(1284), + [anon_sym_safe] = ACTIONS(1270), + [anon_sym_dyn] = ACTIONS(1288), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1624), + [sym_super] = ACTIONS(1624), + [sym_crate] = ACTIONS(1624), + [sym_metavariable] = ACTIONS(1626), }, [STATE(876)] = { - [sym_function_modifiers] = STATE(3477), - [sym_higher_ranked_trait_bound] = STATE(2264), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2288), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(2270), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_function_modifiers] = STATE(3591), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2373), + [sym__type] = STATE(2845), + [sym_bracketed_type] = STATE(3474), + [sym_lifetime] = STATE(3727), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1591), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2022), + [sym_generic_type_with_turbofish] = STATE(3764), + [sym_bounded_type] = STATE(2069), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3334), + [sym_scoped_type_identifier] = STATE(1990), [sym_line_comment] = STATE(876), [sym_block_comment] = STATE(876), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(3052), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1235), - [anon_sym_QMARK] = ACTIONS(1237), - [anon_sym_u8] = ACTIONS(1603), - [anon_sym_i8] = ACTIONS(1603), - [anon_sym_u16] = ACTIONS(1603), - [anon_sym_i16] = ACTIONS(1603), - [anon_sym_u32] = ACTIONS(1603), - [anon_sym_i32] = ACTIONS(1603), - [anon_sym_u64] = ACTIONS(1603), - [anon_sym_i64] = ACTIONS(1603), - [anon_sym_u128] = ACTIONS(1603), - [anon_sym_i128] = ACTIONS(1603), - [anon_sym_isize] = ACTIONS(1603), - [anon_sym_usize] = ACTIONS(1603), - [anon_sym_f32] = ACTIONS(1603), - [anon_sym_f64] = ACTIONS(1603), - [anon_sym_bool] = ACTIONS(1603), - [anon_sym_str] = ACTIONS(1603), - [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1243), - [anon_sym_AMP] = ACTIONS(1605), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3058), - [anon_sym_async] = ACTIONS(1265), - [anon_sym_const] = ACTIONS(1265), - [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1271), - [anon_sym_for] = ACTIONS(3136), - [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1277), - [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1265), - [anon_sym_extern] = ACTIONS(1279), - [anon_sym_dyn] = ACTIONS(1283), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1619), - [sym_super] = ACTIONS(1619), - [sym_crate] = ACTIONS(1619), - [sym_metavariable] = ACTIONS(1621), + [aux_sym_function_modifiers_repeat1] = STATE(2244), + [sym_identifier] = ACTIONS(3064), + [anon_sym_LPAREN] = ACTIONS(1602), + [anon_sym_RPAREN] = ACTIONS(3272), + [anon_sym_LBRACK] = ACTIONS(1604), + [anon_sym_STAR] = ACTIONS(1240), + [anon_sym_QMARK] = ACTIONS(1242), + [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_BANG] = ACTIONS(1248), + [anon_sym_AMP] = ACTIONS(1610), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1614), + [anon_sym_SQUOTE] = ACTIONS(3072), + [anon_sym_async] = ACTIONS(1270), + [anon_sym_const] = ACTIONS(1270), + [anon_sym_default] = ACTIONS(1618), + [anon_sym_fn] = ACTIONS(1276), + [anon_sym_for] = ACTIONS(1278), + [anon_sym_gen] = ACTIONS(1620), + [anon_sym_impl] = ACTIONS(1282), + [anon_sym_union] = ACTIONS(1620), + [anon_sym_unsafe] = ACTIONS(1270), + [anon_sym_extern] = ACTIONS(1284), + [anon_sym_safe] = ACTIONS(1270), + [anon_sym_dyn] = ACTIONS(1288), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1624), + [sym_super] = ACTIONS(1624), + [sym_crate] = ACTIONS(1624), + [sym_metavariable] = ACTIONS(1626), }, [STATE(877)] = { - [sym_function_modifiers] = STATE(3477), - [sym_higher_ranked_trait_bound] = STATE(2226), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2227), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(2228), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_function_modifiers] = STATE(3591), + [sym_removed_trait_bound] = STATE(2069), + [sym_type_parameters] = STATE(904), + [sym_extern_modifier] = STATE(2373), + [sym__type] = STATE(2390), + [sym_bracketed_type] = STATE(3474), + [sym_lifetime] = STATE(3727), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1591), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2411), + [sym_generic_type_with_turbofish] = STATE(3764), + [sym_bounded_type] = STATE(2069), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3334), + [sym_scoped_type_identifier] = STATE(2249), [sym_line_comment] = STATE(877), [sym_block_comment] = STATE(877), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(3052), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1235), - [anon_sym_QMARK] = ACTIONS(1237), - [anon_sym_u8] = ACTIONS(1603), - [anon_sym_i8] = ACTIONS(1603), - [anon_sym_u16] = ACTIONS(1603), - [anon_sym_i16] = ACTIONS(1603), - [anon_sym_u32] = ACTIONS(1603), - [anon_sym_i32] = ACTIONS(1603), - [anon_sym_u64] = ACTIONS(1603), - [anon_sym_i64] = ACTIONS(1603), - [anon_sym_u128] = ACTIONS(1603), - [anon_sym_i128] = ACTIONS(1603), - [anon_sym_isize] = ACTIONS(1603), - [anon_sym_usize] = ACTIONS(1603), - [anon_sym_f32] = ACTIONS(1603), - [anon_sym_f64] = ACTIONS(1603), - [anon_sym_bool] = ACTIONS(1603), - [anon_sym_str] = ACTIONS(1603), - [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1243), - [anon_sym_AMP] = ACTIONS(1605), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3058), - [anon_sym_async] = ACTIONS(1265), - [anon_sym_const] = ACTIONS(1265), - [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1271), - [anon_sym_for] = ACTIONS(3136), - [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1277), - [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1265), - [anon_sym_extern] = ACTIONS(1279), - [anon_sym_dyn] = ACTIONS(1283), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1619), - [sym_super] = ACTIONS(1619), - [sym_crate] = ACTIONS(1619), - [sym_metavariable] = ACTIONS(1621), + [aux_sym_function_modifiers_repeat1] = STATE(2244), + [sym_identifier] = ACTIONS(3274), + [anon_sym_LPAREN] = ACTIONS(1602), + [anon_sym_LBRACK] = ACTIONS(1604), + [anon_sym_STAR] = ACTIONS(1240), + [anon_sym_QMARK] = ACTIONS(1242), + [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_BANG] = ACTIONS(3276), + [anon_sym_AMP] = ACTIONS(1610), + [anon_sym_LT] = ACTIONS(3264), + [anon_sym_COLON_COLON] = ACTIONS(1614), + [anon_sym_SQUOTE] = ACTIONS(3072), + [anon_sym_async] = ACTIONS(1270), + [anon_sym_const] = ACTIONS(1270), + [anon_sym_default] = ACTIONS(1618), + [anon_sym_fn] = ACTIONS(1276), + [anon_sym_for] = ACTIONS(1278), + [anon_sym_gen] = ACTIONS(1620), + [anon_sym_impl] = ACTIONS(1282), + [anon_sym_union] = ACTIONS(1620), + [anon_sym_unsafe] = ACTIONS(1270), + [anon_sym_extern] = ACTIONS(1284), + [anon_sym_safe] = ACTIONS(1270), + [anon_sym_dyn] = ACTIONS(1288), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1624), + [sym_super] = ACTIONS(1624), + [sym_crate] = ACTIONS(1624), + [sym_metavariable] = ACTIONS(1626), }, [STATE(878)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(3073), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_function_modifiers] = STATE(3480), + [sym_removed_trait_bound] = STATE(1470), + [sym_extern_modifier] = STATE(2373), + [sym__type] = STATE(1420), + [sym_bracketed_type] = STATE(3667), + [sym_lifetime] = STATE(859), + [sym_array_type] = STATE(1470), + [sym_for_lifetimes] = STATE(1603), + [sym_function_type] = STATE(1470), + [sym_tuple_type] = STATE(1470), + [sym_unit_type] = STATE(1470), + [sym_generic_type] = STATE(1381), + [sym_generic_type_with_turbofish] = STATE(3656), + [sym_bounded_type] = STATE(1470), + [sym_reference_type] = STATE(1470), + [sym_pointer_type] = STATE(1470), + [sym_never_type] = STATE(1470), + [sym_abstract_type] = STATE(1470), + [sym_dynamic_type] = STATE(1470), + [sym_macro_invocation] = STATE(1470), + [sym_scoped_identifier] = STATE(3333), + [sym_scoped_type_identifier] = STATE(1077), [sym_line_comment] = STATE(878), [sym_block_comment] = STATE(878), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(3052), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_RPAREN] = ACTIONS(3266), - [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1235), - [anon_sym_QMARK] = ACTIONS(1237), - [anon_sym_u8] = ACTIONS(1603), - [anon_sym_i8] = ACTIONS(1603), - [anon_sym_u16] = ACTIONS(1603), - [anon_sym_i16] = ACTIONS(1603), - [anon_sym_u32] = ACTIONS(1603), - [anon_sym_i32] = ACTIONS(1603), - [anon_sym_u64] = ACTIONS(1603), - [anon_sym_i64] = ACTIONS(1603), - [anon_sym_u128] = ACTIONS(1603), - [anon_sym_i128] = ACTIONS(1603), - [anon_sym_isize] = ACTIONS(1603), - [anon_sym_usize] = ACTIONS(1603), - [anon_sym_f32] = ACTIONS(1603), - [anon_sym_f64] = ACTIONS(1603), - [anon_sym_bool] = ACTIONS(1603), - [anon_sym_str] = ACTIONS(1603), - [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1243), - [anon_sym_AMP] = ACTIONS(1605), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3058), - [anon_sym_async] = ACTIONS(1265), - [anon_sym_const] = ACTIONS(1265), - [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1271), - [anon_sym_for] = ACTIONS(1273), - [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1277), - [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1265), - [anon_sym_extern] = ACTIONS(1279), - [anon_sym_dyn] = ACTIONS(1283), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1619), - [sym_super] = ACTIONS(1619), - [sym_crate] = ACTIONS(1619), - [sym_metavariable] = ACTIONS(1621), + [aux_sym_function_modifiers_repeat1] = STATE(2244), + [sym_identifier] = ACTIONS(3210), + [anon_sym_LPAREN] = ACTIONS(3212), + [anon_sym_LBRACK] = ACTIONS(3214), + [anon_sym_STAR] = ACTIONS(3218), + [anon_sym_QMARK] = ACTIONS(3220), + [anon_sym_u8] = ACTIONS(3222), + [anon_sym_i8] = ACTIONS(3222), + [anon_sym_u16] = ACTIONS(3222), + [anon_sym_i16] = ACTIONS(3222), + [anon_sym_u32] = ACTIONS(3222), + [anon_sym_i32] = ACTIONS(3222), + [anon_sym_u64] = ACTIONS(3222), + [anon_sym_i64] = ACTIONS(3222), + [anon_sym_u128] = ACTIONS(3222), + [anon_sym_i128] = ACTIONS(3222), + [anon_sym_isize] = ACTIONS(3222), + [anon_sym_usize] = ACTIONS(3222), + [anon_sym_f32] = ACTIONS(3222), + [anon_sym_f64] = ACTIONS(3222), + [anon_sym_bool] = ACTIONS(3222), + [anon_sym_str] = ACTIONS(3222), + [anon_sym_char] = ACTIONS(3222), + [anon_sym_BANG] = ACTIONS(3224), + [anon_sym_AMP] = ACTIONS(3226), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3228), + [anon_sym_SQUOTE] = ACTIONS(3072), + [anon_sym_async] = ACTIONS(1270), + [anon_sym_const] = ACTIONS(1270), + [anon_sym_default] = ACTIONS(3230), + [anon_sym_fn] = ACTIONS(3232), + [anon_sym_for] = ACTIONS(1278), + [anon_sym_gen] = ACTIONS(3234), + [anon_sym_impl] = ACTIONS(3236), + [anon_sym_union] = ACTIONS(3234), + [anon_sym_unsafe] = ACTIONS(1270), + [anon_sym_extern] = ACTIONS(1284), + [anon_sym_safe] = ACTIONS(1270), + [anon_sym_dyn] = ACTIONS(3238), + [sym_mutable_specifier] = ACTIONS(3278), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(3242), + [sym_super] = ACTIONS(3242), + [sym_crate] = ACTIONS(3242), + [sym_metavariable] = ACTIONS(3244), }, [STATE(879)] = { - [sym_function_modifiers] = STATE(3595), - [sym_removed_trait_bound] = STATE(1787), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(1740), - [sym_bracketed_type] = STATE(3654), - [sym_lifetime] = STATE(851), - [sym_array_type] = STATE(1787), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(1787), - [sym_tuple_type] = STATE(1787), - [sym_unit_type] = STATE(1787), - [sym_generic_type] = STATE(1646), - [sym_generic_type_with_turbofish] = STATE(3645), - [sym_bounded_type] = STATE(1787), - [sym_reference_type] = STATE(1787), - [sym_pointer_type] = STATE(1787), - [sym_never_type] = STATE(1787), - [sym_abstract_type] = STATE(1787), - [sym_dynamic_type] = STATE(1787), - [sym_macro_invocation] = STATE(1787), - [sym_scoped_identifier] = STATE(3373), - [sym_scoped_type_identifier] = STATE(1590), + [sym_function_modifiers] = STATE(3591), + [sym_removed_trait_bound] = STATE(2069), + [sym_type_parameters] = STATE(983), + [sym_extern_modifier] = STATE(2373), + [sym__type] = STATE(2453), + [sym_bracketed_type] = STATE(3474), + [sym_lifetime] = STATE(3727), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1591), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2470), + [sym_generic_type_with_turbofish] = STATE(3764), + [sym_bounded_type] = STATE(2069), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3334), + [sym_scoped_type_identifier] = STATE(2257), [sym_line_comment] = STATE(879), [sym_block_comment] = STATE(879), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(3144), - [anon_sym_LPAREN] = ACTIONS(3146), - [anon_sym_LBRACK] = ACTIONS(3148), - [anon_sym_STAR] = ACTIONS(3152), - [anon_sym_QMARK] = ACTIONS(3154), - [anon_sym_u8] = ACTIONS(3156), - [anon_sym_i8] = ACTIONS(3156), - [anon_sym_u16] = ACTIONS(3156), - [anon_sym_i16] = ACTIONS(3156), - [anon_sym_u32] = ACTIONS(3156), - [anon_sym_i32] = ACTIONS(3156), - [anon_sym_u64] = ACTIONS(3156), - [anon_sym_i64] = ACTIONS(3156), - [anon_sym_u128] = ACTIONS(3156), - [anon_sym_i128] = ACTIONS(3156), - [anon_sym_isize] = ACTIONS(3156), - [anon_sym_usize] = ACTIONS(3156), - [anon_sym_f32] = ACTIONS(3156), - [anon_sym_f64] = ACTIONS(3156), - [anon_sym_bool] = ACTIONS(3156), - [anon_sym_str] = ACTIONS(3156), - [anon_sym_char] = ACTIONS(3156), - [anon_sym_BANG] = ACTIONS(3158), - [anon_sym_AMP] = ACTIONS(3160), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3162), - [anon_sym_SQUOTE] = ACTIONS(3058), - [anon_sym_async] = ACTIONS(1265), - [anon_sym_const] = ACTIONS(1265), - [anon_sym_default] = ACTIONS(3164), - [anon_sym_fn] = ACTIONS(3166), - [anon_sym_for] = ACTIONS(1273), - [anon_sym_gen] = ACTIONS(3168), - [anon_sym_impl] = ACTIONS(3170), - [anon_sym_union] = ACTIONS(3168), - [anon_sym_unsafe] = ACTIONS(1265), - [anon_sym_extern] = ACTIONS(1279), - [anon_sym_dyn] = ACTIONS(3172), - [sym_mutable_specifier] = ACTIONS(3268), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3176), - [sym_super] = ACTIONS(3176), - [sym_crate] = ACTIONS(3176), - [sym_metavariable] = ACTIONS(3178), + [aux_sym_function_modifiers_repeat1] = STATE(2244), + [sym_identifier] = ACTIONS(3280), + [anon_sym_LPAREN] = ACTIONS(1602), + [anon_sym_LBRACK] = ACTIONS(1604), + [anon_sym_STAR] = ACTIONS(1240), + [anon_sym_QMARK] = ACTIONS(1242), + [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_BANG] = ACTIONS(3282), + [anon_sym_AMP] = ACTIONS(1610), + [anon_sym_LT] = ACTIONS(3264), + [anon_sym_COLON_COLON] = ACTIONS(1614), + [anon_sym_SQUOTE] = ACTIONS(3072), + [anon_sym_async] = ACTIONS(1270), + [anon_sym_const] = ACTIONS(1270), + [anon_sym_default] = ACTIONS(1618), + [anon_sym_fn] = ACTIONS(1276), + [anon_sym_for] = ACTIONS(1278), + [anon_sym_gen] = ACTIONS(1620), + [anon_sym_impl] = ACTIONS(1282), + [anon_sym_union] = ACTIONS(1620), + [anon_sym_unsafe] = ACTIONS(1270), + [anon_sym_extern] = ACTIONS(1284), + [anon_sym_safe] = ACTIONS(1270), + [anon_sym_dyn] = ACTIONS(1288), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1624), + [sym_super] = ACTIONS(1624), + [sym_crate] = ACTIONS(1624), + [sym_metavariable] = ACTIONS(1626), }, [STATE(880)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2706), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_function_modifiers] = STATE(3591), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2373), + [sym__type] = STATE(2836), + [sym_bracketed_type] = STATE(3474), + [sym_lifetime] = STATE(3727), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1591), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2022), + [sym_generic_type_with_turbofish] = STATE(3764), + [sym_bounded_type] = STATE(2069), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3334), + [sym_scoped_type_identifier] = STATE(1990), [sym_line_comment] = STATE(880), [sym_block_comment] = STATE(880), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(3052), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1235), - [anon_sym_QMARK] = ACTIONS(1237), - [anon_sym_u8] = ACTIONS(1603), - [anon_sym_i8] = ACTIONS(1603), - [anon_sym_u16] = ACTIONS(1603), - [anon_sym_i16] = ACTIONS(1603), - [anon_sym_u32] = ACTIONS(1603), - [anon_sym_i32] = ACTIONS(1603), - [anon_sym_u64] = ACTIONS(1603), - [anon_sym_i64] = ACTIONS(1603), - [anon_sym_u128] = ACTIONS(1603), - [anon_sym_i128] = ACTIONS(1603), - [anon_sym_isize] = ACTIONS(1603), - [anon_sym_usize] = ACTIONS(1603), - [anon_sym_f32] = ACTIONS(1603), - [anon_sym_f64] = ACTIONS(1603), - [anon_sym_bool] = ACTIONS(1603), - [anon_sym_str] = ACTIONS(1603), - [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1243), - [anon_sym_AMP] = ACTIONS(1605), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3058), - [anon_sym_async] = ACTIONS(1265), - [anon_sym_const] = ACTIONS(1265), - [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1271), - [anon_sym_for] = ACTIONS(1273), - [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1277), - [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1265), - [anon_sym_extern] = ACTIONS(1279), - [anon_sym_dyn] = ACTIONS(1283), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1619), - [sym_super] = ACTIONS(1619), - [sym_crate] = ACTIONS(1619), - [sym_metavariable] = ACTIONS(1621), + [aux_sym_function_modifiers_repeat1] = STATE(2244), + [sym_identifier] = ACTIONS(3064), + [anon_sym_LPAREN] = ACTIONS(1602), + [anon_sym_RPAREN] = ACTIONS(3284), + [anon_sym_LBRACK] = ACTIONS(1604), + [anon_sym_STAR] = ACTIONS(1240), + [anon_sym_QMARK] = ACTIONS(1242), + [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_BANG] = ACTIONS(1248), + [anon_sym_AMP] = ACTIONS(1610), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1614), + [anon_sym_SQUOTE] = ACTIONS(3072), + [anon_sym_async] = ACTIONS(1270), + [anon_sym_const] = ACTIONS(1270), + [anon_sym_default] = ACTIONS(1618), + [anon_sym_fn] = ACTIONS(1276), + [anon_sym_for] = ACTIONS(1278), + [anon_sym_gen] = ACTIONS(1620), + [anon_sym_impl] = ACTIONS(1282), + [anon_sym_union] = ACTIONS(1620), + [anon_sym_unsafe] = ACTIONS(1270), + [anon_sym_extern] = ACTIONS(1284), + [anon_sym_safe] = ACTIONS(1270), + [anon_sym_dyn] = ACTIONS(1288), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1624), + [sym_super] = ACTIONS(1624), + [sym_crate] = ACTIONS(1624), + [sym_metavariable] = ACTIONS(1626), }, [STATE(881)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(3073), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_function_modifiers] = STATE(3591), + [sym_removed_trait_bound] = STATE(2069), + [sym_type_parameters] = STATE(997), + [sym_extern_modifier] = STATE(2373), + [sym__type] = STATE(2384), + [sym_bracketed_type] = STATE(3474), + [sym_lifetime] = STATE(3727), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1591), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2472), + [sym_generic_type_with_turbofish] = STATE(3764), + [sym_bounded_type] = STATE(2069), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3334), + [sym_scoped_type_identifier] = STATE(2262), [sym_line_comment] = STATE(881), [sym_block_comment] = STATE(881), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(3052), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1235), - [anon_sym_QMARK] = ACTIONS(1237), - [anon_sym_u8] = ACTIONS(1603), - [anon_sym_i8] = ACTIONS(1603), - [anon_sym_u16] = ACTIONS(1603), - [anon_sym_i16] = ACTIONS(1603), - [anon_sym_u32] = ACTIONS(1603), - [anon_sym_i32] = ACTIONS(1603), - [anon_sym_u64] = ACTIONS(1603), - [anon_sym_i64] = ACTIONS(1603), - [anon_sym_u128] = ACTIONS(1603), - [anon_sym_i128] = ACTIONS(1603), - [anon_sym_isize] = ACTIONS(1603), - [anon_sym_usize] = ACTIONS(1603), - [anon_sym_f32] = ACTIONS(1603), - [anon_sym_f64] = ACTIONS(1603), - [anon_sym_bool] = ACTIONS(1603), - [anon_sym_str] = ACTIONS(1603), - [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1243), - [anon_sym_AMP] = ACTIONS(1605), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3058), - [anon_sym_async] = ACTIONS(1265), - [anon_sym_const] = ACTIONS(1265), - [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1271), - [anon_sym_for] = ACTIONS(1273), - [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1277), - [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1265), - [anon_sym_extern] = ACTIONS(1279), - [anon_sym_dyn] = ACTIONS(1283), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1619), - [sym_super] = ACTIONS(1619), - [sym_crate] = ACTIONS(1619), - [sym_metavariable] = ACTIONS(1621), + [aux_sym_function_modifiers_repeat1] = STATE(2244), + [sym_identifier] = ACTIONS(3286), + [anon_sym_LPAREN] = ACTIONS(1602), + [anon_sym_LBRACK] = ACTIONS(1604), + [anon_sym_STAR] = ACTIONS(1240), + [anon_sym_QMARK] = ACTIONS(1242), + [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_BANG] = ACTIONS(3288), + [anon_sym_AMP] = ACTIONS(1610), + [anon_sym_LT] = ACTIONS(3264), + [anon_sym_COLON_COLON] = ACTIONS(1614), + [anon_sym_SQUOTE] = ACTIONS(3072), + [anon_sym_async] = ACTIONS(1270), + [anon_sym_const] = ACTIONS(1270), + [anon_sym_default] = ACTIONS(1618), + [anon_sym_fn] = ACTIONS(1276), + [anon_sym_for] = ACTIONS(1278), + [anon_sym_gen] = ACTIONS(1620), + [anon_sym_impl] = ACTIONS(1282), + [anon_sym_union] = ACTIONS(1620), + [anon_sym_unsafe] = ACTIONS(1270), + [anon_sym_extern] = ACTIONS(1284), + [anon_sym_safe] = ACTIONS(1270), + [anon_sym_dyn] = ACTIONS(1288), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1624), + [sym_super] = ACTIONS(1624), + [sym_crate] = ACTIONS(1624), + [sym_metavariable] = ACTIONS(1626), }, [STATE(882)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(3398), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_function_modifiers] = STATE(3624), + [sym_removed_trait_bound] = STATE(1721), + [sym_extern_modifier] = STATE(2373), + [sym__type] = STATE(1797), + [sym_bracketed_type] = STATE(3683), + [sym_lifetime] = STATE(857), + [sym_array_type] = STATE(1721), + [sym_for_lifetimes] = STATE(1605), + [sym_function_type] = STATE(1721), + [sym_tuple_type] = STATE(1721), + [sym_unit_type] = STATE(1721), + [sym_generic_type] = STATE(1679), + [sym_generic_type_with_turbofish] = STATE(3674), + [sym_bounded_type] = STATE(1721), + [sym_reference_type] = STATE(1721), + [sym_pointer_type] = STATE(1721), + [sym_never_type] = STATE(1721), + [sym_abstract_type] = STATE(1721), + [sym_dynamic_type] = STATE(1721), + [sym_macro_invocation] = STATE(1721), + [sym_scoped_identifier] = STATE(3408), + [sym_scoped_type_identifier] = STATE(1595), [sym_line_comment] = STATE(882), [sym_block_comment] = STATE(882), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(3052), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1235), - [anon_sym_QMARK] = ACTIONS(1237), - [anon_sym_u8] = ACTIONS(1603), - [anon_sym_i8] = ACTIONS(1603), - [anon_sym_u16] = ACTIONS(1603), - [anon_sym_i16] = ACTIONS(1603), - [anon_sym_u32] = ACTIONS(1603), - [anon_sym_i32] = ACTIONS(1603), - [anon_sym_u64] = ACTIONS(1603), - [anon_sym_i64] = ACTIONS(1603), - [anon_sym_u128] = ACTIONS(1603), - [anon_sym_i128] = ACTIONS(1603), - [anon_sym_isize] = ACTIONS(1603), - [anon_sym_usize] = ACTIONS(1603), - [anon_sym_f32] = ACTIONS(1603), - [anon_sym_f64] = ACTIONS(1603), - [anon_sym_bool] = ACTIONS(1603), - [anon_sym_str] = ACTIONS(1603), - [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1243), - [anon_sym_AMP] = ACTIONS(1605), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3058), - [anon_sym_async] = ACTIONS(1265), - [anon_sym_const] = ACTIONS(1265), - [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1271), - [anon_sym_for] = ACTIONS(1273), - [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1277), - [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1265), - [anon_sym_extern] = ACTIONS(1279), - [anon_sym_dyn] = ACTIONS(1283), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1619), - [sym_super] = ACTIONS(1619), - [sym_crate] = ACTIONS(1619), - [sym_metavariable] = ACTIONS(1621), + [aux_sym_function_modifiers_repeat1] = STATE(2244), + [sym_identifier] = ACTIONS(3172), + [anon_sym_LPAREN] = ACTIONS(3174), + [anon_sym_LBRACK] = ACTIONS(3176), + [anon_sym_STAR] = ACTIONS(3180), + [anon_sym_QMARK] = ACTIONS(3182), + [anon_sym_u8] = ACTIONS(3184), + [anon_sym_i8] = ACTIONS(3184), + [anon_sym_u16] = ACTIONS(3184), + [anon_sym_i16] = ACTIONS(3184), + [anon_sym_u32] = ACTIONS(3184), + [anon_sym_i32] = ACTIONS(3184), + [anon_sym_u64] = ACTIONS(3184), + [anon_sym_i64] = ACTIONS(3184), + [anon_sym_u128] = ACTIONS(3184), + [anon_sym_i128] = ACTIONS(3184), + [anon_sym_isize] = ACTIONS(3184), + [anon_sym_usize] = ACTIONS(3184), + [anon_sym_f32] = ACTIONS(3184), + [anon_sym_f64] = ACTIONS(3184), + [anon_sym_bool] = ACTIONS(3184), + [anon_sym_str] = ACTIONS(3184), + [anon_sym_char] = ACTIONS(3184), + [anon_sym_BANG] = ACTIONS(3186), + [anon_sym_AMP] = ACTIONS(3188), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3190), + [anon_sym_SQUOTE] = ACTIONS(3072), + [anon_sym_async] = ACTIONS(1270), + [anon_sym_const] = ACTIONS(1270), + [anon_sym_default] = ACTIONS(3192), + [anon_sym_fn] = ACTIONS(3194), + [anon_sym_for] = ACTIONS(1278), + [anon_sym_gen] = ACTIONS(3196), + [anon_sym_impl] = ACTIONS(3198), + [anon_sym_union] = ACTIONS(3196), + [anon_sym_unsafe] = ACTIONS(1270), + [anon_sym_extern] = ACTIONS(1284), + [anon_sym_safe] = ACTIONS(1270), + [anon_sym_dyn] = ACTIONS(3200), + [sym_mutable_specifier] = ACTIONS(3290), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(3204), + [sym_super] = ACTIONS(3204), + [sym_crate] = ACTIONS(3204), + [sym_metavariable] = ACTIONS(3206), }, [STATE(883)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(3118), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_function_modifiers] = STATE(3591), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2373), + [sym__type] = STATE(2816), + [sym_bracketed_type] = STATE(3474), + [sym_lifetime] = STATE(3727), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1591), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2022), + [sym_generic_type_with_turbofish] = STATE(3764), + [sym_bounded_type] = STATE(2069), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3334), + [sym_scoped_type_identifier] = STATE(1990), [sym_line_comment] = STATE(883), [sym_block_comment] = STATE(883), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(3052), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1235), - [anon_sym_QMARK] = ACTIONS(1237), - [anon_sym_u8] = ACTIONS(1603), - [anon_sym_i8] = ACTIONS(1603), - [anon_sym_u16] = ACTIONS(1603), - [anon_sym_i16] = ACTIONS(1603), - [anon_sym_u32] = ACTIONS(1603), - [anon_sym_i32] = ACTIONS(1603), - [anon_sym_u64] = ACTIONS(1603), - [anon_sym_i64] = ACTIONS(1603), - [anon_sym_u128] = ACTIONS(1603), - [anon_sym_i128] = ACTIONS(1603), - [anon_sym_isize] = ACTIONS(1603), - [anon_sym_usize] = ACTIONS(1603), - [anon_sym_f32] = ACTIONS(1603), - [anon_sym_f64] = ACTIONS(1603), - [anon_sym_bool] = ACTIONS(1603), - [anon_sym_str] = ACTIONS(1603), - [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1243), - [anon_sym_AMP] = ACTIONS(1605), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3058), - [anon_sym_async] = ACTIONS(1265), - [anon_sym_const] = ACTIONS(1265), - [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1271), - [anon_sym_for] = ACTIONS(1273), - [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1277), - [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1265), - [anon_sym_extern] = ACTIONS(1279), - [anon_sym_dyn] = ACTIONS(1283), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1619), - [sym_super] = ACTIONS(1619), - [sym_crate] = ACTIONS(1619), - [sym_metavariable] = ACTIONS(1621), + [aux_sym_function_modifiers_repeat1] = STATE(2244), + [sym_identifier] = ACTIONS(3064), + [anon_sym_LPAREN] = ACTIONS(1602), + [anon_sym_LBRACK] = ACTIONS(1604), + [anon_sym_STAR] = ACTIONS(1240), + [anon_sym_QMARK] = ACTIONS(1242), + [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_BANG] = ACTIONS(1248), + [anon_sym_AMP] = ACTIONS(1610), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3292), + [anon_sym_COLON_COLON] = ACTIONS(1614), + [anon_sym_SQUOTE] = ACTIONS(3072), + [anon_sym_async] = ACTIONS(1270), + [anon_sym_const] = ACTIONS(1270), + [anon_sym_default] = ACTIONS(1618), + [anon_sym_fn] = ACTIONS(1276), + [anon_sym_for] = ACTIONS(1278), + [anon_sym_gen] = ACTIONS(1620), + [anon_sym_impl] = ACTIONS(1282), + [anon_sym_union] = ACTIONS(1620), + [anon_sym_unsafe] = ACTIONS(1270), + [anon_sym_extern] = ACTIONS(1284), + [anon_sym_safe] = ACTIONS(1270), + [anon_sym_dyn] = ACTIONS(1288), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1624), + [sym_super] = ACTIONS(1624), + [sym_crate] = ACTIONS(1624), + [sym_metavariable] = ACTIONS(1626), }, [STATE(884)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2060), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_function_modifiers] = STATE(3591), + [sym_higher_ranked_trait_bound] = STATE(2272), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2373), + [sym__type] = STATE(2276), + [sym_bracketed_type] = STATE(3474), + [sym_lifetime] = STATE(2277), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1591), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2022), + [sym_generic_type_with_turbofish] = STATE(3764), + [sym_bounded_type] = STATE(2069), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3334), + [sym_scoped_type_identifier] = STATE(1990), [sym_line_comment] = STATE(884), [sym_block_comment] = STATE(884), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(3052), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1235), - [anon_sym_QMARK] = ACTIONS(1237), - [anon_sym_u8] = ACTIONS(1603), - [anon_sym_i8] = ACTIONS(1603), - [anon_sym_u16] = ACTIONS(1603), - [anon_sym_i16] = ACTIONS(1603), - [anon_sym_u32] = ACTIONS(1603), - [anon_sym_i32] = ACTIONS(1603), - [anon_sym_u64] = ACTIONS(1603), - [anon_sym_i64] = ACTIONS(1603), - [anon_sym_u128] = ACTIONS(1603), - [anon_sym_i128] = ACTIONS(1603), - [anon_sym_isize] = ACTIONS(1603), - [anon_sym_usize] = ACTIONS(1603), - [anon_sym_f32] = ACTIONS(1603), - [anon_sym_f64] = ACTIONS(1603), - [anon_sym_bool] = ACTIONS(1603), - [anon_sym_str] = ACTIONS(1603), - [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1243), - [anon_sym_AMP] = ACTIONS(1605), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3058), - [anon_sym_async] = ACTIONS(1265), - [anon_sym_const] = ACTIONS(1265), - [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1271), - [anon_sym_for] = ACTIONS(1273), - [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1277), - [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1265), - [anon_sym_extern] = ACTIONS(1279), - [anon_sym_dyn] = ACTIONS(1283), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1619), - [sym_super] = ACTIONS(1619), - [sym_crate] = ACTIONS(1619), - [sym_metavariable] = ACTIONS(1621), + [aux_sym_function_modifiers_repeat1] = STATE(2244), + [sym_identifier] = ACTIONS(3064), + [anon_sym_LPAREN] = ACTIONS(1602), + [anon_sym_LBRACK] = ACTIONS(1604), + [anon_sym_STAR] = ACTIONS(1240), + [anon_sym_QMARK] = ACTIONS(1242), + [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_BANG] = ACTIONS(1248), + [anon_sym_AMP] = ACTIONS(1610), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1614), + [anon_sym_SQUOTE] = ACTIONS(3072), + [anon_sym_async] = ACTIONS(1270), + [anon_sym_const] = ACTIONS(1270), + [anon_sym_default] = ACTIONS(1618), + [anon_sym_fn] = ACTIONS(1276), + [anon_sym_for] = ACTIONS(3162), + [anon_sym_gen] = ACTIONS(1620), + [anon_sym_impl] = ACTIONS(1282), + [anon_sym_union] = ACTIONS(1620), + [anon_sym_unsafe] = ACTIONS(1270), + [anon_sym_extern] = ACTIONS(1284), + [anon_sym_safe] = ACTIONS(1270), + [anon_sym_dyn] = ACTIONS(1288), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1624), + [sym_super] = ACTIONS(1624), + [sym_crate] = ACTIONS(1624), + [sym_metavariable] = ACTIONS(1626), }, [STATE(885)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2664), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_function_modifiers] = STATE(3591), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2373), + [sym__type] = STATE(2601), + [sym_bracketed_type] = STATE(3474), + [sym_lifetime] = STATE(3727), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1591), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2022), + [sym_generic_type_with_turbofish] = STATE(3764), + [sym_bounded_type] = STATE(2069), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3334), + [sym_scoped_type_identifier] = STATE(1990), [sym_line_comment] = STATE(885), [sym_block_comment] = STATE(885), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(3052), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1235), - [anon_sym_QMARK] = ACTIONS(1237), - [anon_sym_u8] = ACTIONS(1603), - [anon_sym_i8] = ACTIONS(1603), - [anon_sym_u16] = ACTIONS(1603), - [anon_sym_i16] = ACTIONS(1603), - [anon_sym_u32] = ACTIONS(1603), - [anon_sym_i32] = ACTIONS(1603), - [anon_sym_u64] = ACTIONS(1603), - [anon_sym_i64] = ACTIONS(1603), - [anon_sym_u128] = ACTIONS(1603), - [anon_sym_i128] = ACTIONS(1603), - [anon_sym_isize] = ACTIONS(1603), - [anon_sym_usize] = ACTIONS(1603), - [anon_sym_f32] = ACTIONS(1603), - [anon_sym_f64] = ACTIONS(1603), - [anon_sym_bool] = ACTIONS(1603), - [anon_sym_str] = ACTIONS(1603), - [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1243), - [anon_sym_AMP] = ACTIONS(1605), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3058), - [anon_sym_async] = ACTIONS(1265), - [anon_sym_const] = ACTIONS(1265), - [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1271), - [anon_sym_for] = ACTIONS(1273), - [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1277), - [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1265), - [anon_sym_extern] = ACTIONS(1279), - [anon_sym_dyn] = ACTIONS(1283), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1619), - [sym_super] = ACTIONS(1619), - [sym_crate] = ACTIONS(1619), - [sym_metavariable] = ACTIONS(1621), + [aux_sym_function_modifiers_repeat1] = STATE(2244), + [sym_identifier] = ACTIONS(3064), + [anon_sym_LPAREN] = ACTIONS(1602), + [anon_sym_LBRACK] = ACTIONS(1604), + [anon_sym_STAR] = ACTIONS(1240), + [anon_sym_QMARK] = ACTIONS(1242), + [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_BANG] = ACTIONS(1248), + [anon_sym_AMP] = ACTIONS(1610), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3294), + [anon_sym_COLON_COLON] = ACTIONS(1614), + [anon_sym_SQUOTE] = ACTIONS(3072), + [anon_sym_async] = ACTIONS(1270), + [anon_sym_const] = ACTIONS(1270), + [anon_sym_default] = ACTIONS(1618), + [anon_sym_fn] = ACTIONS(1276), + [anon_sym_for] = ACTIONS(1278), + [anon_sym_gen] = ACTIONS(1620), + [anon_sym_impl] = ACTIONS(1282), + [anon_sym_union] = ACTIONS(1620), + [anon_sym_unsafe] = ACTIONS(1270), + [anon_sym_extern] = ACTIONS(1284), + [anon_sym_safe] = ACTIONS(1270), + [anon_sym_dyn] = ACTIONS(1288), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1624), + [sym_super] = ACTIONS(1624), + [sym_crate] = ACTIONS(1624), + [sym_metavariable] = ACTIONS(1626), }, [STATE(886)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2648), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_function_modifiers] = STATE(3591), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2373), + [sym__type] = STATE(3356), + [sym_bracketed_type] = STATE(3474), + [sym_lifetime] = STATE(3727), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1591), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2022), + [sym_generic_type_with_turbofish] = STATE(3764), + [sym_bounded_type] = STATE(2069), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3334), + [sym_scoped_type_identifier] = STATE(1990), [sym_line_comment] = STATE(886), [sym_block_comment] = STATE(886), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(3052), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1235), - [anon_sym_QMARK] = ACTIONS(1237), - [anon_sym_u8] = ACTIONS(1603), - [anon_sym_i8] = ACTIONS(1603), - [anon_sym_u16] = ACTIONS(1603), - [anon_sym_i16] = ACTIONS(1603), - [anon_sym_u32] = ACTIONS(1603), - [anon_sym_i32] = ACTIONS(1603), - [anon_sym_u64] = ACTIONS(1603), - [anon_sym_i64] = ACTIONS(1603), - [anon_sym_u128] = ACTIONS(1603), - [anon_sym_i128] = ACTIONS(1603), - [anon_sym_isize] = ACTIONS(1603), - [anon_sym_usize] = ACTIONS(1603), - [anon_sym_f32] = ACTIONS(1603), - [anon_sym_f64] = ACTIONS(1603), - [anon_sym_bool] = ACTIONS(1603), - [anon_sym_str] = ACTIONS(1603), - [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1243), - [anon_sym_AMP] = ACTIONS(1605), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3058), - [anon_sym_async] = ACTIONS(1265), - [anon_sym_const] = ACTIONS(1265), - [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1271), - [anon_sym_for] = ACTIONS(1273), - [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1277), - [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1265), - [anon_sym_extern] = ACTIONS(1279), - [anon_sym_dyn] = ACTIONS(1283), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1619), - [sym_super] = ACTIONS(1619), - [sym_crate] = ACTIONS(1619), - [sym_metavariable] = ACTIONS(1621), + [aux_sym_function_modifiers_repeat1] = STATE(2244), + [sym_identifier] = ACTIONS(3064), + [anon_sym_LPAREN] = ACTIONS(1602), + [anon_sym_LBRACK] = ACTIONS(1604), + [anon_sym_STAR] = ACTIONS(1240), + [anon_sym_QMARK] = ACTIONS(1242), + [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_BANG] = ACTIONS(1248), + [anon_sym_AMP] = ACTIONS(1610), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1614), + [anon_sym_SQUOTE] = ACTIONS(3072), + [anon_sym_async] = ACTIONS(1270), + [anon_sym_const] = ACTIONS(1270), + [anon_sym_default] = ACTIONS(1618), + [anon_sym_fn] = ACTIONS(1276), + [anon_sym_for] = ACTIONS(1278), + [anon_sym_gen] = ACTIONS(1620), + [anon_sym_impl] = ACTIONS(1282), + [anon_sym_union] = ACTIONS(1620), + [anon_sym_unsafe] = ACTIONS(1270), + [anon_sym_extern] = ACTIONS(1284), + [anon_sym_safe] = ACTIONS(1270), + [anon_sym_dyn] = ACTIONS(1288), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1624), + [sym_super] = ACTIONS(1624), + [sym_crate] = ACTIONS(1624), + [sym_metavariable] = ACTIONS(1626), }, [STATE(887)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2042), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_function_modifiers] = STATE(3591), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2373), + [sym__type] = STATE(2077), + [sym_bracketed_type] = STATE(3474), + [sym_lifetime] = STATE(3727), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1591), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2022), + [sym_generic_type_with_turbofish] = STATE(3764), + [sym_bounded_type] = STATE(2069), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3334), + [sym_scoped_type_identifier] = STATE(1990), [sym_line_comment] = STATE(887), [sym_block_comment] = STATE(887), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(3052), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1235), - [anon_sym_QMARK] = ACTIONS(1237), - [anon_sym_u8] = ACTIONS(1603), - [anon_sym_i8] = ACTIONS(1603), - [anon_sym_u16] = ACTIONS(1603), - [anon_sym_i16] = ACTIONS(1603), - [anon_sym_u32] = ACTIONS(1603), - [anon_sym_i32] = ACTIONS(1603), - [anon_sym_u64] = ACTIONS(1603), - [anon_sym_i64] = ACTIONS(1603), - [anon_sym_u128] = ACTIONS(1603), - [anon_sym_i128] = ACTIONS(1603), - [anon_sym_isize] = ACTIONS(1603), - [anon_sym_usize] = ACTIONS(1603), - [anon_sym_f32] = ACTIONS(1603), - [anon_sym_f64] = ACTIONS(1603), - [anon_sym_bool] = ACTIONS(1603), - [anon_sym_str] = ACTIONS(1603), - [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1243), - [anon_sym_AMP] = ACTIONS(1605), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3058), - [anon_sym_async] = ACTIONS(1265), - [anon_sym_const] = ACTIONS(1265), - [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1271), - [anon_sym_for] = ACTIONS(1273), - [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1277), - [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1265), - [anon_sym_extern] = ACTIONS(1279), - [anon_sym_dyn] = ACTIONS(1283), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1619), - [sym_super] = ACTIONS(1619), - [sym_crate] = ACTIONS(1619), - [sym_metavariable] = ACTIONS(1621), + [aux_sym_function_modifiers_repeat1] = STATE(2244), + [sym_identifier] = ACTIONS(3064), + [anon_sym_LPAREN] = ACTIONS(1602), + [anon_sym_LBRACK] = ACTIONS(1604), + [anon_sym_STAR] = ACTIONS(1240), + [anon_sym_QMARK] = ACTIONS(1242), + [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_BANG] = ACTIONS(1248), + [anon_sym_AMP] = ACTIONS(1610), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1614), + [anon_sym_SQUOTE] = ACTIONS(3072), + [anon_sym_async] = ACTIONS(1270), + [anon_sym_const] = ACTIONS(1270), + [anon_sym_default] = ACTIONS(1618), + [anon_sym_fn] = ACTIONS(1276), + [anon_sym_for] = ACTIONS(1278), + [anon_sym_gen] = ACTIONS(1620), + [anon_sym_impl] = ACTIONS(1282), + [anon_sym_union] = ACTIONS(1620), + [anon_sym_unsafe] = ACTIONS(1270), + [anon_sym_extern] = ACTIONS(1284), + [anon_sym_safe] = ACTIONS(1270), + [anon_sym_dyn] = ACTIONS(1288), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1624), + [sym_super] = ACTIONS(1624), + [sym_crate] = ACTIONS(1624), + [sym_metavariable] = ACTIONS(1626), }, [STATE(888)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2646), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_function_modifiers] = STATE(3591), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2373), + [sym__type] = STATE(2410), + [sym_bracketed_type] = STATE(3474), + [sym_lifetime] = STATE(3727), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1591), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2022), + [sym_generic_type_with_turbofish] = STATE(3764), + [sym_bounded_type] = STATE(2069), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3334), + [sym_scoped_type_identifier] = STATE(1990), [sym_line_comment] = STATE(888), [sym_block_comment] = STATE(888), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(3052), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1235), - [anon_sym_QMARK] = ACTIONS(1237), - [anon_sym_u8] = ACTIONS(1603), - [anon_sym_i8] = ACTIONS(1603), - [anon_sym_u16] = ACTIONS(1603), - [anon_sym_i16] = ACTIONS(1603), - [anon_sym_u32] = ACTIONS(1603), - [anon_sym_i32] = ACTIONS(1603), - [anon_sym_u64] = ACTIONS(1603), - [anon_sym_i64] = ACTIONS(1603), - [anon_sym_u128] = ACTIONS(1603), - [anon_sym_i128] = ACTIONS(1603), - [anon_sym_isize] = ACTIONS(1603), - [anon_sym_usize] = ACTIONS(1603), - [anon_sym_f32] = ACTIONS(1603), - [anon_sym_f64] = ACTIONS(1603), - [anon_sym_bool] = ACTIONS(1603), - [anon_sym_str] = ACTIONS(1603), - [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1243), - [anon_sym_AMP] = ACTIONS(1605), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3058), - [anon_sym_async] = ACTIONS(1265), - [anon_sym_const] = ACTIONS(1265), - [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1271), - [anon_sym_for] = ACTIONS(1273), - [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1277), - [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1265), - [anon_sym_extern] = ACTIONS(1279), - [anon_sym_dyn] = ACTIONS(1283), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1619), - [sym_super] = ACTIONS(1619), - [sym_crate] = ACTIONS(1619), - [sym_metavariable] = ACTIONS(1621), + [aux_sym_function_modifiers_repeat1] = STATE(2244), + [sym_identifier] = ACTIONS(3064), + [anon_sym_LPAREN] = ACTIONS(1602), + [anon_sym_LBRACK] = ACTIONS(1604), + [anon_sym_STAR] = ACTIONS(1240), + [anon_sym_QMARK] = ACTIONS(1242), + [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_BANG] = ACTIONS(1248), + [anon_sym_AMP] = ACTIONS(1610), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1614), + [anon_sym_SQUOTE] = ACTIONS(3072), + [anon_sym_async] = ACTIONS(1270), + [anon_sym_const] = ACTIONS(1270), + [anon_sym_default] = ACTIONS(1618), + [anon_sym_fn] = ACTIONS(1276), + [anon_sym_for] = ACTIONS(1278), + [anon_sym_gen] = ACTIONS(1620), + [anon_sym_impl] = ACTIONS(1282), + [anon_sym_union] = ACTIONS(1620), + [anon_sym_unsafe] = ACTIONS(1270), + [anon_sym_extern] = ACTIONS(1284), + [anon_sym_safe] = ACTIONS(1270), + [anon_sym_dyn] = ACTIONS(1288), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1624), + [sym_super] = ACTIONS(1624), + [sym_crate] = ACTIONS(1624), + [sym_metavariable] = ACTIONS(1626), }, [STATE(889)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2029), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_function_modifiers] = STATE(3591), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2373), + [sym__type] = STATE(2845), + [sym_bracketed_type] = STATE(3474), + [sym_lifetime] = STATE(3727), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1591), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2022), + [sym_generic_type_with_turbofish] = STATE(3764), + [sym_bounded_type] = STATE(2069), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3334), + [sym_scoped_type_identifier] = STATE(1990), [sym_line_comment] = STATE(889), [sym_block_comment] = STATE(889), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(3052), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1235), - [anon_sym_QMARK] = ACTIONS(1237), - [anon_sym_u8] = ACTIONS(1603), - [anon_sym_i8] = ACTIONS(1603), - [anon_sym_u16] = ACTIONS(1603), - [anon_sym_i16] = ACTIONS(1603), - [anon_sym_u32] = ACTIONS(1603), - [anon_sym_i32] = ACTIONS(1603), - [anon_sym_u64] = ACTIONS(1603), - [anon_sym_i64] = ACTIONS(1603), - [anon_sym_u128] = ACTIONS(1603), - [anon_sym_i128] = ACTIONS(1603), - [anon_sym_isize] = ACTIONS(1603), - [anon_sym_usize] = ACTIONS(1603), - [anon_sym_f32] = ACTIONS(1603), - [anon_sym_f64] = ACTIONS(1603), - [anon_sym_bool] = ACTIONS(1603), - [anon_sym_str] = ACTIONS(1603), - [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1243), - [anon_sym_AMP] = ACTIONS(1605), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3058), - [anon_sym_async] = ACTIONS(1265), - [anon_sym_const] = ACTIONS(1265), - [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1271), - [anon_sym_for] = ACTIONS(1273), - [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1277), - [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1265), - [anon_sym_extern] = ACTIONS(1279), - [anon_sym_dyn] = ACTIONS(1283), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1619), - [sym_super] = ACTIONS(1619), - [sym_crate] = ACTIONS(1619), - [sym_metavariable] = ACTIONS(1621), + [aux_sym_function_modifiers_repeat1] = STATE(2244), + [sym_identifier] = ACTIONS(3064), + [anon_sym_LPAREN] = ACTIONS(1602), + [anon_sym_LBRACK] = ACTIONS(1604), + [anon_sym_STAR] = ACTIONS(1240), + [anon_sym_QMARK] = ACTIONS(1242), + [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_BANG] = ACTIONS(1248), + [anon_sym_AMP] = ACTIONS(1610), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1614), + [anon_sym_SQUOTE] = ACTIONS(3072), + [anon_sym_async] = ACTIONS(1270), + [anon_sym_const] = ACTIONS(1270), + [anon_sym_default] = ACTIONS(1618), + [anon_sym_fn] = ACTIONS(1276), + [anon_sym_for] = ACTIONS(1278), + [anon_sym_gen] = ACTIONS(1620), + [anon_sym_impl] = ACTIONS(1282), + [anon_sym_union] = ACTIONS(1620), + [anon_sym_unsafe] = ACTIONS(1270), + [anon_sym_extern] = ACTIONS(1284), + [anon_sym_safe] = ACTIONS(1270), + [anon_sym_dyn] = ACTIONS(1288), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1624), + [sym_super] = ACTIONS(1624), + [sym_crate] = ACTIONS(1624), + [sym_metavariable] = ACTIONS(1626), }, [STATE(890)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2394), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2398), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(2201), + [sym_function_modifiers] = STATE(3591), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2373), + [sym__type] = STATE(2849), + [sym_bracketed_type] = STATE(3474), + [sym_lifetime] = STATE(3727), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1591), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2022), + [sym_generic_type_with_turbofish] = STATE(3764), + [sym_bounded_type] = STATE(2069), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3334), + [sym_scoped_type_identifier] = STATE(1990), [sym_line_comment] = STATE(890), [sym_block_comment] = STATE(890), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(3270), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1235), - [anon_sym_QMARK] = ACTIONS(1237), - [anon_sym_u8] = ACTIONS(1603), - [anon_sym_i8] = ACTIONS(1603), - [anon_sym_u16] = ACTIONS(1603), - [anon_sym_i16] = ACTIONS(1603), - [anon_sym_u32] = ACTIONS(1603), - [anon_sym_i32] = ACTIONS(1603), - [anon_sym_u64] = ACTIONS(1603), - [anon_sym_i64] = ACTIONS(1603), - [anon_sym_u128] = ACTIONS(1603), - [anon_sym_i128] = ACTIONS(1603), - [anon_sym_isize] = ACTIONS(1603), - [anon_sym_usize] = ACTIONS(1603), - [anon_sym_f32] = ACTIONS(1603), - [anon_sym_f64] = ACTIONS(1603), - [anon_sym_bool] = ACTIONS(1603), - [anon_sym_str] = ACTIONS(1603), - [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(3272), - [anon_sym_AMP] = ACTIONS(1605), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3058), - [anon_sym_async] = ACTIONS(1265), - [anon_sym_const] = ACTIONS(1265), - [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1271), - [anon_sym_for] = ACTIONS(1273), - [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1277), - [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1265), - [anon_sym_extern] = ACTIONS(1279), - [anon_sym_dyn] = ACTIONS(1283), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1619), - [sym_super] = ACTIONS(1619), - [sym_crate] = ACTIONS(1619), - [sym_metavariable] = ACTIONS(1621), + [aux_sym_function_modifiers_repeat1] = STATE(2244), + [sym_identifier] = ACTIONS(3064), + [anon_sym_LPAREN] = ACTIONS(1602), + [anon_sym_LBRACK] = ACTIONS(1604), + [anon_sym_STAR] = ACTIONS(1240), + [anon_sym_QMARK] = ACTIONS(1242), + [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_BANG] = ACTIONS(1248), + [anon_sym_AMP] = ACTIONS(1610), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1614), + [anon_sym_SQUOTE] = ACTIONS(3072), + [anon_sym_async] = ACTIONS(1270), + [anon_sym_const] = ACTIONS(1270), + [anon_sym_default] = ACTIONS(1618), + [anon_sym_fn] = ACTIONS(1276), + [anon_sym_for] = ACTIONS(1278), + [anon_sym_gen] = ACTIONS(1620), + [anon_sym_impl] = ACTIONS(1282), + [anon_sym_union] = ACTIONS(1620), + [anon_sym_unsafe] = ACTIONS(1270), + [anon_sym_extern] = ACTIONS(1284), + [anon_sym_safe] = ACTIONS(1270), + [anon_sym_dyn] = ACTIONS(1288), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1624), + [sym_super] = ACTIONS(1624), + [sym_crate] = ACTIONS(1624), + [sym_metavariable] = ACTIONS(1626), }, [STATE(891)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2814), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_function_modifiers] = STATE(3591), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2373), + [sym__type] = STATE(2778), + [sym_bracketed_type] = STATE(3474), + [sym_lifetime] = STATE(3727), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1591), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2022), + [sym_generic_type_with_turbofish] = STATE(3764), + [sym_bounded_type] = STATE(2069), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3334), + [sym_scoped_type_identifier] = STATE(1990), [sym_line_comment] = STATE(891), [sym_block_comment] = STATE(891), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(3052), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1235), - [anon_sym_QMARK] = ACTIONS(1237), - [anon_sym_u8] = ACTIONS(1603), - [anon_sym_i8] = ACTIONS(1603), - [anon_sym_u16] = ACTIONS(1603), - [anon_sym_i16] = ACTIONS(1603), - [anon_sym_u32] = ACTIONS(1603), - [anon_sym_i32] = ACTIONS(1603), - [anon_sym_u64] = ACTIONS(1603), - [anon_sym_i64] = ACTIONS(1603), - [anon_sym_u128] = ACTIONS(1603), - [anon_sym_i128] = ACTIONS(1603), - [anon_sym_isize] = ACTIONS(1603), - [anon_sym_usize] = ACTIONS(1603), - [anon_sym_f32] = ACTIONS(1603), - [anon_sym_f64] = ACTIONS(1603), - [anon_sym_bool] = ACTIONS(1603), - [anon_sym_str] = ACTIONS(1603), - [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1243), - [anon_sym_AMP] = ACTIONS(1605), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3058), - [anon_sym_async] = ACTIONS(1265), - [anon_sym_const] = ACTIONS(1265), - [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1271), - [anon_sym_for] = ACTIONS(1273), - [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1277), - [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1265), - [anon_sym_extern] = ACTIONS(1279), - [anon_sym_dyn] = ACTIONS(1283), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1619), - [sym_super] = ACTIONS(1619), - [sym_crate] = ACTIONS(1619), - [sym_metavariable] = ACTIONS(1621), + [aux_sym_function_modifiers_repeat1] = STATE(2244), + [sym_identifier] = ACTIONS(3064), + [anon_sym_LPAREN] = ACTIONS(1602), + [anon_sym_LBRACK] = ACTIONS(1604), + [anon_sym_STAR] = ACTIONS(1240), + [anon_sym_QMARK] = ACTIONS(1242), + [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_BANG] = ACTIONS(1248), + [anon_sym_AMP] = ACTIONS(1610), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1614), + [anon_sym_SQUOTE] = ACTIONS(3072), + [anon_sym_async] = ACTIONS(1270), + [anon_sym_const] = ACTIONS(1270), + [anon_sym_default] = ACTIONS(1618), + [anon_sym_fn] = ACTIONS(1276), + [anon_sym_for] = ACTIONS(1278), + [anon_sym_gen] = ACTIONS(1620), + [anon_sym_impl] = ACTIONS(1282), + [anon_sym_union] = ACTIONS(1620), + [anon_sym_unsafe] = ACTIONS(1270), + [anon_sym_extern] = ACTIONS(1284), + [anon_sym_safe] = ACTIONS(1270), + [anon_sym_dyn] = ACTIONS(1288), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1624), + [sym_super] = ACTIONS(1624), + [sym_crate] = ACTIONS(1624), + [sym_metavariable] = ACTIONS(1626), }, [STATE(892)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2411), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_function_modifiers] = STATE(3591), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2373), + [sym__type] = STATE(3122), + [sym_bracketed_type] = STATE(3474), + [sym_lifetime] = STATE(3727), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1591), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2022), + [sym_generic_type_with_turbofish] = STATE(3764), + [sym_bounded_type] = STATE(2069), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3334), + [sym_scoped_type_identifier] = STATE(1990), [sym_line_comment] = STATE(892), [sym_block_comment] = STATE(892), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(3052), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1235), - [anon_sym_QMARK] = ACTIONS(1237), - [anon_sym_u8] = ACTIONS(1603), - [anon_sym_i8] = ACTIONS(1603), - [anon_sym_u16] = ACTIONS(1603), - [anon_sym_i16] = ACTIONS(1603), - [anon_sym_u32] = ACTIONS(1603), - [anon_sym_i32] = ACTIONS(1603), - [anon_sym_u64] = ACTIONS(1603), - [anon_sym_i64] = ACTIONS(1603), - [anon_sym_u128] = ACTIONS(1603), - [anon_sym_i128] = ACTIONS(1603), - [anon_sym_isize] = ACTIONS(1603), - [anon_sym_usize] = ACTIONS(1603), - [anon_sym_f32] = ACTIONS(1603), - [anon_sym_f64] = ACTIONS(1603), - [anon_sym_bool] = ACTIONS(1603), - [anon_sym_str] = ACTIONS(1603), - [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1243), - [anon_sym_AMP] = ACTIONS(1605), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3058), - [anon_sym_async] = ACTIONS(1265), - [anon_sym_const] = ACTIONS(1265), - [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1271), - [anon_sym_for] = ACTIONS(1273), - [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1277), - [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1265), - [anon_sym_extern] = ACTIONS(1279), - [anon_sym_dyn] = ACTIONS(1283), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1619), - [sym_super] = ACTIONS(1619), - [sym_crate] = ACTIONS(1619), - [sym_metavariable] = ACTIONS(1621), + [aux_sym_function_modifiers_repeat1] = STATE(2244), + [sym_identifier] = ACTIONS(3064), + [anon_sym_LPAREN] = ACTIONS(1602), + [anon_sym_LBRACK] = ACTIONS(1604), + [anon_sym_STAR] = ACTIONS(1240), + [anon_sym_QMARK] = ACTIONS(1242), + [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_BANG] = ACTIONS(1248), + [anon_sym_AMP] = ACTIONS(1610), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1614), + [anon_sym_SQUOTE] = ACTIONS(3072), + [anon_sym_async] = ACTIONS(1270), + [anon_sym_const] = ACTIONS(1270), + [anon_sym_default] = ACTIONS(1618), + [anon_sym_fn] = ACTIONS(1276), + [anon_sym_for] = ACTIONS(1278), + [anon_sym_gen] = ACTIONS(1620), + [anon_sym_impl] = ACTIONS(1282), + [anon_sym_union] = ACTIONS(1620), + [anon_sym_unsafe] = ACTIONS(1270), + [anon_sym_extern] = ACTIONS(1284), + [anon_sym_safe] = ACTIONS(1270), + [anon_sym_dyn] = ACTIONS(1288), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1624), + [sym_super] = ACTIONS(1624), + [sym_crate] = ACTIONS(1624), + [sym_metavariable] = ACTIONS(1626), }, [STATE(893)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2784), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_function_modifiers] = STATE(3480), + [sym_removed_trait_bound] = STATE(1470), + [sym_extern_modifier] = STATE(2373), + [sym__type] = STATE(1421), + [sym_bracketed_type] = STATE(3667), + [sym_lifetime] = STATE(3541), + [sym_array_type] = STATE(1470), + [sym_for_lifetimes] = STATE(1603), + [sym_function_type] = STATE(1470), + [sym_tuple_type] = STATE(1470), + [sym_unit_type] = STATE(1470), + [sym_generic_type] = STATE(1381), + [sym_generic_type_with_turbofish] = STATE(3656), + [sym_bounded_type] = STATE(1470), + [sym_reference_type] = STATE(1470), + [sym_pointer_type] = STATE(1470), + [sym_never_type] = STATE(1470), + [sym_abstract_type] = STATE(1470), + [sym_dynamic_type] = STATE(1470), + [sym_macro_invocation] = STATE(1470), + [sym_scoped_identifier] = STATE(3333), + [sym_scoped_type_identifier] = STATE(1077), [sym_line_comment] = STATE(893), [sym_block_comment] = STATE(893), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(3052), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1235), - [anon_sym_QMARK] = ACTIONS(1237), - [anon_sym_u8] = ACTIONS(1603), - [anon_sym_i8] = ACTIONS(1603), - [anon_sym_u16] = ACTIONS(1603), - [anon_sym_i16] = ACTIONS(1603), - [anon_sym_u32] = ACTIONS(1603), - [anon_sym_i32] = ACTIONS(1603), - [anon_sym_u64] = ACTIONS(1603), - [anon_sym_i64] = ACTIONS(1603), - [anon_sym_u128] = ACTIONS(1603), - [anon_sym_i128] = ACTIONS(1603), - [anon_sym_isize] = ACTIONS(1603), - [anon_sym_usize] = ACTIONS(1603), - [anon_sym_f32] = ACTIONS(1603), - [anon_sym_f64] = ACTIONS(1603), - [anon_sym_bool] = ACTIONS(1603), - [anon_sym_str] = ACTIONS(1603), - [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1243), - [anon_sym_AMP] = ACTIONS(1605), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3058), - [anon_sym_async] = ACTIONS(1265), - [anon_sym_const] = ACTIONS(1265), - [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1271), - [anon_sym_for] = ACTIONS(1273), - [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1277), - [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1265), - [anon_sym_extern] = ACTIONS(1279), - [anon_sym_dyn] = ACTIONS(1283), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1619), - [sym_super] = ACTIONS(1619), - [sym_crate] = ACTIONS(1619), - [sym_metavariable] = ACTIONS(1621), + [aux_sym_function_modifiers_repeat1] = STATE(2244), + [sym_identifier] = ACTIONS(3210), + [anon_sym_LPAREN] = ACTIONS(3212), + [anon_sym_LBRACK] = ACTIONS(3214), + [anon_sym_STAR] = ACTIONS(3218), + [anon_sym_QMARK] = ACTIONS(3220), + [anon_sym_u8] = ACTIONS(3222), + [anon_sym_i8] = ACTIONS(3222), + [anon_sym_u16] = ACTIONS(3222), + [anon_sym_i16] = ACTIONS(3222), + [anon_sym_u32] = ACTIONS(3222), + [anon_sym_i32] = ACTIONS(3222), + [anon_sym_u64] = ACTIONS(3222), + [anon_sym_i64] = ACTIONS(3222), + [anon_sym_u128] = ACTIONS(3222), + [anon_sym_i128] = ACTIONS(3222), + [anon_sym_isize] = ACTIONS(3222), + [anon_sym_usize] = ACTIONS(3222), + [anon_sym_f32] = ACTIONS(3222), + [anon_sym_f64] = ACTIONS(3222), + [anon_sym_bool] = ACTIONS(3222), + [anon_sym_str] = ACTIONS(3222), + [anon_sym_char] = ACTIONS(3222), + [anon_sym_BANG] = ACTIONS(3224), + [anon_sym_AMP] = ACTIONS(3226), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3228), + [anon_sym_SQUOTE] = ACTIONS(3072), + [anon_sym_async] = ACTIONS(1270), + [anon_sym_const] = ACTIONS(1270), + [anon_sym_default] = ACTIONS(3230), + [anon_sym_fn] = ACTIONS(3232), + [anon_sym_for] = ACTIONS(1278), + [anon_sym_gen] = ACTIONS(3234), + [anon_sym_impl] = ACTIONS(3236), + [anon_sym_union] = ACTIONS(3234), + [anon_sym_unsafe] = ACTIONS(1270), + [anon_sym_extern] = ACTIONS(1284), + [anon_sym_safe] = ACTIONS(1270), + [anon_sym_dyn] = ACTIONS(3238), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(3242), + [sym_super] = ACTIONS(3242), + [sym_crate] = ACTIONS(3242), + [sym_metavariable] = ACTIONS(3244), }, [STATE(894)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2685), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_function_modifiers] = STATE(3591), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2373), + [sym__type] = STATE(2416), + [sym_bracketed_type] = STATE(3474), + [sym_lifetime] = STATE(3727), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1591), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2022), + [sym_generic_type_with_turbofish] = STATE(3764), + [sym_bounded_type] = STATE(2069), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3334), + [sym_scoped_type_identifier] = STATE(1990), [sym_line_comment] = STATE(894), [sym_block_comment] = STATE(894), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(3052), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1235), - [anon_sym_QMARK] = ACTIONS(1237), - [anon_sym_u8] = ACTIONS(1603), - [anon_sym_i8] = ACTIONS(1603), - [anon_sym_u16] = ACTIONS(1603), - [anon_sym_i16] = ACTIONS(1603), - [anon_sym_u32] = ACTIONS(1603), - [anon_sym_i32] = ACTIONS(1603), - [anon_sym_u64] = ACTIONS(1603), - [anon_sym_i64] = ACTIONS(1603), - [anon_sym_u128] = ACTIONS(1603), - [anon_sym_i128] = ACTIONS(1603), - [anon_sym_isize] = ACTIONS(1603), - [anon_sym_usize] = ACTIONS(1603), - [anon_sym_f32] = ACTIONS(1603), - [anon_sym_f64] = ACTIONS(1603), - [anon_sym_bool] = ACTIONS(1603), - [anon_sym_str] = ACTIONS(1603), - [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1243), - [anon_sym_AMP] = ACTIONS(1605), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3058), - [anon_sym_async] = ACTIONS(1265), - [anon_sym_const] = ACTIONS(1265), - [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1271), - [anon_sym_for] = ACTIONS(1273), - [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1277), - [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1265), - [anon_sym_extern] = ACTIONS(1279), - [anon_sym_dyn] = ACTIONS(1283), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1619), - [sym_super] = ACTIONS(1619), - [sym_crate] = ACTIONS(1619), - [sym_metavariable] = ACTIONS(1621), + [aux_sym_function_modifiers_repeat1] = STATE(2244), + [sym_identifier] = ACTIONS(3064), + [anon_sym_LPAREN] = ACTIONS(1602), + [anon_sym_LBRACK] = ACTIONS(1604), + [anon_sym_STAR] = ACTIONS(1240), + [anon_sym_QMARK] = ACTIONS(1242), + [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_BANG] = ACTIONS(1248), + [anon_sym_AMP] = ACTIONS(1610), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1614), + [anon_sym_SQUOTE] = ACTIONS(3072), + [anon_sym_async] = ACTIONS(1270), + [anon_sym_const] = ACTIONS(1270), + [anon_sym_default] = ACTIONS(1618), + [anon_sym_fn] = ACTIONS(1276), + [anon_sym_for] = ACTIONS(1278), + [anon_sym_gen] = ACTIONS(1620), + [anon_sym_impl] = ACTIONS(1282), + [anon_sym_union] = ACTIONS(1620), + [anon_sym_unsafe] = ACTIONS(1270), + [anon_sym_extern] = ACTIONS(1284), + [anon_sym_safe] = ACTIONS(1270), + [anon_sym_dyn] = ACTIONS(1288), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1624), + [sym_super] = ACTIONS(1624), + [sym_crate] = ACTIONS(1624), + [sym_metavariable] = ACTIONS(1626), }, [STATE(895)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(3030), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_function_modifiers] = STATE(3591), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2373), + [sym__type] = STATE(2464), + [sym_bracketed_type] = STATE(3474), + [sym_lifetime] = STATE(3727), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1591), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2022), + [sym_generic_type_with_turbofish] = STATE(3764), + [sym_bounded_type] = STATE(2069), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3334), + [sym_scoped_type_identifier] = STATE(1990), [sym_line_comment] = STATE(895), [sym_block_comment] = STATE(895), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(3052), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1235), - [anon_sym_QMARK] = ACTIONS(1237), - [anon_sym_u8] = ACTIONS(1603), - [anon_sym_i8] = ACTIONS(1603), - [anon_sym_u16] = ACTIONS(1603), - [anon_sym_i16] = ACTIONS(1603), - [anon_sym_u32] = ACTIONS(1603), - [anon_sym_i32] = ACTIONS(1603), - [anon_sym_u64] = ACTIONS(1603), - [anon_sym_i64] = ACTIONS(1603), - [anon_sym_u128] = ACTIONS(1603), - [anon_sym_i128] = ACTIONS(1603), - [anon_sym_isize] = ACTIONS(1603), - [anon_sym_usize] = ACTIONS(1603), - [anon_sym_f32] = ACTIONS(1603), - [anon_sym_f64] = ACTIONS(1603), - [anon_sym_bool] = ACTIONS(1603), - [anon_sym_str] = ACTIONS(1603), - [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1243), - [anon_sym_AMP] = ACTIONS(1605), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3058), - [anon_sym_async] = ACTIONS(1265), - [anon_sym_const] = ACTIONS(1265), - [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1271), - [anon_sym_for] = ACTIONS(1273), - [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1277), - [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1265), - [anon_sym_extern] = ACTIONS(1279), - [anon_sym_dyn] = ACTIONS(1283), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1619), - [sym_super] = ACTIONS(1619), - [sym_crate] = ACTIONS(1619), - [sym_metavariable] = ACTIONS(1621), + [aux_sym_function_modifiers_repeat1] = STATE(2244), + [sym_identifier] = ACTIONS(3064), + [anon_sym_LPAREN] = ACTIONS(1602), + [anon_sym_LBRACK] = ACTIONS(1604), + [anon_sym_STAR] = ACTIONS(1240), + [anon_sym_QMARK] = ACTIONS(1242), + [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_BANG] = ACTIONS(1248), + [anon_sym_AMP] = ACTIONS(1610), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1614), + [anon_sym_SQUOTE] = ACTIONS(3072), + [anon_sym_async] = ACTIONS(1270), + [anon_sym_const] = ACTIONS(1270), + [anon_sym_default] = ACTIONS(1618), + [anon_sym_fn] = ACTIONS(1276), + [anon_sym_for] = ACTIONS(1278), + [anon_sym_gen] = ACTIONS(1620), + [anon_sym_impl] = ACTIONS(1282), + [anon_sym_union] = ACTIONS(1620), + [anon_sym_unsafe] = ACTIONS(1270), + [anon_sym_extern] = ACTIONS(1284), + [anon_sym_safe] = ACTIONS(1270), + [anon_sym_dyn] = ACTIONS(1288), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1624), + [sym_super] = ACTIONS(1624), + [sym_crate] = ACTIONS(1624), + [sym_metavariable] = ACTIONS(1626), }, [STATE(896)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2525), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_function_modifiers] = STATE(3591), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2373), + [sym__type] = STATE(2380), + [sym_bracketed_type] = STATE(3474), + [sym_lifetime] = STATE(3727), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1591), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2022), + [sym_generic_type_with_turbofish] = STATE(3764), + [sym_bounded_type] = STATE(2069), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3334), + [sym_scoped_type_identifier] = STATE(1990), [sym_line_comment] = STATE(896), [sym_block_comment] = STATE(896), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(3052), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1235), - [anon_sym_QMARK] = ACTIONS(1237), - [anon_sym_u8] = ACTIONS(1603), - [anon_sym_i8] = ACTIONS(1603), - [anon_sym_u16] = ACTIONS(1603), - [anon_sym_i16] = ACTIONS(1603), - [anon_sym_u32] = ACTIONS(1603), - [anon_sym_i32] = ACTIONS(1603), - [anon_sym_u64] = ACTIONS(1603), - [anon_sym_i64] = ACTIONS(1603), - [anon_sym_u128] = ACTIONS(1603), - [anon_sym_i128] = ACTIONS(1603), - [anon_sym_isize] = ACTIONS(1603), - [anon_sym_usize] = ACTIONS(1603), - [anon_sym_f32] = ACTIONS(1603), - [anon_sym_f64] = ACTIONS(1603), - [anon_sym_bool] = ACTIONS(1603), - [anon_sym_str] = ACTIONS(1603), - [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1243), - [anon_sym_AMP] = ACTIONS(1605), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3058), - [anon_sym_async] = ACTIONS(1265), - [anon_sym_const] = ACTIONS(1265), - [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1271), - [anon_sym_for] = ACTIONS(1273), - [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1277), - [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1265), - [anon_sym_extern] = ACTIONS(1279), - [anon_sym_dyn] = ACTIONS(1283), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1619), - [sym_super] = ACTIONS(1619), - [sym_crate] = ACTIONS(1619), - [sym_metavariable] = ACTIONS(1621), + [aux_sym_function_modifiers_repeat1] = STATE(2244), + [sym_identifier] = ACTIONS(3064), + [anon_sym_LPAREN] = ACTIONS(1602), + [anon_sym_LBRACK] = ACTIONS(1604), + [anon_sym_STAR] = ACTIONS(1240), + [anon_sym_QMARK] = ACTIONS(1242), + [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_BANG] = ACTIONS(1248), + [anon_sym_AMP] = ACTIONS(1610), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1614), + [anon_sym_SQUOTE] = ACTIONS(3072), + [anon_sym_async] = ACTIONS(1270), + [anon_sym_const] = ACTIONS(1270), + [anon_sym_default] = ACTIONS(1618), + [anon_sym_fn] = ACTIONS(1276), + [anon_sym_for] = ACTIONS(1278), + [anon_sym_gen] = ACTIONS(1620), + [anon_sym_impl] = ACTIONS(1282), + [anon_sym_union] = ACTIONS(1620), + [anon_sym_unsafe] = ACTIONS(1270), + [anon_sym_extern] = ACTIONS(1284), + [anon_sym_safe] = ACTIONS(1270), + [anon_sym_dyn] = ACTIONS(1288), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1624), + [sym_super] = ACTIONS(1624), + [sym_crate] = ACTIONS(1624), + [sym_metavariable] = ACTIONS(1626), }, [STATE(897)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2045), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_function_modifiers] = STATE(3591), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2373), + [sym__type] = STATE(2403), + [sym_bracketed_type] = STATE(3474), + [sym_lifetime] = STATE(3727), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1591), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2022), + [sym_generic_type_with_turbofish] = STATE(3764), + [sym_bounded_type] = STATE(2069), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3334), + [sym_scoped_type_identifier] = STATE(1990), [sym_line_comment] = STATE(897), [sym_block_comment] = STATE(897), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(3052), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1235), - [anon_sym_QMARK] = ACTIONS(1237), - [anon_sym_u8] = ACTIONS(1603), - [anon_sym_i8] = ACTIONS(1603), - [anon_sym_u16] = ACTIONS(1603), - [anon_sym_i16] = ACTIONS(1603), - [anon_sym_u32] = ACTIONS(1603), - [anon_sym_i32] = ACTIONS(1603), - [anon_sym_u64] = ACTIONS(1603), - [anon_sym_i64] = ACTIONS(1603), - [anon_sym_u128] = ACTIONS(1603), - [anon_sym_i128] = ACTIONS(1603), - [anon_sym_isize] = ACTIONS(1603), - [anon_sym_usize] = ACTIONS(1603), - [anon_sym_f32] = ACTIONS(1603), - [anon_sym_f64] = ACTIONS(1603), - [anon_sym_bool] = ACTIONS(1603), - [anon_sym_str] = ACTIONS(1603), - [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1243), - [anon_sym_AMP] = ACTIONS(1605), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3058), - [anon_sym_async] = ACTIONS(1265), - [anon_sym_const] = ACTIONS(1265), - [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1271), - [anon_sym_for] = ACTIONS(1273), - [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1277), - [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1265), - [anon_sym_extern] = ACTIONS(1279), - [anon_sym_dyn] = ACTIONS(1283), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1619), - [sym_super] = ACTIONS(1619), - [sym_crate] = ACTIONS(1619), - [sym_metavariable] = ACTIONS(1621), + [aux_sym_function_modifiers_repeat1] = STATE(2244), + [sym_identifier] = ACTIONS(3064), + [anon_sym_LPAREN] = ACTIONS(1602), + [anon_sym_LBRACK] = ACTIONS(1604), + [anon_sym_STAR] = ACTIONS(1240), + [anon_sym_QMARK] = ACTIONS(1242), + [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_BANG] = ACTIONS(1248), + [anon_sym_AMP] = ACTIONS(1610), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1614), + [anon_sym_SQUOTE] = ACTIONS(3072), + [anon_sym_async] = ACTIONS(1270), + [anon_sym_const] = ACTIONS(1270), + [anon_sym_default] = ACTIONS(1618), + [anon_sym_fn] = ACTIONS(1276), + [anon_sym_for] = ACTIONS(1278), + [anon_sym_gen] = ACTIONS(1620), + [anon_sym_impl] = ACTIONS(1282), + [anon_sym_union] = ACTIONS(1620), + [anon_sym_unsafe] = ACTIONS(1270), + [anon_sym_extern] = ACTIONS(1284), + [anon_sym_safe] = ACTIONS(1270), + [anon_sym_dyn] = ACTIONS(1288), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1624), + [sym_super] = ACTIONS(1624), + [sym_crate] = ACTIONS(1624), + [sym_metavariable] = ACTIONS(1626), }, [STATE(898)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2050), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_function_modifiers] = STATE(3591), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2373), + [sym__type] = STATE(2465), + [sym_bracketed_type] = STATE(3474), + [sym_lifetime] = STATE(3727), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1591), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2022), + [sym_generic_type_with_turbofish] = STATE(3764), + [sym_bounded_type] = STATE(2069), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3334), + [sym_scoped_type_identifier] = STATE(1990), [sym_line_comment] = STATE(898), [sym_block_comment] = STATE(898), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(3052), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1235), - [anon_sym_QMARK] = ACTIONS(1237), - [anon_sym_u8] = ACTIONS(1603), - [anon_sym_i8] = ACTIONS(1603), - [anon_sym_u16] = ACTIONS(1603), - [anon_sym_i16] = ACTIONS(1603), - [anon_sym_u32] = ACTIONS(1603), - [anon_sym_i32] = ACTIONS(1603), - [anon_sym_u64] = ACTIONS(1603), - [anon_sym_i64] = ACTIONS(1603), - [anon_sym_u128] = ACTIONS(1603), - [anon_sym_i128] = ACTIONS(1603), - [anon_sym_isize] = ACTIONS(1603), - [anon_sym_usize] = ACTIONS(1603), - [anon_sym_f32] = ACTIONS(1603), - [anon_sym_f64] = ACTIONS(1603), - [anon_sym_bool] = ACTIONS(1603), - [anon_sym_str] = ACTIONS(1603), - [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1243), - [anon_sym_AMP] = ACTIONS(1605), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3058), - [anon_sym_async] = ACTIONS(1265), - [anon_sym_const] = ACTIONS(1265), - [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1271), - [anon_sym_for] = ACTIONS(1273), - [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1277), - [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1265), - [anon_sym_extern] = ACTIONS(1279), - [anon_sym_dyn] = ACTIONS(1283), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1619), - [sym_super] = ACTIONS(1619), - [sym_crate] = ACTIONS(1619), - [sym_metavariable] = ACTIONS(1621), + [aux_sym_function_modifiers_repeat1] = STATE(2244), + [sym_identifier] = ACTIONS(3064), + [anon_sym_LPAREN] = ACTIONS(1602), + [anon_sym_LBRACK] = ACTIONS(1604), + [anon_sym_STAR] = ACTIONS(1240), + [anon_sym_QMARK] = ACTIONS(1242), + [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_BANG] = ACTIONS(1248), + [anon_sym_AMP] = ACTIONS(1610), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1614), + [anon_sym_SQUOTE] = ACTIONS(3072), + [anon_sym_async] = ACTIONS(1270), + [anon_sym_const] = ACTIONS(1270), + [anon_sym_default] = ACTIONS(1618), + [anon_sym_fn] = ACTIONS(1276), + [anon_sym_for] = ACTIONS(1278), + [anon_sym_gen] = ACTIONS(1620), + [anon_sym_impl] = ACTIONS(1282), + [anon_sym_union] = ACTIONS(1620), + [anon_sym_unsafe] = ACTIONS(1270), + [anon_sym_extern] = ACTIONS(1284), + [anon_sym_safe] = ACTIONS(1270), + [anon_sym_dyn] = ACTIONS(1288), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1624), + [sym_super] = ACTIONS(1624), + [sym_crate] = ACTIONS(1624), + [sym_metavariable] = ACTIONS(1626), }, [STATE(899)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2051), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_function_modifiers] = STATE(3591), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2373), + [sym__type] = STATE(2898), + [sym_bracketed_type] = STATE(3474), + [sym_lifetime] = STATE(3727), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1591), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2022), + [sym_generic_type_with_turbofish] = STATE(3764), + [sym_bounded_type] = STATE(2069), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3334), + [sym_scoped_type_identifier] = STATE(1990), [sym_line_comment] = STATE(899), [sym_block_comment] = STATE(899), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(3052), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1235), - [anon_sym_QMARK] = ACTIONS(1237), - [anon_sym_u8] = ACTIONS(1603), - [anon_sym_i8] = ACTIONS(1603), - [anon_sym_u16] = ACTIONS(1603), - [anon_sym_i16] = ACTIONS(1603), - [anon_sym_u32] = ACTIONS(1603), - [anon_sym_i32] = ACTIONS(1603), - [anon_sym_u64] = ACTIONS(1603), - [anon_sym_i64] = ACTIONS(1603), - [anon_sym_u128] = ACTIONS(1603), - [anon_sym_i128] = ACTIONS(1603), - [anon_sym_isize] = ACTIONS(1603), - [anon_sym_usize] = ACTIONS(1603), - [anon_sym_f32] = ACTIONS(1603), - [anon_sym_f64] = ACTIONS(1603), - [anon_sym_bool] = ACTIONS(1603), - [anon_sym_str] = ACTIONS(1603), - [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1243), - [anon_sym_AMP] = ACTIONS(1605), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3058), - [anon_sym_async] = ACTIONS(1265), - [anon_sym_const] = ACTIONS(1265), - [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1271), - [anon_sym_for] = ACTIONS(1273), - [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1277), - [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1265), - [anon_sym_extern] = ACTIONS(1279), - [anon_sym_dyn] = ACTIONS(1283), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1619), - [sym_super] = ACTIONS(1619), - [sym_crate] = ACTIONS(1619), - [sym_metavariable] = ACTIONS(1621), + [aux_sym_function_modifiers_repeat1] = STATE(2244), + [sym_identifier] = ACTIONS(3064), + [anon_sym_LPAREN] = ACTIONS(1602), + [anon_sym_LBRACK] = ACTIONS(1604), + [anon_sym_STAR] = ACTIONS(1240), + [anon_sym_QMARK] = ACTIONS(1242), + [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_BANG] = ACTIONS(1248), + [anon_sym_AMP] = ACTIONS(1610), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1614), + [anon_sym_SQUOTE] = ACTIONS(3072), + [anon_sym_async] = ACTIONS(1270), + [anon_sym_const] = ACTIONS(1270), + [anon_sym_default] = ACTIONS(1618), + [anon_sym_fn] = ACTIONS(1276), + [anon_sym_for] = ACTIONS(1278), + [anon_sym_gen] = ACTIONS(1620), + [anon_sym_impl] = ACTIONS(1282), + [anon_sym_union] = ACTIONS(1620), + [anon_sym_unsafe] = ACTIONS(1270), + [anon_sym_extern] = ACTIONS(1284), + [anon_sym_safe] = ACTIONS(1270), + [anon_sym_dyn] = ACTIONS(1288), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1624), + [sym_super] = ACTIONS(1624), + [sym_crate] = ACTIONS(1624), + [sym_metavariable] = ACTIONS(1626), }, [STATE(900)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2428), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_function_modifiers] = STATE(3591), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2373), + [sym__type] = STATE(2070), + [sym_bracketed_type] = STATE(3474), + [sym_lifetime] = STATE(3727), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1591), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2022), + [sym_generic_type_with_turbofish] = STATE(3764), + [sym_bounded_type] = STATE(2069), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3334), + [sym_scoped_type_identifier] = STATE(1990), [sym_line_comment] = STATE(900), [sym_block_comment] = STATE(900), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(3052), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1235), - [anon_sym_QMARK] = ACTIONS(1237), - [anon_sym_u8] = ACTIONS(1603), - [anon_sym_i8] = ACTIONS(1603), - [anon_sym_u16] = ACTIONS(1603), - [anon_sym_i16] = ACTIONS(1603), - [anon_sym_u32] = ACTIONS(1603), - [anon_sym_i32] = ACTIONS(1603), - [anon_sym_u64] = ACTIONS(1603), - [anon_sym_i64] = ACTIONS(1603), - [anon_sym_u128] = ACTIONS(1603), - [anon_sym_i128] = ACTIONS(1603), - [anon_sym_isize] = ACTIONS(1603), - [anon_sym_usize] = ACTIONS(1603), - [anon_sym_f32] = ACTIONS(1603), - [anon_sym_f64] = ACTIONS(1603), - [anon_sym_bool] = ACTIONS(1603), - [anon_sym_str] = ACTIONS(1603), - [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1243), - [anon_sym_AMP] = ACTIONS(1605), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3058), - [anon_sym_async] = ACTIONS(1265), - [anon_sym_const] = ACTIONS(1265), - [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1271), - [anon_sym_for] = ACTIONS(1273), - [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1277), - [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1265), - [anon_sym_extern] = ACTIONS(1279), - [anon_sym_dyn] = ACTIONS(1283), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1619), - [sym_super] = ACTIONS(1619), - [sym_crate] = ACTIONS(1619), - [sym_metavariable] = ACTIONS(1621), + [aux_sym_function_modifiers_repeat1] = STATE(2244), + [sym_identifier] = ACTIONS(3064), + [anon_sym_LPAREN] = ACTIONS(1602), + [anon_sym_LBRACK] = ACTIONS(1604), + [anon_sym_STAR] = ACTIONS(1240), + [anon_sym_QMARK] = ACTIONS(1242), + [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_BANG] = ACTIONS(1248), + [anon_sym_AMP] = ACTIONS(1610), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1614), + [anon_sym_SQUOTE] = ACTIONS(3072), + [anon_sym_async] = ACTIONS(1270), + [anon_sym_const] = ACTIONS(1270), + [anon_sym_default] = ACTIONS(1618), + [anon_sym_fn] = ACTIONS(1276), + [anon_sym_for] = ACTIONS(1278), + [anon_sym_gen] = ACTIONS(1620), + [anon_sym_impl] = ACTIONS(1282), + [anon_sym_union] = ACTIONS(1620), + [anon_sym_unsafe] = ACTIONS(1270), + [anon_sym_extern] = ACTIONS(1284), + [anon_sym_safe] = ACTIONS(1270), + [anon_sym_dyn] = ACTIONS(1288), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(3296), + [sym_super] = ACTIONS(1624), + [sym_crate] = ACTIONS(1624), + [sym_metavariable] = ACTIONS(1626), }, [STATE(901)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2052), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_function_modifiers] = STATE(3591), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2373), + [sym__type] = STATE(2765), + [sym_bracketed_type] = STATE(3474), + [sym_lifetime] = STATE(3727), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1591), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2022), + [sym_generic_type_with_turbofish] = STATE(3764), + [sym_bounded_type] = STATE(2069), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3334), + [sym_scoped_type_identifier] = STATE(1990), [sym_line_comment] = STATE(901), [sym_block_comment] = STATE(901), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(3052), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1235), - [anon_sym_QMARK] = ACTIONS(1237), - [anon_sym_u8] = ACTIONS(1603), - [anon_sym_i8] = ACTIONS(1603), - [anon_sym_u16] = ACTIONS(1603), - [anon_sym_i16] = ACTIONS(1603), - [anon_sym_u32] = ACTIONS(1603), - [anon_sym_i32] = ACTIONS(1603), - [anon_sym_u64] = ACTIONS(1603), - [anon_sym_i64] = ACTIONS(1603), - [anon_sym_u128] = ACTIONS(1603), - [anon_sym_i128] = ACTIONS(1603), - [anon_sym_isize] = ACTIONS(1603), - [anon_sym_usize] = ACTIONS(1603), - [anon_sym_f32] = ACTIONS(1603), - [anon_sym_f64] = ACTIONS(1603), - [anon_sym_bool] = ACTIONS(1603), - [anon_sym_str] = ACTIONS(1603), - [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1243), - [anon_sym_AMP] = ACTIONS(1605), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3058), - [anon_sym_async] = ACTIONS(1265), - [anon_sym_const] = ACTIONS(1265), - [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1271), - [anon_sym_for] = ACTIONS(1273), - [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1277), - [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1265), - [anon_sym_extern] = ACTIONS(1279), - [anon_sym_dyn] = ACTIONS(1283), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1619), - [sym_super] = ACTIONS(1619), - [sym_crate] = ACTIONS(1619), - [sym_metavariable] = ACTIONS(1621), + [aux_sym_function_modifiers_repeat1] = STATE(2244), + [sym_identifier] = ACTIONS(3064), + [anon_sym_LPAREN] = ACTIONS(1602), + [anon_sym_LBRACK] = ACTIONS(1604), + [anon_sym_STAR] = ACTIONS(1240), + [anon_sym_QMARK] = ACTIONS(1242), + [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_BANG] = ACTIONS(1248), + [anon_sym_AMP] = ACTIONS(1610), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1614), + [anon_sym_SQUOTE] = ACTIONS(3072), + [anon_sym_async] = ACTIONS(1270), + [anon_sym_const] = ACTIONS(1270), + [anon_sym_default] = ACTIONS(1618), + [anon_sym_fn] = ACTIONS(1276), + [anon_sym_for] = ACTIONS(1278), + [anon_sym_gen] = ACTIONS(1620), + [anon_sym_impl] = ACTIONS(1282), + [anon_sym_union] = ACTIONS(1620), + [anon_sym_unsafe] = ACTIONS(1270), + [anon_sym_extern] = ACTIONS(1284), + [anon_sym_safe] = ACTIONS(1270), + [anon_sym_dyn] = ACTIONS(1288), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1624), + [sym_super] = ACTIONS(1624), + [sym_crate] = ACTIONS(1624), + [sym_metavariable] = ACTIONS(1626), }, [STATE(902)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2410), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_function_modifiers] = STATE(3591), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2373), + [sym__type] = STATE(2682), + [sym_bracketed_type] = STATE(3474), + [sym_lifetime] = STATE(3727), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1591), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2022), + [sym_generic_type_with_turbofish] = STATE(3764), + [sym_bounded_type] = STATE(2069), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3334), + [sym_scoped_type_identifier] = STATE(1990), [sym_line_comment] = STATE(902), [sym_block_comment] = STATE(902), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(3052), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1235), - [anon_sym_QMARK] = ACTIONS(1237), - [anon_sym_u8] = ACTIONS(1603), - [anon_sym_i8] = ACTIONS(1603), - [anon_sym_u16] = ACTIONS(1603), - [anon_sym_i16] = ACTIONS(1603), - [anon_sym_u32] = ACTIONS(1603), - [anon_sym_i32] = ACTIONS(1603), - [anon_sym_u64] = ACTIONS(1603), - [anon_sym_i64] = ACTIONS(1603), - [anon_sym_u128] = ACTIONS(1603), - [anon_sym_i128] = ACTIONS(1603), - [anon_sym_isize] = ACTIONS(1603), - [anon_sym_usize] = ACTIONS(1603), - [anon_sym_f32] = ACTIONS(1603), - [anon_sym_f64] = ACTIONS(1603), - [anon_sym_bool] = ACTIONS(1603), - [anon_sym_str] = ACTIONS(1603), - [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1243), - [anon_sym_AMP] = ACTIONS(1605), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3058), - [anon_sym_async] = ACTIONS(1265), - [anon_sym_const] = ACTIONS(1265), - [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1271), - [anon_sym_for] = ACTIONS(1273), - [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1277), - [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1265), - [anon_sym_extern] = ACTIONS(1279), - [anon_sym_dyn] = ACTIONS(1283), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1619), - [sym_super] = ACTIONS(1619), - [sym_crate] = ACTIONS(1619), - [sym_metavariable] = ACTIONS(1621), + [aux_sym_function_modifiers_repeat1] = STATE(2244), + [sym_identifier] = ACTIONS(3064), + [anon_sym_LPAREN] = ACTIONS(1602), + [anon_sym_LBRACK] = ACTIONS(1604), + [anon_sym_STAR] = ACTIONS(1240), + [anon_sym_QMARK] = ACTIONS(1242), + [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_BANG] = ACTIONS(1248), + [anon_sym_AMP] = ACTIONS(1610), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1614), + [anon_sym_SQUOTE] = ACTIONS(3072), + [anon_sym_async] = ACTIONS(1270), + [anon_sym_const] = ACTIONS(1270), + [anon_sym_default] = ACTIONS(1618), + [anon_sym_fn] = ACTIONS(1276), + [anon_sym_for] = ACTIONS(1278), + [anon_sym_gen] = ACTIONS(1620), + [anon_sym_impl] = ACTIONS(1282), + [anon_sym_union] = ACTIONS(1620), + [anon_sym_unsafe] = ACTIONS(1270), + [anon_sym_extern] = ACTIONS(1284), + [anon_sym_safe] = ACTIONS(1270), + [anon_sym_dyn] = ACTIONS(1288), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1624), + [sym_super] = ACTIONS(1624), + [sym_crate] = ACTIONS(1624), + [sym_metavariable] = ACTIONS(1626), }, [STATE(903)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2364), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_function_modifiers] = STATE(3591), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2373), + [sym__type] = STATE(2055), + [sym_bracketed_type] = STATE(3474), + [sym_lifetime] = STATE(3727), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1591), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2022), + [sym_generic_type_with_turbofish] = STATE(3764), + [sym_bounded_type] = STATE(2069), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3334), + [sym_scoped_type_identifier] = STATE(1990), [sym_line_comment] = STATE(903), [sym_block_comment] = STATE(903), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(3052), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1235), - [anon_sym_QMARK] = ACTIONS(1237), - [anon_sym_u8] = ACTIONS(1603), - [anon_sym_i8] = ACTIONS(1603), - [anon_sym_u16] = ACTIONS(1603), - [anon_sym_i16] = ACTIONS(1603), - [anon_sym_u32] = ACTIONS(1603), - [anon_sym_i32] = ACTIONS(1603), - [anon_sym_u64] = ACTIONS(1603), - [anon_sym_i64] = ACTIONS(1603), - [anon_sym_u128] = ACTIONS(1603), - [anon_sym_i128] = ACTIONS(1603), - [anon_sym_isize] = ACTIONS(1603), - [anon_sym_usize] = ACTIONS(1603), - [anon_sym_f32] = ACTIONS(1603), - [anon_sym_f64] = ACTIONS(1603), - [anon_sym_bool] = ACTIONS(1603), - [anon_sym_str] = ACTIONS(1603), - [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1243), - [anon_sym_AMP] = ACTIONS(1605), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3058), - [anon_sym_async] = ACTIONS(1265), - [anon_sym_const] = ACTIONS(1265), - [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1271), - [anon_sym_for] = ACTIONS(1273), - [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1277), - [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1265), - [anon_sym_extern] = ACTIONS(1279), - [anon_sym_dyn] = ACTIONS(1283), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1619), - [sym_super] = ACTIONS(1619), - [sym_crate] = ACTIONS(1619), - [sym_metavariable] = ACTIONS(1621), + [aux_sym_function_modifiers_repeat1] = STATE(2244), + [sym_identifier] = ACTIONS(3064), + [anon_sym_LPAREN] = ACTIONS(1602), + [anon_sym_LBRACK] = ACTIONS(1604), + [anon_sym_STAR] = ACTIONS(1240), + [anon_sym_QMARK] = ACTIONS(1242), + [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_BANG] = ACTIONS(1248), + [anon_sym_AMP] = ACTIONS(1610), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1614), + [anon_sym_SQUOTE] = ACTIONS(3072), + [anon_sym_async] = ACTIONS(1270), + [anon_sym_const] = ACTIONS(1270), + [anon_sym_default] = ACTIONS(1618), + [anon_sym_fn] = ACTIONS(1276), + [anon_sym_for] = ACTIONS(1278), + [anon_sym_gen] = ACTIONS(1620), + [anon_sym_impl] = ACTIONS(1282), + [anon_sym_union] = ACTIONS(1620), + [anon_sym_unsafe] = ACTIONS(1270), + [anon_sym_extern] = ACTIONS(1284), + [anon_sym_safe] = ACTIONS(1270), + [anon_sym_dyn] = ACTIONS(1288), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1624), + [sym_super] = ACTIONS(1624), + [sym_crate] = ACTIONS(1624), + [sym_metavariable] = ACTIONS(1626), }, [STATE(904)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2889), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_function_modifiers] = STATE(3591), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2373), + [sym__type] = STATE(2446), + [sym_bracketed_type] = STATE(3474), + [sym_lifetime] = STATE(3727), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1591), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2448), + [sym_generic_type_with_turbofish] = STATE(3764), + [sym_bounded_type] = STATE(2069), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3334), + [sym_scoped_type_identifier] = STATE(2233), [sym_line_comment] = STATE(904), [sym_block_comment] = STATE(904), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(3052), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1235), - [anon_sym_QMARK] = ACTIONS(1237), - [anon_sym_u8] = ACTIONS(1603), - [anon_sym_i8] = ACTIONS(1603), - [anon_sym_u16] = ACTIONS(1603), - [anon_sym_i16] = ACTIONS(1603), - [anon_sym_u32] = ACTIONS(1603), - [anon_sym_i32] = ACTIONS(1603), - [anon_sym_u64] = ACTIONS(1603), - [anon_sym_i64] = ACTIONS(1603), - [anon_sym_u128] = ACTIONS(1603), - [anon_sym_i128] = ACTIONS(1603), - [anon_sym_isize] = ACTIONS(1603), - [anon_sym_usize] = ACTIONS(1603), - [anon_sym_f32] = ACTIONS(1603), - [anon_sym_f64] = ACTIONS(1603), - [anon_sym_bool] = ACTIONS(1603), - [anon_sym_str] = ACTIONS(1603), - [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1243), - [anon_sym_AMP] = ACTIONS(1605), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3058), - [anon_sym_async] = ACTIONS(1265), - [anon_sym_const] = ACTIONS(1265), - [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1271), - [anon_sym_for] = ACTIONS(1273), - [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1277), - [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1265), - [anon_sym_extern] = ACTIONS(1279), - [anon_sym_dyn] = ACTIONS(1283), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1619), - [sym_super] = ACTIONS(1619), - [sym_crate] = ACTIONS(1619), - [sym_metavariable] = ACTIONS(1621), + [aux_sym_function_modifiers_repeat1] = STATE(2244), + [sym_identifier] = ACTIONS(3298), + [anon_sym_LPAREN] = ACTIONS(1602), + [anon_sym_LBRACK] = ACTIONS(1604), + [anon_sym_STAR] = ACTIONS(1240), + [anon_sym_QMARK] = ACTIONS(1242), + [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_BANG] = ACTIONS(3300), + [anon_sym_AMP] = ACTIONS(1610), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1614), + [anon_sym_SQUOTE] = ACTIONS(3072), + [anon_sym_async] = ACTIONS(1270), + [anon_sym_const] = ACTIONS(1270), + [anon_sym_default] = ACTIONS(1618), + [anon_sym_fn] = ACTIONS(1276), + [anon_sym_for] = ACTIONS(1278), + [anon_sym_gen] = ACTIONS(1620), + [anon_sym_impl] = ACTIONS(1282), + [anon_sym_union] = ACTIONS(1620), + [anon_sym_unsafe] = ACTIONS(1270), + [anon_sym_extern] = ACTIONS(1284), + [anon_sym_safe] = ACTIONS(1270), + [anon_sym_dyn] = ACTIONS(1288), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1624), + [sym_super] = ACTIONS(1624), + [sym_crate] = ACTIONS(1624), + [sym_metavariable] = ACTIONS(1626), }, [STATE(905)] = { - [sym_function_modifiers] = STATE(3595), - [sym_removed_trait_bound] = STATE(1787), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(1806), - [sym_bracketed_type] = STATE(3654), - [sym_lifetime] = STATE(3732), - [sym_array_type] = STATE(1787), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(1787), - [sym_tuple_type] = STATE(1787), - [sym_unit_type] = STATE(1787), - [sym_generic_type] = STATE(1646), - [sym_generic_type_with_turbofish] = STATE(3645), - [sym_bounded_type] = STATE(1787), - [sym_reference_type] = STATE(1787), - [sym_pointer_type] = STATE(1787), - [sym_never_type] = STATE(1787), - [sym_abstract_type] = STATE(1787), - [sym_dynamic_type] = STATE(1787), - [sym_macro_invocation] = STATE(1787), - [sym_scoped_identifier] = STATE(3373), - [sym_scoped_type_identifier] = STATE(1590), + [sym_function_modifiers] = STATE(3591), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2373), + [sym__type] = STATE(2279), + [sym_bracketed_type] = STATE(3474), + [sym_lifetime] = STATE(3727), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1591), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2022), + [sym_generic_type_with_turbofish] = STATE(3764), + [sym_bounded_type] = STATE(2069), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3334), + [sym_scoped_type_identifier] = STATE(1990), [sym_line_comment] = STATE(905), [sym_block_comment] = STATE(905), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(3144), - [anon_sym_LPAREN] = ACTIONS(3146), - [anon_sym_LBRACK] = ACTIONS(3148), - [anon_sym_STAR] = ACTIONS(3152), - [anon_sym_QMARK] = ACTIONS(3154), - [anon_sym_u8] = ACTIONS(3156), - [anon_sym_i8] = ACTIONS(3156), - [anon_sym_u16] = ACTIONS(3156), - [anon_sym_i16] = ACTIONS(3156), - [anon_sym_u32] = ACTIONS(3156), - [anon_sym_i32] = ACTIONS(3156), - [anon_sym_u64] = ACTIONS(3156), - [anon_sym_i64] = ACTIONS(3156), - [anon_sym_u128] = ACTIONS(3156), - [anon_sym_i128] = ACTIONS(3156), - [anon_sym_isize] = ACTIONS(3156), - [anon_sym_usize] = ACTIONS(3156), - [anon_sym_f32] = ACTIONS(3156), - [anon_sym_f64] = ACTIONS(3156), - [anon_sym_bool] = ACTIONS(3156), - [anon_sym_str] = ACTIONS(3156), - [anon_sym_char] = ACTIONS(3156), - [anon_sym_BANG] = ACTIONS(3158), - [anon_sym_AMP] = ACTIONS(3160), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3162), - [anon_sym_SQUOTE] = ACTIONS(3058), - [anon_sym_async] = ACTIONS(1265), - [anon_sym_const] = ACTIONS(1265), - [anon_sym_default] = ACTIONS(3164), - [anon_sym_fn] = ACTIONS(3166), - [anon_sym_for] = ACTIONS(1273), - [anon_sym_gen] = ACTIONS(3168), - [anon_sym_impl] = ACTIONS(3170), - [anon_sym_union] = ACTIONS(3168), - [anon_sym_unsafe] = ACTIONS(1265), - [anon_sym_extern] = ACTIONS(1279), - [anon_sym_dyn] = ACTIONS(3172), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3176), - [sym_super] = ACTIONS(3176), - [sym_crate] = ACTIONS(3176), - [sym_metavariable] = ACTIONS(3178), + [aux_sym_function_modifiers_repeat1] = STATE(2244), + [sym_identifier] = ACTIONS(3064), + [anon_sym_LPAREN] = ACTIONS(1602), + [anon_sym_LBRACK] = ACTIONS(1604), + [anon_sym_STAR] = ACTIONS(1240), + [anon_sym_QMARK] = ACTIONS(1242), + [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_BANG] = ACTIONS(1248), + [anon_sym_AMP] = ACTIONS(1610), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1614), + [anon_sym_SQUOTE] = ACTIONS(3072), + [anon_sym_async] = ACTIONS(1270), + [anon_sym_const] = ACTIONS(1270), + [anon_sym_default] = ACTIONS(1618), + [anon_sym_fn] = ACTIONS(1276), + [anon_sym_for] = ACTIONS(1278), + [anon_sym_gen] = ACTIONS(1620), + [anon_sym_impl] = ACTIONS(1282), + [anon_sym_union] = ACTIONS(1620), + [anon_sym_unsafe] = ACTIONS(1270), + [anon_sym_extern] = ACTIONS(1284), + [anon_sym_safe] = ACTIONS(1270), + [anon_sym_dyn] = ACTIONS(1288), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1624), + [sym_super] = ACTIONS(1624), + [sym_crate] = ACTIONS(1624), + [sym_metavariable] = ACTIONS(1626), }, [STATE(906)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2869), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_function_modifiers] = STATE(3591), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2373), + [sym__type] = STATE(2534), + [sym_bracketed_type] = STATE(3474), + [sym_lifetime] = STATE(3727), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1591), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2022), + [sym_generic_type_with_turbofish] = STATE(3764), + [sym_bounded_type] = STATE(2069), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3334), + [sym_scoped_type_identifier] = STATE(1990), [sym_line_comment] = STATE(906), [sym_block_comment] = STATE(906), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(3052), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1235), - [anon_sym_QMARK] = ACTIONS(1237), - [anon_sym_u8] = ACTIONS(1603), - [anon_sym_i8] = ACTIONS(1603), - [anon_sym_u16] = ACTIONS(1603), - [anon_sym_i16] = ACTIONS(1603), - [anon_sym_u32] = ACTIONS(1603), - [anon_sym_i32] = ACTIONS(1603), - [anon_sym_u64] = ACTIONS(1603), - [anon_sym_i64] = ACTIONS(1603), - [anon_sym_u128] = ACTIONS(1603), - [anon_sym_i128] = ACTIONS(1603), - [anon_sym_isize] = ACTIONS(1603), - [anon_sym_usize] = ACTIONS(1603), - [anon_sym_f32] = ACTIONS(1603), - [anon_sym_f64] = ACTIONS(1603), - [anon_sym_bool] = ACTIONS(1603), - [anon_sym_str] = ACTIONS(1603), - [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1243), - [anon_sym_AMP] = ACTIONS(1605), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3058), - [anon_sym_async] = ACTIONS(1265), - [anon_sym_const] = ACTIONS(1265), - [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1271), - [anon_sym_for] = ACTIONS(1273), - [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1277), - [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1265), - [anon_sym_extern] = ACTIONS(1279), - [anon_sym_dyn] = ACTIONS(1283), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1619), - [sym_super] = ACTIONS(1619), - [sym_crate] = ACTIONS(1619), - [sym_metavariable] = ACTIONS(1621), + [aux_sym_function_modifiers_repeat1] = STATE(2244), + [sym_identifier] = ACTIONS(3064), + [anon_sym_LPAREN] = ACTIONS(1602), + [anon_sym_LBRACK] = ACTIONS(1604), + [anon_sym_STAR] = ACTIONS(1240), + [anon_sym_QMARK] = ACTIONS(1242), + [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_BANG] = ACTIONS(1248), + [anon_sym_AMP] = ACTIONS(1610), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1614), + [anon_sym_SQUOTE] = ACTIONS(3072), + [anon_sym_async] = ACTIONS(1270), + [anon_sym_const] = ACTIONS(1270), + [anon_sym_default] = ACTIONS(1618), + [anon_sym_fn] = ACTIONS(1276), + [anon_sym_for] = ACTIONS(1278), + [anon_sym_gen] = ACTIONS(1620), + [anon_sym_impl] = ACTIONS(1282), + [anon_sym_union] = ACTIONS(1620), + [anon_sym_unsafe] = ACTIONS(1270), + [anon_sym_extern] = ACTIONS(1284), + [anon_sym_safe] = ACTIONS(1270), + [anon_sym_dyn] = ACTIONS(1288), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1624), + [sym_super] = ACTIONS(1624), + [sym_crate] = ACTIONS(1624), + [sym_metavariable] = ACTIONS(1626), }, [STATE(907)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2816), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_function_modifiers] = STATE(3591), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2373), + [sym__type] = STATE(3086), + [sym_bracketed_type] = STATE(3474), + [sym_lifetime] = STATE(3727), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1591), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2022), + [sym_generic_type_with_turbofish] = STATE(3764), + [sym_bounded_type] = STATE(2069), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3334), + [sym_scoped_type_identifier] = STATE(1990), [sym_line_comment] = STATE(907), [sym_block_comment] = STATE(907), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(3052), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1235), - [anon_sym_QMARK] = ACTIONS(1237), - [anon_sym_u8] = ACTIONS(1603), - [anon_sym_i8] = ACTIONS(1603), - [anon_sym_u16] = ACTIONS(1603), - [anon_sym_i16] = ACTIONS(1603), - [anon_sym_u32] = ACTIONS(1603), - [anon_sym_i32] = ACTIONS(1603), - [anon_sym_u64] = ACTIONS(1603), - [anon_sym_i64] = ACTIONS(1603), - [anon_sym_u128] = ACTIONS(1603), - [anon_sym_i128] = ACTIONS(1603), - [anon_sym_isize] = ACTIONS(1603), - [anon_sym_usize] = ACTIONS(1603), - [anon_sym_f32] = ACTIONS(1603), - [anon_sym_f64] = ACTIONS(1603), - [anon_sym_bool] = ACTIONS(1603), - [anon_sym_str] = ACTIONS(1603), - [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1243), - [anon_sym_AMP] = ACTIONS(1605), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3058), - [anon_sym_async] = ACTIONS(1265), - [anon_sym_const] = ACTIONS(1265), - [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1271), - [anon_sym_for] = ACTIONS(1273), - [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1277), - [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1265), - [anon_sym_extern] = ACTIONS(1279), - [anon_sym_dyn] = ACTIONS(1283), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1619), - [sym_super] = ACTIONS(1619), - [sym_crate] = ACTIONS(1619), - [sym_metavariable] = ACTIONS(1621), + [aux_sym_function_modifiers_repeat1] = STATE(2244), + [sym_identifier] = ACTIONS(3064), + [anon_sym_LPAREN] = ACTIONS(1602), + [anon_sym_LBRACK] = ACTIONS(1604), + [anon_sym_STAR] = ACTIONS(1240), + [anon_sym_QMARK] = ACTIONS(1242), + [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_BANG] = ACTIONS(1248), + [anon_sym_AMP] = ACTIONS(1610), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1614), + [anon_sym_SQUOTE] = ACTIONS(3072), + [anon_sym_async] = ACTIONS(1270), + [anon_sym_const] = ACTIONS(1270), + [anon_sym_default] = ACTIONS(1618), + [anon_sym_fn] = ACTIONS(1276), + [anon_sym_for] = ACTIONS(1278), + [anon_sym_gen] = ACTIONS(1620), + [anon_sym_impl] = ACTIONS(1282), + [anon_sym_union] = ACTIONS(1620), + [anon_sym_unsafe] = ACTIONS(1270), + [anon_sym_extern] = ACTIONS(1284), + [anon_sym_safe] = ACTIONS(1270), + [anon_sym_dyn] = ACTIONS(1288), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1624), + [sym_super] = ACTIONS(1624), + [sym_crate] = ACTIONS(1624), + [sym_metavariable] = ACTIONS(1626), }, [STATE(908)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2369), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_function_modifiers] = STATE(3591), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2373), + [sym__type] = STATE(2516), + [sym_bracketed_type] = STATE(3474), + [sym_lifetime] = STATE(3727), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1591), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2022), + [sym_generic_type_with_turbofish] = STATE(3764), + [sym_bounded_type] = STATE(2069), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3334), + [sym_scoped_type_identifier] = STATE(1990), [sym_line_comment] = STATE(908), [sym_block_comment] = STATE(908), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(3052), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1235), - [anon_sym_QMARK] = ACTIONS(1237), - [anon_sym_u8] = ACTIONS(1603), - [anon_sym_i8] = ACTIONS(1603), - [anon_sym_u16] = ACTIONS(1603), - [anon_sym_i16] = ACTIONS(1603), - [anon_sym_u32] = ACTIONS(1603), - [anon_sym_i32] = ACTIONS(1603), - [anon_sym_u64] = ACTIONS(1603), - [anon_sym_i64] = ACTIONS(1603), - [anon_sym_u128] = ACTIONS(1603), - [anon_sym_i128] = ACTIONS(1603), - [anon_sym_isize] = ACTIONS(1603), - [anon_sym_usize] = ACTIONS(1603), - [anon_sym_f32] = ACTIONS(1603), - [anon_sym_f64] = ACTIONS(1603), - [anon_sym_bool] = ACTIONS(1603), - [anon_sym_str] = ACTIONS(1603), - [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1243), - [anon_sym_AMP] = ACTIONS(1605), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3058), - [anon_sym_async] = ACTIONS(1265), - [anon_sym_const] = ACTIONS(1265), - [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1271), - [anon_sym_for] = ACTIONS(1273), - [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1277), - [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1265), - [anon_sym_extern] = ACTIONS(1279), - [anon_sym_dyn] = ACTIONS(1283), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1619), - [sym_super] = ACTIONS(1619), - [sym_crate] = ACTIONS(1619), - [sym_metavariable] = ACTIONS(1621), + [aux_sym_function_modifiers_repeat1] = STATE(2244), + [sym_identifier] = ACTIONS(3064), + [anon_sym_LPAREN] = ACTIONS(1602), + [anon_sym_LBRACK] = ACTIONS(1604), + [anon_sym_STAR] = ACTIONS(1240), + [anon_sym_QMARK] = ACTIONS(1242), + [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_BANG] = ACTIONS(1248), + [anon_sym_AMP] = ACTIONS(1610), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1614), + [anon_sym_SQUOTE] = ACTIONS(3072), + [anon_sym_async] = ACTIONS(1270), + [anon_sym_const] = ACTIONS(1270), + [anon_sym_default] = ACTIONS(1618), + [anon_sym_fn] = ACTIONS(1276), + [anon_sym_for] = ACTIONS(1278), + [anon_sym_gen] = ACTIONS(1620), + [anon_sym_impl] = ACTIONS(1282), + [anon_sym_union] = ACTIONS(1620), + [anon_sym_unsafe] = ACTIONS(1270), + [anon_sym_extern] = ACTIONS(1284), + [anon_sym_safe] = ACTIONS(1270), + [anon_sym_dyn] = ACTIONS(1288), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1624), + [sym_super] = ACTIONS(1624), + [sym_crate] = ACTIONS(1624), + [sym_metavariable] = ACTIONS(1626), }, [STATE(909)] = { - [sym_function_modifiers] = STATE(3455), - [sym_removed_trait_bound] = STATE(1526), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(1420), - [sym_bracketed_type] = STATE(3638), - [sym_lifetime] = STATE(3517), - [sym_array_type] = STATE(1526), - [sym_for_lifetimes] = STATE(1623), - [sym_function_type] = STATE(1526), - [sym_tuple_type] = STATE(1526), - [sym_unit_type] = STATE(1526), - [sym_generic_type] = STATE(1102), - [sym_generic_type_with_turbofish] = STATE(3627), - [sym_bounded_type] = STATE(1526), - [sym_reference_type] = STATE(1526), - [sym_pointer_type] = STATE(1526), - [sym_never_type] = STATE(1526), - [sym_abstract_type] = STATE(1526), - [sym_dynamic_type] = STATE(1526), - [sym_macro_invocation] = STATE(1526), - [sym_scoped_identifier] = STATE(3304), - [sym_scoped_type_identifier] = STATE(1058), + [sym_function_modifiers] = STATE(3591), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2373), + [sym__type] = STATE(2841), + [sym_bracketed_type] = STATE(3474), + [sym_lifetime] = STATE(3727), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1591), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2022), + [sym_generic_type_with_turbofish] = STATE(3764), + [sym_bounded_type] = STATE(2069), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3334), + [sym_scoped_type_identifier] = STATE(1990), [sym_line_comment] = STATE(909), [sym_block_comment] = STATE(909), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(3182), - [anon_sym_LPAREN] = ACTIONS(3184), - [anon_sym_LBRACK] = ACTIONS(3186), - [anon_sym_STAR] = ACTIONS(3190), - [anon_sym_QMARK] = ACTIONS(3192), - [anon_sym_u8] = ACTIONS(3194), - [anon_sym_i8] = ACTIONS(3194), - [anon_sym_u16] = ACTIONS(3194), - [anon_sym_i16] = ACTIONS(3194), - [anon_sym_u32] = ACTIONS(3194), - [anon_sym_i32] = ACTIONS(3194), - [anon_sym_u64] = ACTIONS(3194), - [anon_sym_i64] = ACTIONS(3194), - [anon_sym_u128] = ACTIONS(3194), - [anon_sym_i128] = ACTIONS(3194), - [anon_sym_isize] = ACTIONS(3194), - [anon_sym_usize] = ACTIONS(3194), - [anon_sym_f32] = ACTIONS(3194), - [anon_sym_f64] = ACTIONS(3194), - [anon_sym_bool] = ACTIONS(3194), - [anon_sym_str] = ACTIONS(3194), - [anon_sym_char] = ACTIONS(3194), - [anon_sym_BANG] = ACTIONS(3196), - [anon_sym_AMP] = ACTIONS(3198), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3200), - [anon_sym_SQUOTE] = ACTIONS(3058), - [anon_sym_async] = ACTIONS(1265), - [anon_sym_const] = ACTIONS(1265), - [anon_sym_default] = ACTIONS(3202), - [anon_sym_fn] = ACTIONS(3204), - [anon_sym_for] = ACTIONS(1273), - [anon_sym_gen] = ACTIONS(3206), - [anon_sym_impl] = ACTIONS(3208), - [anon_sym_union] = ACTIONS(3206), - [anon_sym_unsafe] = ACTIONS(1265), - [anon_sym_extern] = ACTIONS(1279), - [anon_sym_dyn] = ACTIONS(3210), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3214), - [sym_super] = ACTIONS(3214), - [sym_crate] = ACTIONS(3214), - [sym_metavariable] = ACTIONS(3216), + [aux_sym_function_modifiers_repeat1] = STATE(2244), + [sym_identifier] = ACTIONS(3064), + [anon_sym_LPAREN] = ACTIONS(1602), + [anon_sym_LBRACK] = ACTIONS(1604), + [anon_sym_STAR] = ACTIONS(1240), + [anon_sym_QMARK] = ACTIONS(1242), + [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_BANG] = ACTIONS(1248), + [anon_sym_AMP] = ACTIONS(1610), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1614), + [anon_sym_SQUOTE] = ACTIONS(3072), + [anon_sym_async] = ACTIONS(1270), + [anon_sym_const] = ACTIONS(1270), + [anon_sym_default] = ACTIONS(1618), + [anon_sym_fn] = ACTIONS(1276), + [anon_sym_for] = ACTIONS(1278), + [anon_sym_gen] = ACTIONS(1620), + [anon_sym_impl] = ACTIONS(1282), + [anon_sym_union] = ACTIONS(1620), + [anon_sym_unsafe] = ACTIONS(1270), + [anon_sym_extern] = ACTIONS(1284), + [anon_sym_safe] = ACTIONS(1270), + [anon_sym_dyn] = ACTIONS(1288), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1624), + [sym_super] = ACTIONS(1624), + [sym_crate] = ACTIONS(1624), + [sym_metavariable] = ACTIONS(1626), }, [STATE(910)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2886), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_function_modifiers] = STATE(3591), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2373), + [sym__type] = STATE(2056), + [sym_bracketed_type] = STATE(3474), + [sym_lifetime] = STATE(3727), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1591), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2022), + [sym_generic_type_with_turbofish] = STATE(3764), + [sym_bounded_type] = STATE(2069), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3334), + [sym_scoped_type_identifier] = STATE(1990), [sym_line_comment] = STATE(910), [sym_block_comment] = STATE(910), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(3052), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1235), - [anon_sym_QMARK] = ACTIONS(1237), - [anon_sym_u8] = ACTIONS(1603), - [anon_sym_i8] = ACTIONS(1603), - [anon_sym_u16] = ACTIONS(1603), - [anon_sym_i16] = ACTIONS(1603), - [anon_sym_u32] = ACTIONS(1603), - [anon_sym_i32] = ACTIONS(1603), - [anon_sym_u64] = ACTIONS(1603), - [anon_sym_i64] = ACTIONS(1603), - [anon_sym_u128] = ACTIONS(1603), - [anon_sym_i128] = ACTIONS(1603), - [anon_sym_isize] = ACTIONS(1603), - [anon_sym_usize] = ACTIONS(1603), - [anon_sym_f32] = ACTIONS(1603), - [anon_sym_f64] = ACTIONS(1603), - [anon_sym_bool] = ACTIONS(1603), - [anon_sym_str] = ACTIONS(1603), - [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1243), - [anon_sym_AMP] = ACTIONS(1605), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3058), - [anon_sym_async] = ACTIONS(1265), - [anon_sym_const] = ACTIONS(1265), - [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1271), - [anon_sym_for] = ACTIONS(1273), - [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1277), - [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1265), - [anon_sym_extern] = ACTIONS(1279), - [anon_sym_dyn] = ACTIONS(1283), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1619), - [sym_super] = ACTIONS(1619), - [sym_crate] = ACTIONS(1619), - [sym_metavariable] = ACTIONS(1621), + [aux_sym_function_modifiers_repeat1] = STATE(2244), + [sym_identifier] = ACTIONS(3064), + [anon_sym_LPAREN] = ACTIONS(1602), + [anon_sym_LBRACK] = ACTIONS(1604), + [anon_sym_STAR] = ACTIONS(1240), + [anon_sym_QMARK] = ACTIONS(1242), + [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_BANG] = ACTIONS(1248), + [anon_sym_AMP] = ACTIONS(1610), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1614), + [anon_sym_SQUOTE] = ACTIONS(3072), + [anon_sym_async] = ACTIONS(1270), + [anon_sym_const] = ACTIONS(1270), + [anon_sym_default] = ACTIONS(1618), + [anon_sym_fn] = ACTIONS(1276), + [anon_sym_for] = ACTIONS(1278), + [anon_sym_gen] = ACTIONS(1620), + [anon_sym_impl] = ACTIONS(1282), + [anon_sym_union] = ACTIONS(1620), + [anon_sym_unsafe] = ACTIONS(1270), + [anon_sym_extern] = ACTIONS(1284), + [anon_sym_safe] = ACTIONS(1270), + [anon_sym_dyn] = ACTIONS(1288), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1624), + [sym_super] = ACTIONS(1624), + [sym_crate] = ACTIONS(1624), + [sym_metavariable] = ACTIONS(1626), }, [STATE(911)] = { - [sym_function_modifiers] = STATE(3455), - [sym_removed_trait_bound] = STATE(1526), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(1422), - [sym_bracketed_type] = STATE(3638), - [sym_lifetime] = STATE(3517), - [sym_array_type] = STATE(1526), - [sym_for_lifetimes] = STATE(1623), - [sym_function_type] = STATE(1526), - [sym_tuple_type] = STATE(1526), - [sym_unit_type] = STATE(1526), - [sym_generic_type] = STATE(1102), - [sym_generic_type_with_turbofish] = STATE(3627), - [sym_bounded_type] = STATE(1526), - [sym_reference_type] = STATE(1526), - [sym_pointer_type] = STATE(1526), - [sym_never_type] = STATE(1526), - [sym_abstract_type] = STATE(1526), - [sym_dynamic_type] = STATE(1526), - [sym_macro_invocation] = STATE(1526), - [sym_scoped_identifier] = STATE(3304), - [sym_scoped_type_identifier] = STATE(1058), + [sym_function_modifiers] = STATE(3591), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2373), + [sym__type] = STATE(2863), + [sym_bracketed_type] = STATE(3474), + [sym_lifetime] = STATE(3727), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1591), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2022), + [sym_generic_type_with_turbofish] = STATE(3764), + [sym_bounded_type] = STATE(2069), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3334), + [sym_scoped_type_identifier] = STATE(1990), [sym_line_comment] = STATE(911), [sym_block_comment] = STATE(911), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(3182), - [anon_sym_LPAREN] = ACTIONS(3184), - [anon_sym_LBRACK] = ACTIONS(3186), - [anon_sym_STAR] = ACTIONS(3190), - [anon_sym_QMARK] = ACTIONS(3192), - [anon_sym_u8] = ACTIONS(3194), - [anon_sym_i8] = ACTIONS(3194), - [anon_sym_u16] = ACTIONS(3194), - [anon_sym_i16] = ACTIONS(3194), - [anon_sym_u32] = ACTIONS(3194), - [anon_sym_i32] = ACTIONS(3194), - [anon_sym_u64] = ACTIONS(3194), - [anon_sym_i64] = ACTIONS(3194), - [anon_sym_u128] = ACTIONS(3194), - [anon_sym_i128] = ACTIONS(3194), - [anon_sym_isize] = ACTIONS(3194), - [anon_sym_usize] = ACTIONS(3194), - [anon_sym_f32] = ACTIONS(3194), - [anon_sym_f64] = ACTIONS(3194), - [anon_sym_bool] = ACTIONS(3194), - [anon_sym_str] = ACTIONS(3194), - [anon_sym_char] = ACTIONS(3194), - [anon_sym_BANG] = ACTIONS(3196), - [anon_sym_AMP] = ACTIONS(3198), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3200), - [anon_sym_SQUOTE] = ACTIONS(3058), - [anon_sym_async] = ACTIONS(1265), - [anon_sym_const] = ACTIONS(1265), - [anon_sym_default] = ACTIONS(3202), - [anon_sym_fn] = ACTIONS(3204), - [anon_sym_for] = ACTIONS(1273), - [anon_sym_gen] = ACTIONS(3206), - [anon_sym_impl] = ACTIONS(3208), - [anon_sym_union] = ACTIONS(3206), - [anon_sym_unsafe] = ACTIONS(1265), - [anon_sym_extern] = ACTIONS(1279), - [anon_sym_dyn] = ACTIONS(3210), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3214), - [sym_super] = ACTIONS(3214), - [sym_crate] = ACTIONS(3214), - [sym_metavariable] = ACTIONS(3216), + [aux_sym_function_modifiers_repeat1] = STATE(2244), + [sym_identifier] = ACTIONS(3064), + [anon_sym_LPAREN] = ACTIONS(1602), + [anon_sym_LBRACK] = ACTIONS(1604), + [anon_sym_STAR] = ACTIONS(1240), + [anon_sym_QMARK] = ACTIONS(1242), + [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_BANG] = ACTIONS(1248), + [anon_sym_AMP] = ACTIONS(1610), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1614), + [anon_sym_SQUOTE] = ACTIONS(3072), + [anon_sym_async] = ACTIONS(1270), + [anon_sym_const] = ACTIONS(1270), + [anon_sym_default] = ACTIONS(1618), + [anon_sym_fn] = ACTIONS(1276), + [anon_sym_for] = ACTIONS(1278), + [anon_sym_gen] = ACTIONS(1620), + [anon_sym_impl] = ACTIONS(1282), + [anon_sym_union] = ACTIONS(1620), + [anon_sym_unsafe] = ACTIONS(1270), + [anon_sym_extern] = ACTIONS(1284), + [anon_sym_safe] = ACTIONS(1270), + [anon_sym_dyn] = ACTIONS(1288), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1624), + [sym_super] = ACTIONS(1624), + [sym_crate] = ACTIONS(1624), + [sym_metavariable] = ACTIONS(1626), }, [STATE(912)] = { - [sym_function_modifiers] = STATE(3455), - [sym_removed_trait_bound] = STATE(1526), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(1423), - [sym_bracketed_type] = STATE(3638), - [sym_lifetime] = STATE(3517), - [sym_array_type] = STATE(1526), - [sym_for_lifetimes] = STATE(1623), - [sym_function_type] = STATE(1526), - [sym_tuple_type] = STATE(1526), - [sym_unit_type] = STATE(1526), - [sym_generic_type] = STATE(1102), - [sym_generic_type_with_turbofish] = STATE(3627), - [sym_bounded_type] = STATE(1526), - [sym_reference_type] = STATE(1526), - [sym_pointer_type] = STATE(1526), - [sym_never_type] = STATE(1526), - [sym_abstract_type] = STATE(1526), - [sym_dynamic_type] = STATE(1526), - [sym_macro_invocation] = STATE(1526), - [sym_scoped_identifier] = STATE(3304), - [sym_scoped_type_identifier] = STATE(1058), + [sym_function_modifiers] = STATE(3591), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2373), + [sym__type] = STATE(2816), + [sym_bracketed_type] = STATE(3474), + [sym_lifetime] = STATE(3727), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1591), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2022), + [sym_generic_type_with_turbofish] = STATE(3764), + [sym_bounded_type] = STATE(2069), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3334), + [sym_scoped_type_identifier] = STATE(1990), [sym_line_comment] = STATE(912), [sym_block_comment] = STATE(912), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(3182), - [anon_sym_LPAREN] = ACTIONS(3184), - [anon_sym_LBRACK] = ACTIONS(3186), - [anon_sym_STAR] = ACTIONS(3190), - [anon_sym_QMARK] = ACTIONS(3192), - [anon_sym_u8] = ACTIONS(3194), - [anon_sym_i8] = ACTIONS(3194), - [anon_sym_u16] = ACTIONS(3194), - [anon_sym_i16] = ACTIONS(3194), - [anon_sym_u32] = ACTIONS(3194), - [anon_sym_i32] = ACTIONS(3194), - [anon_sym_u64] = ACTIONS(3194), - [anon_sym_i64] = ACTIONS(3194), - [anon_sym_u128] = ACTIONS(3194), - [anon_sym_i128] = ACTIONS(3194), - [anon_sym_isize] = ACTIONS(3194), - [anon_sym_usize] = ACTIONS(3194), - [anon_sym_f32] = ACTIONS(3194), - [anon_sym_f64] = ACTIONS(3194), - [anon_sym_bool] = ACTIONS(3194), - [anon_sym_str] = ACTIONS(3194), - [anon_sym_char] = ACTIONS(3194), - [anon_sym_BANG] = ACTIONS(3196), - [anon_sym_AMP] = ACTIONS(3198), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3200), - [anon_sym_SQUOTE] = ACTIONS(3058), - [anon_sym_async] = ACTIONS(1265), - [anon_sym_const] = ACTIONS(1265), - [anon_sym_default] = ACTIONS(3202), - [anon_sym_fn] = ACTIONS(3204), - [anon_sym_for] = ACTIONS(1273), - [anon_sym_gen] = ACTIONS(3206), - [anon_sym_impl] = ACTIONS(3208), - [anon_sym_union] = ACTIONS(3206), - [anon_sym_unsafe] = ACTIONS(1265), - [anon_sym_extern] = ACTIONS(1279), - [anon_sym_dyn] = ACTIONS(3210), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3214), - [sym_super] = ACTIONS(3214), - [sym_crate] = ACTIONS(3214), - [sym_metavariable] = ACTIONS(3216), + [aux_sym_function_modifiers_repeat1] = STATE(2244), + [sym_identifier] = ACTIONS(3064), + [anon_sym_LPAREN] = ACTIONS(1602), + [anon_sym_LBRACK] = ACTIONS(1604), + [anon_sym_STAR] = ACTIONS(1240), + [anon_sym_QMARK] = ACTIONS(1242), + [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_BANG] = ACTIONS(1248), + [anon_sym_AMP] = ACTIONS(1610), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1614), + [anon_sym_SQUOTE] = ACTIONS(3072), + [anon_sym_async] = ACTIONS(1270), + [anon_sym_const] = ACTIONS(1270), + [anon_sym_default] = ACTIONS(1618), + [anon_sym_fn] = ACTIONS(1276), + [anon_sym_for] = ACTIONS(1278), + [anon_sym_gen] = ACTIONS(1620), + [anon_sym_impl] = ACTIONS(1282), + [anon_sym_union] = ACTIONS(1620), + [anon_sym_unsafe] = ACTIONS(1270), + [anon_sym_extern] = ACTIONS(1284), + [anon_sym_safe] = ACTIONS(1270), + [anon_sym_dyn] = ACTIONS(1288), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1624), + [sym_super] = ACTIONS(1624), + [sym_crate] = ACTIONS(1624), + [sym_metavariable] = ACTIONS(1626), }, [STATE(913)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2376), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_function_modifiers] = STATE(3591), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2373), + [sym__type] = STATE(2758), + [sym_bracketed_type] = STATE(3474), + [sym_lifetime] = STATE(3727), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1591), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2022), + [sym_generic_type_with_turbofish] = STATE(3764), + [sym_bounded_type] = STATE(2069), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3334), + [sym_scoped_type_identifier] = STATE(1990), [sym_line_comment] = STATE(913), [sym_block_comment] = STATE(913), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(3052), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1235), - [anon_sym_QMARK] = ACTIONS(1237), - [anon_sym_u8] = ACTIONS(1603), - [anon_sym_i8] = ACTIONS(1603), - [anon_sym_u16] = ACTIONS(1603), - [anon_sym_i16] = ACTIONS(1603), - [anon_sym_u32] = ACTIONS(1603), - [anon_sym_i32] = ACTIONS(1603), - [anon_sym_u64] = ACTIONS(1603), - [anon_sym_i64] = ACTIONS(1603), - [anon_sym_u128] = ACTIONS(1603), - [anon_sym_i128] = ACTIONS(1603), - [anon_sym_isize] = ACTIONS(1603), - [anon_sym_usize] = ACTIONS(1603), - [anon_sym_f32] = ACTIONS(1603), - [anon_sym_f64] = ACTIONS(1603), - [anon_sym_bool] = ACTIONS(1603), - [anon_sym_str] = ACTIONS(1603), - [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1243), - [anon_sym_AMP] = ACTIONS(1605), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3058), - [anon_sym_async] = ACTIONS(1265), - [anon_sym_const] = ACTIONS(1265), - [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1271), - [anon_sym_for] = ACTIONS(1273), - [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1277), - [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1265), - [anon_sym_extern] = ACTIONS(1279), - [anon_sym_dyn] = ACTIONS(1283), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1619), - [sym_super] = ACTIONS(1619), - [sym_crate] = ACTIONS(1619), - [sym_metavariable] = ACTIONS(1621), + [aux_sym_function_modifiers_repeat1] = STATE(2244), + [sym_identifier] = ACTIONS(3064), + [anon_sym_LPAREN] = ACTIONS(1602), + [anon_sym_LBRACK] = ACTIONS(1604), + [anon_sym_STAR] = ACTIONS(1240), + [anon_sym_QMARK] = ACTIONS(1242), + [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_BANG] = ACTIONS(1248), + [anon_sym_AMP] = ACTIONS(1610), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1614), + [anon_sym_SQUOTE] = ACTIONS(3072), + [anon_sym_async] = ACTIONS(1270), + [anon_sym_const] = ACTIONS(1270), + [anon_sym_default] = ACTIONS(1618), + [anon_sym_fn] = ACTIONS(1276), + [anon_sym_for] = ACTIONS(1278), + [anon_sym_gen] = ACTIONS(1620), + [anon_sym_impl] = ACTIONS(1282), + [anon_sym_union] = ACTIONS(1620), + [anon_sym_unsafe] = ACTIONS(1270), + [anon_sym_extern] = ACTIONS(1284), + [anon_sym_safe] = ACTIONS(1270), + [anon_sym_dyn] = ACTIONS(1288), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1624), + [sym_super] = ACTIONS(1624), + [sym_crate] = ACTIONS(1624), + [sym_metavariable] = ACTIONS(1626), }, [STATE(914)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2058), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_function_modifiers] = STATE(3591), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2373), + [sym__type] = STATE(2759), + [sym_bracketed_type] = STATE(3474), + [sym_lifetime] = STATE(3727), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1591), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2022), + [sym_generic_type_with_turbofish] = STATE(3764), + [sym_bounded_type] = STATE(2069), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3334), + [sym_scoped_type_identifier] = STATE(1990), [sym_line_comment] = STATE(914), [sym_block_comment] = STATE(914), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(3052), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1235), - [anon_sym_QMARK] = ACTIONS(1237), - [anon_sym_u8] = ACTIONS(1603), - [anon_sym_i8] = ACTIONS(1603), - [anon_sym_u16] = ACTIONS(1603), - [anon_sym_i16] = ACTIONS(1603), - [anon_sym_u32] = ACTIONS(1603), - [anon_sym_i32] = ACTIONS(1603), - [anon_sym_u64] = ACTIONS(1603), - [anon_sym_i64] = ACTIONS(1603), - [anon_sym_u128] = ACTIONS(1603), - [anon_sym_i128] = ACTIONS(1603), - [anon_sym_isize] = ACTIONS(1603), - [anon_sym_usize] = ACTIONS(1603), - [anon_sym_f32] = ACTIONS(1603), - [anon_sym_f64] = ACTIONS(1603), - [anon_sym_bool] = ACTIONS(1603), - [anon_sym_str] = ACTIONS(1603), - [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1243), - [anon_sym_AMP] = ACTIONS(1605), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3058), - [anon_sym_async] = ACTIONS(1265), - [anon_sym_const] = ACTIONS(1265), - [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1271), - [anon_sym_for] = ACTIONS(1273), - [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1277), - [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1265), - [anon_sym_extern] = ACTIONS(1279), - [anon_sym_dyn] = ACTIONS(1283), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1619), - [sym_super] = ACTIONS(1619), - [sym_crate] = ACTIONS(1619), - [sym_metavariable] = ACTIONS(1621), + [aux_sym_function_modifiers_repeat1] = STATE(2244), + [sym_identifier] = ACTIONS(3064), + [anon_sym_LPAREN] = ACTIONS(1602), + [anon_sym_LBRACK] = ACTIONS(1604), + [anon_sym_STAR] = ACTIONS(1240), + [anon_sym_QMARK] = ACTIONS(1242), + [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_BANG] = ACTIONS(1248), + [anon_sym_AMP] = ACTIONS(1610), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1614), + [anon_sym_SQUOTE] = ACTIONS(3072), + [anon_sym_async] = ACTIONS(1270), + [anon_sym_const] = ACTIONS(1270), + [anon_sym_default] = ACTIONS(1618), + [anon_sym_fn] = ACTIONS(1276), + [anon_sym_for] = ACTIONS(1278), + [anon_sym_gen] = ACTIONS(1620), + [anon_sym_impl] = ACTIONS(1282), + [anon_sym_union] = ACTIONS(1620), + [anon_sym_unsafe] = ACTIONS(1270), + [anon_sym_extern] = ACTIONS(1284), + [anon_sym_safe] = ACTIONS(1270), + [anon_sym_dyn] = ACTIONS(1288), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1624), + [sym_super] = ACTIONS(1624), + [sym_crate] = ACTIONS(1624), + [sym_metavariable] = ACTIONS(1626), }, [STATE(915)] = { - [sym_function_modifiers] = STATE(3455), - [sym_removed_trait_bound] = STATE(1526), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(1426), - [sym_bracketed_type] = STATE(3638), - [sym_lifetime] = STATE(3517), - [sym_array_type] = STATE(1526), - [sym_for_lifetimes] = STATE(1623), - [sym_function_type] = STATE(1526), - [sym_tuple_type] = STATE(1526), - [sym_unit_type] = STATE(1526), - [sym_generic_type] = STATE(1102), - [sym_generic_type_with_turbofish] = STATE(3627), - [sym_bounded_type] = STATE(1526), - [sym_reference_type] = STATE(1526), - [sym_pointer_type] = STATE(1526), - [sym_never_type] = STATE(1526), - [sym_abstract_type] = STATE(1526), - [sym_dynamic_type] = STATE(1526), - [sym_macro_invocation] = STATE(1526), - [sym_scoped_identifier] = STATE(3304), - [sym_scoped_type_identifier] = STATE(1058), + [sym_function_modifiers] = STATE(3591), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2373), + [sym__type] = STATE(3138), + [sym_bracketed_type] = STATE(3474), + [sym_lifetime] = STATE(3727), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1591), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2022), + [sym_generic_type_with_turbofish] = STATE(3764), + [sym_bounded_type] = STATE(2069), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3334), + [sym_scoped_type_identifier] = STATE(1990), [sym_line_comment] = STATE(915), [sym_block_comment] = STATE(915), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(3182), - [anon_sym_LPAREN] = ACTIONS(3184), - [anon_sym_LBRACK] = ACTIONS(3186), - [anon_sym_STAR] = ACTIONS(3190), - [anon_sym_QMARK] = ACTIONS(3192), - [anon_sym_u8] = ACTIONS(3194), - [anon_sym_i8] = ACTIONS(3194), - [anon_sym_u16] = ACTIONS(3194), - [anon_sym_i16] = ACTIONS(3194), - [anon_sym_u32] = ACTIONS(3194), - [anon_sym_i32] = ACTIONS(3194), - [anon_sym_u64] = ACTIONS(3194), - [anon_sym_i64] = ACTIONS(3194), - [anon_sym_u128] = ACTIONS(3194), - [anon_sym_i128] = ACTIONS(3194), - [anon_sym_isize] = ACTIONS(3194), - [anon_sym_usize] = ACTIONS(3194), - [anon_sym_f32] = ACTIONS(3194), - [anon_sym_f64] = ACTIONS(3194), - [anon_sym_bool] = ACTIONS(3194), - [anon_sym_str] = ACTIONS(3194), - [anon_sym_char] = ACTIONS(3194), - [anon_sym_BANG] = ACTIONS(3196), - [anon_sym_AMP] = ACTIONS(3198), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3200), - [anon_sym_SQUOTE] = ACTIONS(3058), - [anon_sym_async] = ACTIONS(1265), - [anon_sym_const] = ACTIONS(1265), - [anon_sym_default] = ACTIONS(3202), - [anon_sym_fn] = ACTIONS(3204), - [anon_sym_for] = ACTIONS(1273), - [anon_sym_gen] = ACTIONS(3206), - [anon_sym_impl] = ACTIONS(3208), - [anon_sym_union] = ACTIONS(3206), - [anon_sym_unsafe] = ACTIONS(1265), - [anon_sym_extern] = ACTIONS(1279), - [anon_sym_dyn] = ACTIONS(3210), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3214), - [sym_super] = ACTIONS(3214), - [sym_crate] = ACTIONS(3214), - [sym_metavariable] = ACTIONS(3216), + [aux_sym_function_modifiers_repeat1] = STATE(2244), + [sym_identifier] = ACTIONS(3064), + [anon_sym_LPAREN] = ACTIONS(1602), + [anon_sym_LBRACK] = ACTIONS(1604), + [anon_sym_STAR] = ACTIONS(1240), + [anon_sym_QMARK] = ACTIONS(1242), + [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_BANG] = ACTIONS(1248), + [anon_sym_AMP] = ACTIONS(1610), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1614), + [anon_sym_SQUOTE] = ACTIONS(3072), + [anon_sym_async] = ACTIONS(1270), + [anon_sym_const] = ACTIONS(1270), + [anon_sym_default] = ACTIONS(1618), + [anon_sym_fn] = ACTIONS(1276), + [anon_sym_for] = ACTIONS(1278), + [anon_sym_gen] = ACTIONS(1620), + [anon_sym_impl] = ACTIONS(1282), + [anon_sym_union] = ACTIONS(1620), + [anon_sym_unsafe] = ACTIONS(1270), + [anon_sym_extern] = ACTIONS(1284), + [anon_sym_safe] = ACTIONS(1270), + [anon_sym_dyn] = ACTIONS(1288), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1624), + [sym_super] = ACTIONS(1624), + [sym_crate] = ACTIONS(1624), + [sym_metavariable] = ACTIONS(1626), }, [STATE(916)] = { - [sym_function_modifiers] = STATE(3455), - [sym_removed_trait_bound] = STATE(1526), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(1484), - [sym_bracketed_type] = STATE(3638), - [sym_lifetime] = STATE(3517), - [sym_array_type] = STATE(1526), - [sym_for_lifetimes] = STATE(1623), - [sym_function_type] = STATE(1526), - [sym_tuple_type] = STATE(1526), - [sym_unit_type] = STATE(1526), - [sym_generic_type] = STATE(1102), - [sym_generic_type_with_turbofish] = STATE(3627), - [sym_bounded_type] = STATE(1526), - [sym_reference_type] = STATE(1526), - [sym_pointer_type] = STATE(1526), - [sym_never_type] = STATE(1526), - [sym_abstract_type] = STATE(1526), - [sym_dynamic_type] = STATE(1526), - [sym_macro_invocation] = STATE(1526), - [sym_scoped_identifier] = STATE(3304), - [sym_scoped_type_identifier] = STATE(1058), + [sym_function_modifiers] = STATE(3591), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2373), + [sym__type] = STATE(3072), + [sym_bracketed_type] = STATE(3474), + [sym_lifetime] = STATE(3727), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1591), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2022), + [sym_generic_type_with_turbofish] = STATE(3764), + [sym_bounded_type] = STATE(2069), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3334), + [sym_scoped_type_identifier] = STATE(1990), [sym_line_comment] = STATE(916), [sym_block_comment] = STATE(916), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(3182), - [anon_sym_LPAREN] = ACTIONS(3184), - [anon_sym_LBRACK] = ACTIONS(3186), - [anon_sym_STAR] = ACTIONS(3190), - [anon_sym_QMARK] = ACTIONS(3192), - [anon_sym_u8] = ACTIONS(3194), - [anon_sym_i8] = ACTIONS(3194), - [anon_sym_u16] = ACTIONS(3194), - [anon_sym_i16] = ACTIONS(3194), - [anon_sym_u32] = ACTIONS(3194), - [anon_sym_i32] = ACTIONS(3194), - [anon_sym_u64] = ACTIONS(3194), - [anon_sym_i64] = ACTIONS(3194), - [anon_sym_u128] = ACTIONS(3194), - [anon_sym_i128] = ACTIONS(3194), - [anon_sym_isize] = ACTIONS(3194), - [anon_sym_usize] = ACTIONS(3194), - [anon_sym_f32] = ACTIONS(3194), - [anon_sym_f64] = ACTIONS(3194), - [anon_sym_bool] = ACTIONS(3194), - [anon_sym_str] = ACTIONS(3194), - [anon_sym_char] = ACTIONS(3194), - [anon_sym_BANG] = ACTIONS(3196), - [anon_sym_AMP] = ACTIONS(3198), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3200), - [anon_sym_SQUOTE] = ACTIONS(3058), - [anon_sym_async] = ACTIONS(1265), - [anon_sym_const] = ACTIONS(1265), - [anon_sym_default] = ACTIONS(3202), - [anon_sym_fn] = ACTIONS(3204), - [anon_sym_for] = ACTIONS(1273), - [anon_sym_gen] = ACTIONS(3206), - [anon_sym_impl] = ACTIONS(3208), - [anon_sym_union] = ACTIONS(3206), - [anon_sym_unsafe] = ACTIONS(1265), - [anon_sym_extern] = ACTIONS(1279), - [anon_sym_dyn] = ACTIONS(3210), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3214), - [sym_super] = ACTIONS(3214), - [sym_crate] = ACTIONS(3214), - [sym_metavariable] = ACTIONS(3216), + [aux_sym_function_modifiers_repeat1] = STATE(2244), + [sym_identifier] = ACTIONS(3064), + [anon_sym_LPAREN] = ACTIONS(1602), + [anon_sym_LBRACK] = ACTIONS(1604), + [anon_sym_STAR] = ACTIONS(1240), + [anon_sym_QMARK] = ACTIONS(1242), + [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_BANG] = ACTIONS(1248), + [anon_sym_AMP] = ACTIONS(1610), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1614), + [anon_sym_SQUOTE] = ACTIONS(3072), + [anon_sym_async] = ACTIONS(1270), + [anon_sym_const] = ACTIONS(1270), + [anon_sym_default] = ACTIONS(1618), + [anon_sym_fn] = ACTIONS(1276), + [anon_sym_for] = ACTIONS(1278), + [anon_sym_gen] = ACTIONS(1620), + [anon_sym_impl] = ACTIONS(1282), + [anon_sym_union] = ACTIONS(1620), + [anon_sym_unsafe] = ACTIONS(1270), + [anon_sym_extern] = ACTIONS(1284), + [anon_sym_safe] = ACTIONS(1270), + [anon_sym_dyn] = ACTIONS(1288), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1624), + [sym_super] = ACTIONS(1624), + [sym_crate] = ACTIONS(1624), + [sym_metavariable] = ACTIONS(1626), }, [STATE(917)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2400), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_function_modifiers] = STATE(3591), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2373), + [sym__type] = STATE(2296), + [sym_bracketed_type] = STATE(3474), + [sym_lifetime] = STATE(3727), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1591), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2022), + [sym_generic_type_with_turbofish] = STATE(3764), + [sym_bounded_type] = STATE(2069), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3334), + [sym_scoped_type_identifier] = STATE(1990), [sym_line_comment] = STATE(917), [sym_block_comment] = STATE(917), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(3052), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1235), - [anon_sym_QMARK] = ACTIONS(1237), - [anon_sym_u8] = ACTIONS(1603), - [anon_sym_i8] = ACTIONS(1603), - [anon_sym_u16] = ACTIONS(1603), - [anon_sym_i16] = ACTIONS(1603), - [anon_sym_u32] = ACTIONS(1603), - [anon_sym_i32] = ACTIONS(1603), - [anon_sym_u64] = ACTIONS(1603), - [anon_sym_i64] = ACTIONS(1603), - [anon_sym_u128] = ACTIONS(1603), - [anon_sym_i128] = ACTIONS(1603), - [anon_sym_isize] = ACTIONS(1603), - [anon_sym_usize] = ACTIONS(1603), - [anon_sym_f32] = ACTIONS(1603), - [anon_sym_f64] = ACTIONS(1603), - [anon_sym_bool] = ACTIONS(1603), - [anon_sym_str] = ACTIONS(1603), - [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1243), - [anon_sym_AMP] = ACTIONS(1605), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3058), - [anon_sym_async] = ACTIONS(1265), - [anon_sym_const] = ACTIONS(1265), - [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1271), - [anon_sym_for] = ACTIONS(1273), - [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1277), - [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1265), - [anon_sym_extern] = ACTIONS(1279), - [anon_sym_dyn] = ACTIONS(1283), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1619), - [sym_super] = ACTIONS(1619), - [sym_crate] = ACTIONS(1619), - [sym_metavariable] = ACTIONS(1621), + [aux_sym_function_modifiers_repeat1] = STATE(2244), + [sym_identifier] = ACTIONS(3064), + [anon_sym_LPAREN] = ACTIONS(1602), + [anon_sym_LBRACK] = ACTIONS(1604), + [anon_sym_STAR] = ACTIONS(1240), + [anon_sym_QMARK] = ACTIONS(1242), + [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_BANG] = ACTIONS(1248), + [anon_sym_AMP] = ACTIONS(1610), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1614), + [anon_sym_SQUOTE] = ACTIONS(3072), + [anon_sym_async] = ACTIONS(1270), + [anon_sym_const] = ACTIONS(1270), + [anon_sym_default] = ACTIONS(1618), + [anon_sym_fn] = ACTIONS(1276), + [anon_sym_for] = ACTIONS(1278), + [anon_sym_gen] = ACTIONS(1620), + [anon_sym_impl] = ACTIONS(1282), + [anon_sym_union] = ACTIONS(1620), + [anon_sym_unsafe] = ACTIONS(1270), + [anon_sym_extern] = ACTIONS(1284), + [anon_sym_safe] = ACTIONS(1270), + [anon_sym_dyn] = ACTIONS(1288), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1624), + [sym_super] = ACTIONS(1624), + [sym_crate] = ACTIONS(1624), + [sym_metavariable] = ACTIONS(1626), }, [STATE(918)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2424), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_function_modifiers] = STATE(3591), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2373), + [sym__type] = STATE(2051), + [sym_bracketed_type] = STATE(3474), + [sym_lifetime] = STATE(3727), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1591), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2022), + [sym_generic_type_with_turbofish] = STATE(3764), + [sym_bounded_type] = STATE(2069), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3334), + [sym_scoped_type_identifier] = STATE(1990), [sym_line_comment] = STATE(918), [sym_block_comment] = STATE(918), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(3052), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1235), - [anon_sym_QMARK] = ACTIONS(1237), - [anon_sym_u8] = ACTIONS(1603), - [anon_sym_i8] = ACTIONS(1603), - [anon_sym_u16] = ACTIONS(1603), - [anon_sym_i16] = ACTIONS(1603), - [anon_sym_u32] = ACTIONS(1603), - [anon_sym_i32] = ACTIONS(1603), - [anon_sym_u64] = ACTIONS(1603), - [anon_sym_i64] = ACTIONS(1603), - [anon_sym_u128] = ACTIONS(1603), - [anon_sym_i128] = ACTIONS(1603), - [anon_sym_isize] = ACTIONS(1603), - [anon_sym_usize] = ACTIONS(1603), - [anon_sym_f32] = ACTIONS(1603), - [anon_sym_f64] = ACTIONS(1603), - [anon_sym_bool] = ACTIONS(1603), - [anon_sym_str] = ACTIONS(1603), - [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1243), - [anon_sym_AMP] = ACTIONS(1605), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3058), - [anon_sym_async] = ACTIONS(1265), - [anon_sym_const] = ACTIONS(1265), - [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1271), - [anon_sym_for] = ACTIONS(1273), - [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1277), - [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1265), - [anon_sym_extern] = ACTIONS(1279), - [anon_sym_dyn] = ACTIONS(1283), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1619), - [sym_super] = ACTIONS(1619), - [sym_crate] = ACTIONS(1619), - [sym_metavariable] = ACTIONS(1621), + [aux_sym_function_modifiers_repeat1] = STATE(2244), + [sym_identifier] = ACTIONS(3064), + [anon_sym_LPAREN] = ACTIONS(1602), + [anon_sym_LBRACK] = ACTIONS(1604), + [anon_sym_STAR] = ACTIONS(1240), + [anon_sym_QMARK] = ACTIONS(1242), + [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_BANG] = ACTIONS(1248), + [anon_sym_AMP] = ACTIONS(1610), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1614), + [anon_sym_SQUOTE] = ACTIONS(3072), + [anon_sym_async] = ACTIONS(1270), + [anon_sym_const] = ACTIONS(1270), + [anon_sym_default] = ACTIONS(1618), + [anon_sym_fn] = ACTIONS(1276), + [anon_sym_for] = ACTIONS(1278), + [anon_sym_gen] = ACTIONS(1620), + [anon_sym_impl] = ACTIONS(1282), + [anon_sym_union] = ACTIONS(1620), + [anon_sym_unsafe] = ACTIONS(1270), + [anon_sym_extern] = ACTIONS(1284), + [anon_sym_safe] = ACTIONS(1270), + [anon_sym_dyn] = ACTIONS(1288), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1624), + [sym_super] = ACTIONS(1624), + [sym_crate] = ACTIONS(1624), + [sym_metavariable] = ACTIONS(1626), }, [STATE(919)] = { - [sym_function_modifiers] = STATE(3595), - [sym_removed_trait_bound] = STATE(1787), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(1761), - [sym_bracketed_type] = STATE(3654), - [sym_lifetime] = STATE(3732), - [sym_array_type] = STATE(1787), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(1787), - [sym_tuple_type] = STATE(1787), - [sym_unit_type] = STATE(1787), - [sym_generic_type] = STATE(1646), - [sym_generic_type_with_turbofish] = STATE(3645), - [sym_bounded_type] = STATE(1787), - [sym_reference_type] = STATE(1787), - [sym_pointer_type] = STATE(1787), - [sym_never_type] = STATE(1787), - [sym_abstract_type] = STATE(1787), - [sym_dynamic_type] = STATE(1787), - [sym_macro_invocation] = STATE(1787), - [sym_scoped_identifier] = STATE(3373), - [sym_scoped_type_identifier] = STATE(1590), + [sym_function_modifiers] = STATE(3591), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2373), + [sym__type] = STATE(2680), + [sym_bracketed_type] = STATE(3474), + [sym_lifetime] = STATE(3727), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1591), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2022), + [sym_generic_type_with_turbofish] = STATE(3764), + [sym_bounded_type] = STATE(2069), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3334), + [sym_scoped_type_identifier] = STATE(1990), [sym_line_comment] = STATE(919), [sym_block_comment] = STATE(919), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(3144), - [anon_sym_LPAREN] = ACTIONS(3146), - [anon_sym_LBRACK] = ACTIONS(3148), - [anon_sym_STAR] = ACTIONS(3152), - [anon_sym_QMARK] = ACTIONS(3154), - [anon_sym_u8] = ACTIONS(3156), - [anon_sym_i8] = ACTIONS(3156), - [anon_sym_u16] = ACTIONS(3156), - [anon_sym_i16] = ACTIONS(3156), - [anon_sym_u32] = ACTIONS(3156), - [anon_sym_i32] = ACTIONS(3156), - [anon_sym_u64] = ACTIONS(3156), - [anon_sym_i64] = ACTIONS(3156), - [anon_sym_u128] = ACTIONS(3156), - [anon_sym_i128] = ACTIONS(3156), - [anon_sym_isize] = ACTIONS(3156), - [anon_sym_usize] = ACTIONS(3156), - [anon_sym_f32] = ACTIONS(3156), - [anon_sym_f64] = ACTIONS(3156), - [anon_sym_bool] = ACTIONS(3156), - [anon_sym_str] = ACTIONS(3156), - [anon_sym_char] = ACTIONS(3156), - [anon_sym_BANG] = ACTIONS(3158), - [anon_sym_AMP] = ACTIONS(3160), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3162), - [anon_sym_SQUOTE] = ACTIONS(3058), - [anon_sym_async] = ACTIONS(1265), - [anon_sym_const] = ACTIONS(1265), - [anon_sym_default] = ACTIONS(3164), - [anon_sym_fn] = ACTIONS(3166), - [anon_sym_for] = ACTIONS(1273), - [anon_sym_gen] = ACTIONS(3168), - [anon_sym_impl] = ACTIONS(3170), - [anon_sym_union] = ACTIONS(3168), - [anon_sym_unsafe] = ACTIONS(1265), - [anon_sym_extern] = ACTIONS(1279), - [anon_sym_dyn] = ACTIONS(3172), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3176), - [sym_super] = ACTIONS(3176), - [sym_crate] = ACTIONS(3176), - [sym_metavariable] = ACTIONS(3178), + [aux_sym_function_modifiers_repeat1] = STATE(2244), + [sym_identifier] = ACTIONS(3064), + [anon_sym_LPAREN] = ACTIONS(1602), + [anon_sym_LBRACK] = ACTIONS(1604), + [anon_sym_STAR] = ACTIONS(1240), + [anon_sym_QMARK] = ACTIONS(1242), + [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_BANG] = ACTIONS(1248), + [anon_sym_AMP] = ACTIONS(1610), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1614), + [anon_sym_SQUOTE] = ACTIONS(3072), + [anon_sym_async] = ACTIONS(1270), + [anon_sym_const] = ACTIONS(1270), + [anon_sym_default] = ACTIONS(1618), + [anon_sym_fn] = ACTIONS(1276), + [anon_sym_for] = ACTIONS(1278), + [anon_sym_gen] = ACTIONS(1620), + [anon_sym_impl] = ACTIONS(1282), + [anon_sym_union] = ACTIONS(1620), + [anon_sym_unsafe] = ACTIONS(1270), + [anon_sym_extern] = ACTIONS(1284), + [anon_sym_safe] = ACTIONS(1270), + [anon_sym_dyn] = ACTIONS(1288), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1624), + [sym_super] = ACTIONS(1624), + [sym_crate] = ACTIONS(1624), + [sym_metavariable] = ACTIONS(1626), }, [STATE(920)] = { - [sym_function_modifiers] = STATE(3595), - [sym_removed_trait_bound] = STATE(1787), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(1762), - [sym_bracketed_type] = STATE(3654), - [sym_lifetime] = STATE(3732), - [sym_array_type] = STATE(1787), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(1787), - [sym_tuple_type] = STATE(1787), - [sym_unit_type] = STATE(1787), - [sym_generic_type] = STATE(1646), - [sym_generic_type_with_turbofish] = STATE(3645), - [sym_bounded_type] = STATE(1787), - [sym_reference_type] = STATE(1787), - [sym_pointer_type] = STATE(1787), - [sym_never_type] = STATE(1787), - [sym_abstract_type] = STATE(1787), - [sym_dynamic_type] = STATE(1787), - [sym_macro_invocation] = STATE(1787), - [sym_scoped_identifier] = STATE(3373), - [sym_scoped_type_identifier] = STATE(1590), + [sym_function_modifiers] = STATE(3591), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2373), + [sym__type] = STATE(2469), + [sym_bracketed_type] = STATE(3474), + [sym_lifetime] = STATE(3727), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1591), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2022), + [sym_generic_type_with_turbofish] = STATE(3764), + [sym_bounded_type] = STATE(2069), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3334), + [sym_scoped_type_identifier] = STATE(1990), [sym_line_comment] = STATE(920), [sym_block_comment] = STATE(920), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(3144), - [anon_sym_LPAREN] = ACTIONS(3146), - [anon_sym_LBRACK] = ACTIONS(3148), - [anon_sym_STAR] = ACTIONS(3152), - [anon_sym_QMARK] = ACTIONS(3154), - [anon_sym_u8] = ACTIONS(3156), - [anon_sym_i8] = ACTIONS(3156), - [anon_sym_u16] = ACTIONS(3156), - [anon_sym_i16] = ACTIONS(3156), - [anon_sym_u32] = ACTIONS(3156), - [anon_sym_i32] = ACTIONS(3156), - [anon_sym_u64] = ACTIONS(3156), - [anon_sym_i64] = ACTIONS(3156), - [anon_sym_u128] = ACTIONS(3156), - [anon_sym_i128] = ACTIONS(3156), - [anon_sym_isize] = ACTIONS(3156), - [anon_sym_usize] = ACTIONS(3156), - [anon_sym_f32] = ACTIONS(3156), - [anon_sym_f64] = ACTIONS(3156), - [anon_sym_bool] = ACTIONS(3156), - [anon_sym_str] = ACTIONS(3156), - [anon_sym_char] = ACTIONS(3156), - [anon_sym_BANG] = ACTIONS(3158), - [anon_sym_AMP] = ACTIONS(3160), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3162), - [anon_sym_SQUOTE] = ACTIONS(3058), - [anon_sym_async] = ACTIONS(1265), - [anon_sym_const] = ACTIONS(1265), - [anon_sym_default] = ACTIONS(3164), - [anon_sym_fn] = ACTIONS(3166), - [anon_sym_for] = ACTIONS(1273), - [anon_sym_gen] = ACTIONS(3168), - [anon_sym_impl] = ACTIONS(3170), - [anon_sym_union] = ACTIONS(3168), - [anon_sym_unsafe] = ACTIONS(1265), - [anon_sym_extern] = ACTIONS(1279), - [anon_sym_dyn] = ACTIONS(3172), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3176), - [sym_super] = ACTIONS(3176), - [sym_crate] = ACTIONS(3176), - [sym_metavariable] = ACTIONS(3178), + [aux_sym_function_modifiers_repeat1] = STATE(2244), + [sym_identifier] = ACTIONS(3064), + [anon_sym_LPAREN] = ACTIONS(1602), + [anon_sym_LBRACK] = ACTIONS(1604), + [anon_sym_STAR] = ACTIONS(1240), + [anon_sym_QMARK] = ACTIONS(1242), + [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_BANG] = ACTIONS(1248), + [anon_sym_AMP] = ACTIONS(1610), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1614), + [anon_sym_SQUOTE] = ACTIONS(3072), + [anon_sym_async] = ACTIONS(1270), + [anon_sym_const] = ACTIONS(1270), + [anon_sym_default] = ACTIONS(1618), + [anon_sym_fn] = ACTIONS(1276), + [anon_sym_for] = ACTIONS(1278), + [anon_sym_gen] = ACTIONS(1620), + [anon_sym_impl] = ACTIONS(1282), + [anon_sym_union] = ACTIONS(1620), + [anon_sym_unsafe] = ACTIONS(1270), + [anon_sym_extern] = ACTIONS(1284), + [anon_sym_safe] = ACTIONS(1270), + [anon_sym_dyn] = ACTIONS(1288), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1624), + [sym_super] = ACTIONS(1624), + [sym_crate] = ACTIONS(1624), + [sym_metavariable] = ACTIONS(1626), }, [STATE(921)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2244), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_function_modifiers] = STATE(3591), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2373), + [sym__type] = STATE(2752), + [sym_bracketed_type] = STATE(3474), + [sym_lifetime] = STATE(3727), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1591), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2022), + [sym_generic_type_with_turbofish] = STATE(3764), + [sym_bounded_type] = STATE(2069), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3334), + [sym_scoped_type_identifier] = STATE(1990), [sym_line_comment] = STATE(921), [sym_block_comment] = STATE(921), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(3052), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1235), - [anon_sym_QMARK] = ACTIONS(1237), - [anon_sym_u8] = ACTIONS(1603), - [anon_sym_i8] = ACTIONS(1603), - [anon_sym_u16] = ACTIONS(1603), - [anon_sym_i16] = ACTIONS(1603), - [anon_sym_u32] = ACTIONS(1603), - [anon_sym_i32] = ACTIONS(1603), - [anon_sym_u64] = ACTIONS(1603), - [anon_sym_i64] = ACTIONS(1603), - [anon_sym_u128] = ACTIONS(1603), - [anon_sym_i128] = ACTIONS(1603), - [anon_sym_isize] = ACTIONS(1603), - [anon_sym_usize] = ACTIONS(1603), - [anon_sym_f32] = ACTIONS(1603), - [anon_sym_f64] = ACTIONS(1603), - [anon_sym_bool] = ACTIONS(1603), - [anon_sym_str] = ACTIONS(1603), - [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1243), - [anon_sym_AMP] = ACTIONS(1605), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3058), - [anon_sym_async] = ACTIONS(1265), - [anon_sym_const] = ACTIONS(1265), - [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1271), - [anon_sym_for] = ACTIONS(1273), - [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1277), - [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1265), - [anon_sym_extern] = ACTIONS(1279), - [anon_sym_dyn] = ACTIONS(1283), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1619), - [sym_super] = ACTIONS(1619), - [sym_crate] = ACTIONS(1619), - [sym_metavariable] = ACTIONS(1621), + [aux_sym_function_modifiers_repeat1] = STATE(2244), + [sym_identifier] = ACTIONS(3064), + [anon_sym_LPAREN] = ACTIONS(1602), + [anon_sym_LBRACK] = ACTIONS(1604), + [anon_sym_STAR] = ACTIONS(1240), + [anon_sym_QMARK] = ACTIONS(1242), + [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_BANG] = ACTIONS(1248), + [anon_sym_AMP] = ACTIONS(1610), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1614), + [anon_sym_SQUOTE] = ACTIONS(3072), + [anon_sym_async] = ACTIONS(1270), + [anon_sym_const] = ACTIONS(1270), + [anon_sym_default] = ACTIONS(1618), + [anon_sym_fn] = ACTIONS(1276), + [anon_sym_for] = ACTIONS(1278), + [anon_sym_gen] = ACTIONS(1620), + [anon_sym_impl] = ACTIONS(1282), + [anon_sym_union] = ACTIONS(1620), + [anon_sym_unsafe] = ACTIONS(1270), + [anon_sym_extern] = ACTIONS(1284), + [anon_sym_safe] = ACTIONS(1270), + [anon_sym_dyn] = ACTIONS(1288), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1624), + [sym_super] = ACTIONS(1624), + [sym_crate] = ACTIONS(1624), + [sym_metavariable] = ACTIONS(1626), }, [STATE(922)] = { - [sym_function_modifiers] = STATE(3595), - [sym_removed_trait_bound] = STATE(1787), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(1903), - [sym_bracketed_type] = STATE(3654), - [sym_lifetime] = STATE(3732), - [sym_array_type] = STATE(1787), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(1787), - [sym_tuple_type] = STATE(1787), - [sym_unit_type] = STATE(1787), - [sym_generic_type] = STATE(1646), - [sym_generic_type_with_turbofish] = STATE(3645), - [sym_bounded_type] = STATE(1787), - [sym_reference_type] = STATE(1787), - [sym_pointer_type] = STATE(1787), - [sym_never_type] = STATE(1787), - [sym_abstract_type] = STATE(1787), - [sym_dynamic_type] = STATE(1787), - [sym_macro_invocation] = STATE(1787), - [sym_scoped_identifier] = STATE(3373), - [sym_scoped_type_identifier] = STATE(1590), + [sym_function_modifiers] = STATE(3591), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2373), + [sym__type] = STATE(2054), + [sym_bracketed_type] = STATE(3474), + [sym_lifetime] = STATE(3727), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1591), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2022), + [sym_generic_type_with_turbofish] = STATE(3764), + [sym_bounded_type] = STATE(2069), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3334), + [sym_scoped_type_identifier] = STATE(1990), [sym_line_comment] = STATE(922), [sym_block_comment] = STATE(922), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(3144), - [anon_sym_LPAREN] = ACTIONS(3146), - [anon_sym_LBRACK] = ACTIONS(3148), - [anon_sym_STAR] = ACTIONS(3152), - [anon_sym_QMARK] = ACTIONS(3154), - [anon_sym_u8] = ACTIONS(3156), - [anon_sym_i8] = ACTIONS(3156), - [anon_sym_u16] = ACTIONS(3156), - [anon_sym_i16] = ACTIONS(3156), - [anon_sym_u32] = ACTIONS(3156), - [anon_sym_i32] = ACTIONS(3156), - [anon_sym_u64] = ACTIONS(3156), - [anon_sym_i64] = ACTIONS(3156), - [anon_sym_u128] = ACTIONS(3156), - [anon_sym_i128] = ACTIONS(3156), - [anon_sym_isize] = ACTIONS(3156), - [anon_sym_usize] = ACTIONS(3156), - [anon_sym_f32] = ACTIONS(3156), - [anon_sym_f64] = ACTIONS(3156), - [anon_sym_bool] = ACTIONS(3156), - [anon_sym_str] = ACTIONS(3156), - [anon_sym_char] = ACTIONS(3156), - [anon_sym_BANG] = ACTIONS(3158), - [anon_sym_AMP] = ACTIONS(3160), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3162), - [anon_sym_SQUOTE] = ACTIONS(3058), - [anon_sym_async] = ACTIONS(1265), - [anon_sym_const] = ACTIONS(1265), - [anon_sym_default] = ACTIONS(3164), - [anon_sym_fn] = ACTIONS(3166), - [anon_sym_for] = ACTIONS(1273), - [anon_sym_gen] = ACTIONS(3168), - [anon_sym_impl] = ACTIONS(3170), - [anon_sym_union] = ACTIONS(3168), - [anon_sym_unsafe] = ACTIONS(1265), - [anon_sym_extern] = ACTIONS(1279), - [anon_sym_dyn] = ACTIONS(3172), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3176), - [sym_super] = ACTIONS(3176), - [sym_crate] = ACTIONS(3176), - [sym_metavariable] = ACTIONS(3178), + [aux_sym_function_modifiers_repeat1] = STATE(2244), + [sym_identifier] = ACTIONS(3064), + [anon_sym_LPAREN] = ACTIONS(1602), + [anon_sym_LBRACK] = ACTIONS(1604), + [anon_sym_STAR] = ACTIONS(1240), + [anon_sym_QMARK] = ACTIONS(1242), + [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_BANG] = ACTIONS(1248), + [anon_sym_AMP] = ACTIONS(1610), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1614), + [anon_sym_SQUOTE] = ACTIONS(3072), + [anon_sym_async] = ACTIONS(1270), + [anon_sym_const] = ACTIONS(1270), + [anon_sym_default] = ACTIONS(1618), + [anon_sym_fn] = ACTIONS(1276), + [anon_sym_for] = ACTIONS(1278), + [anon_sym_gen] = ACTIONS(1620), + [anon_sym_impl] = ACTIONS(1282), + [anon_sym_union] = ACTIONS(1620), + [anon_sym_unsafe] = ACTIONS(1270), + [anon_sym_extern] = ACTIONS(1284), + [anon_sym_safe] = ACTIONS(1270), + [anon_sym_dyn] = ACTIONS(1288), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1624), + [sym_super] = ACTIONS(1624), + [sym_crate] = ACTIONS(1624), + [sym_metavariable] = ACTIONS(1626), }, [STATE(923)] = { - [sym_function_modifiers] = STATE(3595), - [sym_removed_trait_bound] = STATE(1787), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(1851), - [sym_bracketed_type] = STATE(3654), - [sym_lifetime] = STATE(3732), - [sym_array_type] = STATE(1787), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(1787), - [sym_tuple_type] = STATE(1787), - [sym_unit_type] = STATE(1787), - [sym_generic_type] = STATE(1646), - [sym_generic_type_with_turbofish] = STATE(3645), - [sym_bounded_type] = STATE(1787), - [sym_reference_type] = STATE(1787), - [sym_pointer_type] = STATE(1787), - [sym_never_type] = STATE(1787), - [sym_abstract_type] = STATE(1787), - [sym_dynamic_type] = STATE(1787), - [sym_macro_invocation] = STATE(1787), - [sym_scoped_identifier] = STATE(3373), - [sym_scoped_type_identifier] = STATE(1590), + [sym_function_modifiers] = STATE(3591), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2373), + [sym__type] = STATE(2082), + [sym_bracketed_type] = STATE(3474), + [sym_lifetime] = STATE(3727), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1591), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2022), + [sym_generic_type_with_turbofish] = STATE(3764), + [sym_bounded_type] = STATE(2069), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3334), + [sym_scoped_type_identifier] = STATE(1990), [sym_line_comment] = STATE(923), [sym_block_comment] = STATE(923), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(3144), - [anon_sym_LPAREN] = ACTIONS(3146), - [anon_sym_LBRACK] = ACTIONS(3148), - [anon_sym_STAR] = ACTIONS(3152), - [anon_sym_QMARK] = ACTIONS(3154), - [anon_sym_u8] = ACTIONS(3156), - [anon_sym_i8] = ACTIONS(3156), - [anon_sym_u16] = ACTIONS(3156), - [anon_sym_i16] = ACTIONS(3156), - [anon_sym_u32] = ACTIONS(3156), - [anon_sym_i32] = ACTIONS(3156), - [anon_sym_u64] = ACTIONS(3156), - [anon_sym_i64] = ACTIONS(3156), - [anon_sym_u128] = ACTIONS(3156), - [anon_sym_i128] = ACTIONS(3156), - [anon_sym_isize] = ACTIONS(3156), - [anon_sym_usize] = ACTIONS(3156), - [anon_sym_f32] = ACTIONS(3156), - [anon_sym_f64] = ACTIONS(3156), - [anon_sym_bool] = ACTIONS(3156), - [anon_sym_str] = ACTIONS(3156), - [anon_sym_char] = ACTIONS(3156), - [anon_sym_BANG] = ACTIONS(3158), - [anon_sym_AMP] = ACTIONS(3160), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3162), - [anon_sym_SQUOTE] = ACTIONS(3058), - [anon_sym_async] = ACTIONS(1265), - [anon_sym_const] = ACTIONS(1265), - [anon_sym_default] = ACTIONS(3164), - [anon_sym_fn] = ACTIONS(3166), - [anon_sym_for] = ACTIONS(1273), - [anon_sym_gen] = ACTIONS(3168), - [anon_sym_impl] = ACTIONS(3170), - [anon_sym_union] = ACTIONS(3168), - [anon_sym_unsafe] = ACTIONS(1265), - [anon_sym_extern] = ACTIONS(1279), - [anon_sym_dyn] = ACTIONS(3172), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3176), - [sym_super] = ACTIONS(3176), - [sym_crate] = ACTIONS(3176), - [sym_metavariable] = ACTIONS(3178), + [aux_sym_function_modifiers_repeat1] = STATE(2244), + [sym_identifier] = ACTIONS(3064), + [anon_sym_LPAREN] = ACTIONS(1602), + [anon_sym_LBRACK] = ACTIONS(1604), + [anon_sym_STAR] = ACTIONS(1240), + [anon_sym_QMARK] = ACTIONS(1242), + [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_BANG] = ACTIONS(1248), + [anon_sym_AMP] = ACTIONS(1610), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1614), + [anon_sym_SQUOTE] = ACTIONS(3072), + [anon_sym_async] = ACTIONS(1270), + [anon_sym_const] = ACTIONS(1270), + [anon_sym_default] = ACTIONS(1618), + [anon_sym_fn] = ACTIONS(1276), + [anon_sym_for] = ACTIONS(1278), + [anon_sym_gen] = ACTIONS(1620), + [anon_sym_impl] = ACTIONS(1282), + [anon_sym_union] = ACTIONS(1620), + [anon_sym_unsafe] = ACTIONS(1270), + [anon_sym_extern] = ACTIONS(1284), + [anon_sym_safe] = ACTIONS(1270), + [anon_sym_dyn] = ACTIONS(1288), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1624), + [sym_super] = ACTIONS(1624), + [sym_crate] = ACTIONS(1624), + [sym_metavariable] = ACTIONS(1626), }, [STATE(924)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2263), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_function_modifiers] = STATE(3591), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2373), + [sym__type] = STATE(2795), + [sym_bracketed_type] = STATE(3474), + [sym_lifetime] = STATE(3727), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1591), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2022), + [sym_generic_type_with_turbofish] = STATE(3764), + [sym_bounded_type] = STATE(2069), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3334), + [sym_scoped_type_identifier] = STATE(1990), [sym_line_comment] = STATE(924), [sym_block_comment] = STATE(924), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(3052), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1235), - [anon_sym_QMARK] = ACTIONS(1237), - [anon_sym_u8] = ACTIONS(1603), - [anon_sym_i8] = ACTIONS(1603), - [anon_sym_u16] = ACTIONS(1603), - [anon_sym_i16] = ACTIONS(1603), - [anon_sym_u32] = ACTIONS(1603), - [anon_sym_i32] = ACTIONS(1603), - [anon_sym_u64] = ACTIONS(1603), - [anon_sym_i64] = ACTIONS(1603), - [anon_sym_u128] = ACTIONS(1603), - [anon_sym_i128] = ACTIONS(1603), - [anon_sym_isize] = ACTIONS(1603), - [anon_sym_usize] = ACTIONS(1603), - [anon_sym_f32] = ACTIONS(1603), - [anon_sym_f64] = ACTIONS(1603), - [anon_sym_bool] = ACTIONS(1603), - [anon_sym_str] = ACTIONS(1603), - [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1243), - [anon_sym_AMP] = ACTIONS(1605), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3058), - [anon_sym_async] = ACTIONS(1265), - [anon_sym_const] = ACTIONS(1265), - [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1271), - [anon_sym_for] = ACTIONS(1273), - [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1277), - [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1265), - [anon_sym_extern] = ACTIONS(1279), - [anon_sym_dyn] = ACTIONS(1283), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1619), - [sym_super] = ACTIONS(1619), - [sym_crate] = ACTIONS(1619), - [sym_metavariable] = ACTIONS(1621), + [aux_sym_function_modifiers_repeat1] = STATE(2244), + [sym_identifier] = ACTIONS(3064), + [anon_sym_LPAREN] = ACTIONS(1602), + [anon_sym_LBRACK] = ACTIONS(1604), + [anon_sym_STAR] = ACTIONS(1240), + [anon_sym_QMARK] = ACTIONS(1242), + [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_BANG] = ACTIONS(1248), + [anon_sym_AMP] = ACTIONS(1610), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1614), + [anon_sym_SQUOTE] = ACTIONS(3072), + [anon_sym_async] = ACTIONS(1270), + [anon_sym_const] = ACTIONS(1270), + [anon_sym_default] = ACTIONS(1618), + [anon_sym_fn] = ACTIONS(1276), + [anon_sym_for] = ACTIONS(1278), + [anon_sym_gen] = ACTIONS(1620), + [anon_sym_impl] = ACTIONS(1282), + [anon_sym_union] = ACTIONS(1620), + [anon_sym_unsafe] = ACTIONS(1270), + [anon_sym_extern] = ACTIONS(1284), + [anon_sym_safe] = ACTIONS(1270), + [anon_sym_dyn] = ACTIONS(1288), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1624), + [sym_super] = ACTIONS(1624), + [sym_crate] = ACTIONS(1624), + [sym_metavariable] = ACTIONS(1626), }, [STATE(925)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2433), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_function_modifiers] = STATE(3591), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2373), + [sym__type] = STATE(2714), + [sym_bracketed_type] = STATE(3474), + [sym_lifetime] = STATE(3727), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1591), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2022), + [sym_generic_type_with_turbofish] = STATE(3764), + [sym_bounded_type] = STATE(2069), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3334), + [sym_scoped_type_identifier] = STATE(1990), [sym_line_comment] = STATE(925), [sym_block_comment] = STATE(925), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(3052), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1235), - [anon_sym_QMARK] = ACTIONS(1237), - [anon_sym_u8] = ACTIONS(1603), - [anon_sym_i8] = ACTIONS(1603), - [anon_sym_u16] = ACTIONS(1603), - [anon_sym_i16] = ACTIONS(1603), - [anon_sym_u32] = ACTIONS(1603), - [anon_sym_i32] = ACTIONS(1603), - [anon_sym_u64] = ACTIONS(1603), - [anon_sym_i64] = ACTIONS(1603), - [anon_sym_u128] = ACTIONS(1603), - [anon_sym_i128] = ACTIONS(1603), - [anon_sym_isize] = ACTIONS(1603), - [anon_sym_usize] = ACTIONS(1603), - [anon_sym_f32] = ACTIONS(1603), - [anon_sym_f64] = ACTIONS(1603), - [anon_sym_bool] = ACTIONS(1603), - [anon_sym_str] = ACTIONS(1603), - [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1243), - [anon_sym_AMP] = ACTIONS(1605), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3058), - [anon_sym_async] = ACTIONS(1265), - [anon_sym_const] = ACTIONS(1265), - [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1271), - [anon_sym_for] = ACTIONS(1273), - [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1277), - [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1265), - [anon_sym_extern] = ACTIONS(1279), - [anon_sym_dyn] = ACTIONS(1283), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1619), - [sym_super] = ACTIONS(1619), - [sym_crate] = ACTIONS(1619), - [sym_metavariable] = ACTIONS(1621), + [aux_sym_function_modifiers_repeat1] = STATE(2244), + [sym_identifier] = ACTIONS(3064), + [anon_sym_LPAREN] = ACTIONS(1602), + [anon_sym_LBRACK] = ACTIONS(1604), + [anon_sym_STAR] = ACTIONS(1240), + [anon_sym_QMARK] = ACTIONS(1242), + [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_BANG] = ACTIONS(1248), + [anon_sym_AMP] = ACTIONS(1610), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1614), + [anon_sym_SQUOTE] = ACTIONS(3072), + [anon_sym_async] = ACTIONS(1270), + [anon_sym_const] = ACTIONS(1270), + [anon_sym_default] = ACTIONS(1618), + [anon_sym_fn] = ACTIONS(1276), + [anon_sym_for] = ACTIONS(1278), + [anon_sym_gen] = ACTIONS(1620), + [anon_sym_impl] = ACTIONS(1282), + [anon_sym_union] = ACTIONS(1620), + [anon_sym_unsafe] = ACTIONS(1270), + [anon_sym_extern] = ACTIONS(1284), + [anon_sym_safe] = ACTIONS(1270), + [anon_sym_dyn] = ACTIONS(1288), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1624), + [sym_super] = ACTIONS(1624), + [sym_crate] = ACTIONS(1624), + [sym_metavariable] = ACTIONS(1626), }, [STATE(926)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2434), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_function_modifiers] = STATE(3591), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2373), + [sym__type] = STATE(2057), + [sym_bracketed_type] = STATE(3474), + [sym_lifetime] = STATE(3727), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1591), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2022), + [sym_generic_type_with_turbofish] = STATE(3764), + [sym_bounded_type] = STATE(2069), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3334), + [sym_scoped_type_identifier] = STATE(1990), [sym_line_comment] = STATE(926), [sym_block_comment] = STATE(926), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(3052), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1235), - [anon_sym_QMARK] = ACTIONS(1237), - [anon_sym_u8] = ACTIONS(1603), - [anon_sym_i8] = ACTIONS(1603), - [anon_sym_u16] = ACTIONS(1603), - [anon_sym_i16] = ACTIONS(1603), - [anon_sym_u32] = ACTIONS(1603), - [anon_sym_i32] = ACTIONS(1603), - [anon_sym_u64] = ACTIONS(1603), - [anon_sym_i64] = ACTIONS(1603), - [anon_sym_u128] = ACTIONS(1603), - [anon_sym_i128] = ACTIONS(1603), - [anon_sym_isize] = ACTIONS(1603), - [anon_sym_usize] = ACTIONS(1603), - [anon_sym_f32] = ACTIONS(1603), - [anon_sym_f64] = ACTIONS(1603), - [anon_sym_bool] = ACTIONS(1603), - [anon_sym_str] = ACTIONS(1603), - [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1243), - [anon_sym_AMP] = ACTIONS(1605), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3058), - [anon_sym_async] = ACTIONS(1265), - [anon_sym_const] = ACTIONS(1265), - [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1271), - [anon_sym_for] = ACTIONS(1273), - [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1277), - [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1265), - [anon_sym_extern] = ACTIONS(1279), - [anon_sym_dyn] = ACTIONS(1283), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1619), - [sym_super] = ACTIONS(1619), - [sym_crate] = ACTIONS(1619), - [sym_metavariable] = ACTIONS(1621), + [aux_sym_function_modifiers_repeat1] = STATE(2244), + [sym_identifier] = ACTIONS(3064), + [anon_sym_LPAREN] = ACTIONS(1602), + [anon_sym_LBRACK] = ACTIONS(1604), + [anon_sym_STAR] = ACTIONS(1240), + [anon_sym_QMARK] = ACTIONS(1242), + [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_BANG] = ACTIONS(1248), + [anon_sym_AMP] = ACTIONS(1610), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1614), + [anon_sym_SQUOTE] = ACTIONS(3072), + [anon_sym_async] = ACTIONS(1270), + [anon_sym_const] = ACTIONS(1270), + [anon_sym_default] = ACTIONS(1618), + [anon_sym_fn] = ACTIONS(1276), + [anon_sym_for] = ACTIONS(1278), + [anon_sym_gen] = ACTIONS(1620), + [anon_sym_impl] = ACTIONS(1282), + [anon_sym_union] = ACTIONS(1620), + [anon_sym_unsafe] = ACTIONS(1270), + [anon_sym_extern] = ACTIONS(1284), + [anon_sym_safe] = ACTIONS(1270), + [anon_sym_dyn] = ACTIONS(1288), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1624), + [sym_super] = ACTIONS(1624), + [sym_crate] = ACTIONS(1624), + [sym_metavariable] = ACTIONS(1626), }, [STATE(927)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(3110), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_function_modifiers] = STATE(3480), + [sym_removed_trait_bound] = STATE(1470), + [sym_extern_modifier] = STATE(2373), + [sym__type] = STATE(1419), + [sym_bracketed_type] = STATE(3667), + [sym_lifetime] = STATE(3541), + [sym_array_type] = STATE(1470), + [sym_for_lifetimes] = STATE(1603), + [sym_function_type] = STATE(1470), + [sym_tuple_type] = STATE(1470), + [sym_unit_type] = STATE(1470), + [sym_generic_type] = STATE(1381), + [sym_generic_type_with_turbofish] = STATE(3656), + [sym_bounded_type] = STATE(1470), + [sym_reference_type] = STATE(1470), + [sym_pointer_type] = STATE(1470), + [sym_never_type] = STATE(1470), + [sym_abstract_type] = STATE(1470), + [sym_dynamic_type] = STATE(1470), + [sym_macro_invocation] = STATE(1470), + [sym_scoped_identifier] = STATE(3333), + [sym_scoped_type_identifier] = STATE(1077), [sym_line_comment] = STATE(927), [sym_block_comment] = STATE(927), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(3052), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1235), - [anon_sym_QMARK] = ACTIONS(1237), - [anon_sym_u8] = ACTIONS(1603), - [anon_sym_i8] = ACTIONS(1603), - [anon_sym_u16] = ACTIONS(1603), - [anon_sym_i16] = ACTIONS(1603), - [anon_sym_u32] = ACTIONS(1603), - [anon_sym_i32] = ACTIONS(1603), - [anon_sym_u64] = ACTIONS(1603), - [anon_sym_i64] = ACTIONS(1603), - [anon_sym_u128] = ACTIONS(1603), - [anon_sym_i128] = ACTIONS(1603), - [anon_sym_isize] = ACTIONS(1603), - [anon_sym_usize] = ACTIONS(1603), - [anon_sym_f32] = ACTIONS(1603), - [anon_sym_f64] = ACTIONS(1603), - [anon_sym_bool] = ACTIONS(1603), - [anon_sym_str] = ACTIONS(1603), - [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1243), - [anon_sym_AMP] = ACTIONS(1605), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3058), - [anon_sym_async] = ACTIONS(1265), - [anon_sym_const] = ACTIONS(1265), - [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1271), - [anon_sym_for] = ACTIONS(1273), - [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1277), - [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1265), - [anon_sym_extern] = ACTIONS(1279), - [anon_sym_dyn] = ACTIONS(1283), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1619), - [sym_super] = ACTIONS(1619), - [sym_crate] = ACTIONS(1619), - [sym_metavariable] = ACTIONS(1621), + [aux_sym_function_modifiers_repeat1] = STATE(2244), + [sym_identifier] = ACTIONS(3210), + [anon_sym_LPAREN] = ACTIONS(3212), + [anon_sym_LBRACK] = ACTIONS(3214), + [anon_sym_STAR] = ACTIONS(3218), + [anon_sym_QMARK] = ACTIONS(3220), + [anon_sym_u8] = ACTIONS(3222), + [anon_sym_i8] = ACTIONS(3222), + [anon_sym_u16] = ACTIONS(3222), + [anon_sym_i16] = ACTIONS(3222), + [anon_sym_u32] = ACTIONS(3222), + [anon_sym_i32] = ACTIONS(3222), + [anon_sym_u64] = ACTIONS(3222), + [anon_sym_i64] = ACTIONS(3222), + [anon_sym_u128] = ACTIONS(3222), + [anon_sym_i128] = ACTIONS(3222), + [anon_sym_isize] = ACTIONS(3222), + [anon_sym_usize] = ACTIONS(3222), + [anon_sym_f32] = ACTIONS(3222), + [anon_sym_f64] = ACTIONS(3222), + [anon_sym_bool] = ACTIONS(3222), + [anon_sym_str] = ACTIONS(3222), + [anon_sym_char] = ACTIONS(3222), + [anon_sym_BANG] = ACTIONS(3224), + [anon_sym_AMP] = ACTIONS(3226), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3228), + [anon_sym_SQUOTE] = ACTIONS(3072), + [anon_sym_async] = ACTIONS(1270), + [anon_sym_const] = ACTIONS(1270), + [anon_sym_default] = ACTIONS(3230), + [anon_sym_fn] = ACTIONS(3232), + [anon_sym_for] = ACTIONS(1278), + [anon_sym_gen] = ACTIONS(3234), + [anon_sym_impl] = ACTIONS(3236), + [anon_sym_union] = ACTIONS(3234), + [anon_sym_unsafe] = ACTIONS(1270), + [anon_sym_extern] = ACTIONS(1284), + [anon_sym_safe] = ACTIONS(1270), + [anon_sym_dyn] = ACTIONS(3238), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(3242), + [sym_super] = ACTIONS(3242), + [sym_crate] = ACTIONS(3242), + [sym_metavariable] = ACTIONS(3244), }, [STATE(928)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2381), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_function_modifiers] = STATE(3591), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2373), + [sym__type] = STATE(2310), + [sym_bracketed_type] = STATE(3474), + [sym_lifetime] = STATE(3727), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1591), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2022), + [sym_generic_type_with_turbofish] = STATE(3764), + [sym_bounded_type] = STATE(2069), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3334), + [sym_scoped_type_identifier] = STATE(1990), [sym_line_comment] = STATE(928), [sym_block_comment] = STATE(928), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(3052), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1235), - [anon_sym_QMARK] = ACTIONS(1237), - [anon_sym_u8] = ACTIONS(1603), - [anon_sym_i8] = ACTIONS(1603), - [anon_sym_u16] = ACTIONS(1603), - [anon_sym_i16] = ACTIONS(1603), - [anon_sym_u32] = ACTIONS(1603), - [anon_sym_i32] = ACTIONS(1603), - [anon_sym_u64] = ACTIONS(1603), - [anon_sym_i64] = ACTIONS(1603), - [anon_sym_u128] = ACTIONS(1603), - [anon_sym_i128] = ACTIONS(1603), - [anon_sym_isize] = ACTIONS(1603), - [anon_sym_usize] = ACTIONS(1603), - [anon_sym_f32] = ACTIONS(1603), - [anon_sym_f64] = ACTIONS(1603), - [anon_sym_bool] = ACTIONS(1603), - [anon_sym_str] = ACTIONS(1603), - [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1243), - [anon_sym_AMP] = ACTIONS(1605), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3058), - [anon_sym_async] = ACTIONS(1265), - [anon_sym_const] = ACTIONS(1265), - [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1271), - [anon_sym_for] = ACTIONS(1273), - [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1277), - [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1265), - [anon_sym_extern] = ACTIONS(1279), - [anon_sym_dyn] = ACTIONS(1283), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1619), - [sym_super] = ACTIONS(1619), - [sym_crate] = ACTIONS(1619), - [sym_metavariable] = ACTIONS(1621), + [aux_sym_function_modifiers_repeat1] = STATE(2244), + [sym_identifier] = ACTIONS(3064), + [anon_sym_LPAREN] = ACTIONS(1602), + [anon_sym_LBRACK] = ACTIONS(1604), + [anon_sym_STAR] = ACTIONS(1240), + [anon_sym_QMARK] = ACTIONS(1242), + [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_BANG] = ACTIONS(1248), + [anon_sym_AMP] = ACTIONS(1610), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1614), + [anon_sym_SQUOTE] = ACTIONS(3072), + [anon_sym_async] = ACTIONS(1270), + [anon_sym_const] = ACTIONS(1270), + [anon_sym_default] = ACTIONS(1618), + [anon_sym_fn] = ACTIONS(1276), + [anon_sym_for] = ACTIONS(1278), + [anon_sym_gen] = ACTIONS(1620), + [anon_sym_impl] = ACTIONS(1282), + [anon_sym_union] = ACTIONS(1620), + [anon_sym_unsafe] = ACTIONS(1270), + [anon_sym_extern] = ACTIONS(1284), + [anon_sym_safe] = ACTIONS(1270), + [anon_sym_dyn] = ACTIONS(1288), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1624), + [sym_super] = ACTIONS(1624), + [sym_crate] = ACTIONS(1624), + [sym_metavariable] = ACTIONS(1626), }, [STATE(929)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2992), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_function_modifiers] = STATE(3591), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2373), + [sym__type] = STATE(2062), + [sym_bracketed_type] = STATE(3474), + [sym_lifetime] = STATE(3727), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1591), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2022), + [sym_generic_type_with_turbofish] = STATE(3764), + [sym_bounded_type] = STATE(2069), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3334), + [sym_scoped_type_identifier] = STATE(1990), [sym_line_comment] = STATE(929), [sym_block_comment] = STATE(929), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(3052), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1235), - [anon_sym_QMARK] = ACTIONS(1237), - [anon_sym_u8] = ACTIONS(1603), - [anon_sym_i8] = ACTIONS(1603), - [anon_sym_u16] = ACTIONS(1603), - [anon_sym_i16] = ACTIONS(1603), - [anon_sym_u32] = ACTIONS(1603), - [anon_sym_i32] = ACTIONS(1603), - [anon_sym_u64] = ACTIONS(1603), - [anon_sym_i64] = ACTIONS(1603), - [anon_sym_u128] = ACTIONS(1603), - [anon_sym_i128] = ACTIONS(1603), - [anon_sym_isize] = ACTIONS(1603), - [anon_sym_usize] = ACTIONS(1603), - [anon_sym_f32] = ACTIONS(1603), - [anon_sym_f64] = ACTIONS(1603), - [anon_sym_bool] = ACTIONS(1603), - [anon_sym_str] = ACTIONS(1603), - [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1243), - [anon_sym_AMP] = ACTIONS(1605), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3058), - [anon_sym_async] = ACTIONS(1265), - [anon_sym_const] = ACTIONS(1265), - [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1271), - [anon_sym_for] = ACTIONS(1273), - [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1277), - [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1265), - [anon_sym_extern] = ACTIONS(1279), - [anon_sym_dyn] = ACTIONS(1283), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1619), - [sym_super] = ACTIONS(1619), - [sym_crate] = ACTIONS(1619), - [sym_metavariable] = ACTIONS(1621), + [aux_sym_function_modifiers_repeat1] = STATE(2244), + [sym_identifier] = ACTIONS(3064), + [anon_sym_LPAREN] = ACTIONS(1602), + [anon_sym_LBRACK] = ACTIONS(1604), + [anon_sym_STAR] = ACTIONS(1240), + [anon_sym_QMARK] = ACTIONS(1242), + [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_BANG] = ACTIONS(1248), + [anon_sym_AMP] = ACTIONS(1610), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1614), + [anon_sym_SQUOTE] = ACTIONS(3072), + [anon_sym_async] = ACTIONS(1270), + [anon_sym_const] = ACTIONS(1270), + [anon_sym_default] = ACTIONS(1618), + [anon_sym_fn] = ACTIONS(1276), + [anon_sym_for] = ACTIONS(1278), + [anon_sym_gen] = ACTIONS(1620), + [anon_sym_impl] = ACTIONS(1282), + [anon_sym_union] = ACTIONS(1620), + [anon_sym_unsafe] = ACTIONS(1270), + [anon_sym_extern] = ACTIONS(1284), + [anon_sym_safe] = ACTIONS(1270), + [anon_sym_dyn] = ACTIONS(1288), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1624), + [sym_super] = ACTIONS(1624), + [sym_crate] = ACTIONS(1624), + [sym_metavariable] = ACTIONS(1626), }, [STATE(930)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2393), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_function_modifiers] = STATE(3591), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2373), + [sym__type] = STATE(2433), + [sym_bracketed_type] = STATE(3474), + [sym_lifetime] = STATE(3727), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1591), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2022), + [sym_generic_type_with_turbofish] = STATE(3764), + [sym_bounded_type] = STATE(2069), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3334), + [sym_scoped_type_identifier] = STATE(1990), [sym_line_comment] = STATE(930), [sym_block_comment] = STATE(930), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(3052), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1235), - [anon_sym_QMARK] = ACTIONS(1237), - [anon_sym_u8] = ACTIONS(1603), - [anon_sym_i8] = ACTIONS(1603), - [anon_sym_u16] = ACTIONS(1603), - [anon_sym_i16] = ACTIONS(1603), - [anon_sym_u32] = ACTIONS(1603), - [anon_sym_i32] = ACTIONS(1603), - [anon_sym_u64] = ACTIONS(1603), - [anon_sym_i64] = ACTIONS(1603), - [anon_sym_u128] = ACTIONS(1603), - [anon_sym_i128] = ACTIONS(1603), - [anon_sym_isize] = ACTIONS(1603), - [anon_sym_usize] = ACTIONS(1603), - [anon_sym_f32] = ACTIONS(1603), - [anon_sym_f64] = ACTIONS(1603), - [anon_sym_bool] = ACTIONS(1603), - [anon_sym_str] = ACTIONS(1603), - [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1243), - [anon_sym_AMP] = ACTIONS(1605), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3058), - [anon_sym_async] = ACTIONS(1265), - [anon_sym_const] = ACTIONS(1265), - [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1271), - [anon_sym_for] = ACTIONS(1273), - [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1277), - [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1265), - [anon_sym_extern] = ACTIONS(1279), - [anon_sym_dyn] = ACTIONS(1283), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1619), - [sym_super] = ACTIONS(1619), - [sym_crate] = ACTIONS(1619), - [sym_metavariable] = ACTIONS(1621), + [aux_sym_function_modifiers_repeat1] = STATE(2244), + [sym_identifier] = ACTIONS(3064), + [anon_sym_LPAREN] = ACTIONS(1602), + [anon_sym_LBRACK] = ACTIONS(1604), + [anon_sym_STAR] = ACTIONS(1240), + [anon_sym_QMARK] = ACTIONS(1242), + [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_BANG] = ACTIONS(1248), + [anon_sym_AMP] = ACTIONS(1610), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1614), + [anon_sym_SQUOTE] = ACTIONS(3072), + [anon_sym_async] = ACTIONS(1270), + [anon_sym_const] = ACTIONS(1270), + [anon_sym_default] = ACTIONS(1618), + [anon_sym_fn] = ACTIONS(1276), + [anon_sym_for] = ACTIONS(1278), + [anon_sym_gen] = ACTIONS(1620), + [anon_sym_impl] = ACTIONS(1282), + [anon_sym_union] = ACTIONS(1620), + [anon_sym_unsafe] = ACTIONS(1270), + [anon_sym_extern] = ACTIONS(1284), + [anon_sym_safe] = ACTIONS(1270), + [anon_sym_dyn] = ACTIONS(1288), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1624), + [sym_super] = ACTIONS(1624), + [sym_crate] = ACTIONS(1624), + [sym_metavariable] = ACTIONS(1626), }, [STATE(931)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2631), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_function_modifiers] = STATE(3624), + [sym_removed_trait_bound] = STATE(1721), + [sym_extern_modifier] = STATE(2373), + [sym__type] = STATE(1726), + [sym_bracketed_type] = STATE(3683), + [sym_lifetime] = STATE(3755), + [sym_array_type] = STATE(1721), + [sym_for_lifetimes] = STATE(1605), + [sym_function_type] = STATE(1721), + [sym_tuple_type] = STATE(1721), + [sym_unit_type] = STATE(1721), + [sym_generic_type] = STATE(1679), + [sym_generic_type_with_turbofish] = STATE(3674), + [sym_bounded_type] = STATE(1721), + [sym_reference_type] = STATE(1721), + [sym_pointer_type] = STATE(1721), + [sym_never_type] = STATE(1721), + [sym_abstract_type] = STATE(1721), + [sym_dynamic_type] = STATE(1721), + [sym_macro_invocation] = STATE(1721), + [sym_scoped_identifier] = STATE(3408), + [sym_scoped_type_identifier] = STATE(1595), [sym_line_comment] = STATE(931), [sym_block_comment] = STATE(931), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(3052), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1235), - [anon_sym_QMARK] = ACTIONS(1237), - [anon_sym_u8] = ACTIONS(1603), - [anon_sym_i8] = ACTIONS(1603), - [anon_sym_u16] = ACTIONS(1603), - [anon_sym_i16] = ACTIONS(1603), - [anon_sym_u32] = ACTIONS(1603), - [anon_sym_i32] = ACTIONS(1603), - [anon_sym_u64] = ACTIONS(1603), - [anon_sym_i64] = ACTIONS(1603), - [anon_sym_u128] = ACTIONS(1603), - [anon_sym_i128] = ACTIONS(1603), - [anon_sym_isize] = ACTIONS(1603), - [anon_sym_usize] = ACTIONS(1603), - [anon_sym_f32] = ACTIONS(1603), - [anon_sym_f64] = ACTIONS(1603), - [anon_sym_bool] = ACTIONS(1603), - [anon_sym_str] = ACTIONS(1603), - [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1243), - [anon_sym_AMP] = ACTIONS(1605), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3058), - [anon_sym_async] = ACTIONS(1265), - [anon_sym_const] = ACTIONS(1265), - [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1271), - [anon_sym_for] = ACTIONS(1273), - [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1277), - [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1265), - [anon_sym_extern] = ACTIONS(1279), - [anon_sym_dyn] = ACTIONS(1283), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1619), - [sym_super] = ACTIONS(1619), - [sym_crate] = ACTIONS(1619), - [sym_metavariable] = ACTIONS(1621), + [aux_sym_function_modifiers_repeat1] = STATE(2244), + [sym_identifier] = ACTIONS(3172), + [anon_sym_LPAREN] = ACTIONS(3174), + [anon_sym_LBRACK] = ACTIONS(3176), + [anon_sym_STAR] = ACTIONS(3180), + [anon_sym_QMARK] = ACTIONS(3182), + [anon_sym_u8] = ACTIONS(3184), + [anon_sym_i8] = ACTIONS(3184), + [anon_sym_u16] = ACTIONS(3184), + [anon_sym_i16] = ACTIONS(3184), + [anon_sym_u32] = ACTIONS(3184), + [anon_sym_i32] = ACTIONS(3184), + [anon_sym_u64] = ACTIONS(3184), + [anon_sym_i64] = ACTIONS(3184), + [anon_sym_u128] = ACTIONS(3184), + [anon_sym_i128] = ACTIONS(3184), + [anon_sym_isize] = ACTIONS(3184), + [anon_sym_usize] = ACTIONS(3184), + [anon_sym_f32] = ACTIONS(3184), + [anon_sym_f64] = ACTIONS(3184), + [anon_sym_bool] = ACTIONS(3184), + [anon_sym_str] = ACTIONS(3184), + [anon_sym_char] = ACTIONS(3184), + [anon_sym_BANG] = ACTIONS(3186), + [anon_sym_AMP] = ACTIONS(3188), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3190), + [anon_sym_SQUOTE] = ACTIONS(3072), + [anon_sym_async] = ACTIONS(1270), + [anon_sym_const] = ACTIONS(1270), + [anon_sym_default] = ACTIONS(3192), + [anon_sym_fn] = ACTIONS(3194), + [anon_sym_for] = ACTIONS(1278), + [anon_sym_gen] = ACTIONS(3196), + [anon_sym_impl] = ACTIONS(3198), + [anon_sym_union] = ACTIONS(3196), + [anon_sym_unsafe] = ACTIONS(1270), + [anon_sym_extern] = ACTIONS(1284), + [anon_sym_safe] = ACTIONS(1270), + [anon_sym_dyn] = ACTIONS(3200), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(3204), + [sym_super] = ACTIONS(3204), + [sym_crate] = ACTIONS(3204), + [sym_metavariable] = ACTIONS(3206), }, [STATE(932)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2702), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_function_modifiers] = STATE(3591), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2373), + [sym__type] = STATE(2388), + [sym_bracketed_type] = STATE(3474), + [sym_lifetime] = STATE(3727), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1591), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2022), + [sym_generic_type_with_turbofish] = STATE(3764), + [sym_bounded_type] = STATE(2069), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3334), + [sym_scoped_type_identifier] = STATE(1990), [sym_line_comment] = STATE(932), [sym_block_comment] = STATE(932), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(3052), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1235), - [anon_sym_QMARK] = ACTIONS(1237), - [anon_sym_u8] = ACTIONS(1603), - [anon_sym_i8] = ACTIONS(1603), - [anon_sym_u16] = ACTIONS(1603), - [anon_sym_i16] = ACTIONS(1603), - [anon_sym_u32] = ACTIONS(1603), - [anon_sym_i32] = ACTIONS(1603), - [anon_sym_u64] = ACTIONS(1603), - [anon_sym_i64] = ACTIONS(1603), - [anon_sym_u128] = ACTIONS(1603), - [anon_sym_i128] = ACTIONS(1603), - [anon_sym_isize] = ACTIONS(1603), - [anon_sym_usize] = ACTIONS(1603), - [anon_sym_f32] = ACTIONS(1603), - [anon_sym_f64] = ACTIONS(1603), - [anon_sym_bool] = ACTIONS(1603), - [anon_sym_str] = ACTIONS(1603), - [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1243), - [anon_sym_AMP] = ACTIONS(1605), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3058), - [anon_sym_async] = ACTIONS(1265), - [anon_sym_const] = ACTIONS(1265), - [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1271), - [anon_sym_for] = ACTIONS(1273), - [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1277), - [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1265), - [anon_sym_extern] = ACTIONS(1279), - [anon_sym_dyn] = ACTIONS(1283), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1619), - [sym_super] = ACTIONS(1619), - [sym_crate] = ACTIONS(1619), - [sym_metavariable] = ACTIONS(1621), + [aux_sym_function_modifiers_repeat1] = STATE(2244), + [sym_identifier] = ACTIONS(3064), + [anon_sym_LPAREN] = ACTIONS(1602), + [anon_sym_LBRACK] = ACTIONS(1604), + [anon_sym_STAR] = ACTIONS(1240), + [anon_sym_QMARK] = ACTIONS(1242), + [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_BANG] = ACTIONS(1248), + [anon_sym_AMP] = ACTIONS(1610), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1614), + [anon_sym_SQUOTE] = ACTIONS(3072), + [anon_sym_async] = ACTIONS(1270), + [anon_sym_const] = ACTIONS(1270), + [anon_sym_default] = ACTIONS(1618), + [anon_sym_fn] = ACTIONS(1276), + [anon_sym_for] = ACTIONS(1278), + [anon_sym_gen] = ACTIONS(1620), + [anon_sym_impl] = ACTIONS(1282), + [anon_sym_union] = ACTIONS(1620), + [anon_sym_unsafe] = ACTIONS(1270), + [anon_sym_extern] = ACTIONS(1284), + [anon_sym_safe] = ACTIONS(1270), + [anon_sym_dyn] = ACTIONS(1288), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1624), + [sym_super] = ACTIONS(1624), + [sym_crate] = ACTIONS(1624), + [sym_metavariable] = ACTIONS(1626), }, [STATE(933)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2251), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_function_modifiers] = STATE(3624), + [sym_removed_trait_bound] = STATE(1721), + [sym_extern_modifier] = STATE(2373), + [sym__type] = STATE(1816), + [sym_bracketed_type] = STATE(3683), + [sym_lifetime] = STATE(3755), + [sym_array_type] = STATE(1721), + [sym_for_lifetimes] = STATE(1605), + [sym_function_type] = STATE(1721), + [sym_tuple_type] = STATE(1721), + [sym_unit_type] = STATE(1721), + [sym_generic_type] = STATE(1679), + [sym_generic_type_with_turbofish] = STATE(3674), + [sym_bounded_type] = STATE(1721), + [sym_reference_type] = STATE(1721), + [sym_pointer_type] = STATE(1721), + [sym_never_type] = STATE(1721), + [sym_abstract_type] = STATE(1721), + [sym_dynamic_type] = STATE(1721), + [sym_macro_invocation] = STATE(1721), + [sym_scoped_identifier] = STATE(3408), + [sym_scoped_type_identifier] = STATE(1595), [sym_line_comment] = STATE(933), [sym_block_comment] = STATE(933), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(3052), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1235), - [anon_sym_QMARK] = ACTIONS(1237), - [anon_sym_u8] = ACTIONS(1603), - [anon_sym_i8] = ACTIONS(1603), - [anon_sym_u16] = ACTIONS(1603), - [anon_sym_i16] = ACTIONS(1603), - [anon_sym_u32] = ACTIONS(1603), - [anon_sym_i32] = ACTIONS(1603), - [anon_sym_u64] = ACTIONS(1603), - [anon_sym_i64] = ACTIONS(1603), - [anon_sym_u128] = ACTIONS(1603), - [anon_sym_i128] = ACTIONS(1603), - [anon_sym_isize] = ACTIONS(1603), - [anon_sym_usize] = ACTIONS(1603), - [anon_sym_f32] = ACTIONS(1603), - [anon_sym_f64] = ACTIONS(1603), - [anon_sym_bool] = ACTIONS(1603), - [anon_sym_str] = ACTIONS(1603), - [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1243), - [anon_sym_AMP] = ACTIONS(1605), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3058), - [anon_sym_async] = ACTIONS(1265), - [anon_sym_const] = ACTIONS(1265), - [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1271), - [anon_sym_for] = ACTIONS(1273), - [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1277), - [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1265), - [anon_sym_extern] = ACTIONS(1279), - [anon_sym_dyn] = ACTIONS(1283), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1619), - [sym_super] = ACTIONS(1619), - [sym_crate] = ACTIONS(1619), - [sym_metavariable] = ACTIONS(1621), + [aux_sym_function_modifiers_repeat1] = STATE(2244), + [sym_identifier] = ACTIONS(3172), + [anon_sym_LPAREN] = ACTIONS(3174), + [anon_sym_LBRACK] = ACTIONS(3176), + [anon_sym_STAR] = ACTIONS(3180), + [anon_sym_QMARK] = ACTIONS(3182), + [anon_sym_u8] = ACTIONS(3184), + [anon_sym_i8] = ACTIONS(3184), + [anon_sym_u16] = ACTIONS(3184), + [anon_sym_i16] = ACTIONS(3184), + [anon_sym_u32] = ACTIONS(3184), + [anon_sym_i32] = ACTIONS(3184), + [anon_sym_u64] = ACTIONS(3184), + [anon_sym_i64] = ACTIONS(3184), + [anon_sym_u128] = ACTIONS(3184), + [anon_sym_i128] = ACTIONS(3184), + [anon_sym_isize] = ACTIONS(3184), + [anon_sym_usize] = ACTIONS(3184), + [anon_sym_f32] = ACTIONS(3184), + [anon_sym_f64] = ACTIONS(3184), + [anon_sym_bool] = ACTIONS(3184), + [anon_sym_str] = ACTIONS(3184), + [anon_sym_char] = ACTIONS(3184), + [anon_sym_BANG] = ACTIONS(3186), + [anon_sym_AMP] = ACTIONS(3188), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3190), + [anon_sym_SQUOTE] = ACTIONS(3072), + [anon_sym_async] = ACTIONS(1270), + [anon_sym_const] = ACTIONS(1270), + [anon_sym_default] = ACTIONS(3192), + [anon_sym_fn] = ACTIONS(3194), + [anon_sym_for] = ACTIONS(1278), + [anon_sym_gen] = ACTIONS(3196), + [anon_sym_impl] = ACTIONS(3198), + [anon_sym_union] = ACTIONS(3196), + [anon_sym_unsafe] = ACTIONS(1270), + [anon_sym_extern] = ACTIONS(1284), + [anon_sym_safe] = ACTIONS(1270), + [anon_sym_dyn] = ACTIONS(3200), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(3204), + [sym_super] = ACTIONS(3204), + [sym_crate] = ACTIONS(3204), + [sym_metavariable] = ACTIONS(3206), }, [STATE(934)] = { - [sym_function_modifiers] = STATE(3595), - [sym_removed_trait_bound] = STATE(1787), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(1768), - [sym_bracketed_type] = STATE(3654), - [sym_lifetime] = STATE(3732), - [sym_array_type] = STATE(1787), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(1787), - [sym_tuple_type] = STATE(1787), - [sym_unit_type] = STATE(1787), - [sym_generic_type] = STATE(1646), - [sym_generic_type_with_turbofish] = STATE(3645), - [sym_bounded_type] = STATE(1787), - [sym_reference_type] = STATE(1787), - [sym_pointer_type] = STATE(1787), - [sym_never_type] = STATE(1787), - [sym_abstract_type] = STATE(1787), - [sym_dynamic_type] = STATE(1787), - [sym_macro_invocation] = STATE(1787), - [sym_scoped_identifier] = STATE(3373), - [sym_scoped_type_identifier] = STATE(1590), + [sym_function_modifiers] = STATE(3624), + [sym_removed_trait_bound] = STATE(1721), + [sym_extern_modifier] = STATE(2373), + [sym__type] = STATE(1817), + [sym_bracketed_type] = STATE(3683), + [sym_lifetime] = STATE(3755), + [sym_array_type] = STATE(1721), + [sym_for_lifetimes] = STATE(1605), + [sym_function_type] = STATE(1721), + [sym_tuple_type] = STATE(1721), + [sym_unit_type] = STATE(1721), + [sym_generic_type] = STATE(1679), + [sym_generic_type_with_turbofish] = STATE(3674), + [sym_bounded_type] = STATE(1721), + [sym_reference_type] = STATE(1721), + [sym_pointer_type] = STATE(1721), + [sym_never_type] = STATE(1721), + [sym_abstract_type] = STATE(1721), + [sym_dynamic_type] = STATE(1721), + [sym_macro_invocation] = STATE(1721), + [sym_scoped_identifier] = STATE(3408), + [sym_scoped_type_identifier] = STATE(1595), [sym_line_comment] = STATE(934), [sym_block_comment] = STATE(934), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(3144), - [anon_sym_LPAREN] = ACTIONS(3146), - [anon_sym_LBRACK] = ACTIONS(3148), - [anon_sym_STAR] = ACTIONS(3152), - [anon_sym_QMARK] = ACTIONS(3154), - [anon_sym_u8] = ACTIONS(3156), - [anon_sym_i8] = ACTIONS(3156), - [anon_sym_u16] = ACTIONS(3156), - [anon_sym_i16] = ACTIONS(3156), - [anon_sym_u32] = ACTIONS(3156), - [anon_sym_i32] = ACTIONS(3156), - [anon_sym_u64] = ACTIONS(3156), - [anon_sym_i64] = ACTIONS(3156), - [anon_sym_u128] = ACTIONS(3156), - [anon_sym_i128] = ACTIONS(3156), - [anon_sym_isize] = ACTIONS(3156), - [anon_sym_usize] = ACTIONS(3156), - [anon_sym_f32] = ACTIONS(3156), - [anon_sym_f64] = ACTIONS(3156), - [anon_sym_bool] = ACTIONS(3156), - [anon_sym_str] = ACTIONS(3156), - [anon_sym_char] = ACTIONS(3156), - [anon_sym_BANG] = ACTIONS(3158), - [anon_sym_AMP] = ACTIONS(3160), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3162), - [anon_sym_SQUOTE] = ACTIONS(3058), - [anon_sym_async] = ACTIONS(1265), - [anon_sym_const] = ACTIONS(1265), - [anon_sym_default] = ACTIONS(3164), - [anon_sym_fn] = ACTIONS(3166), - [anon_sym_for] = ACTIONS(1273), - [anon_sym_gen] = ACTIONS(3168), - [anon_sym_impl] = ACTIONS(3170), - [anon_sym_union] = ACTIONS(3168), - [anon_sym_unsafe] = ACTIONS(1265), - [anon_sym_extern] = ACTIONS(1279), - [anon_sym_dyn] = ACTIONS(3172), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3176), - [sym_super] = ACTIONS(3176), - [sym_crate] = ACTIONS(3176), - [sym_metavariable] = ACTIONS(3178), + [aux_sym_function_modifiers_repeat1] = STATE(2244), + [sym_identifier] = ACTIONS(3172), + [anon_sym_LPAREN] = ACTIONS(3174), + [anon_sym_LBRACK] = ACTIONS(3176), + [anon_sym_STAR] = ACTIONS(3180), + [anon_sym_QMARK] = ACTIONS(3182), + [anon_sym_u8] = ACTIONS(3184), + [anon_sym_i8] = ACTIONS(3184), + [anon_sym_u16] = ACTIONS(3184), + [anon_sym_i16] = ACTIONS(3184), + [anon_sym_u32] = ACTIONS(3184), + [anon_sym_i32] = ACTIONS(3184), + [anon_sym_u64] = ACTIONS(3184), + [anon_sym_i64] = ACTIONS(3184), + [anon_sym_u128] = ACTIONS(3184), + [anon_sym_i128] = ACTIONS(3184), + [anon_sym_isize] = ACTIONS(3184), + [anon_sym_usize] = ACTIONS(3184), + [anon_sym_f32] = ACTIONS(3184), + [anon_sym_f64] = ACTIONS(3184), + [anon_sym_bool] = ACTIONS(3184), + [anon_sym_str] = ACTIONS(3184), + [anon_sym_char] = ACTIONS(3184), + [anon_sym_BANG] = ACTIONS(3186), + [anon_sym_AMP] = ACTIONS(3188), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3190), + [anon_sym_SQUOTE] = ACTIONS(3072), + [anon_sym_async] = ACTIONS(1270), + [anon_sym_const] = ACTIONS(1270), + [anon_sym_default] = ACTIONS(3192), + [anon_sym_fn] = ACTIONS(3194), + [anon_sym_for] = ACTIONS(1278), + [anon_sym_gen] = ACTIONS(3196), + [anon_sym_impl] = ACTIONS(3198), + [anon_sym_union] = ACTIONS(3196), + [anon_sym_unsafe] = ACTIONS(1270), + [anon_sym_extern] = ACTIONS(1284), + [anon_sym_safe] = ACTIONS(1270), + [anon_sym_dyn] = ACTIONS(3200), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(3204), + [sym_super] = ACTIONS(3204), + [sym_crate] = ACTIONS(3204), + [sym_metavariable] = ACTIONS(3206), }, [STATE(935)] = { - [sym_function_modifiers] = STATE(3595), - [sym_removed_trait_bound] = STATE(1787), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(1698), - [sym_bracketed_type] = STATE(3654), - [sym_lifetime] = STATE(3732), - [sym_array_type] = STATE(1787), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(1787), - [sym_tuple_type] = STATE(1787), - [sym_unit_type] = STATE(1787), - [sym_generic_type] = STATE(1646), - [sym_generic_type_with_turbofish] = STATE(3645), - [sym_bounded_type] = STATE(1787), - [sym_reference_type] = STATE(1787), - [sym_pointer_type] = STATE(1787), - [sym_never_type] = STATE(1787), - [sym_abstract_type] = STATE(1787), - [sym_dynamic_type] = STATE(1787), - [sym_macro_invocation] = STATE(1787), - [sym_scoped_identifier] = STATE(3373), - [sym_scoped_type_identifier] = STATE(1590), + [sym_function_modifiers] = STATE(3591), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2373), + [sym__type] = STATE(3205), + [sym_bracketed_type] = STATE(3474), + [sym_lifetime] = STATE(3727), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1591), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2022), + [sym_generic_type_with_turbofish] = STATE(3764), + [sym_bounded_type] = STATE(2069), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3334), + [sym_scoped_type_identifier] = STATE(1990), [sym_line_comment] = STATE(935), [sym_block_comment] = STATE(935), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(3144), - [anon_sym_LPAREN] = ACTIONS(3146), - [anon_sym_LBRACK] = ACTIONS(3148), - [anon_sym_STAR] = ACTIONS(3152), - [anon_sym_QMARK] = ACTIONS(3154), - [anon_sym_u8] = ACTIONS(3156), - [anon_sym_i8] = ACTIONS(3156), - [anon_sym_u16] = ACTIONS(3156), - [anon_sym_i16] = ACTIONS(3156), - [anon_sym_u32] = ACTIONS(3156), - [anon_sym_i32] = ACTIONS(3156), - [anon_sym_u64] = ACTIONS(3156), - [anon_sym_i64] = ACTIONS(3156), - [anon_sym_u128] = ACTIONS(3156), - [anon_sym_i128] = ACTIONS(3156), - [anon_sym_isize] = ACTIONS(3156), - [anon_sym_usize] = ACTIONS(3156), - [anon_sym_f32] = ACTIONS(3156), - [anon_sym_f64] = ACTIONS(3156), - [anon_sym_bool] = ACTIONS(3156), - [anon_sym_str] = ACTIONS(3156), - [anon_sym_char] = ACTIONS(3156), - [anon_sym_BANG] = ACTIONS(3158), - [anon_sym_AMP] = ACTIONS(3160), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3162), - [anon_sym_SQUOTE] = ACTIONS(3058), - [anon_sym_async] = ACTIONS(1265), - [anon_sym_const] = ACTIONS(1265), - [anon_sym_default] = ACTIONS(3164), - [anon_sym_fn] = ACTIONS(3166), - [anon_sym_for] = ACTIONS(1273), - [anon_sym_gen] = ACTIONS(3168), - [anon_sym_impl] = ACTIONS(3170), - [anon_sym_union] = ACTIONS(3168), - [anon_sym_unsafe] = ACTIONS(1265), - [anon_sym_extern] = ACTIONS(1279), - [anon_sym_dyn] = ACTIONS(3172), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3176), - [sym_super] = ACTIONS(3176), - [sym_crate] = ACTIONS(3176), - [sym_metavariable] = ACTIONS(3178), + [aux_sym_function_modifiers_repeat1] = STATE(2244), + [sym_identifier] = ACTIONS(3064), + [anon_sym_LPAREN] = ACTIONS(1602), + [anon_sym_LBRACK] = ACTIONS(1604), + [anon_sym_STAR] = ACTIONS(1240), + [anon_sym_QMARK] = ACTIONS(1242), + [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_BANG] = ACTIONS(1248), + [anon_sym_AMP] = ACTIONS(1610), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1614), + [anon_sym_SQUOTE] = ACTIONS(3072), + [anon_sym_async] = ACTIONS(1270), + [anon_sym_const] = ACTIONS(1270), + [anon_sym_default] = ACTIONS(1618), + [anon_sym_fn] = ACTIONS(1276), + [anon_sym_for] = ACTIONS(1278), + [anon_sym_gen] = ACTIONS(1620), + [anon_sym_impl] = ACTIONS(1282), + [anon_sym_union] = ACTIONS(1620), + [anon_sym_unsafe] = ACTIONS(1270), + [anon_sym_extern] = ACTIONS(1284), + [anon_sym_safe] = ACTIONS(1270), + [anon_sym_dyn] = ACTIONS(1288), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1624), + [sym_super] = ACTIONS(1624), + [sym_crate] = ACTIONS(1624), + [sym_metavariable] = ACTIONS(1626), }, [STATE(936)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(3080), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_function_modifiers] = STATE(3591), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2373), + [sym__type] = STATE(3209), + [sym_bracketed_type] = STATE(3474), + [sym_lifetime] = STATE(3727), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1591), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2022), + [sym_generic_type_with_turbofish] = STATE(3764), + [sym_bounded_type] = STATE(2069), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3334), + [sym_scoped_type_identifier] = STATE(1990), [sym_line_comment] = STATE(936), [sym_block_comment] = STATE(936), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(3052), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1235), - [anon_sym_QMARK] = ACTIONS(1237), - [anon_sym_u8] = ACTIONS(1603), - [anon_sym_i8] = ACTIONS(1603), - [anon_sym_u16] = ACTIONS(1603), - [anon_sym_i16] = ACTIONS(1603), - [anon_sym_u32] = ACTIONS(1603), - [anon_sym_i32] = ACTIONS(1603), - [anon_sym_u64] = ACTIONS(1603), - [anon_sym_i64] = ACTIONS(1603), - [anon_sym_u128] = ACTIONS(1603), - [anon_sym_i128] = ACTIONS(1603), - [anon_sym_isize] = ACTIONS(1603), - [anon_sym_usize] = ACTIONS(1603), - [anon_sym_f32] = ACTIONS(1603), - [anon_sym_f64] = ACTIONS(1603), - [anon_sym_bool] = ACTIONS(1603), - [anon_sym_str] = ACTIONS(1603), - [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1243), - [anon_sym_AMP] = ACTIONS(1605), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3058), - [anon_sym_async] = ACTIONS(1265), - [anon_sym_const] = ACTIONS(1265), - [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1271), - [anon_sym_for] = ACTIONS(1273), - [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1277), - [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1265), - [anon_sym_extern] = ACTIONS(1279), - [anon_sym_dyn] = ACTIONS(1283), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1619), - [sym_super] = ACTIONS(1619), - [sym_crate] = ACTIONS(1619), - [sym_metavariable] = ACTIONS(1621), + [aux_sym_function_modifiers_repeat1] = STATE(2244), + [sym_identifier] = ACTIONS(3064), + [anon_sym_LPAREN] = ACTIONS(1602), + [anon_sym_LBRACK] = ACTIONS(1604), + [anon_sym_STAR] = ACTIONS(1240), + [anon_sym_QMARK] = ACTIONS(1242), + [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_BANG] = ACTIONS(1248), + [anon_sym_AMP] = ACTIONS(1610), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1614), + [anon_sym_SQUOTE] = ACTIONS(3072), + [anon_sym_async] = ACTIONS(1270), + [anon_sym_const] = ACTIONS(1270), + [anon_sym_default] = ACTIONS(1618), + [anon_sym_fn] = ACTIONS(1276), + [anon_sym_for] = ACTIONS(1278), + [anon_sym_gen] = ACTIONS(1620), + [anon_sym_impl] = ACTIONS(1282), + [anon_sym_union] = ACTIONS(1620), + [anon_sym_unsafe] = ACTIONS(1270), + [anon_sym_extern] = ACTIONS(1284), + [anon_sym_safe] = ACTIONS(1270), + [anon_sym_dyn] = ACTIONS(1288), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1624), + [sym_super] = ACTIONS(1624), + [sym_crate] = ACTIONS(1624), + [sym_metavariable] = ACTIONS(1626), }, [STATE(937)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2460), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_function_modifiers] = STATE(3624), + [sym_removed_trait_bound] = STATE(1721), + [sym_extern_modifier] = STATE(2373), + [sym__type] = STATE(1756), + [sym_bracketed_type] = STATE(3683), + [sym_lifetime] = STATE(3755), + [sym_array_type] = STATE(1721), + [sym_for_lifetimes] = STATE(1605), + [sym_function_type] = STATE(1721), + [sym_tuple_type] = STATE(1721), + [sym_unit_type] = STATE(1721), + [sym_generic_type] = STATE(1679), + [sym_generic_type_with_turbofish] = STATE(3674), + [sym_bounded_type] = STATE(1721), + [sym_reference_type] = STATE(1721), + [sym_pointer_type] = STATE(1721), + [sym_never_type] = STATE(1721), + [sym_abstract_type] = STATE(1721), + [sym_dynamic_type] = STATE(1721), + [sym_macro_invocation] = STATE(1721), + [sym_scoped_identifier] = STATE(3408), + [sym_scoped_type_identifier] = STATE(1595), [sym_line_comment] = STATE(937), [sym_block_comment] = STATE(937), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(3052), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1235), - [anon_sym_QMARK] = ACTIONS(1237), - [anon_sym_u8] = ACTIONS(1603), - [anon_sym_i8] = ACTIONS(1603), - [anon_sym_u16] = ACTIONS(1603), - [anon_sym_i16] = ACTIONS(1603), - [anon_sym_u32] = ACTIONS(1603), - [anon_sym_i32] = ACTIONS(1603), - [anon_sym_u64] = ACTIONS(1603), - [anon_sym_i64] = ACTIONS(1603), - [anon_sym_u128] = ACTIONS(1603), - [anon_sym_i128] = ACTIONS(1603), - [anon_sym_isize] = ACTIONS(1603), - [anon_sym_usize] = ACTIONS(1603), - [anon_sym_f32] = ACTIONS(1603), - [anon_sym_f64] = ACTIONS(1603), - [anon_sym_bool] = ACTIONS(1603), - [anon_sym_str] = ACTIONS(1603), - [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1243), - [anon_sym_AMP] = ACTIONS(1605), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3058), - [anon_sym_async] = ACTIONS(1265), - [anon_sym_const] = ACTIONS(1265), - [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1271), - [anon_sym_for] = ACTIONS(1273), - [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1277), - [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1265), - [anon_sym_extern] = ACTIONS(1279), - [anon_sym_dyn] = ACTIONS(1283), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1619), - [sym_super] = ACTIONS(1619), - [sym_crate] = ACTIONS(1619), - [sym_metavariable] = ACTIONS(1621), + [aux_sym_function_modifiers_repeat1] = STATE(2244), + [sym_identifier] = ACTIONS(3172), + [anon_sym_LPAREN] = ACTIONS(3174), + [anon_sym_LBRACK] = ACTIONS(3176), + [anon_sym_STAR] = ACTIONS(3180), + [anon_sym_QMARK] = ACTIONS(3182), + [anon_sym_u8] = ACTIONS(3184), + [anon_sym_i8] = ACTIONS(3184), + [anon_sym_u16] = ACTIONS(3184), + [anon_sym_i16] = ACTIONS(3184), + [anon_sym_u32] = ACTIONS(3184), + [anon_sym_i32] = ACTIONS(3184), + [anon_sym_u64] = ACTIONS(3184), + [anon_sym_i64] = ACTIONS(3184), + [anon_sym_u128] = ACTIONS(3184), + [anon_sym_i128] = ACTIONS(3184), + [anon_sym_isize] = ACTIONS(3184), + [anon_sym_usize] = ACTIONS(3184), + [anon_sym_f32] = ACTIONS(3184), + [anon_sym_f64] = ACTIONS(3184), + [anon_sym_bool] = ACTIONS(3184), + [anon_sym_str] = ACTIONS(3184), + [anon_sym_char] = ACTIONS(3184), + [anon_sym_BANG] = ACTIONS(3186), + [anon_sym_AMP] = ACTIONS(3188), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3190), + [anon_sym_SQUOTE] = ACTIONS(3072), + [anon_sym_async] = ACTIONS(1270), + [anon_sym_const] = ACTIONS(1270), + [anon_sym_default] = ACTIONS(3192), + [anon_sym_fn] = ACTIONS(3194), + [anon_sym_for] = ACTIONS(1278), + [anon_sym_gen] = ACTIONS(3196), + [anon_sym_impl] = ACTIONS(3198), + [anon_sym_union] = ACTIONS(3196), + [anon_sym_unsafe] = ACTIONS(1270), + [anon_sym_extern] = ACTIONS(1284), + [anon_sym_safe] = ACTIONS(1270), + [anon_sym_dyn] = ACTIONS(3200), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(3204), + [sym_super] = ACTIONS(3204), + [sym_crate] = ACTIONS(3204), + [sym_metavariable] = ACTIONS(3206), }, [STATE(938)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2667), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_function_modifiers] = STATE(3591), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2373), + [sym__type] = STATE(2822), + [sym_bracketed_type] = STATE(3474), + [sym_lifetime] = STATE(3727), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1591), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2022), + [sym_generic_type_with_turbofish] = STATE(3764), + [sym_bounded_type] = STATE(2069), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3334), + [sym_scoped_type_identifier] = STATE(1990), [sym_line_comment] = STATE(938), [sym_block_comment] = STATE(938), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(3052), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1235), - [anon_sym_QMARK] = ACTIONS(1237), - [anon_sym_u8] = ACTIONS(1603), - [anon_sym_i8] = ACTIONS(1603), - [anon_sym_u16] = ACTIONS(1603), - [anon_sym_i16] = ACTIONS(1603), - [anon_sym_u32] = ACTIONS(1603), - [anon_sym_i32] = ACTIONS(1603), - [anon_sym_u64] = ACTIONS(1603), - [anon_sym_i64] = ACTIONS(1603), - [anon_sym_u128] = ACTIONS(1603), - [anon_sym_i128] = ACTIONS(1603), - [anon_sym_isize] = ACTIONS(1603), - [anon_sym_usize] = ACTIONS(1603), - [anon_sym_f32] = ACTIONS(1603), - [anon_sym_f64] = ACTIONS(1603), - [anon_sym_bool] = ACTIONS(1603), - [anon_sym_str] = ACTIONS(1603), - [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1243), - [anon_sym_AMP] = ACTIONS(1605), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3058), - [anon_sym_async] = ACTIONS(1265), - [anon_sym_const] = ACTIONS(1265), - [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1271), - [anon_sym_for] = ACTIONS(1273), - [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1277), - [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1265), - [anon_sym_extern] = ACTIONS(1279), - [anon_sym_dyn] = ACTIONS(1283), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1619), - [sym_super] = ACTIONS(1619), - [sym_crate] = ACTIONS(1619), - [sym_metavariable] = ACTIONS(1621), + [aux_sym_function_modifiers_repeat1] = STATE(2244), + [sym_identifier] = ACTIONS(3064), + [anon_sym_LPAREN] = ACTIONS(1602), + [anon_sym_LBRACK] = ACTIONS(1604), + [anon_sym_STAR] = ACTIONS(1240), + [anon_sym_QMARK] = ACTIONS(1242), + [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_BANG] = ACTIONS(1248), + [anon_sym_AMP] = ACTIONS(1610), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1614), + [anon_sym_SQUOTE] = ACTIONS(3072), + [anon_sym_async] = ACTIONS(1270), + [anon_sym_const] = ACTIONS(1270), + [anon_sym_default] = ACTIONS(1618), + [anon_sym_fn] = ACTIONS(1276), + [anon_sym_for] = ACTIONS(1278), + [anon_sym_gen] = ACTIONS(1620), + [anon_sym_impl] = ACTIONS(1282), + [anon_sym_union] = ACTIONS(1620), + [anon_sym_unsafe] = ACTIONS(1270), + [anon_sym_extern] = ACTIONS(1284), + [anon_sym_safe] = ACTIONS(1270), + [anon_sym_dyn] = ACTIONS(1288), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1624), + [sym_super] = ACTIONS(1624), + [sym_crate] = ACTIONS(1624), + [sym_metavariable] = ACTIONS(1626), }, [STATE(939)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2299), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_function_modifiers] = STATE(3591), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2373), + [sym__type] = STATE(2425), + [sym_bracketed_type] = STATE(3474), + [sym_lifetime] = STATE(3727), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1591), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2022), + [sym_generic_type_with_turbofish] = STATE(3764), + [sym_bounded_type] = STATE(2069), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3334), + [sym_scoped_type_identifier] = STATE(1990), [sym_line_comment] = STATE(939), [sym_block_comment] = STATE(939), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(3052), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1235), - [anon_sym_QMARK] = ACTIONS(1237), - [anon_sym_u8] = ACTIONS(1603), - [anon_sym_i8] = ACTIONS(1603), - [anon_sym_u16] = ACTIONS(1603), - [anon_sym_i16] = ACTIONS(1603), - [anon_sym_u32] = ACTIONS(1603), - [anon_sym_i32] = ACTIONS(1603), - [anon_sym_u64] = ACTIONS(1603), - [anon_sym_i64] = ACTIONS(1603), - [anon_sym_u128] = ACTIONS(1603), - [anon_sym_i128] = ACTIONS(1603), - [anon_sym_isize] = ACTIONS(1603), - [anon_sym_usize] = ACTIONS(1603), - [anon_sym_f32] = ACTIONS(1603), - [anon_sym_f64] = ACTIONS(1603), - [anon_sym_bool] = ACTIONS(1603), - [anon_sym_str] = ACTIONS(1603), - [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1243), - [anon_sym_AMP] = ACTIONS(1605), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3058), - [anon_sym_async] = ACTIONS(1265), - [anon_sym_const] = ACTIONS(1265), - [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1271), - [anon_sym_for] = ACTIONS(1273), - [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1277), - [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1265), - [anon_sym_extern] = ACTIONS(1279), - [anon_sym_dyn] = ACTIONS(1283), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1619), - [sym_super] = ACTIONS(1619), - [sym_crate] = ACTIONS(1619), - [sym_metavariable] = ACTIONS(1621), + [aux_sym_function_modifiers_repeat1] = STATE(2244), + [sym_identifier] = ACTIONS(3064), + [anon_sym_LPAREN] = ACTIONS(1602), + [anon_sym_LBRACK] = ACTIONS(1604), + [anon_sym_STAR] = ACTIONS(1240), + [anon_sym_QMARK] = ACTIONS(1242), + [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_BANG] = ACTIONS(1248), + [anon_sym_AMP] = ACTIONS(1610), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1614), + [anon_sym_SQUOTE] = ACTIONS(3072), + [anon_sym_async] = ACTIONS(1270), + [anon_sym_const] = ACTIONS(1270), + [anon_sym_default] = ACTIONS(1618), + [anon_sym_fn] = ACTIONS(1276), + [anon_sym_for] = ACTIONS(1278), + [anon_sym_gen] = ACTIONS(1620), + [anon_sym_impl] = ACTIONS(1282), + [anon_sym_union] = ACTIONS(1620), + [anon_sym_unsafe] = ACTIONS(1270), + [anon_sym_extern] = ACTIONS(1284), + [anon_sym_safe] = ACTIONS(1270), + [anon_sym_dyn] = ACTIONS(1288), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1624), + [sym_super] = ACTIONS(1624), + [sym_crate] = ACTIONS(1624), + [sym_metavariable] = ACTIONS(1626), }, [STATE(940)] = { - [sym_function_modifiers] = STATE(3595), - [sym_removed_trait_bound] = STATE(1787), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(1769), - [sym_bracketed_type] = STATE(3654), - [sym_lifetime] = STATE(3732), - [sym_array_type] = STATE(1787), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(1787), - [sym_tuple_type] = STATE(1787), - [sym_unit_type] = STATE(1787), - [sym_generic_type] = STATE(1646), - [sym_generic_type_with_turbofish] = STATE(3645), - [sym_bounded_type] = STATE(1787), - [sym_reference_type] = STATE(1787), - [sym_pointer_type] = STATE(1787), - [sym_never_type] = STATE(1787), - [sym_abstract_type] = STATE(1787), - [sym_dynamic_type] = STATE(1787), - [sym_macro_invocation] = STATE(1787), - [sym_scoped_identifier] = STATE(3373), - [sym_scoped_type_identifier] = STATE(1590), + [sym_function_modifiers] = STATE(3591), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2373), + [sym__type] = STATE(2427), + [sym_bracketed_type] = STATE(3474), + [sym_lifetime] = STATE(3727), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1591), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2022), + [sym_generic_type_with_turbofish] = STATE(3764), + [sym_bounded_type] = STATE(2069), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3334), + [sym_scoped_type_identifier] = STATE(1990), [sym_line_comment] = STATE(940), [sym_block_comment] = STATE(940), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(3144), - [anon_sym_LPAREN] = ACTIONS(3146), - [anon_sym_LBRACK] = ACTIONS(3148), - [anon_sym_STAR] = ACTIONS(3152), - [anon_sym_QMARK] = ACTIONS(3154), - [anon_sym_u8] = ACTIONS(3156), - [anon_sym_i8] = ACTIONS(3156), - [anon_sym_u16] = ACTIONS(3156), - [anon_sym_i16] = ACTIONS(3156), - [anon_sym_u32] = ACTIONS(3156), - [anon_sym_i32] = ACTIONS(3156), - [anon_sym_u64] = ACTIONS(3156), - [anon_sym_i64] = ACTIONS(3156), - [anon_sym_u128] = ACTIONS(3156), - [anon_sym_i128] = ACTIONS(3156), - [anon_sym_isize] = ACTIONS(3156), - [anon_sym_usize] = ACTIONS(3156), - [anon_sym_f32] = ACTIONS(3156), - [anon_sym_f64] = ACTIONS(3156), - [anon_sym_bool] = ACTIONS(3156), - [anon_sym_str] = ACTIONS(3156), - [anon_sym_char] = ACTIONS(3156), - [anon_sym_BANG] = ACTIONS(3158), - [anon_sym_AMP] = ACTIONS(3160), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3162), - [anon_sym_SQUOTE] = ACTIONS(3058), - [anon_sym_async] = ACTIONS(1265), - [anon_sym_const] = ACTIONS(1265), - [anon_sym_default] = ACTIONS(3164), - [anon_sym_fn] = ACTIONS(3166), - [anon_sym_for] = ACTIONS(1273), - [anon_sym_gen] = ACTIONS(3168), - [anon_sym_impl] = ACTIONS(3170), - [anon_sym_union] = ACTIONS(3168), - [anon_sym_unsafe] = ACTIONS(1265), - [anon_sym_extern] = ACTIONS(1279), - [anon_sym_dyn] = ACTIONS(3172), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3176), - [sym_super] = ACTIONS(3176), - [sym_crate] = ACTIONS(3176), - [sym_metavariable] = ACTIONS(3178), + [aux_sym_function_modifiers_repeat1] = STATE(2244), + [sym_identifier] = ACTIONS(3064), + [anon_sym_LPAREN] = ACTIONS(1602), + [anon_sym_LBRACK] = ACTIONS(1604), + [anon_sym_STAR] = ACTIONS(1240), + [anon_sym_QMARK] = ACTIONS(1242), + [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_BANG] = ACTIONS(1248), + [anon_sym_AMP] = ACTIONS(1610), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1614), + [anon_sym_SQUOTE] = ACTIONS(3072), + [anon_sym_async] = ACTIONS(1270), + [anon_sym_const] = ACTIONS(1270), + [anon_sym_default] = ACTIONS(1618), + [anon_sym_fn] = ACTIONS(1276), + [anon_sym_for] = ACTIONS(1278), + [anon_sym_gen] = ACTIONS(1620), + [anon_sym_impl] = ACTIONS(1282), + [anon_sym_union] = ACTIONS(1620), + [anon_sym_unsafe] = ACTIONS(1270), + [anon_sym_extern] = ACTIONS(1284), + [anon_sym_safe] = ACTIONS(1270), + [anon_sym_dyn] = ACTIONS(1288), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1624), + [sym_super] = ACTIONS(1624), + [sym_crate] = ACTIONS(1624), + [sym_metavariable] = ACTIONS(1626), }, [STATE(941)] = { - [sym_function_modifiers] = STATE(3595), - [sym_removed_trait_bound] = STATE(1787), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(1704), - [sym_bracketed_type] = STATE(3654), - [sym_lifetime] = STATE(3732), - [sym_array_type] = STATE(1787), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(1787), - [sym_tuple_type] = STATE(1787), - [sym_unit_type] = STATE(1787), - [sym_generic_type] = STATE(1646), - [sym_generic_type_with_turbofish] = STATE(3645), - [sym_bounded_type] = STATE(1787), - [sym_reference_type] = STATE(1787), - [sym_pointer_type] = STATE(1787), - [sym_never_type] = STATE(1787), - [sym_abstract_type] = STATE(1787), - [sym_dynamic_type] = STATE(1787), - [sym_macro_invocation] = STATE(1787), - [sym_scoped_identifier] = STATE(3373), - [sym_scoped_type_identifier] = STATE(1590), + [sym_function_modifiers] = STATE(3591), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2373), + [sym__type] = STATE(2638), + [sym_bracketed_type] = STATE(3474), + [sym_lifetime] = STATE(3727), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1591), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2022), + [sym_generic_type_with_turbofish] = STATE(3764), + [sym_bounded_type] = STATE(2069), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3334), + [sym_scoped_type_identifier] = STATE(1990), [sym_line_comment] = STATE(941), [sym_block_comment] = STATE(941), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(3144), - [anon_sym_LPAREN] = ACTIONS(3146), - [anon_sym_LBRACK] = ACTIONS(3148), - [anon_sym_STAR] = ACTIONS(3152), - [anon_sym_QMARK] = ACTIONS(3154), - [anon_sym_u8] = ACTIONS(3156), - [anon_sym_i8] = ACTIONS(3156), - [anon_sym_u16] = ACTIONS(3156), - [anon_sym_i16] = ACTIONS(3156), - [anon_sym_u32] = ACTIONS(3156), - [anon_sym_i32] = ACTIONS(3156), - [anon_sym_u64] = ACTIONS(3156), - [anon_sym_i64] = ACTIONS(3156), - [anon_sym_u128] = ACTIONS(3156), - [anon_sym_i128] = ACTIONS(3156), - [anon_sym_isize] = ACTIONS(3156), - [anon_sym_usize] = ACTIONS(3156), - [anon_sym_f32] = ACTIONS(3156), - [anon_sym_f64] = ACTIONS(3156), - [anon_sym_bool] = ACTIONS(3156), - [anon_sym_str] = ACTIONS(3156), - [anon_sym_char] = ACTIONS(3156), - [anon_sym_BANG] = ACTIONS(3158), - [anon_sym_AMP] = ACTIONS(3160), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3162), - [anon_sym_SQUOTE] = ACTIONS(3058), - [anon_sym_async] = ACTIONS(1265), - [anon_sym_const] = ACTIONS(1265), - [anon_sym_default] = ACTIONS(3164), - [anon_sym_fn] = ACTIONS(3166), - [anon_sym_for] = ACTIONS(1273), - [anon_sym_gen] = ACTIONS(3168), - [anon_sym_impl] = ACTIONS(3170), - [anon_sym_union] = ACTIONS(3168), - [anon_sym_unsafe] = ACTIONS(1265), - [anon_sym_extern] = ACTIONS(1279), - [anon_sym_dyn] = ACTIONS(3172), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3176), - [sym_super] = ACTIONS(3176), - [sym_crate] = ACTIONS(3176), - [sym_metavariable] = ACTIONS(3178), + [aux_sym_function_modifiers_repeat1] = STATE(2244), + [sym_identifier] = ACTIONS(3064), + [anon_sym_LPAREN] = ACTIONS(1602), + [anon_sym_LBRACK] = ACTIONS(1604), + [anon_sym_STAR] = ACTIONS(1240), + [anon_sym_QMARK] = ACTIONS(1242), + [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_BANG] = ACTIONS(1248), + [anon_sym_AMP] = ACTIONS(1610), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1614), + [anon_sym_SQUOTE] = ACTIONS(3072), + [anon_sym_async] = ACTIONS(1270), + [anon_sym_const] = ACTIONS(1270), + [anon_sym_default] = ACTIONS(1618), + [anon_sym_fn] = ACTIONS(1276), + [anon_sym_for] = ACTIONS(1278), + [anon_sym_gen] = ACTIONS(1620), + [anon_sym_impl] = ACTIONS(1282), + [anon_sym_union] = ACTIONS(1620), + [anon_sym_unsafe] = ACTIONS(1270), + [anon_sym_extern] = ACTIONS(1284), + [anon_sym_safe] = ACTIONS(1270), + [anon_sym_dyn] = ACTIONS(1288), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1624), + [sym_super] = ACTIONS(1624), + [sym_crate] = ACTIONS(1624), + [sym_metavariable] = ACTIONS(1626), }, [STATE(942)] = { - [sym_function_modifiers] = STATE(3595), - [sym_removed_trait_bound] = STATE(1787), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(1706), - [sym_bracketed_type] = STATE(3654), - [sym_lifetime] = STATE(3732), - [sym_array_type] = STATE(1787), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(1787), - [sym_tuple_type] = STATE(1787), - [sym_unit_type] = STATE(1787), - [sym_generic_type] = STATE(1646), - [sym_generic_type_with_turbofish] = STATE(3645), - [sym_bounded_type] = STATE(1787), - [sym_reference_type] = STATE(1787), - [sym_pointer_type] = STATE(1787), - [sym_never_type] = STATE(1787), - [sym_abstract_type] = STATE(1787), - [sym_dynamic_type] = STATE(1787), - [sym_macro_invocation] = STATE(1787), - [sym_scoped_identifier] = STATE(3373), - [sym_scoped_type_identifier] = STATE(1590), + [sym_function_modifiers] = STATE(3591), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2373), + [sym__type] = STATE(2829), + [sym_bracketed_type] = STATE(3474), + [sym_lifetime] = STATE(3727), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1591), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2022), + [sym_generic_type_with_turbofish] = STATE(3764), + [sym_bounded_type] = STATE(2069), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3334), + [sym_scoped_type_identifier] = STATE(1990), [sym_line_comment] = STATE(942), [sym_block_comment] = STATE(942), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(3144), - [anon_sym_LPAREN] = ACTIONS(3146), - [anon_sym_LBRACK] = ACTIONS(3148), - [anon_sym_STAR] = ACTIONS(3152), - [anon_sym_QMARK] = ACTIONS(3154), - [anon_sym_u8] = ACTIONS(3156), - [anon_sym_i8] = ACTIONS(3156), - [anon_sym_u16] = ACTIONS(3156), - [anon_sym_i16] = ACTIONS(3156), - [anon_sym_u32] = ACTIONS(3156), - [anon_sym_i32] = ACTIONS(3156), - [anon_sym_u64] = ACTIONS(3156), - [anon_sym_i64] = ACTIONS(3156), - [anon_sym_u128] = ACTIONS(3156), - [anon_sym_i128] = ACTIONS(3156), - [anon_sym_isize] = ACTIONS(3156), - [anon_sym_usize] = ACTIONS(3156), - [anon_sym_f32] = ACTIONS(3156), - [anon_sym_f64] = ACTIONS(3156), - [anon_sym_bool] = ACTIONS(3156), - [anon_sym_str] = ACTIONS(3156), - [anon_sym_char] = ACTIONS(3156), - [anon_sym_BANG] = ACTIONS(3158), - [anon_sym_AMP] = ACTIONS(3160), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3162), - [anon_sym_SQUOTE] = ACTIONS(3058), - [anon_sym_async] = ACTIONS(1265), - [anon_sym_const] = ACTIONS(1265), - [anon_sym_default] = ACTIONS(3164), - [anon_sym_fn] = ACTIONS(3166), - [anon_sym_for] = ACTIONS(1273), - [anon_sym_gen] = ACTIONS(3168), - [anon_sym_impl] = ACTIONS(3170), - [anon_sym_union] = ACTIONS(3168), - [anon_sym_unsafe] = ACTIONS(1265), - [anon_sym_extern] = ACTIONS(1279), - [anon_sym_dyn] = ACTIONS(3172), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3176), - [sym_super] = ACTIONS(3176), - [sym_crate] = ACTIONS(3176), - [sym_metavariable] = ACTIONS(3178), + [aux_sym_function_modifiers_repeat1] = STATE(2244), + [sym_identifier] = ACTIONS(3064), + [anon_sym_LPAREN] = ACTIONS(1602), + [anon_sym_LBRACK] = ACTIONS(1604), + [anon_sym_STAR] = ACTIONS(1240), + [anon_sym_QMARK] = ACTIONS(1242), + [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_BANG] = ACTIONS(1248), + [anon_sym_AMP] = ACTIONS(1610), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1614), + [anon_sym_SQUOTE] = ACTIONS(3072), + [anon_sym_async] = ACTIONS(1270), + [anon_sym_const] = ACTIONS(1270), + [anon_sym_default] = ACTIONS(1618), + [anon_sym_fn] = ACTIONS(1276), + [anon_sym_for] = ACTIONS(1278), + [anon_sym_gen] = ACTIONS(1620), + [anon_sym_impl] = ACTIONS(1282), + [anon_sym_union] = ACTIONS(1620), + [anon_sym_unsafe] = ACTIONS(1270), + [anon_sym_extern] = ACTIONS(1284), + [anon_sym_safe] = ACTIONS(1270), + [anon_sym_dyn] = ACTIONS(1288), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1624), + [sym_super] = ACTIONS(1624), + [sym_crate] = ACTIONS(1624), + [sym_metavariable] = ACTIONS(1626), }, [STATE(943)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2258), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_function_modifiers] = STATE(3591), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2373), + [sym__type] = STATE(2065), + [sym_bracketed_type] = STATE(3474), + [sym_lifetime] = STATE(3727), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1591), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2022), + [sym_generic_type_with_turbofish] = STATE(3764), + [sym_bounded_type] = STATE(2069), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3334), + [sym_scoped_type_identifier] = STATE(1990), [sym_line_comment] = STATE(943), [sym_block_comment] = STATE(943), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(3052), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1235), - [anon_sym_QMARK] = ACTIONS(1237), - [anon_sym_u8] = ACTIONS(1603), - [anon_sym_i8] = ACTIONS(1603), - [anon_sym_u16] = ACTIONS(1603), - [anon_sym_i16] = ACTIONS(1603), - [anon_sym_u32] = ACTIONS(1603), - [anon_sym_i32] = ACTIONS(1603), - [anon_sym_u64] = ACTIONS(1603), - [anon_sym_i64] = ACTIONS(1603), - [anon_sym_u128] = ACTIONS(1603), - [anon_sym_i128] = ACTIONS(1603), - [anon_sym_isize] = ACTIONS(1603), - [anon_sym_usize] = ACTIONS(1603), - [anon_sym_f32] = ACTIONS(1603), - [anon_sym_f64] = ACTIONS(1603), - [anon_sym_bool] = ACTIONS(1603), - [anon_sym_str] = ACTIONS(1603), - [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1243), - [anon_sym_AMP] = ACTIONS(1605), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3058), - [anon_sym_async] = ACTIONS(1265), - [anon_sym_const] = ACTIONS(1265), - [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1271), - [anon_sym_for] = ACTIONS(1273), - [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1277), - [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1265), - [anon_sym_extern] = ACTIONS(1279), - [anon_sym_dyn] = ACTIONS(1283), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1619), - [sym_super] = ACTIONS(1619), - [sym_crate] = ACTIONS(1619), - [sym_metavariable] = ACTIONS(1621), + [aux_sym_function_modifiers_repeat1] = STATE(2244), + [sym_identifier] = ACTIONS(3064), + [anon_sym_LPAREN] = ACTIONS(1602), + [anon_sym_LBRACK] = ACTIONS(1604), + [anon_sym_STAR] = ACTIONS(1240), + [anon_sym_QMARK] = ACTIONS(1242), + [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_BANG] = ACTIONS(1248), + [anon_sym_AMP] = ACTIONS(1610), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1614), + [anon_sym_SQUOTE] = ACTIONS(3072), + [anon_sym_async] = ACTIONS(1270), + [anon_sym_const] = ACTIONS(1270), + [anon_sym_default] = ACTIONS(1618), + [anon_sym_fn] = ACTIONS(1276), + [anon_sym_for] = ACTIONS(1278), + [anon_sym_gen] = ACTIONS(1620), + [anon_sym_impl] = ACTIONS(1282), + [anon_sym_union] = ACTIONS(1620), + [anon_sym_unsafe] = ACTIONS(1270), + [anon_sym_extern] = ACTIONS(1284), + [anon_sym_safe] = ACTIONS(1270), + [anon_sym_dyn] = ACTIONS(1288), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1624), + [sym_super] = ACTIONS(1624), + [sym_crate] = ACTIONS(1624), + [sym_metavariable] = ACTIONS(1626), }, [STATE(944)] = { - [sym_function_modifiers] = STATE(3455), - [sym_removed_trait_bound] = STATE(1526), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(1451), - [sym_bracketed_type] = STATE(3638), - [sym_lifetime] = STATE(3517), - [sym_array_type] = STATE(1526), - [sym_for_lifetimes] = STATE(1623), - [sym_function_type] = STATE(1526), - [sym_tuple_type] = STATE(1526), - [sym_unit_type] = STATE(1526), - [sym_generic_type] = STATE(1102), - [sym_generic_type_with_turbofish] = STATE(3627), - [sym_bounded_type] = STATE(1526), - [sym_reference_type] = STATE(1526), - [sym_pointer_type] = STATE(1526), - [sym_never_type] = STATE(1526), - [sym_abstract_type] = STATE(1526), - [sym_dynamic_type] = STATE(1526), - [sym_macro_invocation] = STATE(1526), - [sym_scoped_identifier] = STATE(3304), - [sym_scoped_type_identifier] = STATE(1058), + [sym_function_modifiers] = STATE(3591), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2373), + [sym__type] = STATE(3069), + [sym_bracketed_type] = STATE(3474), + [sym_lifetime] = STATE(3727), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1591), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2022), + [sym_generic_type_with_turbofish] = STATE(3764), + [sym_bounded_type] = STATE(2069), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3334), + [sym_scoped_type_identifier] = STATE(1990), [sym_line_comment] = STATE(944), [sym_block_comment] = STATE(944), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(3182), - [anon_sym_LPAREN] = ACTIONS(3184), - [anon_sym_LBRACK] = ACTIONS(3186), - [anon_sym_STAR] = ACTIONS(3190), - [anon_sym_QMARK] = ACTIONS(3192), - [anon_sym_u8] = ACTIONS(3194), - [anon_sym_i8] = ACTIONS(3194), - [anon_sym_u16] = ACTIONS(3194), - [anon_sym_i16] = ACTIONS(3194), - [anon_sym_u32] = ACTIONS(3194), - [anon_sym_i32] = ACTIONS(3194), - [anon_sym_u64] = ACTIONS(3194), - [anon_sym_i64] = ACTIONS(3194), - [anon_sym_u128] = ACTIONS(3194), - [anon_sym_i128] = ACTIONS(3194), - [anon_sym_isize] = ACTIONS(3194), - [anon_sym_usize] = ACTIONS(3194), - [anon_sym_f32] = ACTIONS(3194), - [anon_sym_f64] = ACTIONS(3194), - [anon_sym_bool] = ACTIONS(3194), - [anon_sym_str] = ACTIONS(3194), - [anon_sym_char] = ACTIONS(3194), - [anon_sym_BANG] = ACTIONS(3196), - [anon_sym_AMP] = ACTIONS(3198), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3200), - [anon_sym_SQUOTE] = ACTIONS(3058), - [anon_sym_async] = ACTIONS(1265), - [anon_sym_const] = ACTIONS(1265), - [anon_sym_default] = ACTIONS(3202), - [anon_sym_fn] = ACTIONS(3204), - [anon_sym_for] = ACTIONS(1273), - [anon_sym_gen] = ACTIONS(3206), - [anon_sym_impl] = ACTIONS(3208), - [anon_sym_union] = ACTIONS(3206), - [anon_sym_unsafe] = ACTIONS(1265), - [anon_sym_extern] = ACTIONS(1279), - [anon_sym_dyn] = ACTIONS(3210), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3214), - [sym_super] = ACTIONS(3214), - [sym_crate] = ACTIONS(3214), - [sym_metavariable] = ACTIONS(3216), + [aux_sym_function_modifiers_repeat1] = STATE(2244), + [sym_identifier] = ACTIONS(3064), + [anon_sym_LPAREN] = ACTIONS(1602), + [anon_sym_LBRACK] = ACTIONS(1604), + [anon_sym_STAR] = ACTIONS(1240), + [anon_sym_QMARK] = ACTIONS(1242), + [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_BANG] = ACTIONS(1248), + [anon_sym_AMP] = ACTIONS(1610), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1614), + [anon_sym_SQUOTE] = ACTIONS(3072), + [anon_sym_async] = ACTIONS(1270), + [anon_sym_const] = ACTIONS(1270), + [anon_sym_default] = ACTIONS(1618), + [anon_sym_fn] = ACTIONS(1276), + [anon_sym_for] = ACTIONS(1278), + [anon_sym_gen] = ACTIONS(1620), + [anon_sym_impl] = ACTIONS(1282), + [anon_sym_union] = ACTIONS(1620), + [anon_sym_unsafe] = ACTIONS(1270), + [anon_sym_extern] = ACTIONS(1284), + [anon_sym_safe] = ACTIONS(1270), + [anon_sym_dyn] = ACTIONS(1288), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1624), + [sym_super] = ACTIONS(1624), + [sym_crate] = ACTIONS(1624), + [sym_metavariable] = ACTIONS(1626), }, [STATE(945)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(3158), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_function_modifiers] = STATE(3591), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2373), + [sym__type] = STATE(3267), + [sym_bracketed_type] = STATE(3474), + [sym_lifetime] = STATE(3727), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1591), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2022), + [sym_generic_type_with_turbofish] = STATE(3764), + [sym_bounded_type] = STATE(2069), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3334), + [sym_scoped_type_identifier] = STATE(1990), [sym_line_comment] = STATE(945), [sym_block_comment] = STATE(945), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(3052), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1235), - [anon_sym_QMARK] = ACTIONS(1237), - [anon_sym_u8] = ACTIONS(1603), - [anon_sym_i8] = ACTIONS(1603), - [anon_sym_u16] = ACTIONS(1603), - [anon_sym_i16] = ACTIONS(1603), - [anon_sym_u32] = ACTIONS(1603), - [anon_sym_i32] = ACTIONS(1603), - [anon_sym_u64] = ACTIONS(1603), - [anon_sym_i64] = ACTIONS(1603), - [anon_sym_u128] = ACTIONS(1603), - [anon_sym_i128] = ACTIONS(1603), - [anon_sym_isize] = ACTIONS(1603), - [anon_sym_usize] = ACTIONS(1603), - [anon_sym_f32] = ACTIONS(1603), - [anon_sym_f64] = ACTIONS(1603), - [anon_sym_bool] = ACTIONS(1603), - [anon_sym_str] = ACTIONS(1603), - [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1243), - [anon_sym_AMP] = ACTIONS(1605), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3058), - [anon_sym_async] = ACTIONS(1265), - [anon_sym_const] = ACTIONS(1265), - [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1271), - [anon_sym_for] = ACTIONS(1273), - [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1277), - [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1265), - [anon_sym_extern] = ACTIONS(1279), - [anon_sym_dyn] = ACTIONS(1283), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1619), - [sym_super] = ACTIONS(1619), - [sym_crate] = ACTIONS(1619), - [sym_metavariable] = ACTIONS(1621), + [aux_sym_function_modifiers_repeat1] = STATE(2244), + [sym_identifier] = ACTIONS(3064), + [anon_sym_LPAREN] = ACTIONS(1602), + [anon_sym_LBRACK] = ACTIONS(1604), + [anon_sym_STAR] = ACTIONS(1240), + [anon_sym_QMARK] = ACTIONS(1242), + [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_BANG] = ACTIONS(1248), + [anon_sym_AMP] = ACTIONS(1610), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1614), + [anon_sym_SQUOTE] = ACTIONS(3072), + [anon_sym_async] = ACTIONS(1270), + [anon_sym_const] = ACTIONS(1270), + [anon_sym_default] = ACTIONS(1618), + [anon_sym_fn] = ACTIONS(1276), + [anon_sym_for] = ACTIONS(1278), + [anon_sym_gen] = ACTIONS(1620), + [anon_sym_impl] = ACTIONS(1282), + [anon_sym_union] = ACTIONS(1620), + [anon_sym_unsafe] = ACTIONS(1270), + [anon_sym_extern] = ACTIONS(1284), + [anon_sym_safe] = ACTIONS(1270), + [anon_sym_dyn] = ACTIONS(1288), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1624), + [sym_super] = ACTIONS(1624), + [sym_crate] = ACTIONS(1624), + [sym_metavariable] = ACTIONS(1626), }, [STATE(946)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(3162), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_function_modifiers] = STATE(3591), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2373), + [sym__type] = STATE(3438), + [sym_bracketed_type] = STATE(3474), + [sym_lifetime] = STATE(3727), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1591), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2022), + [sym_generic_type_with_turbofish] = STATE(3764), + [sym_bounded_type] = STATE(2069), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3334), + [sym_scoped_type_identifier] = STATE(1990), [sym_line_comment] = STATE(946), [sym_block_comment] = STATE(946), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(3052), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1235), - [anon_sym_QMARK] = ACTIONS(1237), - [anon_sym_u8] = ACTIONS(1603), - [anon_sym_i8] = ACTIONS(1603), - [anon_sym_u16] = ACTIONS(1603), - [anon_sym_i16] = ACTIONS(1603), - [anon_sym_u32] = ACTIONS(1603), - [anon_sym_i32] = ACTIONS(1603), - [anon_sym_u64] = ACTIONS(1603), - [anon_sym_i64] = ACTIONS(1603), - [anon_sym_u128] = ACTIONS(1603), - [anon_sym_i128] = ACTIONS(1603), - [anon_sym_isize] = ACTIONS(1603), - [anon_sym_usize] = ACTIONS(1603), - [anon_sym_f32] = ACTIONS(1603), - [anon_sym_f64] = ACTIONS(1603), - [anon_sym_bool] = ACTIONS(1603), - [anon_sym_str] = ACTIONS(1603), - [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1243), - [anon_sym_AMP] = ACTIONS(1605), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3058), - [anon_sym_async] = ACTIONS(1265), - [anon_sym_const] = ACTIONS(1265), - [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1271), - [anon_sym_for] = ACTIONS(1273), - [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1277), - [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1265), - [anon_sym_extern] = ACTIONS(1279), - [anon_sym_dyn] = ACTIONS(1283), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1619), - [sym_super] = ACTIONS(1619), - [sym_crate] = ACTIONS(1619), - [sym_metavariable] = ACTIONS(1621), + [aux_sym_function_modifiers_repeat1] = STATE(2244), + [sym_identifier] = ACTIONS(3064), + [anon_sym_LPAREN] = ACTIONS(1602), + [anon_sym_LBRACK] = ACTIONS(1604), + [anon_sym_STAR] = ACTIONS(1240), + [anon_sym_QMARK] = ACTIONS(1242), + [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_BANG] = ACTIONS(1248), + [anon_sym_AMP] = ACTIONS(1610), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1614), + [anon_sym_SQUOTE] = ACTIONS(3072), + [anon_sym_async] = ACTIONS(1270), + [anon_sym_const] = ACTIONS(1270), + [anon_sym_default] = ACTIONS(1618), + [anon_sym_fn] = ACTIONS(1276), + [anon_sym_for] = ACTIONS(1278), + [anon_sym_gen] = ACTIONS(1620), + [anon_sym_impl] = ACTIONS(1282), + [anon_sym_union] = ACTIONS(1620), + [anon_sym_unsafe] = ACTIONS(1270), + [anon_sym_extern] = ACTIONS(1284), + [anon_sym_safe] = ACTIONS(1270), + [anon_sym_dyn] = ACTIONS(1288), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1624), + [sym_super] = ACTIONS(1624), + [sym_crate] = ACTIONS(1624), + [sym_metavariable] = ACTIONS(1626), }, [STATE(947)] = { - [sym_function_modifiers] = STATE(3455), - [sym_removed_trait_bound] = STATE(1526), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(1485), - [sym_bracketed_type] = STATE(3638), - [sym_lifetime] = STATE(3517), - [sym_array_type] = STATE(1526), - [sym_for_lifetimes] = STATE(1623), - [sym_function_type] = STATE(1526), - [sym_tuple_type] = STATE(1526), - [sym_unit_type] = STATE(1526), - [sym_generic_type] = STATE(1102), - [sym_generic_type_with_turbofish] = STATE(3627), - [sym_bounded_type] = STATE(1526), - [sym_reference_type] = STATE(1526), - [sym_pointer_type] = STATE(1526), - [sym_never_type] = STATE(1526), - [sym_abstract_type] = STATE(1526), - [sym_dynamic_type] = STATE(1526), - [sym_macro_invocation] = STATE(1526), - [sym_scoped_identifier] = STATE(3304), - [sym_scoped_type_identifier] = STATE(1058), + [sym_function_modifiers] = STATE(3591), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2373), + [sym__type] = STATE(3123), + [sym_bracketed_type] = STATE(3474), + [sym_lifetime] = STATE(3727), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1591), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2022), + [sym_generic_type_with_turbofish] = STATE(3764), + [sym_bounded_type] = STATE(2069), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3334), + [sym_scoped_type_identifier] = STATE(1990), [sym_line_comment] = STATE(947), [sym_block_comment] = STATE(947), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(3182), - [anon_sym_LPAREN] = ACTIONS(3184), - [anon_sym_LBRACK] = ACTIONS(3186), - [anon_sym_STAR] = ACTIONS(3190), - [anon_sym_QMARK] = ACTIONS(3192), - [anon_sym_u8] = ACTIONS(3194), - [anon_sym_i8] = ACTIONS(3194), - [anon_sym_u16] = ACTIONS(3194), - [anon_sym_i16] = ACTIONS(3194), - [anon_sym_u32] = ACTIONS(3194), - [anon_sym_i32] = ACTIONS(3194), - [anon_sym_u64] = ACTIONS(3194), - [anon_sym_i64] = ACTIONS(3194), - [anon_sym_u128] = ACTIONS(3194), - [anon_sym_i128] = ACTIONS(3194), - [anon_sym_isize] = ACTIONS(3194), - [anon_sym_usize] = ACTIONS(3194), - [anon_sym_f32] = ACTIONS(3194), - [anon_sym_f64] = ACTIONS(3194), - [anon_sym_bool] = ACTIONS(3194), - [anon_sym_str] = ACTIONS(3194), - [anon_sym_char] = ACTIONS(3194), - [anon_sym_BANG] = ACTIONS(3196), - [anon_sym_AMP] = ACTIONS(3198), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3200), - [anon_sym_SQUOTE] = ACTIONS(3058), - [anon_sym_async] = ACTIONS(1265), - [anon_sym_const] = ACTIONS(1265), - [anon_sym_default] = ACTIONS(3202), - [anon_sym_fn] = ACTIONS(3204), - [anon_sym_for] = ACTIONS(1273), - [anon_sym_gen] = ACTIONS(3206), - [anon_sym_impl] = ACTIONS(3208), - [anon_sym_union] = ACTIONS(3206), - [anon_sym_unsafe] = ACTIONS(1265), - [anon_sym_extern] = ACTIONS(1279), - [anon_sym_dyn] = ACTIONS(3210), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3214), - [sym_super] = ACTIONS(3214), - [sym_crate] = ACTIONS(3214), - [sym_metavariable] = ACTIONS(3216), + [aux_sym_function_modifiers_repeat1] = STATE(2244), + [sym_identifier] = ACTIONS(3064), + [anon_sym_LPAREN] = ACTIONS(1602), + [anon_sym_LBRACK] = ACTIONS(1604), + [anon_sym_STAR] = ACTIONS(1240), + [anon_sym_QMARK] = ACTIONS(1242), + [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_BANG] = ACTIONS(1248), + [anon_sym_AMP] = ACTIONS(1610), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1614), + [anon_sym_SQUOTE] = ACTIONS(3072), + [anon_sym_async] = ACTIONS(1270), + [anon_sym_const] = ACTIONS(1270), + [anon_sym_default] = ACTIONS(1618), + [anon_sym_fn] = ACTIONS(1276), + [anon_sym_for] = ACTIONS(1278), + [anon_sym_gen] = ACTIONS(1620), + [anon_sym_impl] = ACTIONS(1282), + [anon_sym_union] = ACTIONS(1620), + [anon_sym_unsafe] = ACTIONS(1270), + [anon_sym_extern] = ACTIONS(1284), + [anon_sym_safe] = ACTIONS(1270), + [anon_sym_dyn] = ACTIONS(1288), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1624), + [sym_super] = ACTIONS(1624), + [sym_crate] = ACTIONS(1624), + [sym_metavariable] = ACTIONS(1626), }, [STATE(948)] = { - [sym_function_modifiers] = STATE(3595), - [sym_removed_trait_bound] = STATE(1787), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(1713), - [sym_bracketed_type] = STATE(3654), - [sym_lifetime] = STATE(3732), - [sym_array_type] = STATE(1787), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(1787), - [sym_tuple_type] = STATE(1787), - [sym_unit_type] = STATE(1787), - [sym_generic_type] = STATE(1646), - [sym_generic_type_with_turbofish] = STATE(3645), - [sym_bounded_type] = STATE(1787), - [sym_reference_type] = STATE(1787), - [sym_pointer_type] = STATE(1787), - [sym_never_type] = STATE(1787), - [sym_abstract_type] = STATE(1787), - [sym_dynamic_type] = STATE(1787), - [sym_macro_invocation] = STATE(1787), - [sym_scoped_identifier] = STATE(3373), - [sym_scoped_type_identifier] = STATE(1590), + [sym_function_modifiers] = STATE(3591), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2373), + [sym__type] = STATE(2316), + [sym_bracketed_type] = STATE(3474), + [sym_lifetime] = STATE(3727), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1591), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2022), + [sym_generic_type_with_turbofish] = STATE(3764), + [sym_bounded_type] = STATE(2069), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3334), + [sym_scoped_type_identifier] = STATE(1990), [sym_line_comment] = STATE(948), [sym_block_comment] = STATE(948), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(3144), - [anon_sym_LPAREN] = ACTIONS(3146), - [anon_sym_LBRACK] = ACTIONS(3148), - [anon_sym_STAR] = ACTIONS(3152), - [anon_sym_QMARK] = ACTIONS(3154), - [anon_sym_u8] = ACTIONS(3156), - [anon_sym_i8] = ACTIONS(3156), - [anon_sym_u16] = ACTIONS(3156), - [anon_sym_i16] = ACTIONS(3156), - [anon_sym_u32] = ACTIONS(3156), - [anon_sym_i32] = ACTIONS(3156), - [anon_sym_u64] = ACTIONS(3156), - [anon_sym_i64] = ACTIONS(3156), - [anon_sym_u128] = ACTIONS(3156), - [anon_sym_i128] = ACTIONS(3156), - [anon_sym_isize] = ACTIONS(3156), - [anon_sym_usize] = ACTIONS(3156), - [anon_sym_f32] = ACTIONS(3156), - [anon_sym_f64] = ACTIONS(3156), - [anon_sym_bool] = ACTIONS(3156), - [anon_sym_str] = ACTIONS(3156), - [anon_sym_char] = ACTIONS(3156), - [anon_sym_BANG] = ACTIONS(3158), - [anon_sym_AMP] = ACTIONS(3160), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3162), - [anon_sym_SQUOTE] = ACTIONS(3058), - [anon_sym_async] = ACTIONS(1265), - [anon_sym_const] = ACTIONS(1265), - [anon_sym_default] = ACTIONS(3164), - [anon_sym_fn] = ACTIONS(3166), - [anon_sym_for] = ACTIONS(1273), - [anon_sym_gen] = ACTIONS(3168), - [anon_sym_impl] = ACTIONS(3170), - [anon_sym_union] = ACTIONS(3168), - [anon_sym_unsafe] = ACTIONS(1265), - [anon_sym_extern] = ACTIONS(1279), - [anon_sym_dyn] = ACTIONS(3172), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3176), - [sym_super] = ACTIONS(3176), - [sym_crate] = ACTIONS(3176), - [sym_metavariable] = ACTIONS(3178), + [aux_sym_function_modifiers_repeat1] = STATE(2244), + [sym_identifier] = ACTIONS(3064), + [anon_sym_LPAREN] = ACTIONS(1602), + [anon_sym_LBRACK] = ACTIONS(1604), + [anon_sym_STAR] = ACTIONS(1240), + [anon_sym_QMARK] = ACTIONS(1242), + [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_BANG] = ACTIONS(1248), + [anon_sym_AMP] = ACTIONS(1610), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1614), + [anon_sym_SQUOTE] = ACTIONS(3072), + [anon_sym_async] = ACTIONS(1270), + [anon_sym_const] = ACTIONS(1270), + [anon_sym_default] = ACTIONS(1618), + [anon_sym_fn] = ACTIONS(1276), + [anon_sym_for] = ACTIONS(1278), + [anon_sym_gen] = ACTIONS(1620), + [anon_sym_impl] = ACTIONS(1282), + [anon_sym_union] = ACTIONS(1620), + [anon_sym_unsafe] = ACTIONS(1270), + [anon_sym_extern] = ACTIONS(1284), + [anon_sym_safe] = ACTIONS(1270), + [anon_sym_dyn] = ACTIONS(1288), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1624), + [sym_super] = ACTIONS(1624), + [sym_crate] = ACTIONS(1624), + [sym_metavariable] = ACTIONS(1626), }, [STATE(949)] = { - [sym_function_modifiers] = STATE(3595), - [sym_removed_trait_bound] = STATE(1787), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(1715), - [sym_bracketed_type] = STATE(3654), - [sym_lifetime] = STATE(3732), - [sym_array_type] = STATE(1787), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(1787), - [sym_tuple_type] = STATE(1787), - [sym_unit_type] = STATE(1787), - [sym_generic_type] = STATE(1646), - [sym_generic_type_with_turbofish] = STATE(3645), - [sym_bounded_type] = STATE(1787), - [sym_reference_type] = STATE(1787), - [sym_pointer_type] = STATE(1787), - [sym_never_type] = STATE(1787), - [sym_abstract_type] = STATE(1787), - [sym_dynamic_type] = STATE(1787), - [sym_macro_invocation] = STATE(1787), - [sym_scoped_identifier] = STATE(3373), - [sym_scoped_type_identifier] = STATE(1590), + [sym_function_modifiers] = STATE(3591), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2373), + [sym__type] = STATE(2967), + [sym_bracketed_type] = STATE(3474), + [sym_lifetime] = STATE(3727), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1591), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2022), + [sym_generic_type_with_turbofish] = STATE(3764), + [sym_bounded_type] = STATE(2069), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3334), + [sym_scoped_type_identifier] = STATE(1990), [sym_line_comment] = STATE(949), [sym_block_comment] = STATE(949), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(3144), - [anon_sym_LPAREN] = ACTIONS(3146), - [anon_sym_LBRACK] = ACTIONS(3148), - [anon_sym_STAR] = ACTIONS(3152), - [anon_sym_QMARK] = ACTIONS(3154), - [anon_sym_u8] = ACTIONS(3156), - [anon_sym_i8] = ACTIONS(3156), - [anon_sym_u16] = ACTIONS(3156), - [anon_sym_i16] = ACTIONS(3156), - [anon_sym_u32] = ACTIONS(3156), - [anon_sym_i32] = ACTIONS(3156), - [anon_sym_u64] = ACTIONS(3156), - [anon_sym_i64] = ACTIONS(3156), - [anon_sym_u128] = ACTIONS(3156), - [anon_sym_i128] = ACTIONS(3156), - [anon_sym_isize] = ACTIONS(3156), - [anon_sym_usize] = ACTIONS(3156), - [anon_sym_f32] = ACTIONS(3156), - [anon_sym_f64] = ACTIONS(3156), - [anon_sym_bool] = ACTIONS(3156), - [anon_sym_str] = ACTIONS(3156), - [anon_sym_char] = ACTIONS(3156), - [anon_sym_BANG] = ACTIONS(3158), - [anon_sym_AMP] = ACTIONS(3160), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3162), - [anon_sym_SQUOTE] = ACTIONS(3058), - [anon_sym_async] = ACTIONS(1265), - [anon_sym_const] = ACTIONS(1265), - [anon_sym_default] = ACTIONS(3164), - [anon_sym_fn] = ACTIONS(3166), - [anon_sym_for] = ACTIONS(1273), - [anon_sym_gen] = ACTIONS(3168), - [anon_sym_impl] = ACTIONS(3170), - [anon_sym_union] = ACTIONS(3168), - [anon_sym_unsafe] = ACTIONS(1265), - [anon_sym_extern] = ACTIONS(1279), - [anon_sym_dyn] = ACTIONS(3172), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3176), - [sym_super] = ACTIONS(3176), - [sym_crate] = ACTIONS(3176), - [sym_metavariable] = ACTIONS(3178), + [aux_sym_function_modifiers_repeat1] = STATE(2244), + [sym_identifier] = ACTIONS(3064), + [anon_sym_LPAREN] = ACTIONS(1602), + [anon_sym_LBRACK] = ACTIONS(1604), + [anon_sym_STAR] = ACTIONS(1240), + [anon_sym_QMARK] = ACTIONS(1242), + [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_BANG] = ACTIONS(1248), + [anon_sym_AMP] = ACTIONS(1610), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1614), + [anon_sym_SQUOTE] = ACTIONS(3072), + [anon_sym_async] = ACTIONS(1270), + [anon_sym_const] = ACTIONS(1270), + [anon_sym_default] = ACTIONS(1618), + [anon_sym_fn] = ACTIONS(1276), + [anon_sym_for] = ACTIONS(1278), + [anon_sym_gen] = ACTIONS(1620), + [anon_sym_impl] = ACTIONS(1282), + [anon_sym_union] = ACTIONS(1620), + [anon_sym_unsafe] = ACTIONS(1270), + [anon_sym_extern] = ACTIONS(1284), + [anon_sym_safe] = ACTIONS(1270), + [anon_sym_dyn] = ACTIONS(1288), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1624), + [sym_super] = ACTIONS(1624), + [sym_crate] = ACTIONS(1624), + [sym_metavariable] = ACTIONS(1626), }, [STATE(950)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(3235), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_function_modifiers] = STATE(3624), + [sym_removed_trait_bound] = STATE(1721), + [sym_extern_modifier] = STATE(2373), + [sym__type] = STATE(1823), + [sym_bracketed_type] = STATE(3683), + [sym_lifetime] = STATE(3755), + [sym_array_type] = STATE(1721), + [sym_for_lifetimes] = STATE(1605), + [sym_function_type] = STATE(1721), + [sym_tuple_type] = STATE(1721), + [sym_unit_type] = STATE(1721), + [sym_generic_type] = STATE(1679), + [sym_generic_type_with_turbofish] = STATE(3674), + [sym_bounded_type] = STATE(1721), + [sym_reference_type] = STATE(1721), + [sym_pointer_type] = STATE(1721), + [sym_never_type] = STATE(1721), + [sym_abstract_type] = STATE(1721), + [sym_dynamic_type] = STATE(1721), + [sym_macro_invocation] = STATE(1721), + [sym_scoped_identifier] = STATE(3408), + [sym_scoped_type_identifier] = STATE(1595), [sym_line_comment] = STATE(950), [sym_block_comment] = STATE(950), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(3052), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1235), - [anon_sym_QMARK] = ACTIONS(1237), - [anon_sym_u8] = ACTIONS(1603), - [anon_sym_i8] = ACTIONS(1603), - [anon_sym_u16] = ACTIONS(1603), - [anon_sym_i16] = ACTIONS(1603), - [anon_sym_u32] = ACTIONS(1603), - [anon_sym_i32] = ACTIONS(1603), - [anon_sym_u64] = ACTIONS(1603), - [anon_sym_i64] = ACTIONS(1603), - [anon_sym_u128] = ACTIONS(1603), - [anon_sym_i128] = ACTIONS(1603), - [anon_sym_isize] = ACTIONS(1603), - [anon_sym_usize] = ACTIONS(1603), - [anon_sym_f32] = ACTIONS(1603), - [anon_sym_f64] = ACTIONS(1603), - [anon_sym_bool] = ACTIONS(1603), - [anon_sym_str] = ACTIONS(1603), - [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1243), - [anon_sym_AMP] = ACTIONS(1605), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3058), - [anon_sym_async] = ACTIONS(1265), - [anon_sym_const] = ACTIONS(1265), - [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1271), - [anon_sym_for] = ACTIONS(1273), - [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1277), - [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1265), - [anon_sym_extern] = ACTIONS(1279), - [anon_sym_dyn] = ACTIONS(1283), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1619), - [sym_super] = ACTIONS(1619), - [sym_crate] = ACTIONS(1619), - [sym_metavariable] = ACTIONS(1621), + [aux_sym_function_modifiers_repeat1] = STATE(2244), + [sym_identifier] = ACTIONS(3172), + [anon_sym_LPAREN] = ACTIONS(3174), + [anon_sym_LBRACK] = ACTIONS(3176), + [anon_sym_STAR] = ACTIONS(3180), + [anon_sym_QMARK] = ACTIONS(3182), + [anon_sym_u8] = ACTIONS(3184), + [anon_sym_i8] = ACTIONS(3184), + [anon_sym_u16] = ACTIONS(3184), + [anon_sym_i16] = ACTIONS(3184), + [anon_sym_u32] = ACTIONS(3184), + [anon_sym_i32] = ACTIONS(3184), + [anon_sym_u64] = ACTIONS(3184), + [anon_sym_i64] = ACTIONS(3184), + [anon_sym_u128] = ACTIONS(3184), + [anon_sym_i128] = ACTIONS(3184), + [anon_sym_isize] = ACTIONS(3184), + [anon_sym_usize] = ACTIONS(3184), + [anon_sym_f32] = ACTIONS(3184), + [anon_sym_f64] = ACTIONS(3184), + [anon_sym_bool] = ACTIONS(3184), + [anon_sym_str] = ACTIONS(3184), + [anon_sym_char] = ACTIONS(3184), + [anon_sym_BANG] = ACTIONS(3186), + [anon_sym_AMP] = ACTIONS(3188), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3190), + [anon_sym_SQUOTE] = ACTIONS(3072), + [anon_sym_async] = ACTIONS(1270), + [anon_sym_const] = ACTIONS(1270), + [anon_sym_default] = ACTIONS(3192), + [anon_sym_fn] = ACTIONS(3194), + [anon_sym_for] = ACTIONS(1278), + [anon_sym_gen] = ACTIONS(3196), + [anon_sym_impl] = ACTIONS(3198), + [anon_sym_union] = ACTIONS(3196), + [anon_sym_unsafe] = ACTIONS(1270), + [anon_sym_extern] = ACTIONS(1284), + [anon_sym_safe] = ACTIONS(1270), + [anon_sym_dyn] = ACTIONS(3200), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(3204), + [sym_super] = ACTIONS(3204), + [sym_crate] = ACTIONS(3204), + [sym_metavariable] = ACTIONS(3206), }, [STATE(951)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2402), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2446), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(2240), + [sym_function_modifiers] = STATE(3591), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2373), + [sym__type] = STATE(3094), + [sym_bracketed_type] = STATE(3474), + [sym_lifetime] = STATE(3727), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1591), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2022), + [sym_generic_type_with_turbofish] = STATE(3764), + [sym_bounded_type] = STATE(2069), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3334), + [sym_scoped_type_identifier] = STATE(1990), [sym_line_comment] = STATE(951), [sym_block_comment] = STATE(951), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(3274), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1235), - [anon_sym_QMARK] = ACTIONS(1237), - [anon_sym_u8] = ACTIONS(1603), - [anon_sym_i8] = ACTIONS(1603), - [anon_sym_u16] = ACTIONS(1603), - [anon_sym_i16] = ACTIONS(1603), - [anon_sym_u32] = ACTIONS(1603), - [anon_sym_i32] = ACTIONS(1603), - [anon_sym_u64] = ACTIONS(1603), - [anon_sym_i64] = ACTIONS(1603), - [anon_sym_u128] = ACTIONS(1603), - [anon_sym_i128] = ACTIONS(1603), - [anon_sym_isize] = ACTIONS(1603), - [anon_sym_usize] = ACTIONS(1603), - [anon_sym_f32] = ACTIONS(1603), - [anon_sym_f64] = ACTIONS(1603), - [anon_sym_bool] = ACTIONS(1603), - [anon_sym_str] = ACTIONS(1603), - [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(3276), - [anon_sym_AMP] = ACTIONS(1605), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3058), - [anon_sym_async] = ACTIONS(1265), - [anon_sym_const] = ACTIONS(1265), - [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1271), - [anon_sym_for] = ACTIONS(1273), - [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1277), - [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1265), - [anon_sym_extern] = ACTIONS(1279), - [anon_sym_dyn] = ACTIONS(1283), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1619), - [sym_super] = ACTIONS(1619), - [sym_crate] = ACTIONS(1619), - [sym_metavariable] = ACTIONS(1621), + [aux_sym_function_modifiers_repeat1] = STATE(2244), + [sym_identifier] = ACTIONS(3064), + [anon_sym_LPAREN] = ACTIONS(1602), + [anon_sym_LBRACK] = ACTIONS(1604), + [anon_sym_STAR] = ACTIONS(1240), + [anon_sym_QMARK] = ACTIONS(1242), + [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_BANG] = ACTIONS(1248), + [anon_sym_AMP] = ACTIONS(1610), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1614), + [anon_sym_SQUOTE] = ACTIONS(3072), + [anon_sym_async] = ACTIONS(1270), + [anon_sym_const] = ACTIONS(1270), + [anon_sym_default] = ACTIONS(1618), + [anon_sym_fn] = ACTIONS(1276), + [anon_sym_for] = ACTIONS(1278), + [anon_sym_gen] = ACTIONS(1620), + [anon_sym_impl] = ACTIONS(1282), + [anon_sym_union] = ACTIONS(1620), + [anon_sym_unsafe] = ACTIONS(1270), + [anon_sym_extern] = ACTIONS(1284), + [anon_sym_safe] = ACTIONS(1270), + [anon_sym_dyn] = ACTIONS(1288), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1624), + [sym_super] = ACTIONS(1624), + [sym_crate] = ACTIONS(1624), + [sym_metavariable] = ACTIONS(1626), }, [STATE(952)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2632), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_function_modifiers] = STATE(3624), + [sym_removed_trait_bound] = STATE(1721), + [sym_extern_modifier] = STATE(2373), + [sym__type] = STATE(1824), + [sym_bracketed_type] = STATE(3683), + [sym_lifetime] = STATE(3755), + [sym_array_type] = STATE(1721), + [sym_for_lifetimes] = STATE(1605), + [sym_function_type] = STATE(1721), + [sym_tuple_type] = STATE(1721), + [sym_unit_type] = STATE(1721), + [sym_generic_type] = STATE(1679), + [sym_generic_type_with_turbofish] = STATE(3674), + [sym_bounded_type] = STATE(1721), + [sym_reference_type] = STATE(1721), + [sym_pointer_type] = STATE(1721), + [sym_never_type] = STATE(1721), + [sym_abstract_type] = STATE(1721), + [sym_dynamic_type] = STATE(1721), + [sym_macro_invocation] = STATE(1721), + [sym_scoped_identifier] = STATE(3408), + [sym_scoped_type_identifier] = STATE(1595), [sym_line_comment] = STATE(952), [sym_block_comment] = STATE(952), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(3052), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1235), - [anon_sym_QMARK] = ACTIONS(1237), - [anon_sym_u8] = ACTIONS(1603), - [anon_sym_i8] = ACTIONS(1603), - [anon_sym_u16] = ACTIONS(1603), - [anon_sym_i16] = ACTIONS(1603), - [anon_sym_u32] = ACTIONS(1603), - [anon_sym_i32] = ACTIONS(1603), - [anon_sym_u64] = ACTIONS(1603), - [anon_sym_i64] = ACTIONS(1603), - [anon_sym_u128] = ACTIONS(1603), - [anon_sym_i128] = ACTIONS(1603), - [anon_sym_isize] = ACTIONS(1603), - [anon_sym_usize] = ACTIONS(1603), - [anon_sym_f32] = ACTIONS(1603), - [anon_sym_f64] = ACTIONS(1603), - [anon_sym_bool] = ACTIONS(1603), - [anon_sym_str] = ACTIONS(1603), - [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1243), - [anon_sym_AMP] = ACTIONS(1605), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3058), - [anon_sym_async] = ACTIONS(1265), - [anon_sym_const] = ACTIONS(1265), - [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1271), - [anon_sym_for] = ACTIONS(1273), - [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1277), - [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1265), - [anon_sym_extern] = ACTIONS(1279), - [anon_sym_dyn] = ACTIONS(1283), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1619), - [sym_super] = ACTIONS(1619), - [sym_crate] = ACTIONS(1619), - [sym_metavariable] = ACTIONS(1621), + [aux_sym_function_modifiers_repeat1] = STATE(2244), + [sym_identifier] = ACTIONS(3172), + [anon_sym_LPAREN] = ACTIONS(3174), + [anon_sym_LBRACK] = ACTIONS(3176), + [anon_sym_STAR] = ACTIONS(3180), + [anon_sym_QMARK] = ACTIONS(3182), + [anon_sym_u8] = ACTIONS(3184), + [anon_sym_i8] = ACTIONS(3184), + [anon_sym_u16] = ACTIONS(3184), + [anon_sym_i16] = ACTIONS(3184), + [anon_sym_u32] = ACTIONS(3184), + [anon_sym_i32] = ACTIONS(3184), + [anon_sym_u64] = ACTIONS(3184), + [anon_sym_i64] = ACTIONS(3184), + [anon_sym_u128] = ACTIONS(3184), + [anon_sym_i128] = ACTIONS(3184), + [anon_sym_isize] = ACTIONS(3184), + [anon_sym_usize] = ACTIONS(3184), + [anon_sym_f32] = ACTIONS(3184), + [anon_sym_f64] = ACTIONS(3184), + [anon_sym_bool] = ACTIONS(3184), + [anon_sym_str] = ACTIONS(3184), + [anon_sym_char] = ACTIONS(3184), + [anon_sym_BANG] = ACTIONS(3186), + [anon_sym_AMP] = ACTIONS(3188), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3190), + [anon_sym_SQUOTE] = ACTIONS(3072), + [anon_sym_async] = ACTIONS(1270), + [anon_sym_const] = ACTIONS(1270), + [anon_sym_default] = ACTIONS(3192), + [anon_sym_fn] = ACTIONS(3194), + [anon_sym_for] = ACTIONS(1278), + [anon_sym_gen] = ACTIONS(3196), + [anon_sym_impl] = ACTIONS(3198), + [anon_sym_union] = ACTIONS(3196), + [anon_sym_unsafe] = ACTIONS(1270), + [anon_sym_extern] = ACTIONS(1284), + [anon_sym_safe] = ACTIONS(1270), + [anon_sym_dyn] = ACTIONS(3200), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(3204), + [sym_super] = ACTIONS(3204), + [sym_crate] = ACTIONS(3204), + [sym_metavariable] = ACTIONS(3206), }, [STATE(953)] = { - [sym_function_modifiers] = STATE(3455), - [sym_removed_trait_bound] = STATE(1526), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(1497), - [sym_bracketed_type] = STATE(3638), - [sym_lifetime] = STATE(3517), - [sym_array_type] = STATE(1526), - [sym_for_lifetimes] = STATE(1623), - [sym_function_type] = STATE(1526), - [sym_tuple_type] = STATE(1526), - [sym_unit_type] = STATE(1526), - [sym_generic_type] = STATE(1102), - [sym_generic_type_with_turbofish] = STATE(3627), - [sym_bounded_type] = STATE(1526), - [sym_reference_type] = STATE(1526), - [sym_pointer_type] = STATE(1526), - [sym_never_type] = STATE(1526), - [sym_abstract_type] = STATE(1526), - [sym_dynamic_type] = STATE(1526), - [sym_macro_invocation] = STATE(1526), - [sym_scoped_identifier] = STATE(3304), - [sym_scoped_type_identifier] = STATE(1058), + [sym_function_modifiers] = STATE(3624), + [sym_removed_trait_bound] = STATE(1721), + [sym_extern_modifier] = STATE(2373), + [sym__type] = STATE(1766), + [sym_bracketed_type] = STATE(3683), + [sym_lifetime] = STATE(3755), + [sym_array_type] = STATE(1721), + [sym_for_lifetimes] = STATE(1605), + [sym_function_type] = STATE(1721), + [sym_tuple_type] = STATE(1721), + [sym_unit_type] = STATE(1721), + [sym_generic_type] = STATE(1679), + [sym_generic_type_with_turbofish] = STATE(3674), + [sym_bounded_type] = STATE(1721), + [sym_reference_type] = STATE(1721), + [sym_pointer_type] = STATE(1721), + [sym_never_type] = STATE(1721), + [sym_abstract_type] = STATE(1721), + [sym_dynamic_type] = STATE(1721), + [sym_macro_invocation] = STATE(1721), + [sym_scoped_identifier] = STATE(3408), + [sym_scoped_type_identifier] = STATE(1595), [sym_line_comment] = STATE(953), [sym_block_comment] = STATE(953), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(3182), - [anon_sym_LPAREN] = ACTIONS(3184), - [anon_sym_LBRACK] = ACTIONS(3186), - [anon_sym_STAR] = ACTIONS(3190), - [anon_sym_QMARK] = ACTIONS(3192), - [anon_sym_u8] = ACTIONS(3194), - [anon_sym_i8] = ACTIONS(3194), - [anon_sym_u16] = ACTIONS(3194), - [anon_sym_i16] = ACTIONS(3194), - [anon_sym_u32] = ACTIONS(3194), - [anon_sym_i32] = ACTIONS(3194), - [anon_sym_u64] = ACTIONS(3194), - [anon_sym_i64] = ACTIONS(3194), - [anon_sym_u128] = ACTIONS(3194), - [anon_sym_i128] = ACTIONS(3194), - [anon_sym_isize] = ACTIONS(3194), - [anon_sym_usize] = ACTIONS(3194), - [anon_sym_f32] = ACTIONS(3194), - [anon_sym_f64] = ACTIONS(3194), - [anon_sym_bool] = ACTIONS(3194), - [anon_sym_str] = ACTIONS(3194), - [anon_sym_char] = ACTIONS(3194), - [anon_sym_BANG] = ACTIONS(3196), - [anon_sym_AMP] = ACTIONS(3198), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3200), - [anon_sym_SQUOTE] = ACTIONS(3058), - [anon_sym_async] = ACTIONS(1265), - [anon_sym_const] = ACTIONS(1265), - [anon_sym_default] = ACTIONS(3202), - [anon_sym_fn] = ACTIONS(3204), - [anon_sym_for] = ACTIONS(1273), - [anon_sym_gen] = ACTIONS(3206), - [anon_sym_impl] = ACTIONS(3208), - [anon_sym_union] = ACTIONS(3206), - [anon_sym_unsafe] = ACTIONS(1265), - [anon_sym_extern] = ACTIONS(1279), - [anon_sym_dyn] = ACTIONS(3210), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3214), - [sym_super] = ACTIONS(3214), - [sym_crate] = ACTIONS(3214), - [sym_metavariable] = ACTIONS(3216), + [aux_sym_function_modifiers_repeat1] = STATE(2244), + [sym_identifier] = ACTIONS(3172), + [anon_sym_LPAREN] = ACTIONS(3174), + [anon_sym_LBRACK] = ACTIONS(3176), + [anon_sym_STAR] = ACTIONS(3180), + [anon_sym_QMARK] = ACTIONS(3182), + [anon_sym_u8] = ACTIONS(3184), + [anon_sym_i8] = ACTIONS(3184), + [anon_sym_u16] = ACTIONS(3184), + [anon_sym_i16] = ACTIONS(3184), + [anon_sym_u32] = ACTIONS(3184), + [anon_sym_i32] = ACTIONS(3184), + [anon_sym_u64] = ACTIONS(3184), + [anon_sym_i64] = ACTIONS(3184), + [anon_sym_u128] = ACTIONS(3184), + [anon_sym_i128] = ACTIONS(3184), + [anon_sym_isize] = ACTIONS(3184), + [anon_sym_usize] = ACTIONS(3184), + [anon_sym_f32] = ACTIONS(3184), + [anon_sym_f64] = ACTIONS(3184), + [anon_sym_bool] = ACTIONS(3184), + [anon_sym_str] = ACTIONS(3184), + [anon_sym_char] = ACTIONS(3184), + [anon_sym_BANG] = ACTIONS(3186), + [anon_sym_AMP] = ACTIONS(3188), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3190), + [anon_sym_SQUOTE] = ACTIONS(3072), + [anon_sym_async] = ACTIONS(1270), + [anon_sym_const] = ACTIONS(1270), + [anon_sym_default] = ACTIONS(3192), + [anon_sym_fn] = ACTIONS(3194), + [anon_sym_for] = ACTIONS(1278), + [anon_sym_gen] = ACTIONS(3196), + [anon_sym_impl] = ACTIONS(3198), + [anon_sym_union] = ACTIONS(3196), + [anon_sym_unsafe] = ACTIONS(1270), + [anon_sym_extern] = ACTIONS(1284), + [anon_sym_safe] = ACTIONS(1270), + [anon_sym_dyn] = ACTIONS(3200), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(3204), + [sym_super] = ACTIONS(3204), + [sym_crate] = ACTIONS(3204), + [sym_metavariable] = ACTIONS(3206), }, [STATE(954)] = { - [sym_function_modifiers] = STATE(3595), - [sym_removed_trait_bound] = STATE(1787), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(1717), - [sym_bracketed_type] = STATE(3654), - [sym_lifetime] = STATE(3732), - [sym_array_type] = STATE(1787), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(1787), - [sym_tuple_type] = STATE(1787), - [sym_unit_type] = STATE(1787), - [sym_generic_type] = STATE(1646), - [sym_generic_type_with_turbofish] = STATE(3645), - [sym_bounded_type] = STATE(1787), - [sym_reference_type] = STATE(1787), - [sym_pointer_type] = STATE(1787), - [sym_never_type] = STATE(1787), - [sym_abstract_type] = STATE(1787), - [sym_dynamic_type] = STATE(1787), - [sym_macro_invocation] = STATE(1787), - [sym_scoped_identifier] = STATE(3373), - [sym_scoped_type_identifier] = STATE(1590), + [sym_function_modifiers] = STATE(3624), + [sym_removed_trait_bound] = STATE(1721), + [sym_extern_modifier] = STATE(2373), + [sym__type] = STATE(1768), + [sym_bracketed_type] = STATE(3683), + [sym_lifetime] = STATE(3755), + [sym_array_type] = STATE(1721), + [sym_for_lifetimes] = STATE(1605), + [sym_function_type] = STATE(1721), + [sym_tuple_type] = STATE(1721), + [sym_unit_type] = STATE(1721), + [sym_generic_type] = STATE(1679), + [sym_generic_type_with_turbofish] = STATE(3674), + [sym_bounded_type] = STATE(1721), + [sym_reference_type] = STATE(1721), + [sym_pointer_type] = STATE(1721), + [sym_never_type] = STATE(1721), + [sym_abstract_type] = STATE(1721), + [sym_dynamic_type] = STATE(1721), + [sym_macro_invocation] = STATE(1721), + [sym_scoped_identifier] = STATE(3408), + [sym_scoped_type_identifier] = STATE(1595), [sym_line_comment] = STATE(954), [sym_block_comment] = STATE(954), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(3144), - [anon_sym_LPAREN] = ACTIONS(3146), - [anon_sym_LBRACK] = ACTIONS(3148), - [anon_sym_STAR] = ACTIONS(3152), - [anon_sym_QMARK] = ACTIONS(3154), - [anon_sym_u8] = ACTIONS(3156), - [anon_sym_i8] = ACTIONS(3156), - [anon_sym_u16] = ACTIONS(3156), - [anon_sym_i16] = ACTIONS(3156), - [anon_sym_u32] = ACTIONS(3156), - [anon_sym_i32] = ACTIONS(3156), - [anon_sym_u64] = ACTIONS(3156), - [anon_sym_i64] = ACTIONS(3156), - [anon_sym_u128] = ACTIONS(3156), - [anon_sym_i128] = ACTIONS(3156), - [anon_sym_isize] = ACTIONS(3156), - [anon_sym_usize] = ACTIONS(3156), - [anon_sym_f32] = ACTIONS(3156), - [anon_sym_f64] = ACTIONS(3156), - [anon_sym_bool] = ACTIONS(3156), - [anon_sym_str] = ACTIONS(3156), - [anon_sym_char] = ACTIONS(3156), - [anon_sym_BANG] = ACTIONS(3158), - [anon_sym_AMP] = ACTIONS(3160), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3162), - [anon_sym_SQUOTE] = ACTIONS(3058), - [anon_sym_async] = ACTIONS(1265), - [anon_sym_const] = ACTIONS(1265), - [anon_sym_default] = ACTIONS(3164), - [anon_sym_fn] = ACTIONS(3166), - [anon_sym_for] = ACTIONS(1273), - [anon_sym_gen] = ACTIONS(3168), - [anon_sym_impl] = ACTIONS(3170), - [anon_sym_union] = ACTIONS(3168), - [anon_sym_unsafe] = ACTIONS(1265), - [anon_sym_extern] = ACTIONS(1279), - [anon_sym_dyn] = ACTIONS(3172), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3176), - [sym_super] = ACTIONS(3176), - [sym_crate] = ACTIONS(3176), - [sym_metavariable] = ACTIONS(3178), + [aux_sym_function_modifiers_repeat1] = STATE(2244), + [sym_identifier] = ACTIONS(3172), + [anon_sym_LPAREN] = ACTIONS(3174), + [anon_sym_LBRACK] = ACTIONS(3176), + [anon_sym_STAR] = ACTIONS(3180), + [anon_sym_QMARK] = ACTIONS(3182), + [anon_sym_u8] = ACTIONS(3184), + [anon_sym_i8] = ACTIONS(3184), + [anon_sym_u16] = ACTIONS(3184), + [anon_sym_i16] = ACTIONS(3184), + [anon_sym_u32] = ACTIONS(3184), + [anon_sym_i32] = ACTIONS(3184), + [anon_sym_u64] = ACTIONS(3184), + [anon_sym_i64] = ACTIONS(3184), + [anon_sym_u128] = ACTIONS(3184), + [anon_sym_i128] = ACTIONS(3184), + [anon_sym_isize] = ACTIONS(3184), + [anon_sym_usize] = ACTIONS(3184), + [anon_sym_f32] = ACTIONS(3184), + [anon_sym_f64] = ACTIONS(3184), + [anon_sym_bool] = ACTIONS(3184), + [anon_sym_str] = ACTIONS(3184), + [anon_sym_char] = ACTIONS(3184), + [anon_sym_BANG] = ACTIONS(3186), + [anon_sym_AMP] = ACTIONS(3188), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3190), + [anon_sym_SQUOTE] = ACTIONS(3072), + [anon_sym_async] = ACTIONS(1270), + [anon_sym_const] = ACTIONS(1270), + [anon_sym_default] = ACTIONS(3192), + [anon_sym_fn] = ACTIONS(3194), + [anon_sym_for] = ACTIONS(1278), + [anon_sym_gen] = ACTIONS(3196), + [anon_sym_impl] = ACTIONS(3198), + [anon_sym_union] = ACTIONS(3196), + [anon_sym_unsafe] = ACTIONS(1270), + [anon_sym_extern] = ACTIONS(1284), + [anon_sym_safe] = ACTIONS(1270), + [anon_sym_dyn] = ACTIONS(3200), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(3204), + [sym_super] = ACTIONS(3204), + [sym_crate] = ACTIONS(3204), + [sym_metavariable] = ACTIONS(3206), }, [STATE(955)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2519), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_function_modifiers] = STATE(3480), + [sym_removed_trait_bound] = STATE(1470), + [sym_extern_modifier] = STATE(2373), + [sym__type] = STATE(1442), + [sym_bracketed_type] = STATE(3667), + [sym_lifetime] = STATE(3541), + [sym_array_type] = STATE(1470), + [sym_for_lifetimes] = STATE(1603), + [sym_function_type] = STATE(1470), + [sym_tuple_type] = STATE(1470), + [sym_unit_type] = STATE(1470), + [sym_generic_type] = STATE(1381), + [sym_generic_type_with_turbofish] = STATE(3656), + [sym_bounded_type] = STATE(1470), + [sym_reference_type] = STATE(1470), + [sym_pointer_type] = STATE(1470), + [sym_never_type] = STATE(1470), + [sym_abstract_type] = STATE(1470), + [sym_dynamic_type] = STATE(1470), + [sym_macro_invocation] = STATE(1470), + [sym_scoped_identifier] = STATE(3333), + [sym_scoped_type_identifier] = STATE(1077), [sym_line_comment] = STATE(955), [sym_block_comment] = STATE(955), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(3052), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1235), - [anon_sym_QMARK] = ACTIONS(1237), - [anon_sym_u8] = ACTIONS(1603), - [anon_sym_i8] = ACTIONS(1603), - [anon_sym_u16] = ACTIONS(1603), - [anon_sym_i16] = ACTIONS(1603), - [anon_sym_u32] = ACTIONS(1603), - [anon_sym_i32] = ACTIONS(1603), - [anon_sym_u64] = ACTIONS(1603), - [anon_sym_i64] = ACTIONS(1603), - [anon_sym_u128] = ACTIONS(1603), - [anon_sym_i128] = ACTIONS(1603), - [anon_sym_isize] = ACTIONS(1603), - [anon_sym_usize] = ACTIONS(1603), - [anon_sym_f32] = ACTIONS(1603), - [anon_sym_f64] = ACTIONS(1603), - [anon_sym_bool] = ACTIONS(1603), - [anon_sym_str] = ACTIONS(1603), - [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1243), - [anon_sym_AMP] = ACTIONS(1605), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3058), - [anon_sym_async] = ACTIONS(1265), - [anon_sym_const] = ACTIONS(1265), - [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1271), - [anon_sym_for] = ACTIONS(1273), - [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1277), - [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1265), - [anon_sym_extern] = ACTIONS(1279), - [anon_sym_dyn] = ACTIONS(1283), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1619), - [sym_super] = ACTIONS(1619), - [sym_crate] = ACTIONS(1619), - [sym_metavariable] = ACTIONS(1621), + [aux_sym_function_modifiers_repeat1] = STATE(2244), + [sym_identifier] = ACTIONS(3210), + [anon_sym_LPAREN] = ACTIONS(3212), + [anon_sym_LBRACK] = ACTIONS(3214), + [anon_sym_STAR] = ACTIONS(3218), + [anon_sym_QMARK] = ACTIONS(3220), + [anon_sym_u8] = ACTIONS(3222), + [anon_sym_i8] = ACTIONS(3222), + [anon_sym_u16] = ACTIONS(3222), + [anon_sym_i16] = ACTIONS(3222), + [anon_sym_u32] = ACTIONS(3222), + [anon_sym_i32] = ACTIONS(3222), + [anon_sym_u64] = ACTIONS(3222), + [anon_sym_i64] = ACTIONS(3222), + [anon_sym_u128] = ACTIONS(3222), + [anon_sym_i128] = ACTIONS(3222), + [anon_sym_isize] = ACTIONS(3222), + [anon_sym_usize] = ACTIONS(3222), + [anon_sym_f32] = ACTIONS(3222), + [anon_sym_f64] = ACTIONS(3222), + [anon_sym_bool] = ACTIONS(3222), + [anon_sym_str] = ACTIONS(3222), + [anon_sym_char] = ACTIONS(3222), + [anon_sym_BANG] = ACTIONS(3224), + [anon_sym_AMP] = ACTIONS(3226), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3228), + [anon_sym_SQUOTE] = ACTIONS(3072), + [anon_sym_async] = ACTIONS(1270), + [anon_sym_const] = ACTIONS(1270), + [anon_sym_default] = ACTIONS(3230), + [anon_sym_fn] = ACTIONS(3232), + [anon_sym_for] = ACTIONS(1278), + [anon_sym_gen] = ACTIONS(3234), + [anon_sym_impl] = ACTIONS(3236), + [anon_sym_union] = ACTIONS(3234), + [anon_sym_unsafe] = ACTIONS(1270), + [anon_sym_extern] = ACTIONS(1284), + [anon_sym_safe] = ACTIONS(1270), + [anon_sym_dyn] = ACTIONS(3238), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(3242), + [sym_super] = ACTIONS(3242), + [sym_crate] = ACTIONS(3242), + [sym_metavariable] = ACTIONS(3244), }, [STATE(956)] = { - [sym_function_modifiers] = STATE(3455), - [sym_removed_trait_bound] = STATE(1526), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(1487), - [sym_bracketed_type] = STATE(3638), - [sym_lifetime] = STATE(3517), - [sym_array_type] = STATE(1526), - [sym_for_lifetimes] = STATE(1623), - [sym_function_type] = STATE(1526), - [sym_tuple_type] = STATE(1526), - [sym_unit_type] = STATE(1526), - [sym_generic_type] = STATE(1102), - [sym_generic_type_with_turbofish] = STATE(3627), - [sym_bounded_type] = STATE(1526), - [sym_reference_type] = STATE(1526), - [sym_pointer_type] = STATE(1526), - [sym_never_type] = STATE(1526), - [sym_abstract_type] = STATE(1526), - [sym_dynamic_type] = STATE(1526), - [sym_macro_invocation] = STATE(1526), - [sym_scoped_identifier] = STATE(3304), - [sym_scoped_type_identifier] = STATE(1058), + [sym_function_modifiers] = STATE(3591), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2373), + [sym__type] = STATE(2722), + [sym_bracketed_type] = STATE(3474), + [sym_lifetime] = STATE(3727), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1591), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2022), + [sym_generic_type_with_turbofish] = STATE(3764), + [sym_bounded_type] = STATE(2069), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3334), + [sym_scoped_type_identifier] = STATE(1990), [sym_line_comment] = STATE(956), [sym_block_comment] = STATE(956), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(3182), - [anon_sym_LPAREN] = ACTIONS(3184), - [anon_sym_LBRACK] = ACTIONS(3186), - [anon_sym_STAR] = ACTIONS(3190), - [anon_sym_QMARK] = ACTIONS(3192), - [anon_sym_u8] = ACTIONS(3194), - [anon_sym_i8] = ACTIONS(3194), - [anon_sym_u16] = ACTIONS(3194), - [anon_sym_i16] = ACTIONS(3194), - [anon_sym_u32] = ACTIONS(3194), - [anon_sym_i32] = ACTIONS(3194), - [anon_sym_u64] = ACTIONS(3194), - [anon_sym_i64] = ACTIONS(3194), - [anon_sym_u128] = ACTIONS(3194), - [anon_sym_i128] = ACTIONS(3194), - [anon_sym_isize] = ACTIONS(3194), - [anon_sym_usize] = ACTIONS(3194), - [anon_sym_f32] = ACTIONS(3194), - [anon_sym_f64] = ACTIONS(3194), - [anon_sym_bool] = ACTIONS(3194), - [anon_sym_str] = ACTIONS(3194), - [anon_sym_char] = ACTIONS(3194), - [anon_sym_BANG] = ACTIONS(3196), - [anon_sym_AMP] = ACTIONS(3198), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3200), - [anon_sym_SQUOTE] = ACTIONS(3058), - [anon_sym_async] = ACTIONS(1265), - [anon_sym_const] = ACTIONS(1265), - [anon_sym_default] = ACTIONS(3202), - [anon_sym_fn] = ACTIONS(3204), - [anon_sym_for] = ACTIONS(1273), - [anon_sym_gen] = ACTIONS(3206), - [anon_sym_impl] = ACTIONS(3208), - [anon_sym_union] = ACTIONS(3206), - [anon_sym_unsafe] = ACTIONS(1265), - [anon_sym_extern] = ACTIONS(1279), - [anon_sym_dyn] = ACTIONS(3210), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3214), - [sym_super] = ACTIONS(3214), - [sym_crate] = ACTIONS(3214), - [sym_metavariable] = ACTIONS(3216), + [aux_sym_function_modifiers_repeat1] = STATE(2244), + [sym_identifier] = ACTIONS(3064), + [anon_sym_LPAREN] = ACTIONS(1602), + [anon_sym_LBRACK] = ACTIONS(1604), + [anon_sym_STAR] = ACTIONS(1240), + [anon_sym_QMARK] = ACTIONS(1242), + [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_BANG] = ACTIONS(1248), + [anon_sym_AMP] = ACTIONS(1610), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1614), + [anon_sym_SQUOTE] = ACTIONS(3072), + [anon_sym_async] = ACTIONS(1270), + [anon_sym_const] = ACTIONS(1270), + [anon_sym_default] = ACTIONS(1618), + [anon_sym_fn] = ACTIONS(1276), + [anon_sym_for] = ACTIONS(1278), + [anon_sym_gen] = ACTIONS(1620), + [anon_sym_impl] = ACTIONS(1282), + [anon_sym_union] = ACTIONS(1620), + [anon_sym_unsafe] = ACTIONS(1270), + [anon_sym_extern] = ACTIONS(1284), + [anon_sym_safe] = ACTIONS(1270), + [anon_sym_dyn] = ACTIONS(1288), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1624), + [sym_super] = ACTIONS(1624), + [sym_crate] = ACTIONS(1624), + [sym_metavariable] = ACTIONS(1626), }, [STATE(957)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2729), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_function_modifiers] = STATE(3591), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2373), + [sym__type] = STATE(2072), + [sym_bracketed_type] = STATE(3474), + [sym_lifetime] = STATE(3727), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1591), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2022), + [sym_generic_type_with_turbofish] = STATE(3764), + [sym_bounded_type] = STATE(2069), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3334), + [sym_scoped_type_identifier] = STATE(1990), [sym_line_comment] = STATE(957), [sym_block_comment] = STATE(957), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(3052), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1235), - [anon_sym_QMARK] = ACTIONS(1237), - [anon_sym_u8] = ACTIONS(1603), - [anon_sym_i8] = ACTIONS(1603), - [anon_sym_u16] = ACTIONS(1603), - [anon_sym_i16] = ACTIONS(1603), - [anon_sym_u32] = ACTIONS(1603), - [anon_sym_i32] = ACTIONS(1603), - [anon_sym_u64] = ACTIONS(1603), - [anon_sym_i64] = ACTIONS(1603), - [anon_sym_u128] = ACTIONS(1603), - [anon_sym_i128] = ACTIONS(1603), - [anon_sym_isize] = ACTIONS(1603), - [anon_sym_usize] = ACTIONS(1603), - [anon_sym_f32] = ACTIONS(1603), - [anon_sym_f64] = ACTIONS(1603), - [anon_sym_bool] = ACTIONS(1603), - [anon_sym_str] = ACTIONS(1603), - [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1243), - [anon_sym_AMP] = ACTIONS(1605), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3058), - [anon_sym_async] = ACTIONS(1265), - [anon_sym_const] = ACTIONS(1265), - [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1271), - [anon_sym_for] = ACTIONS(1273), - [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1277), - [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1265), - [anon_sym_extern] = ACTIONS(1279), - [anon_sym_dyn] = ACTIONS(1283), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1619), - [sym_super] = ACTIONS(1619), - [sym_crate] = ACTIONS(1619), - [sym_metavariable] = ACTIONS(1621), + [aux_sym_function_modifiers_repeat1] = STATE(2244), + [sym_identifier] = ACTIONS(3064), + [anon_sym_LPAREN] = ACTIONS(1602), + [anon_sym_LBRACK] = ACTIONS(1604), + [anon_sym_STAR] = ACTIONS(1240), + [anon_sym_QMARK] = ACTIONS(1242), + [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_BANG] = ACTIONS(1248), + [anon_sym_AMP] = ACTIONS(1610), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1614), + [anon_sym_SQUOTE] = ACTIONS(3072), + [anon_sym_async] = ACTIONS(1270), + [anon_sym_const] = ACTIONS(1270), + [anon_sym_default] = ACTIONS(1618), + [anon_sym_fn] = ACTIONS(1276), + [anon_sym_for] = ACTIONS(1278), + [anon_sym_gen] = ACTIONS(1620), + [anon_sym_impl] = ACTIONS(1282), + [anon_sym_union] = ACTIONS(1620), + [anon_sym_unsafe] = ACTIONS(1270), + [anon_sym_extern] = ACTIONS(1284), + [anon_sym_safe] = ACTIONS(1270), + [anon_sym_dyn] = ACTIONS(1288), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1624), + [sym_super] = ACTIONS(1624), + [sym_crate] = ACTIONS(1624), + [sym_metavariable] = ACTIONS(1626), }, [STATE(958)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2846), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_function_modifiers] = STATE(3624), + [sym_removed_trait_bound] = STATE(1721), + [sym_extern_modifier] = STATE(2373), + [sym__type] = STATE(1773), + [sym_bracketed_type] = STATE(3683), + [sym_lifetime] = STATE(3755), + [sym_array_type] = STATE(1721), + [sym_for_lifetimes] = STATE(1605), + [sym_function_type] = STATE(1721), + [sym_tuple_type] = STATE(1721), + [sym_unit_type] = STATE(1721), + [sym_generic_type] = STATE(1679), + [sym_generic_type_with_turbofish] = STATE(3674), + [sym_bounded_type] = STATE(1721), + [sym_reference_type] = STATE(1721), + [sym_pointer_type] = STATE(1721), + [sym_never_type] = STATE(1721), + [sym_abstract_type] = STATE(1721), + [sym_dynamic_type] = STATE(1721), + [sym_macro_invocation] = STATE(1721), + [sym_scoped_identifier] = STATE(3408), + [sym_scoped_type_identifier] = STATE(1595), [sym_line_comment] = STATE(958), [sym_block_comment] = STATE(958), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(3052), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1235), - [anon_sym_QMARK] = ACTIONS(1237), - [anon_sym_u8] = ACTIONS(1603), - [anon_sym_i8] = ACTIONS(1603), - [anon_sym_u16] = ACTIONS(1603), - [anon_sym_i16] = ACTIONS(1603), - [anon_sym_u32] = ACTIONS(1603), - [anon_sym_i32] = ACTIONS(1603), - [anon_sym_u64] = ACTIONS(1603), - [anon_sym_i64] = ACTIONS(1603), - [anon_sym_u128] = ACTIONS(1603), - [anon_sym_i128] = ACTIONS(1603), - [anon_sym_isize] = ACTIONS(1603), - [anon_sym_usize] = ACTIONS(1603), - [anon_sym_f32] = ACTIONS(1603), - [anon_sym_f64] = ACTIONS(1603), - [anon_sym_bool] = ACTIONS(1603), - [anon_sym_str] = ACTIONS(1603), - [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1243), - [anon_sym_AMP] = ACTIONS(1605), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3058), - [anon_sym_async] = ACTIONS(1265), - [anon_sym_const] = ACTIONS(1265), - [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1271), - [anon_sym_for] = ACTIONS(1273), - [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1277), - [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1265), - [anon_sym_extern] = ACTIONS(1279), - [anon_sym_dyn] = ACTIONS(1283), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1619), - [sym_super] = ACTIONS(1619), - [sym_crate] = ACTIONS(1619), - [sym_metavariable] = ACTIONS(1621), + [aux_sym_function_modifiers_repeat1] = STATE(2244), + [sym_identifier] = ACTIONS(3172), + [anon_sym_LPAREN] = ACTIONS(3174), + [anon_sym_LBRACK] = ACTIONS(3176), + [anon_sym_STAR] = ACTIONS(3180), + [anon_sym_QMARK] = ACTIONS(3182), + [anon_sym_u8] = ACTIONS(3184), + [anon_sym_i8] = ACTIONS(3184), + [anon_sym_u16] = ACTIONS(3184), + [anon_sym_i16] = ACTIONS(3184), + [anon_sym_u32] = ACTIONS(3184), + [anon_sym_i32] = ACTIONS(3184), + [anon_sym_u64] = ACTIONS(3184), + [anon_sym_i64] = ACTIONS(3184), + [anon_sym_u128] = ACTIONS(3184), + [anon_sym_i128] = ACTIONS(3184), + [anon_sym_isize] = ACTIONS(3184), + [anon_sym_usize] = ACTIONS(3184), + [anon_sym_f32] = ACTIONS(3184), + [anon_sym_f64] = ACTIONS(3184), + [anon_sym_bool] = ACTIONS(3184), + [anon_sym_str] = ACTIONS(3184), + [anon_sym_char] = ACTIONS(3184), + [anon_sym_BANG] = ACTIONS(3186), + [anon_sym_AMP] = ACTIONS(3188), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3190), + [anon_sym_SQUOTE] = ACTIONS(3072), + [anon_sym_async] = ACTIONS(1270), + [anon_sym_const] = ACTIONS(1270), + [anon_sym_default] = ACTIONS(3192), + [anon_sym_fn] = ACTIONS(3194), + [anon_sym_for] = ACTIONS(1278), + [anon_sym_gen] = ACTIONS(3196), + [anon_sym_impl] = ACTIONS(3198), + [anon_sym_union] = ACTIONS(3196), + [anon_sym_unsafe] = ACTIONS(1270), + [anon_sym_extern] = ACTIONS(1284), + [anon_sym_safe] = ACTIONS(1270), + [anon_sym_dyn] = ACTIONS(3200), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(3204), + [sym_super] = ACTIONS(3204), + [sym_crate] = ACTIONS(3204), + [sym_metavariable] = ACTIONS(3206), }, [STATE(959)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2944), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_function_modifiers] = STATE(3480), + [sym_removed_trait_bound] = STATE(1470), + [sym_extern_modifier] = STATE(2373), + [sym__type] = STATE(1443), + [sym_bracketed_type] = STATE(3667), + [sym_lifetime] = STATE(3541), + [sym_array_type] = STATE(1470), + [sym_for_lifetimes] = STATE(1603), + [sym_function_type] = STATE(1470), + [sym_tuple_type] = STATE(1470), + [sym_unit_type] = STATE(1470), + [sym_generic_type] = STATE(1381), + [sym_generic_type_with_turbofish] = STATE(3656), + [sym_bounded_type] = STATE(1470), + [sym_reference_type] = STATE(1470), + [sym_pointer_type] = STATE(1470), + [sym_never_type] = STATE(1470), + [sym_abstract_type] = STATE(1470), + [sym_dynamic_type] = STATE(1470), + [sym_macro_invocation] = STATE(1470), + [sym_scoped_identifier] = STATE(3333), + [sym_scoped_type_identifier] = STATE(1077), [sym_line_comment] = STATE(959), [sym_block_comment] = STATE(959), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(3052), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1235), - [anon_sym_QMARK] = ACTIONS(1237), - [anon_sym_u8] = ACTIONS(1603), - [anon_sym_i8] = ACTIONS(1603), - [anon_sym_u16] = ACTIONS(1603), - [anon_sym_i16] = ACTIONS(1603), - [anon_sym_u32] = ACTIONS(1603), - [anon_sym_i32] = ACTIONS(1603), - [anon_sym_u64] = ACTIONS(1603), - [anon_sym_i64] = ACTIONS(1603), - [anon_sym_u128] = ACTIONS(1603), - [anon_sym_i128] = ACTIONS(1603), - [anon_sym_isize] = ACTIONS(1603), - [anon_sym_usize] = ACTIONS(1603), - [anon_sym_f32] = ACTIONS(1603), - [anon_sym_f64] = ACTIONS(1603), - [anon_sym_bool] = ACTIONS(1603), - [anon_sym_str] = ACTIONS(1603), - [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1243), - [anon_sym_AMP] = ACTIONS(1605), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3058), - [anon_sym_async] = ACTIONS(1265), - [anon_sym_const] = ACTIONS(1265), - [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1271), - [anon_sym_for] = ACTIONS(1273), - [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1277), - [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1265), - [anon_sym_extern] = ACTIONS(1279), - [anon_sym_dyn] = ACTIONS(1283), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1619), - [sym_super] = ACTIONS(1619), - [sym_crate] = ACTIONS(1619), - [sym_metavariable] = ACTIONS(1621), + [aux_sym_function_modifiers_repeat1] = STATE(2244), + [sym_identifier] = ACTIONS(3210), + [anon_sym_LPAREN] = ACTIONS(3212), + [anon_sym_LBRACK] = ACTIONS(3214), + [anon_sym_STAR] = ACTIONS(3218), + [anon_sym_QMARK] = ACTIONS(3220), + [anon_sym_u8] = ACTIONS(3222), + [anon_sym_i8] = ACTIONS(3222), + [anon_sym_u16] = ACTIONS(3222), + [anon_sym_i16] = ACTIONS(3222), + [anon_sym_u32] = ACTIONS(3222), + [anon_sym_i32] = ACTIONS(3222), + [anon_sym_u64] = ACTIONS(3222), + [anon_sym_i64] = ACTIONS(3222), + [anon_sym_u128] = ACTIONS(3222), + [anon_sym_i128] = ACTIONS(3222), + [anon_sym_isize] = ACTIONS(3222), + [anon_sym_usize] = ACTIONS(3222), + [anon_sym_f32] = ACTIONS(3222), + [anon_sym_f64] = ACTIONS(3222), + [anon_sym_bool] = ACTIONS(3222), + [anon_sym_str] = ACTIONS(3222), + [anon_sym_char] = ACTIONS(3222), + [anon_sym_BANG] = ACTIONS(3224), + [anon_sym_AMP] = ACTIONS(3226), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3228), + [anon_sym_SQUOTE] = ACTIONS(3072), + [anon_sym_async] = ACTIONS(1270), + [anon_sym_const] = ACTIONS(1270), + [anon_sym_default] = ACTIONS(3230), + [anon_sym_fn] = ACTIONS(3232), + [anon_sym_for] = ACTIONS(1278), + [anon_sym_gen] = ACTIONS(3234), + [anon_sym_impl] = ACTIONS(3236), + [anon_sym_union] = ACTIONS(3234), + [anon_sym_unsafe] = ACTIONS(1270), + [anon_sym_extern] = ACTIONS(1284), + [anon_sym_safe] = ACTIONS(1270), + [anon_sym_dyn] = ACTIONS(3238), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(3242), + [sym_super] = ACTIONS(3242), + [sym_crate] = ACTIONS(3242), + [sym_metavariable] = ACTIONS(3244), }, [STATE(960)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2379), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_function_modifiers] = STATE(3624), + [sym_removed_trait_bound] = STATE(1721), + [sym_extern_modifier] = STATE(2373), + [sym__type] = STATE(1775), + [sym_bracketed_type] = STATE(3683), + [sym_lifetime] = STATE(3755), + [sym_array_type] = STATE(1721), + [sym_for_lifetimes] = STATE(1605), + [sym_function_type] = STATE(1721), + [sym_tuple_type] = STATE(1721), + [sym_unit_type] = STATE(1721), + [sym_generic_type] = STATE(1679), + [sym_generic_type_with_turbofish] = STATE(3674), + [sym_bounded_type] = STATE(1721), + [sym_reference_type] = STATE(1721), + [sym_pointer_type] = STATE(1721), + [sym_never_type] = STATE(1721), + [sym_abstract_type] = STATE(1721), + [sym_dynamic_type] = STATE(1721), + [sym_macro_invocation] = STATE(1721), + [sym_scoped_identifier] = STATE(3408), + [sym_scoped_type_identifier] = STATE(1595), [sym_line_comment] = STATE(960), [sym_block_comment] = STATE(960), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(3052), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1235), - [anon_sym_QMARK] = ACTIONS(1237), - [anon_sym_u8] = ACTIONS(1603), - [anon_sym_i8] = ACTIONS(1603), - [anon_sym_u16] = ACTIONS(1603), - [anon_sym_i16] = ACTIONS(1603), - [anon_sym_u32] = ACTIONS(1603), - [anon_sym_i32] = ACTIONS(1603), - [anon_sym_u64] = ACTIONS(1603), - [anon_sym_i64] = ACTIONS(1603), - [anon_sym_u128] = ACTIONS(1603), - [anon_sym_i128] = ACTIONS(1603), - [anon_sym_isize] = ACTIONS(1603), - [anon_sym_usize] = ACTIONS(1603), - [anon_sym_f32] = ACTIONS(1603), - [anon_sym_f64] = ACTIONS(1603), - [anon_sym_bool] = ACTIONS(1603), - [anon_sym_str] = ACTIONS(1603), - [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1243), - [anon_sym_AMP] = ACTIONS(1605), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3058), - [anon_sym_async] = ACTIONS(1265), - [anon_sym_const] = ACTIONS(1265), - [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1271), - [anon_sym_for] = ACTIONS(1273), - [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1277), - [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1265), - [anon_sym_extern] = ACTIONS(1279), - [anon_sym_dyn] = ACTIONS(1283), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1619), - [sym_super] = ACTIONS(1619), - [sym_crate] = ACTIONS(1619), - [sym_metavariable] = ACTIONS(1621), + [aux_sym_function_modifiers_repeat1] = STATE(2244), + [sym_identifier] = ACTIONS(3172), + [anon_sym_LPAREN] = ACTIONS(3174), + [anon_sym_LBRACK] = ACTIONS(3176), + [anon_sym_STAR] = ACTIONS(3180), + [anon_sym_QMARK] = ACTIONS(3182), + [anon_sym_u8] = ACTIONS(3184), + [anon_sym_i8] = ACTIONS(3184), + [anon_sym_u16] = ACTIONS(3184), + [anon_sym_i16] = ACTIONS(3184), + [anon_sym_u32] = ACTIONS(3184), + [anon_sym_i32] = ACTIONS(3184), + [anon_sym_u64] = ACTIONS(3184), + [anon_sym_i64] = ACTIONS(3184), + [anon_sym_u128] = ACTIONS(3184), + [anon_sym_i128] = ACTIONS(3184), + [anon_sym_isize] = ACTIONS(3184), + [anon_sym_usize] = ACTIONS(3184), + [anon_sym_f32] = ACTIONS(3184), + [anon_sym_f64] = ACTIONS(3184), + [anon_sym_bool] = ACTIONS(3184), + [anon_sym_str] = ACTIONS(3184), + [anon_sym_char] = ACTIONS(3184), + [anon_sym_BANG] = ACTIONS(3186), + [anon_sym_AMP] = ACTIONS(3188), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3190), + [anon_sym_SQUOTE] = ACTIONS(3072), + [anon_sym_async] = ACTIONS(1270), + [anon_sym_const] = ACTIONS(1270), + [anon_sym_default] = ACTIONS(3192), + [anon_sym_fn] = ACTIONS(3194), + [anon_sym_for] = ACTIONS(1278), + [anon_sym_gen] = ACTIONS(3196), + [anon_sym_impl] = ACTIONS(3198), + [anon_sym_union] = ACTIONS(3196), + [anon_sym_unsafe] = ACTIONS(1270), + [anon_sym_extern] = ACTIONS(1284), + [anon_sym_safe] = ACTIONS(1270), + [anon_sym_dyn] = ACTIONS(3200), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(3204), + [sym_super] = ACTIONS(3204), + [sym_crate] = ACTIONS(3204), + [sym_metavariable] = ACTIONS(3206), }, [STATE(961)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2382), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_function_modifiers] = STATE(3480), + [sym_removed_trait_bound] = STATE(1470), + [sym_extern_modifier] = STATE(2373), + [sym__type] = STATE(1446), + [sym_bracketed_type] = STATE(3667), + [sym_lifetime] = STATE(3541), + [sym_array_type] = STATE(1470), + [sym_for_lifetimes] = STATE(1603), + [sym_function_type] = STATE(1470), + [sym_tuple_type] = STATE(1470), + [sym_unit_type] = STATE(1470), + [sym_generic_type] = STATE(1381), + [sym_generic_type_with_turbofish] = STATE(3656), + [sym_bounded_type] = STATE(1470), + [sym_reference_type] = STATE(1470), + [sym_pointer_type] = STATE(1470), + [sym_never_type] = STATE(1470), + [sym_abstract_type] = STATE(1470), + [sym_dynamic_type] = STATE(1470), + [sym_macro_invocation] = STATE(1470), + [sym_scoped_identifier] = STATE(3333), + [sym_scoped_type_identifier] = STATE(1077), [sym_line_comment] = STATE(961), [sym_block_comment] = STATE(961), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(3052), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1235), - [anon_sym_QMARK] = ACTIONS(1237), - [anon_sym_u8] = ACTIONS(1603), - [anon_sym_i8] = ACTIONS(1603), - [anon_sym_u16] = ACTIONS(1603), - [anon_sym_i16] = ACTIONS(1603), - [anon_sym_u32] = ACTIONS(1603), - [anon_sym_i32] = ACTIONS(1603), - [anon_sym_u64] = ACTIONS(1603), - [anon_sym_i64] = ACTIONS(1603), - [anon_sym_u128] = ACTIONS(1603), - [anon_sym_i128] = ACTIONS(1603), - [anon_sym_isize] = ACTIONS(1603), - [anon_sym_usize] = ACTIONS(1603), - [anon_sym_f32] = ACTIONS(1603), - [anon_sym_f64] = ACTIONS(1603), - [anon_sym_bool] = ACTIONS(1603), - [anon_sym_str] = ACTIONS(1603), - [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1243), - [anon_sym_AMP] = ACTIONS(1605), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3058), - [anon_sym_async] = ACTIONS(1265), - [anon_sym_const] = ACTIONS(1265), - [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1271), - [anon_sym_for] = ACTIONS(1273), - [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1277), - [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1265), - [anon_sym_extern] = ACTIONS(1279), - [anon_sym_dyn] = ACTIONS(1283), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1619), - [sym_super] = ACTIONS(1619), - [sym_crate] = ACTIONS(1619), - [sym_metavariable] = ACTIONS(1621), + [aux_sym_function_modifiers_repeat1] = STATE(2244), + [sym_identifier] = ACTIONS(3210), + [anon_sym_LPAREN] = ACTIONS(3212), + [anon_sym_LBRACK] = ACTIONS(3214), + [anon_sym_STAR] = ACTIONS(3218), + [anon_sym_QMARK] = ACTIONS(3220), + [anon_sym_u8] = ACTIONS(3222), + [anon_sym_i8] = ACTIONS(3222), + [anon_sym_u16] = ACTIONS(3222), + [anon_sym_i16] = ACTIONS(3222), + [anon_sym_u32] = ACTIONS(3222), + [anon_sym_i32] = ACTIONS(3222), + [anon_sym_u64] = ACTIONS(3222), + [anon_sym_i64] = ACTIONS(3222), + [anon_sym_u128] = ACTIONS(3222), + [anon_sym_i128] = ACTIONS(3222), + [anon_sym_isize] = ACTIONS(3222), + [anon_sym_usize] = ACTIONS(3222), + [anon_sym_f32] = ACTIONS(3222), + [anon_sym_f64] = ACTIONS(3222), + [anon_sym_bool] = ACTIONS(3222), + [anon_sym_str] = ACTIONS(3222), + [anon_sym_char] = ACTIONS(3222), + [anon_sym_BANG] = ACTIONS(3224), + [anon_sym_AMP] = ACTIONS(3226), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3228), + [anon_sym_SQUOTE] = ACTIONS(3072), + [anon_sym_async] = ACTIONS(1270), + [anon_sym_const] = ACTIONS(1270), + [anon_sym_default] = ACTIONS(3230), + [anon_sym_fn] = ACTIONS(3232), + [anon_sym_for] = ACTIONS(1278), + [anon_sym_gen] = ACTIONS(3234), + [anon_sym_impl] = ACTIONS(3236), + [anon_sym_union] = ACTIONS(3234), + [anon_sym_unsafe] = ACTIONS(1270), + [anon_sym_extern] = ACTIONS(1284), + [anon_sym_safe] = ACTIONS(1270), + [anon_sym_dyn] = ACTIONS(3238), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(3242), + [sym_super] = ACTIONS(3242), + [sym_crate] = ACTIONS(3242), + [sym_metavariable] = ACTIONS(3244), }, [STATE(962)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2749), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_function_modifiers] = STATE(3624), + [sym_removed_trait_bound] = STATE(1721), + [sym_extern_modifier] = STATE(2373), + [sym__type] = STATE(1776), + [sym_bracketed_type] = STATE(3683), + [sym_lifetime] = STATE(3755), + [sym_array_type] = STATE(1721), + [sym_for_lifetimes] = STATE(1605), + [sym_function_type] = STATE(1721), + [sym_tuple_type] = STATE(1721), + [sym_unit_type] = STATE(1721), + [sym_generic_type] = STATE(1679), + [sym_generic_type_with_turbofish] = STATE(3674), + [sym_bounded_type] = STATE(1721), + [sym_reference_type] = STATE(1721), + [sym_pointer_type] = STATE(1721), + [sym_never_type] = STATE(1721), + [sym_abstract_type] = STATE(1721), + [sym_dynamic_type] = STATE(1721), + [sym_macro_invocation] = STATE(1721), + [sym_scoped_identifier] = STATE(3408), + [sym_scoped_type_identifier] = STATE(1595), [sym_line_comment] = STATE(962), [sym_block_comment] = STATE(962), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(3052), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1235), - [anon_sym_QMARK] = ACTIONS(1237), - [anon_sym_u8] = ACTIONS(1603), - [anon_sym_i8] = ACTIONS(1603), - [anon_sym_u16] = ACTIONS(1603), - [anon_sym_i16] = ACTIONS(1603), - [anon_sym_u32] = ACTIONS(1603), - [anon_sym_i32] = ACTIONS(1603), - [anon_sym_u64] = ACTIONS(1603), - [anon_sym_i64] = ACTIONS(1603), - [anon_sym_u128] = ACTIONS(1603), - [anon_sym_i128] = ACTIONS(1603), - [anon_sym_isize] = ACTIONS(1603), - [anon_sym_usize] = ACTIONS(1603), - [anon_sym_f32] = ACTIONS(1603), - [anon_sym_f64] = ACTIONS(1603), - [anon_sym_bool] = ACTIONS(1603), - [anon_sym_str] = ACTIONS(1603), - [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1243), - [anon_sym_AMP] = ACTIONS(1605), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3058), - [anon_sym_async] = ACTIONS(1265), - [anon_sym_const] = ACTIONS(1265), - [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1271), - [anon_sym_for] = ACTIONS(1273), - [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1277), - [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1265), - [anon_sym_extern] = ACTIONS(1279), - [anon_sym_dyn] = ACTIONS(1283), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1619), - [sym_super] = ACTIONS(1619), - [sym_crate] = ACTIONS(1619), - [sym_metavariable] = ACTIONS(1621), + [aux_sym_function_modifiers_repeat1] = STATE(2244), + [sym_identifier] = ACTIONS(3172), + [anon_sym_LPAREN] = ACTIONS(3174), + [anon_sym_LBRACK] = ACTIONS(3176), + [anon_sym_STAR] = ACTIONS(3180), + [anon_sym_QMARK] = ACTIONS(3182), + [anon_sym_u8] = ACTIONS(3184), + [anon_sym_i8] = ACTIONS(3184), + [anon_sym_u16] = ACTIONS(3184), + [anon_sym_i16] = ACTIONS(3184), + [anon_sym_u32] = ACTIONS(3184), + [anon_sym_i32] = ACTIONS(3184), + [anon_sym_u64] = ACTIONS(3184), + [anon_sym_i64] = ACTIONS(3184), + [anon_sym_u128] = ACTIONS(3184), + [anon_sym_i128] = ACTIONS(3184), + [anon_sym_isize] = ACTIONS(3184), + [anon_sym_usize] = ACTIONS(3184), + [anon_sym_f32] = ACTIONS(3184), + [anon_sym_f64] = ACTIONS(3184), + [anon_sym_bool] = ACTIONS(3184), + [anon_sym_str] = ACTIONS(3184), + [anon_sym_char] = ACTIONS(3184), + [anon_sym_BANG] = ACTIONS(3186), + [anon_sym_AMP] = ACTIONS(3188), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3190), + [anon_sym_SQUOTE] = ACTIONS(3072), + [anon_sym_async] = ACTIONS(1270), + [anon_sym_const] = ACTIONS(1270), + [anon_sym_default] = ACTIONS(3192), + [anon_sym_fn] = ACTIONS(3194), + [anon_sym_for] = ACTIONS(1278), + [anon_sym_gen] = ACTIONS(3196), + [anon_sym_impl] = ACTIONS(3198), + [anon_sym_union] = ACTIONS(3196), + [anon_sym_unsafe] = ACTIONS(1270), + [anon_sym_extern] = ACTIONS(1284), + [anon_sym_safe] = ACTIONS(1270), + [anon_sym_dyn] = ACTIONS(3200), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(3204), + [sym_super] = ACTIONS(3204), + [sym_crate] = ACTIONS(3204), + [sym_metavariable] = ACTIONS(3206), }, [STATE(963)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2731), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_function_modifiers] = STATE(3591), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2373), + [sym__type] = STATE(2074), + [sym_bracketed_type] = STATE(3474), + [sym_lifetime] = STATE(3727), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1591), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2022), + [sym_generic_type_with_turbofish] = STATE(3764), + [sym_bounded_type] = STATE(2069), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3334), + [sym_scoped_type_identifier] = STATE(1990), [sym_line_comment] = STATE(963), [sym_block_comment] = STATE(963), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(3052), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1235), - [anon_sym_QMARK] = ACTIONS(1237), - [anon_sym_u8] = ACTIONS(1603), - [anon_sym_i8] = ACTIONS(1603), - [anon_sym_u16] = ACTIONS(1603), - [anon_sym_i16] = ACTIONS(1603), - [anon_sym_u32] = ACTIONS(1603), - [anon_sym_i32] = ACTIONS(1603), - [anon_sym_u64] = ACTIONS(1603), - [anon_sym_i64] = ACTIONS(1603), - [anon_sym_u128] = ACTIONS(1603), - [anon_sym_i128] = ACTIONS(1603), - [anon_sym_isize] = ACTIONS(1603), - [anon_sym_usize] = ACTIONS(1603), - [anon_sym_f32] = ACTIONS(1603), - [anon_sym_f64] = ACTIONS(1603), - [anon_sym_bool] = ACTIONS(1603), - [anon_sym_str] = ACTIONS(1603), - [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1243), - [anon_sym_AMP] = ACTIONS(1605), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3058), - [anon_sym_async] = ACTIONS(1265), - [anon_sym_const] = ACTIONS(1265), - [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1271), - [anon_sym_for] = ACTIONS(1273), - [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1277), - [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1265), - [anon_sym_extern] = ACTIONS(1279), - [anon_sym_dyn] = ACTIONS(1283), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1619), - [sym_super] = ACTIONS(1619), - [sym_crate] = ACTIONS(1619), - [sym_metavariable] = ACTIONS(1621), + [aux_sym_function_modifiers_repeat1] = STATE(2244), + [sym_identifier] = ACTIONS(3064), + [anon_sym_LPAREN] = ACTIONS(1602), + [anon_sym_LBRACK] = ACTIONS(1604), + [anon_sym_STAR] = ACTIONS(1240), + [anon_sym_QMARK] = ACTIONS(1242), + [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_BANG] = ACTIONS(1248), + [anon_sym_AMP] = ACTIONS(1610), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1614), + [anon_sym_SQUOTE] = ACTIONS(3072), + [anon_sym_async] = ACTIONS(1270), + [anon_sym_const] = ACTIONS(1270), + [anon_sym_default] = ACTIONS(1618), + [anon_sym_fn] = ACTIONS(1276), + [anon_sym_for] = ACTIONS(1278), + [anon_sym_gen] = ACTIONS(1620), + [anon_sym_impl] = ACTIONS(1282), + [anon_sym_union] = ACTIONS(1620), + [anon_sym_unsafe] = ACTIONS(1270), + [anon_sym_extern] = ACTIONS(1284), + [anon_sym_safe] = ACTIONS(1270), + [anon_sym_dyn] = ACTIONS(1288), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1624), + [sym_super] = ACTIONS(1624), + [sym_crate] = ACTIONS(1624), + [sym_metavariable] = ACTIONS(1626), }, [STATE(964)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2857), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_function_modifiers] = STATE(3591), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2373), + [sym__type] = STATE(2049), + [sym_bracketed_type] = STATE(3474), + [sym_lifetime] = STATE(3727), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1591), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2022), + [sym_generic_type_with_turbofish] = STATE(3764), + [sym_bounded_type] = STATE(2069), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3334), + [sym_scoped_type_identifier] = STATE(1990), [sym_line_comment] = STATE(964), [sym_block_comment] = STATE(964), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(3052), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1235), - [anon_sym_QMARK] = ACTIONS(1237), - [anon_sym_u8] = ACTIONS(1603), - [anon_sym_i8] = ACTIONS(1603), - [anon_sym_u16] = ACTIONS(1603), - [anon_sym_i16] = ACTIONS(1603), - [anon_sym_u32] = ACTIONS(1603), - [anon_sym_i32] = ACTIONS(1603), - [anon_sym_u64] = ACTIONS(1603), - [anon_sym_i64] = ACTIONS(1603), - [anon_sym_u128] = ACTIONS(1603), - [anon_sym_i128] = ACTIONS(1603), - [anon_sym_isize] = ACTIONS(1603), - [anon_sym_usize] = ACTIONS(1603), - [anon_sym_f32] = ACTIONS(1603), - [anon_sym_f64] = ACTIONS(1603), - [anon_sym_bool] = ACTIONS(1603), - [anon_sym_str] = ACTIONS(1603), - [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1243), - [anon_sym_AMP] = ACTIONS(1605), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3058), - [anon_sym_async] = ACTIONS(1265), - [anon_sym_const] = ACTIONS(1265), - [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1271), - [anon_sym_for] = ACTIONS(1273), - [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1277), - [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1265), - [anon_sym_extern] = ACTIONS(1279), - [anon_sym_dyn] = ACTIONS(1283), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1619), - [sym_super] = ACTIONS(1619), - [sym_crate] = ACTIONS(1619), - [sym_metavariable] = ACTIONS(1621), + [aux_sym_function_modifiers_repeat1] = STATE(2244), + [sym_identifier] = ACTIONS(3064), + [anon_sym_LPAREN] = ACTIONS(1602), + [anon_sym_LBRACK] = ACTIONS(1604), + [anon_sym_STAR] = ACTIONS(1240), + [anon_sym_QMARK] = ACTIONS(1242), + [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_BANG] = ACTIONS(1248), + [anon_sym_AMP] = ACTIONS(1610), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1614), + [anon_sym_SQUOTE] = ACTIONS(3072), + [anon_sym_async] = ACTIONS(1270), + [anon_sym_const] = ACTIONS(1270), + [anon_sym_default] = ACTIONS(1618), + [anon_sym_fn] = ACTIONS(1276), + [anon_sym_for] = ACTIONS(1278), + [anon_sym_gen] = ACTIONS(1620), + [anon_sym_impl] = ACTIONS(1282), + [anon_sym_union] = ACTIONS(1620), + [anon_sym_unsafe] = ACTIONS(1270), + [anon_sym_extern] = ACTIONS(1284), + [anon_sym_safe] = ACTIONS(1270), + [anon_sym_dyn] = ACTIONS(1288), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1624), + [sym_super] = ACTIONS(1624), + [sym_crate] = ACTIONS(1624), + [sym_metavariable] = ACTIONS(1626), }, [STATE(965)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2540), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_function_modifiers] = STATE(3591), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2373), + [sym__type] = STATE(2601), + [sym_bracketed_type] = STATE(3474), + [sym_lifetime] = STATE(3727), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1591), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2022), + [sym_generic_type_with_turbofish] = STATE(3764), + [sym_bounded_type] = STATE(2069), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3334), + [sym_scoped_type_identifier] = STATE(1990), [sym_line_comment] = STATE(965), [sym_block_comment] = STATE(965), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(3052), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1235), - [anon_sym_QMARK] = ACTIONS(1237), - [anon_sym_u8] = ACTIONS(1603), - [anon_sym_i8] = ACTIONS(1603), - [anon_sym_u16] = ACTIONS(1603), - [anon_sym_i16] = ACTIONS(1603), - [anon_sym_u32] = ACTIONS(1603), - [anon_sym_i32] = ACTIONS(1603), - [anon_sym_u64] = ACTIONS(1603), - [anon_sym_i64] = ACTIONS(1603), - [anon_sym_u128] = ACTIONS(1603), - [anon_sym_i128] = ACTIONS(1603), - [anon_sym_isize] = ACTIONS(1603), - [anon_sym_usize] = ACTIONS(1603), - [anon_sym_f32] = ACTIONS(1603), - [anon_sym_f64] = ACTIONS(1603), - [anon_sym_bool] = ACTIONS(1603), - [anon_sym_str] = ACTIONS(1603), - [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1243), - [anon_sym_AMP] = ACTIONS(1605), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3058), - [anon_sym_async] = ACTIONS(1265), - [anon_sym_const] = ACTIONS(1265), - [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1271), - [anon_sym_for] = ACTIONS(1273), - [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1277), - [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1265), - [anon_sym_extern] = ACTIONS(1279), - [anon_sym_dyn] = ACTIONS(1283), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1619), - [sym_super] = ACTIONS(1619), - [sym_crate] = ACTIONS(1619), - [sym_metavariable] = ACTIONS(1621), + [aux_sym_function_modifiers_repeat1] = STATE(2244), + [sym_identifier] = ACTIONS(3064), + [anon_sym_LPAREN] = ACTIONS(1602), + [anon_sym_LBRACK] = ACTIONS(1604), + [anon_sym_STAR] = ACTIONS(1240), + [anon_sym_QMARK] = ACTIONS(1242), + [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_BANG] = ACTIONS(1248), + [anon_sym_AMP] = ACTIONS(1610), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1614), + [anon_sym_SQUOTE] = ACTIONS(3072), + [anon_sym_async] = ACTIONS(1270), + [anon_sym_const] = ACTIONS(1270), + [anon_sym_default] = ACTIONS(1618), + [anon_sym_fn] = ACTIONS(1276), + [anon_sym_for] = ACTIONS(1278), + [anon_sym_gen] = ACTIONS(1620), + [anon_sym_impl] = ACTIONS(1282), + [anon_sym_union] = ACTIONS(1620), + [anon_sym_unsafe] = ACTIONS(1270), + [anon_sym_extern] = ACTIONS(1284), + [anon_sym_safe] = ACTIONS(1270), + [anon_sym_dyn] = ACTIONS(1288), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1624), + [sym_super] = ACTIONS(1624), + [sym_crate] = ACTIONS(1624), + [sym_metavariable] = ACTIONS(1626), }, [STATE(966)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2753), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_function_modifiers] = STATE(3624), + [sym_removed_trait_bound] = STATE(1721), + [sym_extern_modifier] = STATE(2373), + [sym__type] = STATE(1734), + [sym_bracketed_type] = STATE(3683), + [sym_lifetime] = STATE(3755), + [sym_array_type] = STATE(1721), + [sym_for_lifetimes] = STATE(1605), + [sym_function_type] = STATE(1721), + [sym_tuple_type] = STATE(1721), + [sym_unit_type] = STATE(1721), + [sym_generic_type] = STATE(1679), + [sym_generic_type_with_turbofish] = STATE(3674), + [sym_bounded_type] = STATE(1721), + [sym_reference_type] = STATE(1721), + [sym_pointer_type] = STATE(1721), + [sym_never_type] = STATE(1721), + [sym_abstract_type] = STATE(1721), + [sym_dynamic_type] = STATE(1721), + [sym_macro_invocation] = STATE(1721), + [sym_scoped_identifier] = STATE(3408), + [sym_scoped_type_identifier] = STATE(1595), [sym_line_comment] = STATE(966), [sym_block_comment] = STATE(966), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(3052), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1235), - [anon_sym_QMARK] = ACTIONS(1237), - [anon_sym_u8] = ACTIONS(1603), - [anon_sym_i8] = ACTIONS(1603), - [anon_sym_u16] = ACTIONS(1603), - [anon_sym_i16] = ACTIONS(1603), - [anon_sym_u32] = ACTIONS(1603), - [anon_sym_i32] = ACTIONS(1603), - [anon_sym_u64] = ACTIONS(1603), - [anon_sym_i64] = ACTIONS(1603), - [anon_sym_u128] = ACTIONS(1603), - [anon_sym_i128] = ACTIONS(1603), - [anon_sym_isize] = ACTIONS(1603), - [anon_sym_usize] = ACTIONS(1603), - [anon_sym_f32] = ACTIONS(1603), - [anon_sym_f64] = ACTIONS(1603), - [anon_sym_bool] = ACTIONS(1603), - [anon_sym_str] = ACTIONS(1603), - [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1243), - [anon_sym_AMP] = ACTIONS(1605), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3058), - [anon_sym_async] = ACTIONS(1265), - [anon_sym_const] = ACTIONS(1265), - [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1271), - [anon_sym_for] = ACTIONS(1273), - [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1277), - [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1265), - [anon_sym_extern] = ACTIONS(1279), - [anon_sym_dyn] = ACTIONS(1283), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1619), - [sym_super] = ACTIONS(1619), - [sym_crate] = ACTIONS(1619), - [sym_metavariable] = ACTIONS(1621), + [aux_sym_function_modifiers_repeat1] = STATE(2244), + [sym_identifier] = ACTIONS(3172), + [anon_sym_LPAREN] = ACTIONS(3174), + [anon_sym_LBRACK] = ACTIONS(3176), + [anon_sym_STAR] = ACTIONS(3180), + [anon_sym_QMARK] = ACTIONS(3182), + [anon_sym_u8] = ACTIONS(3184), + [anon_sym_i8] = ACTIONS(3184), + [anon_sym_u16] = ACTIONS(3184), + [anon_sym_i16] = ACTIONS(3184), + [anon_sym_u32] = ACTIONS(3184), + [anon_sym_i32] = ACTIONS(3184), + [anon_sym_u64] = ACTIONS(3184), + [anon_sym_i64] = ACTIONS(3184), + [anon_sym_u128] = ACTIONS(3184), + [anon_sym_i128] = ACTIONS(3184), + [anon_sym_isize] = ACTIONS(3184), + [anon_sym_usize] = ACTIONS(3184), + [anon_sym_f32] = ACTIONS(3184), + [anon_sym_f64] = ACTIONS(3184), + [anon_sym_bool] = ACTIONS(3184), + [anon_sym_str] = ACTIONS(3184), + [anon_sym_char] = ACTIONS(3184), + [anon_sym_BANG] = ACTIONS(3186), + [anon_sym_AMP] = ACTIONS(3188), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3190), + [anon_sym_SQUOTE] = ACTIONS(3072), + [anon_sym_async] = ACTIONS(1270), + [anon_sym_const] = ACTIONS(1270), + [anon_sym_default] = ACTIONS(3192), + [anon_sym_fn] = ACTIONS(3194), + [anon_sym_for] = ACTIONS(1278), + [anon_sym_gen] = ACTIONS(3196), + [anon_sym_impl] = ACTIONS(3198), + [anon_sym_union] = ACTIONS(3196), + [anon_sym_unsafe] = ACTIONS(1270), + [anon_sym_extern] = ACTIONS(1284), + [anon_sym_safe] = ACTIONS(1270), + [anon_sym_dyn] = ACTIONS(3200), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(3204), + [sym_super] = ACTIONS(3204), + [sym_crate] = ACTIONS(3204), + [sym_metavariable] = ACTIONS(3206), }, [STATE(967)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2358), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2451), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(2242), + [sym_function_modifiers] = STATE(3591), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2373), + [sym__type] = STATE(2836), + [sym_bracketed_type] = STATE(3474), + [sym_lifetime] = STATE(3727), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1591), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2022), + [sym_generic_type_with_turbofish] = STATE(3764), + [sym_bounded_type] = STATE(2069), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3334), + [sym_scoped_type_identifier] = STATE(1990), [sym_line_comment] = STATE(967), [sym_block_comment] = STATE(967), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(3278), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1235), - [anon_sym_QMARK] = ACTIONS(1237), - [anon_sym_u8] = ACTIONS(1603), - [anon_sym_i8] = ACTIONS(1603), - [anon_sym_u16] = ACTIONS(1603), - [anon_sym_i16] = ACTIONS(1603), - [anon_sym_u32] = ACTIONS(1603), - [anon_sym_i32] = ACTIONS(1603), - [anon_sym_u64] = ACTIONS(1603), - [anon_sym_i64] = ACTIONS(1603), - [anon_sym_u128] = ACTIONS(1603), - [anon_sym_i128] = ACTIONS(1603), - [anon_sym_isize] = ACTIONS(1603), - [anon_sym_usize] = ACTIONS(1603), - [anon_sym_f32] = ACTIONS(1603), - [anon_sym_f64] = ACTIONS(1603), - [anon_sym_bool] = ACTIONS(1603), - [anon_sym_str] = ACTIONS(1603), - [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(3280), - [anon_sym_AMP] = ACTIONS(1605), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3058), - [anon_sym_async] = ACTIONS(1265), - [anon_sym_const] = ACTIONS(1265), - [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1271), - [anon_sym_for] = ACTIONS(1273), - [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1277), - [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1265), - [anon_sym_extern] = ACTIONS(1279), - [anon_sym_dyn] = ACTIONS(1283), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1619), - [sym_super] = ACTIONS(1619), - [sym_crate] = ACTIONS(1619), - [sym_metavariable] = ACTIONS(1621), + [aux_sym_function_modifiers_repeat1] = STATE(2244), + [sym_identifier] = ACTIONS(3064), + [anon_sym_LPAREN] = ACTIONS(1602), + [anon_sym_LBRACK] = ACTIONS(1604), + [anon_sym_STAR] = ACTIONS(1240), + [anon_sym_QMARK] = ACTIONS(1242), + [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_BANG] = ACTIONS(1248), + [anon_sym_AMP] = ACTIONS(1610), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1614), + [anon_sym_SQUOTE] = ACTIONS(3072), + [anon_sym_async] = ACTIONS(1270), + [anon_sym_const] = ACTIONS(1270), + [anon_sym_default] = ACTIONS(1618), + [anon_sym_fn] = ACTIONS(1276), + [anon_sym_for] = ACTIONS(1278), + [anon_sym_gen] = ACTIONS(1620), + [anon_sym_impl] = ACTIONS(1282), + [anon_sym_union] = ACTIONS(1620), + [anon_sym_unsafe] = ACTIONS(1270), + [anon_sym_extern] = ACTIONS(1284), + [anon_sym_safe] = ACTIONS(1270), + [anon_sym_dyn] = ACTIONS(1288), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1624), + [sym_super] = ACTIONS(1624), + [sym_crate] = ACTIONS(1624), + [sym_metavariable] = ACTIONS(1626), }, [STATE(968)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2362), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2390), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(2200), + [sym_function_modifiers] = STATE(3591), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2373), + [sym__type] = STATE(2468), + [sym_bracketed_type] = STATE(3474), + [sym_lifetime] = STATE(3727), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1591), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2022), + [sym_generic_type_with_turbofish] = STATE(3764), + [sym_bounded_type] = STATE(2069), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3334), + [sym_scoped_type_identifier] = STATE(1990), [sym_line_comment] = STATE(968), [sym_block_comment] = STATE(968), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(3282), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1235), - [anon_sym_QMARK] = ACTIONS(1237), - [anon_sym_u8] = ACTIONS(1603), - [anon_sym_i8] = ACTIONS(1603), - [anon_sym_u16] = ACTIONS(1603), - [anon_sym_i16] = ACTIONS(1603), - [anon_sym_u32] = ACTIONS(1603), - [anon_sym_i32] = ACTIONS(1603), - [anon_sym_u64] = ACTIONS(1603), - [anon_sym_i64] = ACTIONS(1603), - [anon_sym_u128] = ACTIONS(1603), - [anon_sym_i128] = ACTIONS(1603), - [anon_sym_isize] = ACTIONS(1603), - [anon_sym_usize] = ACTIONS(1603), - [anon_sym_f32] = ACTIONS(1603), - [anon_sym_f64] = ACTIONS(1603), - [anon_sym_bool] = ACTIONS(1603), - [anon_sym_str] = ACTIONS(1603), - [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(3284), - [anon_sym_AMP] = ACTIONS(1605), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3058), - [anon_sym_async] = ACTIONS(1265), - [anon_sym_const] = ACTIONS(1265), - [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1271), - [anon_sym_for] = ACTIONS(1273), - [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1277), - [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1265), - [anon_sym_extern] = ACTIONS(1279), - [anon_sym_dyn] = ACTIONS(1283), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1619), - [sym_super] = ACTIONS(1619), - [sym_crate] = ACTIONS(1619), - [sym_metavariable] = ACTIONS(1621), + [aux_sym_function_modifiers_repeat1] = STATE(2244), + [sym_identifier] = ACTIONS(3064), + [anon_sym_LPAREN] = ACTIONS(1602), + [anon_sym_LBRACK] = ACTIONS(1604), + [anon_sym_STAR] = ACTIONS(1240), + [anon_sym_QMARK] = ACTIONS(1242), + [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_BANG] = ACTIONS(1248), + [anon_sym_AMP] = ACTIONS(1610), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1614), + [anon_sym_SQUOTE] = ACTIONS(3072), + [anon_sym_async] = ACTIONS(1270), + [anon_sym_const] = ACTIONS(1270), + [anon_sym_default] = ACTIONS(1618), + [anon_sym_fn] = ACTIONS(1276), + [anon_sym_for] = ACTIONS(1278), + [anon_sym_gen] = ACTIONS(1620), + [anon_sym_impl] = ACTIONS(1282), + [anon_sym_union] = ACTIONS(1620), + [anon_sym_unsafe] = ACTIONS(1270), + [anon_sym_extern] = ACTIONS(1284), + [anon_sym_safe] = ACTIONS(1270), + [anon_sym_dyn] = ACTIONS(1288), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1624), + [sym_super] = ACTIONS(1624), + [sym_crate] = ACTIONS(1624), + [sym_metavariable] = ACTIONS(1626), }, [STATE(969)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2673), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_function_modifiers] = STATE(3480), + [sym_removed_trait_bound] = STATE(1470), + [sym_extern_modifier] = STATE(2373), + [sym__type] = STATE(1457), + [sym_bracketed_type] = STATE(3667), + [sym_lifetime] = STATE(3541), + [sym_array_type] = STATE(1470), + [sym_for_lifetimes] = STATE(1603), + [sym_function_type] = STATE(1470), + [sym_tuple_type] = STATE(1470), + [sym_unit_type] = STATE(1470), + [sym_generic_type] = STATE(1381), + [sym_generic_type_with_turbofish] = STATE(3656), + [sym_bounded_type] = STATE(1470), + [sym_reference_type] = STATE(1470), + [sym_pointer_type] = STATE(1470), + [sym_never_type] = STATE(1470), + [sym_abstract_type] = STATE(1470), + [sym_dynamic_type] = STATE(1470), + [sym_macro_invocation] = STATE(1470), + [sym_scoped_identifier] = STATE(3333), + [sym_scoped_type_identifier] = STATE(1077), [sym_line_comment] = STATE(969), [sym_block_comment] = STATE(969), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(3052), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1235), - [anon_sym_QMARK] = ACTIONS(1237), - [anon_sym_u8] = ACTIONS(1603), - [anon_sym_i8] = ACTIONS(1603), - [anon_sym_u16] = ACTIONS(1603), - [anon_sym_i16] = ACTIONS(1603), - [anon_sym_u32] = ACTIONS(1603), - [anon_sym_i32] = ACTIONS(1603), - [anon_sym_u64] = ACTIONS(1603), - [anon_sym_i64] = ACTIONS(1603), - [anon_sym_u128] = ACTIONS(1603), - [anon_sym_i128] = ACTIONS(1603), - [anon_sym_isize] = ACTIONS(1603), - [anon_sym_usize] = ACTIONS(1603), - [anon_sym_f32] = ACTIONS(1603), - [anon_sym_f64] = ACTIONS(1603), - [anon_sym_bool] = ACTIONS(1603), - [anon_sym_str] = ACTIONS(1603), - [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1243), - [anon_sym_AMP] = ACTIONS(1605), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3058), - [anon_sym_async] = ACTIONS(1265), - [anon_sym_const] = ACTIONS(1265), - [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1271), - [anon_sym_for] = ACTIONS(1273), - [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1277), - [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1265), - [anon_sym_extern] = ACTIONS(1279), - [anon_sym_dyn] = ACTIONS(1283), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1619), - [sym_super] = ACTIONS(1619), - [sym_crate] = ACTIONS(1619), - [sym_metavariable] = ACTIONS(1621), + [aux_sym_function_modifiers_repeat1] = STATE(2244), + [sym_identifier] = ACTIONS(3210), + [anon_sym_LPAREN] = ACTIONS(3212), + [anon_sym_LBRACK] = ACTIONS(3214), + [anon_sym_STAR] = ACTIONS(3218), + [anon_sym_QMARK] = ACTIONS(3220), + [anon_sym_u8] = ACTIONS(3222), + [anon_sym_i8] = ACTIONS(3222), + [anon_sym_u16] = ACTIONS(3222), + [anon_sym_i16] = ACTIONS(3222), + [anon_sym_u32] = ACTIONS(3222), + [anon_sym_i32] = ACTIONS(3222), + [anon_sym_u64] = ACTIONS(3222), + [anon_sym_i64] = ACTIONS(3222), + [anon_sym_u128] = ACTIONS(3222), + [anon_sym_i128] = ACTIONS(3222), + [anon_sym_isize] = ACTIONS(3222), + [anon_sym_usize] = ACTIONS(3222), + [anon_sym_f32] = ACTIONS(3222), + [anon_sym_f64] = ACTIONS(3222), + [anon_sym_bool] = ACTIONS(3222), + [anon_sym_str] = ACTIONS(3222), + [anon_sym_char] = ACTIONS(3222), + [anon_sym_BANG] = ACTIONS(3224), + [anon_sym_AMP] = ACTIONS(3226), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3228), + [anon_sym_SQUOTE] = ACTIONS(3072), + [anon_sym_async] = ACTIONS(1270), + [anon_sym_const] = ACTIONS(1270), + [anon_sym_default] = ACTIONS(3230), + [anon_sym_fn] = ACTIONS(3232), + [anon_sym_for] = ACTIONS(1278), + [anon_sym_gen] = ACTIONS(3234), + [anon_sym_impl] = ACTIONS(3236), + [anon_sym_union] = ACTIONS(3234), + [anon_sym_unsafe] = ACTIONS(1270), + [anon_sym_extern] = ACTIONS(1284), + [anon_sym_safe] = ACTIONS(1270), + [anon_sym_dyn] = ACTIONS(3238), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(3242), + [sym_super] = ACTIONS(3242), + [sym_crate] = ACTIONS(3242), + [sym_metavariable] = ACTIONS(3244), }, [STATE(970)] = { - [sym_function_modifiers] = STATE(3595), - [sym_removed_trait_bound] = STATE(1787), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(1722), - [sym_bracketed_type] = STATE(3654), - [sym_lifetime] = STATE(3732), - [sym_array_type] = STATE(1787), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(1787), - [sym_tuple_type] = STATE(1787), - [sym_unit_type] = STATE(1787), - [sym_generic_type] = STATE(1646), - [sym_generic_type_with_turbofish] = STATE(3645), - [sym_bounded_type] = STATE(1787), - [sym_reference_type] = STATE(1787), - [sym_pointer_type] = STATE(1787), - [sym_never_type] = STATE(1787), - [sym_abstract_type] = STATE(1787), - [sym_dynamic_type] = STATE(1787), - [sym_macro_invocation] = STATE(1787), - [sym_scoped_identifier] = STATE(3373), - [sym_scoped_type_identifier] = STATE(1590), + [sym_function_modifiers] = STATE(3591), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2373), + [sym__type] = STATE(2586), + [sym_bracketed_type] = STATE(3474), + [sym_lifetime] = STATE(3727), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1591), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2022), + [sym_generic_type_with_turbofish] = STATE(3764), + [sym_bounded_type] = STATE(2069), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3334), + [sym_scoped_type_identifier] = STATE(1990), [sym_line_comment] = STATE(970), [sym_block_comment] = STATE(970), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(3144), - [anon_sym_LPAREN] = ACTIONS(3146), - [anon_sym_LBRACK] = ACTIONS(3148), - [anon_sym_STAR] = ACTIONS(3152), - [anon_sym_QMARK] = ACTIONS(3154), - [anon_sym_u8] = ACTIONS(3156), - [anon_sym_i8] = ACTIONS(3156), - [anon_sym_u16] = ACTIONS(3156), - [anon_sym_i16] = ACTIONS(3156), - [anon_sym_u32] = ACTIONS(3156), - [anon_sym_i32] = ACTIONS(3156), - [anon_sym_u64] = ACTIONS(3156), - [anon_sym_i64] = ACTIONS(3156), - [anon_sym_u128] = ACTIONS(3156), - [anon_sym_i128] = ACTIONS(3156), - [anon_sym_isize] = ACTIONS(3156), - [anon_sym_usize] = ACTIONS(3156), - [anon_sym_f32] = ACTIONS(3156), - [anon_sym_f64] = ACTIONS(3156), - [anon_sym_bool] = ACTIONS(3156), - [anon_sym_str] = ACTIONS(3156), - [anon_sym_char] = ACTIONS(3156), - [anon_sym_BANG] = ACTIONS(3158), - [anon_sym_AMP] = ACTIONS(3160), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3162), - [anon_sym_SQUOTE] = ACTIONS(3058), - [anon_sym_async] = ACTIONS(1265), - [anon_sym_const] = ACTIONS(1265), - [anon_sym_default] = ACTIONS(3164), - [anon_sym_fn] = ACTIONS(3166), - [anon_sym_for] = ACTIONS(1273), - [anon_sym_gen] = ACTIONS(3168), - [anon_sym_impl] = ACTIONS(3170), - [anon_sym_union] = ACTIONS(3168), - [anon_sym_unsafe] = ACTIONS(1265), - [anon_sym_extern] = ACTIONS(1279), - [anon_sym_dyn] = ACTIONS(3172), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3176), - [sym_super] = ACTIONS(3176), - [sym_crate] = ACTIONS(3176), - [sym_metavariable] = ACTIONS(3178), + [aux_sym_function_modifiers_repeat1] = STATE(2244), + [sym_identifier] = ACTIONS(3064), + [anon_sym_LPAREN] = ACTIONS(1602), + [anon_sym_LBRACK] = ACTIONS(1604), + [anon_sym_STAR] = ACTIONS(1240), + [anon_sym_QMARK] = ACTIONS(1242), + [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_BANG] = ACTIONS(1248), + [anon_sym_AMP] = ACTIONS(1610), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1614), + [anon_sym_SQUOTE] = ACTIONS(3072), + [anon_sym_async] = ACTIONS(1270), + [anon_sym_const] = ACTIONS(1270), + [anon_sym_default] = ACTIONS(1618), + [anon_sym_fn] = ACTIONS(1276), + [anon_sym_for] = ACTIONS(1278), + [anon_sym_gen] = ACTIONS(1620), + [anon_sym_impl] = ACTIONS(1282), + [anon_sym_union] = ACTIONS(1620), + [anon_sym_unsafe] = ACTIONS(1270), + [anon_sym_extern] = ACTIONS(1284), + [anon_sym_safe] = ACTIONS(1270), + [anon_sym_dyn] = ACTIONS(1288), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1624), + [sym_super] = ACTIONS(1624), + [sym_crate] = ACTIONS(1624), + [sym_metavariable] = ACTIONS(1626), }, [STATE(971)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2817), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_function_modifiers] = STATE(3480), + [sym_removed_trait_bound] = STATE(1470), + [sym_extern_modifier] = STATE(2373), + [sym__type] = STATE(1459), + [sym_bracketed_type] = STATE(3667), + [sym_lifetime] = STATE(3541), + [sym_array_type] = STATE(1470), + [sym_for_lifetimes] = STATE(1603), + [sym_function_type] = STATE(1470), + [sym_tuple_type] = STATE(1470), + [sym_unit_type] = STATE(1470), + [sym_generic_type] = STATE(1381), + [sym_generic_type_with_turbofish] = STATE(3656), + [sym_bounded_type] = STATE(1470), + [sym_reference_type] = STATE(1470), + [sym_pointer_type] = STATE(1470), + [sym_never_type] = STATE(1470), + [sym_abstract_type] = STATE(1470), + [sym_dynamic_type] = STATE(1470), + [sym_macro_invocation] = STATE(1470), + [sym_scoped_identifier] = STATE(3333), + [sym_scoped_type_identifier] = STATE(1077), [sym_line_comment] = STATE(971), [sym_block_comment] = STATE(971), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(3052), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1235), - [anon_sym_QMARK] = ACTIONS(1237), - [anon_sym_u8] = ACTIONS(1603), - [anon_sym_i8] = ACTIONS(1603), - [anon_sym_u16] = ACTIONS(1603), - [anon_sym_i16] = ACTIONS(1603), - [anon_sym_u32] = ACTIONS(1603), - [anon_sym_i32] = ACTIONS(1603), - [anon_sym_u64] = ACTIONS(1603), - [anon_sym_i64] = ACTIONS(1603), - [anon_sym_u128] = ACTIONS(1603), - [anon_sym_i128] = ACTIONS(1603), - [anon_sym_isize] = ACTIONS(1603), - [anon_sym_usize] = ACTIONS(1603), - [anon_sym_f32] = ACTIONS(1603), - [anon_sym_f64] = ACTIONS(1603), - [anon_sym_bool] = ACTIONS(1603), - [anon_sym_str] = ACTIONS(1603), - [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1243), - [anon_sym_AMP] = ACTIONS(1605), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3058), - [anon_sym_async] = ACTIONS(1265), - [anon_sym_const] = ACTIONS(1265), - [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1271), - [anon_sym_for] = ACTIONS(1273), - [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1277), - [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1265), - [anon_sym_extern] = ACTIONS(1279), - [anon_sym_dyn] = ACTIONS(1283), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1619), - [sym_super] = ACTIONS(1619), - [sym_crate] = ACTIONS(1619), - [sym_metavariable] = ACTIONS(1621), + [aux_sym_function_modifiers_repeat1] = STATE(2244), + [sym_identifier] = ACTIONS(3210), + [anon_sym_LPAREN] = ACTIONS(3212), + [anon_sym_LBRACK] = ACTIONS(3214), + [anon_sym_STAR] = ACTIONS(3218), + [anon_sym_QMARK] = ACTIONS(3220), + [anon_sym_u8] = ACTIONS(3222), + [anon_sym_i8] = ACTIONS(3222), + [anon_sym_u16] = ACTIONS(3222), + [anon_sym_i16] = ACTIONS(3222), + [anon_sym_u32] = ACTIONS(3222), + [anon_sym_i32] = ACTIONS(3222), + [anon_sym_u64] = ACTIONS(3222), + [anon_sym_i64] = ACTIONS(3222), + [anon_sym_u128] = ACTIONS(3222), + [anon_sym_i128] = ACTIONS(3222), + [anon_sym_isize] = ACTIONS(3222), + [anon_sym_usize] = ACTIONS(3222), + [anon_sym_f32] = ACTIONS(3222), + [anon_sym_f64] = ACTIONS(3222), + [anon_sym_bool] = ACTIONS(3222), + [anon_sym_str] = ACTIONS(3222), + [anon_sym_char] = ACTIONS(3222), + [anon_sym_BANG] = ACTIONS(3224), + [anon_sym_AMP] = ACTIONS(3226), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3228), + [anon_sym_SQUOTE] = ACTIONS(3072), + [anon_sym_async] = ACTIONS(1270), + [anon_sym_const] = ACTIONS(1270), + [anon_sym_default] = ACTIONS(3230), + [anon_sym_fn] = ACTIONS(3232), + [anon_sym_for] = ACTIONS(1278), + [anon_sym_gen] = ACTIONS(3234), + [anon_sym_impl] = ACTIONS(3236), + [anon_sym_union] = ACTIONS(3234), + [anon_sym_unsafe] = ACTIONS(1270), + [anon_sym_extern] = ACTIONS(1284), + [anon_sym_safe] = ACTIONS(1270), + [anon_sym_dyn] = ACTIONS(3238), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(3242), + [sym_super] = ACTIONS(3242), + [sym_crate] = ACTIONS(3242), + [sym_metavariable] = ACTIONS(3244), }, [STATE(972)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(3076), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_function_modifiers] = STATE(3480), + [sym_removed_trait_bound] = STATE(1470), + [sym_extern_modifier] = STATE(2373), + [sym__type] = STATE(1516), + [sym_bracketed_type] = STATE(3667), + [sym_lifetime] = STATE(3541), + [sym_array_type] = STATE(1470), + [sym_for_lifetimes] = STATE(1603), + [sym_function_type] = STATE(1470), + [sym_tuple_type] = STATE(1470), + [sym_unit_type] = STATE(1470), + [sym_generic_type] = STATE(1381), + [sym_generic_type_with_turbofish] = STATE(3656), + [sym_bounded_type] = STATE(1470), + [sym_reference_type] = STATE(1470), + [sym_pointer_type] = STATE(1470), + [sym_never_type] = STATE(1470), + [sym_abstract_type] = STATE(1470), + [sym_dynamic_type] = STATE(1470), + [sym_macro_invocation] = STATE(1470), + [sym_scoped_identifier] = STATE(3333), + [sym_scoped_type_identifier] = STATE(1077), [sym_line_comment] = STATE(972), [sym_block_comment] = STATE(972), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(3052), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1235), - [anon_sym_QMARK] = ACTIONS(1237), - [anon_sym_u8] = ACTIONS(1603), - [anon_sym_i8] = ACTIONS(1603), - [anon_sym_u16] = ACTIONS(1603), - [anon_sym_i16] = ACTIONS(1603), - [anon_sym_u32] = ACTIONS(1603), - [anon_sym_i32] = ACTIONS(1603), - [anon_sym_u64] = ACTIONS(1603), - [anon_sym_i64] = ACTIONS(1603), - [anon_sym_u128] = ACTIONS(1603), - [anon_sym_i128] = ACTIONS(1603), - [anon_sym_isize] = ACTIONS(1603), - [anon_sym_usize] = ACTIONS(1603), - [anon_sym_f32] = ACTIONS(1603), - [anon_sym_f64] = ACTIONS(1603), - [anon_sym_bool] = ACTIONS(1603), - [anon_sym_str] = ACTIONS(1603), - [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1243), - [anon_sym_AMP] = ACTIONS(1605), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3058), - [anon_sym_async] = ACTIONS(1265), - [anon_sym_const] = ACTIONS(1265), - [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1271), - [anon_sym_for] = ACTIONS(1273), - [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1277), - [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1265), - [anon_sym_extern] = ACTIONS(1279), - [anon_sym_dyn] = ACTIONS(1283), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1619), - [sym_super] = ACTIONS(1619), - [sym_crate] = ACTIONS(1619), - [sym_metavariable] = ACTIONS(1621), + [aux_sym_function_modifiers_repeat1] = STATE(2244), + [sym_identifier] = ACTIONS(3210), + [anon_sym_LPAREN] = ACTIONS(3212), + [anon_sym_LBRACK] = ACTIONS(3214), + [anon_sym_STAR] = ACTIONS(3218), + [anon_sym_QMARK] = ACTIONS(3220), + [anon_sym_u8] = ACTIONS(3222), + [anon_sym_i8] = ACTIONS(3222), + [anon_sym_u16] = ACTIONS(3222), + [anon_sym_i16] = ACTIONS(3222), + [anon_sym_u32] = ACTIONS(3222), + [anon_sym_i32] = ACTIONS(3222), + [anon_sym_u64] = ACTIONS(3222), + [anon_sym_i64] = ACTIONS(3222), + [anon_sym_u128] = ACTIONS(3222), + [anon_sym_i128] = ACTIONS(3222), + [anon_sym_isize] = ACTIONS(3222), + [anon_sym_usize] = ACTIONS(3222), + [anon_sym_f32] = ACTIONS(3222), + [anon_sym_f64] = ACTIONS(3222), + [anon_sym_bool] = ACTIONS(3222), + [anon_sym_str] = ACTIONS(3222), + [anon_sym_char] = ACTIONS(3222), + [anon_sym_BANG] = ACTIONS(3224), + [anon_sym_AMP] = ACTIONS(3226), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3228), + [anon_sym_SQUOTE] = ACTIONS(3072), + [anon_sym_async] = ACTIONS(1270), + [anon_sym_const] = ACTIONS(1270), + [anon_sym_default] = ACTIONS(3230), + [anon_sym_fn] = ACTIONS(3232), + [anon_sym_for] = ACTIONS(1278), + [anon_sym_gen] = ACTIONS(3234), + [anon_sym_impl] = ACTIONS(3236), + [anon_sym_union] = ACTIONS(3234), + [anon_sym_unsafe] = ACTIONS(1270), + [anon_sym_extern] = ACTIONS(1284), + [anon_sym_safe] = ACTIONS(1270), + [anon_sym_dyn] = ACTIONS(3238), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(3242), + [sym_super] = ACTIONS(3242), + [sym_crate] = ACTIONS(3242), + [sym_metavariable] = ACTIONS(3244), }, [STATE(973)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2254), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_function_modifiers] = STATE(3480), + [sym_removed_trait_bound] = STATE(1470), + [sym_extern_modifier] = STATE(2373), + [sym__type] = STATE(1462), + [sym_bracketed_type] = STATE(3667), + [sym_lifetime] = STATE(3541), + [sym_array_type] = STATE(1470), + [sym_for_lifetimes] = STATE(1603), + [sym_function_type] = STATE(1470), + [sym_tuple_type] = STATE(1470), + [sym_unit_type] = STATE(1470), + [sym_generic_type] = STATE(1381), + [sym_generic_type_with_turbofish] = STATE(3656), + [sym_bounded_type] = STATE(1470), + [sym_reference_type] = STATE(1470), + [sym_pointer_type] = STATE(1470), + [sym_never_type] = STATE(1470), + [sym_abstract_type] = STATE(1470), + [sym_dynamic_type] = STATE(1470), + [sym_macro_invocation] = STATE(1470), + [sym_scoped_identifier] = STATE(3333), + [sym_scoped_type_identifier] = STATE(1077), [sym_line_comment] = STATE(973), [sym_block_comment] = STATE(973), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(3052), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1235), - [anon_sym_QMARK] = ACTIONS(1237), - [anon_sym_u8] = ACTIONS(1603), - [anon_sym_i8] = ACTIONS(1603), - [anon_sym_u16] = ACTIONS(1603), - [anon_sym_i16] = ACTIONS(1603), - [anon_sym_u32] = ACTIONS(1603), - [anon_sym_i32] = ACTIONS(1603), - [anon_sym_u64] = ACTIONS(1603), - [anon_sym_i64] = ACTIONS(1603), - [anon_sym_u128] = ACTIONS(1603), - [anon_sym_i128] = ACTIONS(1603), - [anon_sym_isize] = ACTIONS(1603), - [anon_sym_usize] = ACTIONS(1603), - [anon_sym_f32] = ACTIONS(1603), - [anon_sym_f64] = ACTIONS(1603), - [anon_sym_bool] = ACTIONS(1603), - [anon_sym_str] = ACTIONS(1603), - [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1243), - [anon_sym_AMP] = ACTIONS(1605), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3058), - [anon_sym_async] = ACTIONS(1265), - [anon_sym_const] = ACTIONS(1265), - [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1271), - [anon_sym_for] = ACTIONS(1273), - [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1277), - [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1265), - [anon_sym_extern] = ACTIONS(1279), - [anon_sym_dyn] = ACTIONS(1283), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1619), - [sym_super] = ACTIONS(1619), - [sym_crate] = ACTIONS(1619), - [sym_metavariable] = ACTIONS(1621), + [aux_sym_function_modifiers_repeat1] = STATE(2244), + [sym_identifier] = ACTIONS(3210), + [anon_sym_LPAREN] = ACTIONS(3212), + [anon_sym_LBRACK] = ACTIONS(3214), + [anon_sym_STAR] = ACTIONS(3218), + [anon_sym_QMARK] = ACTIONS(3220), + [anon_sym_u8] = ACTIONS(3222), + [anon_sym_i8] = ACTIONS(3222), + [anon_sym_u16] = ACTIONS(3222), + [anon_sym_i16] = ACTIONS(3222), + [anon_sym_u32] = ACTIONS(3222), + [anon_sym_i32] = ACTIONS(3222), + [anon_sym_u64] = ACTIONS(3222), + [anon_sym_i64] = ACTIONS(3222), + [anon_sym_u128] = ACTIONS(3222), + [anon_sym_i128] = ACTIONS(3222), + [anon_sym_isize] = ACTIONS(3222), + [anon_sym_usize] = ACTIONS(3222), + [anon_sym_f32] = ACTIONS(3222), + [anon_sym_f64] = ACTIONS(3222), + [anon_sym_bool] = ACTIONS(3222), + [anon_sym_str] = ACTIONS(3222), + [anon_sym_char] = ACTIONS(3222), + [anon_sym_BANG] = ACTIONS(3224), + [anon_sym_AMP] = ACTIONS(3226), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3228), + [anon_sym_SQUOTE] = ACTIONS(3072), + [anon_sym_async] = ACTIONS(1270), + [anon_sym_const] = ACTIONS(1270), + [anon_sym_default] = ACTIONS(3230), + [anon_sym_fn] = ACTIONS(3232), + [anon_sym_for] = ACTIONS(1278), + [anon_sym_gen] = ACTIONS(3234), + [anon_sym_impl] = ACTIONS(3236), + [anon_sym_union] = ACTIONS(3234), + [anon_sym_unsafe] = ACTIONS(1270), + [anon_sym_extern] = ACTIONS(1284), + [anon_sym_safe] = ACTIONS(1270), + [anon_sym_dyn] = ACTIONS(3238), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(3242), + [sym_super] = ACTIONS(3242), + [sym_crate] = ACTIONS(3242), + [sym_metavariable] = ACTIONS(3244), }, [STATE(974)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2435), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_function_modifiers] = STATE(3480), + [sym_removed_trait_bound] = STATE(1470), + [sym_extern_modifier] = STATE(2373), + [sym__type] = STATE(1464), + [sym_bracketed_type] = STATE(3667), + [sym_lifetime] = STATE(3541), + [sym_array_type] = STATE(1470), + [sym_for_lifetimes] = STATE(1603), + [sym_function_type] = STATE(1470), + [sym_tuple_type] = STATE(1470), + [sym_unit_type] = STATE(1470), + [sym_generic_type] = STATE(1381), + [sym_generic_type_with_turbofish] = STATE(3656), + [sym_bounded_type] = STATE(1470), + [sym_reference_type] = STATE(1470), + [sym_pointer_type] = STATE(1470), + [sym_never_type] = STATE(1470), + [sym_abstract_type] = STATE(1470), + [sym_dynamic_type] = STATE(1470), + [sym_macro_invocation] = STATE(1470), + [sym_scoped_identifier] = STATE(3333), + [sym_scoped_type_identifier] = STATE(1077), [sym_line_comment] = STATE(974), [sym_block_comment] = STATE(974), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(3052), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1235), - [anon_sym_QMARK] = ACTIONS(1237), - [anon_sym_u8] = ACTIONS(1603), - [anon_sym_i8] = ACTIONS(1603), - [anon_sym_u16] = ACTIONS(1603), - [anon_sym_i16] = ACTIONS(1603), - [anon_sym_u32] = ACTIONS(1603), - [anon_sym_i32] = ACTIONS(1603), - [anon_sym_u64] = ACTIONS(1603), - [anon_sym_i64] = ACTIONS(1603), - [anon_sym_u128] = ACTIONS(1603), - [anon_sym_i128] = ACTIONS(1603), - [anon_sym_isize] = ACTIONS(1603), - [anon_sym_usize] = ACTIONS(1603), - [anon_sym_f32] = ACTIONS(1603), - [anon_sym_f64] = ACTIONS(1603), - [anon_sym_bool] = ACTIONS(1603), - [anon_sym_str] = ACTIONS(1603), - [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1243), - [anon_sym_AMP] = ACTIONS(1605), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3058), - [anon_sym_async] = ACTIONS(1265), - [anon_sym_const] = ACTIONS(1265), - [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1271), - [anon_sym_for] = ACTIONS(1273), - [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1277), - [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1265), - [anon_sym_extern] = ACTIONS(1279), - [anon_sym_dyn] = ACTIONS(1283), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1619), - [sym_super] = ACTIONS(1619), - [sym_crate] = ACTIONS(1619), - [sym_metavariable] = ACTIONS(1621), + [aux_sym_function_modifiers_repeat1] = STATE(2244), + [sym_identifier] = ACTIONS(3210), + [anon_sym_LPAREN] = ACTIONS(3212), + [anon_sym_LBRACK] = ACTIONS(3214), + [anon_sym_STAR] = ACTIONS(3218), + [anon_sym_QMARK] = ACTIONS(3220), + [anon_sym_u8] = ACTIONS(3222), + [anon_sym_i8] = ACTIONS(3222), + [anon_sym_u16] = ACTIONS(3222), + [anon_sym_i16] = ACTIONS(3222), + [anon_sym_u32] = ACTIONS(3222), + [anon_sym_i32] = ACTIONS(3222), + [anon_sym_u64] = ACTIONS(3222), + [anon_sym_i64] = ACTIONS(3222), + [anon_sym_u128] = ACTIONS(3222), + [anon_sym_i128] = ACTIONS(3222), + [anon_sym_isize] = ACTIONS(3222), + [anon_sym_usize] = ACTIONS(3222), + [anon_sym_f32] = ACTIONS(3222), + [anon_sym_f64] = ACTIONS(3222), + [anon_sym_bool] = ACTIONS(3222), + [anon_sym_str] = ACTIONS(3222), + [anon_sym_char] = ACTIONS(3222), + [anon_sym_BANG] = ACTIONS(3224), + [anon_sym_AMP] = ACTIONS(3226), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3228), + [anon_sym_SQUOTE] = ACTIONS(3072), + [anon_sym_async] = ACTIONS(1270), + [anon_sym_const] = ACTIONS(1270), + [anon_sym_default] = ACTIONS(3230), + [anon_sym_fn] = ACTIONS(3232), + [anon_sym_for] = ACTIONS(1278), + [anon_sym_gen] = ACTIONS(3234), + [anon_sym_impl] = ACTIONS(3236), + [anon_sym_union] = ACTIONS(3234), + [anon_sym_unsafe] = ACTIONS(1270), + [anon_sym_extern] = ACTIONS(1284), + [anon_sym_safe] = ACTIONS(1270), + [anon_sym_dyn] = ACTIONS(3238), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(3242), + [sym_super] = ACTIONS(3242), + [sym_crate] = ACTIONS(3242), + [sym_metavariable] = ACTIONS(3244), }, [STATE(975)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2436), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_function_modifiers] = STATE(3624), + [sym_removed_trait_bound] = STATE(1721), + [sym_extern_modifier] = STATE(2373), + [sym__type] = STATE(1780), + [sym_bracketed_type] = STATE(3683), + [sym_lifetime] = STATE(3755), + [sym_array_type] = STATE(1721), + [sym_for_lifetimes] = STATE(1605), + [sym_function_type] = STATE(1721), + [sym_tuple_type] = STATE(1721), + [sym_unit_type] = STATE(1721), + [sym_generic_type] = STATE(1679), + [sym_generic_type_with_turbofish] = STATE(3674), + [sym_bounded_type] = STATE(1721), + [sym_reference_type] = STATE(1721), + [sym_pointer_type] = STATE(1721), + [sym_never_type] = STATE(1721), + [sym_abstract_type] = STATE(1721), + [sym_dynamic_type] = STATE(1721), + [sym_macro_invocation] = STATE(1721), + [sym_scoped_identifier] = STATE(3408), + [sym_scoped_type_identifier] = STATE(1595), [sym_line_comment] = STATE(975), [sym_block_comment] = STATE(975), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(3052), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1235), - [anon_sym_QMARK] = ACTIONS(1237), - [anon_sym_u8] = ACTIONS(1603), - [anon_sym_i8] = ACTIONS(1603), - [anon_sym_u16] = ACTIONS(1603), - [anon_sym_i16] = ACTIONS(1603), - [anon_sym_u32] = ACTIONS(1603), - [anon_sym_i32] = ACTIONS(1603), - [anon_sym_u64] = ACTIONS(1603), - [anon_sym_i64] = ACTIONS(1603), - [anon_sym_u128] = ACTIONS(1603), - [anon_sym_i128] = ACTIONS(1603), - [anon_sym_isize] = ACTIONS(1603), - [anon_sym_usize] = ACTIONS(1603), - [anon_sym_f32] = ACTIONS(1603), - [anon_sym_f64] = ACTIONS(1603), - [anon_sym_bool] = ACTIONS(1603), - [anon_sym_str] = ACTIONS(1603), - [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1243), - [anon_sym_AMP] = ACTIONS(1605), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3058), - [anon_sym_async] = ACTIONS(1265), - [anon_sym_const] = ACTIONS(1265), - [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1271), - [anon_sym_for] = ACTIONS(1273), - [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1277), - [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1265), - [anon_sym_extern] = ACTIONS(1279), - [anon_sym_dyn] = ACTIONS(1283), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1619), - [sym_super] = ACTIONS(1619), - [sym_crate] = ACTIONS(1619), - [sym_metavariable] = ACTIONS(1621), + [aux_sym_function_modifiers_repeat1] = STATE(2244), + [sym_identifier] = ACTIONS(3172), + [anon_sym_LPAREN] = ACTIONS(3174), + [anon_sym_LBRACK] = ACTIONS(3176), + [anon_sym_STAR] = ACTIONS(3180), + [anon_sym_QMARK] = ACTIONS(3182), + [anon_sym_u8] = ACTIONS(3184), + [anon_sym_i8] = ACTIONS(3184), + [anon_sym_u16] = ACTIONS(3184), + [anon_sym_i16] = ACTIONS(3184), + [anon_sym_u32] = ACTIONS(3184), + [anon_sym_i32] = ACTIONS(3184), + [anon_sym_u64] = ACTIONS(3184), + [anon_sym_i64] = ACTIONS(3184), + [anon_sym_u128] = ACTIONS(3184), + [anon_sym_i128] = ACTIONS(3184), + [anon_sym_isize] = ACTIONS(3184), + [anon_sym_usize] = ACTIONS(3184), + [anon_sym_f32] = ACTIONS(3184), + [anon_sym_f64] = ACTIONS(3184), + [anon_sym_bool] = ACTIONS(3184), + [anon_sym_str] = ACTIONS(3184), + [anon_sym_char] = ACTIONS(3184), + [anon_sym_BANG] = ACTIONS(3186), + [anon_sym_AMP] = ACTIONS(3188), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3190), + [anon_sym_SQUOTE] = ACTIONS(3072), + [anon_sym_async] = ACTIONS(1270), + [anon_sym_const] = ACTIONS(1270), + [anon_sym_default] = ACTIONS(3192), + [anon_sym_fn] = ACTIONS(3194), + [anon_sym_for] = ACTIONS(1278), + [anon_sym_gen] = ACTIONS(3196), + [anon_sym_impl] = ACTIONS(3198), + [anon_sym_union] = ACTIONS(3196), + [anon_sym_unsafe] = ACTIONS(1270), + [anon_sym_extern] = ACTIONS(1284), + [anon_sym_safe] = ACTIONS(1270), + [anon_sym_dyn] = ACTIONS(3200), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(3204), + [sym_super] = ACTIONS(3204), + [sym_crate] = ACTIONS(3204), + [sym_metavariable] = ACTIONS(3206), }, [STATE(976)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2440), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_function_modifiers] = STATE(3591), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2373), + [sym__type] = STATE(2718), + [sym_bracketed_type] = STATE(3474), + [sym_lifetime] = STATE(3727), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1591), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2022), + [sym_generic_type_with_turbofish] = STATE(3764), + [sym_bounded_type] = STATE(2069), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3334), + [sym_scoped_type_identifier] = STATE(1990), [sym_line_comment] = STATE(976), [sym_block_comment] = STATE(976), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(3052), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1235), - [anon_sym_QMARK] = ACTIONS(1237), - [anon_sym_u8] = ACTIONS(1603), - [anon_sym_i8] = ACTIONS(1603), - [anon_sym_u16] = ACTIONS(1603), - [anon_sym_i16] = ACTIONS(1603), - [anon_sym_u32] = ACTIONS(1603), - [anon_sym_i32] = ACTIONS(1603), - [anon_sym_u64] = ACTIONS(1603), - [anon_sym_i64] = ACTIONS(1603), - [anon_sym_u128] = ACTIONS(1603), - [anon_sym_i128] = ACTIONS(1603), - [anon_sym_isize] = ACTIONS(1603), - [anon_sym_usize] = ACTIONS(1603), - [anon_sym_f32] = ACTIONS(1603), - [anon_sym_f64] = ACTIONS(1603), - [anon_sym_bool] = ACTIONS(1603), - [anon_sym_str] = ACTIONS(1603), - [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1243), - [anon_sym_AMP] = ACTIONS(1605), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3058), - [anon_sym_async] = ACTIONS(1265), - [anon_sym_const] = ACTIONS(1265), - [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1271), - [anon_sym_for] = ACTIONS(1273), - [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1277), - [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1265), - [anon_sym_extern] = ACTIONS(1279), - [anon_sym_dyn] = ACTIONS(1283), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1619), - [sym_super] = ACTIONS(1619), - [sym_crate] = ACTIONS(1619), - [sym_metavariable] = ACTIONS(1621), + [aux_sym_function_modifiers_repeat1] = STATE(2244), + [sym_identifier] = ACTIONS(3064), + [anon_sym_LPAREN] = ACTIONS(1602), + [anon_sym_LBRACK] = ACTIONS(1604), + [anon_sym_STAR] = ACTIONS(1240), + [anon_sym_QMARK] = ACTIONS(1242), + [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_BANG] = ACTIONS(1248), + [anon_sym_AMP] = ACTIONS(1610), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1614), + [anon_sym_SQUOTE] = ACTIONS(3072), + [anon_sym_async] = ACTIONS(1270), + [anon_sym_const] = ACTIONS(1270), + [anon_sym_default] = ACTIONS(1618), + [anon_sym_fn] = ACTIONS(1276), + [anon_sym_for] = ACTIONS(1278), + [anon_sym_gen] = ACTIONS(1620), + [anon_sym_impl] = ACTIONS(1282), + [anon_sym_union] = ACTIONS(1620), + [anon_sym_unsafe] = ACTIONS(1270), + [anon_sym_extern] = ACTIONS(1284), + [anon_sym_safe] = ACTIONS(1270), + [anon_sym_dyn] = ACTIONS(1288), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1624), + [sym_super] = ACTIONS(1624), + [sym_crate] = ACTIONS(1624), + [sym_metavariable] = ACTIONS(1626), }, [STATE(977)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2441), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_function_modifiers] = STATE(3591), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2373), + [sym__type] = STATE(2798), + [sym_bracketed_type] = STATE(3474), + [sym_lifetime] = STATE(3727), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1591), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2022), + [sym_generic_type_with_turbofish] = STATE(3764), + [sym_bounded_type] = STATE(2069), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3334), + [sym_scoped_type_identifier] = STATE(1990), [sym_line_comment] = STATE(977), [sym_block_comment] = STATE(977), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(3052), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1235), - [anon_sym_QMARK] = ACTIONS(1237), - [anon_sym_u8] = ACTIONS(1603), - [anon_sym_i8] = ACTIONS(1603), - [anon_sym_u16] = ACTIONS(1603), - [anon_sym_i16] = ACTIONS(1603), - [anon_sym_u32] = ACTIONS(1603), - [anon_sym_i32] = ACTIONS(1603), - [anon_sym_u64] = ACTIONS(1603), - [anon_sym_i64] = ACTIONS(1603), - [anon_sym_u128] = ACTIONS(1603), - [anon_sym_i128] = ACTIONS(1603), - [anon_sym_isize] = ACTIONS(1603), - [anon_sym_usize] = ACTIONS(1603), - [anon_sym_f32] = ACTIONS(1603), - [anon_sym_f64] = ACTIONS(1603), - [anon_sym_bool] = ACTIONS(1603), - [anon_sym_str] = ACTIONS(1603), - [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1243), - [anon_sym_AMP] = ACTIONS(1605), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3058), - [anon_sym_async] = ACTIONS(1265), - [anon_sym_const] = ACTIONS(1265), - [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1271), - [anon_sym_for] = ACTIONS(1273), - [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1277), - [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1265), - [anon_sym_extern] = ACTIONS(1279), - [anon_sym_dyn] = ACTIONS(1283), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1619), - [sym_super] = ACTIONS(1619), - [sym_crate] = ACTIONS(1619), - [sym_metavariable] = ACTIONS(1621), + [aux_sym_function_modifiers_repeat1] = STATE(2244), + [sym_identifier] = ACTIONS(3064), + [anon_sym_LPAREN] = ACTIONS(1602), + [anon_sym_LBRACK] = ACTIONS(1604), + [anon_sym_STAR] = ACTIONS(1240), + [anon_sym_QMARK] = ACTIONS(1242), + [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_BANG] = ACTIONS(1248), + [anon_sym_AMP] = ACTIONS(1610), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1614), + [anon_sym_SQUOTE] = ACTIONS(3072), + [anon_sym_async] = ACTIONS(1270), + [anon_sym_const] = ACTIONS(1270), + [anon_sym_default] = ACTIONS(1618), + [anon_sym_fn] = ACTIONS(1276), + [anon_sym_for] = ACTIONS(1278), + [anon_sym_gen] = ACTIONS(1620), + [anon_sym_impl] = ACTIONS(1282), + [anon_sym_union] = ACTIONS(1620), + [anon_sym_unsafe] = ACTIONS(1270), + [anon_sym_extern] = ACTIONS(1284), + [anon_sym_safe] = ACTIONS(1270), + [anon_sym_dyn] = ACTIONS(1288), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1624), + [sym_super] = ACTIONS(1624), + [sym_crate] = ACTIONS(1624), + [sym_metavariable] = ACTIONS(1626), }, [STATE(978)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2711), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_function_modifiers] = STATE(3480), + [sym_removed_trait_bound] = STATE(1470), + [sym_extern_modifier] = STATE(2373), + [sym__type] = STATE(1491), + [sym_bracketed_type] = STATE(3667), + [sym_lifetime] = STATE(3541), + [sym_array_type] = STATE(1470), + [sym_for_lifetimes] = STATE(1603), + [sym_function_type] = STATE(1470), + [sym_tuple_type] = STATE(1470), + [sym_unit_type] = STATE(1470), + [sym_generic_type] = STATE(1381), + [sym_generic_type_with_turbofish] = STATE(3656), + [sym_bounded_type] = STATE(1470), + [sym_reference_type] = STATE(1470), + [sym_pointer_type] = STATE(1470), + [sym_never_type] = STATE(1470), + [sym_abstract_type] = STATE(1470), + [sym_dynamic_type] = STATE(1470), + [sym_macro_invocation] = STATE(1470), + [sym_scoped_identifier] = STATE(3333), + [sym_scoped_type_identifier] = STATE(1077), [sym_line_comment] = STATE(978), [sym_block_comment] = STATE(978), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(3052), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1235), - [anon_sym_QMARK] = ACTIONS(1237), - [anon_sym_u8] = ACTIONS(1603), - [anon_sym_i8] = ACTIONS(1603), - [anon_sym_u16] = ACTIONS(1603), - [anon_sym_i16] = ACTIONS(1603), - [anon_sym_u32] = ACTIONS(1603), - [anon_sym_i32] = ACTIONS(1603), - [anon_sym_u64] = ACTIONS(1603), - [anon_sym_i64] = ACTIONS(1603), - [anon_sym_u128] = ACTIONS(1603), - [anon_sym_i128] = ACTIONS(1603), - [anon_sym_isize] = ACTIONS(1603), - [anon_sym_usize] = ACTIONS(1603), - [anon_sym_f32] = ACTIONS(1603), - [anon_sym_f64] = ACTIONS(1603), - [anon_sym_bool] = ACTIONS(1603), - [anon_sym_str] = ACTIONS(1603), - [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1243), - [anon_sym_AMP] = ACTIONS(1605), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3058), - [anon_sym_async] = ACTIONS(1265), - [anon_sym_const] = ACTIONS(1265), - [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1271), - [anon_sym_for] = ACTIONS(1273), - [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1277), - [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1265), - [anon_sym_extern] = ACTIONS(1279), - [anon_sym_dyn] = ACTIONS(1283), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1619), - [sym_super] = ACTIONS(1619), - [sym_crate] = ACTIONS(1619), - [sym_metavariable] = ACTIONS(1621), + [aux_sym_function_modifiers_repeat1] = STATE(2244), + [sym_identifier] = ACTIONS(3210), + [anon_sym_LPAREN] = ACTIONS(3212), + [anon_sym_LBRACK] = ACTIONS(3214), + [anon_sym_STAR] = ACTIONS(3218), + [anon_sym_QMARK] = ACTIONS(3220), + [anon_sym_u8] = ACTIONS(3222), + [anon_sym_i8] = ACTIONS(3222), + [anon_sym_u16] = ACTIONS(3222), + [anon_sym_i16] = ACTIONS(3222), + [anon_sym_u32] = ACTIONS(3222), + [anon_sym_i32] = ACTIONS(3222), + [anon_sym_u64] = ACTIONS(3222), + [anon_sym_i64] = ACTIONS(3222), + [anon_sym_u128] = ACTIONS(3222), + [anon_sym_i128] = ACTIONS(3222), + [anon_sym_isize] = ACTIONS(3222), + [anon_sym_usize] = ACTIONS(3222), + [anon_sym_f32] = ACTIONS(3222), + [anon_sym_f64] = ACTIONS(3222), + [anon_sym_bool] = ACTIONS(3222), + [anon_sym_str] = ACTIONS(3222), + [anon_sym_char] = ACTIONS(3222), + [anon_sym_BANG] = ACTIONS(3224), + [anon_sym_AMP] = ACTIONS(3226), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3228), + [anon_sym_SQUOTE] = ACTIONS(3072), + [anon_sym_async] = ACTIONS(1270), + [anon_sym_const] = ACTIONS(1270), + [anon_sym_default] = ACTIONS(3230), + [anon_sym_fn] = ACTIONS(3232), + [anon_sym_for] = ACTIONS(1278), + [anon_sym_gen] = ACTIONS(3234), + [anon_sym_impl] = ACTIONS(3236), + [anon_sym_union] = ACTIONS(3234), + [anon_sym_unsafe] = ACTIONS(1270), + [anon_sym_extern] = ACTIONS(1284), + [anon_sym_safe] = ACTIONS(1270), + [anon_sym_dyn] = ACTIONS(3238), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(3242), + [sym_super] = ACTIONS(3242), + [sym_crate] = ACTIONS(3242), + [sym_metavariable] = ACTIONS(3244), }, [STATE(979)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2640), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_function_modifiers] = STATE(3591), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2373), + [sym__type] = STATE(2381), + [sym_bracketed_type] = STATE(3474), + [sym_lifetime] = STATE(3727), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1591), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2387), + [sym_generic_type_with_turbofish] = STATE(3764), + [sym_bounded_type] = STATE(2069), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3334), + [sym_scoped_type_identifier] = STATE(2220), [sym_line_comment] = STATE(979), [sym_block_comment] = STATE(979), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(3052), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1235), - [anon_sym_QMARK] = ACTIONS(1237), - [anon_sym_u8] = ACTIONS(1603), - [anon_sym_i8] = ACTIONS(1603), - [anon_sym_u16] = ACTIONS(1603), - [anon_sym_i16] = ACTIONS(1603), - [anon_sym_u32] = ACTIONS(1603), - [anon_sym_i32] = ACTIONS(1603), - [anon_sym_u64] = ACTIONS(1603), - [anon_sym_i64] = ACTIONS(1603), - [anon_sym_u128] = ACTIONS(1603), - [anon_sym_i128] = ACTIONS(1603), - [anon_sym_isize] = ACTIONS(1603), - [anon_sym_usize] = ACTIONS(1603), - [anon_sym_f32] = ACTIONS(1603), - [anon_sym_f64] = ACTIONS(1603), - [anon_sym_bool] = ACTIONS(1603), - [anon_sym_str] = ACTIONS(1603), - [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1243), - [anon_sym_AMP] = ACTIONS(1605), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3058), - [anon_sym_async] = ACTIONS(1265), - [anon_sym_const] = ACTIONS(1265), - [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1271), - [anon_sym_for] = ACTIONS(1273), - [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1277), - [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1265), - [anon_sym_extern] = ACTIONS(1279), - [anon_sym_dyn] = ACTIONS(1283), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1619), - [sym_super] = ACTIONS(1619), - [sym_crate] = ACTIONS(1619), - [sym_metavariable] = ACTIONS(1621), + [aux_sym_function_modifiers_repeat1] = STATE(2244), + [sym_identifier] = ACTIONS(3302), + [anon_sym_LPAREN] = ACTIONS(1602), + [anon_sym_LBRACK] = ACTIONS(1604), + [anon_sym_STAR] = ACTIONS(1240), + [anon_sym_QMARK] = ACTIONS(1242), + [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_BANG] = ACTIONS(3304), + [anon_sym_AMP] = ACTIONS(1610), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1614), + [anon_sym_SQUOTE] = ACTIONS(3072), + [anon_sym_async] = ACTIONS(1270), + [anon_sym_const] = ACTIONS(1270), + [anon_sym_default] = ACTIONS(1618), + [anon_sym_fn] = ACTIONS(1276), + [anon_sym_for] = ACTIONS(1278), + [anon_sym_gen] = ACTIONS(1620), + [anon_sym_impl] = ACTIONS(1282), + [anon_sym_union] = ACTIONS(1620), + [anon_sym_unsafe] = ACTIONS(1270), + [anon_sym_extern] = ACTIONS(1284), + [anon_sym_safe] = ACTIONS(1270), + [anon_sym_dyn] = ACTIONS(1288), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1624), + [sym_super] = ACTIONS(1624), + [sym_crate] = ACTIONS(1624), + [sym_metavariable] = ACTIONS(1626), }, [STATE(980)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2906), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_function_modifiers] = STATE(3591), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2373), + [sym__type] = STATE(2978), + [sym_bracketed_type] = STATE(3474), + [sym_lifetime] = STATE(3727), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1591), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2022), + [sym_generic_type_with_turbofish] = STATE(3764), + [sym_bounded_type] = STATE(2069), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3334), + [sym_scoped_type_identifier] = STATE(1990), [sym_line_comment] = STATE(980), [sym_block_comment] = STATE(980), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(3052), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1235), - [anon_sym_QMARK] = ACTIONS(1237), - [anon_sym_u8] = ACTIONS(1603), - [anon_sym_i8] = ACTIONS(1603), - [anon_sym_u16] = ACTIONS(1603), - [anon_sym_i16] = ACTIONS(1603), - [anon_sym_u32] = ACTIONS(1603), - [anon_sym_i32] = ACTIONS(1603), - [anon_sym_u64] = ACTIONS(1603), - [anon_sym_i64] = ACTIONS(1603), - [anon_sym_u128] = ACTIONS(1603), - [anon_sym_i128] = ACTIONS(1603), - [anon_sym_isize] = ACTIONS(1603), - [anon_sym_usize] = ACTIONS(1603), - [anon_sym_f32] = ACTIONS(1603), - [anon_sym_f64] = ACTIONS(1603), - [anon_sym_bool] = ACTIONS(1603), - [anon_sym_str] = ACTIONS(1603), - [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1243), - [anon_sym_AMP] = ACTIONS(1605), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3058), - [anon_sym_async] = ACTIONS(1265), - [anon_sym_const] = ACTIONS(1265), - [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1271), - [anon_sym_for] = ACTIONS(1273), - [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1277), - [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1265), - [anon_sym_extern] = ACTIONS(1279), - [anon_sym_dyn] = ACTIONS(1283), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1619), - [sym_super] = ACTIONS(1619), - [sym_crate] = ACTIONS(1619), - [sym_metavariable] = ACTIONS(1621), + [aux_sym_function_modifiers_repeat1] = STATE(2244), + [sym_identifier] = ACTIONS(3064), + [anon_sym_LPAREN] = ACTIONS(1602), + [anon_sym_LBRACK] = ACTIONS(1604), + [anon_sym_STAR] = ACTIONS(1240), + [anon_sym_QMARK] = ACTIONS(1242), + [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_BANG] = ACTIONS(1248), + [anon_sym_AMP] = ACTIONS(1610), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1614), + [anon_sym_SQUOTE] = ACTIONS(3072), + [anon_sym_async] = ACTIONS(1270), + [anon_sym_const] = ACTIONS(1270), + [anon_sym_default] = ACTIONS(1618), + [anon_sym_fn] = ACTIONS(1276), + [anon_sym_for] = ACTIONS(1278), + [anon_sym_gen] = ACTIONS(1620), + [anon_sym_impl] = ACTIONS(1282), + [anon_sym_union] = ACTIONS(1620), + [anon_sym_unsafe] = ACTIONS(1270), + [anon_sym_extern] = ACTIONS(1284), + [anon_sym_safe] = ACTIONS(1270), + [anon_sym_dyn] = ACTIONS(1288), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1624), + [sym_super] = ACTIONS(1624), + [sym_crate] = ACTIONS(1624), + [sym_metavariable] = ACTIONS(1626), }, [STATE(981)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2458), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_function_modifiers] = STATE(3591), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2373), + [sym__type] = STATE(3134), + [sym_bracketed_type] = STATE(3474), + [sym_lifetime] = STATE(3727), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1591), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2022), + [sym_generic_type_with_turbofish] = STATE(3764), + [sym_bounded_type] = STATE(2069), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3334), + [sym_scoped_type_identifier] = STATE(1990), [sym_line_comment] = STATE(981), [sym_block_comment] = STATE(981), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(3052), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1235), - [anon_sym_QMARK] = ACTIONS(1237), - [anon_sym_u8] = ACTIONS(1603), - [anon_sym_i8] = ACTIONS(1603), - [anon_sym_u16] = ACTIONS(1603), - [anon_sym_i16] = ACTIONS(1603), - [anon_sym_u32] = ACTIONS(1603), - [anon_sym_i32] = ACTIONS(1603), - [anon_sym_u64] = ACTIONS(1603), - [anon_sym_i64] = ACTIONS(1603), - [anon_sym_u128] = ACTIONS(1603), - [anon_sym_i128] = ACTIONS(1603), - [anon_sym_isize] = ACTIONS(1603), - [anon_sym_usize] = ACTIONS(1603), - [anon_sym_f32] = ACTIONS(1603), - [anon_sym_f64] = ACTIONS(1603), - [anon_sym_bool] = ACTIONS(1603), - [anon_sym_str] = ACTIONS(1603), - [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1243), - [anon_sym_AMP] = ACTIONS(1605), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3058), - [anon_sym_async] = ACTIONS(1265), - [anon_sym_const] = ACTIONS(1265), - [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1271), - [anon_sym_for] = ACTIONS(1273), - [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1277), - [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1265), - [anon_sym_extern] = ACTIONS(1279), - [anon_sym_dyn] = ACTIONS(1283), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1619), - [sym_super] = ACTIONS(1619), - [sym_crate] = ACTIONS(1619), - [sym_metavariable] = ACTIONS(1621), + [aux_sym_function_modifiers_repeat1] = STATE(2244), + [sym_identifier] = ACTIONS(3064), + [anon_sym_LPAREN] = ACTIONS(1602), + [anon_sym_LBRACK] = ACTIONS(1604), + [anon_sym_STAR] = ACTIONS(1240), + [anon_sym_QMARK] = ACTIONS(1242), + [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_BANG] = ACTIONS(1248), + [anon_sym_AMP] = ACTIONS(1610), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1614), + [anon_sym_SQUOTE] = ACTIONS(3072), + [anon_sym_async] = ACTIONS(1270), + [anon_sym_const] = ACTIONS(1270), + [anon_sym_default] = ACTIONS(1618), + [anon_sym_fn] = ACTIONS(1276), + [anon_sym_for] = ACTIONS(1278), + [anon_sym_gen] = ACTIONS(1620), + [anon_sym_impl] = ACTIONS(1282), + [anon_sym_union] = ACTIONS(1620), + [anon_sym_unsafe] = ACTIONS(1270), + [anon_sym_extern] = ACTIONS(1284), + [anon_sym_safe] = ACTIONS(1270), + [anon_sym_dyn] = ACTIONS(1288), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1624), + [sym_super] = ACTIONS(1624), + [sym_crate] = ACTIONS(1624), + [sym_metavariable] = ACTIONS(1626), }, [STATE(982)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2574), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_function_modifiers] = STATE(3591), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2373), + [sym__type] = STATE(2285), + [sym_bracketed_type] = STATE(3474), + [sym_lifetime] = STATE(3727), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1591), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2022), + [sym_generic_type_with_turbofish] = STATE(3764), + [sym_bounded_type] = STATE(2069), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3334), + [sym_scoped_type_identifier] = STATE(1990), [sym_line_comment] = STATE(982), [sym_block_comment] = STATE(982), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(3052), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1235), - [anon_sym_QMARK] = ACTIONS(1237), - [anon_sym_u8] = ACTIONS(1603), - [anon_sym_i8] = ACTIONS(1603), - [anon_sym_u16] = ACTIONS(1603), - [anon_sym_i16] = ACTIONS(1603), - [anon_sym_u32] = ACTIONS(1603), - [anon_sym_i32] = ACTIONS(1603), - [anon_sym_u64] = ACTIONS(1603), - [anon_sym_i64] = ACTIONS(1603), - [anon_sym_u128] = ACTIONS(1603), - [anon_sym_i128] = ACTIONS(1603), - [anon_sym_isize] = ACTIONS(1603), - [anon_sym_usize] = ACTIONS(1603), - [anon_sym_f32] = ACTIONS(1603), - [anon_sym_f64] = ACTIONS(1603), - [anon_sym_bool] = ACTIONS(1603), - [anon_sym_str] = ACTIONS(1603), - [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1243), - [anon_sym_AMP] = ACTIONS(1605), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3058), - [anon_sym_async] = ACTIONS(1265), - [anon_sym_const] = ACTIONS(1265), - [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1271), - [anon_sym_for] = ACTIONS(1273), - [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1277), - [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1265), - [anon_sym_extern] = ACTIONS(1279), - [anon_sym_dyn] = ACTIONS(1283), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1619), - [sym_super] = ACTIONS(1619), - [sym_crate] = ACTIONS(1619), - [sym_metavariable] = ACTIONS(1621), + [aux_sym_function_modifiers_repeat1] = STATE(2244), + [sym_identifier] = ACTIONS(3064), + [anon_sym_LPAREN] = ACTIONS(1602), + [anon_sym_LBRACK] = ACTIONS(1604), + [anon_sym_STAR] = ACTIONS(1240), + [anon_sym_QMARK] = ACTIONS(1242), + [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_BANG] = ACTIONS(1248), + [anon_sym_AMP] = ACTIONS(1610), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1614), + [anon_sym_SQUOTE] = ACTIONS(3072), + [anon_sym_async] = ACTIONS(1270), + [anon_sym_const] = ACTIONS(1270), + [anon_sym_default] = ACTIONS(1618), + [anon_sym_fn] = ACTIONS(1276), + [anon_sym_for] = ACTIONS(1278), + [anon_sym_gen] = ACTIONS(1620), + [anon_sym_impl] = ACTIONS(1282), + [anon_sym_union] = ACTIONS(1620), + [anon_sym_unsafe] = ACTIONS(1270), + [anon_sym_extern] = ACTIONS(1284), + [anon_sym_safe] = ACTIONS(1270), + [anon_sym_dyn] = ACTIONS(1288), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1624), + [sym_super] = ACTIONS(1624), + [sym_crate] = ACTIONS(1624), + [sym_metavariable] = ACTIONS(1626), }, [STATE(983)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2585), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_function_modifiers] = STATE(3591), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2373), + [sym__type] = STATE(2379), + [sym_bracketed_type] = STATE(3474), + [sym_lifetime] = STATE(3727), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1591), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2471), + [sym_generic_type_with_turbofish] = STATE(3764), + [sym_bounded_type] = STATE(2069), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3334), + [sym_scoped_type_identifier] = STATE(2260), [sym_line_comment] = STATE(983), [sym_block_comment] = STATE(983), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(3052), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1235), - [anon_sym_QMARK] = ACTIONS(1237), - [anon_sym_u8] = ACTIONS(1603), - [anon_sym_i8] = ACTIONS(1603), - [anon_sym_u16] = ACTIONS(1603), - [anon_sym_i16] = ACTIONS(1603), - [anon_sym_u32] = ACTIONS(1603), - [anon_sym_i32] = ACTIONS(1603), - [anon_sym_u64] = ACTIONS(1603), - [anon_sym_i64] = ACTIONS(1603), - [anon_sym_u128] = ACTIONS(1603), - [anon_sym_i128] = ACTIONS(1603), - [anon_sym_isize] = ACTIONS(1603), - [anon_sym_usize] = ACTIONS(1603), - [anon_sym_f32] = ACTIONS(1603), - [anon_sym_f64] = ACTIONS(1603), - [anon_sym_bool] = ACTIONS(1603), - [anon_sym_str] = ACTIONS(1603), - [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1243), - [anon_sym_AMP] = ACTIONS(1605), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3058), - [anon_sym_async] = ACTIONS(1265), - [anon_sym_const] = ACTIONS(1265), - [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1271), - [anon_sym_for] = ACTIONS(1273), - [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1277), - [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1265), - [anon_sym_extern] = ACTIONS(1279), - [anon_sym_dyn] = ACTIONS(1283), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1619), - [sym_super] = ACTIONS(1619), - [sym_crate] = ACTIONS(1619), - [sym_metavariable] = ACTIONS(1621), + [aux_sym_function_modifiers_repeat1] = STATE(2244), + [sym_identifier] = ACTIONS(3306), + [anon_sym_LPAREN] = ACTIONS(1602), + [anon_sym_LBRACK] = ACTIONS(1604), + [anon_sym_STAR] = ACTIONS(1240), + [anon_sym_QMARK] = ACTIONS(1242), + [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_BANG] = ACTIONS(3308), + [anon_sym_AMP] = ACTIONS(1610), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1614), + [anon_sym_SQUOTE] = ACTIONS(3072), + [anon_sym_async] = ACTIONS(1270), + [anon_sym_const] = ACTIONS(1270), + [anon_sym_default] = ACTIONS(1618), + [anon_sym_fn] = ACTIONS(1276), + [anon_sym_for] = ACTIONS(1278), + [anon_sym_gen] = ACTIONS(1620), + [anon_sym_impl] = ACTIONS(1282), + [anon_sym_union] = ACTIONS(1620), + [anon_sym_unsafe] = ACTIONS(1270), + [anon_sym_extern] = ACTIONS(1284), + [anon_sym_safe] = ACTIONS(1270), + [anon_sym_dyn] = ACTIONS(1288), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1624), + [sym_super] = ACTIONS(1624), + [sym_crate] = ACTIONS(1624), + [sym_metavariable] = ACTIONS(1626), }, [STATE(984)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2916), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_function_modifiers] = STATE(3591), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2373), + [sym__type] = STATE(2551), + [sym_bracketed_type] = STATE(3474), + [sym_lifetime] = STATE(3727), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1591), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2022), + [sym_generic_type_with_turbofish] = STATE(3764), + [sym_bounded_type] = STATE(2069), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3334), + [sym_scoped_type_identifier] = STATE(1990), [sym_line_comment] = STATE(984), [sym_block_comment] = STATE(984), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(3052), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1235), - [anon_sym_QMARK] = ACTIONS(1237), - [anon_sym_u8] = ACTIONS(1603), - [anon_sym_i8] = ACTIONS(1603), - [anon_sym_u16] = ACTIONS(1603), - [anon_sym_i16] = ACTIONS(1603), - [anon_sym_u32] = ACTIONS(1603), - [anon_sym_i32] = ACTIONS(1603), - [anon_sym_u64] = ACTIONS(1603), - [anon_sym_i64] = ACTIONS(1603), - [anon_sym_u128] = ACTIONS(1603), - [anon_sym_i128] = ACTIONS(1603), - [anon_sym_isize] = ACTIONS(1603), - [anon_sym_usize] = ACTIONS(1603), - [anon_sym_f32] = ACTIONS(1603), - [anon_sym_f64] = ACTIONS(1603), - [anon_sym_bool] = ACTIONS(1603), - [anon_sym_str] = ACTIONS(1603), - [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1243), - [anon_sym_AMP] = ACTIONS(1605), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3058), - [anon_sym_async] = ACTIONS(1265), - [anon_sym_const] = ACTIONS(1265), - [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1271), - [anon_sym_for] = ACTIONS(1273), - [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1277), - [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1265), - [anon_sym_extern] = ACTIONS(1279), - [anon_sym_dyn] = ACTIONS(1283), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1619), - [sym_super] = ACTIONS(1619), - [sym_crate] = ACTIONS(1619), - [sym_metavariable] = ACTIONS(1621), + [aux_sym_function_modifiers_repeat1] = STATE(2244), + [sym_identifier] = ACTIONS(3064), + [anon_sym_LPAREN] = ACTIONS(1602), + [anon_sym_LBRACK] = ACTIONS(1604), + [anon_sym_STAR] = ACTIONS(1240), + [anon_sym_QMARK] = ACTIONS(1242), + [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_BANG] = ACTIONS(1248), + [anon_sym_AMP] = ACTIONS(1610), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1614), + [anon_sym_SQUOTE] = ACTIONS(3072), + [anon_sym_async] = ACTIONS(1270), + [anon_sym_const] = ACTIONS(1270), + [anon_sym_default] = ACTIONS(1618), + [anon_sym_fn] = ACTIONS(1276), + [anon_sym_for] = ACTIONS(1278), + [anon_sym_gen] = ACTIONS(1620), + [anon_sym_impl] = ACTIONS(1282), + [anon_sym_union] = ACTIONS(1620), + [anon_sym_unsafe] = ACTIONS(1270), + [anon_sym_extern] = ACTIONS(1284), + [anon_sym_safe] = ACTIONS(1270), + [anon_sym_dyn] = ACTIONS(1288), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1624), + [sym_super] = ACTIONS(1624), + [sym_crate] = ACTIONS(1624), + [sym_metavariable] = ACTIONS(1626), }, [STATE(985)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2746), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_function_modifiers] = STATE(3480), + [sym_removed_trait_bound] = STATE(1470), + [sym_extern_modifier] = STATE(2373), + [sym__type] = STATE(1477), + [sym_bracketed_type] = STATE(3667), + [sym_lifetime] = STATE(3541), + [sym_array_type] = STATE(1470), + [sym_for_lifetimes] = STATE(1603), + [sym_function_type] = STATE(1470), + [sym_tuple_type] = STATE(1470), + [sym_unit_type] = STATE(1470), + [sym_generic_type] = STATE(1381), + [sym_generic_type_with_turbofish] = STATE(3656), + [sym_bounded_type] = STATE(1470), + [sym_reference_type] = STATE(1470), + [sym_pointer_type] = STATE(1470), + [sym_never_type] = STATE(1470), + [sym_abstract_type] = STATE(1470), + [sym_dynamic_type] = STATE(1470), + [sym_macro_invocation] = STATE(1470), + [sym_scoped_identifier] = STATE(3333), + [sym_scoped_type_identifier] = STATE(1077), [sym_line_comment] = STATE(985), [sym_block_comment] = STATE(985), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(3052), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1235), - [anon_sym_QMARK] = ACTIONS(1237), - [anon_sym_u8] = ACTIONS(1603), - [anon_sym_i8] = ACTIONS(1603), - [anon_sym_u16] = ACTIONS(1603), - [anon_sym_i16] = ACTIONS(1603), - [anon_sym_u32] = ACTIONS(1603), - [anon_sym_i32] = ACTIONS(1603), - [anon_sym_u64] = ACTIONS(1603), - [anon_sym_i64] = ACTIONS(1603), - [anon_sym_u128] = ACTIONS(1603), - [anon_sym_i128] = ACTIONS(1603), - [anon_sym_isize] = ACTIONS(1603), - [anon_sym_usize] = ACTIONS(1603), - [anon_sym_f32] = ACTIONS(1603), - [anon_sym_f64] = ACTIONS(1603), - [anon_sym_bool] = ACTIONS(1603), - [anon_sym_str] = ACTIONS(1603), - [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1243), - [anon_sym_AMP] = ACTIONS(1605), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3058), - [anon_sym_async] = ACTIONS(1265), - [anon_sym_const] = ACTIONS(1265), - [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1271), - [anon_sym_for] = ACTIONS(1273), - [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1277), - [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1265), - [anon_sym_extern] = ACTIONS(1279), - [anon_sym_dyn] = ACTIONS(1283), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1619), - [sym_super] = ACTIONS(1619), - [sym_crate] = ACTIONS(1619), - [sym_metavariable] = ACTIONS(1621), + [aux_sym_function_modifiers_repeat1] = STATE(2244), + [sym_identifier] = ACTIONS(3210), + [anon_sym_LPAREN] = ACTIONS(3212), + [anon_sym_LBRACK] = ACTIONS(3214), + [anon_sym_STAR] = ACTIONS(3218), + [anon_sym_QMARK] = ACTIONS(3220), + [anon_sym_u8] = ACTIONS(3222), + [anon_sym_i8] = ACTIONS(3222), + [anon_sym_u16] = ACTIONS(3222), + [anon_sym_i16] = ACTIONS(3222), + [anon_sym_u32] = ACTIONS(3222), + [anon_sym_i32] = ACTIONS(3222), + [anon_sym_u64] = ACTIONS(3222), + [anon_sym_i64] = ACTIONS(3222), + [anon_sym_u128] = ACTIONS(3222), + [anon_sym_i128] = ACTIONS(3222), + [anon_sym_isize] = ACTIONS(3222), + [anon_sym_usize] = ACTIONS(3222), + [anon_sym_f32] = ACTIONS(3222), + [anon_sym_f64] = ACTIONS(3222), + [anon_sym_bool] = ACTIONS(3222), + [anon_sym_str] = ACTIONS(3222), + [anon_sym_char] = ACTIONS(3222), + [anon_sym_BANG] = ACTIONS(3224), + [anon_sym_AMP] = ACTIONS(3226), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3228), + [anon_sym_SQUOTE] = ACTIONS(3072), + [anon_sym_async] = ACTIONS(1270), + [anon_sym_const] = ACTIONS(1270), + [anon_sym_default] = ACTIONS(3230), + [anon_sym_fn] = ACTIONS(3232), + [anon_sym_for] = ACTIONS(1278), + [anon_sym_gen] = ACTIONS(3234), + [anon_sym_impl] = ACTIONS(3236), + [anon_sym_union] = ACTIONS(3234), + [anon_sym_unsafe] = ACTIONS(1270), + [anon_sym_extern] = ACTIONS(1284), + [anon_sym_safe] = ACTIONS(1270), + [anon_sym_dyn] = ACTIONS(3238), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(3242), + [sym_super] = ACTIONS(3242), + [sym_crate] = ACTIONS(3242), + [sym_metavariable] = ACTIONS(3244), }, [STATE(986)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2892), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_function_modifiers] = STATE(3591), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2373), + [sym__type] = STATE(2532), + [sym_bracketed_type] = STATE(3474), + [sym_lifetime] = STATE(3727), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1591), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2022), + [sym_generic_type_with_turbofish] = STATE(3764), + [sym_bounded_type] = STATE(2069), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3334), + [sym_scoped_type_identifier] = STATE(1990), [sym_line_comment] = STATE(986), [sym_block_comment] = STATE(986), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(3052), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1235), - [anon_sym_QMARK] = ACTIONS(1237), - [anon_sym_u8] = ACTIONS(1603), - [anon_sym_i8] = ACTIONS(1603), - [anon_sym_u16] = ACTIONS(1603), - [anon_sym_i16] = ACTIONS(1603), - [anon_sym_u32] = ACTIONS(1603), - [anon_sym_i32] = ACTIONS(1603), - [anon_sym_u64] = ACTIONS(1603), - [anon_sym_i64] = ACTIONS(1603), - [anon_sym_u128] = ACTIONS(1603), - [anon_sym_i128] = ACTIONS(1603), - [anon_sym_isize] = ACTIONS(1603), - [anon_sym_usize] = ACTIONS(1603), - [anon_sym_f32] = ACTIONS(1603), - [anon_sym_f64] = ACTIONS(1603), - [anon_sym_bool] = ACTIONS(1603), - [anon_sym_str] = ACTIONS(1603), - [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1243), - [anon_sym_AMP] = ACTIONS(1605), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3058), - [anon_sym_async] = ACTIONS(1265), - [anon_sym_const] = ACTIONS(1265), - [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1271), - [anon_sym_for] = ACTIONS(1273), - [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1277), - [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1265), - [anon_sym_extern] = ACTIONS(1279), - [anon_sym_dyn] = ACTIONS(1283), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1619), - [sym_super] = ACTIONS(1619), - [sym_crate] = ACTIONS(1619), - [sym_metavariable] = ACTIONS(1621), + [aux_sym_function_modifiers_repeat1] = STATE(2244), + [sym_identifier] = ACTIONS(3064), + [anon_sym_LPAREN] = ACTIONS(1602), + [anon_sym_LBRACK] = ACTIONS(1604), + [anon_sym_STAR] = ACTIONS(1240), + [anon_sym_QMARK] = ACTIONS(1242), + [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_BANG] = ACTIONS(1248), + [anon_sym_AMP] = ACTIONS(1610), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1614), + [anon_sym_SQUOTE] = ACTIONS(3072), + [anon_sym_async] = ACTIONS(1270), + [anon_sym_const] = ACTIONS(1270), + [anon_sym_default] = ACTIONS(1618), + [anon_sym_fn] = ACTIONS(1276), + [anon_sym_for] = ACTIONS(1278), + [anon_sym_gen] = ACTIONS(1620), + [anon_sym_impl] = ACTIONS(1282), + [anon_sym_union] = ACTIONS(1620), + [anon_sym_unsafe] = ACTIONS(1270), + [anon_sym_extern] = ACTIONS(1284), + [anon_sym_safe] = ACTIONS(1270), + [anon_sym_dyn] = ACTIONS(1288), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1624), + [sym_super] = ACTIONS(1624), + [sym_crate] = ACTIONS(1624), + [sym_metavariable] = ACTIONS(1626), }, [STATE(987)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2269), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_function_modifiers] = STATE(3480), + [sym_removed_trait_bound] = STATE(1470), + [sym_extern_modifier] = STATE(2373), + [sym__type] = STATE(1479), + [sym_bracketed_type] = STATE(3667), + [sym_lifetime] = STATE(3541), + [sym_array_type] = STATE(1470), + [sym_for_lifetimes] = STATE(1603), + [sym_function_type] = STATE(1470), + [sym_tuple_type] = STATE(1470), + [sym_unit_type] = STATE(1470), + [sym_generic_type] = STATE(1381), + [sym_generic_type_with_turbofish] = STATE(3656), + [sym_bounded_type] = STATE(1470), + [sym_reference_type] = STATE(1470), + [sym_pointer_type] = STATE(1470), + [sym_never_type] = STATE(1470), + [sym_abstract_type] = STATE(1470), + [sym_dynamic_type] = STATE(1470), + [sym_macro_invocation] = STATE(1470), + [sym_scoped_identifier] = STATE(3333), + [sym_scoped_type_identifier] = STATE(1077), [sym_line_comment] = STATE(987), [sym_block_comment] = STATE(987), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(3052), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1235), - [anon_sym_QMARK] = ACTIONS(1237), - [anon_sym_u8] = ACTIONS(1603), - [anon_sym_i8] = ACTIONS(1603), - [anon_sym_u16] = ACTIONS(1603), - [anon_sym_i16] = ACTIONS(1603), - [anon_sym_u32] = ACTIONS(1603), - [anon_sym_i32] = ACTIONS(1603), - [anon_sym_u64] = ACTIONS(1603), - [anon_sym_i64] = ACTIONS(1603), - [anon_sym_u128] = ACTIONS(1603), - [anon_sym_i128] = ACTIONS(1603), - [anon_sym_isize] = ACTIONS(1603), - [anon_sym_usize] = ACTIONS(1603), - [anon_sym_f32] = ACTIONS(1603), - [anon_sym_f64] = ACTIONS(1603), - [anon_sym_bool] = ACTIONS(1603), - [anon_sym_str] = ACTIONS(1603), - [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1243), - [anon_sym_AMP] = ACTIONS(1605), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3058), - [anon_sym_async] = ACTIONS(1265), - [anon_sym_const] = ACTIONS(1265), - [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1271), - [anon_sym_for] = ACTIONS(1273), - [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1277), - [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1265), - [anon_sym_extern] = ACTIONS(1279), - [anon_sym_dyn] = ACTIONS(1283), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1619), - [sym_super] = ACTIONS(1619), - [sym_crate] = ACTIONS(1619), - [sym_metavariable] = ACTIONS(1621), + [aux_sym_function_modifiers_repeat1] = STATE(2244), + [sym_identifier] = ACTIONS(3210), + [anon_sym_LPAREN] = ACTIONS(3212), + [anon_sym_LBRACK] = ACTIONS(3214), + [anon_sym_STAR] = ACTIONS(3218), + [anon_sym_QMARK] = ACTIONS(3220), + [anon_sym_u8] = ACTIONS(3222), + [anon_sym_i8] = ACTIONS(3222), + [anon_sym_u16] = ACTIONS(3222), + [anon_sym_i16] = ACTIONS(3222), + [anon_sym_u32] = ACTIONS(3222), + [anon_sym_i32] = ACTIONS(3222), + [anon_sym_u64] = ACTIONS(3222), + [anon_sym_i64] = ACTIONS(3222), + [anon_sym_u128] = ACTIONS(3222), + [anon_sym_i128] = ACTIONS(3222), + [anon_sym_isize] = ACTIONS(3222), + [anon_sym_usize] = ACTIONS(3222), + [anon_sym_f32] = ACTIONS(3222), + [anon_sym_f64] = ACTIONS(3222), + [anon_sym_bool] = ACTIONS(3222), + [anon_sym_str] = ACTIONS(3222), + [anon_sym_char] = ACTIONS(3222), + [anon_sym_BANG] = ACTIONS(3224), + [anon_sym_AMP] = ACTIONS(3226), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3228), + [anon_sym_SQUOTE] = ACTIONS(3072), + [anon_sym_async] = ACTIONS(1270), + [anon_sym_const] = ACTIONS(1270), + [anon_sym_default] = ACTIONS(3230), + [anon_sym_fn] = ACTIONS(3232), + [anon_sym_for] = ACTIONS(1278), + [anon_sym_gen] = ACTIONS(3234), + [anon_sym_impl] = ACTIONS(3236), + [anon_sym_union] = ACTIONS(3234), + [anon_sym_unsafe] = ACTIONS(1270), + [anon_sym_extern] = ACTIONS(1284), + [anon_sym_safe] = ACTIONS(1270), + [anon_sym_dyn] = ACTIONS(3238), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(3242), + [sym_super] = ACTIONS(3242), + [sym_crate] = ACTIONS(3242), + [sym_metavariable] = ACTIONS(3244), }, [STATE(988)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2361), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_function_modifiers] = STATE(3480), + [sym_removed_trait_bound] = STATE(1470), + [sym_extern_modifier] = STATE(2373), + [sym__type] = STATE(1480), + [sym_bracketed_type] = STATE(3667), + [sym_lifetime] = STATE(3541), + [sym_array_type] = STATE(1470), + [sym_for_lifetimes] = STATE(1603), + [sym_function_type] = STATE(1470), + [sym_tuple_type] = STATE(1470), + [sym_unit_type] = STATE(1470), + [sym_generic_type] = STATE(1381), + [sym_generic_type_with_turbofish] = STATE(3656), + [sym_bounded_type] = STATE(1470), + [sym_reference_type] = STATE(1470), + [sym_pointer_type] = STATE(1470), + [sym_never_type] = STATE(1470), + [sym_abstract_type] = STATE(1470), + [sym_dynamic_type] = STATE(1470), + [sym_macro_invocation] = STATE(1470), + [sym_scoped_identifier] = STATE(3333), + [sym_scoped_type_identifier] = STATE(1077), [sym_line_comment] = STATE(988), [sym_block_comment] = STATE(988), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(3052), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1235), - [anon_sym_QMARK] = ACTIONS(1237), - [anon_sym_u8] = ACTIONS(1603), - [anon_sym_i8] = ACTIONS(1603), - [anon_sym_u16] = ACTIONS(1603), - [anon_sym_i16] = ACTIONS(1603), - [anon_sym_u32] = ACTIONS(1603), - [anon_sym_i32] = ACTIONS(1603), - [anon_sym_u64] = ACTIONS(1603), - [anon_sym_i64] = ACTIONS(1603), - [anon_sym_u128] = ACTIONS(1603), - [anon_sym_i128] = ACTIONS(1603), - [anon_sym_isize] = ACTIONS(1603), - [anon_sym_usize] = ACTIONS(1603), - [anon_sym_f32] = ACTIONS(1603), - [anon_sym_f64] = ACTIONS(1603), - [anon_sym_bool] = ACTIONS(1603), - [anon_sym_str] = ACTIONS(1603), - [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1243), - [anon_sym_AMP] = ACTIONS(1605), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3058), - [anon_sym_async] = ACTIONS(1265), - [anon_sym_const] = ACTIONS(1265), - [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1271), - [anon_sym_for] = ACTIONS(1273), - [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1277), - [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1265), - [anon_sym_extern] = ACTIONS(1279), - [anon_sym_dyn] = ACTIONS(1283), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1619), - [sym_super] = ACTIONS(1619), - [sym_crate] = ACTIONS(1619), - [sym_metavariable] = ACTIONS(1621), + [aux_sym_function_modifiers_repeat1] = STATE(2244), + [sym_identifier] = ACTIONS(3210), + [anon_sym_LPAREN] = ACTIONS(3212), + [anon_sym_LBRACK] = ACTIONS(3214), + [anon_sym_STAR] = ACTIONS(3218), + [anon_sym_QMARK] = ACTIONS(3220), + [anon_sym_u8] = ACTIONS(3222), + [anon_sym_i8] = ACTIONS(3222), + [anon_sym_u16] = ACTIONS(3222), + [anon_sym_i16] = ACTIONS(3222), + [anon_sym_u32] = ACTIONS(3222), + [anon_sym_i32] = ACTIONS(3222), + [anon_sym_u64] = ACTIONS(3222), + [anon_sym_i64] = ACTIONS(3222), + [anon_sym_u128] = ACTIONS(3222), + [anon_sym_i128] = ACTIONS(3222), + [anon_sym_isize] = ACTIONS(3222), + [anon_sym_usize] = ACTIONS(3222), + [anon_sym_f32] = ACTIONS(3222), + [anon_sym_f64] = ACTIONS(3222), + [anon_sym_bool] = ACTIONS(3222), + [anon_sym_str] = ACTIONS(3222), + [anon_sym_char] = ACTIONS(3222), + [anon_sym_BANG] = ACTIONS(3224), + [anon_sym_AMP] = ACTIONS(3226), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3228), + [anon_sym_SQUOTE] = ACTIONS(3072), + [anon_sym_async] = ACTIONS(1270), + [anon_sym_const] = ACTIONS(1270), + [anon_sym_default] = ACTIONS(3230), + [anon_sym_fn] = ACTIONS(3232), + [anon_sym_for] = ACTIONS(1278), + [anon_sym_gen] = ACTIONS(3234), + [anon_sym_impl] = ACTIONS(3236), + [anon_sym_union] = ACTIONS(3234), + [anon_sym_unsafe] = ACTIONS(1270), + [anon_sym_extern] = ACTIONS(1284), + [anon_sym_safe] = ACTIONS(1270), + [anon_sym_dyn] = ACTIONS(3238), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(3242), + [sym_super] = ACTIONS(3242), + [sym_crate] = ACTIONS(3242), + [sym_metavariable] = ACTIONS(3244), }, [STATE(989)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2363), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_function_modifiers] = STATE(3591), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2373), + [sym__type] = STATE(2870), + [sym_bracketed_type] = STATE(3474), + [sym_lifetime] = STATE(3727), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1591), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2022), + [sym_generic_type_with_turbofish] = STATE(3764), + [sym_bounded_type] = STATE(2069), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3334), + [sym_scoped_type_identifier] = STATE(1990), [sym_line_comment] = STATE(989), [sym_block_comment] = STATE(989), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(3052), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1235), - [anon_sym_QMARK] = ACTIONS(1237), - [anon_sym_u8] = ACTIONS(1603), - [anon_sym_i8] = ACTIONS(1603), - [anon_sym_u16] = ACTIONS(1603), - [anon_sym_i16] = ACTIONS(1603), - [anon_sym_u32] = ACTIONS(1603), - [anon_sym_i32] = ACTIONS(1603), - [anon_sym_u64] = ACTIONS(1603), - [anon_sym_i64] = ACTIONS(1603), - [anon_sym_u128] = ACTIONS(1603), - [anon_sym_i128] = ACTIONS(1603), - [anon_sym_isize] = ACTIONS(1603), - [anon_sym_usize] = ACTIONS(1603), - [anon_sym_f32] = ACTIONS(1603), - [anon_sym_f64] = ACTIONS(1603), - [anon_sym_bool] = ACTIONS(1603), - [anon_sym_str] = ACTIONS(1603), - [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1243), - [anon_sym_AMP] = ACTIONS(1605), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3058), - [anon_sym_async] = ACTIONS(1265), - [anon_sym_const] = ACTIONS(1265), - [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1271), - [anon_sym_for] = ACTIONS(1273), - [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1277), - [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1265), - [anon_sym_extern] = ACTIONS(1279), - [anon_sym_dyn] = ACTIONS(1283), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1619), - [sym_super] = ACTIONS(1619), - [sym_crate] = ACTIONS(1619), - [sym_metavariable] = ACTIONS(1621), + [aux_sym_function_modifiers_repeat1] = STATE(2244), + [sym_identifier] = ACTIONS(3064), + [anon_sym_LPAREN] = ACTIONS(1602), + [anon_sym_LBRACK] = ACTIONS(1604), + [anon_sym_STAR] = ACTIONS(1240), + [anon_sym_QMARK] = ACTIONS(1242), + [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_BANG] = ACTIONS(1248), + [anon_sym_AMP] = ACTIONS(1610), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1614), + [anon_sym_SQUOTE] = ACTIONS(3072), + [anon_sym_async] = ACTIONS(1270), + [anon_sym_const] = ACTIONS(1270), + [anon_sym_default] = ACTIONS(1618), + [anon_sym_fn] = ACTIONS(1276), + [anon_sym_for] = ACTIONS(1278), + [anon_sym_gen] = ACTIONS(1620), + [anon_sym_impl] = ACTIONS(1282), + [anon_sym_union] = ACTIONS(1620), + [anon_sym_unsafe] = ACTIONS(1270), + [anon_sym_extern] = ACTIONS(1284), + [anon_sym_safe] = ACTIONS(1270), + [anon_sym_dyn] = ACTIONS(1288), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1624), + [sym_super] = ACTIONS(1624), + [sym_crate] = ACTIONS(1624), + [sym_metavariable] = ACTIONS(1626), }, [STATE(990)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), + [sym_function_modifiers] = STATE(3591), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2373), [sym__type] = STATE(2396), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_bracketed_type] = STATE(3474), + [sym_lifetime] = STATE(3727), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1591), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2022), + [sym_generic_type_with_turbofish] = STATE(3764), + [sym_bounded_type] = STATE(2069), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3334), + [sym_scoped_type_identifier] = STATE(1990), [sym_line_comment] = STATE(990), [sym_block_comment] = STATE(990), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(3052), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1235), - [anon_sym_QMARK] = ACTIONS(1237), - [anon_sym_u8] = ACTIONS(1603), - [anon_sym_i8] = ACTIONS(1603), - [anon_sym_u16] = ACTIONS(1603), - [anon_sym_i16] = ACTIONS(1603), - [anon_sym_u32] = ACTIONS(1603), - [anon_sym_i32] = ACTIONS(1603), - [anon_sym_u64] = ACTIONS(1603), - [anon_sym_i64] = ACTIONS(1603), - [anon_sym_u128] = ACTIONS(1603), - [anon_sym_i128] = ACTIONS(1603), - [anon_sym_isize] = ACTIONS(1603), - [anon_sym_usize] = ACTIONS(1603), - [anon_sym_f32] = ACTIONS(1603), - [anon_sym_f64] = ACTIONS(1603), - [anon_sym_bool] = ACTIONS(1603), - [anon_sym_str] = ACTIONS(1603), - [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1243), - [anon_sym_AMP] = ACTIONS(1605), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3058), - [anon_sym_async] = ACTIONS(1265), - [anon_sym_const] = ACTIONS(1265), - [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1271), - [anon_sym_for] = ACTIONS(1273), - [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1277), - [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1265), - [anon_sym_extern] = ACTIONS(1279), - [anon_sym_dyn] = ACTIONS(1283), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1619), - [sym_super] = ACTIONS(1619), - [sym_crate] = ACTIONS(1619), - [sym_metavariable] = ACTIONS(1621), + [aux_sym_function_modifiers_repeat1] = STATE(2244), + [sym_identifier] = ACTIONS(3064), + [anon_sym_LPAREN] = ACTIONS(1602), + [anon_sym_LBRACK] = ACTIONS(1604), + [anon_sym_STAR] = ACTIONS(1240), + [anon_sym_QMARK] = ACTIONS(1242), + [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_BANG] = ACTIONS(1248), + [anon_sym_AMP] = ACTIONS(1610), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1614), + [anon_sym_SQUOTE] = ACTIONS(3072), + [anon_sym_async] = ACTIONS(1270), + [anon_sym_const] = ACTIONS(1270), + [anon_sym_default] = ACTIONS(1618), + [anon_sym_fn] = ACTIONS(1276), + [anon_sym_for] = ACTIONS(1278), + [anon_sym_gen] = ACTIONS(1620), + [anon_sym_impl] = ACTIONS(1282), + [anon_sym_union] = ACTIONS(1620), + [anon_sym_unsafe] = ACTIONS(1270), + [anon_sym_extern] = ACTIONS(1284), + [anon_sym_safe] = ACTIONS(1270), + [anon_sym_dyn] = ACTIONS(1288), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1624), + [sym_super] = ACTIONS(1624), + [sym_crate] = ACTIONS(1624), + [sym_metavariable] = ACTIONS(1626), }, [STATE(991)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2939), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_function_modifiers] = STATE(3591), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2373), + [sym__type] = STATE(2397), + [sym_bracketed_type] = STATE(3474), + [sym_lifetime] = STATE(3727), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1591), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2022), + [sym_generic_type_with_turbofish] = STATE(3764), + [sym_bounded_type] = STATE(2069), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3334), + [sym_scoped_type_identifier] = STATE(1990), [sym_line_comment] = STATE(991), [sym_block_comment] = STATE(991), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(3052), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1235), - [anon_sym_QMARK] = ACTIONS(1237), - [anon_sym_u8] = ACTIONS(1603), - [anon_sym_i8] = ACTIONS(1603), - [anon_sym_u16] = ACTIONS(1603), - [anon_sym_i16] = ACTIONS(1603), - [anon_sym_u32] = ACTIONS(1603), - [anon_sym_i32] = ACTIONS(1603), - [anon_sym_u64] = ACTIONS(1603), - [anon_sym_i64] = ACTIONS(1603), - [anon_sym_u128] = ACTIONS(1603), - [anon_sym_i128] = ACTIONS(1603), - [anon_sym_isize] = ACTIONS(1603), - [anon_sym_usize] = ACTIONS(1603), - [anon_sym_f32] = ACTIONS(1603), - [anon_sym_f64] = ACTIONS(1603), - [anon_sym_bool] = ACTIONS(1603), - [anon_sym_str] = ACTIONS(1603), - [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1243), - [anon_sym_AMP] = ACTIONS(1605), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3058), - [anon_sym_async] = ACTIONS(1265), - [anon_sym_const] = ACTIONS(1265), - [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1271), - [anon_sym_for] = ACTIONS(1273), - [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1277), - [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1265), - [anon_sym_extern] = ACTIONS(1279), - [anon_sym_dyn] = ACTIONS(1283), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1619), - [sym_super] = ACTIONS(1619), - [sym_crate] = ACTIONS(1619), - [sym_metavariable] = ACTIONS(1621), + [aux_sym_function_modifiers_repeat1] = STATE(2244), + [sym_identifier] = ACTIONS(3064), + [anon_sym_LPAREN] = ACTIONS(1602), + [anon_sym_LBRACK] = ACTIONS(1604), + [anon_sym_STAR] = ACTIONS(1240), + [anon_sym_QMARK] = ACTIONS(1242), + [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_BANG] = ACTIONS(1248), + [anon_sym_AMP] = ACTIONS(1610), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1614), + [anon_sym_SQUOTE] = ACTIONS(3072), + [anon_sym_async] = ACTIONS(1270), + [anon_sym_const] = ACTIONS(1270), + [anon_sym_default] = ACTIONS(1618), + [anon_sym_fn] = ACTIONS(1276), + [anon_sym_for] = ACTIONS(1278), + [anon_sym_gen] = ACTIONS(1620), + [anon_sym_impl] = ACTIONS(1282), + [anon_sym_union] = ACTIONS(1620), + [anon_sym_unsafe] = ACTIONS(1270), + [anon_sym_extern] = ACTIONS(1284), + [anon_sym_safe] = ACTIONS(1270), + [anon_sym_dyn] = ACTIONS(1288), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1624), + [sym_super] = ACTIONS(1624), + [sym_crate] = ACTIONS(1624), + [sym_metavariable] = ACTIONS(1626), }, [STATE(992)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2569), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_function_modifiers] = STATE(3591), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2373), + [sym__type] = STATE(2591), + [sym_bracketed_type] = STATE(3474), + [sym_lifetime] = STATE(3727), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1591), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2022), + [sym_generic_type_with_turbofish] = STATE(3764), + [sym_bounded_type] = STATE(2069), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3334), + [sym_scoped_type_identifier] = STATE(1990), [sym_line_comment] = STATE(992), [sym_block_comment] = STATE(992), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(3052), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1235), - [anon_sym_QMARK] = ACTIONS(1237), - [anon_sym_u8] = ACTIONS(1603), - [anon_sym_i8] = ACTIONS(1603), - [anon_sym_u16] = ACTIONS(1603), - [anon_sym_i16] = ACTIONS(1603), - [anon_sym_u32] = ACTIONS(1603), - [anon_sym_i32] = ACTIONS(1603), - [anon_sym_u64] = ACTIONS(1603), - [anon_sym_i64] = ACTIONS(1603), - [anon_sym_u128] = ACTIONS(1603), - [anon_sym_i128] = ACTIONS(1603), - [anon_sym_isize] = ACTIONS(1603), - [anon_sym_usize] = ACTIONS(1603), - [anon_sym_f32] = ACTIONS(1603), - [anon_sym_f64] = ACTIONS(1603), - [anon_sym_bool] = ACTIONS(1603), - [anon_sym_str] = ACTIONS(1603), - [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1243), - [anon_sym_AMP] = ACTIONS(1605), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3058), - [anon_sym_async] = ACTIONS(1265), - [anon_sym_const] = ACTIONS(1265), - [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1271), - [anon_sym_for] = ACTIONS(1273), - [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1277), - [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1265), - [anon_sym_extern] = ACTIONS(1279), - [anon_sym_dyn] = ACTIONS(1283), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1619), - [sym_super] = ACTIONS(1619), - [sym_crate] = ACTIONS(1619), - [sym_metavariable] = ACTIONS(1621), + [aux_sym_function_modifiers_repeat1] = STATE(2244), + [sym_identifier] = ACTIONS(3064), + [anon_sym_LPAREN] = ACTIONS(1602), + [anon_sym_LBRACK] = ACTIONS(1604), + [anon_sym_STAR] = ACTIONS(1240), + [anon_sym_QMARK] = ACTIONS(1242), + [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_BANG] = ACTIONS(1248), + [anon_sym_AMP] = ACTIONS(1610), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1614), + [anon_sym_SQUOTE] = ACTIONS(3072), + [anon_sym_async] = ACTIONS(1270), + [anon_sym_const] = ACTIONS(1270), + [anon_sym_default] = ACTIONS(1618), + [anon_sym_fn] = ACTIONS(1276), + [anon_sym_for] = ACTIONS(1278), + [anon_sym_gen] = ACTIONS(1620), + [anon_sym_impl] = ACTIONS(1282), + [anon_sym_union] = ACTIONS(1620), + [anon_sym_unsafe] = ACTIONS(1270), + [anon_sym_extern] = ACTIONS(1284), + [anon_sym_safe] = ACTIONS(1270), + [anon_sym_dyn] = ACTIONS(1288), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1624), + [sym_super] = ACTIONS(1624), + [sym_crate] = ACTIONS(1624), + [sym_metavariable] = ACTIONS(1626), }, [STATE(993)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2412), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_function_modifiers] = STATE(3591), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2373), + [sym__type] = STATE(2070), + [sym_bracketed_type] = STATE(3474), + [sym_lifetime] = STATE(3727), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1591), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2022), + [sym_generic_type_with_turbofish] = STATE(3764), + [sym_bounded_type] = STATE(2069), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3334), + [sym_scoped_type_identifier] = STATE(1990), [sym_line_comment] = STATE(993), [sym_block_comment] = STATE(993), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(3052), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1235), - [anon_sym_QMARK] = ACTIONS(1237), - [anon_sym_u8] = ACTIONS(1603), - [anon_sym_i8] = ACTIONS(1603), - [anon_sym_u16] = ACTIONS(1603), - [anon_sym_i16] = ACTIONS(1603), - [anon_sym_u32] = ACTIONS(1603), - [anon_sym_i32] = ACTIONS(1603), - [anon_sym_u64] = ACTIONS(1603), - [anon_sym_i64] = ACTIONS(1603), - [anon_sym_u128] = ACTIONS(1603), - [anon_sym_i128] = ACTIONS(1603), - [anon_sym_isize] = ACTIONS(1603), - [anon_sym_usize] = ACTIONS(1603), - [anon_sym_f32] = ACTIONS(1603), - [anon_sym_f64] = ACTIONS(1603), - [anon_sym_bool] = ACTIONS(1603), - [anon_sym_str] = ACTIONS(1603), - [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1243), - [anon_sym_AMP] = ACTIONS(1605), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3058), - [anon_sym_async] = ACTIONS(1265), - [anon_sym_const] = ACTIONS(1265), - [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1271), - [anon_sym_for] = ACTIONS(1273), - [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1277), - [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1265), - [anon_sym_extern] = ACTIONS(1279), - [anon_sym_dyn] = ACTIONS(1283), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1619), - [sym_super] = ACTIONS(1619), - [sym_crate] = ACTIONS(1619), - [sym_metavariable] = ACTIONS(1621), + [aux_sym_function_modifiers_repeat1] = STATE(2244), + [sym_identifier] = ACTIONS(3064), + [anon_sym_LPAREN] = ACTIONS(1602), + [anon_sym_LBRACK] = ACTIONS(1604), + [anon_sym_STAR] = ACTIONS(1240), + [anon_sym_QMARK] = ACTIONS(1242), + [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_BANG] = ACTIONS(1248), + [anon_sym_AMP] = ACTIONS(1610), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1614), + [anon_sym_SQUOTE] = ACTIONS(3072), + [anon_sym_async] = ACTIONS(1270), + [anon_sym_const] = ACTIONS(1270), + [anon_sym_default] = ACTIONS(1618), + [anon_sym_fn] = ACTIONS(1276), + [anon_sym_for] = ACTIONS(1278), + [anon_sym_gen] = ACTIONS(1620), + [anon_sym_impl] = ACTIONS(1282), + [anon_sym_union] = ACTIONS(1620), + [anon_sym_unsafe] = ACTIONS(1270), + [anon_sym_extern] = ACTIONS(1284), + [anon_sym_safe] = ACTIONS(1270), + [anon_sym_dyn] = ACTIONS(1288), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1624), + [sym_super] = ACTIONS(1624), + [sym_crate] = ACTIONS(1624), + [sym_metavariable] = ACTIONS(1626), }, [STATE(994)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2414), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_function_modifiers] = STATE(3591), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2373), + [sym__type] = STATE(2880), + [sym_bracketed_type] = STATE(3474), + [sym_lifetime] = STATE(3727), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1591), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2022), + [sym_generic_type_with_turbofish] = STATE(3764), + [sym_bounded_type] = STATE(2069), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3334), + [sym_scoped_type_identifier] = STATE(1990), [sym_line_comment] = STATE(994), [sym_block_comment] = STATE(994), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(3052), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1235), - [anon_sym_QMARK] = ACTIONS(1237), - [anon_sym_u8] = ACTIONS(1603), - [anon_sym_i8] = ACTIONS(1603), - [anon_sym_u16] = ACTIONS(1603), - [anon_sym_i16] = ACTIONS(1603), - [anon_sym_u32] = ACTIONS(1603), - [anon_sym_i32] = ACTIONS(1603), - [anon_sym_u64] = ACTIONS(1603), - [anon_sym_i64] = ACTIONS(1603), - [anon_sym_u128] = ACTIONS(1603), - [anon_sym_i128] = ACTIONS(1603), - [anon_sym_isize] = ACTIONS(1603), - [anon_sym_usize] = ACTIONS(1603), - [anon_sym_f32] = ACTIONS(1603), - [anon_sym_f64] = ACTIONS(1603), - [anon_sym_bool] = ACTIONS(1603), - [anon_sym_str] = ACTIONS(1603), - [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1243), - [anon_sym_AMP] = ACTIONS(1605), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3058), - [anon_sym_async] = ACTIONS(1265), - [anon_sym_const] = ACTIONS(1265), - [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1271), - [anon_sym_for] = ACTIONS(1273), - [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1277), - [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1265), - [anon_sym_extern] = ACTIONS(1279), - [anon_sym_dyn] = ACTIONS(1283), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1619), - [sym_super] = ACTIONS(1619), - [sym_crate] = ACTIONS(1619), - [sym_metavariable] = ACTIONS(1621), + [aux_sym_function_modifiers_repeat1] = STATE(2244), + [sym_identifier] = ACTIONS(3064), + [anon_sym_LPAREN] = ACTIONS(1602), + [anon_sym_LBRACK] = ACTIONS(1604), + [anon_sym_STAR] = ACTIONS(1240), + [anon_sym_QMARK] = ACTIONS(1242), + [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_BANG] = ACTIONS(1248), + [anon_sym_AMP] = ACTIONS(1610), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1614), + [anon_sym_SQUOTE] = ACTIONS(3072), + [anon_sym_async] = ACTIONS(1270), + [anon_sym_const] = ACTIONS(1270), + [anon_sym_default] = ACTIONS(1618), + [anon_sym_fn] = ACTIONS(1276), + [anon_sym_for] = ACTIONS(1278), + [anon_sym_gen] = ACTIONS(1620), + [anon_sym_impl] = ACTIONS(1282), + [anon_sym_union] = ACTIONS(1620), + [anon_sym_unsafe] = ACTIONS(1270), + [anon_sym_extern] = ACTIONS(1284), + [anon_sym_safe] = ACTIONS(1270), + [anon_sym_dyn] = ACTIONS(1288), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1624), + [sym_super] = ACTIONS(1624), + [sym_crate] = ACTIONS(1624), + [sym_metavariable] = ACTIONS(1626), }, [STATE(995)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2418), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_function_modifiers] = STATE(3591), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2373), + [sym__type] = STATE(2495), + [sym_bracketed_type] = STATE(3474), + [sym_lifetime] = STATE(3727), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1591), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2022), + [sym_generic_type_with_turbofish] = STATE(3764), + [sym_bounded_type] = STATE(2069), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3334), + [sym_scoped_type_identifier] = STATE(1990), [sym_line_comment] = STATE(995), [sym_block_comment] = STATE(995), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(3052), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1235), - [anon_sym_QMARK] = ACTIONS(1237), - [anon_sym_u8] = ACTIONS(1603), - [anon_sym_i8] = ACTIONS(1603), - [anon_sym_u16] = ACTIONS(1603), - [anon_sym_i16] = ACTIONS(1603), - [anon_sym_u32] = ACTIONS(1603), - [anon_sym_i32] = ACTIONS(1603), - [anon_sym_u64] = ACTIONS(1603), - [anon_sym_i64] = ACTIONS(1603), - [anon_sym_u128] = ACTIONS(1603), - [anon_sym_i128] = ACTIONS(1603), - [anon_sym_isize] = ACTIONS(1603), - [anon_sym_usize] = ACTIONS(1603), - [anon_sym_f32] = ACTIONS(1603), - [anon_sym_f64] = ACTIONS(1603), - [anon_sym_bool] = ACTIONS(1603), - [anon_sym_str] = ACTIONS(1603), - [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1243), - [anon_sym_AMP] = ACTIONS(1605), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3058), - [anon_sym_async] = ACTIONS(1265), - [anon_sym_const] = ACTIONS(1265), - [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1271), - [anon_sym_for] = ACTIONS(1273), - [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1277), - [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1265), - [anon_sym_extern] = ACTIONS(1279), - [anon_sym_dyn] = ACTIONS(1283), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1619), - [sym_super] = ACTIONS(1619), - [sym_crate] = ACTIONS(1619), - [sym_metavariable] = ACTIONS(1621), + [aux_sym_function_modifiers_repeat1] = STATE(2244), + [sym_identifier] = ACTIONS(3064), + [anon_sym_LPAREN] = ACTIONS(1602), + [anon_sym_LBRACK] = ACTIONS(1604), + [anon_sym_STAR] = ACTIONS(1240), + [anon_sym_QMARK] = ACTIONS(1242), + [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_BANG] = ACTIONS(1248), + [anon_sym_AMP] = ACTIONS(1610), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1614), + [anon_sym_SQUOTE] = ACTIONS(3072), + [anon_sym_async] = ACTIONS(1270), + [anon_sym_const] = ACTIONS(1270), + [anon_sym_default] = ACTIONS(1618), + [anon_sym_fn] = ACTIONS(1276), + [anon_sym_for] = ACTIONS(1278), + [anon_sym_gen] = ACTIONS(1620), + [anon_sym_impl] = ACTIONS(1282), + [anon_sym_union] = ACTIONS(1620), + [anon_sym_unsafe] = ACTIONS(1270), + [anon_sym_extern] = ACTIONS(1284), + [anon_sym_safe] = ACTIONS(1270), + [anon_sym_dyn] = ACTIONS(1288), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1624), + [sym_super] = ACTIONS(1624), + [sym_crate] = ACTIONS(1624), + [sym_metavariable] = ACTIONS(1626), }, [STATE(996)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2360), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_function_modifiers] = STATE(3591), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2373), + [sym__type] = STATE(2605), + [sym_bracketed_type] = STATE(3474), + [sym_lifetime] = STATE(3727), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1591), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2022), + [sym_generic_type_with_turbofish] = STATE(3764), + [sym_bounded_type] = STATE(2069), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3334), + [sym_scoped_type_identifier] = STATE(1990), [sym_line_comment] = STATE(996), [sym_block_comment] = STATE(996), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(3052), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1235), - [anon_sym_QMARK] = ACTIONS(1237), - [anon_sym_u8] = ACTIONS(1603), - [anon_sym_i8] = ACTIONS(1603), - [anon_sym_u16] = ACTIONS(1603), - [anon_sym_i16] = ACTIONS(1603), - [anon_sym_u32] = ACTIONS(1603), - [anon_sym_i32] = ACTIONS(1603), - [anon_sym_u64] = ACTIONS(1603), - [anon_sym_i64] = ACTIONS(1603), - [anon_sym_u128] = ACTIONS(1603), - [anon_sym_i128] = ACTIONS(1603), - [anon_sym_isize] = ACTIONS(1603), - [anon_sym_usize] = ACTIONS(1603), - [anon_sym_f32] = ACTIONS(1603), - [anon_sym_f64] = ACTIONS(1603), - [anon_sym_bool] = ACTIONS(1603), - [anon_sym_str] = ACTIONS(1603), - [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1243), - [anon_sym_AMP] = ACTIONS(1605), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3058), - [anon_sym_async] = ACTIONS(1265), - [anon_sym_const] = ACTIONS(1265), - [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1271), - [anon_sym_for] = ACTIONS(1273), - [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1277), - [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1265), - [anon_sym_extern] = ACTIONS(1279), - [anon_sym_dyn] = ACTIONS(1283), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1619), - [sym_super] = ACTIONS(1619), - [sym_crate] = ACTIONS(1619), - [sym_metavariable] = ACTIONS(1621), + [aux_sym_function_modifiers_repeat1] = STATE(2244), + [sym_identifier] = ACTIONS(3064), + [anon_sym_LPAREN] = ACTIONS(1602), + [anon_sym_LBRACK] = ACTIONS(1604), + [anon_sym_STAR] = ACTIONS(1240), + [anon_sym_QMARK] = ACTIONS(1242), + [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_BANG] = ACTIONS(1248), + [anon_sym_AMP] = ACTIONS(1610), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1614), + [anon_sym_SQUOTE] = ACTIONS(3072), + [anon_sym_async] = ACTIONS(1270), + [anon_sym_const] = ACTIONS(1270), + [anon_sym_default] = ACTIONS(1618), + [anon_sym_fn] = ACTIONS(1276), + [anon_sym_for] = ACTIONS(1278), + [anon_sym_gen] = ACTIONS(1620), + [anon_sym_impl] = ACTIONS(1282), + [anon_sym_union] = ACTIONS(1620), + [anon_sym_unsafe] = ACTIONS(1270), + [anon_sym_extern] = ACTIONS(1284), + [anon_sym_safe] = ACTIONS(1270), + [anon_sym_dyn] = ACTIONS(1288), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1624), + [sym_super] = ACTIONS(1624), + [sym_crate] = ACTIONS(1624), + [sym_metavariable] = ACTIONS(1626), }, [STATE(997)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2283), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_function_modifiers] = STATE(3591), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2373), + [sym__type] = STATE(2399), + [sym_bracketed_type] = STATE(3474), + [sym_lifetime] = STATE(3727), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1591), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2377), + [sym_generic_type_with_turbofish] = STATE(3764), + [sym_bounded_type] = STATE(2069), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3334), + [sym_scoped_type_identifier] = STATE(2264), [sym_line_comment] = STATE(997), [sym_block_comment] = STATE(997), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(3052), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1235), - [anon_sym_QMARK] = ACTIONS(1237), - [anon_sym_u8] = ACTIONS(1603), - [anon_sym_i8] = ACTIONS(1603), - [anon_sym_u16] = ACTIONS(1603), - [anon_sym_i16] = ACTIONS(1603), - [anon_sym_u32] = ACTIONS(1603), - [anon_sym_i32] = ACTIONS(1603), - [anon_sym_u64] = ACTIONS(1603), - [anon_sym_i64] = ACTIONS(1603), - [anon_sym_u128] = ACTIONS(1603), - [anon_sym_i128] = ACTIONS(1603), - [anon_sym_isize] = ACTIONS(1603), - [anon_sym_usize] = ACTIONS(1603), - [anon_sym_f32] = ACTIONS(1603), - [anon_sym_f64] = ACTIONS(1603), - [anon_sym_bool] = ACTIONS(1603), - [anon_sym_str] = ACTIONS(1603), - [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1243), - [anon_sym_AMP] = ACTIONS(1605), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3058), - [anon_sym_async] = ACTIONS(1265), - [anon_sym_const] = ACTIONS(1265), - [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1271), - [anon_sym_for] = ACTIONS(1273), - [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1277), - [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1265), - [anon_sym_extern] = ACTIONS(1279), - [anon_sym_dyn] = ACTIONS(1283), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1619), - [sym_super] = ACTIONS(1619), - [sym_crate] = ACTIONS(1619), - [sym_metavariable] = ACTIONS(1621), + [aux_sym_function_modifiers_repeat1] = STATE(2244), + [sym_identifier] = ACTIONS(3310), + [anon_sym_LPAREN] = ACTIONS(1602), + [anon_sym_LBRACK] = ACTIONS(1604), + [anon_sym_STAR] = ACTIONS(1240), + [anon_sym_QMARK] = ACTIONS(1242), + [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_BANG] = ACTIONS(3312), + [anon_sym_AMP] = ACTIONS(1610), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1614), + [anon_sym_SQUOTE] = ACTIONS(3072), + [anon_sym_async] = ACTIONS(1270), + [anon_sym_const] = ACTIONS(1270), + [anon_sym_default] = ACTIONS(1618), + [anon_sym_fn] = ACTIONS(1276), + [anon_sym_for] = ACTIONS(1278), + [anon_sym_gen] = ACTIONS(1620), + [anon_sym_impl] = ACTIONS(1282), + [anon_sym_union] = ACTIONS(1620), + [anon_sym_unsafe] = ACTIONS(1270), + [anon_sym_extern] = ACTIONS(1284), + [anon_sym_safe] = ACTIONS(1270), + [anon_sym_dyn] = ACTIONS(1288), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1624), + [sym_super] = ACTIONS(1624), + [sym_crate] = ACTIONS(1624), + [sym_metavariable] = ACTIONS(1626), }, [STATE(998)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2589), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_function_modifiers] = STATE(3591), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2373), + [sym__type] = STATE(2314), + [sym_bracketed_type] = STATE(3474), + [sym_lifetime] = STATE(3727), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1591), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2022), + [sym_generic_type_with_turbofish] = STATE(3764), + [sym_bounded_type] = STATE(2069), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3334), + [sym_scoped_type_identifier] = STATE(1990), [sym_line_comment] = STATE(998), [sym_block_comment] = STATE(998), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(3052), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1235), - [anon_sym_QMARK] = ACTIONS(1237), - [anon_sym_u8] = ACTIONS(1603), - [anon_sym_i8] = ACTIONS(1603), - [anon_sym_u16] = ACTIONS(1603), - [anon_sym_i16] = ACTIONS(1603), - [anon_sym_u32] = ACTIONS(1603), - [anon_sym_i32] = ACTIONS(1603), - [anon_sym_u64] = ACTIONS(1603), - [anon_sym_i64] = ACTIONS(1603), - [anon_sym_u128] = ACTIONS(1603), - [anon_sym_i128] = ACTIONS(1603), - [anon_sym_isize] = ACTIONS(1603), - [anon_sym_usize] = ACTIONS(1603), - [anon_sym_f32] = ACTIONS(1603), - [anon_sym_f64] = ACTIONS(1603), - [anon_sym_bool] = ACTIONS(1603), - [anon_sym_str] = ACTIONS(1603), - [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1243), - [anon_sym_AMP] = ACTIONS(1605), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3058), - [anon_sym_async] = ACTIONS(1265), - [anon_sym_const] = ACTIONS(1265), - [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1271), - [anon_sym_for] = ACTIONS(1273), - [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1277), - [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1265), - [anon_sym_extern] = ACTIONS(1279), - [anon_sym_dyn] = ACTIONS(1283), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1619), - [sym_super] = ACTIONS(1619), - [sym_crate] = ACTIONS(1619), - [sym_metavariable] = ACTIONS(1621), + [aux_sym_function_modifiers_repeat1] = STATE(2244), + [sym_identifier] = ACTIONS(3064), + [anon_sym_LPAREN] = ACTIONS(1602), + [anon_sym_LBRACK] = ACTIONS(1604), + [anon_sym_STAR] = ACTIONS(1240), + [anon_sym_QMARK] = ACTIONS(1242), + [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_BANG] = ACTIONS(1248), + [anon_sym_AMP] = ACTIONS(1610), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1614), + [anon_sym_SQUOTE] = ACTIONS(3072), + [anon_sym_async] = ACTIONS(1270), + [anon_sym_const] = ACTIONS(1270), + [anon_sym_default] = ACTIONS(1618), + [anon_sym_fn] = ACTIONS(1276), + [anon_sym_for] = ACTIONS(1278), + [anon_sym_gen] = ACTIONS(1620), + [anon_sym_impl] = ACTIONS(1282), + [anon_sym_union] = ACTIONS(1620), + [anon_sym_unsafe] = ACTIONS(1270), + [anon_sym_extern] = ACTIONS(1284), + [anon_sym_safe] = ACTIONS(1270), + [anon_sym_dyn] = ACTIONS(1288), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1624), + [sym_super] = ACTIONS(1624), + [sym_crate] = ACTIONS(1624), + [sym_metavariable] = ACTIONS(1626), }, [STATE(999)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2591), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_function_modifiers] = STATE(3591), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2373), + [sym__type] = STATE(2404), + [sym_bracketed_type] = STATE(3474), + [sym_lifetime] = STATE(3727), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1591), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2022), + [sym_generic_type_with_turbofish] = STATE(3764), + [sym_bounded_type] = STATE(2069), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3334), + [sym_scoped_type_identifier] = STATE(1990), [sym_line_comment] = STATE(999), [sym_block_comment] = STATE(999), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(3052), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1235), - [anon_sym_QMARK] = ACTIONS(1237), - [anon_sym_u8] = ACTIONS(1603), - [anon_sym_i8] = ACTIONS(1603), - [anon_sym_u16] = ACTIONS(1603), - [anon_sym_i16] = ACTIONS(1603), - [anon_sym_u32] = ACTIONS(1603), - [anon_sym_i32] = ACTIONS(1603), - [anon_sym_u64] = ACTIONS(1603), - [anon_sym_i64] = ACTIONS(1603), - [anon_sym_u128] = ACTIONS(1603), - [anon_sym_i128] = ACTIONS(1603), - [anon_sym_isize] = ACTIONS(1603), - [anon_sym_usize] = ACTIONS(1603), - [anon_sym_f32] = ACTIONS(1603), - [anon_sym_f64] = ACTIONS(1603), - [anon_sym_bool] = ACTIONS(1603), - [anon_sym_str] = ACTIONS(1603), - [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1243), - [anon_sym_AMP] = ACTIONS(1605), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3058), - [anon_sym_async] = ACTIONS(1265), - [anon_sym_const] = ACTIONS(1265), - [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1271), - [anon_sym_for] = ACTIONS(1273), - [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1277), - [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1265), - [anon_sym_extern] = ACTIONS(1279), - [anon_sym_dyn] = ACTIONS(1283), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1619), - [sym_super] = ACTIONS(1619), - [sym_crate] = ACTIONS(1619), - [sym_metavariable] = ACTIONS(1621), + [aux_sym_function_modifiers_repeat1] = STATE(2244), + [sym_identifier] = ACTIONS(3064), + [anon_sym_LPAREN] = ACTIONS(1602), + [anon_sym_LBRACK] = ACTIONS(1604), + [anon_sym_STAR] = ACTIONS(1240), + [anon_sym_QMARK] = ACTIONS(1242), + [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_BANG] = ACTIONS(1248), + [anon_sym_AMP] = ACTIONS(1610), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1614), + [anon_sym_SQUOTE] = ACTIONS(3072), + [anon_sym_async] = ACTIONS(1270), + [anon_sym_const] = ACTIONS(1270), + [anon_sym_default] = ACTIONS(1618), + [anon_sym_fn] = ACTIONS(1276), + [anon_sym_for] = ACTIONS(1278), + [anon_sym_gen] = ACTIONS(1620), + [anon_sym_impl] = ACTIONS(1282), + [anon_sym_union] = ACTIONS(1620), + [anon_sym_unsafe] = ACTIONS(1270), + [anon_sym_extern] = ACTIONS(1284), + [anon_sym_safe] = ACTIONS(1270), + [anon_sym_dyn] = ACTIONS(1288), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1624), + [sym_super] = ACTIONS(1624), + [sym_crate] = ACTIONS(1624), + [sym_metavariable] = ACTIONS(1626), }, [STATE(1000)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2255), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_function_modifiers] = STATE(3591), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2373), + [sym__type] = STATE(2405), + [sym_bracketed_type] = STATE(3474), + [sym_lifetime] = STATE(3727), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1591), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2022), + [sym_generic_type_with_turbofish] = STATE(3764), + [sym_bounded_type] = STATE(2069), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3334), + [sym_scoped_type_identifier] = STATE(1990), [sym_line_comment] = STATE(1000), [sym_block_comment] = STATE(1000), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(3052), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1235), - [anon_sym_QMARK] = ACTIONS(1237), - [anon_sym_u8] = ACTIONS(1603), - [anon_sym_i8] = ACTIONS(1603), - [anon_sym_u16] = ACTIONS(1603), - [anon_sym_i16] = ACTIONS(1603), - [anon_sym_u32] = ACTIONS(1603), - [anon_sym_i32] = ACTIONS(1603), - [anon_sym_u64] = ACTIONS(1603), - [anon_sym_i64] = ACTIONS(1603), - [anon_sym_u128] = ACTIONS(1603), - [anon_sym_i128] = ACTIONS(1603), - [anon_sym_isize] = ACTIONS(1603), - [anon_sym_usize] = ACTIONS(1603), - [anon_sym_f32] = ACTIONS(1603), - [anon_sym_f64] = ACTIONS(1603), - [anon_sym_bool] = ACTIONS(1603), - [anon_sym_str] = ACTIONS(1603), - [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1243), - [anon_sym_AMP] = ACTIONS(1605), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3058), - [anon_sym_async] = ACTIONS(1265), - [anon_sym_const] = ACTIONS(1265), - [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1271), - [anon_sym_for] = ACTIONS(1273), - [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1277), - [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1265), - [anon_sym_extern] = ACTIONS(1279), - [anon_sym_dyn] = ACTIONS(1283), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1619), - [sym_super] = ACTIONS(1619), - [sym_crate] = ACTIONS(1619), - [sym_metavariable] = ACTIONS(1621), + [aux_sym_function_modifiers_repeat1] = STATE(2244), + [sym_identifier] = ACTIONS(3064), + [anon_sym_LPAREN] = ACTIONS(1602), + [anon_sym_LBRACK] = ACTIONS(1604), + [anon_sym_STAR] = ACTIONS(1240), + [anon_sym_QMARK] = ACTIONS(1242), + [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_BANG] = ACTIONS(1248), + [anon_sym_AMP] = ACTIONS(1610), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1614), + [anon_sym_SQUOTE] = ACTIONS(3072), + [anon_sym_async] = ACTIONS(1270), + [anon_sym_const] = ACTIONS(1270), + [anon_sym_default] = ACTIONS(1618), + [anon_sym_fn] = ACTIONS(1276), + [anon_sym_for] = ACTIONS(1278), + [anon_sym_gen] = ACTIONS(1620), + [anon_sym_impl] = ACTIONS(1282), + [anon_sym_union] = ACTIONS(1620), + [anon_sym_unsafe] = ACTIONS(1270), + [anon_sym_extern] = ACTIONS(1284), + [anon_sym_safe] = ACTIONS(1270), + [anon_sym_dyn] = ACTIONS(1288), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1624), + [sym_super] = ACTIONS(1624), + [sym_crate] = ACTIONS(1624), + [sym_metavariable] = ACTIONS(1626), }, [STATE(1001)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2384), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_function_modifiers] = STATE(3591), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2373), + [sym__type] = STATE(2406), + [sym_bracketed_type] = STATE(3474), + [sym_lifetime] = STATE(3727), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1591), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2022), + [sym_generic_type_with_turbofish] = STATE(3764), + [sym_bounded_type] = STATE(2069), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3334), + [sym_scoped_type_identifier] = STATE(1990), [sym_line_comment] = STATE(1001), [sym_block_comment] = STATE(1001), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(3052), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1235), - [anon_sym_QMARK] = ACTIONS(1237), - [anon_sym_u8] = ACTIONS(1603), - [anon_sym_i8] = ACTIONS(1603), - [anon_sym_u16] = ACTIONS(1603), - [anon_sym_i16] = ACTIONS(1603), - [anon_sym_u32] = ACTIONS(1603), - [anon_sym_i32] = ACTIONS(1603), - [anon_sym_u64] = ACTIONS(1603), - [anon_sym_i64] = ACTIONS(1603), - [anon_sym_u128] = ACTIONS(1603), - [anon_sym_i128] = ACTIONS(1603), - [anon_sym_isize] = ACTIONS(1603), - [anon_sym_usize] = ACTIONS(1603), - [anon_sym_f32] = ACTIONS(1603), - [anon_sym_f64] = ACTIONS(1603), - [anon_sym_bool] = ACTIONS(1603), - [anon_sym_str] = ACTIONS(1603), - [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1243), - [anon_sym_AMP] = ACTIONS(1605), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3058), - [anon_sym_async] = ACTIONS(1265), - [anon_sym_const] = ACTIONS(1265), - [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1271), - [anon_sym_for] = ACTIONS(1273), - [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1277), - [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1265), - [anon_sym_extern] = ACTIONS(1279), - [anon_sym_dyn] = ACTIONS(1283), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1619), - [sym_super] = ACTIONS(1619), - [sym_crate] = ACTIONS(1619), - [sym_metavariable] = ACTIONS(1621), + [aux_sym_function_modifiers_repeat1] = STATE(2244), + [sym_identifier] = ACTIONS(3064), + [anon_sym_LPAREN] = ACTIONS(1602), + [anon_sym_LBRACK] = ACTIONS(1604), + [anon_sym_STAR] = ACTIONS(1240), + [anon_sym_QMARK] = ACTIONS(1242), + [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_BANG] = ACTIONS(1248), + [anon_sym_AMP] = ACTIONS(1610), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1614), + [anon_sym_SQUOTE] = ACTIONS(3072), + [anon_sym_async] = ACTIONS(1270), + [anon_sym_const] = ACTIONS(1270), + [anon_sym_default] = ACTIONS(1618), + [anon_sym_fn] = ACTIONS(1276), + [anon_sym_for] = ACTIONS(1278), + [anon_sym_gen] = ACTIONS(1620), + [anon_sym_impl] = ACTIONS(1282), + [anon_sym_union] = ACTIONS(1620), + [anon_sym_unsafe] = ACTIONS(1270), + [anon_sym_extern] = ACTIONS(1284), + [anon_sym_safe] = ACTIONS(1270), + [anon_sym_dyn] = ACTIONS(1288), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1624), + [sym_super] = ACTIONS(1624), + [sym_crate] = ACTIONS(1624), + [sym_metavariable] = ACTIONS(1626), }, [STATE(1002)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2377), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_function_modifiers] = STATE(3591), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2373), + [sym__type] = STATE(2407), + [sym_bracketed_type] = STATE(3474), + [sym_lifetime] = STATE(3727), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1591), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2022), + [sym_generic_type_with_turbofish] = STATE(3764), + [sym_bounded_type] = STATE(2069), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3334), + [sym_scoped_type_identifier] = STATE(1990), [sym_line_comment] = STATE(1002), [sym_block_comment] = STATE(1002), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(3052), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1235), - [anon_sym_QMARK] = ACTIONS(1237), - [anon_sym_u8] = ACTIONS(1603), - [anon_sym_i8] = ACTIONS(1603), - [anon_sym_u16] = ACTIONS(1603), - [anon_sym_i16] = ACTIONS(1603), - [anon_sym_u32] = ACTIONS(1603), - [anon_sym_i32] = ACTIONS(1603), - [anon_sym_u64] = ACTIONS(1603), - [anon_sym_i64] = ACTIONS(1603), - [anon_sym_u128] = ACTIONS(1603), - [anon_sym_i128] = ACTIONS(1603), - [anon_sym_isize] = ACTIONS(1603), - [anon_sym_usize] = ACTIONS(1603), - [anon_sym_f32] = ACTIONS(1603), - [anon_sym_f64] = ACTIONS(1603), - [anon_sym_bool] = ACTIONS(1603), - [anon_sym_str] = ACTIONS(1603), - [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1243), - [anon_sym_AMP] = ACTIONS(1605), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3058), - [anon_sym_async] = ACTIONS(1265), - [anon_sym_const] = ACTIONS(1265), - [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1271), - [anon_sym_for] = ACTIONS(1273), - [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1277), - [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1265), - [anon_sym_extern] = ACTIONS(1279), - [anon_sym_dyn] = ACTIONS(1283), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1619), - [sym_super] = ACTIONS(1619), - [sym_crate] = ACTIONS(1619), - [sym_metavariable] = ACTIONS(1621), + [aux_sym_function_modifiers_repeat1] = STATE(2244), + [sym_identifier] = ACTIONS(3064), + [anon_sym_LPAREN] = ACTIONS(1602), + [anon_sym_LBRACK] = ACTIONS(1604), + [anon_sym_STAR] = ACTIONS(1240), + [anon_sym_QMARK] = ACTIONS(1242), + [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_BANG] = ACTIONS(1248), + [anon_sym_AMP] = ACTIONS(1610), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1614), + [anon_sym_SQUOTE] = ACTIONS(3072), + [anon_sym_async] = ACTIONS(1270), + [anon_sym_const] = ACTIONS(1270), + [anon_sym_default] = ACTIONS(1618), + [anon_sym_fn] = ACTIONS(1276), + [anon_sym_for] = ACTIONS(1278), + [anon_sym_gen] = ACTIONS(1620), + [anon_sym_impl] = ACTIONS(1282), + [anon_sym_union] = ACTIONS(1620), + [anon_sym_unsafe] = ACTIONS(1270), + [anon_sym_extern] = ACTIONS(1284), + [anon_sym_safe] = ACTIONS(1270), + [anon_sym_dyn] = ACTIONS(1288), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1624), + [sym_super] = ACTIONS(1624), + [sym_crate] = ACTIONS(1624), + [sym_metavariable] = ACTIONS(1626), }, [STATE(1003)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2386), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_function_modifiers] = STATE(3591), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2373), + [sym__type] = STATE(2776), + [sym_bracketed_type] = STATE(3474), + [sym_lifetime] = STATE(3727), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1591), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2022), + [sym_generic_type_with_turbofish] = STATE(3764), + [sym_bounded_type] = STATE(2069), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3334), + [sym_scoped_type_identifier] = STATE(1990), [sym_line_comment] = STATE(1003), [sym_block_comment] = STATE(1003), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(3052), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1235), - [anon_sym_QMARK] = ACTIONS(1237), - [anon_sym_u8] = ACTIONS(1603), - [anon_sym_i8] = ACTIONS(1603), - [anon_sym_u16] = ACTIONS(1603), - [anon_sym_i16] = ACTIONS(1603), - [anon_sym_u32] = ACTIONS(1603), - [anon_sym_i32] = ACTIONS(1603), - [anon_sym_u64] = ACTIONS(1603), - [anon_sym_i64] = ACTIONS(1603), - [anon_sym_u128] = ACTIONS(1603), - [anon_sym_i128] = ACTIONS(1603), - [anon_sym_isize] = ACTIONS(1603), - [anon_sym_usize] = ACTIONS(1603), - [anon_sym_f32] = ACTIONS(1603), - [anon_sym_f64] = ACTIONS(1603), - [anon_sym_bool] = ACTIONS(1603), - [anon_sym_str] = ACTIONS(1603), - [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1243), - [anon_sym_AMP] = ACTIONS(1605), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3058), - [anon_sym_async] = ACTIONS(1265), - [anon_sym_const] = ACTIONS(1265), - [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1271), - [anon_sym_for] = ACTIONS(1273), - [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1277), - [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1265), - [anon_sym_extern] = ACTIONS(1279), - [anon_sym_dyn] = ACTIONS(1283), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1619), - [sym_super] = ACTIONS(1619), - [sym_crate] = ACTIONS(1619), - [sym_metavariable] = ACTIONS(1621), + [aux_sym_function_modifiers_repeat1] = STATE(2244), + [sym_identifier] = ACTIONS(3064), + [anon_sym_LPAREN] = ACTIONS(1602), + [anon_sym_LBRACK] = ACTIONS(1604), + [anon_sym_STAR] = ACTIONS(1240), + [anon_sym_QMARK] = ACTIONS(1242), + [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_BANG] = ACTIONS(1248), + [anon_sym_AMP] = ACTIONS(1610), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1614), + [anon_sym_SQUOTE] = ACTIONS(3072), + [anon_sym_async] = ACTIONS(1270), + [anon_sym_const] = ACTIONS(1270), + [anon_sym_default] = ACTIONS(1618), + [anon_sym_fn] = ACTIONS(1276), + [anon_sym_for] = ACTIONS(1278), + [anon_sym_gen] = ACTIONS(1620), + [anon_sym_impl] = ACTIONS(1282), + [anon_sym_union] = ACTIONS(1620), + [anon_sym_unsafe] = ACTIONS(1270), + [anon_sym_extern] = ACTIONS(1284), + [anon_sym_safe] = ACTIONS(1270), + [anon_sym_dyn] = ACTIONS(1288), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1624), + [sym_super] = ACTIONS(1624), + [sym_crate] = ACTIONS(1624), + [sym_metavariable] = ACTIONS(1626), }, [STATE(1004)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2293), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_function_modifiers] = STATE(3591), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2373), + [sym__type] = STATE(2927), + [sym_bracketed_type] = STATE(3474), + [sym_lifetime] = STATE(3727), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1591), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2022), + [sym_generic_type_with_turbofish] = STATE(3764), + [sym_bounded_type] = STATE(2069), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3334), + [sym_scoped_type_identifier] = STATE(1990), [sym_line_comment] = STATE(1004), [sym_block_comment] = STATE(1004), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(3052), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1235), - [anon_sym_QMARK] = ACTIONS(1237), - [anon_sym_u8] = ACTIONS(1603), - [anon_sym_i8] = ACTIONS(1603), - [anon_sym_u16] = ACTIONS(1603), - [anon_sym_i16] = ACTIONS(1603), - [anon_sym_u32] = ACTIONS(1603), - [anon_sym_i32] = ACTIONS(1603), - [anon_sym_u64] = ACTIONS(1603), - [anon_sym_i64] = ACTIONS(1603), - [anon_sym_u128] = ACTIONS(1603), - [anon_sym_i128] = ACTIONS(1603), - [anon_sym_isize] = ACTIONS(1603), - [anon_sym_usize] = ACTIONS(1603), - [anon_sym_f32] = ACTIONS(1603), - [anon_sym_f64] = ACTIONS(1603), - [anon_sym_bool] = ACTIONS(1603), - [anon_sym_str] = ACTIONS(1603), - [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1243), - [anon_sym_AMP] = ACTIONS(1605), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3058), - [anon_sym_async] = ACTIONS(1265), - [anon_sym_const] = ACTIONS(1265), - [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1271), - [anon_sym_for] = ACTIONS(1273), - [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1277), - [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1265), - [anon_sym_extern] = ACTIONS(1279), - [anon_sym_dyn] = ACTIONS(1283), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1619), - [sym_super] = ACTIONS(1619), - [sym_crate] = ACTIONS(1619), - [sym_metavariable] = ACTIONS(1621), + [aux_sym_function_modifiers_repeat1] = STATE(2244), + [sym_identifier] = ACTIONS(3064), + [anon_sym_LPAREN] = ACTIONS(1602), + [anon_sym_LBRACK] = ACTIONS(1604), + [anon_sym_STAR] = ACTIONS(1240), + [anon_sym_QMARK] = ACTIONS(1242), + [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_BANG] = ACTIONS(1248), + [anon_sym_AMP] = ACTIONS(1610), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1614), + [anon_sym_SQUOTE] = ACTIONS(3072), + [anon_sym_async] = ACTIONS(1270), + [anon_sym_const] = ACTIONS(1270), + [anon_sym_default] = ACTIONS(1618), + [anon_sym_fn] = ACTIONS(1276), + [anon_sym_for] = ACTIONS(1278), + [anon_sym_gen] = ACTIONS(1620), + [anon_sym_impl] = ACTIONS(1282), + [anon_sym_union] = ACTIONS(1620), + [anon_sym_unsafe] = ACTIONS(1270), + [anon_sym_extern] = ACTIONS(1284), + [anon_sym_safe] = ACTIONS(1270), + [anon_sym_dyn] = ACTIONS(1288), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1624), + [sym_super] = ACTIONS(1624), + [sym_crate] = ACTIONS(1624), + [sym_metavariable] = ACTIONS(1626), }, [STATE(1005)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2036), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_function_modifiers] = STATE(3591), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2373), + [sym__type] = STATE(2478), + [sym_bracketed_type] = STATE(3474), + [sym_lifetime] = STATE(3727), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1591), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2022), + [sym_generic_type_with_turbofish] = STATE(3764), + [sym_bounded_type] = STATE(2069), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3334), + [sym_scoped_type_identifier] = STATE(1990), [sym_line_comment] = STATE(1005), [sym_block_comment] = STATE(1005), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(3052), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1235), - [anon_sym_QMARK] = ACTIONS(1237), - [anon_sym_u8] = ACTIONS(1603), - [anon_sym_i8] = ACTIONS(1603), - [anon_sym_u16] = ACTIONS(1603), - [anon_sym_i16] = ACTIONS(1603), - [anon_sym_u32] = ACTIONS(1603), - [anon_sym_i32] = ACTIONS(1603), - [anon_sym_u64] = ACTIONS(1603), - [anon_sym_i64] = ACTIONS(1603), - [anon_sym_u128] = ACTIONS(1603), - [anon_sym_i128] = ACTIONS(1603), - [anon_sym_isize] = ACTIONS(1603), - [anon_sym_usize] = ACTIONS(1603), - [anon_sym_f32] = ACTIONS(1603), - [anon_sym_f64] = ACTIONS(1603), - [anon_sym_bool] = ACTIONS(1603), - [anon_sym_str] = ACTIONS(1603), - [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1243), - [anon_sym_AMP] = ACTIONS(1605), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3058), - [anon_sym_async] = ACTIONS(1265), - [anon_sym_const] = ACTIONS(1265), - [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1271), - [anon_sym_for] = ACTIONS(1273), - [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1277), - [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1265), - [anon_sym_extern] = ACTIONS(1279), - [anon_sym_dyn] = ACTIONS(1283), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1619), - [sym_super] = ACTIONS(1619), - [sym_crate] = ACTIONS(1619), - [sym_metavariable] = ACTIONS(1621), + [aux_sym_function_modifiers_repeat1] = STATE(2244), + [sym_identifier] = ACTIONS(3064), + [anon_sym_LPAREN] = ACTIONS(1602), + [anon_sym_LBRACK] = ACTIONS(1604), + [anon_sym_STAR] = ACTIONS(1240), + [anon_sym_QMARK] = ACTIONS(1242), + [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_BANG] = ACTIONS(1248), + [anon_sym_AMP] = ACTIONS(1610), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1614), + [anon_sym_SQUOTE] = ACTIONS(3072), + [anon_sym_async] = ACTIONS(1270), + [anon_sym_const] = ACTIONS(1270), + [anon_sym_default] = ACTIONS(1618), + [anon_sym_fn] = ACTIONS(1276), + [anon_sym_for] = ACTIONS(1278), + [anon_sym_gen] = ACTIONS(1620), + [anon_sym_impl] = ACTIONS(1282), + [anon_sym_union] = ACTIONS(1620), + [anon_sym_unsafe] = ACTIONS(1270), + [anon_sym_extern] = ACTIONS(1284), + [anon_sym_safe] = ACTIONS(1270), + [anon_sym_dyn] = ACTIONS(1288), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1624), + [sym_super] = ACTIONS(1624), + [sym_crate] = ACTIONS(1624), + [sym_metavariable] = ACTIONS(1626), }, [STATE(1006)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2959), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_function_modifiers] = STATE(3591), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2373), + [sym__type] = STATE(2840), + [sym_bracketed_type] = STATE(3474), + [sym_lifetime] = STATE(3727), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1591), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2022), + [sym_generic_type_with_turbofish] = STATE(3764), + [sym_bounded_type] = STATE(2069), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3334), + [sym_scoped_type_identifier] = STATE(1990), [sym_line_comment] = STATE(1006), [sym_block_comment] = STATE(1006), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(3052), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1235), - [anon_sym_QMARK] = ACTIONS(1237), - [anon_sym_u8] = ACTIONS(1603), - [anon_sym_i8] = ACTIONS(1603), - [anon_sym_u16] = ACTIONS(1603), - [anon_sym_i16] = ACTIONS(1603), - [anon_sym_u32] = ACTIONS(1603), - [anon_sym_i32] = ACTIONS(1603), - [anon_sym_u64] = ACTIONS(1603), - [anon_sym_i64] = ACTIONS(1603), - [anon_sym_u128] = ACTIONS(1603), - [anon_sym_i128] = ACTIONS(1603), - [anon_sym_isize] = ACTIONS(1603), - [anon_sym_usize] = ACTIONS(1603), - [anon_sym_f32] = ACTIONS(1603), - [anon_sym_f64] = ACTIONS(1603), - [anon_sym_bool] = ACTIONS(1603), - [anon_sym_str] = ACTIONS(1603), - [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1243), - [anon_sym_AMP] = ACTIONS(1605), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3058), - [anon_sym_async] = ACTIONS(1265), - [anon_sym_const] = ACTIONS(1265), - [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1271), - [anon_sym_for] = ACTIONS(1273), - [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1277), - [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1265), - [anon_sym_extern] = ACTIONS(1279), - [anon_sym_dyn] = ACTIONS(1283), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1619), - [sym_super] = ACTIONS(1619), - [sym_crate] = ACTIONS(1619), - [sym_metavariable] = ACTIONS(1621), + [aux_sym_function_modifiers_repeat1] = STATE(2244), + [sym_identifier] = ACTIONS(3064), + [anon_sym_LPAREN] = ACTIONS(1602), + [anon_sym_LBRACK] = ACTIONS(1604), + [anon_sym_STAR] = ACTIONS(1240), + [anon_sym_QMARK] = ACTIONS(1242), + [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_BANG] = ACTIONS(1248), + [anon_sym_AMP] = ACTIONS(1610), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1614), + [anon_sym_SQUOTE] = ACTIONS(3072), + [anon_sym_async] = ACTIONS(1270), + [anon_sym_const] = ACTIONS(1270), + [anon_sym_default] = ACTIONS(1618), + [anon_sym_fn] = ACTIONS(1276), + [anon_sym_for] = ACTIONS(1278), + [anon_sym_gen] = ACTIONS(1620), + [anon_sym_impl] = ACTIONS(1282), + [anon_sym_union] = ACTIONS(1620), + [anon_sym_unsafe] = ACTIONS(1270), + [anon_sym_extern] = ACTIONS(1284), + [anon_sym_safe] = ACTIONS(1270), + [anon_sym_dyn] = ACTIONS(1288), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1624), + [sym_super] = ACTIONS(1624), + [sym_crate] = ACTIONS(1624), + [sym_metavariable] = ACTIONS(1626), }, [STATE(1007)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2693), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_function_modifiers] = STATE(3591), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2373), + [sym__type] = STATE(2587), + [sym_bracketed_type] = STATE(3474), + [sym_lifetime] = STATE(3727), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1591), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2022), + [sym_generic_type_with_turbofish] = STATE(3764), + [sym_bounded_type] = STATE(2069), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3334), + [sym_scoped_type_identifier] = STATE(1990), [sym_line_comment] = STATE(1007), [sym_block_comment] = STATE(1007), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(3052), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1235), - [anon_sym_QMARK] = ACTIONS(1237), - [anon_sym_u8] = ACTIONS(1603), - [anon_sym_i8] = ACTIONS(1603), - [anon_sym_u16] = ACTIONS(1603), - [anon_sym_i16] = ACTIONS(1603), - [anon_sym_u32] = ACTIONS(1603), - [anon_sym_i32] = ACTIONS(1603), - [anon_sym_u64] = ACTIONS(1603), - [anon_sym_i64] = ACTIONS(1603), - [anon_sym_u128] = ACTIONS(1603), - [anon_sym_i128] = ACTIONS(1603), - [anon_sym_isize] = ACTIONS(1603), - [anon_sym_usize] = ACTIONS(1603), - [anon_sym_f32] = ACTIONS(1603), - [anon_sym_f64] = ACTIONS(1603), - [anon_sym_bool] = ACTIONS(1603), - [anon_sym_str] = ACTIONS(1603), - [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1243), - [anon_sym_AMP] = ACTIONS(1605), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3058), - [anon_sym_async] = ACTIONS(1265), - [anon_sym_const] = ACTIONS(1265), - [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1271), - [anon_sym_for] = ACTIONS(1273), - [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1277), - [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1265), - [anon_sym_extern] = ACTIONS(1279), - [anon_sym_dyn] = ACTIONS(1283), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1619), - [sym_super] = ACTIONS(1619), - [sym_crate] = ACTIONS(1619), - [sym_metavariable] = ACTIONS(1621), + [aux_sym_function_modifiers_repeat1] = STATE(2244), + [sym_identifier] = ACTIONS(3064), + [anon_sym_LPAREN] = ACTIONS(1602), + [anon_sym_LBRACK] = ACTIONS(1604), + [anon_sym_STAR] = ACTIONS(1240), + [anon_sym_QMARK] = ACTIONS(1242), + [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_BANG] = ACTIONS(1248), + [anon_sym_AMP] = ACTIONS(1610), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1614), + [anon_sym_SQUOTE] = ACTIONS(3072), + [anon_sym_async] = ACTIONS(1270), + [anon_sym_const] = ACTIONS(1270), + [anon_sym_default] = ACTIONS(1618), + [anon_sym_fn] = ACTIONS(1276), + [anon_sym_for] = ACTIONS(1278), + [anon_sym_gen] = ACTIONS(1620), + [anon_sym_impl] = ACTIONS(1282), + [anon_sym_union] = ACTIONS(1620), + [anon_sym_unsafe] = ACTIONS(1270), + [anon_sym_extern] = ACTIONS(1284), + [anon_sym_safe] = ACTIONS(1270), + [anon_sym_dyn] = ACTIONS(1288), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1624), + [sym_super] = ACTIONS(1624), + [sym_crate] = ACTIONS(1624), + [sym_metavariable] = ACTIONS(1626), }, [STATE(1008)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2294), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_function_modifiers] = STATE(3591), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2373), + [sym__type] = STATE(2936), + [sym_bracketed_type] = STATE(3474), + [sym_lifetime] = STATE(3727), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1591), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2022), + [sym_generic_type_with_turbofish] = STATE(3764), + [sym_bounded_type] = STATE(2069), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3334), + [sym_scoped_type_identifier] = STATE(1990), [sym_line_comment] = STATE(1008), [sym_block_comment] = STATE(1008), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(3052), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1235), - [anon_sym_QMARK] = ACTIONS(1237), - [anon_sym_u8] = ACTIONS(1603), - [anon_sym_i8] = ACTIONS(1603), - [anon_sym_u16] = ACTIONS(1603), - [anon_sym_i16] = ACTIONS(1603), - [anon_sym_u32] = ACTIONS(1603), - [anon_sym_i32] = ACTIONS(1603), - [anon_sym_u64] = ACTIONS(1603), - [anon_sym_i64] = ACTIONS(1603), - [anon_sym_u128] = ACTIONS(1603), - [anon_sym_i128] = ACTIONS(1603), - [anon_sym_isize] = ACTIONS(1603), - [anon_sym_usize] = ACTIONS(1603), - [anon_sym_f32] = ACTIONS(1603), - [anon_sym_f64] = ACTIONS(1603), - [anon_sym_bool] = ACTIONS(1603), - [anon_sym_str] = ACTIONS(1603), - [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1243), - [anon_sym_AMP] = ACTIONS(1605), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3058), - [anon_sym_async] = ACTIONS(1265), - [anon_sym_const] = ACTIONS(1265), - [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1271), - [anon_sym_for] = ACTIONS(1273), - [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1277), - [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1265), - [anon_sym_extern] = ACTIONS(1279), - [anon_sym_dyn] = ACTIONS(1283), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1619), - [sym_super] = ACTIONS(1619), - [sym_crate] = ACTIONS(1619), - [sym_metavariable] = ACTIONS(1621), + [aux_sym_function_modifiers_repeat1] = STATE(2244), + [sym_identifier] = ACTIONS(3064), + [anon_sym_LPAREN] = ACTIONS(1602), + [anon_sym_LBRACK] = ACTIONS(1604), + [anon_sym_STAR] = ACTIONS(1240), + [anon_sym_QMARK] = ACTIONS(1242), + [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_BANG] = ACTIONS(1248), + [anon_sym_AMP] = ACTIONS(1610), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1614), + [anon_sym_SQUOTE] = ACTIONS(3072), + [anon_sym_async] = ACTIONS(1270), + [anon_sym_const] = ACTIONS(1270), + [anon_sym_default] = ACTIONS(1618), + [anon_sym_fn] = ACTIONS(1276), + [anon_sym_for] = ACTIONS(1278), + [anon_sym_gen] = ACTIONS(1620), + [anon_sym_impl] = ACTIONS(1282), + [anon_sym_union] = ACTIONS(1620), + [anon_sym_unsafe] = ACTIONS(1270), + [anon_sym_extern] = ACTIONS(1284), + [anon_sym_safe] = ACTIONS(1270), + [anon_sym_dyn] = ACTIONS(1288), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1624), + [sym_super] = ACTIONS(1624), + [sym_crate] = ACTIONS(1624), + [sym_metavariable] = ACTIONS(1626), }, [STATE(1009)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2043), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_function_modifiers] = STATE(3591), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2373), + [sym__type] = STATE(2596), + [sym_bracketed_type] = STATE(3474), + [sym_lifetime] = STATE(3727), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1591), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2022), + [sym_generic_type_with_turbofish] = STATE(3764), + [sym_bounded_type] = STATE(2069), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3334), + [sym_scoped_type_identifier] = STATE(1990), [sym_line_comment] = STATE(1009), [sym_block_comment] = STATE(1009), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(3052), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1235), - [anon_sym_QMARK] = ACTIONS(1237), - [anon_sym_u8] = ACTIONS(1603), - [anon_sym_i8] = ACTIONS(1603), - [anon_sym_u16] = ACTIONS(1603), - [anon_sym_i16] = ACTIONS(1603), - [anon_sym_u32] = ACTIONS(1603), - [anon_sym_i32] = ACTIONS(1603), - [anon_sym_u64] = ACTIONS(1603), - [anon_sym_i64] = ACTIONS(1603), - [anon_sym_u128] = ACTIONS(1603), - [anon_sym_i128] = ACTIONS(1603), - [anon_sym_isize] = ACTIONS(1603), - [anon_sym_usize] = ACTIONS(1603), - [anon_sym_f32] = ACTIONS(1603), - [anon_sym_f64] = ACTIONS(1603), - [anon_sym_bool] = ACTIONS(1603), - [anon_sym_str] = ACTIONS(1603), - [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1243), - [anon_sym_AMP] = ACTIONS(1605), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3058), - [anon_sym_async] = ACTIONS(1265), - [anon_sym_const] = ACTIONS(1265), - [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1271), - [anon_sym_for] = ACTIONS(1273), - [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1277), - [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1265), - [anon_sym_extern] = ACTIONS(1279), - [anon_sym_dyn] = ACTIONS(1283), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1619), - [sym_super] = ACTIONS(1619), - [sym_crate] = ACTIONS(1619), - [sym_metavariable] = ACTIONS(1621), + [aux_sym_function_modifiers_repeat1] = STATE(2244), + [sym_identifier] = ACTIONS(3064), + [anon_sym_LPAREN] = ACTIONS(1602), + [anon_sym_LBRACK] = ACTIONS(1604), + [anon_sym_STAR] = ACTIONS(1240), + [anon_sym_QMARK] = ACTIONS(1242), + [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_BANG] = ACTIONS(1248), + [anon_sym_AMP] = ACTIONS(1610), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1614), + [anon_sym_SQUOTE] = ACTIONS(3072), + [anon_sym_async] = ACTIONS(1270), + [anon_sym_const] = ACTIONS(1270), + [anon_sym_default] = ACTIONS(1618), + [anon_sym_fn] = ACTIONS(1276), + [anon_sym_for] = ACTIONS(1278), + [anon_sym_gen] = ACTIONS(1620), + [anon_sym_impl] = ACTIONS(1282), + [anon_sym_union] = ACTIONS(1620), + [anon_sym_unsafe] = ACTIONS(1270), + [anon_sym_extern] = ACTIONS(1284), + [anon_sym_safe] = ACTIONS(1270), + [anon_sym_dyn] = ACTIONS(1288), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1624), + [sym_super] = ACTIONS(1624), + [sym_crate] = ACTIONS(1624), + [sym_metavariable] = ACTIONS(1626), }, [STATE(1010)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2297), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_function_modifiers] = STATE(3591), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2373), + [sym__type] = STATE(2321), + [sym_bracketed_type] = STATE(3474), + [sym_lifetime] = STATE(3727), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1591), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2022), + [sym_generic_type_with_turbofish] = STATE(3764), + [sym_bounded_type] = STATE(2069), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3334), + [sym_scoped_type_identifier] = STATE(1990), [sym_line_comment] = STATE(1010), [sym_block_comment] = STATE(1010), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(3052), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1235), - [anon_sym_QMARK] = ACTIONS(1237), - [anon_sym_u8] = ACTIONS(1603), - [anon_sym_i8] = ACTIONS(1603), - [anon_sym_u16] = ACTIONS(1603), - [anon_sym_i16] = ACTIONS(1603), - [anon_sym_u32] = ACTIONS(1603), - [anon_sym_i32] = ACTIONS(1603), - [anon_sym_u64] = ACTIONS(1603), - [anon_sym_i64] = ACTIONS(1603), - [anon_sym_u128] = ACTIONS(1603), - [anon_sym_i128] = ACTIONS(1603), - [anon_sym_isize] = ACTIONS(1603), - [anon_sym_usize] = ACTIONS(1603), - [anon_sym_f32] = ACTIONS(1603), - [anon_sym_f64] = ACTIONS(1603), - [anon_sym_bool] = ACTIONS(1603), - [anon_sym_str] = ACTIONS(1603), - [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1243), - [anon_sym_AMP] = ACTIONS(1605), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3058), - [anon_sym_async] = ACTIONS(1265), - [anon_sym_const] = ACTIONS(1265), - [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1271), - [anon_sym_for] = ACTIONS(1273), - [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1277), - [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1265), - [anon_sym_extern] = ACTIONS(1279), - [anon_sym_dyn] = ACTIONS(1283), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1619), - [sym_super] = ACTIONS(1619), - [sym_crate] = ACTIONS(1619), - [sym_metavariable] = ACTIONS(1621), + [aux_sym_function_modifiers_repeat1] = STATE(2244), + [sym_identifier] = ACTIONS(3064), + [anon_sym_LPAREN] = ACTIONS(1602), + [anon_sym_LBRACK] = ACTIONS(1604), + [anon_sym_STAR] = ACTIONS(1240), + [anon_sym_QMARK] = ACTIONS(1242), + [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_BANG] = ACTIONS(1248), + [anon_sym_AMP] = ACTIONS(1610), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1614), + [anon_sym_SQUOTE] = ACTIONS(3072), + [anon_sym_async] = ACTIONS(1270), + [anon_sym_const] = ACTIONS(1270), + [anon_sym_default] = ACTIONS(1618), + [anon_sym_fn] = ACTIONS(1276), + [anon_sym_for] = ACTIONS(1278), + [anon_sym_gen] = ACTIONS(1620), + [anon_sym_impl] = ACTIONS(1282), + [anon_sym_union] = ACTIONS(1620), + [anon_sym_unsafe] = ACTIONS(1270), + [anon_sym_extern] = ACTIONS(1284), + [anon_sym_safe] = ACTIONS(1270), + [anon_sym_dyn] = ACTIONS(1288), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1624), + [sym_super] = ACTIONS(1624), + [sym_crate] = ACTIONS(1624), + [sym_metavariable] = ACTIONS(1626), }, [STATE(1011)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2062), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_function_modifiers] = STATE(3591), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2373), + [sym__type] = STATE(2414), + [sym_bracketed_type] = STATE(3474), + [sym_lifetime] = STATE(3727), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1591), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2022), + [sym_generic_type_with_turbofish] = STATE(3764), + [sym_bounded_type] = STATE(2069), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3334), + [sym_scoped_type_identifier] = STATE(1990), [sym_line_comment] = STATE(1011), [sym_block_comment] = STATE(1011), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(3052), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1235), - [anon_sym_QMARK] = ACTIONS(1237), - [anon_sym_u8] = ACTIONS(1603), - [anon_sym_i8] = ACTIONS(1603), - [anon_sym_u16] = ACTIONS(1603), - [anon_sym_i16] = ACTIONS(1603), - [anon_sym_u32] = ACTIONS(1603), - [anon_sym_i32] = ACTIONS(1603), - [anon_sym_u64] = ACTIONS(1603), - [anon_sym_i64] = ACTIONS(1603), - [anon_sym_u128] = ACTIONS(1603), - [anon_sym_i128] = ACTIONS(1603), - [anon_sym_isize] = ACTIONS(1603), - [anon_sym_usize] = ACTIONS(1603), - [anon_sym_f32] = ACTIONS(1603), - [anon_sym_f64] = ACTIONS(1603), - [anon_sym_bool] = ACTIONS(1603), - [anon_sym_str] = ACTIONS(1603), - [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1243), - [anon_sym_AMP] = ACTIONS(1605), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3058), - [anon_sym_async] = ACTIONS(1265), - [anon_sym_const] = ACTIONS(1265), - [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1271), - [anon_sym_for] = ACTIONS(1273), - [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1277), - [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1265), - [anon_sym_extern] = ACTIONS(1279), - [anon_sym_dyn] = ACTIONS(1283), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1619), - [sym_super] = ACTIONS(1619), - [sym_crate] = ACTIONS(1619), - [sym_metavariable] = ACTIONS(1621), + [aux_sym_function_modifiers_repeat1] = STATE(2244), + [sym_identifier] = ACTIONS(3064), + [anon_sym_LPAREN] = ACTIONS(1602), + [anon_sym_LBRACK] = ACTIONS(1604), + [anon_sym_STAR] = ACTIONS(1240), + [anon_sym_QMARK] = ACTIONS(1242), + [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_BANG] = ACTIONS(1248), + [anon_sym_AMP] = ACTIONS(1610), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1614), + [anon_sym_SQUOTE] = ACTIONS(3072), + [anon_sym_async] = ACTIONS(1270), + [anon_sym_const] = ACTIONS(1270), + [anon_sym_default] = ACTIONS(1618), + [anon_sym_fn] = ACTIONS(1276), + [anon_sym_for] = ACTIONS(1278), + [anon_sym_gen] = ACTIONS(1620), + [anon_sym_impl] = ACTIONS(1282), + [anon_sym_union] = ACTIONS(1620), + [anon_sym_unsafe] = ACTIONS(1270), + [anon_sym_extern] = ACTIONS(1284), + [anon_sym_safe] = ACTIONS(1270), + [anon_sym_dyn] = ACTIONS(1288), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1624), + [sym_super] = ACTIONS(1624), + [sym_crate] = ACTIONS(1624), + [sym_metavariable] = ACTIONS(1626), }, [STATE(1012)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2835), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_function_modifiers] = STATE(3591), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2373), + [sym__type] = STATE(2415), + [sym_bracketed_type] = STATE(3474), + [sym_lifetime] = STATE(3727), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1591), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2022), + [sym_generic_type_with_turbofish] = STATE(3764), + [sym_bounded_type] = STATE(2069), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3334), + [sym_scoped_type_identifier] = STATE(1990), [sym_line_comment] = STATE(1012), [sym_block_comment] = STATE(1012), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(3052), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1235), - [anon_sym_QMARK] = ACTIONS(1237), - [anon_sym_u8] = ACTIONS(1603), - [anon_sym_i8] = ACTIONS(1603), - [anon_sym_u16] = ACTIONS(1603), - [anon_sym_i16] = ACTIONS(1603), - [anon_sym_u32] = ACTIONS(1603), - [anon_sym_i32] = ACTIONS(1603), - [anon_sym_u64] = ACTIONS(1603), - [anon_sym_i64] = ACTIONS(1603), - [anon_sym_u128] = ACTIONS(1603), - [anon_sym_i128] = ACTIONS(1603), - [anon_sym_isize] = ACTIONS(1603), - [anon_sym_usize] = ACTIONS(1603), - [anon_sym_f32] = ACTIONS(1603), - [anon_sym_f64] = ACTIONS(1603), - [anon_sym_bool] = ACTIONS(1603), - [anon_sym_str] = ACTIONS(1603), - [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1243), - [anon_sym_AMP] = ACTIONS(1605), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3058), - [anon_sym_async] = ACTIONS(1265), - [anon_sym_const] = ACTIONS(1265), - [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1271), - [anon_sym_for] = ACTIONS(1273), - [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1277), - [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1265), - [anon_sym_extern] = ACTIONS(1279), - [anon_sym_dyn] = ACTIONS(1283), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1619), - [sym_super] = ACTIONS(1619), - [sym_crate] = ACTIONS(1619), - [sym_metavariable] = ACTIONS(1621), + [aux_sym_function_modifiers_repeat1] = STATE(2244), + [sym_identifier] = ACTIONS(3064), + [anon_sym_LPAREN] = ACTIONS(1602), + [anon_sym_LBRACK] = ACTIONS(1604), + [anon_sym_STAR] = ACTIONS(1240), + [anon_sym_QMARK] = ACTIONS(1242), + [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_BANG] = ACTIONS(1248), + [anon_sym_AMP] = ACTIONS(1610), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1614), + [anon_sym_SQUOTE] = ACTIONS(3072), + [anon_sym_async] = ACTIONS(1270), + [anon_sym_const] = ACTIONS(1270), + [anon_sym_default] = ACTIONS(1618), + [anon_sym_fn] = ACTIONS(1276), + [anon_sym_for] = ACTIONS(1278), + [anon_sym_gen] = ACTIONS(1620), + [anon_sym_impl] = ACTIONS(1282), + [anon_sym_union] = ACTIONS(1620), + [anon_sym_unsafe] = ACTIONS(1270), + [anon_sym_extern] = ACTIONS(1284), + [anon_sym_safe] = ACTIONS(1270), + [anon_sym_dyn] = ACTIONS(1288), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1624), + [sym_super] = ACTIONS(1624), + [sym_crate] = ACTIONS(1624), + [sym_metavariable] = ACTIONS(1626), }, [STATE(1013)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2983), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_function_modifiers] = STATE(3591), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2373), + [sym__type] = STATE(2957), + [sym_bracketed_type] = STATE(3474), + [sym_lifetime] = STATE(3727), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1591), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2022), + [sym_generic_type_with_turbofish] = STATE(3764), + [sym_bounded_type] = STATE(2069), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3334), + [sym_scoped_type_identifier] = STATE(1990), [sym_line_comment] = STATE(1013), [sym_block_comment] = STATE(1013), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(3052), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1235), - [anon_sym_QMARK] = ACTIONS(1237), - [anon_sym_u8] = ACTIONS(1603), - [anon_sym_i8] = ACTIONS(1603), - [anon_sym_u16] = ACTIONS(1603), - [anon_sym_i16] = ACTIONS(1603), - [anon_sym_u32] = ACTIONS(1603), - [anon_sym_i32] = ACTIONS(1603), - [anon_sym_u64] = ACTIONS(1603), - [anon_sym_i64] = ACTIONS(1603), - [anon_sym_u128] = ACTIONS(1603), - [anon_sym_i128] = ACTIONS(1603), - [anon_sym_isize] = ACTIONS(1603), - [anon_sym_usize] = ACTIONS(1603), - [anon_sym_f32] = ACTIONS(1603), - [anon_sym_f64] = ACTIONS(1603), - [anon_sym_bool] = ACTIONS(1603), - [anon_sym_str] = ACTIONS(1603), - [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1243), - [anon_sym_AMP] = ACTIONS(1605), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3058), - [anon_sym_async] = ACTIONS(1265), - [anon_sym_const] = ACTIONS(1265), - [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1271), - [anon_sym_for] = ACTIONS(1273), - [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1277), - [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1265), - [anon_sym_extern] = ACTIONS(1279), - [anon_sym_dyn] = ACTIONS(1283), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1619), - [sym_super] = ACTIONS(1619), - [sym_crate] = ACTIONS(1619), - [sym_metavariable] = ACTIONS(1621), + [aux_sym_function_modifiers_repeat1] = STATE(2244), + [sym_identifier] = ACTIONS(3064), + [anon_sym_LPAREN] = ACTIONS(1602), + [anon_sym_LBRACK] = ACTIONS(1604), + [anon_sym_STAR] = ACTIONS(1240), + [anon_sym_QMARK] = ACTIONS(1242), + [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_BANG] = ACTIONS(1248), + [anon_sym_AMP] = ACTIONS(1610), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1614), + [anon_sym_SQUOTE] = ACTIONS(3072), + [anon_sym_async] = ACTIONS(1270), + [anon_sym_const] = ACTIONS(1270), + [anon_sym_default] = ACTIONS(1618), + [anon_sym_fn] = ACTIONS(1276), + [anon_sym_for] = ACTIONS(1278), + [anon_sym_gen] = ACTIONS(1620), + [anon_sym_impl] = ACTIONS(1282), + [anon_sym_union] = ACTIONS(1620), + [anon_sym_unsafe] = ACTIONS(1270), + [anon_sym_extern] = ACTIONS(1284), + [anon_sym_safe] = ACTIONS(1270), + [anon_sym_dyn] = ACTIONS(1288), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1624), + [sym_super] = ACTIONS(1624), + [sym_crate] = ACTIONS(1624), + [sym_metavariable] = ACTIONS(1626), }, [STATE(1014)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2705), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_function_modifiers] = STATE(3591), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2373), + [sym__type] = STATE(2665), + [sym_bracketed_type] = STATE(3474), + [sym_lifetime] = STATE(3727), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1591), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2022), + [sym_generic_type_with_turbofish] = STATE(3764), + [sym_bounded_type] = STATE(2069), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3334), + [sym_scoped_type_identifier] = STATE(1990), [sym_line_comment] = STATE(1014), [sym_block_comment] = STATE(1014), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(3052), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1235), - [anon_sym_QMARK] = ACTIONS(1237), - [anon_sym_u8] = ACTIONS(1603), - [anon_sym_i8] = ACTIONS(1603), - [anon_sym_u16] = ACTIONS(1603), - [anon_sym_i16] = ACTIONS(1603), - [anon_sym_u32] = ACTIONS(1603), - [anon_sym_i32] = ACTIONS(1603), - [anon_sym_u64] = ACTIONS(1603), - [anon_sym_i64] = ACTIONS(1603), - [anon_sym_u128] = ACTIONS(1603), - [anon_sym_i128] = ACTIONS(1603), - [anon_sym_isize] = ACTIONS(1603), - [anon_sym_usize] = ACTIONS(1603), - [anon_sym_f32] = ACTIONS(1603), - [anon_sym_f64] = ACTIONS(1603), - [anon_sym_bool] = ACTIONS(1603), - [anon_sym_str] = ACTIONS(1603), - [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1243), - [anon_sym_AMP] = ACTIONS(1605), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3058), - [anon_sym_async] = ACTIONS(1265), - [anon_sym_const] = ACTIONS(1265), - [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1271), - [anon_sym_for] = ACTIONS(1273), - [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1277), - [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1265), - [anon_sym_extern] = ACTIONS(1279), - [anon_sym_dyn] = ACTIONS(1283), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1619), - [sym_super] = ACTIONS(1619), - [sym_crate] = ACTIONS(1619), - [sym_metavariable] = ACTIONS(1621), + [aux_sym_function_modifiers_repeat1] = STATE(2244), + [sym_identifier] = ACTIONS(3064), + [anon_sym_LPAREN] = ACTIONS(1602), + [anon_sym_LBRACK] = ACTIONS(1604), + [anon_sym_STAR] = ACTIONS(1240), + [anon_sym_QMARK] = ACTIONS(1242), + [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_BANG] = ACTIONS(1248), + [anon_sym_AMP] = ACTIONS(1610), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1614), + [anon_sym_SQUOTE] = ACTIONS(3072), + [anon_sym_async] = ACTIONS(1270), + [anon_sym_const] = ACTIONS(1270), + [anon_sym_default] = ACTIONS(1618), + [anon_sym_fn] = ACTIONS(1276), + [anon_sym_for] = ACTIONS(1278), + [anon_sym_gen] = ACTIONS(1620), + [anon_sym_impl] = ACTIONS(1282), + [anon_sym_union] = ACTIONS(1620), + [anon_sym_unsafe] = ACTIONS(1270), + [anon_sym_extern] = ACTIONS(1284), + [anon_sym_safe] = ACTIONS(1270), + [anon_sym_dyn] = ACTIONS(1288), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1624), + [sym_super] = ACTIONS(1624), + [sym_crate] = ACTIONS(1624), + [sym_metavariable] = ACTIONS(1626), }, [STATE(1015)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2744), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_function_modifiers] = STATE(3591), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2373), + [sym__type] = STATE(2417), + [sym_bracketed_type] = STATE(3474), + [sym_lifetime] = STATE(3727), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1591), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2022), + [sym_generic_type_with_turbofish] = STATE(3764), + [sym_bounded_type] = STATE(2069), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3334), + [sym_scoped_type_identifier] = STATE(1990), [sym_line_comment] = STATE(1015), [sym_block_comment] = STATE(1015), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(3052), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1235), - [anon_sym_QMARK] = ACTIONS(1237), - [anon_sym_u8] = ACTIONS(1603), - [anon_sym_i8] = ACTIONS(1603), - [anon_sym_u16] = ACTIONS(1603), - [anon_sym_i16] = ACTIONS(1603), - [anon_sym_u32] = ACTIONS(1603), - [anon_sym_i32] = ACTIONS(1603), - [anon_sym_u64] = ACTIONS(1603), - [anon_sym_i64] = ACTIONS(1603), - [anon_sym_u128] = ACTIONS(1603), - [anon_sym_i128] = ACTIONS(1603), - [anon_sym_isize] = ACTIONS(1603), - [anon_sym_usize] = ACTIONS(1603), - [anon_sym_f32] = ACTIONS(1603), - [anon_sym_f64] = ACTIONS(1603), - [anon_sym_bool] = ACTIONS(1603), - [anon_sym_str] = ACTIONS(1603), - [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1243), - [anon_sym_AMP] = ACTIONS(1605), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3058), - [anon_sym_async] = ACTIONS(1265), - [anon_sym_const] = ACTIONS(1265), - [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1271), - [anon_sym_for] = ACTIONS(1273), - [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1277), - [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1265), - [anon_sym_extern] = ACTIONS(1279), - [anon_sym_dyn] = ACTIONS(1283), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1619), - [sym_super] = ACTIONS(1619), - [sym_crate] = ACTIONS(1619), - [sym_metavariable] = ACTIONS(1621), + [aux_sym_function_modifiers_repeat1] = STATE(2244), + [sym_identifier] = ACTIONS(3064), + [anon_sym_LPAREN] = ACTIONS(1602), + [anon_sym_LBRACK] = ACTIONS(1604), + [anon_sym_STAR] = ACTIONS(1240), + [anon_sym_QMARK] = ACTIONS(1242), + [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_BANG] = ACTIONS(1248), + [anon_sym_AMP] = ACTIONS(1610), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1614), + [anon_sym_SQUOTE] = ACTIONS(3072), + [anon_sym_async] = ACTIONS(1270), + [anon_sym_const] = ACTIONS(1270), + [anon_sym_default] = ACTIONS(1618), + [anon_sym_fn] = ACTIONS(1276), + [anon_sym_for] = ACTIONS(1278), + [anon_sym_gen] = ACTIONS(1620), + [anon_sym_impl] = ACTIONS(1282), + [anon_sym_union] = ACTIONS(1620), + [anon_sym_unsafe] = ACTIONS(1270), + [anon_sym_extern] = ACTIONS(1284), + [anon_sym_safe] = ACTIONS(1270), + [anon_sym_dyn] = ACTIONS(1288), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1624), + [sym_super] = ACTIONS(1624), + [sym_crate] = ACTIONS(1624), + [sym_metavariable] = ACTIONS(1626), }, [STATE(1016)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2690), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_function_modifiers] = STATE(3591), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2373), + [sym__type] = STATE(2418), + [sym_bracketed_type] = STATE(3474), + [sym_lifetime] = STATE(3727), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1591), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2022), + [sym_generic_type_with_turbofish] = STATE(3764), + [sym_bounded_type] = STATE(2069), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3334), + [sym_scoped_type_identifier] = STATE(1990), [sym_line_comment] = STATE(1016), [sym_block_comment] = STATE(1016), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(3052), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1235), - [anon_sym_QMARK] = ACTIONS(1237), - [anon_sym_u8] = ACTIONS(1603), - [anon_sym_i8] = ACTIONS(1603), - [anon_sym_u16] = ACTIONS(1603), - [anon_sym_i16] = ACTIONS(1603), - [anon_sym_u32] = ACTIONS(1603), - [anon_sym_i32] = ACTIONS(1603), - [anon_sym_u64] = ACTIONS(1603), - [anon_sym_i64] = ACTIONS(1603), - [anon_sym_u128] = ACTIONS(1603), - [anon_sym_i128] = ACTIONS(1603), - [anon_sym_isize] = ACTIONS(1603), - [anon_sym_usize] = ACTIONS(1603), - [anon_sym_f32] = ACTIONS(1603), - [anon_sym_f64] = ACTIONS(1603), - [anon_sym_bool] = ACTIONS(1603), - [anon_sym_str] = ACTIONS(1603), - [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1243), - [anon_sym_AMP] = ACTIONS(1605), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3058), - [anon_sym_async] = ACTIONS(1265), - [anon_sym_const] = ACTIONS(1265), - [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1271), - [anon_sym_for] = ACTIONS(1273), - [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1277), - [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1265), - [anon_sym_extern] = ACTIONS(1279), - [anon_sym_dyn] = ACTIONS(1283), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1619), - [sym_super] = ACTIONS(1619), - [sym_crate] = ACTIONS(1619), - [sym_metavariable] = ACTIONS(1621), + [aux_sym_function_modifiers_repeat1] = STATE(2244), + [sym_identifier] = ACTIONS(3064), + [anon_sym_LPAREN] = ACTIONS(1602), + [anon_sym_LBRACK] = ACTIONS(1604), + [anon_sym_STAR] = ACTIONS(1240), + [anon_sym_QMARK] = ACTIONS(1242), + [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_BANG] = ACTIONS(1248), + [anon_sym_AMP] = ACTIONS(1610), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1614), + [anon_sym_SQUOTE] = ACTIONS(3072), + [anon_sym_async] = ACTIONS(1270), + [anon_sym_const] = ACTIONS(1270), + [anon_sym_default] = ACTIONS(1618), + [anon_sym_fn] = ACTIONS(1276), + [anon_sym_for] = ACTIONS(1278), + [anon_sym_gen] = ACTIONS(1620), + [anon_sym_impl] = ACTIONS(1282), + [anon_sym_union] = ACTIONS(1620), + [anon_sym_unsafe] = ACTIONS(1270), + [anon_sym_extern] = ACTIONS(1284), + [anon_sym_safe] = ACTIONS(1270), + [anon_sym_dyn] = ACTIONS(1288), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1624), + [sym_super] = ACTIONS(1624), + [sym_crate] = ACTIONS(1624), + [sym_metavariable] = ACTIONS(1626), }, [STATE(1017)] = { - [sym_function_modifiers] = STATE(3455), - [sym_removed_trait_bound] = STATE(1526), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(1527), - [sym_bracketed_type] = STATE(3638), - [sym_lifetime] = STATE(3517), - [sym_array_type] = STATE(1526), - [sym_for_lifetimes] = STATE(1623), - [sym_function_type] = STATE(1526), - [sym_tuple_type] = STATE(1526), - [sym_unit_type] = STATE(1526), - [sym_generic_type] = STATE(1102), - [sym_generic_type_with_turbofish] = STATE(3627), - [sym_bounded_type] = STATE(1526), - [sym_reference_type] = STATE(1526), - [sym_pointer_type] = STATE(1526), - [sym_never_type] = STATE(1526), - [sym_abstract_type] = STATE(1526), - [sym_dynamic_type] = STATE(1526), - [sym_macro_invocation] = STATE(1526), - [sym_scoped_identifier] = STATE(3304), - [sym_scoped_type_identifier] = STATE(1058), + [sym_function_modifiers] = STATE(3591), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2373), + [sym__type] = STATE(2419), + [sym_bracketed_type] = STATE(3474), + [sym_lifetime] = STATE(3727), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1591), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2022), + [sym_generic_type_with_turbofish] = STATE(3764), + [sym_bounded_type] = STATE(2069), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3334), + [sym_scoped_type_identifier] = STATE(1990), [sym_line_comment] = STATE(1017), [sym_block_comment] = STATE(1017), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(3182), - [anon_sym_LPAREN] = ACTIONS(3184), - [anon_sym_LBRACK] = ACTIONS(3186), - [anon_sym_STAR] = ACTIONS(3190), - [anon_sym_QMARK] = ACTIONS(3192), - [anon_sym_u8] = ACTIONS(3194), - [anon_sym_i8] = ACTIONS(3194), - [anon_sym_u16] = ACTIONS(3194), - [anon_sym_i16] = ACTIONS(3194), - [anon_sym_u32] = ACTIONS(3194), - [anon_sym_i32] = ACTIONS(3194), - [anon_sym_u64] = ACTIONS(3194), - [anon_sym_i64] = ACTIONS(3194), - [anon_sym_u128] = ACTIONS(3194), - [anon_sym_i128] = ACTIONS(3194), - [anon_sym_isize] = ACTIONS(3194), - [anon_sym_usize] = ACTIONS(3194), - [anon_sym_f32] = ACTIONS(3194), - [anon_sym_f64] = ACTIONS(3194), - [anon_sym_bool] = ACTIONS(3194), - [anon_sym_str] = ACTIONS(3194), - [anon_sym_char] = ACTIONS(3194), - [anon_sym_BANG] = ACTIONS(3196), - [anon_sym_AMP] = ACTIONS(3198), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3200), - [anon_sym_SQUOTE] = ACTIONS(3058), - [anon_sym_async] = ACTIONS(1265), - [anon_sym_const] = ACTIONS(1265), - [anon_sym_default] = ACTIONS(3202), - [anon_sym_fn] = ACTIONS(3204), - [anon_sym_for] = ACTIONS(1273), - [anon_sym_gen] = ACTIONS(3206), - [anon_sym_impl] = ACTIONS(3208), - [anon_sym_union] = ACTIONS(3206), - [anon_sym_unsafe] = ACTIONS(1265), - [anon_sym_extern] = ACTIONS(1279), - [anon_sym_dyn] = ACTIONS(3210), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3214), - [sym_super] = ACTIONS(3214), - [sym_crate] = ACTIONS(3214), - [sym_metavariable] = ACTIONS(3216), + [aux_sym_function_modifiers_repeat1] = STATE(2244), + [sym_identifier] = ACTIONS(3064), + [anon_sym_LPAREN] = ACTIONS(1602), + [anon_sym_LBRACK] = ACTIONS(1604), + [anon_sym_STAR] = ACTIONS(1240), + [anon_sym_QMARK] = ACTIONS(1242), + [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_BANG] = ACTIONS(1248), + [anon_sym_AMP] = ACTIONS(1610), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1614), + [anon_sym_SQUOTE] = ACTIONS(3072), + [anon_sym_async] = ACTIONS(1270), + [anon_sym_const] = ACTIONS(1270), + [anon_sym_default] = ACTIONS(1618), + [anon_sym_fn] = ACTIONS(1276), + [anon_sym_for] = ACTIONS(1278), + [anon_sym_gen] = ACTIONS(1620), + [anon_sym_impl] = ACTIONS(1282), + [anon_sym_union] = ACTIONS(1620), + [anon_sym_unsafe] = ACTIONS(1270), + [anon_sym_extern] = ACTIONS(1284), + [anon_sym_safe] = ACTIONS(1270), + [anon_sym_dyn] = ACTIONS(1288), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1624), + [sym_super] = ACTIONS(1624), + [sym_crate] = ACTIONS(1624), + [sym_metavariable] = ACTIONS(1626), }, [STATE(1018)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2513), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_function_modifiers] = STATE(3591), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2373), + [sym__type] = STATE(2420), + [sym_bracketed_type] = STATE(3474), + [sym_lifetime] = STATE(3727), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1591), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2022), + [sym_generic_type_with_turbofish] = STATE(3764), + [sym_bounded_type] = STATE(2069), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3334), + [sym_scoped_type_identifier] = STATE(1990), [sym_line_comment] = STATE(1018), [sym_block_comment] = STATE(1018), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(3052), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1235), - [anon_sym_QMARK] = ACTIONS(1237), - [anon_sym_u8] = ACTIONS(1603), - [anon_sym_i8] = ACTIONS(1603), - [anon_sym_u16] = ACTIONS(1603), - [anon_sym_i16] = ACTIONS(1603), - [anon_sym_u32] = ACTIONS(1603), - [anon_sym_i32] = ACTIONS(1603), - [anon_sym_u64] = ACTIONS(1603), - [anon_sym_i64] = ACTIONS(1603), - [anon_sym_u128] = ACTIONS(1603), - [anon_sym_i128] = ACTIONS(1603), - [anon_sym_isize] = ACTIONS(1603), - [anon_sym_usize] = ACTIONS(1603), - [anon_sym_f32] = ACTIONS(1603), - [anon_sym_f64] = ACTIONS(1603), - [anon_sym_bool] = ACTIONS(1603), - [anon_sym_str] = ACTIONS(1603), - [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1243), - [anon_sym_AMP] = ACTIONS(1605), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3058), - [anon_sym_async] = ACTIONS(1265), - [anon_sym_const] = ACTIONS(1265), - [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1271), - [anon_sym_for] = ACTIONS(1273), - [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1277), - [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1265), - [anon_sym_extern] = ACTIONS(1279), - [anon_sym_dyn] = ACTIONS(1283), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1619), - [sym_super] = ACTIONS(1619), - [sym_crate] = ACTIONS(1619), - [sym_metavariable] = ACTIONS(1621), + [aux_sym_function_modifiers_repeat1] = STATE(2244), + [sym_identifier] = ACTIONS(3064), + [anon_sym_LPAREN] = ACTIONS(1602), + [anon_sym_LBRACK] = ACTIONS(1604), + [anon_sym_STAR] = ACTIONS(1240), + [anon_sym_QMARK] = ACTIONS(1242), + [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_BANG] = ACTIONS(1248), + [anon_sym_AMP] = ACTIONS(1610), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1614), + [anon_sym_SQUOTE] = ACTIONS(3072), + [anon_sym_async] = ACTIONS(1270), + [anon_sym_const] = ACTIONS(1270), + [anon_sym_default] = ACTIONS(1618), + [anon_sym_fn] = ACTIONS(1276), + [anon_sym_for] = ACTIONS(1278), + [anon_sym_gen] = ACTIONS(1620), + [anon_sym_impl] = ACTIONS(1282), + [anon_sym_union] = ACTIONS(1620), + [anon_sym_unsafe] = ACTIONS(1270), + [anon_sym_extern] = ACTIONS(1284), + [anon_sym_safe] = ACTIONS(1270), + [anon_sym_dyn] = ACTIONS(1288), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1624), + [sym_super] = ACTIONS(1624), + [sym_crate] = ACTIONS(1624), + [sym_metavariable] = ACTIONS(1626), }, [STATE(1019)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2042), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_function_modifiers] = STATE(3591), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2373), + [sym__type] = STATE(2269), + [sym_bracketed_type] = STATE(3474), + [sym_lifetime] = STATE(3727), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1591), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2022), + [sym_generic_type_with_turbofish] = STATE(3764), + [sym_bounded_type] = STATE(2069), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3334), + [sym_scoped_type_identifier] = STATE(1990), [sym_line_comment] = STATE(1019), [sym_block_comment] = STATE(1019), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(3052), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1235), - [anon_sym_QMARK] = ACTIONS(1237), - [anon_sym_u8] = ACTIONS(1603), - [anon_sym_i8] = ACTIONS(1603), - [anon_sym_u16] = ACTIONS(1603), - [anon_sym_i16] = ACTIONS(1603), - [anon_sym_u32] = ACTIONS(1603), - [anon_sym_i32] = ACTIONS(1603), - [anon_sym_u64] = ACTIONS(1603), - [anon_sym_i64] = ACTIONS(1603), - [anon_sym_u128] = ACTIONS(1603), - [anon_sym_i128] = ACTIONS(1603), - [anon_sym_isize] = ACTIONS(1603), - [anon_sym_usize] = ACTIONS(1603), - [anon_sym_f32] = ACTIONS(1603), - [anon_sym_f64] = ACTIONS(1603), - [anon_sym_bool] = ACTIONS(1603), - [anon_sym_str] = ACTIONS(1603), - [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1243), - [anon_sym_AMP] = ACTIONS(1605), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3058), - [anon_sym_async] = ACTIONS(1265), - [anon_sym_const] = ACTIONS(1265), - [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1271), - [anon_sym_for] = ACTIONS(1273), - [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1277), - [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1265), - [anon_sym_extern] = ACTIONS(1279), - [anon_sym_dyn] = ACTIONS(1283), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3286), - [sym_super] = ACTIONS(1619), - [sym_crate] = ACTIONS(1619), - [sym_metavariable] = ACTIONS(1621), + [aux_sym_function_modifiers_repeat1] = STATE(2244), + [sym_identifier] = ACTIONS(3064), + [anon_sym_LPAREN] = ACTIONS(1602), + [anon_sym_LBRACK] = ACTIONS(1604), + [anon_sym_STAR] = ACTIONS(1240), + [anon_sym_QMARK] = ACTIONS(1242), + [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_BANG] = ACTIONS(1248), + [anon_sym_AMP] = ACTIONS(1610), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1614), + [anon_sym_SQUOTE] = ACTIONS(3072), + [anon_sym_async] = ACTIONS(1270), + [anon_sym_const] = ACTIONS(1270), + [anon_sym_default] = ACTIONS(1618), + [anon_sym_fn] = ACTIONS(1276), + [anon_sym_for] = ACTIONS(1278), + [anon_sym_gen] = ACTIONS(1620), + [anon_sym_impl] = ACTIONS(1282), + [anon_sym_union] = ACTIONS(1620), + [anon_sym_unsafe] = ACTIONS(1270), + [anon_sym_extern] = ACTIONS(1284), + [anon_sym_safe] = ACTIONS(1270), + [anon_sym_dyn] = ACTIONS(1288), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1624), + [sym_super] = ACTIONS(1624), + [sym_crate] = ACTIONS(1624), + [sym_metavariable] = ACTIONS(1626), }, [STATE(1020)] = { - [sym_function_modifiers] = STATE(3455), - [sym_removed_trait_bound] = STATE(1526), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(1460), - [sym_bracketed_type] = STATE(3638), - [sym_lifetime] = STATE(3517), - [sym_array_type] = STATE(1526), - [sym_for_lifetimes] = STATE(1623), - [sym_function_type] = STATE(1526), - [sym_tuple_type] = STATE(1526), - [sym_unit_type] = STATE(1526), - [sym_generic_type] = STATE(1102), - [sym_generic_type_with_turbofish] = STATE(3627), - [sym_bounded_type] = STATE(1526), - [sym_reference_type] = STATE(1526), - [sym_pointer_type] = STATE(1526), - [sym_never_type] = STATE(1526), - [sym_abstract_type] = STATE(1526), - [sym_dynamic_type] = STATE(1526), - [sym_macro_invocation] = STATE(1526), - [sym_scoped_identifier] = STATE(3304), - [sym_scoped_type_identifier] = STATE(1058), + [sym_function_modifiers] = STATE(3591), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2373), + [sym__type] = STATE(2675), + [sym_bracketed_type] = STATE(3474), + [sym_lifetime] = STATE(3727), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1591), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2022), + [sym_generic_type_with_turbofish] = STATE(3764), + [sym_bounded_type] = STATE(2069), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3334), + [sym_scoped_type_identifier] = STATE(1990), [sym_line_comment] = STATE(1020), [sym_block_comment] = STATE(1020), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(3182), - [anon_sym_LPAREN] = ACTIONS(3184), - [anon_sym_LBRACK] = ACTIONS(3186), - [anon_sym_STAR] = ACTIONS(3190), - [anon_sym_QMARK] = ACTIONS(3192), - [anon_sym_u8] = ACTIONS(3194), - [anon_sym_i8] = ACTIONS(3194), - [anon_sym_u16] = ACTIONS(3194), - [anon_sym_i16] = ACTIONS(3194), - [anon_sym_u32] = ACTIONS(3194), - [anon_sym_i32] = ACTIONS(3194), - [anon_sym_u64] = ACTIONS(3194), - [anon_sym_i64] = ACTIONS(3194), - [anon_sym_u128] = ACTIONS(3194), - [anon_sym_i128] = ACTIONS(3194), - [anon_sym_isize] = ACTIONS(3194), - [anon_sym_usize] = ACTIONS(3194), - [anon_sym_f32] = ACTIONS(3194), - [anon_sym_f64] = ACTIONS(3194), - [anon_sym_bool] = ACTIONS(3194), - [anon_sym_str] = ACTIONS(3194), - [anon_sym_char] = ACTIONS(3194), - [anon_sym_BANG] = ACTIONS(3196), - [anon_sym_AMP] = ACTIONS(3198), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3200), - [anon_sym_SQUOTE] = ACTIONS(3058), - [anon_sym_async] = ACTIONS(1265), - [anon_sym_const] = ACTIONS(1265), - [anon_sym_default] = ACTIONS(3202), - [anon_sym_fn] = ACTIONS(3204), - [anon_sym_for] = ACTIONS(1273), - [anon_sym_gen] = ACTIONS(3206), - [anon_sym_impl] = ACTIONS(3208), - [anon_sym_union] = ACTIONS(3206), - [anon_sym_unsafe] = ACTIONS(1265), - [anon_sym_extern] = ACTIONS(1279), - [anon_sym_dyn] = ACTIONS(3210), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3214), - [sym_super] = ACTIONS(3214), - [sym_crate] = ACTIONS(3214), - [sym_metavariable] = ACTIONS(3216), + [aux_sym_function_modifiers_repeat1] = STATE(2244), + [sym_identifier] = ACTIONS(3064), + [anon_sym_LPAREN] = ACTIONS(1602), + [anon_sym_LBRACK] = ACTIONS(1604), + [anon_sym_STAR] = ACTIONS(1240), + [anon_sym_QMARK] = ACTIONS(1242), + [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_BANG] = ACTIONS(1248), + [anon_sym_AMP] = ACTIONS(1610), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1614), + [anon_sym_SQUOTE] = ACTIONS(3072), + [anon_sym_async] = ACTIONS(1270), + [anon_sym_const] = ACTIONS(1270), + [anon_sym_default] = ACTIONS(1618), + [anon_sym_fn] = ACTIONS(1276), + [anon_sym_for] = ACTIONS(1278), + [anon_sym_gen] = ACTIONS(1620), + [anon_sym_impl] = ACTIONS(1282), + [anon_sym_union] = ACTIONS(1620), + [anon_sym_unsafe] = ACTIONS(1270), + [anon_sym_extern] = ACTIONS(1284), + [anon_sym_safe] = ACTIONS(1270), + [anon_sym_dyn] = ACTIONS(1288), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1624), + [sym_super] = ACTIONS(1624), + [sym_crate] = ACTIONS(1624), + [sym_metavariable] = ACTIONS(1626), }, [STATE(1021)] = { - [sym_function_modifiers] = STATE(3455), - [sym_removed_trait_bound] = STATE(1526), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(1456), - [sym_bracketed_type] = STATE(3638), - [sym_lifetime] = STATE(3517), - [sym_array_type] = STATE(1526), - [sym_for_lifetimes] = STATE(1623), - [sym_function_type] = STATE(1526), - [sym_tuple_type] = STATE(1526), - [sym_unit_type] = STATE(1526), - [sym_generic_type] = STATE(1102), - [sym_generic_type_with_turbofish] = STATE(3627), - [sym_bounded_type] = STATE(1526), - [sym_reference_type] = STATE(1526), - [sym_pointer_type] = STATE(1526), - [sym_never_type] = STATE(1526), - [sym_abstract_type] = STATE(1526), - [sym_dynamic_type] = STATE(1526), - [sym_macro_invocation] = STATE(1526), - [sym_scoped_identifier] = STATE(3304), - [sym_scoped_type_identifier] = STATE(1058), + [sym_function_modifiers] = STATE(3591), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2373), + [sym__type] = STATE(2677), + [sym_bracketed_type] = STATE(3474), + [sym_lifetime] = STATE(3727), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1591), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2022), + [sym_generic_type_with_turbofish] = STATE(3764), + [sym_bounded_type] = STATE(2069), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3334), + [sym_scoped_type_identifier] = STATE(1990), [sym_line_comment] = STATE(1021), [sym_block_comment] = STATE(1021), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(3182), - [anon_sym_LPAREN] = ACTIONS(3184), - [anon_sym_LBRACK] = ACTIONS(3186), - [anon_sym_STAR] = ACTIONS(3190), - [anon_sym_QMARK] = ACTIONS(3192), - [anon_sym_u8] = ACTIONS(3194), - [anon_sym_i8] = ACTIONS(3194), - [anon_sym_u16] = ACTIONS(3194), - [anon_sym_i16] = ACTIONS(3194), - [anon_sym_u32] = ACTIONS(3194), - [anon_sym_i32] = ACTIONS(3194), - [anon_sym_u64] = ACTIONS(3194), - [anon_sym_i64] = ACTIONS(3194), - [anon_sym_u128] = ACTIONS(3194), - [anon_sym_i128] = ACTIONS(3194), - [anon_sym_isize] = ACTIONS(3194), - [anon_sym_usize] = ACTIONS(3194), - [anon_sym_f32] = ACTIONS(3194), - [anon_sym_f64] = ACTIONS(3194), - [anon_sym_bool] = ACTIONS(3194), - [anon_sym_str] = ACTIONS(3194), - [anon_sym_char] = ACTIONS(3194), - [anon_sym_BANG] = ACTIONS(3196), - [anon_sym_AMP] = ACTIONS(3198), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3200), - [anon_sym_SQUOTE] = ACTIONS(3058), - [anon_sym_async] = ACTIONS(1265), - [anon_sym_const] = ACTIONS(1265), - [anon_sym_default] = ACTIONS(3202), - [anon_sym_fn] = ACTIONS(3204), - [anon_sym_for] = ACTIONS(1273), - [anon_sym_gen] = ACTIONS(3206), - [anon_sym_impl] = ACTIONS(3208), - [anon_sym_union] = ACTIONS(3206), - [anon_sym_unsafe] = ACTIONS(1265), - [anon_sym_extern] = ACTIONS(1279), - [anon_sym_dyn] = ACTIONS(3210), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3214), - [sym_super] = ACTIONS(3214), - [sym_crate] = ACTIONS(3214), - [sym_metavariable] = ACTIONS(3216), + [aux_sym_function_modifiers_repeat1] = STATE(2244), + [sym_identifier] = ACTIONS(3064), + [anon_sym_LPAREN] = ACTIONS(1602), + [anon_sym_LBRACK] = ACTIONS(1604), + [anon_sym_STAR] = ACTIONS(1240), + [anon_sym_QMARK] = ACTIONS(1242), + [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_BANG] = ACTIONS(1248), + [anon_sym_AMP] = ACTIONS(1610), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1614), + [anon_sym_SQUOTE] = ACTIONS(3072), + [anon_sym_async] = ACTIONS(1270), + [anon_sym_const] = ACTIONS(1270), + [anon_sym_default] = ACTIONS(1618), + [anon_sym_fn] = ACTIONS(1276), + [anon_sym_for] = ACTIONS(1278), + [anon_sym_gen] = ACTIONS(1620), + [anon_sym_impl] = ACTIONS(1282), + [anon_sym_union] = ACTIONS(1620), + [anon_sym_unsafe] = ACTIONS(1270), + [anon_sym_extern] = ACTIONS(1284), + [anon_sym_safe] = ACTIONS(1270), + [anon_sym_dyn] = ACTIONS(1288), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1624), + [sym_super] = ACTIONS(1624), + [sym_crate] = ACTIONS(1624), + [sym_metavariable] = ACTIONS(1626), }, [STATE(1022)] = { - [sym_function_modifiers] = STATE(3455), - [sym_removed_trait_bound] = STATE(1526), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(1457), - [sym_bracketed_type] = STATE(3638), - [sym_lifetime] = STATE(3517), - [sym_array_type] = STATE(1526), - [sym_for_lifetimes] = STATE(1623), - [sym_function_type] = STATE(1526), - [sym_tuple_type] = STATE(1526), - [sym_unit_type] = STATE(1526), - [sym_generic_type] = STATE(1102), - [sym_generic_type_with_turbofish] = STATE(3627), - [sym_bounded_type] = STATE(1526), - [sym_reference_type] = STATE(1526), - [sym_pointer_type] = STATE(1526), - [sym_never_type] = STATE(1526), - [sym_abstract_type] = STATE(1526), - [sym_dynamic_type] = STATE(1526), - [sym_macro_invocation] = STATE(1526), - [sym_scoped_identifier] = STATE(3304), - [sym_scoped_type_identifier] = STATE(1058), + [sym_function_modifiers] = STATE(3591), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2373), + [sym__type] = STATE(2423), + [sym_bracketed_type] = STATE(3474), + [sym_lifetime] = STATE(3727), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1591), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2022), + [sym_generic_type_with_turbofish] = STATE(3764), + [sym_bounded_type] = STATE(2069), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3334), + [sym_scoped_type_identifier] = STATE(1990), [sym_line_comment] = STATE(1022), [sym_block_comment] = STATE(1022), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(3182), - [anon_sym_LPAREN] = ACTIONS(3184), - [anon_sym_LBRACK] = ACTIONS(3186), - [anon_sym_STAR] = ACTIONS(3190), - [anon_sym_QMARK] = ACTIONS(3192), - [anon_sym_u8] = ACTIONS(3194), - [anon_sym_i8] = ACTIONS(3194), - [anon_sym_u16] = ACTIONS(3194), - [anon_sym_i16] = ACTIONS(3194), - [anon_sym_u32] = ACTIONS(3194), - [anon_sym_i32] = ACTIONS(3194), - [anon_sym_u64] = ACTIONS(3194), - [anon_sym_i64] = ACTIONS(3194), - [anon_sym_u128] = ACTIONS(3194), - [anon_sym_i128] = ACTIONS(3194), - [anon_sym_isize] = ACTIONS(3194), - [anon_sym_usize] = ACTIONS(3194), - [anon_sym_f32] = ACTIONS(3194), - [anon_sym_f64] = ACTIONS(3194), - [anon_sym_bool] = ACTIONS(3194), - [anon_sym_str] = ACTIONS(3194), - [anon_sym_char] = ACTIONS(3194), - [anon_sym_BANG] = ACTIONS(3196), - [anon_sym_AMP] = ACTIONS(3198), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3200), - [anon_sym_SQUOTE] = ACTIONS(3058), - [anon_sym_async] = ACTIONS(1265), - [anon_sym_const] = ACTIONS(1265), - [anon_sym_default] = ACTIONS(3202), - [anon_sym_fn] = ACTIONS(3204), - [anon_sym_for] = ACTIONS(1273), - [anon_sym_gen] = ACTIONS(3206), - [anon_sym_impl] = ACTIONS(3208), - [anon_sym_union] = ACTIONS(3206), - [anon_sym_unsafe] = ACTIONS(1265), - [anon_sym_extern] = ACTIONS(1279), - [anon_sym_dyn] = ACTIONS(3210), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3214), - [sym_super] = ACTIONS(3214), - [sym_crate] = ACTIONS(3214), - [sym_metavariable] = ACTIONS(3216), + [aux_sym_function_modifiers_repeat1] = STATE(2244), + [sym_identifier] = ACTIONS(3064), + [anon_sym_LPAREN] = ACTIONS(1602), + [anon_sym_LBRACK] = ACTIONS(1604), + [anon_sym_STAR] = ACTIONS(1240), + [anon_sym_QMARK] = ACTIONS(1242), + [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_BANG] = ACTIONS(1248), + [anon_sym_AMP] = ACTIONS(1610), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1614), + [anon_sym_SQUOTE] = ACTIONS(3072), + [anon_sym_async] = ACTIONS(1270), + [anon_sym_const] = ACTIONS(1270), + [anon_sym_default] = ACTIONS(1618), + [anon_sym_fn] = ACTIONS(1276), + [anon_sym_for] = ACTIONS(1278), + [anon_sym_gen] = ACTIONS(1620), + [anon_sym_impl] = ACTIONS(1282), + [anon_sym_union] = ACTIONS(1620), + [anon_sym_unsafe] = ACTIONS(1270), + [anon_sym_extern] = ACTIONS(1284), + [anon_sym_safe] = ACTIONS(1270), + [anon_sym_dyn] = ACTIONS(1288), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1624), + [sym_super] = ACTIONS(1624), + [sym_crate] = ACTIONS(1624), + [sym_metavariable] = ACTIONS(1626), }, [STATE(1023)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(3381), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_function_modifiers] = STATE(3591), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2373), + [sym__type] = STATE(2424), + [sym_bracketed_type] = STATE(3474), + [sym_lifetime] = STATE(3727), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1591), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2022), + [sym_generic_type_with_turbofish] = STATE(3764), + [sym_bounded_type] = STATE(2069), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3334), + [sym_scoped_type_identifier] = STATE(1990), [sym_line_comment] = STATE(1023), [sym_block_comment] = STATE(1023), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(3052), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1235), - [anon_sym_QMARK] = ACTIONS(1237), - [anon_sym_u8] = ACTIONS(1603), - [anon_sym_i8] = ACTIONS(1603), - [anon_sym_u16] = ACTIONS(1603), - [anon_sym_i16] = ACTIONS(1603), - [anon_sym_u32] = ACTIONS(1603), - [anon_sym_i32] = ACTIONS(1603), - [anon_sym_u64] = ACTIONS(1603), - [anon_sym_i64] = ACTIONS(1603), - [anon_sym_u128] = ACTIONS(1603), - [anon_sym_i128] = ACTIONS(1603), - [anon_sym_isize] = ACTIONS(1603), - [anon_sym_usize] = ACTIONS(1603), - [anon_sym_f32] = ACTIONS(1603), - [anon_sym_f64] = ACTIONS(1603), - [anon_sym_bool] = ACTIONS(1603), - [anon_sym_str] = ACTIONS(1603), - [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1243), - [anon_sym_AMP] = ACTIONS(1605), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3058), - [anon_sym_async] = ACTIONS(1265), - [anon_sym_const] = ACTIONS(1265), - [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1271), - [anon_sym_for] = ACTIONS(1273), - [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1277), - [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1265), - [anon_sym_extern] = ACTIONS(1279), - [anon_sym_dyn] = ACTIONS(1283), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1619), - [sym_super] = ACTIONS(1619), - [sym_crate] = ACTIONS(1619), - [sym_metavariable] = ACTIONS(1621), + [aux_sym_function_modifiers_repeat1] = STATE(2244), + [sym_identifier] = ACTIONS(3064), + [anon_sym_LPAREN] = ACTIONS(1602), + [anon_sym_LBRACK] = ACTIONS(1604), + [anon_sym_STAR] = ACTIONS(1240), + [anon_sym_QMARK] = ACTIONS(1242), + [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_BANG] = ACTIONS(1248), + [anon_sym_AMP] = ACTIONS(1610), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1614), + [anon_sym_SQUOTE] = ACTIONS(3072), + [anon_sym_async] = ACTIONS(1270), + [anon_sym_const] = ACTIONS(1270), + [anon_sym_default] = ACTIONS(1618), + [anon_sym_fn] = ACTIONS(1276), + [anon_sym_for] = ACTIONS(1278), + [anon_sym_gen] = ACTIONS(1620), + [anon_sym_impl] = ACTIONS(1282), + [anon_sym_union] = ACTIONS(1620), + [anon_sym_unsafe] = ACTIONS(1270), + [anon_sym_extern] = ACTIONS(1284), + [anon_sym_safe] = ACTIONS(1270), + [anon_sym_dyn] = ACTIONS(1288), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1624), + [sym_super] = ACTIONS(1624), + [sym_crate] = ACTIONS(1624), + [sym_metavariable] = ACTIONS(1626), }, [STATE(1024)] = { - [sym_function_modifiers] = STATE(3455), - [sym_removed_trait_bound] = STATE(1526), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(1490), - [sym_bracketed_type] = STATE(3638), - [sym_lifetime] = STATE(3517), - [sym_array_type] = STATE(1526), - [sym_for_lifetimes] = STATE(1623), - [sym_function_type] = STATE(1526), - [sym_tuple_type] = STATE(1526), - [sym_unit_type] = STATE(1526), - [sym_generic_type] = STATE(1102), - [sym_generic_type_with_turbofish] = STATE(3627), - [sym_bounded_type] = STATE(1526), - [sym_reference_type] = STATE(1526), - [sym_pointer_type] = STATE(1526), - [sym_never_type] = STATE(1526), - [sym_abstract_type] = STATE(1526), - [sym_dynamic_type] = STATE(1526), - [sym_macro_invocation] = STATE(1526), - [sym_scoped_identifier] = STATE(3304), - [sym_scoped_type_identifier] = STATE(1058), + [sym_function_modifiers] = STATE(3591), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2373), + [sym__type] = STATE(2977), + [sym_bracketed_type] = STATE(3474), + [sym_lifetime] = STATE(3727), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1591), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2022), + [sym_generic_type_with_turbofish] = STATE(3764), + [sym_bounded_type] = STATE(2069), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3334), + [sym_scoped_type_identifier] = STATE(1990), [sym_line_comment] = STATE(1024), [sym_block_comment] = STATE(1024), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(3182), - [anon_sym_LPAREN] = ACTIONS(3184), - [anon_sym_LBRACK] = ACTIONS(3186), - [anon_sym_STAR] = ACTIONS(3190), - [anon_sym_QMARK] = ACTIONS(3192), - [anon_sym_u8] = ACTIONS(3194), - [anon_sym_i8] = ACTIONS(3194), - [anon_sym_u16] = ACTIONS(3194), - [anon_sym_i16] = ACTIONS(3194), - [anon_sym_u32] = ACTIONS(3194), - [anon_sym_i32] = ACTIONS(3194), - [anon_sym_u64] = ACTIONS(3194), - [anon_sym_i64] = ACTIONS(3194), - [anon_sym_u128] = ACTIONS(3194), - [anon_sym_i128] = ACTIONS(3194), - [anon_sym_isize] = ACTIONS(3194), - [anon_sym_usize] = ACTIONS(3194), - [anon_sym_f32] = ACTIONS(3194), - [anon_sym_f64] = ACTIONS(3194), - [anon_sym_bool] = ACTIONS(3194), - [anon_sym_str] = ACTIONS(3194), - [anon_sym_char] = ACTIONS(3194), - [anon_sym_BANG] = ACTIONS(3196), - [anon_sym_AMP] = ACTIONS(3198), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3200), - [anon_sym_SQUOTE] = ACTIONS(3058), - [anon_sym_async] = ACTIONS(1265), - [anon_sym_const] = ACTIONS(1265), - [anon_sym_default] = ACTIONS(3202), - [anon_sym_fn] = ACTIONS(3204), - [anon_sym_for] = ACTIONS(1273), - [anon_sym_gen] = ACTIONS(3206), - [anon_sym_impl] = ACTIONS(3208), - [anon_sym_union] = ACTIONS(3206), - [anon_sym_unsafe] = ACTIONS(1265), - [anon_sym_extern] = ACTIONS(1279), - [anon_sym_dyn] = ACTIONS(3210), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3214), - [sym_super] = ACTIONS(3214), - [sym_crate] = ACTIONS(3214), - [sym_metavariable] = ACTIONS(3216), + [aux_sym_function_modifiers_repeat1] = STATE(2244), + [sym_identifier] = ACTIONS(3064), + [anon_sym_LPAREN] = ACTIONS(1602), + [anon_sym_LBRACK] = ACTIONS(1604), + [anon_sym_STAR] = ACTIONS(1240), + [anon_sym_QMARK] = ACTIONS(1242), + [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_BANG] = ACTIONS(1248), + [anon_sym_AMP] = ACTIONS(1610), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1614), + [anon_sym_SQUOTE] = ACTIONS(3072), + [anon_sym_async] = ACTIONS(1270), + [anon_sym_const] = ACTIONS(1270), + [anon_sym_default] = ACTIONS(1618), + [anon_sym_fn] = ACTIONS(1276), + [anon_sym_for] = ACTIONS(1278), + [anon_sym_gen] = ACTIONS(1620), + [anon_sym_impl] = ACTIONS(1282), + [anon_sym_union] = ACTIONS(1620), + [anon_sym_unsafe] = ACTIONS(1270), + [anon_sym_extern] = ACTIONS(1284), + [anon_sym_safe] = ACTIONS(1270), + [anon_sym_dyn] = ACTIONS(1288), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1624), + [sym_super] = ACTIONS(1624), + [sym_crate] = ACTIONS(1624), + [sym_metavariable] = ACTIONS(1626), }, [STATE(1025)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2856), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_function_modifiers] = STATE(3591), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2373), + [sym__type] = STATE(2273), + [sym_bracketed_type] = STATE(3474), + [sym_lifetime] = STATE(3727), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1591), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2022), + [sym_generic_type_with_turbofish] = STATE(3764), + [sym_bounded_type] = STATE(2069), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3334), + [sym_scoped_type_identifier] = STATE(1990), [sym_line_comment] = STATE(1025), [sym_block_comment] = STATE(1025), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(3052), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1235), - [anon_sym_QMARK] = ACTIONS(1237), - [anon_sym_u8] = ACTIONS(1603), - [anon_sym_i8] = ACTIONS(1603), - [anon_sym_u16] = ACTIONS(1603), - [anon_sym_i16] = ACTIONS(1603), - [anon_sym_u32] = ACTIONS(1603), - [anon_sym_i32] = ACTIONS(1603), - [anon_sym_u64] = ACTIONS(1603), - [anon_sym_i64] = ACTIONS(1603), - [anon_sym_u128] = ACTIONS(1603), - [anon_sym_i128] = ACTIONS(1603), - [anon_sym_isize] = ACTIONS(1603), - [anon_sym_usize] = ACTIONS(1603), - [anon_sym_f32] = ACTIONS(1603), - [anon_sym_f64] = ACTIONS(1603), - [anon_sym_bool] = ACTIONS(1603), - [anon_sym_str] = ACTIONS(1603), - [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1243), - [anon_sym_AMP] = ACTIONS(1605), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3058), - [anon_sym_async] = ACTIONS(1265), - [anon_sym_const] = ACTIONS(1265), - [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1271), - [anon_sym_for] = ACTIONS(1273), - [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1277), - [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1265), - [anon_sym_extern] = ACTIONS(1279), - [anon_sym_dyn] = ACTIONS(1283), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1619), - [sym_super] = ACTIONS(1619), - [sym_crate] = ACTIONS(1619), - [sym_metavariable] = ACTIONS(1621), + [aux_sym_function_modifiers_repeat1] = STATE(2244), + [sym_identifier] = ACTIONS(3064), + [anon_sym_LPAREN] = ACTIONS(1602), + [anon_sym_LBRACK] = ACTIONS(1604), + [anon_sym_STAR] = ACTIONS(1240), + [anon_sym_QMARK] = ACTIONS(1242), + [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_BANG] = ACTIONS(1248), + [anon_sym_AMP] = ACTIONS(1610), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1614), + [anon_sym_SQUOTE] = ACTIONS(3072), + [anon_sym_async] = ACTIONS(1270), + [anon_sym_const] = ACTIONS(1270), + [anon_sym_default] = ACTIONS(1618), + [anon_sym_fn] = ACTIONS(1276), + [anon_sym_for] = ACTIONS(1278), + [anon_sym_gen] = ACTIONS(1620), + [anon_sym_impl] = ACTIONS(1282), + [anon_sym_union] = ACTIONS(1620), + [anon_sym_unsafe] = ACTIONS(1270), + [anon_sym_extern] = ACTIONS(1284), + [anon_sym_safe] = ACTIONS(1270), + [anon_sym_dyn] = ACTIONS(1288), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1624), + [sym_super] = ACTIONS(1624), + [sym_crate] = ACTIONS(1624), + [sym_metavariable] = ACTIONS(1626), }, [STATE(1026)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2037), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_function_modifiers] = STATE(3591), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2373), + [sym__type] = STATE(2736), + [sym_bracketed_type] = STATE(3474), + [sym_lifetime] = STATE(3727), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1591), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2022), + [sym_generic_type_with_turbofish] = STATE(3764), + [sym_bounded_type] = STATE(2069), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3334), + [sym_scoped_type_identifier] = STATE(1990), [sym_line_comment] = STATE(1026), [sym_block_comment] = STATE(1026), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(3052), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1235), - [anon_sym_QMARK] = ACTIONS(1237), - [anon_sym_u8] = ACTIONS(1603), - [anon_sym_i8] = ACTIONS(1603), - [anon_sym_u16] = ACTIONS(1603), - [anon_sym_i16] = ACTIONS(1603), - [anon_sym_u32] = ACTIONS(1603), - [anon_sym_i32] = ACTIONS(1603), - [anon_sym_u64] = ACTIONS(1603), - [anon_sym_i64] = ACTIONS(1603), - [anon_sym_u128] = ACTIONS(1603), - [anon_sym_i128] = ACTIONS(1603), - [anon_sym_isize] = ACTIONS(1603), - [anon_sym_usize] = ACTIONS(1603), - [anon_sym_f32] = ACTIONS(1603), - [anon_sym_f64] = ACTIONS(1603), - [anon_sym_bool] = ACTIONS(1603), - [anon_sym_str] = ACTIONS(1603), - [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1243), - [anon_sym_AMP] = ACTIONS(1605), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3058), - [anon_sym_async] = ACTIONS(1265), - [anon_sym_const] = ACTIONS(1265), - [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1271), - [anon_sym_for] = ACTIONS(1273), - [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1277), - [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1265), - [anon_sym_extern] = ACTIONS(1279), - [anon_sym_dyn] = ACTIONS(1283), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1619), - [sym_super] = ACTIONS(1619), - [sym_crate] = ACTIONS(1619), - [sym_metavariable] = ACTIONS(1621), + [aux_sym_function_modifiers_repeat1] = STATE(2244), + [sym_identifier] = ACTIONS(3064), + [anon_sym_LPAREN] = ACTIONS(1602), + [anon_sym_LBRACK] = ACTIONS(1604), + [anon_sym_STAR] = ACTIONS(1240), + [anon_sym_QMARK] = ACTIONS(1242), + [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_BANG] = ACTIONS(1248), + [anon_sym_AMP] = ACTIONS(1610), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1614), + [anon_sym_SQUOTE] = ACTIONS(3072), + [anon_sym_async] = ACTIONS(1270), + [anon_sym_const] = ACTIONS(1270), + [anon_sym_default] = ACTIONS(1618), + [anon_sym_fn] = ACTIONS(1276), + [anon_sym_for] = ACTIONS(1278), + [anon_sym_gen] = ACTIONS(1620), + [anon_sym_impl] = ACTIONS(1282), + [anon_sym_union] = ACTIONS(1620), + [anon_sym_unsafe] = ACTIONS(1270), + [anon_sym_extern] = ACTIONS(1284), + [anon_sym_safe] = ACTIONS(1270), + [anon_sym_dyn] = ACTIONS(1288), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1624), + [sym_super] = ACTIONS(1624), + [sym_crate] = ACTIONS(1624), + [sym_metavariable] = ACTIONS(1626), }, [STATE(1027)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2028), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_function_modifiers] = STATE(3591), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2373), + [sym__type] = STATE(2274), + [sym_bracketed_type] = STATE(3474), + [sym_lifetime] = STATE(3727), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1591), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2022), + [sym_generic_type_with_turbofish] = STATE(3764), + [sym_bounded_type] = STATE(2069), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3334), + [sym_scoped_type_identifier] = STATE(1990), [sym_line_comment] = STATE(1027), [sym_block_comment] = STATE(1027), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(3052), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1235), - [anon_sym_QMARK] = ACTIONS(1237), - [anon_sym_u8] = ACTIONS(1603), - [anon_sym_i8] = ACTIONS(1603), - [anon_sym_u16] = ACTIONS(1603), - [anon_sym_i16] = ACTIONS(1603), - [anon_sym_u32] = ACTIONS(1603), - [anon_sym_i32] = ACTIONS(1603), - [anon_sym_u64] = ACTIONS(1603), - [anon_sym_i64] = ACTIONS(1603), - [anon_sym_u128] = ACTIONS(1603), - [anon_sym_i128] = ACTIONS(1603), - [anon_sym_isize] = ACTIONS(1603), - [anon_sym_usize] = ACTIONS(1603), - [anon_sym_f32] = ACTIONS(1603), - [anon_sym_f64] = ACTIONS(1603), - [anon_sym_bool] = ACTIONS(1603), - [anon_sym_str] = ACTIONS(1603), - [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1243), - [anon_sym_AMP] = ACTIONS(1605), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3058), - [anon_sym_async] = ACTIONS(1265), - [anon_sym_const] = ACTIONS(1265), - [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1271), - [anon_sym_for] = ACTIONS(1273), - [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1277), - [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1265), - [anon_sym_extern] = ACTIONS(1279), - [anon_sym_dyn] = ACTIONS(1283), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1619), - [sym_super] = ACTIONS(1619), - [sym_crate] = ACTIONS(1619), - [sym_metavariable] = ACTIONS(1621), + [aux_sym_function_modifiers_repeat1] = STATE(2244), + [sym_identifier] = ACTIONS(3064), + [anon_sym_LPAREN] = ACTIONS(1602), + [anon_sym_LBRACK] = ACTIONS(1604), + [anon_sym_STAR] = ACTIONS(1240), + [anon_sym_QMARK] = ACTIONS(1242), + [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_BANG] = ACTIONS(1248), + [anon_sym_AMP] = ACTIONS(1610), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1614), + [anon_sym_SQUOTE] = ACTIONS(3072), + [anon_sym_async] = ACTIONS(1270), + [anon_sym_const] = ACTIONS(1270), + [anon_sym_default] = ACTIONS(1618), + [anon_sym_fn] = ACTIONS(1276), + [anon_sym_for] = ACTIONS(1278), + [anon_sym_gen] = ACTIONS(1620), + [anon_sym_impl] = ACTIONS(1282), + [anon_sym_union] = ACTIONS(1620), + [anon_sym_unsafe] = ACTIONS(1270), + [anon_sym_extern] = ACTIONS(1284), + [anon_sym_safe] = ACTIONS(1270), + [anon_sym_dyn] = ACTIONS(1288), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1624), + [sym_super] = ACTIONS(1624), + [sym_crate] = ACTIONS(1624), + [sym_metavariable] = ACTIONS(1626), }, [STATE(1028)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(3111), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_function_modifiers] = STATE(3591), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2373), + [sym__type] = STATE(2985), + [sym_bracketed_type] = STATE(3474), + [sym_lifetime] = STATE(3727), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1591), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2022), + [sym_generic_type_with_turbofish] = STATE(3764), + [sym_bounded_type] = STATE(2069), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3334), + [sym_scoped_type_identifier] = STATE(1990), [sym_line_comment] = STATE(1028), [sym_block_comment] = STATE(1028), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(3052), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1235), - [anon_sym_QMARK] = ACTIONS(1237), - [anon_sym_u8] = ACTIONS(1603), - [anon_sym_i8] = ACTIONS(1603), - [anon_sym_u16] = ACTIONS(1603), - [anon_sym_i16] = ACTIONS(1603), - [anon_sym_u32] = ACTIONS(1603), - [anon_sym_i32] = ACTIONS(1603), - [anon_sym_u64] = ACTIONS(1603), - [anon_sym_i64] = ACTIONS(1603), - [anon_sym_u128] = ACTIONS(1603), - [anon_sym_i128] = ACTIONS(1603), - [anon_sym_isize] = ACTIONS(1603), - [anon_sym_usize] = ACTIONS(1603), - [anon_sym_f32] = ACTIONS(1603), - [anon_sym_f64] = ACTIONS(1603), - [anon_sym_bool] = ACTIONS(1603), - [anon_sym_str] = ACTIONS(1603), - [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1243), - [anon_sym_AMP] = ACTIONS(1605), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3058), - [anon_sym_async] = ACTIONS(1265), - [anon_sym_const] = ACTIONS(1265), - [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1271), - [anon_sym_for] = ACTIONS(1273), - [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1277), - [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1265), - [anon_sym_extern] = ACTIONS(1279), - [anon_sym_dyn] = ACTIONS(1283), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1619), - [sym_super] = ACTIONS(1619), - [sym_crate] = ACTIONS(1619), - [sym_metavariable] = ACTIONS(1621), + [aux_sym_function_modifiers_repeat1] = STATE(2244), + [sym_identifier] = ACTIONS(3064), + [anon_sym_LPAREN] = ACTIONS(1602), + [anon_sym_LBRACK] = ACTIONS(1604), + [anon_sym_STAR] = ACTIONS(1240), + [anon_sym_QMARK] = ACTIONS(1242), + [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_BANG] = ACTIONS(1248), + [anon_sym_AMP] = ACTIONS(1610), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1614), + [anon_sym_SQUOTE] = ACTIONS(3072), + [anon_sym_async] = ACTIONS(1270), + [anon_sym_const] = ACTIONS(1270), + [anon_sym_default] = ACTIONS(1618), + [anon_sym_fn] = ACTIONS(1276), + [anon_sym_for] = ACTIONS(1278), + [anon_sym_gen] = ACTIONS(1620), + [anon_sym_impl] = ACTIONS(1282), + [anon_sym_union] = ACTIONS(1620), + [anon_sym_unsafe] = ACTIONS(1270), + [anon_sym_extern] = ACTIONS(1284), + [anon_sym_safe] = ACTIONS(1270), + [anon_sym_dyn] = ACTIONS(1288), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1624), + [sym_super] = ACTIONS(1624), + [sym_crate] = ACTIONS(1624), + [sym_metavariable] = ACTIONS(1626), }, [STATE(1029)] = { - [sym_attribute_item] = STATE(1031), + [sym_function_modifiers] = STATE(3591), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2373), + [sym__type] = STATE(2275), + [sym_bracketed_type] = STATE(3474), + [sym_lifetime] = STATE(3727), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1591), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2022), + [sym_generic_type_with_turbofish] = STATE(3764), + [sym_bounded_type] = STATE(2069), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3334), + [sym_scoped_type_identifier] = STATE(1990), [sym_line_comment] = STATE(1029), [sym_block_comment] = STATE(1029), - [aux_sym_enum_variant_list_repeat1] = STATE(1029), - [sym_identifier] = ACTIONS(3288), - [anon_sym_LPAREN] = ACTIONS(759), - [anon_sym_LBRACK] = ACTIONS(759), - [anon_sym_RBRACK] = ACTIONS(759), - [anon_sym_LBRACE] = ACTIONS(759), - [anon_sym_STAR] = ACTIONS(759), - [anon_sym_u8] = ACTIONS(3288), - [anon_sym_i8] = ACTIONS(3288), - [anon_sym_u16] = ACTIONS(3288), - [anon_sym_i16] = ACTIONS(3288), - [anon_sym_u32] = ACTIONS(3288), - [anon_sym_i32] = ACTIONS(3288), - [anon_sym_u64] = ACTIONS(3288), - [anon_sym_i64] = ACTIONS(3288), - [anon_sym_u128] = ACTIONS(3288), - [anon_sym_i128] = ACTIONS(3288), - [anon_sym_isize] = ACTIONS(3288), - [anon_sym_usize] = ACTIONS(3288), - [anon_sym_f32] = ACTIONS(3288), - [anon_sym_f64] = ACTIONS(3288), - [anon_sym_bool] = ACTIONS(3288), - [anon_sym_str] = ACTIONS(3288), - [anon_sym_char] = ACTIONS(3288), - [anon_sym_DASH] = ACTIONS(759), - [anon_sym_BANG] = ACTIONS(759), - [anon_sym_AMP] = ACTIONS(759), - [anon_sym_PIPE] = ACTIONS(759), - [anon_sym_LT] = ACTIONS(759), - [anon_sym_DOT_DOT] = ACTIONS(759), - [anon_sym_COMMA] = ACTIONS(759), - [anon_sym_COLON_COLON] = ACTIONS(759), - [anon_sym_POUND] = ACTIONS(785), - [anon_sym_SQUOTE] = ACTIONS(3288), - [anon_sym_async] = ACTIONS(3288), - [anon_sym_break] = ACTIONS(3288), - [anon_sym_const] = ACTIONS(3288), - [anon_sym_continue] = ACTIONS(3288), - [anon_sym_default] = ACTIONS(3288), - [anon_sym_for] = ACTIONS(3288), - [anon_sym_gen] = ACTIONS(3288), - [anon_sym_if] = ACTIONS(3288), - [anon_sym_loop] = ACTIONS(3288), - [anon_sym_match] = ACTIONS(3288), - [anon_sym_return] = ACTIONS(3288), - [anon_sym_static] = ACTIONS(3288), - [anon_sym_union] = ACTIONS(3288), - [anon_sym_unsafe] = ACTIONS(3288), - [anon_sym_while] = ACTIONS(3288), - [anon_sym_yield] = ACTIONS(3288), - [anon_sym_move] = ACTIONS(3288), - [anon_sym_try] = ACTIONS(3288), - [sym_integer_literal] = ACTIONS(759), - [aux_sym_string_literal_token1] = ACTIONS(759), - [sym_char_literal] = ACTIONS(759), - [anon_sym_true] = ACTIONS(3288), - [anon_sym_false] = ACTIONS(3288), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3288), - [sym_super] = ACTIONS(3288), - [sym_crate] = ACTIONS(3288), - [sym_metavariable] = ACTIONS(759), - [sym__raw_string_literal_start] = ACTIONS(759), - [sym_float_literal] = ACTIONS(759), + [aux_sym_function_modifiers_repeat1] = STATE(2244), + [sym_identifier] = ACTIONS(3064), + [anon_sym_LPAREN] = ACTIONS(1602), + [anon_sym_LBRACK] = ACTIONS(1604), + [anon_sym_STAR] = ACTIONS(1240), + [anon_sym_QMARK] = ACTIONS(1242), + [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_BANG] = ACTIONS(1248), + [anon_sym_AMP] = ACTIONS(1610), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1614), + [anon_sym_SQUOTE] = ACTIONS(3072), + [anon_sym_async] = ACTIONS(1270), + [anon_sym_const] = ACTIONS(1270), + [anon_sym_default] = ACTIONS(1618), + [anon_sym_fn] = ACTIONS(1276), + [anon_sym_for] = ACTIONS(1278), + [anon_sym_gen] = ACTIONS(1620), + [anon_sym_impl] = ACTIONS(1282), + [anon_sym_union] = ACTIONS(1620), + [anon_sym_unsafe] = ACTIONS(1270), + [anon_sym_extern] = ACTIONS(1284), + [anon_sym_safe] = ACTIONS(1270), + [anon_sym_dyn] = ACTIONS(1288), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1624), + [sym_super] = ACTIONS(1624), + [sym_crate] = ACTIONS(1624), + [sym_metavariable] = ACTIONS(1626), }, [STATE(1030)] = { + [sym_function_modifiers] = STATE(3591), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2373), + [sym__type] = STATE(3005), + [sym_bracketed_type] = STATE(3474), + [sym_lifetime] = STATE(3727), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1591), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2022), + [sym_generic_type_with_turbofish] = STATE(3764), + [sym_bounded_type] = STATE(2069), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3334), + [sym_scoped_type_identifier] = STATE(1990), [sym_line_comment] = STATE(1030), [sym_block_comment] = STATE(1030), - [sym_identifier] = ACTIONS(2784), - [anon_sym_LPAREN] = ACTIONS(2782), - [anon_sym_LBRACK] = ACTIONS(2782), - [anon_sym_RBRACK] = ACTIONS(2782), - [anon_sym_LBRACE] = ACTIONS(2782), - [anon_sym_STAR] = ACTIONS(2782), - [anon_sym_u8] = ACTIONS(2784), - [anon_sym_i8] = ACTIONS(2784), - [anon_sym_u16] = ACTIONS(2784), - [anon_sym_i16] = ACTIONS(2784), - [anon_sym_u32] = ACTIONS(2784), - [anon_sym_i32] = ACTIONS(2784), - [anon_sym_u64] = ACTIONS(2784), - [anon_sym_i64] = ACTIONS(2784), - [anon_sym_u128] = ACTIONS(2784), - [anon_sym_i128] = ACTIONS(2784), - [anon_sym_isize] = ACTIONS(2784), - [anon_sym_usize] = ACTIONS(2784), - [anon_sym_f32] = ACTIONS(2784), - [anon_sym_f64] = ACTIONS(2784), - [anon_sym_bool] = ACTIONS(2784), - [anon_sym_str] = ACTIONS(2784), - [anon_sym_char] = ACTIONS(2784), - [anon_sym_DASH] = ACTIONS(2782), - [anon_sym_BANG] = ACTIONS(2782), - [anon_sym_AMP] = ACTIONS(2782), - [anon_sym_PIPE] = ACTIONS(2782), - [anon_sym_LT] = ACTIONS(2782), - [anon_sym_DOT_DOT] = ACTIONS(2782), - [anon_sym_COMMA] = ACTIONS(2782), - [anon_sym_COLON_COLON] = ACTIONS(2782), - [anon_sym_POUND] = ACTIONS(2782), - [anon_sym_SQUOTE] = ACTIONS(2784), - [anon_sym_async] = ACTIONS(2784), - [anon_sym_break] = ACTIONS(2784), - [anon_sym_const] = ACTIONS(2784), - [anon_sym_continue] = ACTIONS(2784), - [anon_sym_default] = ACTIONS(2784), - [anon_sym_for] = ACTIONS(2784), - [anon_sym_gen] = ACTIONS(2784), - [anon_sym_if] = ACTIONS(2784), - [anon_sym_loop] = ACTIONS(2784), - [anon_sym_match] = ACTIONS(2784), - [anon_sym_return] = ACTIONS(2784), - [anon_sym_static] = ACTIONS(2784), - [anon_sym_union] = ACTIONS(2784), - [anon_sym_unsafe] = ACTIONS(2784), - [anon_sym_while] = ACTIONS(2784), - [anon_sym_yield] = ACTIONS(2784), - [anon_sym_move] = ACTIONS(2784), - [anon_sym_try] = ACTIONS(2784), - [sym_integer_literal] = ACTIONS(2782), - [aux_sym_string_literal_token1] = ACTIONS(2782), - [sym_char_literal] = ACTIONS(2782), - [anon_sym_true] = ACTIONS(2784), - [anon_sym_false] = ACTIONS(2784), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2784), - [sym_super] = ACTIONS(2784), - [sym_crate] = ACTIONS(2784), - [sym_metavariable] = ACTIONS(2782), - [sym__raw_string_literal_start] = ACTIONS(2782), - [sym_float_literal] = ACTIONS(2782), + [aux_sym_function_modifiers_repeat1] = STATE(2244), + [sym_identifier] = ACTIONS(3064), + [anon_sym_LPAREN] = ACTIONS(1602), + [anon_sym_LBRACK] = ACTIONS(1604), + [anon_sym_STAR] = ACTIONS(1240), + [anon_sym_QMARK] = ACTIONS(1242), + [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_BANG] = ACTIONS(1248), + [anon_sym_AMP] = ACTIONS(1610), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1614), + [anon_sym_SQUOTE] = ACTIONS(3072), + [anon_sym_async] = ACTIONS(1270), + [anon_sym_const] = ACTIONS(1270), + [anon_sym_default] = ACTIONS(1618), + [anon_sym_fn] = ACTIONS(1276), + [anon_sym_for] = ACTIONS(1278), + [anon_sym_gen] = ACTIONS(1620), + [anon_sym_impl] = ACTIONS(1282), + [anon_sym_union] = ACTIONS(1620), + [anon_sym_unsafe] = ACTIONS(1270), + [anon_sym_extern] = ACTIONS(1284), + [anon_sym_safe] = ACTIONS(1270), + [anon_sym_dyn] = ACTIONS(1288), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1624), + [sym_super] = ACTIONS(1624), + [sym_crate] = ACTIONS(1624), + [sym_metavariable] = ACTIONS(1626), }, [STATE(1031)] = { + [sym_function_modifiers] = STATE(3591), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2373), + [sym__type] = STATE(2966), + [sym_bracketed_type] = STATE(3474), + [sym_lifetime] = STATE(3727), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1591), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2022), + [sym_generic_type_with_turbofish] = STATE(3764), + [sym_bounded_type] = STATE(2069), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3334), + [sym_scoped_type_identifier] = STATE(1990), [sym_line_comment] = STATE(1031), [sym_block_comment] = STATE(1031), - [sym_identifier] = ACTIONS(3290), - [anon_sym_LPAREN] = ACTIONS(3292), - [anon_sym_LBRACK] = ACTIONS(3292), - [anon_sym_RBRACK] = ACTIONS(3292), - [anon_sym_LBRACE] = ACTIONS(3292), - [anon_sym_STAR] = ACTIONS(3292), - [anon_sym_u8] = ACTIONS(3290), - [anon_sym_i8] = ACTIONS(3290), - [anon_sym_u16] = ACTIONS(3290), - [anon_sym_i16] = ACTIONS(3290), - [anon_sym_u32] = ACTIONS(3290), - [anon_sym_i32] = ACTIONS(3290), - [anon_sym_u64] = ACTIONS(3290), - [anon_sym_i64] = ACTIONS(3290), - [anon_sym_u128] = ACTIONS(3290), - [anon_sym_i128] = ACTIONS(3290), - [anon_sym_isize] = ACTIONS(3290), - [anon_sym_usize] = ACTIONS(3290), - [anon_sym_f32] = ACTIONS(3290), - [anon_sym_f64] = ACTIONS(3290), - [anon_sym_bool] = ACTIONS(3290), - [anon_sym_str] = ACTIONS(3290), - [anon_sym_char] = ACTIONS(3290), - [anon_sym_DASH] = ACTIONS(3292), - [anon_sym_BANG] = ACTIONS(3292), - [anon_sym_AMP] = ACTIONS(3292), - [anon_sym_PIPE] = ACTIONS(3292), - [anon_sym_LT] = ACTIONS(3292), - [anon_sym_DOT_DOT] = ACTIONS(3292), - [anon_sym_COMMA] = ACTIONS(3292), - [anon_sym_COLON_COLON] = ACTIONS(3292), - [anon_sym_POUND] = ACTIONS(3292), - [anon_sym_SQUOTE] = ACTIONS(3290), - [anon_sym_async] = ACTIONS(3290), - [anon_sym_break] = ACTIONS(3290), - [anon_sym_const] = ACTIONS(3290), - [anon_sym_continue] = ACTIONS(3290), - [anon_sym_default] = ACTIONS(3290), - [anon_sym_for] = ACTIONS(3290), - [anon_sym_gen] = ACTIONS(3290), - [anon_sym_if] = ACTIONS(3290), - [anon_sym_loop] = ACTIONS(3290), - [anon_sym_match] = ACTIONS(3290), - [anon_sym_return] = ACTIONS(3290), - [anon_sym_static] = ACTIONS(3290), - [anon_sym_union] = ACTIONS(3290), - [anon_sym_unsafe] = ACTIONS(3290), - [anon_sym_while] = ACTIONS(3290), - [anon_sym_yield] = ACTIONS(3290), - [anon_sym_move] = ACTIONS(3290), - [anon_sym_try] = ACTIONS(3290), - [sym_integer_literal] = ACTIONS(3292), - [aux_sym_string_literal_token1] = ACTIONS(3292), - [sym_char_literal] = ACTIONS(3292), - [anon_sym_true] = ACTIONS(3290), - [anon_sym_false] = ACTIONS(3290), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3290), - [sym_super] = ACTIONS(3290), - [sym_crate] = ACTIONS(3290), - [sym_metavariable] = ACTIONS(3292), - [sym__raw_string_literal_start] = ACTIONS(3292), - [sym_float_literal] = ACTIONS(3292), + [aux_sym_function_modifiers_repeat1] = STATE(2244), + [sym_identifier] = ACTIONS(3064), + [anon_sym_LPAREN] = ACTIONS(1602), + [anon_sym_LBRACK] = ACTIONS(1604), + [anon_sym_STAR] = ACTIONS(1240), + [anon_sym_QMARK] = ACTIONS(1242), + [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_BANG] = ACTIONS(1248), + [anon_sym_AMP] = ACTIONS(1610), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1614), + [anon_sym_SQUOTE] = ACTIONS(3072), + [anon_sym_async] = ACTIONS(1270), + [anon_sym_const] = ACTIONS(1270), + [anon_sym_default] = ACTIONS(1618), + [anon_sym_fn] = ACTIONS(1276), + [anon_sym_for] = ACTIONS(1278), + [anon_sym_gen] = ACTIONS(1620), + [anon_sym_impl] = ACTIONS(1282), + [anon_sym_union] = ACTIONS(1620), + [anon_sym_unsafe] = ACTIONS(1270), + [anon_sym_extern] = ACTIONS(1284), + [anon_sym_safe] = ACTIONS(1270), + [anon_sym_dyn] = ACTIONS(1288), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1624), + [sym_super] = ACTIONS(1624), + [sym_crate] = ACTIONS(1624), + [sym_metavariable] = ACTIONS(1626), }, [STATE(1032)] = { + [sym_function_modifiers] = STATE(3591), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2373), + [sym__type] = STATE(2459), + [sym_bracketed_type] = STATE(3474), + [sym_lifetime] = STATE(3727), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1591), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2022), + [sym_generic_type_with_turbofish] = STATE(3764), + [sym_bounded_type] = STATE(2069), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3334), + [sym_scoped_type_identifier] = STATE(1990), [sym_line_comment] = STATE(1032), [sym_block_comment] = STATE(1032), - [sym_identifier] = ACTIONS(1591), - [anon_sym_LPAREN] = ACTIONS(1593), - [anon_sym_LBRACK] = ACTIONS(1593), - [anon_sym_LBRACE] = ACTIONS(1593), - [anon_sym_STAR] = ACTIONS(1593), - [anon_sym_u8] = ACTIONS(1591), - [anon_sym_i8] = ACTIONS(1591), - [anon_sym_u16] = ACTIONS(1591), - [anon_sym_i16] = ACTIONS(1591), - [anon_sym_u32] = ACTIONS(1591), - [anon_sym_i32] = ACTIONS(1591), - [anon_sym_u64] = ACTIONS(1591), - [anon_sym_i64] = ACTIONS(1591), - [anon_sym_u128] = ACTIONS(1591), - [anon_sym_i128] = ACTIONS(1591), - [anon_sym_isize] = ACTIONS(1591), - [anon_sym_usize] = ACTIONS(1591), - [anon_sym_f32] = ACTIONS(1591), - [anon_sym_f64] = ACTIONS(1591), - [anon_sym_bool] = ACTIONS(1591), - [anon_sym_str] = ACTIONS(1591), - [anon_sym_char] = ACTIONS(1591), - [anon_sym_DASH] = ACTIONS(1591), - [anon_sym_BANG] = ACTIONS(1593), - [anon_sym_AMP] = ACTIONS(1593), - [anon_sym_PIPE] = ACTIONS(1593), - [anon_sym_LT] = ACTIONS(1593), - [anon_sym__] = ACTIONS(1591), - [anon_sym_DOT_DOT] = ACTIONS(1593), - [anon_sym_COLON_COLON] = ACTIONS(1593), - [anon_sym_DASH_GT] = ACTIONS(1593), - [anon_sym_SQUOTE] = ACTIONS(1591), - [anon_sym_async] = ACTIONS(1591), - [anon_sym_break] = ACTIONS(1591), - [anon_sym_const] = ACTIONS(1591), - [anon_sym_continue] = ACTIONS(1591), - [anon_sym_default] = ACTIONS(1591), - [anon_sym_for] = ACTIONS(1591), - [anon_sym_gen] = ACTIONS(1591), - [anon_sym_if] = ACTIONS(1591), - [anon_sym_loop] = ACTIONS(1591), - [anon_sym_match] = ACTIONS(1591), - [anon_sym_return] = ACTIONS(1591), - [anon_sym_static] = ACTIONS(1591), - [anon_sym_union] = ACTIONS(1591), - [anon_sym_unsafe] = ACTIONS(1591), - [anon_sym_while] = ACTIONS(1591), - [anon_sym_yield] = ACTIONS(1591), - [anon_sym_move] = ACTIONS(1591), - [anon_sym_try] = ACTIONS(1591), - [sym_integer_literal] = ACTIONS(1593), - [aux_sym_string_literal_token1] = ACTIONS(1593), - [sym_char_literal] = ACTIONS(1593), - [anon_sym_true] = ACTIONS(1591), - [anon_sym_false] = ACTIONS(1591), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1591), - [sym_super] = ACTIONS(1591), - [sym_crate] = ACTIONS(1591), - [sym_metavariable] = ACTIONS(1593), - [sym__raw_string_literal_start] = ACTIONS(1593), - [sym_float_literal] = ACTIONS(1593), + [aux_sym_function_modifiers_repeat1] = STATE(2244), + [sym_identifier] = ACTIONS(3064), + [anon_sym_LPAREN] = ACTIONS(1602), + [anon_sym_LBRACK] = ACTIONS(1604), + [anon_sym_STAR] = ACTIONS(1240), + [anon_sym_QMARK] = ACTIONS(1242), + [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_BANG] = ACTIONS(1248), + [anon_sym_AMP] = ACTIONS(1610), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1614), + [anon_sym_SQUOTE] = ACTIONS(3072), + [anon_sym_async] = ACTIONS(1270), + [anon_sym_const] = ACTIONS(1270), + [anon_sym_default] = ACTIONS(1618), + [anon_sym_fn] = ACTIONS(1276), + [anon_sym_for] = ACTIONS(1278), + [anon_sym_gen] = ACTIONS(1620), + [anon_sym_impl] = ACTIONS(1282), + [anon_sym_union] = ACTIONS(1620), + [anon_sym_unsafe] = ACTIONS(1270), + [anon_sym_extern] = ACTIONS(1284), + [anon_sym_safe] = ACTIONS(1270), + [anon_sym_dyn] = ACTIONS(1288), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1624), + [sym_super] = ACTIONS(1624), + [sym_crate] = ACTIONS(1624), + [sym_metavariable] = ACTIONS(1626), }, [STATE(1033)] = { + [sym_function_modifiers] = STATE(3591), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2373), + [sym__type] = STATE(2308), + [sym_bracketed_type] = STATE(3474), + [sym_lifetime] = STATE(3727), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1591), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2022), + [sym_generic_type_with_turbofish] = STATE(3764), + [sym_bounded_type] = STATE(2069), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3334), + [sym_scoped_type_identifier] = STATE(1990), [sym_line_comment] = STATE(1033), [sym_block_comment] = STATE(1033), - [sym_identifier] = ACTIONS(3294), - [anon_sym_LPAREN] = ACTIONS(3296), - [anon_sym_LBRACK] = ACTIONS(3296), - [anon_sym_LBRACE] = ACTIONS(3296), - [anon_sym_STAR] = ACTIONS(3296), - [anon_sym_u8] = ACTIONS(3294), - [anon_sym_i8] = ACTIONS(3294), - [anon_sym_u16] = ACTIONS(3294), - [anon_sym_i16] = ACTIONS(3294), - [anon_sym_u32] = ACTIONS(3294), - [anon_sym_i32] = ACTIONS(3294), - [anon_sym_u64] = ACTIONS(3294), - [anon_sym_i64] = ACTIONS(3294), - [anon_sym_u128] = ACTIONS(3294), - [anon_sym_i128] = ACTIONS(3294), - [anon_sym_isize] = ACTIONS(3294), - [anon_sym_usize] = ACTIONS(3294), - [anon_sym_f32] = ACTIONS(3294), - [anon_sym_f64] = ACTIONS(3294), - [anon_sym_bool] = ACTIONS(3294), - [anon_sym_str] = ACTIONS(3294), - [anon_sym_char] = ACTIONS(3294), - [anon_sym_DASH] = ACTIONS(3294), - [anon_sym_BANG] = ACTIONS(3296), - [anon_sym_AMP] = ACTIONS(3296), - [anon_sym_PIPE] = ACTIONS(3296), - [anon_sym_LT] = ACTIONS(3296), - [anon_sym__] = ACTIONS(3294), - [anon_sym_DOT_DOT] = ACTIONS(3296), - [anon_sym_COLON_COLON] = ACTIONS(3296), - [anon_sym_DASH_GT] = ACTIONS(3296), - [anon_sym_SQUOTE] = ACTIONS(3294), - [anon_sym_async] = ACTIONS(3294), - [anon_sym_break] = ACTIONS(3294), - [anon_sym_const] = ACTIONS(3294), - [anon_sym_continue] = ACTIONS(3294), - [anon_sym_default] = ACTIONS(3294), - [anon_sym_for] = ACTIONS(3294), - [anon_sym_gen] = ACTIONS(3294), - [anon_sym_if] = ACTIONS(3294), - [anon_sym_loop] = ACTIONS(3294), - [anon_sym_match] = ACTIONS(3294), - [anon_sym_return] = ACTIONS(3294), - [anon_sym_static] = ACTIONS(3294), - [anon_sym_union] = ACTIONS(3294), - [anon_sym_unsafe] = ACTIONS(3294), - [anon_sym_while] = ACTIONS(3294), - [anon_sym_yield] = ACTIONS(3294), - [anon_sym_move] = ACTIONS(3294), - [anon_sym_try] = ACTIONS(3294), - [sym_integer_literal] = ACTIONS(3296), - [aux_sym_string_literal_token1] = ACTIONS(3296), - [sym_char_literal] = ACTIONS(3296), - [anon_sym_true] = ACTIONS(3294), - [anon_sym_false] = ACTIONS(3294), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3294), - [sym_super] = ACTIONS(3294), - [sym_crate] = ACTIONS(3294), - [sym_metavariable] = ACTIONS(3296), - [sym__raw_string_literal_start] = ACTIONS(3296), - [sym_float_literal] = ACTIONS(3296), + [aux_sym_function_modifiers_repeat1] = STATE(2244), + [sym_identifier] = ACTIONS(3064), + [anon_sym_LPAREN] = ACTIONS(1602), + [anon_sym_LBRACK] = ACTIONS(1604), + [anon_sym_STAR] = ACTIONS(1240), + [anon_sym_QMARK] = ACTIONS(1242), + [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_BANG] = ACTIONS(1248), + [anon_sym_AMP] = ACTIONS(1610), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1614), + [anon_sym_SQUOTE] = ACTIONS(3072), + [anon_sym_async] = ACTIONS(1270), + [anon_sym_const] = ACTIONS(1270), + [anon_sym_default] = ACTIONS(1618), + [anon_sym_fn] = ACTIONS(1276), + [anon_sym_for] = ACTIONS(1278), + [anon_sym_gen] = ACTIONS(1620), + [anon_sym_impl] = ACTIONS(1282), + [anon_sym_union] = ACTIONS(1620), + [anon_sym_unsafe] = ACTIONS(1270), + [anon_sym_extern] = ACTIONS(1284), + [anon_sym_safe] = ACTIONS(1270), + [anon_sym_dyn] = ACTIONS(1288), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1624), + [sym_super] = ACTIONS(1624), + [sym_crate] = ACTIONS(1624), + [sym_metavariable] = ACTIONS(1626), + }, + [STATE(1034)] = { + [sym_function_modifiers] = STATE(3591), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2373), + [sym__type] = STATE(2466), + [sym_bracketed_type] = STATE(3474), + [sym_lifetime] = STATE(3727), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1591), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2022), + [sym_generic_type_with_turbofish] = STATE(3764), + [sym_bounded_type] = STATE(2069), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3334), + [sym_scoped_type_identifier] = STATE(1990), + [sym_line_comment] = STATE(1034), + [sym_block_comment] = STATE(1034), + [aux_sym_function_modifiers_repeat1] = STATE(2244), + [sym_identifier] = ACTIONS(3064), + [anon_sym_LPAREN] = ACTIONS(1602), + [anon_sym_LBRACK] = ACTIONS(1604), + [anon_sym_STAR] = ACTIONS(1240), + [anon_sym_QMARK] = ACTIONS(1242), + [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_BANG] = ACTIONS(1248), + [anon_sym_AMP] = ACTIONS(1610), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1614), + [anon_sym_SQUOTE] = ACTIONS(3072), + [anon_sym_async] = ACTIONS(1270), + [anon_sym_const] = ACTIONS(1270), + [anon_sym_default] = ACTIONS(1618), + [anon_sym_fn] = ACTIONS(1276), + [anon_sym_for] = ACTIONS(1278), + [anon_sym_gen] = ACTIONS(1620), + [anon_sym_impl] = ACTIONS(1282), + [anon_sym_union] = ACTIONS(1620), + [anon_sym_unsafe] = ACTIONS(1270), + [anon_sym_extern] = ACTIONS(1284), + [anon_sym_safe] = ACTIONS(1270), + [anon_sym_dyn] = ACTIONS(1288), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1624), + [sym_super] = ACTIONS(1624), + [sym_crate] = ACTIONS(1624), + [sym_metavariable] = ACTIONS(1626), + }, + [STATE(1035)] = { + [sym_function_modifiers] = STATE(3591), + [sym_removed_trait_bound] = STATE(2069), + [sym_extern_modifier] = STATE(2373), + [sym__type] = STATE(3010), + [sym_bracketed_type] = STATE(3474), + [sym_lifetime] = STATE(3727), + [sym_array_type] = STATE(2069), + [sym_for_lifetimes] = STATE(1591), + [sym_function_type] = STATE(2069), + [sym_tuple_type] = STATE(2069), + [sym_unit_type] = STATE(2069), + [sym_generic_type] = STATE(2022), + [sym_generic_type_with_turbofish] = STATE(3764), + [sym_bounded_type] = STATE(2069), + [sym_reference_type] = STATE(2069), + [sym_pointer_type] = STATE(2069), + [sym_never_type] = STATE(2069), + [sym_abstract_type] = STATE(2069), + [sym_dynamic_type] = STATE(2069), + [sym_macro_invocation] = STATE(2069), + [sym_scoped_identifier] = STATE(3334), + [sym_scoped_type_identifier] = STATE(1990), + [sym_line_comment] = STATE(1035), + [sym_block_comment] = STATE(1035), + [aux_sym_function_modifiers_repeat1] = STATE(2244), + [sym_identifier] = ACTIONS(3064), + [anon_sym_LPAREN] = ACTIONS(1602), + [anon_sym_LBRACK] = ACTIONS(1604), + [anon_sym_STAR] = ACTIONS(1240), + [anon_sym_QMARK] = ACTIONS(1242), + [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_BANG] = ACTIONS(1248), + [anon_sym_AMP] = ACTIONS(1610), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1614), + [anon_sym_SQUOTE] = ACTIONS(3072), + [anon_sym_async] = ACTIONS(1270), + [anon_sym_const] = ACTIONS(1270), + [anon_sym_default] = ACTIONS(1618), + [anon_sym_fn] = ACTIONS(1276), + [anon_sym_for] = ACTIONS(1278), + [anon_sym_gen] = ACTIONS(1620), + [anon_sym_impl] = ACTIONS(1282), + [anon_sym_union] = ACTIONS(1620), + [anon_sym_unsafe] = ACTIONS(1270), + [anon_sym_extern] = ACTIONS(1284), + [anon_sym_safe] = ACTIONS(1270), + [anon_sym_dyn] = ACTIONS(1288), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1624), + [sym_super] = ACTIONS(1624), + [sym_crate] = ACTIONS(1624), + [sym_metavariable] = ACTIONS(1626), + }, + [STATE(1036)] = { + [sym_function_modifiers] = STATE(3624), + [sym_removed_trait_bound] = STATE(1721), + [sym_extern_modifier] = STATE(2373), + [sym__type] = STATE(1764), + [sym_bracketed_type] = STATE(3683), + [sym_lifetime] = STATE(3755), + [sym_array_type] = STATE(1721), + [sym_for_lifetimes] = STATE(1605), + [sym_function_type] = STATE(1721), + [sym_tuple_type] = STATE(1721), + [sym_unit_type] = STATE(1721), + [sym_generic_type] = STATE(1679), + [sym_generic_type_with_turbofish] = STATE(3674), + [sym_bounded_type] = STATE(1721), + [sym_reference_type] = STATE(1721), + [sym_pointer_type] = STATE(1721), + [sym_never_type] = STATE(1721), + [sym_abstract_type] = STATE(1721), + [sym_dynamic_type] = STATE(1721), + [sym_macro_invocation] = STATE(1721), + [sym_scoped_identifier] = STATE(3408), + [sym_scoped_type_identifier] = STATE(1595), + [sym_line_comment] = STATE(1036), + [sym_block_comment] = STATE(1036), + [aux_sym_function_modifiers_repeat1] = STATE(2244), + [sym_identifier] = ACTIONS(3172), + [anon_sym_LPAREN] = ACTIONS(3174), + [anon_sym_LBRACK] = ACTIONS(3176), + [anon_sym_STAR] = ACTIONS(3180), + [anon_sym_QMARK] = ACTIONS(3182), + [anon_sym_u8] = ACTIONS(3184), + [anon_sym_i8] = ACTIONS(3184), + [anon_sym_u16] = ACTIONS(3184), + [anon_sym_i16] = ACTIONS(3184), + [anon_sym_u32] = ACTIONS(3184), + [anon_sym_i32] = ACTIONS(3184), + [anon_sym_u64] = ACTIONS(3184), + [anon_sym_i64] = ACTIONS(3184), + [anon_sym_u128] = ACTIONS(3184), + [anon_sym_i128] = ACTIONS(3184), + [anon_sym_isize] = ACTIONS(3184), + [anon_sym_usize] = ACTIONS(3184), + [anon_sym_f32] = ACTIONS(3184), + [anon_sym_f64] = ACTIONS(3184), + [anon_sym_bool] = ACTIONS(3184), + [anon_sym_str] = ACTIONS(3184), + [anon_sym_char] = ACTIONS(3184), + [anon_sym_BANG] = ACTIONS(3186), + [anon_sym_AMP] = ACTIONS(3188), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3190), + [anon_sym_SQUOTE] = ACTIONS(3072), + [anon_sym_async] = ACTIONS(1270), + [anon_sym_const] = ACTIONS(1270), + [anon_sym_default] = ACTIONS(3192), + [anon_sym_fn] = ACTIONS(3194), + [anon_sym_for] = ACTIONS(1278), + [anon_sym_gen] = ACTIONS(3196), + [anon_sym_impl] = ACTIONS(3198), + [anon_sym_union] = ACTIONS(3196), + [anon_sym_unsafe] = ACTIONS(1270), + [anon_sym_extern] = ACTIONS(1284), + [anon_sym_safe] = ACTIONS(1270), + [anon_sym_dyn] = ACTIONS(3200), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(3204), + [sym_super] = ACTIONS(3204), + [sym_crate] = ACTIONS(3204), + [sym_metavariable] = ACTIONS(3206), + }, + [STATE(1037)] = { + [sym_attribute_item] = STATE(1038), + [sym_line_comment] = STATE(1037), + [sym_block_comment] = STATE(1037), + [aux_sym_enum_variant_list_repeat1] = STATE(1037), + [sym_identifier] = ACTIONS(3314), + [anon_sym_LPAREN] = ACTIONS(758), + [anon_sym_LBRACK] = ACTIONS(758), + [anon_sym_RBRACK] = ACTIONS(758), + [anon_sym_LBRACE] = ACTIONS(758), + [anon_sym_STAR] = ACTIONS(758), + [anon_sym_u8] = ACTIONS(3314), + [anon_sym_i8] = ACTIONS(3314), + [anon_sym_u16] = ACTIONS(3314), + [anon_sym_i16] = ACTIONS(3314), + [anon_sym_u32] = ACTIONS(3314), + [anon_sym_i32] = ACTIONS(3314), + [anon_sym_u64] = ACTIONS(3314), + [anon_sym_i64] = ACTIONS(3314), + [anon_sym_u128] = ACTIONS(3314), + [anon_sym_i128] = ACTIONS(3314), + [anon_sym_isize] = ACTIONS(3314), + [anon_sym_usize] = ACTIONS(3314), + [anon_sym_f32] = ACTIONS(3314), + [anon_sym_f64] = ACTIONS(3314), + [anon_sym_bool] = ACTIONS(3314), + [anon_sym_str] = ACTIONS(3314), + [anon_sym_char] = ACTIONS(3314), + [anon_sym_DASH] = ACTIONS(758), + [anon_sym_BANG] = ACTIONS(758), + [anon_sym_AMP] = ACTIONS(758), + [anon_sym_PIPE] = ACTIONS(758), + [anon_sym_LT] = ACTIONS(758), + [anon_sym_DOT_DOT] = ACTIONS(758), + [anon_sym_COMMA] = ACTIONS(758), + [anon_sym_COLON_COLON] = ACTIONS(758), + [anon_sym_POUND] = ACTIONS(784), + [anon_sym_SQUOTE] = ACTIONS(3314), + [anon_sym_async] = ACTIONS(3314), + [anon_sym_break] = ACTIONS(3314), + [anon_sym_const] = ACTIONS(3314), + [anon_sym_continue] = ACTIONS(3314), + [anon_sym_default] = ACTIONS(3314), + [anon_sym_for] = ACTIONS(3314), + [anon_sym_gen] = ACTIONS(3314), + [anon_sym_if] = ACTIONS(3314), + [anon_sym_loop] = ACTIONS(3314), + [anon_sym_match] = ACTIONS(3314), + [anon_sym_return] = ACTIONS(3314), + [anon_sym_static] = ACTIONS(3314), + [anon_sym_union] = ACTIONS(3314), + [anon_sym_unsafe] = ACTIONS(3314), + [anon_sym_while] = ACTIONS(3314), + [anon_sym_yield] = ACTIONS(3314), + [anon_sym_move] = ACTIONS(3314), + [anon_sym_try] = ACTIONS(3314), + [sym_integer_literal] = ACTIONS(758), + [aux_sym_string_literal_token1] = ACTIONS(758), + [sym_char_literal] = ACTIONS(758), + [anon_sym_true] = ACTIONS(3314), + [anon_sym_false] = ACTIONS(3314), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(3314), + [sym_super] = ACTIONS(3314), + [sym_crate] = ACTIONS(3314), + [sym_metavariable] = ACTIONS(758), + [sym__raw_string_literal_start] = ACTIONS(758), + [sym_float_literal] = ACTIONS(758), + }, + [STATE(1038)] = { + [sym_line_comment] = STATE(1038), + [sym_block_comment] = STATE(1038), + [sym_identifier] = ACTIONS(3316), + [anon_sym_LPAREN] = ACTIONS(3318), + [anon_sym_LBRACK] = ACTIONS(3318), + [anon_sym_RBRACK] = ACTIONS(3318), + [anon_sym_LBRACE] = ACTIONS(3318), + [anon_sym_STAR] = ACTIONS(3318), + [anon_sym_u8] = ACTIONS(3316), + [anon_sym_i8] = ACTIONS(3316), + [anon_sym_u16] = ACTIONS(3316), + [anon_sym_i16] = ACTIONS(3316), + [anon_sym_u32] = ACTIONS(3316), + [anon_sym_i32] = ACTIONS(3316), + [anon_sym_u64] = ACTIONS(3316), + [anon_sym_i64] = ACTIONS(3316), + [anon_sym_u128] = ACTIONS(3316), + [anon_sym_i128] = ACTIONS(3316), + [anon_sym_isize] = ACTIONS(3316), + [anon_sym_usize] = ACTIONS(3316), + [anon_sym_f32] = ACTIONS(3316), + [anon_sym_f64] = ACTIONS(3316), + [anon_sym_bool] = ACTIONS(3316), + [anon_sym_str] = ACTIONS(3316), + [anon_sym_char] = ACTIONS(3316), + [anon_sym_DASH] = ACTIONS(3318), + [anon_sym_BANG] = ACTIONS(3318), + [anon_sym_AMP] = ACTIONS(3318), + [anon_sym_PIPE] = ACTIONS(3318), + [anon_sym_LT] = ACTIONS(3318), + [anon_sym_DOT_DOT] = ACTIONS(3318), + [anon_sym_COMMA] = ACTIONS(3318), + [anon_sym_COLON_COLON] = ACTIONS(3318), + [anon_sym_POUND] = ACTIONS(3318), + [anon_sym_SQUOTE] = ACTIONS(3316), + [anon_sym_async] = ACTIONS(3316), + [anon_sym_break] = ACTIONS(3316), + [anon_sym_const] = ACTIONS(3316), + [anon_sym_continue] = ACTIONS(3316), + [anon_sym_default] = ACTIONS(3316), + [anon_sym_for] = ACTIONS(3316), + [anon_sym_gen] = ACTIONS(3316), + [anon_sym_if] = ACTIONS(3316), + [anon_sym_loop] = ACTIONS(3316), + [anon_sym_match] = ACTIONS(3316), + [anon_sym_return] = ACTIONS(3316), + [anon_sym_static] = ACTIONS(3316), + [anon_sym_union] = ACTIONS(3316), + [anon_sym_unsafe] = ACTIONS(3316), + [anon_sym_while] = ACTIONS(3316), + [anon_sym_yield] = ACTIONS(3316), + [anon_sym_move] = ACTIONS(3316), + [anon_sym_try] = ACTIONS(3316), + [sym_integer_literal] = ACTIONS(3318), + [aux_sym_string_literal_token1] = ACTIONS(3318), + [sym_char_literal] = ACTIONS(3318), + [anon_sym_true] = ACTIONS(3316), + [anon_sym_false] = ACTIONS(3316), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(3316), + [sym_super] = ACTIONS(3316), + [sym_crate] = ACTIONS(3316), + [sym_metavariable] = ACTIONS(3318), + [sym__raw_string_literal_start] = ACTIONS(3318), + [sym_float_literal] = ACTIONS(3318), + }, + [STATE(1039)] = { + [sym_line_comment] = STATE(1039), + [sym_block_comment] = STATE(1039), + [sym_identifier] = ACTIONS(2111), + [anon_sym_LPAREN] = ACTIONS(2109), + [anon_sym_LBRACK] = ACTIONS(2109), + [anon_sym_RBRACK] = ACTIONS(2109), + [anon_sym_LBRACE] = ACTIONS(2109), + [anon_sym_STAR] = ACTIONS(2109), + [anon_sym_u8] = ACTIONS(2111), + [anon_sym_i8] = ACTIONS(2111), + [anon_sym_u16] = ACTIONS(2111), + [anon_sym_i16] = ACTIONS(2111), + [anon_sym_u32] = ACTIONS(2111), + [anon_sym_i32] = ACTIONS(2111), + [anon_sym_u64] = ACTIONS(2111), + [anon_sym_i64] = ACTIONS(2111), + [anon_sym_u128] = ACTIONS(2111), + [anon_sym_i128] = ACTIONS(2111), + [anon_sym_isize] = ACTIONS(2111), + [anon_sym_usize] = ACTIONS(2111), + [anon_sym_f32] = ACTIONS(2111), + [anon_sym_f64] = ACTIONS(2111), + [anon_sym_bool] = ACTIONS(2111), + [anon_sym_str] = ACTIONS(2111), + [anon_sym_char] = ACTIONS(2111), + [anon_sym_DASH] = ACTIONS(2109), + [anon_sym_BANG] = ACTIONS(2109), + [anon_sym_AMP] = ACTIONS(2109), + [anon_sym_PIPE] = ACTIONS(2109), + [anon_sym_LT] = ACTIONS(2109), + [anon_sym_DOT_DOT] = ACTIONS(2109), + [anon_sym_COMMA] = ACTIONS(2109), + [anon_sym_COLON_COLON] = ACTIONS(2109), + [anon_sym_POUND] = ACTIONS(2109), + [anon_sym_SQUOTE] = ACTIONS(2111), + [anon_sym_async] = ACTIONS(2111), + [anon_sym_break] = ACTIONS(2111), + [anon_sym_const] = ACTIONS(2111), + [anon_sym_continue] = ACTIONS(2111), + [anon_sym_default] = ACTIONS(2111), + [anon_sym_for] = ACTIONS(2111), + [anon_sym_gen] = ACTIONS(2111), + [anon_sym_if] = ACTIONS(2111), + [anon_sym_loop] = ACTIONS(2111), + [anon_sym_match] = ACTIONS(2111), + [anon_sym_return] = ACTIONS(2111), + [anon_sym_static] = ACTIONS(2111), + [anon_sym_union] = ACTIONS(2111), + [anon_sym_unsafe] = ACTIONS(2111), + [anon_sym_while] = ACTIONS(2111), + [anon_sym_yield] = ACTIONS(2111), + [anon_sym_move] = ACTIONS(2111), + [anon_sym_try] = ACTIONS(2111), + [sym_integer_literal] = ACTIONS(2109), + [aux_sym_string_literal_token1] = ACTIONS(2109), + [sym_char_literal] = ACTIONS(2109), + [anon_sym_true] = ACTIONS(2111), + [anon_sym_false] = ACTIONS(2111), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(2111), + [sym_super] = ACTIONS(2111), + [sym_crate] = ACTIONS(2111), + [sym_metavariable] = ACTIONS(2109), + [sym__raw_string_literal_start] = ACTIONS(2109), + [sym_float_literal] = ACTIONS(2109), + }, + [STATE(1040)] = { + [sym_line_comment] = STATE(1040), + [sym_block_comment] = STATE(1040), + [sym_identifier] = ACTIONS(3320), + [anon_sym_LPAREN] = ACTIONS(3322), + [anon_sym_LBRACK] = ACTIONS(3322), + [anon_sym_LBRACE] = ACTIONS(3322), + [anon_sym_STAR] = ACTIONS(3322), + [anon_sym_u8] = ACTIONS(3320), + [anon_sym_i8] = ACTIONS(3320), + [anon_sym_u16] = ACTIONS(3320), + [anon_sym_i16] = ACTIONS(3320), + [anon_sym_u32] = ACTIONS(3320), + [anon_sym_i32] = ACTIONS(3320), + [anon_sym_u64] = ACTIONS(3320), + [anon_sym_i64] = ACTIONS(3320), + [anon_sym_u128] = ACTIONS(3320), + [anon_sym_i128] = ACTIONS(3320), + [anon_sym_isize] = ACTIONS(3320), + [anon_sym_usize] = ACTIONS(3320), + [anon_sym_f32] = ACTIONS(3320), + [anon_sym_f64] = ACTIONS(3320), + [anon_sym_bool] = ACTIONS(3320), + [anon_sym_str] = ACTIONS(3320), + [anon_sym_char] = ACTIONS(3320), + [anon_sym_DASH] = ACTIONS(3320), + [anon_sym_BANG] = ACTIONS(3322), + [anon_sym_AMP] = ACTIONS(3322), + [anon_sym_PIPE] = ACTIONS(3322), + [anon_sym_LT] = ACTIONS(3322), + [anon_sym__] = ACTIONS(3320), + [anon_sym_DOT_DOT] = ACTIONS(3322), + [anon_sym_COLON_COLON] = ACTIONS(3322), + [anon_sym_DASH_GT] = ACTIONS(3322), + [anon_sym_SQUOTE] = ACTIONS(3320), + [anon_sym_async] = ACTIONS(3320), + [anon_sym_break] = ACTIONS(3320), + [anon_sym_const] = ACTIONS(3320), + [anon_sym_continue] = ACTIONS(3320), + [anon_sym_default] = ACTIONS(3320), + [anon_sym_for] = ACTIONS(3320), + [anon_sym_gen] = ACTIONS(3320), + [anon_sym_if] = ACTIONS(3320), + [anon_sym_loop] = ACTIONS(3320), + [anon_sym_match] = ACTIONS(3320), + [anon_sym_return] = ACTIONS(3320), + [anon_sym_static] = ACTIONS(3320), + [anon_sym_union] = ACTIONS(3320), + [anon_sym_unsafe] = ACTIONS(3320), + [anon_sym_while] = ACTIONS(3320), + [anon_sym_yield] = ACTIONS(3320), + [anon_sym_move] = ACTIONS(3320), + [anon_sym_try] = ACTIONS(3320), + [sym_integer_literal] = ACTIONS(3322), + [aux_sym_string_literal_token1] = ACTIONS(3322), + [sym_char_literal] = ACTIONS(3322), + [anon_sym_true] = ACTIONS(3320), + [anon_sym_false] = ACTIONS(3320), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(3320), + [sym_super] = ACTIONS(3320), + [sym_crate] = ACTIONS(3320), + [sym_metavariable] = ACTIONS(3322), + [sym__raw_string_literal_start] = ACTIONS(3322), + [sym_float_literal] = ACTIONS(3322), + }, + [STATE(1041)] = { + [sym_line_comment] = STATE(1041), + [sym_block_comment] = STATE(1041), + [sym_identifier] = ACTIONS(1596), + [anon_sym_LPAREN] = ACTIONS(1598), + [anon_sym_LBRACK] = ACTIONS(1598), + [anon_sym_LBRACE] = ACTIONS(1598), + [anon_sym_STAR] = ACTIONS(1598), + [anon_sym_u8] = ACTIONS(1596), + [anon_sym_i8] = ACTIONS(1596), + [anon_sym_u16] = ACTIONS(1596), + [anon_sym_i16] = ACTIONS(1596), + [anon_sym_u32] = ACTIONS(1596), + [anon_sym_i32] = ACTIONS(1596), + [anon_sym_u64] = ACTIONS(1596), + [anon_sym_i64] = ACTIONS(1596), + [anon_sym_u128] = ACTIONS(1596), + [anon_sym_i128] = ACTIONS(1596), + [anon_sym_isize] = ACTIONS(1596), + [anon_sym_usize] = ACTIONS(1596), + [anon_sym_f32] = ACTIONS(1596), + [anon_sym_f64] = ACTIONS(1596), + [anon_sym_bool] = ACTIONS(1596), + [anon_sym_str] = ACTIONS(1596), + [anon_sym_char] = ACTIONS(1596), + [anon_sym_DASH] = ACTIONS(1596), + [anon_sym_BANG] = ACTIONS(1598), + [anon_sym_AMP] = ACTIONS(1598), + [anon_sym_PIPE] = ACTIONS(1598), + [anon_sym_LT] = ACTIONS(1598), + [anon_sym__] = ACTIONS(1596), + [anon_sym_DOT_DOT] = ACTIONS(1598), + [anon_sym_COLON_COLON] = ACTIONS(1598), + [anon_sym_DASH_GT] = ACTIONS(1598), + [anon_sym_SQUOTE] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(1596), + [anon_sym_break] = ACTIONS(1596), + [anon_sym_const] = ACTIONS(1596), + [anon_sym_continue] = ACTIONS(1596), + [anon_sym_default] = ACTIONS(1596), + [anon_sym_for] = ACTIONS(1596), + [anon_sym_gen] = ACTIONS(1596), + [anon_sym_if] = ACTIONS(1596), + [anon_sym_loop] = ACTIONS(1596), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_return] = ACTIONS(1596), + [anon_sym_static] = ACTIONS(1596), + [anon_sym_union] = ACTIONS(1596), + [anon_sym_unsafe] = ACTIONS(1596), + [anon_sym_while] = ACTIONS(1596), + [anon_sym_yield] = ACTIONS(1596), + [anon_sym_move] = ACTIONS(1596), + [anon_sym_try] = ACTIONS(1596), + [sym_integer_literal] = ACTIONS(1598), + [aux_sym_string_literal_token1] = ACTIONS(1598), + [sym_char_literal] = ACTIONS(1598), + [anon_sym_true] = ACTIONS(1596), + [anon_sym_false] = ACTIONS(1596), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1596), + [sym_super] = ACTIONS(1596), + [sym_crate] = ACTIONS(1596), + [sym_metavariable] = ACTIONS(1598), + [sym__raw_string_literal_start] = ACTIONS(1598), + [sym_float_literal] = ACTIONS(1598), }, }; static const uint16_t ts_small_parse_table[] = { [0] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1034), 2, + STATE(1042), 2, sym_line_comment, sym_block_comment, - ACTIONS(1113), 18, + ACTIONS(1066), 18, sym__raw_string_literal_start, sym_float_literal, anon_sym_LPAREN, @@ -112873,7 +114256,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_string_literal_token1, sym_char_literal, sym_metavariable, - ACTIONS(3298), 42, + ACTIONS(3324), 42, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -112917,14 +114300,14 @@ static const uint16_t ts_small_parse_table[] = { sym_super, sym_crate, [75] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1035), 2, + STATE(1043), 2, sym_line_comment, sym_block_comment, - ACTIONS(2782), 18, + ACTIONS(2109), 18, sym__raw_string_literal_start, sym_float_literal, anon_sym_LPAREN, @@ -112943,7 +114326,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_string_literal_token1, sym_char_literal, sym_metavariable, - ACTIONS(2784), 39, + ACTIONS(2111), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -112974,6 +114357,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, anon_sym_unsafe, anon_sym_extern, + anon_sym_safe, anon_sym_ref, anon_sym_dyn, sym_mutable_specifier, @@ -112983,15 +114367,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [147] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [148] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1036), 2, + STATE(1044), 2, sym_line_comment, sym_block_comment, - ACTIONS(3302), 20, + ACTIONS(3328), 20, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -113012,7 +114396,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_SQUOTE, sym_metavariable, - ACTIONS(3300), 35, + ACTIONS(3326), 36, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -113041,6 +114425,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_where, anon_sym_extern, + anon_sym_safe, anon_sym_else, anon_sym_dyn, sym_mutable_specifier, @@ -113048,57 +114433,57 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [217] = 21, + [219] = 21, ACTIONS(29), 1, anon_sym_LT, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(1241), 1, + ACTIONS(1246), 1, anon_sym_DASH, - ACTIONS(1289), 1, + ACTIONS(1294), 1, aux_sym_string_literal_token1, - ACTIONS(1299), 1, + ACTIONS(1304), 1, sym__raw_string_literal_start, - ACTIONS(2554), 1, + ACTIONS(1867), 1, anon_sym_COLON_COLON, - ACTIONS(3304), 1, + ACTIONS(3330), 1, sym_identifier, - ACTIONS(3314), 1, + ACTIONS(3340), 1, sym_metavariable, - STATE(2107), 1, + STATE(2149), 1, sym_scoped_identifier, - STATE(2188), 1, + STATE(2193), 1, sym__literal_pattern, - STATE(3441), 1, - sym_bracketed_type, STATE(3467), 1, + sym_bracketed_type, + STATE(3493), 1, sym_generic_type_with_turbofish, - ACTIONS(1291), 2, + ACTIONS(1296), 2, anon_sym_true, anon_sym_false, - STATE(1037), 2, + STATE(1045), 2, sym_line_comment, sym_block_comment, - ACTIONS(1287), 3, + ACTIONS(1292), 3, sym_float_literal, sym_integer_literal, sym_char_literal, - ACTIONS(3308), 3, + ACTIONS(3334), 3, anon_sym_COLON, anon_sym_else, anon_sym_in, - ACTIONS(3312), 3, + ACTIONS(3338), 3, sym_self, sym_super, sym_crate, - STATE(2074), 4, + STATE(2095), 4, sym_negative_literal, sym_string_literal, sym_raw_string_literal, sym_boolean_literal, - ACTIONS(3306), 7, + ACTIONS(3332), 7, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -113106,7 +114491,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_EQ, anon_sym_COMMA, - ACTIONS(3310), 20, + ACTIONS(3336), 20, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -113127,57 +114512,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_gen, anon_sym_union, - [317] = 21, + [319] = 21, ACTIONS(29), 1, anon_sym_LT, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(1241), 1, + ACTIONS(1246), 1, anon_sym_DASH, - ACTIONS(1289), 1, + ACTIONS(1294), 1, aux_sym_string_literal_token1, - ACTIONS(1299), 1, + ACTIONS(1304), 1, sym__raw_string_literal_start, - ACTIONS(2554), 1, + ACTIONS(1867), 1, anon_sym_COLON_COLON, - ACTIONS(3316), 1, + ACTIONS(3342), 1, sym_identifier, - ACTIONS(3326), 1, + ACTIONS(3352), 1, sym_metavariable, - STATE(2116), 1, + STATE(2141), 1, sym_scoped_identifier, - STATE(2168), 1, + STATE(2215), 1, sym__literal_pattern, - STATE(3441), 1, - sym_bracketed_type, STATE(3467), 1, + sym_bracketed_type, + STATE(3493), 1, sym_generic_type_with_turbofish, - ACTIONS(1291), 2, + ACTIONS(1296), 2, anon_sym_true, anon_sym_false, - STATE(1038), 2, + STATE(1046), 2, sym_line_comment, sym_block_comment, - ACTIONS(1287), 3, + ACTIONS(1292), 3, sym_float_literal, sym_integer_literal, sym_char_literal, - ACTIONS(3320), 3, + ACTIONS(3346), 3, anon_sym_COLON, anon_sym_else, anon_sym_in, - ACTIONS(3324), 3, + ACTIONS(3350), 3, sym_self, sym_super, sym_crate, - STATE(2074), 4, + STATE(2095), 4, sym_negative_literal, sym_string_literal, sym_raw_string_literal, sym_boolean_literal, - ACTIONS(3318), 7, + ACTIONS(3344), 7, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -113185,7 +114570,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_EQ, anon_sym_COMMA, - ACTIONS(3322), 20, + ACTIONS(3348), 20, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -113206,57 +114591,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_gen, anon_sym_union, - [417] = 21, + [419] = 21, ACTIONS(29), 1, anon_sym_LT, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(1241), 1, + ACTIONS(1246), 1, anon_sym_DASH, - ACTIONS(1289), 1, + ACTIONS(1294), 1, aux_sym_string_literal_token1, - ACTIONS(1299), 1, + ACTIONS(1304), 1, sym__raw_string_literal_start, - ACTIONS(2554), 1, + ACTIONS(1867), 1, anon_sym_COLON_COLON, - ACTIONS(3328), 1, + ACTIONS(3354), 1, sym_identifier, - ACTIONS(3338), 1, + ACTIONS(3364), 1, sym_metavariable, - STATE(2103), 1, + STATE(2126), 1, sym_scoped_identifier, - STATE(2160), 1, + STATE(2213), 1, sym__literal_pattern, - STATE(3441), 1, - sym_bracketed_type, STATE(3467), 1, + sym_bracketed_type, + STATE(3493), 1, sym_generic_type_with_turbofish, - ACTIONS(1291), 2, + ACTIONS(1296), 2, anon_sym_true, anon_sym_false, - STATE(1039), 2, + STATE(1047), 2, sym_line_comment, sym_block_comment, - ACTIONS(1287), 3, + ACTIONS(1292), 3, sym_float_literal, sym_integer_literal, sym_char_literal, - ACTIONS(3332), 3, + ACTIONS(3358), 3, anon_sym_COLON, anon_sym_else, anon_sym_in, - ACTIONS(3336), 3, + ACTIONS(3362), 3, sym_self, sym_super, sym_crate, - STATE(2074), 4, + STATE(2095), 4, sym_negative_literal, sym_string_literal, sym_raw_string_literal, sym_boolean_literal, - ACTIONS(3330), 7, + ACTIONS(3356), 7, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -113264,7 +114649,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_EQ, anon_sym_COMMA, - ACTIONS(3334), 20, + ACTIONS(3360), 20, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -113285,94 +114670,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_gen, anon_sym_union, - [517] = 12, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [519] = 11, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(343), 1, - anon_sym_LBRACE, - ACTIONS(3344), 1, - anon_sym_BANG, - ACTIONS(3346), 1, - anon_sym_COLON_COLON, - ACTIONS(3348), 1, - anon_sym_SQUOTE, - ACTIONS(3350), 1, - anon_sym_move, - STATE(1407), 1, - sym_block, - STATE(3664), 1, - sym_label, - STATE(1040), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3342), 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(3340), 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, - [596] = 11, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3354), 1, + ACTIONS(3368), 1, anon_sym_LPAREN, - ACTIONS(3358), 1, + ACTIONS(3372), 1, anon_sym_BANG, - ACTIONS(3360), 1, + ACTIONS(3374), 1, anon_sym_COLON_COLON, - ACTIONS(3362), 1, + ACTIONS(3376), 1, anon_sym_LT2, - STATE(1108), 1, + STATE(1385), 1, sym_type_arguments, - STATE(1114), 1, + STATE(1391), 1, sym_parameters, - STATE(1041), 2, + STATE(1048), 2, sym_line_comment, sym_block_comment, - ACTIONS(3356), 17, + ACTIONS(3370), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -113390,7 +114708,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3352), 27, + ACTIONS(3366), 27, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACK, @@ -113418,15 +114736,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [673] = 5, - ACTIONS(103), 1, + [596] = 5, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + STATE(1049), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1448), 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(1450), 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_safe, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [661] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1042), 2, + STATE(1050), 2, sym_line_comment, sym_block_comment, - ACTIONS(1395), 9, + ACTIONS(1044), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -113436,7 +114814,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1397), 40, + ACTIONS(1042), 41, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -113473,19 +114851,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, + anon_sym_safe, sym_identifier, sym_self, sym_super, sym_crate, - [737] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [726] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1043), 2, + STATE(1051), 2, sym_line_comment, sym_block_comment, - ACTIONS(1387), 9, + ACTIONS(1388), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -113495,7 +114874,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1389), 40, + ACTIONS(1390), 41, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -113532,19 +114911,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, + anon_sym_safe, sym_identifier, sym_self, sym_super, sym_crate, - [801] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [791] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1044), 2, + STATE(1052), 2, sym_line_comment, sym_block_comment, - ACTIONS(1383), 9, + ACTIONS(1048), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -113554,7 +114934,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1385), 40, + ACTIONS(1046), 41, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -113591,19 +114971,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, + anon_sym_safe, sym_identifier, sym_self, sym_super, sym_crate, - [865] = 5, - ACTIONS(103), 1, + [856] = 12, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(348), 1, + anon_sym_LBRACE, + ACTIONS(3382), 1, + anon_sym_BANG, + ACTIONS(3384), 1, + anon_sym_COLON_COLON, + ACTIONS(3386), 1, + anon_sym_SQUOTE, + ACTIONS(3388), 1, + anon_sym_move, + STATE(1488), 1, + sym_block, + STATE(3693), 1, + sym_label, + STATE(1053), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3380), 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(3378), 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, + [935] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1045), 2, + STATE(1054), 2, sym_line_comment, sym_block_comment, - ACTIONS(1051), 9, + ACTIONS(1402), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -113613,7 +115061,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1049), 40, + ACTIONS(1404), 41, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -113650,19 +115098,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, + anon_sym_safe, sym_identifier, sym_self, sym_super, sym_crate, - [929] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [1000] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1046), 2, + STATE(1055), 2, sym_line_comment, sym_block_comment, - ACTIONS(1391), 9, + ACTIONS(1482), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -113672,7 +115121,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1393), 40, + ACTIONS(1484), 41, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -113709,19 +115158,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, + anon_sym_safe, sym_identifier, sym_self, sym_super, sym_crate, - [993] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [1065] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1047), 2, + STATE(1056), 2, sym_line_comment, sym_block_comment, - ACTIONS(1437), 9, + ACTIONS(1358), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -113731,7 +115181,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1439), 40, + ACTIONS(1360), 41, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -113768,19 +115218,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, + anon_sym_safe, sym_identifier, sym_self, sym_super, sym_crate, - [1057] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [1130] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1048), 2, + STATE(1057), 2, sym_line_comment, sym_block_comment, - ACTIONS(1047), 9, + ACTIONS(1408), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -113790,7 +115241,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1045), 40, + ACTIONS(1410), 41, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -113827,93 +115278,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, + anon_sym_safe, sym_identifier, sym_self, sym_super, sym_crate, - [1121] = 10, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [1195] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3354), 1, - anon_sym_LPAREN, - ACTIONS(3362), 1, - anon_sym_LT2, - ACTIONS(3368), 1, - anon_sym_COLON_COLON, - STATE(1108), 1, - sym_type_arguments, - STATE(1114), 1, - sym_parameters, - STATE(1049), 2, + STATE(1058), 2, sym_line_comment, sym_block_comment, - ACTIONS(3366), 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(3364), 27, + ACTIONS(1396), 9, anon_sym_SEMI, - 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_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, - [1195] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(1398), 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_safe, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [1260] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1050), 2, + STATE(1059), 2, sym_line_comment, sym_block_comment, - ACTIONS(1471), 9, + ACTIONS(2237), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_PIPE, + anon_sym_EQ, anon_sym_LT, + anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1473), 40, + ACTIONS(2239), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -113937,7 +115385,6 @@ 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, @@ -113950,29 +115397,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, + anon_sym_safe, sym_identifier, sym_self, sym_super, sym_crate, - [1259] = 10, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [1324] = 10, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3354), 1, + ACTIONS(3368), 1, anon_sym_LPAREN, - ACTIONS(3362), 1, + ACTIONS(3376), 1, anon_sym_LT2, - ACTIONS(3368), 1, + ACTIONS(3394), 1, anon_sym_COLON_COLON, - STATE(1108), 1, + STATE(1385), 1, sym_type_arguments, - STATE(1114), 1, + STATE(1391), 1, sym_parameters, - STATE(1051), 2, + STATE(1060), 2, sym_line_comment, sym_block_comment, - ACTIONS(3372), 17, + ACTIONS(3392), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -113990,7 +115438,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3370), 27, + ACTIONS(3390), 27, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACK, @@ -114018,86 +115466,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [1333] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [1398] = 10, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3378), 1, - anon_sym_POUND, - STATE(1395), 2, - sym_attribute_item, - sym_inner_attribute_item, - STATE(1052), 3, - sym_line_comment, - sym_block_comment, - aux_sym_match_arm_repeat1, - ACTIONS(3376), 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(3374), 31, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym__, - anon_sym_DOT_DOT, - anon_sym_const, - anon_sym_default, - anon_sym_gen, - anon_sym_union, - anon_sym_ref, - sym_mutable_specifier, - anon_sym_true, - anon_sym_false, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [1401] = 10, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3354), 1, + ACTIONS(3368), 1, anon_sym_LPAREN, - ACTIONS(3362), 1, + ACTIONS(3376), 1, anon_sym_LT2, - ACTIONS(3368), 1, + ACTIONS(3394), 1, anon_sym_COLON_COLON, - STATE(1108), 1, + STATE(1385), 1, sym_type_arguments, - STATE(1114), 1, + STATE(1391), 1, sym_parameters, - STATE(1053), 2, + STATE(1061), 2, sym_line_comment, sym_block_comment, - ACTIONS(3383), 17, + ACTIONS(3398), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -114115,7 +115502,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3381), 27, + ACTIONS(3396), 27, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACK, @@ -114143,25 +115530,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [1475] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [1472] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1054), 2, + STATE(1062), 2, sym_line_comment, sym_block_comment, - ACTIONS(1413), 9, + ACTIONS(1911), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_PIPE, + anon_sym_EQ, anon_sym_LT, + anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1415), 40, + ACTIONS(1913), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -114185,7 +115572,6 @@ 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, @@ -114198,70 +115584,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, + anon_sym_safe, sym_identifier, sym_self, sym_super, sym_crate, - [1539] = 24, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [1536] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(1599), 1, - anon_sym_LBRACK, - ACTIONS(3385), 1, - sym_identifier, - ACTIONS(3389), 1, - anon_sym_LPAREN, - ACTIONS(3391), 1, - anon_sym_STAR, - ACTIONS(3395), 1, - anon_sym_AMP, - ACTIONS(3397), 1, - anon_sym_COLON_COLON, - ACTIONS(3399), 1, - anon_sym_SQUOTE, - ACTIONS(3403), 1, - anon_sym_for, - ACTIONS(3407), 1, - sym_metavariable, - STATE(2524), 1, - sym_where_predicate, - STATE(2765), 1, - sym_scoped_type_identifier, - STATE(2896), 1, - sym_generic_type, - STATE(3457), 1, - sym_generic_type_with_turbofish, - STATE(3591), 1, - sym_bracketed_type, - STATE(3656), 1, - sym_scoped_identifier, - STATE(1055), 2, + STATE(1063), 2, sym_line_comment, sym_block_comment, - ACTIONS(3387), 3, + ACTIONS(2684), 9, anon_sym_SEMI, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, anon_sym_EQ, - ACTIONS(3401), 3, + anon_sym_LT, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2686), 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, - ACTIONS(3405), 3, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + anon_sym_safe, + sym_identifier, sym_self, sym_super, sym_crate, - STATE(3174), 6, - sym_higher_ranked_trait_bound, - sym_lifetime, - sym_array_type, - sym_tuple_type, - sym_reference_type, - sym_pointer_type, - ACTIONS(3393), 17, + [1600] = 5, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + STATE(1064), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2329), 9, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_LT, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2331), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -114279,143 +115684,109 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [1640] = 7, - ACTIONS(103), 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_safe, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [1664] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3413), 1, - anon_sym_BANG, - ACTIONS(3415), 1, - anon_sym_COLON_COLON, - STATE(1056), 2, + ACTIONS(3404), 1, + anon_sym_POUND, + STATE(1403), 2, + sym_attribute_item, + sym_inner_attribute_item, + STATE(1065), 3, sym_line_comment, sym_block_comment, - ACTIONS(3411), 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(3409), 29, - anon_sym_SEMI, + aux_sym_match_arm_repeat1, + ACTIONS(3402), 14, + sym__raw_string_literal_start, + sym_float_literal, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - anon_sym_LT2, - [1707] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3421), 1, - anon_sym_BANG, - ACTIONS(3423), 1, - anon_sym_COLON_COLON, - STATE(1057), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3419), 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(3417), 29, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - anon_sym_LT2, - [1774] = 9, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + anon_sym_COLON_COLON, + sym_integer_literal, + aux_sym_string_literal_token1, + sym_char_literal, + sym_metavariable, + ACTIONS(3400), 31, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym__, + anon_sym_DOT_DOT, + anon_sym_const, + anon_sym_default, + anon_sym_gen, + anon_sym_union, + anon_sym_ref, + sym_mutable_specifier, + anon_sym_true, + anon_sym_false, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [1732] = 10, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3354), 1, + ACTIONS(3368), 1, anon_sym_LPAREN, - ACTIONS(3362), 1, + ACTIONS(3376), 1, anon_sym_LT2, - STATE(1109), 1, + ACTIONS(3394), 1, + anon_sym_COLON_COLON, + STATE(1385), 1, sym_type_arguments, - STATE(1115), 1, + STATE(1391), 1, sym_parameters, - STATE(1058), 2, + STATE(1066), 2, sym_line_comment, sym_block_comment, - ACTIONS(3427), 17, + ACTIONS(3409), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -114433,7 +115804,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3425), 27, + ACTIONS(3407), 27, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACK, @@ -114461,15 +115832,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [1845] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [1806] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1059), 2, + STATE(1067), 2, sym_line_comment, sym_block_comment, - ACTIONS(2306), 9, + ACTIONS(2848), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -114479,7 +115850,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2308), 39, + ACTIONS(2850), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -114515,27 +115886,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, + anon_sym_safe, sym_identifier, sym_self, sym_super, sym_crate, - [1908] = 9, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [1870] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3354), 1, - anon_sym_LPAREN, - ACTIONS(3362), 1, - anon_sym_LT2, - STATE(1109), 1, - sym_type_arguments, - STATE(1115), 1, - sym_parameters, - STATE(1060), 2, + ACTIONS(3415), 1, + anon_sym_BANG, + ACTIONS(3417), 1, + anon_sym_COLON_COLON, + STATE(1068), 2, sym_line_comment, sym_block_comment, - ACTIONS(3431), 17, + ACTIONS(3413), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -114553,8 +115921,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3429), 27, + ACTIONS(3411), 29, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_RBRACK, @@ -114581,19 +115950,100 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [1979] = 7, - ACTIONS(103), 1, + anon_sym_LT2, + [1937] = 27, + ACTIONS(29), 1, + anon_sym_LT, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(1242), 1, + anon_sym_QMARK, + ACTIONS(1276), 1, + anon_sym_fn, + ACTIONS(1278), 1, + anon_sym_for, + ACTIONS(1284), 1, + anon_sym_extern, + ACTIONS(3419), 1, + sym_identifier, + ACTIONS(3421), 1, + anon_sym_LPAREN, + ACTIONS(3425), 1, + anon_sym_COLON_COLON, + ACTIONS(3427), 1, + anon_sym_default, + ACTIONS(3433), 1, + sym_metavariable, + STATE(1591), 1, + sym_for_lifetimes, + STATE(1992), 1, + sym_scoped_type_identifier, + STATE(2017), 1, + sym_generic_type, + STATE(2244), 1, + aux_sym_function_modifiers_repeat1, + STATE(2373), 1, + sym_extern_modifier, + STATE(3482), 1, + sym_generic_type_with_turbofish, + STATE(3488), 1, + sym_scoped_identifier, + STATE(3591), 1, + sym_function_modifiers, + STATE(3621), 1, + sym_bracketed_type, + ACTIONS(3429), 2, + anon_sym_gen, + anon_sym_union, + STATE(1069), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3431), 3, + sym_self, + sym_super, + sym_crate, + STATE(2058), 3, + sym_removed_trait_bound, + sym_function_type, + sym_tuple_type, + ACTIONS(1270), 4, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + anon_sym_safe, + ACTIONS(3423), 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, + [2044] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3437), 1, - anon_sym_BANG, ACTIONS(3439), 1, + anon_sym_BANG, + ACTIONS(3441), 1, anon_sym_COLON_COLON, - STATE(1061), 2, + STATE(1070), 2, sym_line_comment, sym_block_comment, - ACTIONS(3435), 17, + ACTIONS(3437), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -114611,7 +116061,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3433), 29, + ACTIONS(3435), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -114641,23 +116091,183 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_else, anon_sym_LT2, - [2046] = 9, - ACTIONS(103), 1, + [2111] = 27, + ACTIONS(29), 1, + anon_sym_LT, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(1278), 1, + anon_sym_for, + ACTIONS(1284), 1, + anon_sym_extern, + ACTIONS(3220), 1, + anon_sym_QMARK, + ACTIONS(3232), 1, + anon_sym_fn, + ACTIONS(3443), 1, + sym_identifier, + ACTIONS(3445), 1, + anon_sym_LPAREN, + ACTIONS(3449), 1, + anon_sym_COLON_COLON, + ACTIONS(3451), 1, + anon_sym_default, + ACTIONS(3457), 1, + sym_metavariable, + STATE(1078), 1, + sym_scoped_type_identifier, + STATE(1401), 1, + sym_generic_type, + STATE(1603), 1, + sym_for_lifetimes, + STATE(2244), 1, + aux_sym_function_modifiers_repeat1, + STATE(2373), 1, + sym_extern_modifier, + STATE(3480), 1, + sym_function_modifiers, + STATE(3633), 1, + sym_scoped_identifier, + STATE(3669), 1, + sym_generic_type_with_turbofish, + STATE(3680), 1, + sym_bracketed_type, + ACTIONS(3453), 2, + anon_sym_gen, + anon_sym_union, + STATE(1071), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3455), 3, + sym_self, + sym_super, + sym_crate, + STATE(1460), 3, + sym_removed_trait_bound, + sym_function_type, + sym_tuple_type, + ACTIONS(1270), 4, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + anon_sym_safe, + ACTIONS(3447), 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, + [2218] = 27, + ACTIONS(29), 1, + anon_sym_LT, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(1278), 1, + anon_sym_for, + ACTIONS(1284), 1, + anon_sym_extern, + ACTIONS(3182), 1, + anon_sym_QMARK, + ACTIONS(3194), 1, + anon_sym_fn, + ACTIONS(3459), 1, + sym_identifier, + ACTIONS(3461), 1, + anon_sym_LPAREN, + ACTIONS(3465), 1, + anon_sym_COLON_COLON, + ACTIONS(3467), 1, + anon_sym_default, + ACTIONS(3473), 1, + sym_metavariable, + STATE(1588), 1, + sym_scoped_type_identifier, + STATE(1605), 1, + sym_for_lifetimes, + STATE(1638), 1, + sym_generic_type, + STATE(2244), 1, + aux_sym_function_modifiers_repeat1, + STATE(2373), 1, + sym_extern_modifier, + STATE(3624), 1, + sym_function_modifiers, + STATE(3660), 1, + sym_scoped_identifier, + STATE(3678), 1, + sym_generic_type_with_turbofish, + STATE(3684), 1, + sym_bracketed_type, + ACTIONS(3469), 2, + anon_sym_gen, + anon_sym_union, + STATE(1072), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3471), 3, + sym_self, + sym_super, + sym_crate, + STATE(1765), 3, + sym_removed_trait_bound, + sym_function_type, + sym_tuple_type, + ACTIONS(1270), 4, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + anon_sym_safe, + ACTIONS(3463), 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, + [2325] = 9, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3354), 1, + ACTIONS(3368), 1, anon_sym_LPAREN, - ACTIONS(3362), 1, + ACTIONS(3376), 1, anon_sym_LT2, - STATE(1109), 1, + STATE(1386), 1, sym_type_arguments, - STATE(1115), 1, + STATE(1392), 1, sym_parameters, - STATE(1062), 2, + STATE(1073), 2, sym_line_comment, sym_block_comment, - ACTIONS(3443), 17, + ACTIONS(3477), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -114675,7 +116285,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3441), 27, + ACTIONS(3475), 27, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACK, @@ -114703,66 +116313,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [2117] = 24, + [2396] = 24, ACTIONS(29), 1, anon_sym_LT, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(1599), 1, + ACTIONS(1604), 1, anon_sym_LBRACK, - ACTIONS(3385), 1, - sym_identifier, - ACTIONS(3389), 1, + ACTIONS(3421), 1, anon_sym_LPAREN, - ACTIONS(3391), 1, + ACTIONS(3425), 1, + anon_sym_COLON_COLON, + ACTIONS(3433), 1, + sym_metavariable, + ACTIONS(3479), 1, + sym_identifier, + ACTIONS(3483), 1, anon_sym_STAR, - ACTIONS(3395), 1, + ACTIONS(3487), 1, anon_sym_AMP, - ACTIONS(3397), 1, - anon_sym_COLON_COLON, - ACTIONS(3399), 1, + ACTIONS(3489), 1, anon_sym_SQUOTE, - ACTIONS(3403), 1, + ACTIONS(3491), 1, anon_sym_for, - ACTIONS(3407), 1, - sym_metavariable, - STATE(2413), 1, + STATE(2450), 1, sym_where_predicate, - STATE(2765), 1, + STATE(2788), 1, sym_scoped_type_identifier, - STATE(2896), 1, + STATE(2867), 1, sym_generic_type, - STATE(3457), 1, + STATE(3482), 1, sym_generic_type_with_turbofish, - STATE(3591), 1, - sym_bracketed_type, - STATE(3656), 1, + STATE(3488), 1, sym_scoped_identifier, - STATE(1063), 2, + STATE(3621), 1, + sym_bracketed_type, + STATE(1074), 2, sym_line_comment, sym_block_comment, - ACTIONS(3401), 3, + ACTIONS(3429), 3, anon_sym_default, anon_sym_gen, anon_sym_union, - ACTIONS(3405), 3, + ACTIONS(3431), 3, sym_self, sym_super, sym_crate, - ACTIONS(3445), 3, + ACTIONS(3481), 3, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_EQ, - STATE(3174), 6, + STATE(3418), 6, sym_higher_ranked_trait_bound, sym_lifetime, sym_array_type, sym_tuple_type, sym_reference_type, sym_pointer_type, - ACTIONS(3393), 17, + ACTIONS(3485), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -114780,160 +116390,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [2218] = 24, + [2497] = 27, ACTIONS(29), 1, anon_sym_LT, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(1599), 1, - anon_sym_LBRACK, - ACTIONS(3385), 1, - sym_identifier, - ACTIONS(3389), 1, + ACTIONS(1284), 1, + anon_sym_extern, + ACTIONS(3220), 1, + anon_sym_QMARK, + ACTIONS(3232), 1, + anon_sym_fn, + ACTIONS(3445), 1, anon_sym_LPAREN, - ACTIONS(3391), 1, - anon_sym_STAR, - ACTIONS(3395), 1, - anon_sym_AMP, - ACTIONS(3397), 1, + ACTIONS(3449), 1, anon_sym_COLON_COLON, - ACTIONS(3399), 1, - anon_sym_SQUOTE, - ACTIONS(3403), 1, - anon_sym_for, - ACTIONS(3407), 1, + ACTIONS(3451), 1, + anon_sym_default, + ACTIONS(3457), 1, sym_metavariable, - STATE(2524), 1, - sym_where_predicate, - STATE(2765), 1, + ACTIONS(3493), 1, + sym_identifier, + ACTIONS(3495), 1, + anon_sym_for, + STATE(1073), 1, sym_scoped_type_identifier, - STATE(2896), 1, + STATE(1389), 1, sym_generic_type, - STATE(3457), 1, + STATE(1603), 1, + sym_for_lifetimes, + STATE(2244), 1, + aux_sym_function_modifiers_repeat1, + STATE(2373), 1, + sym_extern_modifier, + STATE(3480), 1, + sym_function_modifiers, + STATE(3633), 1, + sym_scoped_identifier, + STATE(3669), 1, sym_generic_type_with_turbofish, - STATE(3591), 1, + STATE(3680), 1, sym_bracketed_type, - STATE(3656), 1, - sym_scoped_identifier, - STATE(1064), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3401), 3, - anon_sym_default, + ACTIONS(3453), 2, anon_sym_gen, anon_sym_union, - ACTIONS(3405), 3, + STATE(1075), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3455), 3, sym_self, sym_super, sym_crate, - ACTIONS(3447), 3, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - STATE(3174), 6, - sym_higher_ranked_trait_bound, - sym_lifetime, - sym_array_type, + STATE(1423), 3, + sym_removed_trait_bound, + sym_function_type, sym_tuple_type, - sym_reference_type, - sym_pointer_type, - ACTIONS(3393), 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, - [2319] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1065), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1910), 9, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_LT, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(1912), 39, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, + ACTIONS(1270), 4, 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, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [2382] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1066), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2786), 9, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_LT, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(2788), 39, + anon_sym_safe, + ACTIONS(3447), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -114951,103 +116470,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_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, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [2445] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [2604] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1067), 2, + ACTIONS(3501), 1, + anon_sym_BANG, + ACTIONS(3503), 1, + anon_sym_COLON_COLON, + STATE(1076), 2, sym_line_comment, sym_block_comment, - ACTIONS(2078), 9, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, + ACTIONS(3499), 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(3497), 29, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(2080), 39, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_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, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [2508] = 9, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + anon_sym_LT2, + [2671] = 9, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3354), 1, + ACTIONS(3368), 1, anon_sym_LPAREN, - ACTIONS(3362), 1, + ACTIONS(3376), 1, anon_sym_LT2, - STATE(1109), 1, + STATE(1386), 1, sym_type_arguments, - STATE(1115), 1, + STATE(1392), 1, sym_parameters, - STATE(1068), 2, + STATE(1077), 2, sym_line_comment, sym_block_comment, - ACTIONS(3451), 17, + ACTIONS(3507), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -115065,7 +116564,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3449), 27, + ACTIONS(3505), 27, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACK, @@ -115093,19 +116592,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [2579] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [2742] = 9, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3457), 1, - anon_sym_BANG, - ACTIONS(3459), 1, - anon_sym_COLON_COLON, - STATE(1069), 2, + ACTIONS(3368), 1, + anon_sym_LPAREN, + ACTIONS(3376), 1, + anon_sym_LT2, + STATE(1386), 1, + sym_type_arguments, + STATE(1392), 1, + sym_parameters, + STATE(1078), 2, sym_line_comment, sym_block_comment, - ACTIONS(3455), 17, + ACTIONS(3511), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -115123,9 +116626,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3453), 29, + ACTIONS(3509), 27, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_RBRACK, @@ -115152,26 +116654,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - anon_sym_LT2, - [2646] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [2813] = 27, + ACTIONS(29), 1, + anon_sym_LT, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1070), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2890), 9, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_LT, - anon_sym_COMMA, + ACTIONS(1284), 1, + anon_sym_extern, + ACTIONS(3182), 1, + anon_sym_QMARK, + ACTIONS(3194), 1, + anon_sym_fn, + ACTIONS(3461), 1, + anon_sym_LPAREN, + ACTIONS(3465), 1, anon_sym_COLON_COLON, - anon_sym_POUND, + ACTIONS(3467), 1, + anon_sym_default, + ACTIONS(3473), 1, sym_metavariable, - ACTIONS(2892), 39, + ACTIONS(3513), 1, + sym_identifier, + ACTIONS(3515), 1, + anon_sym_for, + STATE(1605), 1, + sym_for_lifetimes, + STATE(1606), 1, + sym_scoped_type_identifier, + STATE(1646), 1, + sym_generic_type, + STATE(2244), 1, + aux_sym_function_modifiers_repeat1, + STATE(2373), 1, + sym_extern_modifier, + STATE(3624), 1, + sym_function_modifiers, + STATE(3660), 1, + sym_scoped_identifier, + STATE(3678), 1, + sym_generic_type_with_turbofish, + STATE(3684), 1, + sym_bracketed_type, + ACTIONS(3469), 2, + anon_sym_gen, + anon_sym_union, + STATE(1079), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3471), 3, + sym_self, + sym_super, + sym_crate, + STATE(1736), 3, + sym_removed_trait_bound, + sym_function_type, + sym_tuple_type, + ACTIONS(1270), 4, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + anon_sym_safe, + ACTIONS(3463), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -115189,90 +116734,66 @@ 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, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [2709] = 27, + [2920] = 24, ACTIONS(29), 1, anon_sym_LT, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(1279), 1, - anon_sym_extern, - ACTIONS(3192), 1, - anon_sym_QMARK, - ACTIONS(3204), 1, - anon_sym_fn, - ACTIONS(3461), 1, - sym_identifier, - ACTIONS(3463), 1, + ACTIONS(1604), 1, + anon_sym_LBRACK, + ACTIONS(3421), 1, anon_sym_LPAREN, - ACTIONS(3467), 1, + ACTIONS(3425), 1, anon_sym_COLON_COLON, - ACTIONS(3469), 1, - anon_sym_default, - ACTIONS(3471), 1, - anon_sym_for, - ACTIONS(3477), 1, + ACTIONS(3433), 1, sym_metavariable, - STATE(1068), 1, + ACTIONS(3479), 1, + sym_identifier, + ACTIONS(3483), 1, + anon_sym_STAR, + ACTIONS(3487), 1, + anon_sym_AMP, + ACTIONS(3489), 1, + anon_sym_SQUOTE, + ACTIONS(3491), 1, + anon_sym_for, + STATE(2549), 1, + sym_where_predicate, + STATE(2788), 1, sym_scoped_type_identifier, - STATE(1112), 1, + STATE(2867), 1, sym_generic_type, - STATE(1623), 1, - sym_for_lifetimes, - STATE(2252), 1, - aux_sym_function_modifiers_repeat1, - STATE(2447), 1, - sym_extern_modifier, - STATE(3455), 1, - sym_function_modifiers, - STATE(3605), 1, - sym_scoped_identifier, - STATE(3640), 1, + STATE(3482), 1, sym_generic_type_with_turbofish, - STATE(3651), 1, + STATE(3488), 1, + sym_scoped_identifier, + STATE(3621), 1, sym_bracketed_type, - ACTIONS(3473), 2, - anon_sym_gen, - anon_sym_union, - STATE(1071), 2, + STATE(1080), 2, sym_line_comment, sym_block_comment, - ACTIONS(1265), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(3475), 3, + ACTIONS(3429), 3, + anon_sym_default, + anon_sym_gen, + anon_sym_union, + ACTIONS(3431), 3, sym_self, sym_super, sym_crate, - STATE(1429), 3, - sym_removed_trait_bound, - sym_function_type, + ACTIONS(3517), 3, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + STATE(3418), 6, + sym_higher_ranked_trait_bound, + sym_lifetime, + sym_array_type, sym_tuple_type, - ACTIONS(3465), 17, + sym_reference_type, + sym_pointer_type, + ACTIONS(3485), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -115290,68 +116811,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [2815] = 27, + [3021] = 27, ACTIONS(29), 1, anon_sym_LT, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(1237), 1, + ACTIONS(1242), 1, anon_sym_QMARK, - ACTIONS(1271), 1, + ACTIONS(1276), 1, anon_sym_fn, - ACTIONS(1279), 1, + ACTIONS(1284), 1, anon_sym_extern, - ACTIONS(3389), 1, + ACTIONS(3421), 1, anon_sym_LPAREN, - ACTIONS(3397), 1, + ACTIONS(3425), 1, anon_sym_COLON_COLON, - ACTIONS(3407), 1, + ACTIONS(3427), 1, + anon_sym_default, + ACTIONS(3433), 1, sym_metavariable, - ACTIONS(3479), 1, + ACTIONS(3519), 1, sym_identifier, - ACTIONS(3483), 1, - anon_sym_default, - ACTIONS(3485), 1, + ACTIONS(3521), 1, anon_sym_for, - STATE(1594), 1, + STATE(1591), 1, sym_for_lifetimes, - STATE(1986), 1, + STATE(1997), 1, sym_scoped_type_identifier, - STATE(2019), 1, + STATE(2020), 1, sym_generic_type, - STATE(2252), 1, + STATE(2244), 1, aux_sym_function_modifiers_repeat1, - STATE(2447), 1, + STATE(2373), 1, sym_extern_modifier, - STATE(3457), 1, + STATE(3482), 1, sym_generic_type_with_turbofish, - STATE(3477), 1, - sym_function_modifiers, + STATE(3488), 1, + sym_scoped_identifier, STATE(3591), 1, + sym_function_modifiers, + STATE(3621), 1, sym_bracketed_type, - STATE(3656), 1, - sym_scoped_identifier, - ACTIONS(3401), 2, + ACTIONS(3429), 2, anon_sym_gen, anon_sym_union, - STATE(1072), 2, + STATE(1081), 2, sym_line_comment, sym_block_comment, - ACTIONS(1265), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(3405), 3, + ACTIONS(3431), 3, sym_self, sym_super, sym_crate, - STATE(2035), 3, + STATE(2078), 3, sym_removed_trait_bound, sym_function_type, sym_tuple_type, - ACTIONS(3481), 17, + ACTIONS(1270), 4, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + anon_sym_safe, + ACTIONS(3423), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -115369,22 +116891,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [2921] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [3128] = 8, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1073), 2, + ACTIONS(3384), 1, + anon_sym_COLON_COLON, + ACTIONS(3523), 1, + anon_sym_BANG, + STATE(1082), 2, sym_line_comment, sym_block_comment, - ACTIONS(3421), 16, + ACTIONS(3525), 7, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + anon_sym_safe, + ACTIONS(3380), 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, @@ -115394,13 +116927,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3423), 31, + anon_sym_as, + ACTIONS(3378), 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, @@ -115421,98 +116952,42 @@ 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_SQUOTE, - anon_sym_as, - anon_sym_else, - [2983] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [3197] = 9, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3487), 1, - anon_sym_POUND, - STATE(1494), 1, - sym_attribute_item, - STATE(1074), 3, - sym_line_comment, - sym_block_comment, - aux_sym_enum_variant_list_repeat1, - ACTIONS(759), 11, - 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_integer_literal, - sym_metavariable, - ACTIONS(3288), 33, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_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_pub, - anon_sym_union, - anon_sym_unsafe, - anon_sym_extern, - anon_sym_dyn, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [3049] = 5, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1075), 2, + ACTIONS(3368), 1, + anon_sym_LPAREN, + ACTIONS(3376), 1, + anon_sym_LT2, + STATE(1386), 1, + sym_type_arguments, + STATE(1392), 1, + sym_parameters, + STATE(1083), 2, sym_line_comment, sym_block_comment, - ACTIONS(3413), 16, + ACTIONS(3529), 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(3415), 31, + ACTIONS(3527), 27, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_RBRACK, @@ -115529,46 +117004,76 @@ 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, - [3111] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [3268] = 24, + ACTIONS(29), 1, + anon_sym_LT, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3494), 1, - anon_sym_RBRACE, - STATE(1076), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3492), 15, - sym__raw_string_literal_start, - sym_float_literal, - anon_sym_LPAREN, + ACTIONS(1604), 1, anon_sym_LBRACK, - anon_sym_DASH, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_DOT_DOT_EQ, + ACTIONS(3421), 1, + anon_sym_LPAREN, + ACTIONS(3425), 1, anon_sym_COLON_COLON, - anon_sym_POUND, - sym_integer_literal, - aux_sym_string_literal_token1, - sym_char_literal, + ACTIONS(3433), 1, sym_metavariable, - ACTIONS(3490), 31, + ACTIONS(3479), 1, + sym_identifier, + ACTIONS(3483), 1, + anon_sym_STAR, + ACTIONS(3487), 1, + anon_sym_AMP, + ACTIONS(3489), 1, + anon_sym_SQUOTE, + ACTIONS(3491), 1, + anon_sym_for, + STATE(2549), 1, + sym_where_predicate, + STATE(2788), 1, + sym_scoped_type_identifier, + STATE(2867), 1, + sym_generic_type, + STATE(3482), 1, + sym_generic_type_with_turbofish, + STATE(3488), 1, + sym_scoped_identifier, + STATE(3621), 1, + sym_bracketed_type, + STATE(1084), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3429), 3, + anon_sym_default, + anon_sym_gen, + anon_sym_union, + ACTIONS(3431), 3, + sym_self, + sym_super, + sym_crate, + ACTIONS(3531), 3, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + STATE(3418), 6, + sym_higher_ranked_trait_bound, + sym_lifetime, + sym_array_type, + sym_tuple_type, + sym_reference_type, + sym_pointer_type, + ACTIONS(3485), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -115586,46 +117091,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym__, - anon_sym_DOT_DOT, + [3369] = 7, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(3533), 1, + anon_sym_POUND, + STATE(1377), 1, + sym_attribute_item, + STATE(1085), 3, + sym_line_comment, + sym_block_comment, + aux_sym_enum_variant_list_repeat1, + ACTIONS(758), 11, + 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_integer_literal, + sym_metavariable, + ACTIONS(3314), 34, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_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_pub, anon_sym_union, - anon_sym_ref, - sym_mutable_specifier, - anon_sym_true, - anon_sym_false, + anon_sym_unsafe, + anon_sym_extern, + anon_sym_safe, + anon_sym_dyn, sym_identifier, sym_self, sym_super, sym_crate, - [3175] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [3436] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1077), 2, + ACTIONS(3540), 1, + anon_sym_BANG, + ACTIONS(3542), 1, + anon_sym_COLON_COLON, + STATE(1086), 2, sym_line_comment, sym_block_comment, - ACTIONS(3457), 16, + ACTIONS(3538), 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(3459), 31, + ACTIONS(3536), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -115644,142 +117200,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_COMMA, - anon_sym_COLON_COLON, anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [3237] = 9, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + anon_sym_LT2, + [3503] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3358), 1, - anon_sym_BANG, - ACTIONS(3496), 1, - anon_sym_LBRACE, - ACTIONS(3498), 1, - anon_sym_COLON_COLON, - STATE(1503), 1, - sym_field_initializer_list, - STATE(1078), 2, + STATE(1087), 2, sym_line_comment, sym_block_comment, - ACTIONS(1429), 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(1431), 28, + ACTIONS(2988), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_as, - anon_sym_else, - [3307] = 27, - ACTIONS(29), 1, anon_sym_LT, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(1273), 1, - anon_sym_for, - ACTIONS(1279), 1, - anon_sym_extern, - ACTIONS(3192), 1, - anon_sym_QMARK, - ACTIONS(3204), 1, - anon_sym_fn, - ACTIONS(3463), 1, - anon_sym_LPAREN, - ACTIONS(3467), 1, anon_sym_COLON_COLON, - ACTIONS(3469), 1, - anon_sym_default, - ACTIONS(3477), 1, + anon_sym_POUND, sym_metavariable, - ACTIONS(3500), 1, - sym_identifier, - STATE(1060), 1, - sym_scoped_type_identifier, - STATE(1177), 1, - sym_generic_type, - STATE(1623), 1, - sym_for_lifetimes, - STATE(2252), 1, - aux_sym_function_modifiers_repeat1, - STATE(2447), 1, - sym_extern_modifier, - STATE(3455), 1, - sym_function_modifiers, - STATE(3605), 1, - sym_scoped_identifier, - STATE(3640), 1, - sym_generic_type_with_turbofish, - STATE(3651), 1, - sym_bracketed_type, - ACTIONS(3473), 2, - anon_sym_gen, - anon_sym_union, - STATE(1079), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1265), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(3475), 3, - sym_self, - sym_super, - sym_crate, - STATE(1486), 3, - sym_removed_trait_bound, - sym_function_type, - sym_tuple_type, - ACTIONS(3465), 17, + ACTIONS(2990), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -115797,68 +117245,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [3413] = 27, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(1273), 1, - anon_sym_for, - ACTIONS(1279), 1, - anon_sym_extern, - ACTIONS(3154), 1, - anon_sym_QMARK, - ACTIONS(3166), 1, - anon_sym_fn, - ACTIONS(3502), 1, - sym_identifier, - ACTIONS(3504), 1, - anon_sym_LPAREN, - ACTIONS(3508), 1, - anon_sym_COLON_COLON, - ACTIONS(3510), 1, + anon_sym_async, + anon_sym_const, anon_sym_default, - ACTIONS(3516), 1, - sym_metavariable, - STATE(1580), 1, - sym_scoped_type_identifier, - STATE(1624), 1, - sym_for_lifetimes, - STATE(1673), 1, - sym_generic_type, - STATE(2252), 1, - aux_sym_function_modifiers_repeat1, - STATE(2447), 1, - sym_extern_modifier, - STATE(3595), 1, - sym_function_modifiers, - STATE(3631), 1, - sym_scoped_identifier, - STATE(3649), 1, - sym_generic_type_with_turbofish, - STATE(3655), 1, - sym_bracketed_type, - ACTIONS(3512), 2, + 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, - STATE(1080), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1265), 3, - anon_sym_async, - anon_sym_const, anon_sym_unsafe, - ACTIONS(3514), 3, + anon_sym_use, + anon_sym_extern, + anon_sym_safe, + sym_identifier, sym_self, sym_super, sym_crate, - STATE(1700), 3, - sym_removed_trait_bound, - sym_function_type, - sym_tuple_type, - ACTIONS(3506), 17, + [3565] = 5, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + STATE(1088), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2427), 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(2429), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -115876,68 +117302,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [3519] = 27, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(1279), 1, - anon_sym_extern, - ACTIONS(3154), 1, - anon_sym_QMARK, - ACTIONS(3166), 1, - anon_sym_fn, - ACTIONS(3504), 1, - anon_sym_LPAREN, - ACTIONS(3508), 1, - anon_sym_COLON_COLON, - ACTIONS(3510), 1, + anon_sym_async, + anon_sym_const, anon_sym_default, - ACTIONS(3516), 1, - sym_metavariable, - ACTIONS(3518), 1, - sym_identifier, - ACTIONS(3520), 1, - anon_sym_for, - STATE(1573), 1, - sym_scoped_type_identifier, - STATE(1624), 1, - sym_for_lifetimes, - STATE(1679), 1, - sym_generic_type, - STATE(2252), 1, - aux_sym_function_modifiers_repeat1, - STATE(2447), 1, - sym_extern_modifier, - STATE(3595), 1, - sym_function_modifiers, - STATE(3631), 1, - sym_scoped_identifier, - STATE(3649), 1, - sym_generic_type_with_turbofish, - STATE(3655), 1, - sym_bracketed_type, - ACTIONS(3512), 2, + 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, - STATE(1081), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1265), 3, - anon_sym_async, - anon_sym_const, anon_sym_unsafe, - ACTIONS(3514), 3, + anon_sym_use, + anon_sym_extern, + anon_sym_safe, + sym_identifier, sym_self, sym_super, sym_crate, - STATE(1813), 3, - sym_removed_trait_bound, - sym_function_type, - sym_tuple_type, - ACTIONS(3506), 17, + [3627] = 5, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + STATE(1089), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2445), 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(2447), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -115955,33 +117359,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [3625] = 6, - ACTIONS(103), 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_safe, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [3689] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3526), 1, - anon_sym_RBRACE, - STATE(1082), 2, + STATE(1090), 2, sym_line_comment, sym_block_comment, - ACTIONS(3524), 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(3052), 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(3522), 31, + ACTIONS(3054), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -115999,199 +117416,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_true, - anon_sym_false, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + anon_sym_safe, sym_identifier, sym_self, sym_super, sym_crate, - [3689] = 8, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [3751] = 5, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3346), 1, - anon_sym_COLON_COLON, - ACTIONS(3528), 1, - anon_sym_BANG, - STATE(1083), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3530), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - ACTIONS(3342), 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(3340), 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, - [3757] = 5, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1084), 2, + STATE(1091), 2, sym_line_comment, sym_block_comment, - ACTIONS(3437), 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(3439), 31, + ACTIONS(2546), 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, - [3819] = 27, - ACTIONS(29), 1, anon_sym_LT, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(1237), 1, - anon_sym_QMARK, - ACTIONS(1271), 1, - anon_sym_fn, - ACTIONS(1273), 1, - anon_sym_for, - ACTIONS(1279), 1, - anon_sym_extern, - ACTIONS(3389), 1, - anon_sym_LPAREN, - ACTIONS(3397), 1, anon_sym_COLON_COLON, - ACTIONS(3407), 1, + anon_sym_POUND, sym_metavariable, - ACTIONS(3483), 1, - anon_sym_default, - ACTIONS(3532), 1, - sym_identifier, - STATE(1594), 1, - sym_for_lifetimes, - STATE(1984), 1, - sym_scoped_type_identifier, - STATE(2022), 1, - sym_generic_type, - STATE(2252), 1, - aux_sym_function_modifiers_repeat1, - STATE(2447), 1, - sym_extern_modifier, - STATE(3457), 1, - sym_generic_type_with_turbofish, - STATE(3477), 1, - sym_function_modifiers, - STATE(3591), 1, - sym_bracketed_type, - STATE(3656), 1, - sym_scoped_identifier, - ACTIONS(3401), 2, - anon_sym_gen, - anon_sym_union, - STATE(1085), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1265), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(3405), 3, - sym_self, - sym_super, - sym_crate, - STATE(2047), 3, - sym_removed_trait_bound, - sym_function_type, - sym_tuple_type, - ACTIONS(3481), 17, + ACTIONS(2548), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -116209,92 +117473,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [3925] = 12, - ACTIONS(19), 1, - anon_sym_LBRACE, - ACTIONS(103), 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_safe, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [3813] = 5, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3346), 1, - anon_sym_COLON_COLON, - ACTIONS(3348), 1, - anon_sym_SQUOTE, - ACTIONS(3528), 1, - anon_sym_BANG, - ACTIONS(3534), 1, - anon_sym_move, - STATE(409), 1, - sym_block, - STATE(3676), 1, - sym_label, - STATE(1086), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3342), 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(3340), 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, - [4000] = 5, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1087), 2, + STATE(1092), 2, sym_line_comment, sym_block_comment, - ACTIONS(3538), 13, + ACTIONS(2578), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_EQ, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, anon_sym_LT, anon_sym_COLON_COLON, - anon_sym_SQUOTE, + anon_sym_POUND, sym_metavariable, - ACTIONS(3536), 33, + ACTIONS(2580), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -116315,42 +117533,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_where, + anon_sym_use, anon_sym_extern, - anon_sym_dyn, + anon_sym_safe, sym_identifier, sym_self, sym_super, sym_crate, - [4061] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [3875] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1088), 2, + STATE(1093), 2, sym_line_comment, sym_block_comment, - ACTIONS(3542), 13, + ACTIONS(2582), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_EQ, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, anon_sym_LT, anon_sym_COLON_COLON, - anon_sym_SQUOTE, + anon_sym_POUND, sym_metavariable, - ACTIONS(3540), 33, + ACTIONS(2584), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -116371,85 +117590,35 @@ 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_where, + anon_sym_use, anon_sym_extern, - anon_sym_dyn, + anon_sym_safe, sym_identifier, sym_self, sym_super, sym_crate, - [4122] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [3937] = 5, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3544), 1, - anon_sym_LBRACE, - STATE(1089), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3413), 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(3415), 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, - [4185] = 5, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1090), 2, + STATE(1094), 2, sym_line_comment, sym_block_comment, - ACTIONS(3548), 7, + ACTIONS(2586), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -116457,7 +117626,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(3546), 39, + ACTIONS(2588), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -116493,261 +117662,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, + anon_sym_safe, sym_identifier, sym_self, sym_super, sym_crate, - [4246] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3550), 1, - anon_sym_LBRACE, - STATE(1091), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3437), 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(3439), 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, - [4309] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1092), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3554), 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(3552), 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, - [4370] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [3999] = 5, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1093), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3558), 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(3556), 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, - [4431] = 6, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3560), 1, - anon_sym_LBRACE, - STATE(1094), 2, + STATE(1095), 2, sym_line_comment, sym_block_comment, - ACTIONS(3457), 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(3459), 29, + ACTIONS(2590), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_as, - anon_sym_else, - [4494] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1095), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3492), 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(3490), 31, + ACTIONS(2592), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -116765,101 +117701,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_true, - anon_sym_false, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + anon_sym_safe, sym_identifier, sym_self, sym_super, sym_crate, - [4555] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [4061] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, STATE(1096), 2, sym_line_comment, sym_block_comment, - ACTIONS(1583), 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(1585), 31, + ACTIONS(2594), 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_COLON, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [4616] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1097), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3524), 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(3522), 31, + ACTIONS(2596), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -116877,29 +117758,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_true, - anon_sym_false, - sym_identifier, - sym_self, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + anon_sym_safe, + sym_identifier, + sym_self, sym_super, sym_crate, - [4677] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [4123] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1098), 2, + STATE(1097), 2, sym_line_comment, sym_block_comment, - ACTIONS(1814), 7, + ACTIONS(2598), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -116907,7 +117797,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1816), 39, + ACTIONS(2600), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -116943,62 +117833,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, + anon_sym_safe, sym_identifier, sym_self, sym_super, sym_crate, - [4738] = 21, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [4185] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(1655), 1, - anon_sym_DASH, - ACTIONS(1681), 1, - aux_sym_string_literal_token1, - ACTIONS(1689), 1, - sym__raw_string_literal_start, - ACTIONS(3320), 1, - anon_sym_if, - ACTIONS(3562), 1, - sym_identifier, - ACTIONS(3566), 1, - anon_sym_COLON_COLON, - ACTIONS(3570), 1, - sym_metavariable, - STATE(2733), 1, - sym_scoped_identifier, - STATE(2923), 1, - sym__literal_pattern, - STATE(3587), 1, - sym_bracketed_type, - STATE(3600), 1, - sym_generic_type_with_turbofish, - ACTIONS(1683), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3318), 2, - anon_sym_EQ_GT, - anon_sym_PIPE, - STATE(1099), 2, + STATE(1098), 2, sym_line_comment, sym_block_comment, - ACTIONS(1679), 3, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - ACTIONS(3568), 3, - sym_self, - sym_super, - sym_crate, - STATE(2389), 4, - sym_negative_literal, - sym_string_literal, - sym_raw_string_literal, - sym_boolean_literal, - ACTIONS(3564), 20, + ACTIONS(2602), 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(2604), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -117016,189 +117872,152 @@ 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, - [4831] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + anon_sym_safe, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [4247] = 5, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3572), 1, - anon_sym_COLON_COLON, - STATE(1100), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3427), 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(3425), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [4894] = 6, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3574), 1, - anon_sym_COLON_COLON, - STATE(1101), 2, + STATE(1099), 2, sym_line_comment, sym_block_comment, - ACTIONS(3427), 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(3425), 30, + ACTIONS(2606), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [4957] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2608), 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_safe, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [4309] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3576), 1, - anon_sym_COLON_COLON, - STATE(1102), 2, + STATE(1100), 2, sym_line_comment, sym_block_comment, - ACTIONS(3427), 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(3425), 30, + ACTIONS(2085), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [5020] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2087), 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_safe, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [4371] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1103), 2, + STATE(1101), 2, sym_line_comment, sym_block_comment, - ACTIONS(2540), 7, + ACTIONS(2630), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -117206,7 +118025,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2542), 39, + ACTIONS(2632), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -117242,19 +118061,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, + anon_sym_safe, sym_identifier, sym_self, sym_super, sym_crate, - [5081] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [4433] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1104), 2, + STATE(1102), 2, sym_line_comment, sym_block_comment, - ACTIONS(2600), 7, + ACTIONS(2634), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -117262,7 +118082,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2602), 39, + ACTIONS(2636), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -117298,62 +118118,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, + anon_sym_safe, sym_identifier, sym_self, sym_super, sym_crate, - [5142] = 21, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [4495] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(1655), 1, - anon_sym_DASH, - ACTIONS(1681), 1, - aux_sym_string_literal_token1, - ACTIONS(1689), 1, - sym__raw_string_literal_start, - ACTIONS(3332), 1, - anon_sym_if, - ACTIONS(3566), 1, - anon_sym_COLON_COLON, - ACTIONS(3578), 1, - sym_identifier, - ACTIONS(3584), 1, - sym_metavariable, - STATE(2791), 1, - sym_scoped_identifier, - STATE(3009), 1, - sym__literal_pattern, - STATE(3587), 1, - sym_bracketed_type, - STATE(3600), 1, - sym_generic_type_with_turbofish, - ACTIONS(1683), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3330), 2, - anon_sym_EQ_GT, - anon_sym_PIPE, - STATE(1105), 2, + STATE(1103), 2, sym_line_comment, sym_block_comment, - ACTIONS(1679), 3, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - ACTIONS(3582), 3, - sym_self, - sym_super, - sym_crate, - STATE(2389), 4, - sym_negative_literal, - sym_string_literal, - sym_raw_string_literal, - sym_boolean_literal, - ACTIONS(3580), 20, + ACTIONS(2638), 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(2640), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -117371,24 +118157,45 @@ 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, - [5235] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + anon_sym_safe, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [4557] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1106), 2, + STATE(1104), 2, sym_line_comment, sym_block_comment, - ACTIONS(3588), 15, + ACTIONS(3501), 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, @@ -117398,7 +118205,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3586), 31, + ACTIONS(3503), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -117430,58 +118237,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [5296] = 21, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [4619] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(1655), 1, - anon_sym_DASH, - ACTIONS(1681), 1, - aux_sym_string_literal_token1, - ACTIONS(1689), 1, - sym__raw_string_literal_start, - ACTIONS(3308), 1, - anon_sym_if, - ACTIONS(3566), 1, - anon_sym_COLON_COLON, - ACTIONS(3590), 1, - sym_identifier, - ACTIONS(3596), 1, - sym_metavariable, - STATE(2613), 1, - sym_scoped_identifier, - STATE(3021), 1, - sym__literal_pattern, - STATE(3587), 1, - sym_bracketed_type, - STATE(3600), 1, - sym_generic_type_with_turbofish, - ACTIONS(1683), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3306), 2, - anon_sym_EQ_GT, - anon_sym_PIPE, - STATE(1107), 2, + STATE(1105), 2, sym_line_comment, sym_block_comment, - ACTIONS(1679), 3, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - ACTIONS(3594), 3, + ACTIONS(2648), 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(2650), 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_safe, + sym_identifier, sym_self, sym_super, sym_crate, - STATE(2389), 4, - sym_negative_literal, - sym_string_literal, - sym_raw_string_literal, - sym_boolean_literal, - ACTIONS(3592), 20, + [4681] = 5, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + STATE(1106), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2652), 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(2654), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -117499,479 +118328,46 @@ 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, - [5389] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + anon_sym_safe, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [4743] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1108), 2, + STATE(1107), 2, sym_line_comment, sym_block_comment, - ACTIONS(3600), 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(3598), 31, + ACTIONS(2656), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [5450] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1109), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3604), 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(3602), 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, - [5511] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1110), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3300), 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(3302), 31, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [5572] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3610), 1, - anon_sym_DASH_GT, - STATE(1111), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3608), 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(3606), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [5635] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3576), 1, - anon_sym_COLON_COLON, - STATE(1112), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3451), 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(3449), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [5698] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3576), 1, - anon_sym_COLON_COLON, - STATE(1113), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3443), 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(3441), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [5761] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3616), 1, - anon_sym_DASH_GT, - STATE(1114), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3614), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3612), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [5824] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3622), 1, - anon_sym_DASH_GT, - STATE(1115), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3620), 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(3618), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [5887] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1116), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2346), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, anon_sym_LT, anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2348), 39, + ACTIONS(2658), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118007,77 +118403,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, + anon_sym_safe, sym_identifier, sym_self, sym_super, sym_crate, - [5948] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [4805] = 5, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3624), 1, - anon_sym_else, - STATE(1466), 1, - sym_else_clause, - STATE(1117), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1353), 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(1351), 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_SQUOTE, - anon_sym_as, - [6013] = 5, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1118), 2, + STATE(1108), 2, sym_line_comment, sym_block_comment, - ACTIONS(2524), 7, + ACTIONS(3546), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -118085,7 +118424,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2526), 39, + ACTIONS(3544), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118121,19 +118460,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, + anon_sym_safe, sym_identifier, sym_self, sym_super, sym_crate, - [6074] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [4867] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1119), 2, + STATE(1109), 2, sym_line_comment, sym_block_comment, - ACTIONS(2528), 7, + ACTIONS(2660), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -118141,7 +118481,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2530), 39, + ACTIONS(2662), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118177,19 +118517,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, + anon_sym_safe, sym_identifier, sym_self, sym_super, sym_crate, - [6135] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [4929] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1120), 2, + STATE(1110), 2, sym_line_comment, sym_block_comment, - ACTIONS(2532), 7, + ACTIONS(2664), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -118197,7 +118538,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2534), 39, + ACTIONS(2666), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118233,19 +118574,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, + anon_sym_safe, sym_identifier, sym_self, sym_super, sym_crate, - [6196] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [4991] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1121), 2, + STATE(1111), 2, sym_line_comment, sym_block_comment, - ACTIONS(2614), 7, + ACTIONS(2668), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -118253,7 +118595,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2616), 39, + ACTIONS(2670), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118289,19 +118631,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, + anon_sym_safe, sym_identifier, sym_self, sym_super, sym_crate, - [6257] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [5053] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1122), 2, + STATE(1112), 2, sym_line_comment, sym_block_comment, - ACTIONS(2618), 7, + ACTIONS(2672), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -118309,7 +118652,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2620), 39, + ACTIONS(2674), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118345,19 +118688,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, + anon_sym_safe, sym_identifier, sym_self, sym_super, sym_crate, - [6318] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [5115] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1123), 2, + STATE(1113), 2, sym_line_comment, sym_block_comment, - ACTIONS(2622), 7, + ACTIONS(2680), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -118365,7 +118709,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2624), 39, + ACTIONS(2682), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118401,19 +118745,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, + anon_sym_safe, sym_identifier, sym_self, sym_super, sym_crate, - [6379] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [5177] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1124), 2, + STATE(1114), 2, sym_line_comment, sym_block_comment, - ACTIONS(2630), 7, + ACTIONS(2089), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -118421,7 +118766,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2632), 39, + ACTIONS(2091), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118457,19 +118802,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, + anon_sym_safe, sym_identifier, sym_self, sym_super, sym_crate, - [6440] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [5239] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1125), 2, + STATE(1115), 2, sym_line_comment, sym_block_comment, - ACTIONS(2634), 7, + ACTIONS(2688), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -118477,7 +118823,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2636), 39, + ACTIONS(2690), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118513,28 +118859,143 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, + anon_sym_safe, sym_identifier, sym_self, sym_super, sym_crate, - [6501] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [5301] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1126), 2, + STATE(1116), 2, sym_line_comment, sym_block_comment, - ACTIONS(2638), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, + ACTIONS(3540), 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_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(2640), 39, - anon_sym_u8, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3542), 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, + [5363] = 5, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + STATE(1117), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3415), 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(3417), 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, + [5425] = 5, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + STATE(1118), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2700), 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(2702), 40, + anon_sym_u8, anon_sym_i8, anon_sym_u16, anon_sym_i16, @@ -118569,19 +119030,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, + anon_sym_safe, sym_identifier, sym_self, sym_super, sym_crate, - [6562] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [5487] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1127), 2, + STATE(1119), 2, sym_line_comment, sym_block_comment, - ACTIONS(2642), 7, + ACTIONS(1915), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -118589,7 +119051,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2644), 39, + ACTIONS(1917), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118625,19 +119087,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, + anon_sym_safe, sym_identifier, sym_self, sym_super, sym_crate, - [6623] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [5549] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1128), 2, + STATE(1120), 2, sym_line_comment, sym_block_comment, - ACTIONS(2650), 7, + ACTIONS(2704), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -118645,7 +119108,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2652), 39, + ACTIONS(2706), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118681,19 +119144,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, + anon_sym_safe, sym_identifier, sym_self, sym_super, sym_crate, - [6684] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [5611] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1129), 2, + STATE(1121), 2, sym_line_comment, sym_block_comment, - ACTIONS(2666), 7, + ACTIONS(2708), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -118701,7 +119165,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2668), 39, + ACTIONS(2710), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118737,19 +119201,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, + anon_sym_safe, sym_identifier, sym_self, sym_super, sym_crate, - [6745] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [5673] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1130), 2, + STATE(1122), 2, sym_line_comment, sym_block_comment, - ACTIONS(2672), 7, + ACTIONS(2712), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -118757,7 +119222,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2674), 39, + ACTIONS(2714), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118793,19 +119258,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, + anon_sym_safe, sym_identifier, sym_self, sym_super, sym_crate, - [6806] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [5735] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1131), 2, + STATE(1123), 2, sym_line_comment, sym_block_comment, - ACTIONS(2682), 7, + ACTIONS(2716), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -118813,7 +119279,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2684), 39, + ACTIONS(2718), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118849,19 +119315,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, + anon_sym_safe, sym_identifier, sym_self, sym_super, sym_crate, - [6867] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [5797] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1132), 2, + STATE(1124), 2, sym_line_comment, sym_block_comment, - ACTIONS(2700), 7, + ACTIONS(2720), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -118869,7 +119336,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2702), 39, + ACTIONS(2722), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118905,19 +119372,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, + anon_sym_safe, sym_identifier, sym_self, sym_super, sym_crate, - [6928] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [5859] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1133), 2, + STATE(1125), 2, sym_line_comment, sym_block_comment, - ACTIONS(2704), 7, + ACTIONS(2724), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -118925,7 +119393,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2706), 39, + ACTIONS(2726), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118961,302 +119429,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, + anon_sym_safe, sym_identifier, sym_self, sym_super, sym_crate, - [6989] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [5921] = 5, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1134), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3411), 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(3409), 29, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - anon_sym_LT2, - [7050] = 5, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1135), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3628), 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(3626), 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_DASH_GT, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [7111] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3634), 1, - anon_sym_DASH_GT, - STATE(1136), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3632), 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(3630), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [7174] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3640), 1, - anon_sym_DASH_GT, - STATE(1137), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3638), 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(3636), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [7237] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3646), 1, - anon_sym_DASH_GT, - STATE(1138), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3644), 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(3642), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [7300] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1139), 2, + STATE(1126), 2, sym_line_comment, sym_block_comment, - ACTIONS(2818), 7, + ACTIONS(2728), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -119264,7 +119450,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2820), 39, + ACTIONS(2730), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -119300,19 +119486,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, + anon_sym_safe, sym_identifier, sym_self, sym_super, sym_crate, - [7361] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [5983] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1140), 2, + STATE(1127), 2, sym_line_comment, sym_block_comment, - ACTIONS(2822), 7, + ACTIONS(2732), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -119320,7 +119507,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2824), 39, + ACTIONS(2734), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -119356,19 +119543,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, + anon_sym_safe, sym_identifier, sym_self, sym_super, sym_crate, - [7422] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [6045] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1141), 2, + STATE(1128), 2, sym_line_comment, sym_block_comment, - ACTIONS(2826), 7, + ACTIONS(2740), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -119376,7 +119564,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2828), 39, + ACTIONS(2742), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -119412,19 +119600,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, + anon_sym_safe, sym_identifier, sym_self, sym_super, sym_crate, - [7483] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [6107] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1142), 2, + STATE(1129), 2, sym_line_comment, sym_block_comment, - ACTIONS(2834), 7, + ACTIONS(2752), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -119432,7 +119621,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2836), 39, + ACTIONS(2754), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -119468,19 +119657,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, + anon_sym_safe, sym_identifier, sym_self, sym_super, sym_crate, - [7544] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [6169] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1143), 2, + STATE(1130), 2, sym_line_comment, sym_block_comment, - ACTIONS(2838), 7, + ACTIONS(2768), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -119488,7 +119678,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2840), 39, + ACTIONS(2770), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -119524,19 +119714,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, + anon_sym_safe, sym_identifier, sym_self, sym_super, sym_crate, - [7605] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [6231] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1144), 2, + STATE(1131), 2, sym_line_comment, sym_block_comment, - ACTIONS(2862), 7, + ACTIONS(2772), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -119544,7 +119735,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2864), 39, + ACTIONS(2774), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -119580,19 +119771,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, + anon_sym_safe, sym_identifier, sym_self, sym_super, sym_crate, - [7666] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [6293] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1145), 2, + STATE(1132), 2, sym_line_comment, sym_block_comment, - ACTIONS(2866), 7, + ACTIONS(2780), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -119600,7 +119792,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2868), 39, + ACTIONS(2782), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -119636,19 +119828,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, + anon_sym_safe, sym_identifier, sym_self, sym_super, sym_crate, - [7727] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [6355] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1146), 2, + STATE(1133), 2, sym_line_comment, sym_block_comment, - ACTIONS(2870), 7, + ACTIONS(2784), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -119656,7 +119849,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2872), 39, + ACTIONS(2786), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -119692,19 +119885,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, + anon_sym_safe, sym_identifier, sym_self, sym_super, sym_crate, - [7788] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [6417] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1147), 2, + STATE(1134), 2, sym_line_comment, sym_block_comment, - ACTIONS(2874), 7, + ACTIONS(2816), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -119712,7 +119906,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2876), 39, + ACTIONS(2818), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -119748,19 +119942,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, + anon_sym_safe, sym_identifier, sym_self, sym_super, sym_crate, - [7849] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [6479] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1148), 2, + STATE(1135), 2, sym_line_comment, sym_block_comment, - ACTIONS(2878), 7, + ACTIONS(2828), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -119768,7 +119963,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2880), 39, + ACTIONS(2830), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -119804,19 +119999,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, + anon_sym_safe, sym_identifier, sym_self, sym_super, sym_crate, - [7910] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [6541] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1149), 2, + STATE(1136), 2, sym_line_comment, sym_block_comment, - ACTIONS(2894), 7, + ACTIONS(2832), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -119824,7 +120020,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2896), 39, + ACTIONS(2834), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -119860,19 +120056,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, + anon_sym_safe, sym_identifier, sym_self, sym_super, sym_crate, - [7971] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [6603] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1150), 2, + STATE(1137), 2, sym_line_comment, sym_block_comment, - ACTIONS(2898), 7, + ACTIONS(2836), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -119880,7 +120077,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2900), 39, + ACTIONS(2838), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -119916,19 +120113,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, + anon_sym_safe, sym_identifier, sym_self, sym_super, sym_crate, - [8032] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [6665] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1151), 2, + STATE(1138), 2, sym_line_comment, sym_block_comment, - ACTIONS(2902), 7, + ACTIONS(2844), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -119936,7 +120134,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2904), 39, + ACTIONS(2846), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -119972,19 +120170,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, + anon_sym_safe, sym_identifier, sym_self, sym_super, sym_crate, - [8093] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [6727] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1152), 2, + STATE(1139), 2, sym_line_comment, sym_block_comment, - ACTIONS(2906), 7, + ACTIONS(2880), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -119992,7 +120191,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2908), 39, + ACTIONS(2882), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -120028,19 +120227,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, + anon_sym_safe, sym_identifier, sym_self, sym_super, sym_crate, - [8154] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [6789] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1153), 2, + STATE(1140), 2, sym_line_comment, sym_block_comment, - ACTIONS(2910), 7, + ACTIONS(2888), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -120048,7 +120248,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2912), 39, + ACTIONS(2890), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -120084,19 +120284,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, + anon_sym_safe, sym_identifier, sym_self, sym_super, sym_crate, - [8215] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [6851] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1154), 2, + STATE(1141), 2, sym_line_comment, sym_block_comment, - ACTIONS(2918), 7, + ACTIONS(2892), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -120104,7 +120305,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2920), 39, + ACTIONS(2894), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -120140,19 +120341,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, + anon_sym_safe, sym_identifier, sym_self, sym_super, sym_crate, - [8276] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [6913] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1155), 2, + STATE(1142), 2, sym_line_comment, sym_block_comment, - ACTIONS(2926), 7, + ACTIONS(2900), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -120160,7 +120362,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2928), 39, + ACTIONS(2902), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -120196,19 +120398,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, + anon_sym_safe, sym_identifier, sym_self, sym_super, sym_crate, - [8337] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [6975] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1156), 2, + STATE(1143), 2, sym_line_comment, sym_block_comment, - ACTIONS(2938), 7, + ACTIONS(2904), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -120216,7 +120419,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2940), 39, + ACTIONS(2906), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -120252,19 +120455,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, + anon_sym_safe, sym_identifier, sym_self, sym_super, sym_crate, - [8398] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [7037] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1157), 2, + STATE(1144), 2, sym_line_comment, sym_block_comment, - ACTIONS(2978), 7, + ACTIONS(2908), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -120272,7 +120476,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2980), 39, + ACTIONS(2910), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -120308,19 +120512,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, + anon_sym_safe, sym_identifier, sym_self, sym_super, sym_crate, - [8459] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [7099] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1158), 2, + STATE(1145), 2, sym_line_comment, sym_block_comment, - ACTIONS(2986), 7, + ACTIONS(2924), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -120328,7 +120533,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2988), 39, + ACTIONS(2926), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -120364,19 +120569,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, + anon_sym_safe, sym_identifier, sym_self, sym_super, sym_crate, - [8520] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [7161] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1159), 2, + STATE(1146), 2, sym_line_comment, sym_block_comment, - ACTIONS(3002), 7, + ACTIONS(2928), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -120384,7 +120590,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(3004), 39, + ACTIONS(2930), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -120420,19 +120626,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, + anon_sym_safe, sym_identifier, sym_self, sym_super, sym_crate, - [8581] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [7223] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1160), 2, + STATE(1147), 2, sym_line_comment, sym_block_comment, - ACTIONS(3010), 7, + ACTIONS(2932), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -120440,7 +120647,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(3012), 39, + ACTIONS(2934), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -120476,19 +120683,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, + anon_sym_safe, sym_identifier, sym_self, sym_super, sym_crate, - [8642] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [7285] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1161), 2, + STATE(1148), 2, sym_line_comment, sym_block_comment, - ACTIONS(3022), 7, + ACTIONS(2936), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -120496,7 +120704,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(3024), 39, + ACTIONS(2938), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -120532,19 +120740,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, + anon_sym_safe, sym_identifier, sym_self, sym_super, sym_crate, - [8703] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [7347] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1162), 2, + STATE(1149), 2, sym_line_comment, sym_block_comment, - ACTIONS(3030), 7, + ACTIONS(2940), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -120552,7 +120761,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(3032), 39, + ACTIONS(2942), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -120588,19 +120797,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, + anon_sym_safe, sym_identifier, sym_self, sym_super, sym_crate, - [8764] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [7409] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1163), 2, + STATE(1150), 2, sym_line_comment, sym_block_comment, - ACTIONS(2610), 7, + ACTIONS(1939), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -120608,7 +120818,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2612), 39, + ACTIONS(1941), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -120644,19 +120854,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, + anon_sym_safe, sym_identifier, sym_self, sym_super, sym_crate, - [8825] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [7471] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1164), 2, + STATE(1151), 2, sym_line_comment, sym_block_comment, - ACTIONS(2286), 7, + ACTIONS(1965), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -120664,7 +120875,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2288), 39, + ACTIONS(1967), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -120700,19 +120911,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, + anon_sym_safe, sym_identifier, sym_self, sym_super, sym_crate, - [8886] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [7533] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1165), 2, + STATE(1152), 2, sym_line_comment, sym_block_comment, - ACTIONS(2298), 7, + ACTIONS(2944), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -120720,7 +120932,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2300), 39, + ACTIONS(2946), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -120756,19 +120968,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, + anon_sym_safe, sym_identifier, sym_self, sym_super, sym_crate, - [8947] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [7595] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1166), 2, + STATE(1153), 2, sym_line_comment, sym_block_comment, - ACTIONS(2626), 7, + ACTIONS(2948), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -120776,7 +120989,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2628), 39, + ACTIONS(2950), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -120812,19 +121025,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, + anon_sym_safe, sym_identifier, sym_self, sym_super, sym_crate, - [9008] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [7657] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1167), 2, + STATE(1154), 2, sym_line_comment, sym_block_comment, - ACTIONS(2754), 7, + ACTIONS(2952), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -120832,7 +121046,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2756), 39, + ACTIONS(2954), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -120868,19 +121082,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, + anon_sym_safe, sym_identifier, sym_self, sym_super, sym_crate, - [9069] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [7719] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1168), 2, + STATE(1155), 2, sym_line_comment, sym_block_comment, - ACTIONS(2766), 7, + ACTIONS(2956), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -120888,7 +121103,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2768), 39, + ACTIONS(2958), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -120924,19 +121139,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, + anon_sym_safe, sym_identifier, sym_self, sym_super, sym_crate, - [9130] = 5, - ACTIONS(103), 1, + [7781] = 5, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + STATE(1156), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2960), 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(2962), 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_safe, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [7843] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1169), 2, + STATE(1157), 2, sym_line_comment, sym_block_comment, - ACTIONS(2770), 7, + ACTIONS(2968), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -120944,7 +121217,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2772), 39, + ACTIONS(2970), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -120980,19 +121253,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, + anon_sym_safe, sym_identifier, sym_self, sym_super, sym_crate, - [9191] = 5, - ACTIONS(103), 1, + [7905] = 5, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + STATE(1158), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2972), 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(2974), 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_safe, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [7967] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1170), 2, + STATE(1159), 2, sym_line_comment, sym_block_comment, - ACTIONS(2778), 7, + ACTIONS(2976), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121000,7 +121331,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2780), 39, + ACTIONS(2978), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121036,19 +121367,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, + anon_sym_safe, sym_identifier, sym_self, sym_super, sym_crate, - [9252] = 5, - ACTIONS(103), 1, + [8029] = 5, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + STATE(1160), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2984), 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(2986), 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_safe, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [8091] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1171), 2, + STATE(1161), 2, sym_line_comment, sym_block_comment, - ACTIONS(2998), 7, + ACTIONS(3000), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121056,7 +121445,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(3000), 39, + ACTIONS(3002), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121092,19 +121481,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, + anon_sym_safe, sym_identifier, sym_self, sym_super, sym_crate, - [9313] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [8153] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1172), 2, + STATE(1162), 2, sym_line_comment, sym_block_comment, - ACTIONS(2382), 7, + ACTIONS(3004), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121112,7 +121502,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2384), 39, + ACTIONS(3006), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121148,19 +121538,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, + anon_sym_safe, sym_identifier, sym_self, sym_super, sym_crate, - [9374] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [8215] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1173), 2, + STATE(1163), 2, sym_line_comment, sym_block_comment, - ACTIONS(2386), 7, + ACTIONS(3008), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121168,7 +121559,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2388), 39, + ACTIONS(3010), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121204,19 +121595,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, + anon_sym_safe, sym_identifier, sym_self, sym_super, sym_crate, - [9435] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [8277] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1174), 2, + STATE(1164), 2, sym_line_comment, sym_block_comment, - ACTIONS(2536), 7, + ACTIONS(3012), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121224,7 +121616,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2538), 39, + ACTIONS(3014), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121260,245 +121652,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, + anon_sym_safe, sym_identifier, sym_self, sym_super, sym_crate, - [9496] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1175), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3650), 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(3648), 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, - [9557] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1176), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3654), 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(3652), 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_DASH_GT, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [9618] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3576), 1, - anon_sym_COLON_COLON, - STATE(1177), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3431), 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(3429), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [9681] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [8339] = 5, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3660), 1, - anon_sym_DASH_GT, - STATE(1178), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3658), 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(3656), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [9744] = 5, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1179), 2, + STATE(1165), 2, sym_line_comment, sym_block_comment, - ACTIONS(2982), 7, + ACTIONS(3028), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121506,7 +121673,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2984), 39, + ACTIONS(3030), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121542,27 +121709,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, + anon_sym_safe, sym_identifier, sym_self, sym_super, sym_crate, - [9805] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [8401] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1180), 2, + STATE(1166), 2, sym_line_comment, sym_block_comment, - ACTIONS(2990), 7, + ACTIONS(3550), 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(2992), 39, + ACTIONS(3548), 34, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121583,34 +121757,29 @@ 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_safe, + anon_sym_dyn, sym_identifier, sym_self, sym_super, sym_crate, - [9866] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [8463] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1181), 2, + STATE(1167), 2, sym_line_comment, sym_block_comment, - ACTIONS(3026), 7, + ACTIONS(2101), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121618,7 +121787,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(3028), 39, + ACTIONS(2103), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121654,19 +121823,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, + anon_sym_safe, sym_identifier, sym_self, sym_super, sym_crate, - [9927] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [8525] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1182), 2, + STATE(1168), 2, sym_line_comment, sym_block_comment, - ACTIONS(1802), 7, + ACTIONS(1825), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121674,7 +121844,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1804), 39, + ACTIONS(1827), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121710,19 +121880,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, + anon_sym_safe, sym_identifier, sym_self, sym_super, sym_crate, - [9988] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [8587] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1183), 2, + STATE(1169), 2, sym_line_comment, sym_block_comment, - ACTIONS(1894), 7, + ACTIONS(1845), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121730,7 +121901,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1896), 39, + ACTIONS(1847), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121766,19 +121937,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, + anon_sym_safe, sym_identifier, sym_self, sym_super, sym_crate, - [10049] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [8649] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1184), 2, + STATE(1170), 2, sym_line_comment, sym_block_comment, - ACTIONS(1902), 7, + ACTIONS(2065), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121786,7 +121958,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1904), 39, + ACTIONS(2067), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121822,19 +121994,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, + anon_sym_safe, sym_identifier, sym_self, sym_super, sym_crate, - [10110] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [8711] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1185), 2, + STATE(1171), 2, sym_line_comment, sym_block_comment, - ACTIONS(2026), 7, + ACTIONS(1837), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121842,7 +122015,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2028), 39, + ACTIONS(1839), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121878,19 +122051,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, + anon_sym_safe, sym_identifier, sym_self, sym_super, sym_crate, - [10171] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [8773] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1186), 2, + STATE(1172), 2, sym_line_comment, sym_block_comment, - ACTIONS(2030), 7, + ACTIONS(1841), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121898,7 +122072,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2032), 39, + ACTIONS(1843), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121934,75 +122108,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, + anon_sym_safe, sym_identifier, sym_self, sym_super, sym_crate, - [10232] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [8835] = 5, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1187), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2258), 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(2260), 39, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_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, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [10293] = 5, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1188), 2, + STATE(1173), 2, sym_line_comment, sym_block_comment, - ACTIONS(2262), 7, + ACTIONS(2117), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122010,7 +122129,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2264), 39, + ACTIONS(2119), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122046,75 +122165,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, + anon_sym_safe, sym_identifier, sym_self, sym_super, sym_crate, - [10354] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [8897] = 5, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1189), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2266), 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(2268), 39, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_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, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [10415] = 5, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1190), 2, + STATE(1174), 2, sym_line_comment, sym_block_comment, - ACTIONS(2270), 7, + ACTIONS(2213), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122122,7 +122186,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2272), 39, + ACTIONS(2215), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122158,19 +122222,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, + anon_sym_safe, sym_identifier, sym_self, sym_super, sym_crate, - [10476] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [8959] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1191), 2, + STATE(1175), 2, sym_line_comment, sym_block_comment, - ACTIONS(2274), 7, + ACTIONS(2217), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122178,7 +122243,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2276), 39, + ACTIONS(2219), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122214,19 +122279,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, + anon_sym_safe, sym_identifier, sym_self, sym_super, sym_crate, - [10537] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [9021] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1192), 2, + STATE(1176), 2, sym_line_comment, sym_block_comment, - ACTIONS(2278), 7, + ACTIONS(2225), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122234,7 +122300,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2280), 39, + ACTIONS(2227), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122270,19 +122336,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, + anon_sym_safe, sym_identifier, sym_self, sym_super, sym_crate, - [10598] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [9083] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1193), 2, + STATE(1177), 2, sym_line_comment, sym_block_comment, - ACTIONS(2282), 7, + ACTIONS(2610), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122290,7 +122357,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2284), 39, + ACTIONS(2612), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122326,19 +122393,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, + anon_sym_safe, sym_identifier, sym_self, sym_super, sym_crate, - [10659] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [9145] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1194), 2, + STATE(1178), 2, sym_line_comment, sym_block_comment, - ACTIONS(2290), 7, + ACTIONS(2614), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122346,7 +122414,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2292), 39, + ACTIONS(2616), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122382,19 +122450,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, + anon_sym_safe, sym_identifier, sym_self, sym_super, sym_crate, - [10720] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [9207] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1195), 2, + STATE(1179), 2, sym_line_comment, sym_block_comment, - ACTIONS(2294), 7, + ACTIONS(2676), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122402,7 +122471,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2296), 39, + ACTIONS(2678), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122438,19 +122507,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, + anon_sym_safe, sym_identifier, sym_self, sym_super, sym_crate, - [10781] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [9269] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1196), 2, + STATE(1180), 2, sym_line_comment, sym_block_comment, - ACTIONS(2302), 7, + ACTIONS(2776), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122458,7 +122528,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2304), 39, + ACTIONS(2778), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122494,19 +122564,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, + anon_sym_safe, sym_identifier, sym_self, sym_super, sym_crate, - [10842] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [9331] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1197), 2, + STATE(1181), 2, sym_line_comment, sym_block_comment, - ACTIONS(2310), 7, + ACTIONS(2912), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122514,7 +122585,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2312), 39, + ACTIONS(2914), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122550,19 +122621,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, + anon_sym_safe, sym_identifier, sym_self, sym_super, sym_crate, - [10903] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [9393] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1198), 2, + STATE(1182), 2, sym_line_comment, sym_block_comment, - ACTIONS(2314), 7, + ACTIONS(2964), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122570,7 +122642,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2316), 39, + ACTIONS(2966), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122606,19 +122678,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, + anon_sym_safe, sym_identifier, sym_self, sym_super, sym_crate, - [10964] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [9455] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1199), 2, + STATE(1183), 2, sym_line_comment, sym_block_comment, - ACTIONS(2318), 7, + ACTIONS(3040), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122626,7 +122699,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2320), 39, + ACTIONS(3042), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122662,19 +122735,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, + anon_sym_safe, sym_identifier, sym_self, sym_super, sym_crate, - [11025] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [9517] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1200), 2, + STATE(1184), 2, sym_line_comment, sym_block_comment, - ACTIONS(2322), 7, + ACTIONS(1793), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122682,7 +122756,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2324), 39, + ACTIONS(1795), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122718,19 +122792,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, + anon_sym_safe, sym_identifier, sym_self, sym_super, sym_crate, - [11086] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [9579] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1201), 2, + STATE(1185), 2, sym_line_comment, sym_block_comment, - ACTIONS(2326), 7, + ACTIONS(1797), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122738,7 +122813,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2328), 39, + ACTIONS(1799), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122774,19 +122849,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, + anon_sym_safe, sym_identifier, sym_self, sym_super, sym_crate, - [11147] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [9641] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1202), 2, + STATE(1186), 2, sym_line_comment, sym_block_comment, - ACTIONS(2330), 7, + ACTIONS(2061), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122794,7 +122870,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2332), 39, + ACTIONS(2063), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122830,19 +122906,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, + anon_sym_safe, sym_identifier, sym_self, sym_super, sym_crate, - [11208] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [9703] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1203), 2, + STATE(1187), 2, sym_line_comment, sym_block_comment, - ACTIONS(2334), 7, + ACTIONS(1801), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122850,7 +122927,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2336), 39, + ACTIONS(1803), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122886,19 +122963,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, + anon_sym_safe, sym_identifier, sym_self, sym_super, sym_crate, - [11269] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [9765] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1204), 2, + STATE(1188), 2, sym_line_comment, sym_block_comment, - ACTIONS(2338), 7, + ACTIONS(1805), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122906,7 +122984,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2340), 39, + ACTIONS(1807), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122942,19 +123020,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, + anon_sym_safe, sym_identifier, sym_self, sym_super, sym_crate, - [11330] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [9827] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1205), 2, + STATE(1189), 2, sym_line_comment, sym_block_comment, - ACTIONS(2342), 7, + ACTIONS(1809), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122962,7 +123041,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2344), 39, + ACTIONS(1811), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122998,19 +123077,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, + anon_sym_safe, sym_identifier, sym_self, sym_super, sym_crate, - [11391] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [9889] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1206), 2, + STATE(1190), 2, sym_line_comment, sym_block_comment, - ACTIONS(2350), 7, + ACTIONS(1813), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123018,7 +123098,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2352), 39, + ACTIONS(1815), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123054,19 +123134,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, + anon_sym_safe, sym_identifier, sym_self, sym_super, sym_crate, - [11452] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [9951] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1207), 2, + STATE(1191), 2, sym_line_comment, sym_block_comment, - ACTIONS(2354), 7, + ACTIONS(2073), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123074,7 +123155,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2356), 39, + ACTIONS(2075), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123110,19 +123191,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, + anon_sym_safe, sym_identifier, sym_self, sym_super, sym_crate, - [11513] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [10013] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1208), 2, + STATE(1192), 2, sym_line_comment, sym_block_comment, - ACTIONS(2358), 7, + ACTIONS(2077), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123130,7 +123212,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2360), 39, + ACTIONS(2079), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123166,19 +123248,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, + anon_sym_safe, sym_identifier, sym_self, sym_super, sym_crate, - [11574] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [10075] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1209), 2, + STATE(1193), 2, sym_line_comment, sym_block_comment, - ACTIONS(2362), 7, + ACTIONS(2081), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123186,7 +123269,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2364), 39, + ACTIONS(2083), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123222,19 +123305,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, + anon_sym_safe, sym_identifier, sym_self, sym_super, sym_crate, - [11635] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [10137] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1210), 2, + STATE(1194), 2, sym_line_comment, sym_block_comment, - ACTIONS(2366), 7, + ACTIONS(2622), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123242,7 +123326,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2368), 39, + ACTIONS(2624), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123278,19 +123362,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, + anon_sym_safe, sym_identifier, sym_self, sym_super, sym_crate, - [11696] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [10199] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1211), 2, + STATE(1195), 2, sym_line_comment, sym_block_comment, - ACTIONS(2370), 7, + ACTIONS(2626), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123298,7 +123383,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2372), 39, + ACTIONS(2628), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123334,19 +123419,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, + anon_sym_safe, sym_identifier, sym_self, sym_super, sym_crate, - [11757] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [10261] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1212), 2, + STATE(1196), 2, sym_line_comment, sym_block_comment, - ACTIONS(2374), 7, + ACTIONS(1821), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123354,7 +123440,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2376), 39, + ACTIONS(1823), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123390,19 +123476,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, + anon_sym_safe, sym_identifier, sym_self, sym_super, sym_crate, - [11818] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [10323] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1213), 2, + STATE(1197), 2, sym_line_comment, sym_block_comment, - ACTIONS(2378), 7, + ACTIONS(2920), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123410,7 +123497,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2380), 39, + ACTIONS(2922), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123446,19 +123533,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, + anon_sym_safe, sym_identifier, sym_self, sym_super, sym_crate, - [11879] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [10385] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1214), 2, + STATE(1198), 2, sym_line_comment, sym_block_comment, - ACTIONS(3034), 7, + ACTIONS(2992), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123466,7 +123554,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(3036), 39, + ACTIONS(2994), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123502,19 +123590,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, + anon_sym_safe, sym_identifier, sym_self, sym_super, sym_crate, - [11940] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [10447] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1215), 2, + STATE(1199), 2, sym_line_comment, sym_block_comment, - ACTIONS(2476), 7, + ACTIONS(3020), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123522,7 +123611,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2478), 39, + ACTIONS(3022), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123558,19 +123647,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, + anon_sym_safe, sym_identifier, sym_self, sym_super, sym_crate, - [12001] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [10509] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1216), 2, + STATE(1200), 2, sym_line_comment, sym_block_comment, - ACTIONS(2480), 7, + ACTIONS(3032), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123578,7 +123668,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2482), 39, + ACTIONS(3034), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123614,19 +123704,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, + anon_sym_safe, sym_identifier, sym_self, sym_super, sym_crate, - [12062] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [10571] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1217), 2, + STATE(1201), 2, sym_line_comment, sym_block_comment, - ACTIONS(2484), 7, + ACTIONS(3044), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123634,7 +123725,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2486), 39, + ACTIONS(3046), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123670,19 +123761,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, + anon_sym_safe, sym_identifier, sym_self, sym_super, sym_crate, - [12123] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [10633] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1218), 2, + STATE(1202), 2, sym_line_comment, sym_block_comment, - ACTIONS(2488), 7, + ACTIONS(1829), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123690,7 +123782,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2490), 39, + ACTIONS(1831), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123726,19 +123818,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, + anon_sym_safe, sym_identifier, sym_self, sym_super, sym_crate, - [12184] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [10695] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1219), 2, + STATE(1203), 2, sym_line_comment, sym_block_comment, - ACTIONS(2492), 7, + ACTIONS(1833), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123746,7 +123839,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2494), 39, + ACTIONS(1835), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123782,19 +123875,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, + anon_sym_safe, sym_identifier, sym_self, sym_super, sym_crate, - [12245] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [10757] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1220), 2, + STATE(1204), 2, sym_line_comment, sym_block_comment, - ACTIONS(2496), 7, + ACTIONS(1849), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123802,7 +123896,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2498), 39, + ACTIONS(1851), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123838,19 +123932,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, + anon_sym_safe, sym_identifier, sym_self, sym_super, sym_crate, - [12306] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [10819] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1221), 2, + STATE(1205), 2, sym_line_comment, sym_block_comment, - ACTIONS(2500), 7, + ACTIONS(2449), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123858,7 +123953,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2502), 39, + ACTIONS(2451), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123894,19 +123989,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, + anon_sym_safe, sym_identifier, sym_self, sym_super, sym_crate, - [12367] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [10881] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1222), 2, + STATE(1206), 2, sym_line_comment, sym_block_comment, - ACTIONS(2504), 7, + ACTIONS(1853), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123914,7 +124010,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2506), 39, + ACTIONS(1855), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123950,19 +124046,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, + anon_sym_safe, sym_identifier, sym_self, sym_super, sym_crate, - [12428] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [10943] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1223), 2, + STATE(1207), 2, sym_line_comment, sym_block_comment, - ACTIONS(2508), 7, + ACTIONS(1785), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123970,7 +124067,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2510), 39, + ACTIONS(1787), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124006,19 +124103,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, + anon_sym_safe, sym_identifier, sym_self, sym_super, sym_crate, - [12489] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [11005] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1224), 2, + STATE(1208), 2, sym_line_comment, sym_block_comment, - ACTIONS(2512), 7, + ACTIONS(1789), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124026,7 +124124,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2514), 39, + ACTIONS(1791), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124062,19 +124160,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, + anon_sym_safe, sym_identifier, sym_self, sym_super, sym_crate, - [12550] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [11067] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1225), 2, + STATE(1209), 2, sym_line_comment, sym_block_comment, - ACTIONS(2516), 7, + ACTIONS(1817), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124082,7 +124181,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2518), 39, + ACTIONS(1819), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124118,19 +124217,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, + anon_sym_safe, sym_identifier, sym_self, sym_super, sym_crate, - [12611] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [11129] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1226), 2, + STATE(1210), 2, sym_line_comment, sym_block_comment, - ACTIONS(2520), 7, + ACTIONS(1953), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124138,7 +124238,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2522), 39, + ACTIONS(1955), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124174,19 +124274,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, + anon_sym_safe, sym_identifier, sym_self, sym_super, sym_crate, - [12672] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [11191] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1227), 2, + STATE(1211), 2, sym_line_comment, sym_block_comment, - ACTIONS(2596), 7, + ACTIONS(1961), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124194,7 +124295,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2598), 39, + ACTIONS(1963), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124230,19 +124331,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, + anon_sym_safe, sym_identifier, sym_self, sym_super, sym_crate, - [12733] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [11253] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1228), 2, + STATE(1212), 2, sym_line_comment, sym_block_comment, - ACTIONS(2606), 7, + ACTIONS(1919), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124250,7 +124352,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2608), 39, + ACTIONS(1921), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124286,131 +124388,134 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, + anon_sym_safe, sym_identifier, sym_self, sym_super, sym_crate, - [12794] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [11315] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1229), 2, + STATE(1213), 2, sym_line_comment, sym_block_comment, - ACTIONS(3664), 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(3662), 31, + ACTIONS(1923), 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_LT, anon_sym_COLON_COLON, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [12855] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + anon_sym_POUND, + sym_metavariable, + ACTIONS(1925), 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_safe, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [11377] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1230), 2, + STATE(1214), 2, sym_line_comment, sym_block_comment, - ACTIONS(3668), 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(3666), 31, + ACTIONS(1927), 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_DASH_GT, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [12916] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(1929), 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_safe, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [11439] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1231), 2, + STATE(1215), 2, sym_line_comment, sym_block_comment, - ACTIONS(2646), 7, + ACTIONS(1931), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124418,7 +124523,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2648), 39, + ACTIONS(1933), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124454,19 +124559,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, + anon_sym_safe, sym_identifier, sym_self, sym_super, sym_crate, - [12977] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [11501] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1232), 2, + STATE(1216), 2, sym_line_comment, sym_block_comment, - ACTIONS(2654), 7, + ACTIONS(1935), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124474,7 +124580,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2656), 39, + ACTIONS(1937), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124510,19 +124616,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, + anon_sym_safe, sym_identifier, sym_self, sym_super, sym_crate, - [13038] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [11563] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1233), 2, + STATE(1217), 2, sym_line_comment, sym_block_comment, - ACTIONS(2658), 7, + ACTIONS(1943), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124530,7 +124637,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2660), 39, + ACTIONS(1945), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124566,19 +124673,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, + anon_sym_safe, sym_identifier, sym_self, sym_super, sym_crate, - [13099] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [11625] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1234), 2, + STATE(1218), 2, sym_line_comment, sym_block_comment, - ACTIONS(2662), 7, + ACTIONS(1947), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124586,7 +124694,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2664), 39, + ACTIONS(1949), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124622,19 +124730,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, + anon_sym_safe, sym_identifier, sym_self, sym_super, sym_crate, - [13160] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [11687] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1235), 2, + STATE(1219), 2, sym_line_comment, sym_block_comment, - ACTIONS(2676), 7, + ACTIONS(1957), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124642,7 +124751,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2678), 39, + ACTIONS(1959), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124678,19 +124787,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, + anon_sym_safe, sym_identifier, sym_self, sym_super, sym_crate, - [13221] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [11749] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1236), 2, + STATE(1220), 2, sym_line_comment, sym_block_comment, - ACTIONS(2686), 7, + ACTIONS(1977), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124698,7 +124808,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2688), 39, + ACTIONS(1979), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124734,19 +124844,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, + anon_sym_safe, sym_identifier, sym_self, sym_super, sym_crate, - [13282] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [11811] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1237), 2, + STATE(1221), 2, sym_line_comment, sym_block_comment, - ACTIONS(2690), 7, + ACTIONS(1981), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124754,7 +124865,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2692), 39, + ACTIONS(1983), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124790,19 +124901,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, + anon_sym_safe, sym_identifier, sym_self, sym_super, sym_crate, - [13343] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [11873] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1238), 2, + STATE(1222), 2, sym_line_comment, sym_block_comment, - ACTIONS(2694), 7, + ACTIONS(1985), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124810,7 +124922,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2696), 39, + ACTIONS(1987), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124846,19 +124958,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, + anon_sym_safe, sym_identifier, sym_self, sym_super, sym_crate, - [13404] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [11935] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1239), 2, + STATE(1223), 2, sym_line_comment, sym_block_comment, - ACTIONS(2710), 7, + ACTIONS(2193), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124866,7 +124979,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2712), 39, + ACTIONS(2195), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124902,19 +125015,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, + anon_sym_safe, sym_identifier, sym_self, sym_super, sym_crate, - [13465] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [11997] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1240), 2, + STATE(1224), 2, sym_line_comment, sym_block_comment, - ACTIONS(2714), 7, + ACTIONS(2233), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124922,7 +125036,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2716), 39, + ACTIONS(2235), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124958,19 +125072,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, + anon_sym_safe, sym_identifier, sym_self, sym_super, sym_crate, - [13526] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [12059] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1241), 2, + STATE(1225), 2, sym_line_comment, sym_block_comment, - ACTIONS(2718), 7, + ACTIONS(2241), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124978,7 +125093,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2720), 39, + ACTIONS(2243), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125014,19 +125129,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, + anon_sym_safe, sym_identifier, sym_self, sym_super, sym_crate, - [13587] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [12121] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1242), 2, + STATE(1226), 2, sym_line_comment, sym_block_comment, - ACTIONS(2724), 7, + ACTIONS(2249), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -125034,7 +125150,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2726), 39, + ACTIONS(2251), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125070,19 +125186,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, + anon_sym_safe, sym_identifier, sym_self, sym_super, sym_crate, - [13648] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [12183] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1243), 2, + STATE(1227), 2, sym_line_comment, sym_block_comment, - ACTIONS(2730), 7, + ACTIONS(2253), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -125090,7 +125207,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2732), 39, + ACTIONS(2255), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125126,19 +125243,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, + anon_sym_safe, sym_identifier, sym_self, sym_super, sym_crate, - [13709] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [12245] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1244), 2, + STATE(1228), 2, sym_line_comment, sym_block_comment, - ACTIONS(2734), 7, + ACTIONS(1989), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -125146,7 +125264,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2736), 39, + ACTIONS(1991), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125182,19 +125300,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, + anon_sym_safe, sym_identifier, sym_self, sym_super, sym_crate, - [13770] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [12307] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1245), 2, + STATE(1229), 2, sym_line_comment, sym_block_comment, - ACTIONS(2738), 7, + ACTIONS(2265), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -125202,7 +125321,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2740), 39, + ACTIONS(2267), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125238,75 +125357,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, + anon_sym_safe, sym_identifier, sym_self, sym_super, sym_crate, - [13831] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [12369] = 5, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1246), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2742), 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(2744), 39, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_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, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [13892] = 5, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1247), 2, + STATE(1230), 2, sym_line_comment, sym_block_comment, - ACTIONS(2746), 7, + ACTIONS(2269), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -125314,7 +125378,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2748), 39, + ACTIONS(2271), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125350,75 +125414,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, + anon_sym_safe, sym_identifier, sym_self, sym_super, sym_crate, - [13953] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [12431] = 5, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1248), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2750), 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(2752), 39, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_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, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [14014] = 5, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1249), 2, + STATE(1231), 2, sym_line_comment, sym_block_comment, - ACTIONS(2758), 7, + ACTIONS(2277), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -125426,7 +125435,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2760), 39, + ACTIONS(2279), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125462,75 +125471,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, + anon_sym_safe, sym_identifier, sym_self, sym_super, sym_crate, - [14075] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [12493] = 5, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1250), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2762), 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(2764), 39, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_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, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [14136] = 5, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1251), 2, + STATE(1232), 2, sym_line_comment, sym_block_comment, - ACTIONS(2774), 7, + ACTIONS(2281), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -125538,7 +125492,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2776), 39, + ACTIONS(2283), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125574,19 +125528,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, + anon_sym_safe, sym_identifier, sym_self, sym_super, sym_crate, - [14197] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [12555] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1252), 2, + STATE(1233), 2, sym_line_comment, sym_block_comment, - ACTIONS(2790), 7, + ACTIONS(2293), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -125594,7 +125549,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2792), 39, + ACTIONS(2295), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125630,19 +125585,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, + anon_sym_safe, sym_identifier, sym_self, sym_super, sym_crate, - [14258] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [12617] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1253), 2, + STATE(1234), 2, sym_line_comment, sym_block_comment, - ACTIONS(2794), 7, + ACTIONS(1993), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -125650,7 +125606,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2796), 39, + ACTIONS(1995), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125686,19 +125642,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, + anon_sym_safe, sym_identifier, sym_self, sym_super, sym_crate, - [14319] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [12679] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1254), 2, + STATE(1235), 2, sym_line_comment, sym_block_comment, - ACTIONS(2798), 7, + ACTIONS(2333), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -125706,7 +125663,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2800), 39, + ACTIONS(2335), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125742,19 +125699,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, + anon_sym_safe, sym_identifier, sym_self, sym_super, sym_crate, - [14380] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [12741] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1255), 2, + STATE(1236), 2, sym_line_comment, sym_block_comment, - ACTIONS(2802), 7, + ACTIONS(2341), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -125762,7 +125720,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2804), 39, + ACTIONS(2343), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125798,19 +125756,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, + anon_sym_safe, sym_identifier, sym_self, sym_super, sym_crate, - [14441] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [12803] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1256), 2, + STATE(1237), 2, sym_line_comment, sym_block_comment, - ACTIONS(2806), 7, + ACTIONS(2345), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -125818,7 +125777,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2808), 39, + ACTIONS(2347), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125854,19 +125813,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, + anon_sym_safe, sym_identifier, sym_self, sym_super, sym_crate, - [14502] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [12865] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1257), 2, + STATE(1238), 2, sym_line_comment, sym_block_comment, - ACTIONS(2810), 7, + ACTIONS(2349), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -125874,7 +125834,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2812), 39, + ACTIONS(2351), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125910,76 +125870,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, + anon_sym_safe, sym_identifier, sym_self, sym_super, sym_crate, - [14563] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [12927] = 5, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3670), 1, - anon_sym_LBRACE, - STATE(1258), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3421), 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(3423), 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, - [14626] = 5, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1259), 2, + STATE(1239), 2, sym_line_comment, sym_block_comment, - ACTIONS(2830), 7, + ACTIONS(2129), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -125987,7 +125891,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2832), 39, + ACTIONS(2131), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126023,19 +125927,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, + anon_sym_safe, sym_identifier, sym_self, sym_super, sym_crate, - [14687] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [12989] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1260), 2, + STATE(1240), 2, sym_line_comment, sym_block_comment, - ACTIONS(2842), 7, + ACTIONS(2361), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126043,7 +125948,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2844), 39, + ACTIONS(2363), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126079,19 +125984,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, + anon_sym_safe, sym_identifier, sym_self, sym_super, sym_crate, - [14748] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [13051] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1261), 2, + STATE(1241), 2, sym_line_comment, sym_block_comment, - ACTIONS(2846), 7, + ACTIONS(2365), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126099,7 +126005,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2848), 39, + ACTIONS(2367), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126135,19 +126041,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, + anon_sym_safe, sym_identifier, sym_self, sym_super, sym_crate, - [14809] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [13113] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1262), 2, + STATE(1242), 2, sym_line_comment, sym_block_comment, - ACTIONS(2850), 7, + ACTIONS(2395), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126155,7 +126062,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2852), 39, + ACTIONS(2397), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126191,19 +126098,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, + anon_sym_safe, sym_identifier, sym_self, sym_super, sym_crate, - [14870] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [13175] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1263), 2, + STATE(1243), 2, sym_line_comment, sym_block_comment, - ACTIONS(2854), 7, + ACTIONS(2399), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126211,7 +126119,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2856), 39, + ACTIONS(2401), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126247,19 +126155,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, + anon_sym_safe, sym_identifier, sym_self, sym_super, sym_crate, - [14931] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [13237] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1264), 2, + STATE(1244), 2, sym_line_comment, sym_block_comment, - ACTIONS(2858), 7, + ACTIONS(2403), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126267,7 +126176,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2860), 39, + ACTIONS(2405), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126303,19 +126212,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, + anon_sym_safe, sym_identifier, sym_self, sym_super, sym_crate, - [14992] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [13299] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1265), 2, + STATE(1245), 2, sym_line_comment, sym_block_comment, - ACTIONS(2882), 7, + ACTIONS(2407), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126323,7 +126233,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2884), 39, + ACTIONS(2409), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126359,19 +126269,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, + anon_sym_safe, sym_identifier, sym_self, sym_super, sym_crate, - [15053] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [13361] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1266), 2, + STATE(1246), 2, sym_line_comment, sym_block_comment, - ACTIONS(2886), 7, + ACTIONS(2411), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126379,7 +126290,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2888), 39, + ACTIONS(2413), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126415,19 +126326,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, + anon_sym_safe, sym_identifier, sym_self, sym_super, sym_crate, - [15114] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [13423] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1267), 2, + STATE(1247), 2, sym_line_comment, sym_block_comment, - ACTIONS(2914), 7, + ACTIONS(2415), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126435,7 +126347,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2916), 39, + ACTIONS(2417), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126471,19 +126383,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, + anon_sym_safe, sym_identifier, sym_self, sym_super, sym_crate, - [15175] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [13485] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1268), 2, + STATE(1248), 2, sym_line_comment, sym_block_comment, - ACTIONS(2922), 7, + ACTIONS(2419), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126491,7 +126404,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2924), 39, + ACTIONS(2421), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126527,19 +126440,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, + anon_sym_safe, sym_identifier, sym_self, sym_super, sym_crate, - [15236] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [13547] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1269), 2, + STATE(1249), 2, sym_line_comment, sym_block_comment, - ACTIONS(2930), 7, + ACTIONS(2423), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126547,7 +126461,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2932), 39, + ACTIONS(2425), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126583,19 +126497,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, + anon_sym_safe, sym_identifier, sym_self, sym_super, sym_crate, - [15297] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [13609] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1270), 2, + STATE(1250), 2, sym_line_comment, sym_block_comment, - ACTIONS(2934), 7, + ACTIONS(2433), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126603,7 +126518,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2936), 39, + ACTIONS(2435), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126639,19 +126554,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, + anon_sym_safe, sym_identifier, sym_self, sym_super, sym_crate, - [15358] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [13671] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1271), 2, + STATE(1251), 2, sym_line_comment, sym_block_comment, - ACTIONS(2942), 7, + ACTIONS(2437), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126659,7 +126575,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2944), 39, + ACTIONS(2439), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126695,19 +126611,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, + anon_sym_safe, sym_identifier, sym_self, sym_super, sym_crate, - [15419] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [13733] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1272), 2, + STATE(1252), 2, sym_line_comment, sym_block_comment, - ACTIONS(2946), 7, + ACTIONS(2441), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126715,7 +126632,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2948), 39, + ACTIONS(2443), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126751,19 +126668,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, + anon_sym_safe, sym_identifier, sym_self, sym_super, sym_crate, - [15480] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [13795] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1273), 2, + STATE(1253), 2, sym_line_comment, sym_block_comment, - ACTIONS(2950), 7, + ACTIONS(2453), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126771,7 +126689,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2952), 39, + ACTIONS(2455), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126807,19 +126725,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, + anon_sym_safe, sym_identifier, sym_self, sym_super, sym_crate, - [15541] = 5, - ACTIONS(103), 1, + [13857] = 5, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + STATE(1254), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2550), 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(2552), 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_safe, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [13919] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1274), 2, + STATE(1255), 2, sym_line_comment, sym_block_comment, - ACTIONS(2954), 7, + ACTIONS(2554), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126827,7 +126803,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2956), 39, + ACTIONS(2556), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126863,19 +126839,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, + anon_sym_safe, sym_identifier, sym_self, sym_super, sym_crate, - [15602] = 5, - ACTIONS(103), 1, + [13981] = 5, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + STATE(1256), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2558), 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(2560), 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_safe, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [14043] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1275), 2, + STATE(1257), 2, sym_line_comment, sym_block_comment, - ACTIONS(2958), 7, + ACTIONS(2562), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126883,7 +126917,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2960), 39, + ACTIONS(2564), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126919,19 +126953,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, + anon_sym_safe, sym_identifier, sym_self, sym_super, sym_crate, - [15663] = 5, - ACTIONS(103), 1, + [14105] = 5, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + STATE(1258), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2566), 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(2568), 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_safe, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [14167] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1276), 2, + STATE(1259), 2, sym_line_comment, sym_block_comment, - ACTIONS(2962), 7, + ACTIONS(2570), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126939,7 +127031,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2964), 39, + ACTIONS(2572), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126975,19 +127067,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, + anon_sym_safe, sym_identifier, sym_self, sym_super, sym_crate, - [15724] = 5, - ACTIONS(103), 1, + [14229] = 5, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + STATE(1260), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2574), 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(2576), 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_safe, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [14291] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1277), 2, + STATE(1261), 2, sym_line_comment, sym_block_comment, - ACTIONS(2966), 7, + ACTIONS(1997), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126995,7 +127145,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2968), 39, + ACTIONS(1999), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127031,19 +127181,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, + anon_sym_safe, sym_identifier, sym_self, sym_super, sym_crate, - [15785] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [14353] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1278), 2, + STATE(1262), 2, sym_line_comment, sym_block_comment, - ACTIONS(2970), 7, + ACTIONS(2618), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127051,7 +127202,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2972), 39, + ACTIONS(2620), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127087,19 +127238,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, + anon_sym_safe, sym_identifier, sym_self, sym_super, sym_crate, - [15846] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [14415] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1279), 2, + STATE(1263), 2, sym_line_comment, sym_block_comment, - ACTIONS(2974), 7, + ACTIONS(2642), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127107,7 +127259,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2976), 39, + ACTIONS(2644), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127143,19 +127295,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, + anon_sym_safe, sym_identifier, sym_self, sym_super, sym_crate, - [15907] = 5, - ACTIONS(103), 1, + [14477] = 6, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(3556), 1, + anon_sym_RBRACE, + STATE(1264), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3554), 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(3552), 31, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym__, + anon_sym_DOT_DOT, + anon_sym_const, + anon_sym_default, + anon_sym_gen, + anon_sym_union, + anon_sym_ref, + sym_mutable_specifier, + anon_sym_true, + anon_sym_false, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [14541] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1280), 2, + STATE(1265), 2, sym_line_comment, sym_block_comment, - ACTIONS(3006), 7, + ACTIONS(2001), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127163,7 +127374,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(3008), 39, + ACTIONS(2003), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127199,19 +127410,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, + anon_sym_safe, sym_identifier, sym_self, sym_super, sym_crate, - [15968] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [14603] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1281), 2, + STATE(1266), 2, sym_line_comment, sym_block_comment, - ACTIONS(3014), 7, + ACTIONS(2005), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127219,7 +127431,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(3016), 39, + ACTIONS(2007), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127255,131 +127467,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, + anon_sym_safe, sym_identifier, sym_self, sym_super, sym_crate, - [16029] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [14665] = 5, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1282), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3674), 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(3672), 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, - [16090] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1283), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3678), 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(3676), 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_DASH_GT, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [16151] = 5, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1284), 2, + STATE(1267), 2, sym_line_comment, sym_block_comment, - ACTIONS(1806), 7, + ACTIONS(2009), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127387,7 +127488,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1808), 39, + ACTIONS(2011), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127423,19 +127524,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, + anon_sym_safe, sym_identifier, sym_self, sym_super, sym_crate, - [16212] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [14727] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1285), 2, + STATE(1268), 2, sym_line_comment, sym_block_comment, - ACTIONS(1810), 7, + ACTIONS(2017), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127443,7 +127545,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1812), 39, + ACTIONS(2019), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127479,19 +127581,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, + anon_sym_safe, sym_identifier, sym_self, sym_super, sym_crate, - [16273] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [14789] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1286), 2, + STATE(1269), 2, sym_line_comment, sym_block_comment, - ACTIONS(1818), 7, + ACTIONS(2021), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127499,7 +127602,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1820), 39, + ACTIONS(2023), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127535,19 +127638,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, + anon_sym_safe, sym_identifier, sym_self, sym_super, sym_crate, - [16334] = 5, - ACTIONS(103), 1, + [14851] = 9, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(3372), 1, + anon_sym_BANG, + ACTIONS(3558), 1, + anon_sym_LBRACE, + ACTIONS(3560), 1, + anon_sym_COLON_COLON, + STATE(1485), 1, + sym_field_initializer_list, + STATE(1270), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1472), 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(1470), 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, + [14921] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1287), 2, + STATE(1271), 2, sym_line_comment, sym_block_comment, - ACTIONS(1822), 7, + ACTIONS(2025), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127555,7 +127720,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1824), 39, + ACTIONS(2027), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127591,19 +127756,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, + anon_sym_safe, sym_identifier, sym_self, sym_super, sym_crate, - [16395] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [14983] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1288), 2, + STATE(1272), 2, sym_line_comment, sym_block_comment, - ACTIONS(1826), 7, + ACTIONS(2029), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127611,7 +127777,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1828), 39, + ACTIONS(2031), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127647,19 +127813,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, + anon_sym_safe, sym_identifier, sym_self, sym_super, sym_crate, - [16456] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [15045] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1289), 2, + STATE(1273), 2, sym_line_comment, sym_block_comment, - ACTIONS(1830), 7, + ACTIONS(2033), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127667,7 +127834,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1832), 39, + ACTIONS(2035), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127703,19 +127870,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, + anon_sym_safe, sym_identifier, sym_self, sym_super, sym_crate, - [16517] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [15107] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1290), 2, + STATE(1274), 2, sym_line_comment, sym_block_comment, - ACTIONS(1834), 7, + ACTIONS(2037), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127723,7 +127891,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1836), 39, + ACTIONS(2039), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127759,19 +127927,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, + anon_sym_safe, sym_identifier, sym_self, sym_super, sym_crate, - [16578] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [15169] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1291), 2, + STATE(1275), 2, sym_line_comment, sym_block_comment, - ACTIONS(1838), 7, + ACTIONS(2041), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127779,7 +127948,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1840), 39, + ACTIONS(2043), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127815,19 +127984,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, + anon_sym_safe, sym_identifier, sym_self, sym_super, sym_crate, - [16639] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [15231] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1292), 2, + STATE(1276), 2, sym_line_comment, sym_block_comment, - ACTIONS(1842), 7, + ACTIONS(2045), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127835,7 +128005,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1844), 39, + ACTIONS(2047), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127871,27 +128041,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, + anon_sym_safe, sym_identifier, sym_self, sym_super, sym_crate, - [16700] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [15293] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1293), 2, + STATE(1277), 2, sym_line_comment, sym_block_comment, - ACTIONS(1846), 7, + ACTIONS(3564), 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(1848), 39, + ACTIONS(3562), 34, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127912,34 +128089,29 @@ 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_safe, + anon_sym_dyn, sym_identifier, sym_self, sym_super, sym_crate, - [16761] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [15355] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1294), 2, + STATE(1278), 2, sym_line_comment, sym_block_comment, - ACTIONS(1850), 7, + ACTIONS(2049), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127947,7 +128119,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1852), 39, + ACTIONS(2051), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127983,19 +128155,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, + anon_sym_safe, sym_identifier, sym_self, sym_super, sym_crate, - [16822] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [15417] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1295), 2, + STATE(1279), 2, sym_line_comment, sym_block_comment, - ACTIONS(1854), 7, + ACTIONS(2053), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128003,7 +128176,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1856), 39, + ACTIONS(2055), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128039,19 +128212,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, + anon_sym_safe, sym_identifier, sym_self, sym_super, sym_crate, - [16883] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [15479] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1296), 2, + STATE(1280), 2, sym_line_comment, sym_block_comment, - ACTIONS(1858), 7, + ACTIONS(2692), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128059,7 +128233,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1860), 39, + ACTIONS(2694), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128095,19 +128269,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, + anon_sym_safe, sym_identifier, sym_self, sym_super, sym_crate, - [16944] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [15541] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1297), 2, + STATE(1281), 2, sym_line_comment, sym_block_comment, - ACTIONS(1862), 7, + ACTIONS(2057), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128115,7 +128290,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1864), 39, + ACTIONS(2059), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128151,19 +128326,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, + anon_sym_safe, sym_identifier, sym_self, sym_super, sym_crate, - [17005] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [15603] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1298), 2, + STATE(1282), 2, sym_line_comment, sym_block_comment, - ACTIONS(1866), 7, + ACTIONS(2696), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128171,7 +128347,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1868), 39, + ACTIONS(2698), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128207,19 +128383,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, + anon_sym_safe, sym_identifier, sym_self, sym_super, sym_crate, - [17066] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [15665] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1299), 2, + STATE(1283), 2, sym_line_comment, sym_block_comment, - ACTIONS(1870), 7, + ACTIONS(2013), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128227,7 +128404,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1872), 39, + ACTIONS(2015), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128263,19 +128440,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, + anon_sym_safe, sym_identifier, sym_self, sym_super, sym_crate, - [17127] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [15727] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1300), 2, + STATE(1284), 2, sym_line_comment, sym_block_comment, - ACTIONS(1874), 7, + ACTIONS(2093), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128283,7 +128461,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1876), 39, + ACTIONS(2095), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128319,19 +128497,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, + anon_sym_safe, sym_identifier, sym_self, sym_super, sym_crate, - [17188] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [15789] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1301), 2, + STATE(1285), 2, sym_line_comment, sym_block_comment, - ACTIONS(1878), 7, + ACTIONS(2097), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128339,7 +128518,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1880), 39, + ACTIONS(2099), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128375,19 +128554,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, + anon_sym_safe, sym_identifier, sym_self, sym_super, sym_crate, - [17249] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [15851] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1302), 2, + STATE(1286), 2, sym_line_comment, sym_block_comment, - ACTIONS(1882), 7, + ACTIONS(2121), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128395,7 +128575,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1884), 39, + ACTIONS(2123), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128431,19 +128611,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, + anon_sym_safe, sym_identifier, sym_self, sym_super, sym_crate, - [17310] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [15913] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1303), 2, + STATE(1287), 2, sym_line_comment, sym_block_comment, - ACTIONS(1886), 7, + ACTIONS(2125), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128451,7 +128632,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1888), 39, + ACTIONS(2127), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128487,19 +128668,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, + anon_sym_safe, sym_identifier, sym_self, sym_super, sym_crate, - [17371] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [15975] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1304), 2, + STATE(1288), 2, sym_line_comment, sym_block_comment, - ACTIONS(1890), 7, + ACTIONS(2133), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128507,7 +128689,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1892), 39, + ACTIONS(2135), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128543,19 +128725,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, + anon_sym_safe, sym_identifier, sym_self, sym_super, sym_crate, - [17432] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [16037] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1305), 2, + STATE(1289), 2, sym_line_comment, sym_block_comment, - ACTIONS(1898), 7, + ACTIONS(2137), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128563,7 +128746,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1900), 39, + ACTIONS(2139), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128599,19 +128782,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, + anon_sym_safe, sym_identifier, sym_self, sym_super, sym_crate, - [17493] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [16099] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1306), 2, + STATE(1290), 2, sym_line_comment, sym_block_comment, - ACTIONS(1906), 7, + ACTIONS(2141), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128619,7 +128803,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1908), 39, + ACTIONS(2143), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128655,19 +128839,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, + anon_sym_safe, sym_identifier, sym_self, sym_super, sym_crate, - [17554] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [16161] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1307), 2, + STATE(1291), 2, sym_line_comment, sym_block_comment, - ACTIONS(1914), 7, + ACTIONS(2736), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128675,7 +128860,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1916), 39, + ACTIONS(2738), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128711,19 +128896,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, + anon_sym_safe, sym_identifier, sym_self, sym_super, sym_crate, - [17615] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [16223] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1308), 2, + STATE(1292), 2, sym_line_comment, sym_block_comment, - ACTIONS(1918), 7, + ACTIONS(2744), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128731,7 +128917,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1920), 39, + ACTIONS(2746), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128767,19 +128953,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, + anon_sym_safe, sym_identifier, sym_self, sym_super, sym_crate, - [17676] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [16285] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1309), 2, + STATE(1293), 2, sym_line_comment, sym_block_comment, - ACTIONS(1922), 7, + ACTIONS(2748), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128787,7 +128974,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1924), 39, + ACTIONS(2750), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128823,19 +129010,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, + anon_sym_safe, sym_identifier, sym_self, sym_super, sym_crate, - [17737] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [16347] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1310), 2, + STATE(1294), 2, sym_line_comment, sym_block_comment, - ACTIONS(1926), 7, + ACTIONS(2756), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128843,7 +129031,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1928), 39, + ACTIONS(2758), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128879,19 +129067,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, + anon_sym_safe, sym_identifier, sym_self, sym_super, sym_crate, - [17798] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [16409] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1311), 2, + STATE(1295), 2, sym_line_comment, sym_block_comment, - ACTIONS(1930), 7, + ACTIONS(2760), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128899,7 +129088,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1932), 39, + ACTIONS(2762), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128935,19 +129124,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, + anon_sym_safe, sym_identifier, sym_self, sym_super, sym_crate, - [17859] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [16471] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1312), 2, + STATE(1296), 2, sym_line_comment, sym_block_comment, - ACTIONS(1934), 7, + ACTIONS(2145), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128955,7 +129145,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1936), 39, + ACTIONS(2147), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128991,19 +129181,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, + anon_sym_safe, sym_identifier, sym_self, sym_super, sym_crate, - [17920] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [16533] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1313), 2, + STATE(1297), 2, sym_line_comment, sym_block_comment, - ACTIONS(1938), 7, + ACTIONS(2149), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -129011,7 +129202,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1940), 39, + ACTIONS(2151), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -129047,19 +129238,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, + anon_sym_safe, sym_identifier, sym_self, sym_super, sym_crate, - [17981] = 5, - ACTIONS(103), 1, + [16595] = 6, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(3570), 1, + anon_sym_RBRACE, + STATE(1298), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3568), 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(3566), 31, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym__, + anon_sym_DOT_DOT, + anon_sym_const, + anon_sym_default, + anon_sym_gen, + anon_sym_union, + anon_sym_ref, + sym_mutable_specifier, + anon_sym_true, + anon_sym_false, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [16659] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1314), 2, + STATE(1299), 2, sym_line_comment, sym_block_comment, - ACTIONS(1942), 7, + ACTIONS(2153), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -129067,7 +129317,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1944), 39, + ACTIONS(2155), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -129103,19 +129353,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, + anon_sym_safe, sym_identifier, sym_self, sym_super, sym_crate, - [18042] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [16721] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1315), 2, + STATE(1300), 2, sym_line_comment, sym_block_comment, - ACTIONS(1946), 7, + ACTIONS(2157), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -129123,7 +129374,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1948), 39, + ACTIONS(2159), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -129159,19 +129410,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, + anon_sym_safe, sym_identifier, sym_self, sym_super, sym_crate, - [18103] = 5, - ACTIONS(103), 1, + [16783] = 5, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + STATE(1301), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3439), 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(3441), 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, + [16845] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1316), 2, + STATE(1302), 2, sym_line_comment, sym_block_comment, - ACTIONS(1950), 7, + ACTIONS(2764), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -129179,7 +129488,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1952), 39, + ACTIONS(2766), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -129215,19 +129524,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, + anon_sym_safe, sym_identifier, sym_self, sym_super, sym_crate, - [18164] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [16907] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1317), 2, + STATE(1303), 2, sym_line_comment, sym_block_comment, - ACTIONS(1954), 7, + ACTIONS(2788), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -129235,7 +129545,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1956), 39, + ACTIONS(2790), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -129271,19 +129581,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, + anon_sym_safe, sym_identifier, sym_self, sym_super, sym_crate, - [18225] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [16969] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1318), 2, + STATE(1304), 2, sym_line_comment, sym_block_comment, - ACTIONS(1958), 7, + ACTIONS(2161), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -129291,7 +129602,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1960), 39, + ACTIONS(2163), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -129327,19 +129638,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, + anon_sym_safe, sym_identifier, sym_self, sym_super, sym_crate, - [18286] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [17031] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1319), 2, + STATE(1305), 2, sym_line_comment, sym_block_comment, - ACTIONS(1962), 7, + ACTIONS(2165), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -129347,7 +129659,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1964), 39, + ACTIONS(2167), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -129383,19 +129695,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, + anon_sym_safe, sym_identifier, sym_self, sym_super, sym_crate, - [18347] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [17093] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1320), 2, + STATE(1306), 2, sym_line_comment, sym_block_comment, - ACTIONS(1966), 7, + ACTIONS(2169), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -129403,7 +129716,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1968), 39, + ACTIONS(2171), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -129439,19 +129752,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, + anon_sym_safe, sym_identifier, sym_self, sym_super, sym_crate, - [18408] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [17155] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1321), 2, + STATE(1307), 2, sym_line_comment, sym_block_comment, - ACTIONS(1970), 7, + ACTIONS(2173), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -129459,7 +129773,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1972), 39, + ACTIONS(2175), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -129495,19 +129809,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, + anon_sym_safe, sym_identifier, sym_self, sym_super, sym_crate, - [18469] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [17217] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1322), 2, + STATE(1308), 2, sym_line_comment, sym_block_comment, - ACTIONS(1974), 7, + ACTIONS(2177), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -129515,7 +129830,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1976), 39, + ACTIONS(2179), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -129551,19 +129866,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, + anon_sym_safe, sym_identifier, sym_self, sym_super, sym_crate, - [18530] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [17279] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1323), 2, + STATE(1309), 2, sym_line_comment, sym_block_comment, - ACTIONS(1978), 7, + ACTIONS(2181), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -129571,7 +129887,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1980), 39, + ACTIONS(2183), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -129607,19 +129923,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, + anon_sym_safe, sym_identifier, sym_self, sym_super, sym_crate, - [18591] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [17341] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1324), 2, + STATE(1310), 2, sym_line_comment, sym_block_comment, - ACTIONS(1982), 7, + ACTIONS(2792), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -129627,7 +129944,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1984), 39, + ACTIONS(2794), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -129663,27 +129980,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, + anon_sym_safe, sym_identifier, sym_self, sym_super, sym_crate, - [18652] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [17403] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1325), 2, + STATE(1311), 2, sym_line_comment, sym_block_comment, - ACTIONS(1986), 7, + ACTIONS(3574), 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(1988), 39, + ACTIONS(3572), 34, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -129704,34 +130028,29 @@ 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_safe, + anon_sym_dyn, sym_identifier, sym_self, sym_super, sym_crate, - [18713] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [17465] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1326), 2, + STATE(1312), 2, sym_line_comment, sym_block_comment, - ACTIONS(1990), 7, + ACTIONS(2185), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -129739,7 +130058,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1992), 39, + ACTIONS(2187), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -129775,19 +130094,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, + anon_sym_safe, sym_identifier, sym_self, sym_super, sym_crate, - [18774] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [17527] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1327), 2, + STATE(1313), 2, sym_line_comment, sym_block_comment, - ACTIONS(1994), 7, + ACTIONS(2189), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -129795,7 +130115,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1996), 39, + ACTIONS(2191), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -129831,19 +130151,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, + anon_sym_safe, sym_identifier, sym_self, sym_super, sym_crate, - [18835] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [17589] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1328), 2, + STATE(1314), 2, sym_line_comment, sym_block_comment, - ACTIONS(1998), 7, + ACTIONS(2796), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -129851,7 +130172,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2000), 39, + ACTIONS(2798), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -129887,19 +130208,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, + anon_sym_safe, sym_identifier, sym_self, sym_super, sym_crate, - [18896] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [17651] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1329), 2, + STATE(1315), 2, sym_line_comment, sym_block_comment, - ACTIONS(2002), 7, + ACTIONS(2197), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -129907,7 +130229,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2004), 39, + ACTIONS(2199), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -129943,19 +130265,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, + anon_sym_safe, sym_identifier, sym_self, sym_super, sym_crate, - [18957] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [17713] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1330), 2, + STATE(1316), 2, sym_line_comment, sym_block_comment, - ACTIONS(2006), 7, + ACTIONS(2800), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -129963,7 +130286,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2008), 39, + ACTIONS(2802), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -129999,19 +130322,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, + anon_sym_safe, sym_identifier, sym_self, sym_super, sym_crate, - [19018] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [17775] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1331), 2, + STATE(1317), 2, sym_line_comment, sym_block_comment, - ACTIONS(2010), 7, + ACTIONS(2201), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130019,7 +130343,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2012), 39, + ACTIONS(2203), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130055,19 +130379,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, + anon_sym_safe, sym_identifier, sym_self, sym_super, sym_crate, - [19079] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [17837] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1332), 2, + STATE(1318), 2, sym_line_comment, sym_block_comment, - ACTIONS(2014), 7, + ACTIONS(2205), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130075,7 +130400,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2016), 39, + ACTIONS(2207), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130111,19 +130436,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, + anon_sym_safe, sym_identifier, sym_self, sym_super, sym_crate, - [19140] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [17899] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1333), 2, + STATE(1319), 2, sym_line_comment, sym_block_comment, - ACTIONS(2018), 7, + ACTIONS(2209), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130131,7 +130457,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2020), 39, + ACTIONS(2211), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130167,19 +130493,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, + anon_sym_safe, sym_identifier, sym_self, sym_super, sym_crate, - [19201] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [17961] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1334), 2, + STATE(1320), 2, sym_line_comment, sym_block_comment, - ACTIONS(2022), 7, + ACTIONS(2221), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130187,7 +130514,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2024), 39, + ACTIONS(2223), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130223,131 +130550,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, + anon_sym_safe, sym_identifier, sym_self, sym_super, sym_crate, - [19262] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [18023] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1335), 2, + STATE(1321), 2, sym_line_comment, sym_block_comment, - ACTIONS(3682), 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(3680), 31, + ACTIONS(3578), 13, 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, - [19323] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1336), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3686), 15, - anon_sym_PLUS, anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, + anon_sym_QMARK, + 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(3684), 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_DASH_GT, + anon_sym_COLON_COLON, anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [19384] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + sym_metavariable, + ACTIONS(3576), 34, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_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_where, + anon_sym_extern, + anon_sym_safe, + anon_sym_dyn, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [18085] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1337), 2, + STATE(1322), 2, sym_line_comment, sym_block_comment, - ACTIONS(2034), 7, + ACTIONS(2229), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130355,7 +130628,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2036), 39, + ACTIONS(2231), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130391,19 +130664,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, + anon_sym_safe, sym_identifier, sym_self, sym_super, sym_crate, - [19445] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [18147] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1338), 2, + STATE(1323), 2, sym_line_comment, sym_block_comment, - ACTIONS(2038), 7, + ACTIONS(2069), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130411,7 +130685,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2040), 39, + ACTIONS(2071), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130447,19 +130721,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, + anon_sym_safe, sym_identifier, sym_self, sym_super, sym_crate, - [19506] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [18209] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1339), 2, + STATE(1324), 2, sym_line_comment, sym_block_comment, - ACTIONS(2042), 7, + ACTIONS(2245), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130467,7 +130742,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2044), 39, + ACTIONS(2247), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130503,19 +130778,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, + anon_sym_safe, sym_identifier, sym_self, sym_super, sym_crate, - [19567] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [18271] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1340), 2, + STATE(1325), 2, sym_line_comment, sym_block_comment, - ACTIONS(2046), 7, + ACTIONS(2804), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130523,7 +130799,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2048), 39, + ACTIONS(2806), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130559,19 +130835,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, + anon_sym_safe, sym_identifier, sym_self, sym_super, sym_crate, - [19628] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [18333] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1341), 2, + STATE(1326), 2, sym_line_comment, sym_block_comment, - ACTIONS(2050), 7, + ACTIONS(2808), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130579,7 +130856,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2052), 39, + ACTIONS(2810), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130615,19 +130892,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, + anon_sym_safe, sym_identifier, sym_self, sym_super, sym_crate, - [19689] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [18395] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1342), 2, + STATE(1327), 2, sym_line_comment, sym_block_comment, - ACTIONS(2054), 7, + ACTIONS(2812), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130635,7 +130913,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2056), 39, + ACTIONS(2814), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130671,19 +130949,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, + anon_sym_safe, sym_identifier, sym_self, sym_super, sym_crate, - [19750] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [18457] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1343), 2, + STATE(1328), 2, sym_line_comment, sym_block_comment, - ACTIONS(2058), 7, + ACTIONS(2257), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130691,7 +130970,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2060), 39, + ACTIONS(2259), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130727,19 +131006,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, + anon_sym_safe, sym_identifier, sym_self, sym_super, sym_crate, - [19811] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [18519] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1344), 2, + STATE(1329), 2, sym_line_comment, sym_block_comment, - ACTIONS(2062), 7, + ACTIONS(2261), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130747,7 +131027,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2064), 39, + ACTIONS(2263), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130783,19 +131063,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, + anon_sym_safe, sym_identifier, sym_self, sym_super, sym_crate, - [19872] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [18581] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1345), 2, + STATE(1330), 2, sym_line_comment, sym_block_comment, - ACTIONS(2066), 7, + ACTIONS(2273), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130803,7 +131084,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2068), 39, + ACTIONS(2275), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130839,19 +131120,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, + anon_sym_safe, sym_identifier, sym_self, sym_super, sym_crate, - [19933] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [18643] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1346), 2, + STATE(1331), 2, sym_line_comment, sym_block_comment, - ACTIONS(2070), 7, + ACTIONS(2285), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130859,7 +131141,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2072), 39, + ACTIONS(2287), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130895,19 +131177,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, + anon_sym_safe, sym_identifier, sym_self, sym_super, sym_crate, - [19994] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [18705] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1347), 2, + STATE(1332), 2, sym_line_comment, sym_block_comment, - ACTIONS(2074), 7, + ACTIONS(2820), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130915,7 +131198,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2076), 39, + ACTIONS(2822), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130951,19 +131234,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, + anon_sym_safe, sym_identifier, sym_self, sym_super, sym_crate, - [20055] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [18767] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1348), 2, + STATE(1333), 2, sym_line_comment, sym_block_comment, - ACTIONS(2082), 7, + ACTIONS(2289), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130971,7 +131255,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2084), 39, + ACTIONS(2291), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -131007,19 +131291,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, + anon_sym_safe, sym_identifier, sym_self, sym_super, sym_crate, - [20116] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [18829] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1349), 2, + STATE(1334), 2, sym_line_comment, sym_block_comment, - ACTIONS(2086), 7, + ACTIONS(2297), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -131027,7 +131312,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2088), 39, + ACTIONS(2299), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -131063,19 +131348,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, + anon_sym_safe, sym_identifier, sym_self, sym_super, sym_crate, - [20177] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [18891] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1350), 2, + STATE(1335), 2, sym_line_comment, sym_block_comment, - ACTIONS(2090), 7, + ACTIONS(2824), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -131083,7 +131369,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2092), 39, + ACTIONS(2826), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -131119,75 +131405,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, + anon_sym_safe, sym_identifier, sym_self, sym_super, sym_crate, - [20238] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [18953] = 5, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1351), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2094), 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(2096), 39, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_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, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [20299] = 5, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1352), 2, + STATE(1336), 2, sym_line_comment, sym_block_comment, - ACTIONS(2098), 7, + ACTIONS(2301), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -131195,7 +131426,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2100), 39, + ACTIONS(2303), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -131231,75 +131462,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, + anon_sym_safe, sym_identifier, sym_self, sym_super, sym_crate, - [20360] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [19015] = 5, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1353), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2102), 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(2104), 39, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_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, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [20421] = 5, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1354), 2, + STATE(1337), 2, sym_line_comment, sym_block_comment, - ACTIONS(2106), 7, + ACTIONS(2305), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -131307,7 +131483,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2108), 39, + ACTIONS(2307), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -131343,75 +131519,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, + anon_sym_safe, sym_identifier, sym_self, sym_super, sym_crate, - [20482] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [19077] = 5, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1355), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2110), 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(2112), 39, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_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, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [20543] = 5, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1356), 2, + STATE(1338), 2, sym_line_comment, sym_block_comment, - ACTIONS(2114), 7, + ACTIONS(2840), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -131419,7 +131540,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2116), 39, + ACTIONS(2842), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -131455,75 +131576,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, + anon_sym_safe, sym_identifier, sym_self, sym_super, sym_crate, - [20604] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [19139] = 5, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1357), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2118), 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(2120), 39, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_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, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [20665] = 5, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1358), 2, + STATE(1339), 2, sym_line_comment, sym_block_comment, - ACTIONS(2122), 7, + ACTIONS(2309), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -131531,7 +131597,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2124), 39, + ACTIONS(2311), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -131567,19 +131633,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, + anon_sym_safe, sym_identifier, sym_self, sym_super, sym_crate, - [20726] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [19201] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1359), 2, + STATE(1340), 2, sym_line_comment, sym_block_comment, - ACTIONS(2126), 7, + ACTIONS(2852), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -131587,7 +131654,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2128), 39, + ACTIONS(2854), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -131623,19 +131690,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, + anon_sym_safe, sym_identifier, sym_self, sym_super, sym_crate, - [20787] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [19263] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1360), 2, + STATE(1341), 2, sym_line_comment, sym_block_comment, - ACTIONS(2130), 7, + ACTIONS(2856), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -131643,7 +131711,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2132), 39, + ACTIONS(2858), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -131679,19 +131747,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, + anon_sym_safe, sym_identifier, sym_self, sym_super, sym_crate, - [20848] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [19325] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1361), 2, + STATE(1342), 2, sym_line_comment, sym_block_comment, - ACTIONS(2134), 7, + ACTIONS(2860), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -131699,7 +131768,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2136), 39, + ACTIONS(2862), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -131735,19 +131804,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, + anon_sym_safe, sym_identifier, sym_self, sym_super, sym_crate, - [20909] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [19387] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1362), 2, + STATE(1343), 2, sym_line_comment, sym_block_comment, - ACTIONS(2138), 7, + ACTIONS(2313), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -131755,7 +131825,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2140), 39, + ACTIONS(2315), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -131791,19 +131861,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, + anon_sym_safe, sym_identifier, sym_self, sym_super, sym_crate, - [20970] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [19449] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1363), 2, + STATE(1344), 2, sym_line_comment, sym_block_comment, - ACTIONS(2142), 7, + ACTIONS(2864), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -131811,7 +131882,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2144), 39, + ACTIONS(2866), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -131847,19 +131918,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, + anon_sym_safe, sym_identifier, sym_self, sym_super, sym_crate, - [21031] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [19511] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1364), 2, + STATE(1345), 2, sym_line_comment, sym_block_comment, - ACTIONS(2146), 7, + ACTIONS(2868), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -131867,7 +131939,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2148), 39, + ACTIONS(2870), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -131903,19 +131975,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, + anon_sym_safe, sym_identifier, sym_self, sym_super, sym_crate, - [21092] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [19573] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1365), 2, + STATE(1346), 2, sym_line_comment, sym_block_comment, - ACTIONS(2150), 7, + ACTIONS(2872), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -131923,7 +131996,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2152), 39, + ACTIONS(2874), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -131959,19 +132032,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, + anon_sym_safe, sym_identifier, sym_self, sym_super, sym_crate, - [21153] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [19635] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1366), 2, + STATE(1347), 2, sym_line_comment, sym_block_comment, - ACTIONS(2154), 7, + ACTIONS(2876), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -131979,7 +132053,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2156), 39, + ACTIONS(2878), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -132015,19 +132089,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, + anon_sym_safe, sym_identifier, sym_self, sym_super, sym_crate, - [21214] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [19697] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1367), 2, + STATE(1348), 2, sym_line_comment, sym_block_comment, - ACTIONS(2158), 7, + ACTIONS(2884), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -132035,7 +132110,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2160), 39, + ACTIONS(2886), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -132071,19 +132146,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, + anon_sym_safe, sym_identifier, sym_self, sym_super, sym_crate, - [21275] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [19759] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1368), 2, + STATE(1349), 2, sym_line_comment, sym_block_comment, - ACTIONS(2162), 7, + ACTIONS(2896), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -132091,7 +132167,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2164), 39, + ACTIONS(2898), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -132127,75 +132203,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, + anon_sym_safe, sym_identifier, sym_self, sym_super, sym_crate, - [21336] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [19821] = 5, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1369), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2166), 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(2168), 39, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_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, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [21397] = 5, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1370), 2, + STATE(1350), 2, sym_line_comment, sym_block_comment, - ACTIONS(2170), 7, + ACTIONS(1781), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -132203,7 +132224,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2172), 39, + ACTIONS(1783), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -132239,75 +132260,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, + anon_sym_safe, sym_identifier, sym_self, sym_super, sym_crate, - [21458] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [19883] = 5, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1371), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2174), 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(2176), 39, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_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, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [21519] = 5, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1372), 2, + STATE(1351), 2, sym_line_comment, sym_block_comment, - ACTIONS(2178), 7, + ACTIONS(2916), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -132315,7 +132281,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2180), 39, + ACTIONS(2918), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -132351,75 +132317,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, + anon_sym_safe, sym_identifier, sym_self, sym_super, sym_crate, - [21580] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [19945] = 5, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1373), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2182), 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(2184), 39, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_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, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [21641] = 5, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1374), 2, + STATE(1352), 2, sym_line_comment, sym_block_comment, - ACTIONS(2186), 7, + ACTIONS(2980), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -132427,7 +132338,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2188), 39, + ACTIONS(2982), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -132463,75 +132374,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, + anon_sym_safe, sym_identifier, sym_self, sym_super, sym_crate, - [21702] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [20007] = 5, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1375), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2190), 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(2192), 39, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_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, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [21763] = 5, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1376), 2, + STATE(1353), 2, sym_line_comment, sym_block_comment, - ACTIONS(2194), 7, + ACTIONS(2113), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -132539,7 +132395,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2196), 39, + ACTIONS(2115), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -132575,19 +132431,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, + anon_sym_safe, sym_identifier, sym_self, sym_super, sym_crate, - [21824] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [20069] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1377), 2, + STATE(1354), 2, sym_line_comment, sym_block_comment, - ACTIONS(2198), 7, + ACTIONS(2996), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -132595,7 +132452,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2200), 39, + ACTIONS(2998), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -132631,19 +132488,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, + anon_sym_safe, sym_identifier, sym_self, sym_super, sym_crate, - [21885] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [20131] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1378), 2, + STATE(1355), 2, sym_line_comment, sym_block_comment, - ACTIONS(2202), 7, + ACTIONS(3016), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -132651,7 +132509,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2204), 39, + ACTIONS(3018), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -132687,19 +132545,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, + anon_sym_safe, sym_identifier, sym_self, sym_super, sym_crate, - [21946] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [20193] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1379), 2, + STATE(1356), 2, sym_line_comment, sym_block_comment, - ACTIONS(2206), 7, + ACTIONS(3024), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -132707,7 +132566,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2208), 39, + ACTIONS(3026), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -132743,19 +132602,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, + anon_sym_safe, sym_identifier, sym_self, sym_super, sym_crate, - [22007] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [20255] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1380), 2, + STATE(1357), 2, sym_line_comment, sym_block_comment, - ACTIONS(2210), 7, + ACTIONS(3036), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -132763,7 +132623,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2212), 39, + ACTIONS(3038), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -132799,19 +132659,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, + anon_sym_safe, sym_identifier, sym_self, sym_super, sym_crate, - [22068] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [20317] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1381), 2, + STATE(1358), 2, sym_line_comment, sym_block_comment, - ACTIONS(2214), 7, + ACTIONS(3048), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -132819,7 +132680,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2216), 39, + ACTIONS(3050), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -132855,19 +132716,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, + anon_sym_safe, sym_identifier, sym_self, sym_super, sym_crate, - [22129] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [20379] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1382), 2, + STATE(1359), 2, sym_line_comment, sym_block_comment, - ACTIONS(2218), 7, + ACTIONS(2105), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -132875,7 +132737,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2220), 39, + ACTIONS(2107), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -132911,19 +132773,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, + anon_sym_safe, sym_identifier, sym_self, sym_super, sym_crate, - [22190] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [20441] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1383), 2, + STATE(1360), 2, sym_line_comment, sym_block_comment, - ACTIONS(2222), 7, + ACTIONS(2317), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -132931,7 +132794,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2224), 39, + ACTIONS(2319), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -132967,19 +132830,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, + anon_sym_safe, sym_identifier, sym_self, sym_super, sym_crate, - [22251] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [20503] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1384), 2, + STATE(1361), 2, sym_line_comment, sym_block_comment, - ACTIONS(2226), 7, + ACTIONS(2109), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -132987,7 +132851,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2228), 39, + ACTIONS(2111), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -133023,19 +132887,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, + anon_sym_safe, sym_identifier, sym_self, sym_super, sym_crate, - [22312] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [20565] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1385), 2, + STATE(1362), 2, sym_line_comment, sym_block_comment, - ACTIONS(2230), 7, + ACTIONS(2321), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -133043,7 +132908,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2232), 39, + ACTIONS(2323), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -133079,19 +132944,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, + anon_sym_safe, sym_identifier, sym_self, sym_super, sym_crate, - [22373] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [20627] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1386), 2, + STATE(1363), 2, sym_line_comment, sym_block_comment, - ACTIONS(2234), 7, + ACTIONS(2325), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -133099,7 +132965,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2236), 39, + ACTIONS(2327), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -133135,19 +133001,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, + anon_sym_safe, sym_identifier, sym_self, sym_super, sym_crate, - [22434] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [20689] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1387), 2, + STATE(1364), 2, sym_line_comment, sym_block_comment, - ACTIONS(2238), 7, + ACTIONS(2337), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -133155,7 +133022,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2240), 39, + ACTIONS(2339), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -133191,19 +133058,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, + anon_sym_safe, sym_identifier, sym_self, sym_super, sym_crate, - [22495] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [20751] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1388), 2, + STATE(1365), 2, sym_line_comment, sym_block_comment, - ACTIONS(2242), 7, + ACTIONS(2353), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -133211,7 +133079,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2244), 39, + ACTIONS(2355), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -133247,19 +133115,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, + anon_sym_safe, sym_identifier, sym_self, sym_super, sym_crate, - [22556] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [20813] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1389), 2, + STATE(1366), 2, sym_line_comment, sym_block_comment, - ACTIONS(2246), 7, + ACTIONS(2357), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -133267,7 +133136,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2248), 39, + ACTIONS(2359), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -133303,83 +133172,445 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, + anon_sym_safe, sym_identifier, sym_self, sym_super, sym_crate, - [22617] = 5, - ACTIONS(103), 1, + [20875] = 12, + ACTIONS(19), 1, + anon_sym_LBRACE, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(3384), 1, + anon_sym_COLON_COLON, + ACTIONS(3386), 1, + anon_sym_SQUOTE, + ACTIONS(3523), 1, + anon_sym_BANG, + ACTIONS(3580), 1, + anon_sym_move, + STATE(399), 1, + sym_block, + STATE(3582), 1, + sym_label, + STATE(1367), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3380), 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(3378), 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, + [20950] = 12, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(1366), 1, + anon_sym_LBRACE, + ACTIONS(3382), 1, + anon_sym_BANG, + ACTIONS(3384), 1, + anon_sym_COLON_COLON, + ACTIONS(3386), 1, + anon_sym_SQUOTE, + ACTIONS(3582), 1, + anon_sym_move, + STATE(489), 1, + sym_block, + STATE(3747), 1, + sym_label, + STATE(1368), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3380), 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(3378), 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, + [21025] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1390), 2, + ACTIONS(3584), 1, + anon_sym_LBRACE, + STATE(1369), 2, sym_line_comment, sym_block_comment, - ACTIONS(2250), 7, + ACTIONS(3501), 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(3503), 29, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_as, + anon_sym_else, + [21088] = 6, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(3586), 1, + anon_sym_LBRACE, + STATE(1370), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3415), 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(3417), 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_POUND, - sym_metavariable, - ACTIONS(2252), 39, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_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, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [22678] = 5, - ACTIONS(103), 1, + anon_sym_as, + anon_sym_else, + [21151] = 5, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + STATE(1371), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3590), 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(3588), 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, + [21212] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1391), 2, + STATE(1372), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3594), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3592), 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, + [21273] = 6, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(3596), 1, + anon_sym_LBRACE, + STATE(1373), 2, sym_line_comment, sym_block_comment, - ACTIONS(2254), 7, + ACTIONS(3540), 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(3542), 29, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_as, + anon_sym_else, + [21336] = 5, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + STATE(1374), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3554), 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(2256), 39, + ACTIONS(3552), 31, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -133397,41 +133628,29 @@ 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_true, + anon_sym_false, sym_identifier, sym_self, sym_super, sym_crate, - [22739] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [21397] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3348), 1, - anon_sym_SQUOTE, - STATE(1458), 1, - sym_label, - STATE(1392), 2, + STATE(1375), 2, sym_line_comment, sym_block_comment, - ACTIONS(3690), 15, + ACTIONS(1588), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -133447,7 +133666,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3688), 29, + ACTIONS(1590), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -133455,6 +133674,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, @@ -133475,17 +133695,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, - [22804] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [21458] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1393), 2, + STATE(1376), 2, sym_line_comment, sym_block_comment, - ACTIONS(2982), 15, + ACTIONS(3568), 15, sym__raw_string_literal_start, sym_float_literal, anon_sym_LPAREN, @@ -133501,7 +133722,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_string_literal_token1, sym_char_literal, sym_metavariable, - ACTIONS(2984), 31, + ACTIONS(3566), 31, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -133533,29 +133754,28 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22865] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [21519] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1394), 2, + STATE(1377), 2, sym_line_comment, sym_block_comment, - ACTIONS(3694), 13, - anon_sym_SEMI, + ACTIONS(3318), 12, 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_integer_literal, sym_metavariable, - ACTIONS(3692), 33, + ACTIONS(3316), 34, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -133580,24 +133800,1488 @@ 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_where, anon_sym_extern, + anon_sym_safe, anon_sym_dyn, sym_identifier, sym_self, sym_super, sym_crate, - [22926] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [21580] = 21, + ACTIONS(29), 1, + anon_sym_LT, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1395), 2, + ACTIONS(1660), 1, + anon_sym_DASH, + ACTIONS(1686), 1, + aux_sym_string_literal_token1, + ACTIONS(1694), 1, + sym__raw_string_literal_start, + ACTIONS(3346), 1, + anon_sym_if, + ACTIONS(3598), 1, + sym_identifier, + ACTIONS(3602), 1, + anon_sym_COLON_COLON, + ACTIONS(3606), 1, + sym_metavariable, + STATE(2724), 1, + sym_scoped_identifier, + STATE(2856), 1, + sym__literal_pattern, + STATE(3456), 1, + sym_generic_type_with_turbofish, + STATE(3618), 1, + sym_bracketed_type, + ACTIONS(1688), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(3344), 2, + anon_sym_EQ_GT, + anon_sym_PIPE, + STATE(1378), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1684), 3, + sym_float_literal, + sym_integer_literal, + sym_char_literal, + ACTIONS(3604), 3, + sym_self, + sym_super, + sym_crate, + STATE(2440), 4, + sym_negative_literal, + sym_string_literal, + sym_raw_string_literal, + sym_boolean_literal, + ACTIONS(3600), 20, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_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, + [21673] = 6, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(3608), 1, + anon_sym_COLON_COLON, + STATE(1379), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3507), 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(3505), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [21736] = 6, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(3610), 1, + anon_sym_COLON_COLON, + STATE(1380), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3507), 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(3505), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [21799] = 6, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(3612), 1, + anon_sym_COLON_COLON, + STATE(1381), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3507), 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(3505), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [21862] = 21, + ACTIONS(29), 1, + anon_sym_LT, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(1660), 1, + anon_sym_DASH, + ACTIONS(1686), 1, + aux_sym_string_literal_token1, + ACTIONS(1694), 1, + sym__raw_string_literal_start, + ACTIONS(3334), 1, + anon_sym_if, + ACTIONS(3602), 1, + anon_sym_COLON_COLON, + ACTIONS(3614), 1, + sym_identifier, + ACTIONS(3620), 1, + sym_metavariable, + STATE(2693), 1, + sym_scoped_identifier, + STATE(3013), 1, + sym__literal_pattern, + STATE(3456), 1, + sym_generic_type_with_turbofish, + STATE(3618), 1, + sym_bracketed_type, + ACTIONS(1688), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(3332), 2, + anon_sym_EQ_GT, + anon_sym_PIPE, + STATE(1382), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1684), 3, + sym_float_literal, + sym_integer_literal, + sym_char_literal, + ACTIONS(3618), 3, + sym_self, + sym_super, + sym_crate, + STATE(2440), 4, + sym_negative_literal, + sym_string_literal, + sym_raw_string_literal, + sym_boolean_literal, + ACTIONS(3616), 20, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_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, + [21955] = 5, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + STATE(1383), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3624), 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(3622), 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, + [22016] = 21, + ACTIONS(29), 1, + anon_sym_LT, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(1660), 1, + anon_sym_DASH, + ACTIONS(1686), 1, + aux_sym_string_literal_token1, + ACTIONS(1694), 1, + sym__raw_string_literal_start, + ACTIONS(3358), 1, + anon_sym_if, + ACTIONS(3602), 1, + anon_sym_COLON_COLON, + ACTIONS(3626), 1, + sym_identifier, + ACTIONS(3632), 1, + sym_metavariable, + STATE(2707), 1, + sym_scoped_identifier, + STATE(3037), 1, + sym__literal_pattern, + STATE(3456), 1, + sym_generic_type_with_turbofish, + STATE(3618), 1, + sym_bracketed_type, + ACTIONS(1688), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(3356), 2, + anon_sym_EQ_GT, + anon_sym_PIPE, + STATE(1384), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1684), 3, + sym_float_literal, + sym_integer_literal, + sym_char_literal, + ACTIONS(3630), 3, + sym_self, + sym_super, + sym_crate, + STATE(2440), 4, + sym_negative_literal, + sym_string_literal, + sym_raw_string_literal, + sym_boolean_literal, + ACTIONS(3628), 20, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_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, + [22109] = 5, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + STATE(1385), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3636), 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(3634), 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, + [22170] = 5, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + STATE(1386), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3640), 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(3638), 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, + [22231] = 5, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + STATE(1387), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3326), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3328), 31, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [22292] = 6, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(3646), 1, + anon_sym_DASH_GT, + STATE(1388), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3644), 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(3642), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [22355] = 6, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(3612), 1, + anon_sym_COLON_COLON, + STATE(1389), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3477), 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(3475), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [22418] = 6, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(3612), 1, + anon_sym_COLON_COLON, + STATE(1390), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3529), 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(3527), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [22481] = 6, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(3652), 1, + anon_sym_DASH_GT, + STATE(1391), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3650), 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(3648), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [22544] = 6, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(3658), 1, + anon_sym_DASH_GT, + STATE(1392), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3656), 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(3654), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [22607] = 7, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(3660), 1, + anon_sym_else, + STATE(1451), 1, + sym_else_clause, + STATE(1393), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1350), 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(1348), 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_SQUOTE, + anon_sym_as, + [22672] = 5, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + STATE(1394), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3499), 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(3497), 29, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + anon_sym_LT2, + [22733] = 5, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + STATE(1395), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3664), 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(3662), 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_DASH_GT, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [22794] = 6, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(3670), 1, + anon_sym_DASH_GT, + STATE(1396), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3668), 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(3666), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [22857] = 6, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(3676), 1, + anon_sym_DASH_GT, + STATE(1397), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3674), 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(3672), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [22920] = 6, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(3682), 1, + anon_sym_DASH_GT, + STATE(1398), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3680), 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(3678), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [22983] = 5, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + STATE(1399), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3686), 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(3684), 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, + [23044] = 5, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + STATE(1400), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3690), 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(3688), 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_DASH_GT, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [23105] = 6, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(3612), 1, + anon_sym_COLON_COLON, + STATE(1401), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3511), 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(3509), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [23168] = 6, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(3696), 1, + anon_sym_DASH_GT, + STATE(1402), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3694), 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(3692), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [23231] = 5, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + STATE(1403), 2, sym_line_comment, sym_block_comment, - ACTIONS(3698), 15, + ACTIONS(3700), 15, sym__raw_string_literal_start, sym_float_literal, anon_sym_LPAREN, @@ -133613,7 +135297,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_string_literal_token1, sym_char_literal, sym_metavariable, - ACTIONS(3696), 31, + ACTIONS(3698), 31, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -133645,15 +135329,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22987] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [23292] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1396), 2, + STATE(1404), 2, sym_line_comment, sym_block_comment, - ACTIONS(3702), 15, + ACTIONS(3704), 15, sym__raw_string_literal_start, sym_float_literal, anon_sym_LPAREN, @@ -133669,7 +135353,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_string_literal_token1, sym_char_literal, sym_metavariable, - ACTIONS(3700), 31, + ACTIONS(3702), 31, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -133701,131 +135385,243 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23048] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [23353] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1397), 2, + STATE(1405), 2, sym_line_comment, sym_block_comment, - ACTIONS(2782), 7, + ACTIONS(3708), 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(3706), 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_LT, + 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(2784), 39, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_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, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [23109] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [23414] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1398), 2, + STATE(1406), 2, sym_line_comment, sym_block_comment, - ACTIONS(2782), 15, - sym__raw_string_literal_start, - sym_float_literal, + ACTIONS(3712), 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(3710), 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_DASH_GT, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [23475] = 5, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + STATE(1407), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3716), 15, + anon_sym_PLUS, + anon_sym_STAR, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, anon_sym_AMP, anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3714), 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_integer_literal, - aux_sym_string_literal_token1, - sym_char_literal, - sym_metavariable, - ACTIONS(2784), 31, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym__, - anon_sym_DOT_DOT, - anon_sym_const, - anon_sym_default, - anon_sym_gen, - anon_sym_union, - anon_sym_ref, - sym_mutable_specifier, - anon_sym_true, - anon_sym_false, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [23170] = 7, - ACTIONS(103), 1, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [23536] = 5, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + STATE(1408), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3720), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3718), 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_DASH_GT, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [23597] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3706), 1, + ACTIONS(3724), 1, anon_sym_LPAREN, - STATE(1510), 1, + STATE(1504), 1, sym_arguments, - STATE(1399), 2, + STATE(1409), 2, sym_line_comment, sym_block_comment, - ACTIONS(3708), 15, + ACTIONS(3726), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -133841,7 +135637,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3704), 29, + ACTIONS(3722), 29, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACK, @@ -133871,29 +135667,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [23235] = 12, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [23662] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(1301), 1, + STATE(1410), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3730), 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(3728), 31, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LBRACE, - ACTIONS(3344), 1, - anon_sym_BANG, - ACTIONS(3346), 1, + 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, - ACTIONS(3348), 1, anon_sym_SQUOTE, - ACTIONS(3710), 1, - anon_sym_move, - STATE(485), 1, - sym_block, - STATE(3717), 1, - sym_label, - STATE(1400), 2, + anon_sym_as, + anon_sym_else, + [23723] = 5, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + STATE(1411), 2, sym_line_comment, sym_block_comment, - ACTIONS(3342), 15, + ACTIONS(3734), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -133909,9 +135747,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3340), 24, + ACTIONS(3732), 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, @@ -133933,18 +135775,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, - [23310] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + anon_sym_else, + [23784] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3712), 1, + ACTIONS(3736), 1, anon_sym_COLON_COLON, - STATE(1401), 2, + STATE(1412), 2, sym_line_comment, sym_block_comment, - ACTIONS(1429), 15, + ACTIONS(1472), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -133960,7 +135805,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1431), 30, + ACTIONS(1470), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -133988,82 +135833,203 @@ 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_SQUOTE, + anon_sym_as, + anon_sym_else, + [23847] = 5, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + STATE(1413), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2109), 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(2111), 34, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_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_pub, + anon_sym_union, + anon_sym_unsafe, + anon_sym_extern, + anon_sym_safe, + anon_sym_dyn, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [23908] = 5, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + STATE(1414), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2692), 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(2694), 31, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym__, + anon_sym_DOT_DOT, + anon_sym_const, + anon_sym_default, + anon_sym_gen, + anon_sym_union, + anon_sym_ref, + sym_mutable_specifier, + anon_sym_true, + anon_sym_false, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [23969] = 6, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(3738), 1, + anon_sym_LBRACE, + STATE(1415), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3439), 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(3441), 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, - [23373] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [24032] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1402), 2, + STATE(1416), 2, sym_line_comment, sym_block_comment, - ACTIONS(3716), 13, - anon_sym_SEMI, + ACTIONS(2109), 15, + sym__raw_string_literal_start, + sym_float_literal, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_BANG, + anon_sym_DASH, anon_sym_AMP, - anon_sym_EQ, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_SQUOTE, - sym_metavariable, - ACTIONS(3714), 33, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_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_where, - anon_sym_extern, - anon_sym_dyn, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [23434] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1403), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2814), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, + 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(2816), 39, + ACTIONS(2111), 31, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -134081,37 +136047,33 @@ 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_true, + anon_sym_false, sym_identifier, sym_self, sym_super, sym_crate, - [23495] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [24093] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1404), 2, + ACTIONS(3386), 1, + anon_sym_SQUOTE, + STATE(1427), 1, + sym_label, + STATE(1417), 2, sym_line_comment, sym_block_comment, - ACTIONS(3720), 15, + ACTIONS(3742), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -134127,7 +136089,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3718), 30, + ACTIONS(3740), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -134155,18 +136117,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, - [23555] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [24158] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1405), 2, + STATE(1418), 2, sym_line_comment, sym_block_comment, - ACTIONS(1479), 15, + ACTIONS(1390), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -134182,7 +136143,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1477), 30, + ACTIONS(1388), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -134213,15 +136174,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [23615] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [24218] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1406), 2, + STATE(1419), 2, sym_line_comment, sym_block_comment, - ACTIONS(1483), 15, + ACTIONS(3746), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -134237,7 +136198,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1481), 30, + ACTIONS(3744), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -134268,15 +136229,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [23675] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [24278] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1407), 2, + STATE(1420), 2, sym_line_comment, sym_block_comment, - ACTIONS(1495), 15, + ACTIONS(3750), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -134292,7 +136253,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1493), 30, + ACTIONS(3748), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -134323,15 +136284,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [23735] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [24338] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1408), 2, + STATE(1421), 2, sym_line_comment, sym_block_comment, - ACTIONS(1469), 15, + ACTIONS(3754), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -134347,7 +136308,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1467), 30, + ACTIONS(3752), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -134378,15 +136339,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [23795] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [24398] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1409), 2, + ACTIONS(3758), 2, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + STATE(1422), 2, sym_line_comment, sym_block_comment, - ACTIONS(1531), 15, + ACTIONS(3760), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -134402,13 +136366,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1529), 30, + ACTIONS(3756), 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, @@ -134430,18 +136393,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, - [23855] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [24460] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1410), 2, + STATE(1423), 2, sym_line_comment, sym_block_comment, - ACTIONS(1515), 15, + ACTIONS(3477), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -134457,7 +136419,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1513), 30, + ACTIONS(3475), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -134488,15 +136450,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [23915] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [24520] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1411), 2, + STATE(1424), 2, sym_line_comment, sym_block_comment, - ACTIONS(3724), 15, + ACTIONS(3760), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -134512,7 +136474,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3722), 30, + ACTIONS(3756), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -134543,15 +136505,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [23975] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [24580] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1412), 2, + STATE(1425), 2, sym_line_comment, sym_block_comment, - ACTIONS(1415), 15, + ACTIONS(3529), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -134567,7 +136529,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1413), 30, + ACTIONS(3527), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -134598,15 +136560,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [24035] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [24640] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1413), 2, + STATE(1426), 2, sym_line_comment, sym_block_comment, - ACTIONS(1389), 15, + ACTIONS(3764), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -134622,7 +136584,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1387), 30, + ACTIONS(3762), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -134653,15 +136615,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [24095] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [24700] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1414), 2, + STATE(1427), 2, sym_line_comment, sym_block_comment, - ACTIONS(1491), 15, + ACTIONS(3768), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -134677,7 +136639,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1489), 30, + ACTIONS(3766), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -134708,15 +136670,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [24155] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [24760] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1415), 2, + STATE(1428), 2, sym_line_comment, sym_block_comment, - ACTIONS(3728), 15, + ACTIONS(3772), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -134732,7 +136694,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3726), 30, + ACTIONS(3770), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -134763,70 +136725,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [24215] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [24820] = 23, + ACTIONS(29), 1, + anon_sym_LT, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1416), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3732), 15, - anon_sym_PLUS, + ACTIONS(1604), 1, + anon_sym_LBRACK, + ACTIONS(3421), 1, + anon_sym_LPAREN, + ACTIONS(3425), 1, + anon_sym_COLON_COLON, + ACTIONS(3433), 1, + sym_metavariable, + ACTIONS(3479), 1, + sym_identifier, + ACTIONS(3483), 1, anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(3487), 1, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3730), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, + ACTIONS(3489), 1, anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [24275] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + ACTIONS(3491), 1, + anon_sym_for, + STATE(2549), 1, + sym_where_predicate, + STATE(2788), 1, + sym_scoped_type_identifier, + STATE(2867), 1, + sym_generic_type, + STATE(3482), 1, + sym_generic_type_with_turbofish, + STATE(3488), 1, + sym_scoped_identifier, + STATE(3621), 1, + sym_bracketed_type, + STATE(1429), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3429), 3, + anon_sym_default, + anon_sym_gen, + anon_sym_union, + ACTIONS(3431), 3, + sym_self, + sym_super, + sym_crate, + STATE(3418), 6, + sym_higher_ranked_trait_bound, + sym_lifetime, + sym_array_type, + sym_tuple_type, + sym_reference_type, + sym_pointer_type, + ACTIONS(3485), 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, + [24916] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1417), 2, + STATE(1430), 2, sym_line_comment, sym_block_comment, - ACTIONS(3736), 15, + ACTIONS(1536), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -134842,7 +136822,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3734), 30, + ACTIONS(1534), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -134873,15 +136853,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [24335] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [24976] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1418), 2, + STATE(1431), 2, sym_line_comment, sym_block_comment, - ACTIONS(3740), 15, + ACTIONS(1484), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -134897,7 +136877,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3738), 30, + ACTIONS(1482), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -134928,73 +136908,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [24395] = 8, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [25036] = 5, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3744), 1, - anon_sym_LBRACK, - ACTIONS(3748), 1, - anon_sym_QMARK, - ACTIONS(3750), 1, - anon_sym_DOT, - STATE(1419), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3746), 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(3742), 28, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [24461] = 5, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1420), 2, + STATE(1432), 2, sym_line_comment, sym_block_comment, - ACTIONS(3754), 15, + ACTIONS(1446), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -135010,7 +136932,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3752), 30, + ACTIONS(1444), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -135041,15 +136963,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [24521] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [25096] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1421), 2, + STATE(1433), 2, sym_line_comment, sym_block_comment, - ACTIONS(3758), 15, + ACTIONS(3776), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -135065,7 +136987,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3756), 30, + ACTIONS(3774), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -135096,15 +137018,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [24581] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [25156] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1422), 2, + STATE(1434), 2, sym_line_comment, sym_block_comment, - ACTIONS(3762), 15, + ACTIONS(1516), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -135120,7 +137042,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3760), 30, + ACTIONS(1514), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -135151,15 +137073,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [24641] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [25216] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1423), 2, + STATE(1435), 2, sym_line_comment, sym_block_comment, - ACTIONS(3766), 15, + ACTIONS(1006), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -135175,7 +137097,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3764), 30, + ACTIONS(1008), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -135206,15 +137128,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [24701] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [25276] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1424), 2, + STATE(1436), 2, sym_line_comment, sym_block_comment, - ACTIONS(3770), 15, + ACTIONS(1532), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -135230,7 +137152,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3768), 30, + ACTIONS(1530), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -135261,15 +137183,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [24761] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [25336] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1425), 2, + STATE(1437), 2, sym_line_comment, sym_block_comment, - ACTIONS(997), 15, + ACTIONS(1450), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -135285,7 +137207,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(999), 30, + ACTIONS(1448), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -135316,15 +137238,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [24821] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [25396] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1426), 2, + STATE(1438), 2, sym_line_comment, sym_block_comment, - ACTIONS(3774), 15, + ACTIONS(1398), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -135340,7 +137262,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3772), 30, + ACTIONS(1396), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -135371,15 +137293,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [24881] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [25456] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1427), 2, + STATE(1439), 2, sym_line_comment, sym_block_comment, - ACTIONS(3778), 15, + ACTIONS(1026), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -135395,7 +137317,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3776), 30, + ACTIONS(1028), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -135426,72 +137348,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [24941] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [25516] = 5, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3344), 1, - anon_sym_BANG, - ACTIONS(3346), 1, - anon_sym_COLON_COLON, - STATE(1428), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3342), 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(3340), 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, - [25005] = 5, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1429), 2, + STATE(1440), 2, sym_line_comment, sym_block_comment, - ACTIONS(3451), 15, + ACTIONS(3780), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -135507,7 +137372,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3449), 30, + ACTIONS(3778), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -135538,15 +137403,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [25065] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [25576] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1430), 2, + STATE(1441), 2, sym_line_comment, sym_block_comment, - ACTIONS(3443), 15, + ACTIONS(3784), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -135562,7 +137427,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3441), 30, + ACTIONS(3782), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -135593,15 +137458,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [25125] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [25636] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1431), 2, + STATE(1442), 2, sym_line_comment, sym_block_comment, - ACTIONS(3782), 15, + ACTIONS(3788), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -135617,7 +137482,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3780), 30, + ACTIONS(3786), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -135648,15 +137513,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [25185] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [25696] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1432), 2, + STATE(1443), 2, sym_line_comment, sym_block_comment, - ACTIONS(1443), 15, + ACTIONS(3792), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -135672,7 +137537,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1441), 30, + ACTIONS(3790), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -135703,15 +137568,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [25245] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [25756] = 8, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1433), 2, + ACTIONS(3796), 1, + anon_sym_LBRACK, + ACTIONS(3800), 1, + anon_sym_QMARK, + ACTIONS(3802), 1, + anon_sym_DOT, + STATE(1444), 2, sym_line_comment, sym_block_comment, - ACTIONS(1473), 15, + ACTIONS(3798), 14, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -135725,17 +137596,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(1471), 30, + ACTIONS(3794), 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, @@ -135758,15 +137626,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [25305] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [25822] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1434), 2, + STATE(1445), 2, sym_line_comment, sym_block_comment, - ACTIONS(3786), 15, + ACTIONS(3806), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -135782,7 +137650,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3784), 30, + ACTIONS(3804), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -135813,15 +137681,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [25365] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [25882] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1435), 2, + STATE(1446), 2, sym_line_comment, sym_block_comment, - ACTIONS(1423), 15, + ACTIONS(3810), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -135837,7 +137705,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1421), 30, + ACTIONS(3808), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -135868,15 +137736,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [25425] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [25942] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1436), 2, + STATE(1447), 2, sym_line_comment, sym_block_comment, - ACTIONS(1487), 15, + ACTIONS(3810), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -135892,7 +137760,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1485), 30, + ACTIONS(3808), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -135923,15 +137791,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [25485] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [26002] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1437), 2, + STATE(1448), 2, sym_line_comment, sym_block_comment, - ACTIONS(3790), 15, + ACTIONS(3810), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -135947,7 +137815,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3788), 30, + ACTIONS(3808), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -135978,15 +137846,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [25545] = 5, - ACTIONS(103), 1, + [26062] = 25, + ACTIONS(29), 1, + anon_sym_LT, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(1276), 1, + anon_sym_fn, + ACTIONS(1284), 1, + anon_sym_extern, + ACTIONS(3162), 1, + anon_sym_for, + ACTIONS(3425), 1, + anon_sym_COLON_COLON, + ACTIONS(3427), 1, + anon_sym_default, + ACTIONS(3433), 1, + sym_metavariable, + ACTIONS(3812), 1, + sym_identifier, + STATE(1591), 1, + sym_for_lifetimes, + STATE(1999), 1, + sym_scoped_type_identifier, + STATE(2028), 1, + sym_generic_type, + STATE(2244), 1, + aux_sym_function_modifiers_repeat1, + STATE(2373), 1, + sym_extern_modifier, + STATE(3482), 1, + sym_generic_type_with_turbofish, + STATE(3488), 1, + sym_scoped_identifier, + STATE(3591), 1, + sym_function_modifiers, + STATE(3621), 1, + sym_bracketed_type, + ACTIONS(3429), 2, + anon_sym_gen, + anon_sym_union, + STATE(1449), 2, + sym_line_comment, + sym_block_comment, + STATE(2080), 2, + sym_higher_ranked_trait_bound, + sym_function_type, + ACTIONS(3431), 3, + sym_self, + sym_super, + sym_crate, + ACTIONS(1270), 4, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + anon_sym_safe, + ACTIONS(3423), 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, + [26162] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1438), 2, + STATE(1450), 2, sym_line_comment, sym_block_comment, - ACTIONS(1527), 15, + ACTIONS(1042), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -136002,7 +137945,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1525), 30, + ACTIONS(1044), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -136033,15 +137976,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [25605] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [26222] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1439), 2, + STATE(1451), 2, sym_line_comment, sym_block_comment, - ACTIONS(1429), 15, + ACTIONS(1488), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -136057,7 +138000,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1431), 30, + ACTIONS(1486), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -136088,15 +138031,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [25665] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [26282] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1440), 2, + STATE(1452), 2, sym_line_comment, sym_block_comment, - ACTIONS(3794), 15, + ACTIONS(1442), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -136112,7 +138055,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3792), 30, + ACTIONS(1440), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -136143,15 +138086,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [25725] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [26342] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1441), 2, + STATE(1453), 2, sym_line_comment, sym_block_comment, - ACTIONS(3798), 15, + ACTIONS(3816), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -136167,7 +138110,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3796), 30, + ACTIONS(3814), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -136198,15 +138141,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [25785] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [26402] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1442), 2, + STATE(1454), 2, sym_line_comment, sym_block_comment, - ACTIONS(3802), 15, + ACTIONS(1464), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -136222,7 +138165,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3800), 30, + ACTIONS(1462), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -136253,88 +138196,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [25845] = 23, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [26462] = 5, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(1599), 1, - anon_sym_LBRACK, - ACTIONS(3385), 1, - sym_identifier, - ACTIONS(3389), 1, - anon_sym_LPAREN, - ACTIONS(3391), 1, - anon_sym_STAR, - ACTIONS(3395), 1, - anon_sym_AMP, - ACTIONS(3397), 1, - anon_sym_COLON_COLON, - ACTIONS(3399), 1, - anon_sym_SQUOTE, - ACTIONS(3403), 1, - anon_sym_for, - ACTIONS(3407), 1, - sym_metavariable, - STATE(2524), 1, - sym_where_predicate, - STATE(2765), 1, - sym_scoped_type_identifier, - STATE(2896), 1, - sym_generic_type, - STATE(3457), 1, - sym_generic_type_with_turbofish, - STATE(3591), 1, - sym_bracketed_type, - STATE(3656), 1, - sym_scoped_identifier, - STATE(1443), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3401), 3, - anon_sym_default, - anon_sym_gen, - anon_sym_union, - ACTIONS(3405), 3, - sym_self, - sym_super, - sym_crate, - STATE(3174), 6, - sym_higher_ranked_trait_bound, - sym_lifetime, - sym_array_type, - sym_tuple_type, - sym_reference_type, - sym_pointer_type, - ACTIONS(3393), 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, - [25941] = 5, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1444), 2, + STATE(1455), 2, sym_line_comment, sym_block_comment, - ACTIONS(1435), 15, + ACTIONS(1404), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -136350,7 +138220,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1433), 30, + ACTIONS(1402), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -136381,15 +138251,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [26001] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [26522] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1445), 2, + STATE(1456), 2, sym_line_comment, sym_block_comment, - ACTIONS(1439), 15, + ACTIONS(3820), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -136405,7 +138275,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1437), 30, + ACTIONS(3818), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -136436,15 +138306,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [26061] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [26582] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1446), 2, + STATE(1457), 2, sym_line_comment, sym_block_comment, - ACTIONS(3806), 15, + ACTIONS(3824), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -136460,7 +138330,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3804), 30, + ACTIONS(3822), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -136491,15 +138361,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [26121] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [26642] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1447), 2, + STATE(1458), 2, sym_line_comment, sym_block_comment, - ACTIONS(1017), 15, + ACTIONS(3828), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -136515,7 +138385,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1019), 30, + ACTIONS(3826), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -136546,15 +138416,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [26181] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [26702] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1448), 2, + STATE(1459), 2, sym_line_comment, sym_block_comment, - ACTIONS(1385), 15, + ACTIONS(3832), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -136570,7 +138440,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1383), 30, + ACTIONS(3830), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -136601,15 +138471,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [26241] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [26762] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1449), 2, + STATE(1460), 2, sym_line_comment, sym_block_comment, - ACTIONS(3810), 15, + ACTIONS(3511), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -136625,7 +138495,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3808), 30, + ACTIONS(3509), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -136656,15 +138526,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [26301] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [26822] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1450), 2, + ACTIONS(3834), 2, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + STATE(1461), 2, sym_line_comment, sym_block_comment, - ACTIONS(3814), 15, + ACTIONS(3760), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -136680,13 +138553,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3812), 30, + ACTIONS(3756), 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, @@ -136708,18 +138580,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, - [26361] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [26884] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1451), 2, + STATE(1462), 2, sym_line_comment, sym_block_comment, - ACTIONS(3818), 15, + ACTIONS(3838), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -136735,7 +138606,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3816), 30, + ACTIONS(3836), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -136766,15 +138637,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [26421] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [26944] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1452), 2, + STATE(1463), 2, sym_line_comment, sym_block_comment, - ACTIONS(3822), 15, + ACTIONS(3842), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -136790,7 +138661,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3820), 30, + ACTIONS(3840), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -136821,15 +138692,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [26481] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [27004] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1453), 2, + STATE(1464), 2, sym_line_comment, sym_block_comment, - ACTIONS(1393), 15, + ACTIONS(3846), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -136845,7 +138716,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1391), 30, + ACTIONS(3844), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -136876,15 +138747,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [26541] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [27064] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1454), 2, + STATE(1465), 2, sym_line_comment, sym_block_comment, - ACTIONS(3826), 15, + ACTIONS(1046), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -136900,7 +138771,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3824), 30, + ACTIONS(1048), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -136931,15 +138802,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [26601] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [27124] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1455), 2, + STATE(1466), 2, sym_line_comment, sym_block_comment, - ACTIONS(3830), 15, + ACTIONS(1492), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -136955,7 +138826,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3828), 30, + ACTIONS(1490), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -136986,15 +138857,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [26661] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [27184] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1456), 2, + STATE(1467), 2, sym_line_comment, sym_block_comment, - ACTIONS(3834), 15, + ACTIONS(1496), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -137010,7 +138881,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3832), 30, + ACTIONS(1494), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -137041,15 +138912,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [26721] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [27244] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1457), 2, + STATE(1468), 2, sym_line_comment, sym_block_comment, - ACTIONS(3838), 15, + ACTIONS(1500), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -137065,7 +138936,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3836), 30, + ACTIONS(1498), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -137096,15 +138967,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [26781] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [27304] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1458), 2, + STATE(1469), 2, sym_line_comment, sym_block_comment, - ACTIONS(3842), 15, + ACTIONS(1472), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -137120,7 +138991,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3840), 30, + ACTIONS(1470), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -137151,18 +139022,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [26841] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [27364] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3846), 2, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - STATE(1459), 2, + STATE(1470), 2, sym_line_comment, sym_block_comment, - ACTIONS(3848), 15, + ACTIONS(3507), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -137178,12 +139046,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3844), 28, + ACTIONS(3505), 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, @@ -137205,17 +139074,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, - [26903] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [27424] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1460), 2, + STATE(1471), 2, sym_line_comment, sym_block_comment, - ACTIONS(3852), 15, + ACTIONS(1360), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -137231,7 +139101,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3850), 30, + ACTIONS(1358), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -137262,15 +139132,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [26963] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [27484] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1461), 2, + STATE(1472), 2, sym_line_comment, sym_block_comment, - ACTIONS(3852), 15, + ACTIONS(1524), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -137286,7 +139156,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3850), 30, + ACTIONS(1522), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -137317,15 +139187,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [27023] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [27544] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1462), 2, + STATE(1473), 2, sym_line_comment, sym_block_comment, - ACTIONS(3852), 15, + ACTIONS(3850), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -137341,7 +139211,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3850), 30, + ACTIONS(3848), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -137372,15 +139242,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [27083] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [27604] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1463), 2, + STATE(1474), 2, sym_line_comment, sym_block_comment, - ACTIONS(1429), 15, + ACTIONS(3854), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -137396,7 +139266,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1431), 30, + ACTIONS(3852), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -137427,15 +139297,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [27143] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [27664] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1464), 2, + STATE(1475), 2, sym_line_comment, sym_block_comment, - ACTIONS(1045), 15, + ACTIONS(3858), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -137451,7 +139321,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1047), 30, + ACTIONS(3856), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -137482,15 +139352,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [27203] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [27724] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1465), 2, + STATE(1476), 2, sym_line_comment, sym_block_comment, - ACTIONS(3856), 15, + ACTIONS(1476), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -137506,7 +139376,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3854), 30, + ACTIONS(1474), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -137537,15 +139407,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [27263] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [27784] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1466), 2, + STATE(1477), 2, sym_line_comment, sym_block_comment, - ACTIONS(1419), 15, + ACTIONS(3862), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -137561,7 +139431,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1417), 30, + ACTIONS(3860), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -137592,74 +139462,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [27323] = 9, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [27844] = 5, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3744), 1, - anon_sym_LBRACK, - ACTIONS(3748), 1, - anon_sym_QMARK, - ACTIONS(3750), 1, - anon_sym_DOT, - ACTIONS(3862), 1, - anon_sym_as, - STATE(1467), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3860), 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(3858), 27, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_else, - [27391] = 5, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1468), 2, + STATE(1478), 2, sym_line_comment, sym_block_comment, - ACTIONS(1499), 15, + ACTIONS(3866), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -137675,7 +139486,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1497), 30, + ACTIONS(3864), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -137706,15 +139517,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [27451] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [27904] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1469), 2, + STATE(1479), 2, sym_line_comment, sym_block_comment, - ACTIONS(1519), 15, + ACTIONS(3870), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -137730,7 +139541,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1517), 30, + ACTIONS(3868), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -137761,15 +139572,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [27511] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [27964] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1470), 2, + STATE(1480), 2, sym_line_comment, sym_block_comment, - ACTIONS(3866), 15, + ACTIONS(3874), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -137785,7 +139596,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3864), 30, + ACTIONS(3872), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -137816,15 +139627,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [27571] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [28024] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1471), 2, + STATE(1481), 2, sym_line_comment, sym_block_comment, - ACTIONS(3870), 15, + ACTIONS(3878), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -137840,7 +139651,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3868), 30, + ACTIONS(3876), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -137871,15 +139682,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [27631] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [28084] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1472), 2, + STATE(1482), 2, sym_line_comment, sym_block_comment, - ACTIONS(3874), 15, + ACTIONS(1472), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -137895,7 +139706,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3872), 30, + ACTIONS(1470), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -137926,15 +139737,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [27691] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [28144] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1473), 2, + STATE(1483), 2, sym_line_comment, sym_block_comment, - ACTIONS(993), 15, + ACTIONS(1520), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -137950,7 +139761,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(995), 30, + ACTIONS(1518), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -137981,15 +139792,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [27751] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [28204] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1474), 2, + STATE(1484), 2, sym_line_comment, sym_block_comment, - ACTIONS(3878), 15, + ACTIONS(1012), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -138005,7 +139816,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3876), 30, + ACTIONS(1014), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -138036,12 +139847,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [27811] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [28264] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1475), 2, + STATE(1485), 2, sym_line_comment, sym_block_comment, ACTIONS(3882), 15, @@ -138091,71 +139902,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [27871] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [28324] = 5, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3884), 2, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - STATE(1476), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3848), 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(3844), 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, - [27933] = 5, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1477), 2, + STATE(1486), 2, sym_line_comment, sym_block_comment, - ACTIONS(3848), 15, + ACTIONS(3886), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -138171,7 +139926,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3844), 30, + ACTIONS(3884), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -138202,15 +139957,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [27993] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [28384] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1478), 2, + STATE(1487), 2, sym_line_comment, sym_block_comment, - ACTIONS(3888), 15, + ACTIONS(3890), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -138226,7 +139981,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3886), 30, + ACTIONS(3888), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -138257,15 +140012,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [28053] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [28444] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1479), 2, + STATE(1488), 2, sym_line_comment, sym_block_comment, - ACTIONS(3892), 15, + ACTIONS(1460), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -138281,7 +140036,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3890), 30, + ACTIONS(1458), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -138312,73 +140067,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [28113] = 8, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [28504] = 5, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3744), 1, - anon_sym_LBRACK, - ACTIONS(3748), 1, - anon_sym_QMARK, - ACTIONS(3750), 1, - anon_sym_DOT, - STATE(1480), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3896), 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(3894), 28, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [28179] = 5, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1481), 2, + STATE(1489), 2, sym_line_comment, sym_block_comment, - ACTIONS(1463), 15, + ACTIONS(3894), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -138394,7 +140091,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1461), 30, + ACTIONS(3892), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -138425,15 +140122,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [28239] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [28564] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1482), 2, + STATE(1490), 2, sym_line_comment, sym_block_comment, - ACTIONS(3900), 15, + ACTIONS(3898), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -138449,7 +140146,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3898), 30, + ACTIONS(3896), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -138480,15 +140177,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [28299] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [28624] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1483), 2, + STATE(1491), 2, sym_line_comment, sym_block_comment, - ACTIONS(3904), 15, + ACTIONS(3902), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -138504,7 +140201,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3902), 30, + ACTIONS(3900), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -138535,15 +140232,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [28359] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [28684] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1484), 2, + STATE(1492), 2, sym_line_comment, sym_block_comment, - ACTIONS(3908), 15, + ACTIONS(1472), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -138559,7 +140256,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3906), 30, + ACTIONS(1470), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -138590,15 +140287,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [28419] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [28744] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1485), 2, + STATE(1493), 2, sym_line_comment, sym_block_comment, - ACTIONS(3912), 15, + ACTIONS(1528), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -138614,7 +140311,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3910), 30, + ACTIONS(1526), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -138645,15 +140342,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [28479] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [28804] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1486), 2, + STATE(1494), 2, sym_line_comment, sym_block_comment, - ACTIONS(3431), 15, + ACTIONS(3906), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -138669,7 +140366,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3429), 30, + ACTIONS(3904), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -138700,15 +140397,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [28539] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [28864] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1487), 2, + STATE(1495), 2, sym_line_comment, sym_block_comment, - ACTIONS(3916), 15, + ACTIONS(1504), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -138724,7 +140421,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3914), 30, + ACTIONS(1502), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -138755,15 +140452,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [28599] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [28924] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1488), 2, + STATE(1496), 2, sym_line_comment, sym_block_comment, - ACTIONS(3920), 15, + ACTIONS(1508), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -138779,7 +140476,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3918), 30, + ACTIONS(1506), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -138810,15 +140507,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [28659] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [28984] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1489), 2, + STATE(1497), 2, sym_line_comment, sym_block_comment, - ACTIONS(3924), 15, + ACTIONS(1512), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -138834,7 +140531,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3922), 30, + ACTIONS(1510), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -138865,15 +140562,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [28719] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [29044] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1490), 2, + STATE(1498), 2, sym_line_comment, sym_block_comment, - ACTIONS(3928), 15, + ACTIONS(3910), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -138889,7 +140586,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3926), 30, + ACTIONS(3908), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -138920,15 +140617,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [28779] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [29104] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1491), 2, + STATE(1499), 2, sym_line_comment, sym_block_comment, - ACTIONS(1049), 15, + ACTIONS(3914), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -138944,7 +140641,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1051), 30, + ACTIONS(3912), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -138975,15 +140672,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [28839] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [29164] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1492), 2, + STATE(1500), 2, sym_line_comment, sym_block_comment, - ACTIONS(1507), 15, + ACTIONS(3918), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -138999,7 +140696,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1505), 30, + ACTIONS(3916), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -139030,15 +140727,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [28899] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [29224] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1493), 2, + STATE(1501), 2, sym_line_comment, sym_block_comment, - ACTIONS(1511), 15, + ACTIONS(3922), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -139054,7 +140751,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1509), 30, + ACTIONS(3920), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -139085,70 +140782,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [28959] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [29284] = 5, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1494), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3292), 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(3290), 33, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_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_pub, - anon_sym_union, - anon_sym_unsafe, - anon_sym_extern, - anon_sym_dyn, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [29019] = 5, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1495), 2, + STATE(1502), 2, sym_line_comment, sym_block_comment, - ACTIONS(1397), 15, + ACTIONS(3926), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -139164,7 +140806,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1395), 30, + ACTIONS(3924), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -139195,70 +140837,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [29079] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [29344] = 5, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1496), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2782), 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(2784), 33, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_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_pub, - anon_sym_union, - anon_sym_unsafe, - anon_sym_extern, - anon_sym_dyn, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [29139] = 5, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1497), 2, + STATE(1503), 2, sym_line_comment, sym_block_comment, - ACTIONS(3932), 15, + ACTIONS(3930), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -139274,7 +140861,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3930), 30, + ACTIONS(3928), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -139305,77 +140892,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [29199] = 12, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [29404] = 5, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(407), 1, - anon_sym_LBRACE, - ACTIONS(3348), 1, - anon_sym_SQUOTE, - ACTIONS(3934), 1, - anon_sym_BANG, - ACTIONS(3936), 1, - anon_sym_COLON_COLON, - ACTIONS(3938), 1, - anon_sym_move, - STATE(1733), 1, - sym_block, - STATE(3718), 1, - sym_label, - STATE(1498), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3342), 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(3340), 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, - [29273] = 5, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1499), 2, + STATE(1504), 2, sym_line_comment, sym_block_comment, - ACTIONS(1523), 15, + ACTIONS(3934), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -139391,7 +140916,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1521), 30, + ACTIONS(3932), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -139422,15 +140947,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [29333] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [29464] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1500), 2, + STATE(1505), 2, sym_line_comment, sym_block_comment, - ACTIONS(3942), 15, + ACTIONS(3726), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -139446,7 +140971,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3940), 30, + ACTIONS(3722), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -139477,15 +141002,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [29393] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [29524] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1501), 2, + STATE(1506), 2, sym_line_comment, sym_block_comment, - ACTIONS(1429), 15, + ACTIONS(3938), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -139501,7 +141026,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1431), 30, + ACTIONS(3936), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -139532,15 +141057,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [29453] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [29584] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1502), 2, + STATE(1507), 2, sym_line_comment, sym_block_comment, - ACTIONS(1003), 15, + ACTIONS(1410), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -139556,7 +141081,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1005), 30, + ACTIONS(1408), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -139587,15 +141112,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [29513] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [29644] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1503), 2, + STATE(1508), 2, sym_line_comment, sym_block_comment, - ACTIONS(3946), 15, + ACTIONS(3942), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -139611,7 +141136,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3944), 30, + ACTIONS(3940), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -139642,15 +141167,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [29573] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [29704] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1504), 2, + STATE(1509), 2, sym_line_comment, sym_block_comment, - ACTIONS(1429), 15, + ACTIONS(3946), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -139666,7 +141191,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1431), 30, + ACTIONS(3944), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -139697,21 +141222,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [29633] = 8, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [29764] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3744), 1, - anon_sym_LBRACK, - ACTIONS(3748), 1, - anon_sym_QMARK, - ACTIONS(3750), 1, - anon_sym_DOT, - STATE(1505), 2, + STATE(1510), 2, sym_line_comment, sym_block_comment, - ACTIONS(3950), 14, + ACTIONS(3950), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -139725,14 +141244,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(3948), 28, + ACTIONS(3948), 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, @@ -139755,12 +141277,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [29699] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [29824] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1506), 2, + STATE(1511), 2, sym_line_comment, sym_block_comment, ACTIONS(3954), 15, @@ -139810,21 +141332,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [29759] = 8, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [29884] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3744), 1, - anon_sym_LBRACK, - ACTIONS(3748), 1, - anon_sym_QMARK, - ACTIONS(3750), 1, - anon_sym_DOT, - STATE(1507), 2, + STATE(1512), 2, sym_line_comment, sym_block_comment, - ACTIONS(3958), 14, + ACTIONS(3958), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -139838,14 +141354,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(3956), 28, + ACTIONS(3956), 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, @@ -139868,12 +141387,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [29825] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [29944] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1508), 2, + STATE(1513), 2, sym_line_comment, sym_block_comment, ACTIONS(3962), 15, @@ -139923,15 +141442,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [29885] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [30004] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1509), 2, + STATE(1514), 2, sym_line_comment, sym_block_comment, - ACTIONS(3966), 15, + ACTIONS(1472), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -139947,7 +141466,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3964), 30, + ACTIONS(1470), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -139978,15 +141497,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [29945] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [30064] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1510), 2, + STATE(1515), 2, sym_line_comment, sym_block_comment, - ACTIONS(3970), 15, + ACTIONS(3966), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -140002,7 +141521,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3968), 30, + ACTIONS(3964), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -140033,15 +141552,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [30005] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [30124] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1511), 2, + STATE(1516), 2, sym_line_comment, sym_block_comment, - ACTIONS(3974), 15, + ACTIONS(3970), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -140057,7 +141576,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3972), 30, + ACTIONS(3968), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -140088,15 +141607,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [30065] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [30184] = 9, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1512), 2, + ACTIONS(3796), 1, + anon_sym_LBRACK, + ACTIONS(3800), 1, + anon_sym_QMARK, + ACTIONS(3802), 1, + anon_sym_DOT, + ACTIONS(3976), 1, + anon_sym_as, + STATE(1517), 2, sym_line_comment, sym_block_comment, - ACTIONS(3978), 15, + ACTIONS(3974), 14, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -140110,17 +141637,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(3976), 30, + ACTIONS(3972), 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, @@ -140141,17 +141665,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, - [30125] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [30252] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1513), 2, + STATE(1518), 2, sym_line_comment, sym_block_comment, - ACTIONS(3708), 15, + ACTIONS(1022), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -140167,7 +141690,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3704), 30, + ACTIONS(1024), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -140198,15 +141721,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [30185] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [30312] = 12, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1514), 2, + ACTIONS(412), 1, + anon_sym_LBRACE, + ACTIONS(3386), 1, + anon_sym_SQUOTE, + ACTIONS(3978), 1, + anon_sym_BANG, + ACTIONS(3980), 1, + anon_sym_COLON_COLON, + ACTIONS(3982), 1, + anon_sym_move, + STATE(1789), 1, + sym_block, + STATE(3748), 1, + sym_label, + STATE(1519), 2, sym_line_comment, sym_block_comment, - ACTIONS(3982), 15, + ACTIONS(3380), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -140222,14 +141759,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3980), 30, - anon_sym_SEMI, + ACTIONS(3378), 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, @@ -140249,16 +141782,13 @@ 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, - [30245] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [30386] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1515), 2, + STATE(1520), 2, sym_line_comment, sym_block_comment, ACTIONS(3986), 15, @@ -140308,12 +141838,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [30305] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [30446] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1516), 2, + STATE(1521), 2, sym_line_comment, sym_block_comment, ACTIONS(3990), 15, @@ -140363,12 +141893,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [30365] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [30506] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1517), 2, + STATE(1522), 2, sym_line_comment, sym_block_comment, ACTIONS(3994), 15, @@ -140418,15 +141948,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [30425] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [30566] = 8, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1518), 2, + ACTIONS(3796), 1, + anon_sym_LBRACK, + ACTIONS(3800), 1, + anon_sym_QMARK, + ACTIONS(3802), 1, + anon_sym_DOT, + STATE(1523), 2, sym_line_comment, sym_block_comment, - ACTIONS(3998), 15, + ACTIONS(3998), 14, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -140440,17 +141976,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(3996), 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, @@ -140473,12 +142006,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [30485] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [30632] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1519), 2, + STATE(1524), 2, sym_line_comment, sym_block_comment, ACTIONS(4002), 15, @@ -140528,19 +142061,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [30545] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [30692] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3358), 1, - anon_sym_BANG, - ACTIONS(4004), 1, - anon_sym_COLON_COLON, - STATE(1520), 2, + STATE(1525), 2, sym_line_comment, sym_block_comment, - ACTIONS(1429), 15, + ACTIONS(4006), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -140556,12 +142085,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1431), 28, + ACTIONS(4004), 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, @@ -140583,17 +142113,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, - [30609] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [30752] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1521), 2, + STATE(1526), 2, sym_line_comment, sym_block_comment, - ACTIONS(1429), 15, + ACTIONS(4010), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -140609,7 +142140,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1431), 30, + ACTIONS(4008), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -140640,15 +142171,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [30669] = 5, - ACTIONS(103), 1, + [30812] = 25, + ACTIONS(29), 1, + anon_sym_LT, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(1284), 1, + anon_sym_extern, + ACTIONS(3232), 1, + anon_sym_fn, + ACTIONS(3449), 1, + anon_sym_COLON_COLON, + ACTIONS(3451), 1, + anon_sym_default, + ACTIONS(3457), 1, + sym_metavariable, + ACTIONS(4012), 1, + sym_identifier, + ACTIONS(4014), 1, + anon_sym_for, + STATE(1083), 1, + sym_scoped_type_identifier, + STATE(1390), 1, + sym_generic_type, + STATE(1603), 1, + sym_for_lifetimes, + STATE(2244), 1, + aux_sym_function_modifiers_repeat1, + STATE(2373), 1, + sym_extern_modifier, + STATE(3480), 1, + sym_function_modifiers, + STATE(3633), 1, + sym_scoped_identifier, + STATE(3669), 1, + sym_generic_type_with_turbofish, + STATE(3680), 1, + sym_bracketed_type, + ACTIONS(3453), 2, + anon_sym_gen, + anon_sym_union, + STATE(1425), 2, + sym_higher_ranked_trait_bound, + sym_function_type, + STATE(1527), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3455), 3, + sym_self, + sym_super, + sym_crate, + ACTIONS(1270), 4, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + anon_sym_safe, + ACTIONS(3447), 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, + [30912] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1522), 2, + ACTIONS(3382), 1, + anon_sym_BANG, + ACTIONS(3384), 1, + anon_sym_COLON_COLON, + STATE(1528), 2, sym_line_comment, sym_block_comment, - ACTIONS(1009), 15, + ACTIONS(3380), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -140664,13 +142274,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1011), 30, + ACTIONS(3378), 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, @@ -140692,18 +142301,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, - [30729] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [30976] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1523), 2, + STATE(1529), 2, sym_line_comment, sym_block_comment, - ACTIONS(4008), 15, + ACTIONS(1472), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -140719,7 +142327,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(4006), 30, + ACTIONS(1470), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -140750,15 +142358,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [30789] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [31036] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1524), 2, + STATE(1530), 2, sym_line_comment, sym_block_comment, - ACTIONS(4012), 15, + ACTIONS(1000), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -140774,7 +142382,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(4010), 30, + ACTIONS(1002), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -140805,15 +142413,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [30849] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [31096] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1525), 2, + STATE(1531), 2, sym_line_comment, sym_block_comment, - ACTIONS(4016), 15, + ACTIONS(4018), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -140829,7 +142437,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(4014), 30, + ACTIONS(4016), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -140860,15 +142468,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [30909] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [31156] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1526), 2, + STATE(1532), 2, sym_line_comment, sym_block_comment, - ACTIONS(3427), 15, + ACTIONS(4022), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -140884,7 +142492,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3425), 30, + ACTIONS(4020), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -140915,15 +142523,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [30969] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [31216] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1527), 2, + STATE(1533), 2, sym_line_comment, sym_block_comment, - ACTIONS(4020), 15, + ACTIONS(4026), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -140939,7 +142547,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(4018), 30, + ACTIONS(4024), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -140970,137 +142578,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [31029] = 25, + [31276] = 25, ACTIONS(29), 1, anon_sym_LT, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(1271), 1, - anon_sym_fn, - ACTIONS(1279), 1, - anon_sym_extern, - ACTIONS(3136), 1, - anon_sym_for, - ACTIONS(3397), 1, - anon_sym_COLON_COLON, - ACTIONS(3407), 1, - sym_metavariable, - ACTIONS(3483), 1, - anon_sym_default, - ACTIONS(4022), 1, - sym_identifier, - STATE(1594), 1, - sym_for_lifetimes, - STATE(1978), 1, - sym_scoped_type_identifier, - STATE(2000), 1, - sym_generic_type, - STATE(2252), 1, - aux_sym_function_modifiers_repeat1, - STATE(2447), 1, - sym_extern_modifier, - STATE(3457), 1, - sym_generic_type_with_turbofish, - STATE(3477), 1, - sym_function_modifiers, - STATE(3591), 1, - sym_bracketed_type, - STATE(3656), 1, - sym_scoped_identifier, - ACTIONS(3401), 2, - anon_sym_gen, - anon_sym_union, - STATE(1528), 2, - sym_line_comment, - sym_block_comment, - STATE(2066), 2, - sym_higher_ranked_trait_bound, - sym_function_type, - ACTIONS(1265), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(3405), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(3481), 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, - [31128] = 25, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(1279), 1, + ACTIONS(1284), 1, anon_sym_extern, - ACTIONS(3204), 1, + ACTIONS(3194), 1, anon_sym_fn, - ACTIONS(3467), 1, + ACTIONS(3465), 1, anon_sym_COLON_COLON, - ACTIONS(3469), 1, + ACTIONS(3467), 1, anon_sym_default, - ACTIONS(3477), 1, + ACTIONS(3473), 1, sym_metavariable, - ACTIONS(4024), 1, + ACTIONS(4028), 1, sym_identifier, - ACTIONS(4026), 1, + ACTIONS(4030), 1, anon_sym_for, - STATE(1062), 1, + STATE(1587), 1, sym_scoped_type_identifier, - STATE(1113), 1, - sym_generic_type, - STATE(1623), 1, + STATE(1605), 1, sym_for_lifetimes, - STATE(2252), 1, + STATE(1654), 1, + sym_generic_type, + STATE(2244), 1, aux_sym_function_modifiers_repeat1, - STATE(2447), 1, + STATE(2373), 1, sym_extern_modifier, - STATE(3455), 1, + STATE(3624), 1, sym_function_modifiers, - STATE(3605), 1, + STATE(3660), 1, sym_scoped_identifier, - STATE(3640), 1, + STATE(3678), 1, sym_generic_type_with_turbofish, - STATE(3651), 1, + STATE(3684), 1, sym_bracketed_type, - ACTIONS(3473), 2, + ACTIONS(3469), 2, anon_sym_gen, anon_sym_union, - STATE(1430), 2, - sym_higher_ranked_trait_bound, - sym_function_type, - STATE(1529), 2, + STATE(1534), 2, sym_line_comment, sym_block_comment, - ACTIONS(1265), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(3475), 3, + STATE(1737), 2, + sym_higher_ranked_trait_bound, + sym_function_type, + ACTIONS(3471), 3, sym_self, sym_super, sym_crate, - ACTIONS(3465), 17, + ACTIONS(1270), 4, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + anon_sym_safe, + ACTIONS(3463), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -141118,17 +142653,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [31227] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [31376] = 8, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4028), 1, - anon_sym_COLON_COLON, - STATE(1530), 2, + ACTIONS(3796), 1, + anon_sym_LBRACK, + ACTIONS(3800), 1, + anon_sym_QMARK, + ACTIONS(3802), 1, + anon_sym_DOT, + STATE(1535), 2, sym_line_comment, sym_block_comment, - ACTIONS(1429), 15, + ACTIONS(4034), 14, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -141142,16 +142681,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(1431), 28, + ACTIONS(4032), 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, @@ -141171,29 +142708,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, - [31288] = 11, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [31442] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3344), 1, - anon_sym_BANG, - ACTIONS(3348), 1, - anon_sym_SQUOTE, - ACTIONS(3350), 1, - anon_sym_move, - ACTIONS(4030), 1, - anon_sym_COLON_COLON, - STATE(1407), 1, - sym_block, - STATE(3664), 1, - sym_label, - STATE(1531), 2, + STATE(1536), 2, sym_line_comment, sym_block_comment, - ACTIONS(3342), 15, + ACTIONS(4038), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -141209,10 +142735,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3340), 23, + ACTIONS(4036), 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, @@ -141232,18 +142762,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, - [31359] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + anon_sym_else, + [31502] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3346), 1, - anon_sym_COLON_COLON, - STATE(1532), 2, + STATE(1537), 2, sym_line_comment, sym_block_comment, - ACTIONS(3342), 15, + ACTIONS(4042), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -141259,12 +142790,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3340), 28, + ACTIONS(4040), 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, @@ -141286,101 +142818,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, - [31420] = 25, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [31562] = 5, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(1279), 1, - anon_sym_extern, - ACTIONS(3166), 1, - anon_sym_fn, - ACTIONS(3508), 1, - anon_sym_COLON_COLON, - ACTIONS(3510), 1, - anon_sym_default, - ACTIONS(3516), 1, - sym_metavariable, - ACTIONS(4032), 1, - sym_identifier, - ACTIONS(4034), 1, - anon_sym_for, - STATE(1579), 1, - sym_scoped_type_identifier, - STATE(1624), 1, - sym_for_lifetimes, - STATE(1680), 1, - sym_generic_type, - STATE(2252), 1, - aux_sym_function_modifiers_repeat1, - STATE(2447), 1, - sym_extern_modifier, - STATE(3595), 1, - sym_function_modifiers, - STATE(3631), 1, - sym_scoped_identifier, - STATE(3649), 1, - sym_generic_type_with_turbofish, - STATE(3655), 1, - sym_bracketed_type, - ACTIONS(3512), 2, - anon_sym_gen, - anon_sym_union, - STATE(1533), 2, - sym_line_comment, - sym_block_comment, - STATE(1819), 2, - sym_higher_ranked_trait_bound, - sym_function_type, - ACTIONS(1265), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(3514), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(3506), 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, - [31519] = 10, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3344), 1, - anon_sym_BANG, - ACTIONS(3350), 1, - anon_sym_move, - ACTIONS(4030), 1, - anon_sym_COLON_COLON, - STATE(1407), 1, - sym_block, - STATE(3664), 1, - sym_label, - STATE(1534), 2, + STATE(1538), 2, sym_line_comment, sym_block_comment, - ACTIONS(3342), 15, + ACTIONS(4046), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -141396,10 +142845,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3340), 24, + 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, anon_sym_PIPE_PIPE, @@ -141419,165 +142872,24 @@ 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, - [31588] = 19, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(1241), 1, - anon_sym_DASH, - ACTIONS(1289), 1, - aux_sym_string_literal_token1, - ACTIONS(1299), 1, - sym__raw_string_literal_start, - ACTIONS(2554), 1, - anon_sym_COLON_COLON, - ACTIONS(3328), 1, - sym_identifier, - ACTIONS(3338), 1, - sym_metavariable, - STATE(2103), 1, - sym_scoped_identifier, - STATE(2160), 1, - sym__literal_pattern, - STATE(3441), 1, - sym_bracketed_type, - STATE(3467), 1, - sym_generic_type_with_turbofish, - ACTIONS(1291), 2, - anon_sym_true, - anon_sym_false, - STATE(1535), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1287), 3, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - ACTIONS(3336), 3, - sym_self, - sym_super, - sym_crate, - STATE(2074), 4, - sym_negative_literal, - sym_string_literal, - sym_raw_string_literal, - sym_boolean_literal, - ACTIONS(3334), 20, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_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, - [31674] = 19, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + anon_sym_else, + [31622] = 5, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(1241), 1, - anon_sym_DASH, - ACTIONS(1289), 1, - aux_sym_string_literal_token1, - ACTIONS(1299), 1, - sym__raw_string_literal_start, - ACTIONS(2554), 1, - anon_sym_COLON_COLON, - ACTIONS(3304), 1, - sym_identifier, - ACTIONS(3314), 1, - sym_metavariable, - STATE(2107), 1, - sym_scoped_identifier, - STATE(2188), 1, - sym__literal_pattern, - STATE(3441), 1, - sym_bracketed_type, - STATE(3467), 1, - sym_generic_type_with_turbofish, - ACTIONS(1291), 2, - anon_sym_true, - anon_sym_false, - STATE(1536), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1287), 3, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - ACTIONS(3312), 3, - sym_self, - sym_super, - sym_crate, - STATE(2074), 4, - sym_negative_literal, - sym_string_literal, - sym_raw_string_literal, - sym_boolean_literal, - ACTIONS(3310), 20, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_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, - [31760] = 10, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3744), 1, - anon_sym_LBRACK, - ACTIONS(3748), 1, - anon_sym_QMARK, - ACTIONS(3750), 1, - anon_sym_DOT, - ACTIONS(3862), 1, - anon_sym_as, - STATE(1537), 2, + STATE(1539), 2, sym_line_comment, sym_block_comment, - ACTIONS(4036), 3, + ACTIONS(4050), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3860), 11, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_CARET, anon_sym_AMP, anon_sym_PIPE, @@ -141586,13 +142898,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(3858), 25, + ACTIONS(4048), 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, @@ -141612,115 +142928,45 @@ 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, - [31828] = 19, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [31682] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(1655), 1, - anon_sym_DASH, - ACTIONS(1681), 1, - aux_sym_string_literal_token1, - ACTIONS(1689), 1, - sym__raw_string_literal_start, - ACTIONS(3566), 1, + ACTIONS(3372), 1, + anon_sym_BANG, + ACTIONS(4052), 1, anon_sym_COLON_COLON, - ACTIONS(3578), 1, - sym_identifier, - ACTIONS(3584), 1, - sym_metavariable, - STATE(2791), 1, - sym_scoped_identifier, - STATE(3009), 1, - sym__literal_pattern, - STATE(3587), 1, - sym_bracketed_type, - STATE(3600), 1, - sym_generic_type_with_turbofish, - ACTIONS(1683), 2, - anon_sym_true, - anon_sym_false, - STATE(1538), 2, + STATE(1540), 2, sym_line_comment, sym_block_comment, - ACTIONS(1679), 3, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - ACTIONS(3582), 3, - sym_self, - sym_super, - sym_crate, - STATE(2389), 4, - sym_negative_literal, - sym_string_literal, - sym_raw_string_literal, - sym_boolean_literal, - ACTIONS(3580), 20, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_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, - [31914] = 13, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3744), 1, - anon_sym_LBRACK, - ACTIONS(3748), 1, - anon_sym_QMARK, - ACTIONS(3750), 1, - anon_sym_DOT, - ACTIONS(3862), 1, - anon_sym_as, - ACTIONS(4040), 1, - anon_sym_AMP, - ACTIONS(4038), 2, + ACTIONS(1472), 15, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4042), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - STATE(1539), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4036), 3, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3860), 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(3858), 25, + ACTIONS(1470), 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, @@ -141740,47 +142986,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COMMA, + anon_sym_as, anon_sym_else, - [31988] = 12, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [31746] = 8, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3744), 1, + ACTIONS(3796), 1, anon_sym_LBRACK, - ACTIONS(3748), 1, + ACTIONS(3800), 1, anon_sym_QMARK, - ACTIONS(3750), 1, + ACTIONS(3802), 1, anon_sym_DOT, - ACTIONS(3862), 1, - anon_sym_as, - ACTIONS(4038), 2, + STATE(1541), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4056), 14, anon_sym_PLUS, + anon_sym_STAR, anon_sym_DASH, - ACTIONS(4042), 2, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - STATE(1540), 2, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT_DOT, + ACTIONS(4054), 28, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [31812] = 5, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + STATE(1542), 2, sym_line_comment, sym_block_comment, - ACTIONS(4036), 3, + ACTIONS(1454), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3860), 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(3858), 25, + ACTIONS(1452), 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, @@ -141800,49 +143098,48 @@ 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, - [32060] = 14, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [31872] = 10, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3744), 1, - anon_sym_LBRACK, - ACTIONS(3748), 1, - anon_sym_QMARK, - ACTIONS(3750), 1, - anon_sym_DOT, - ACTIONS(3862), 1, - anon_sym_as, - ACTIONS(4040), 1, - anon_sym_AMP, - ACTIONS(4044), 1, - anon_sym_CARET, - ACTIONS(4038), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4042), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - STATE(1541), 2, + ACTIONS(3382), 1, + anon_sym_BANG, + ACTIONS(3388), 1, + anon_sym_move, + ACTIONS(4058), 1, + anon_sym_COLON_COLON, + STATE(1488), 1, + sym_block, + STATE(3693), 1, + sym_label, + STATE(1543), 2, sym_line_comment, sym_block_comment, - ACTIONS(4036), 3, + ACTIONS(3380), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3860), 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(3858), 25, - anon_sym_SEMI, + ACTIONS(3378), 24, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -141861,57 +143158,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_else, - [32136] = 17, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + anon_sym_SQUOTE, + anon_sym_as, + [31941] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3744), 1, - anon_sym_LBRACK, - ACTIONS(3748), 1, - anon_sym_QMARK, - ACTIONS(3750), 1, - anon_sym_DOT, - ACTIONS(3862), 1, - anon_sym_as, - ACTIONS(4040), 1, - anon_sym_AMP, - ACTIONS(4044), 1, - anon_sym_CARET, - ACTIONS(4046), 1, - anon_sym_PIPE, - ACTIONS(3860), 2, - anon_sym_EQ, - anon_sym_DOT_DOT, - ACTIONS(4038), 2, + ACTIONS(3384), 1, + anon_sym_COLON_COLON, + STATE(1544), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3380), 15, anon_sym_PLUS, + anon_sym_STAR, anon_sym_DASH, - ACTIONS(4042), 2, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4050), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - STATE(1542), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4036), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4048), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3858), 21, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3378), 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, @@ -141924,61 +143206,57 @@ 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_as, anon_sym_else, - [32218] = 18, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [32002] = 11, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3744), 1, - anon_sym_LBRACK, - ACTIONS(3748), 1, - anon_sym_QMARK, - ACTIONS(3750), 1, - anon_sym_DOT, - ACTIONS(3862), 1, - anon_sym_as, - ACTIONS(4040), 1, - anon_sym_AMP, - ACTIONS(4044), 1, - anon_sym_CARET, - ACTIONS(4046), 1, - anon_sym_PIPE, - ACTIONS(4052), 1, - anon_sym_AMP_AMP, - ACTIONS(3860), 2, - anon_sym_EQ, - anon_sym_DOT_DOT, - ACTIONS(4038), 2, + ACTIONS(3382), 1, + anon_sym_BANG, + ACTIONS(3386), 1, + anon_sym_SQUOTE, + ACTIONS(3388), 1, + anon_sym_move, + ACTIONS(4058), 1, + anon_sym_COLON_COLON, + STATE(1488), 1, + sym_block, + STATE(3693), 1, + sym_label, + STATE(1545), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3380), 15, anon_sym_PLUS, + anon_sym_STAR, anon_sym_DASH, - ACTIONS(4042), 2, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4050), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - STATE(1543), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4036), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4048), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3858), 20, - anon_sym_SEMI, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3378), 23, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -141990,34 +143268,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_else, - [32302] = 11, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + anon_sym_as, + [32073] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3744), 1, - anon_sym_LBRACK, - ACTIONS(3748), 1, - anon_sym_QMARK, - ACTIONS(3750), 1, - anon_sym_DOT, - ACTIONS(3862), 1, - anon_sym_as, - ACTIONS(4038), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1544), 2, + ACTIONS(4060), 1, + anon_sym_COLON_COLON, + STATE(1546), 2, sym_line_comment, sym_block_comment, - ACTIONS(4036), 3, + ACTIONS(1472), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3860), 9, anon_sym_CARET, anon_sym_AMP, anon_sym_PIPE, @@ -142026,13 +143299,16 @@ 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(3858), 25, + ACTIONS(1470), 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, @@ -142052,59 +143328,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COMMA, + anon_sym_as, anon_sym_else, - [32372] = 21, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [32134] = 19, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3744), 1, + ACTIONS(3796), 1, anon_sym_LBRACK, - ACTIONS(3748), 1, + ACTIONS(3800), 1, anon_sym_QMARK, - ACTIONS(3750), 1, + ACTIONS(3802), 1, anon_sym_DOT, - ACTIONS(3862), 1, + ACTIONS(3976), 1, anon_sym_as, - ACTIONS(4040), 1, - anon_sym_AMP, - ACTIONS(4044), 1, + ACTIONS(4068), 1, anon_sym_CARET, - ACTIONS(4046), 1, + ACTIONS(4070), 1, + anon_sym_AMP, + ACTIONS(4072), 1, anon_sym_PIPE, - ACTIONS(4052), 1, + ACTIONS(4074), 1, anon_sym_AMP_AMP, - ACTIONS(4056), 1, + ACTIONS(4076), 1, anon_sym_PIPE_PIPE, - ACTIONS(4058), 1, - anon_sym_EQ, - ACTIONS(4060), 1, - anon_sym_DOT_DOT, - ACTIONS(4038), 2, + ACTIONS(4064), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4042), 2, + ACTIONS(4078), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4050), 2, + ACTIONS(4080), 2, + anon_sym_EQ, + anon_sym_DOT_DOT, + ACTIONS(4084), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4062), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1545), 2, + STATE(1547), 2, sym_line_comment, sym_block_comment, - ACTIONS(4036), 3, + ACTIONS(4066), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4048), 4, + ACTIONS(4082), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4054), 17, + ACTIONS(4062), 19, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -142120,60 +143393,116 @@ 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, - [32462] = 21, - ACTIONS(103), 1, + [32220] = 6, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(4090), 1, + anon_sym_COLON_COLON, + STATE(1548), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4088), 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(4086), 33, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_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_extern, + anon_sym_safe, + anon_sym_dyn, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [32280] = 21, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3744), 1, + ACTIONS(3796), 1, anon_sym_LBRACK, - ACTIONS(3748), 1, + ACTIONS(3800), 1, anon_sym_QMARK, - ACTIONS(3750), 1, + ACTIONS(3802), 1, anon_sym_DOT, - ACTIONS(3862), 1, + ACTIONS(3976), 1, anon_sym_as, - ACTIONS(4040), 1, - anon_sym_AMP, - ACTIONS(4044), 1, + ACTIONS(4068), 1, anon_sym_CARET, - ACTIONS(4046), 1, + ACTIONS(4070), 1, + anon_sym_AMP, + ACTIONS(4072), 1, anon_sym_PIPE, - ACTIONS(4052), 1, + ACTIONS(4074), 1, anon_sym_AMP_AMP, - ACTIONS(4056), 1, + ACTIONS(4076), 1, anon_sym_PIPE_PIPE, - ACTIONS(4060), 1, - anon_sym_DOT_DOT, - ACTIONS(4066), 1, + ACTIONS(4095), 1, anon_sym_EQ, - ACTIONS(4038), 2, + ACTIONS(4097), 1, + anon_sym_DOT_DOT, + ACTIONS(4064), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4042), 2, + ACTIONS(4078), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4050), 2, + ACTIONS(4084), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4062), 2, + ACTIONS(4099), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1546), 2, + STATE(1549), 2, sym_line_comment, sym_block_comment, - ACTIONS(4036), 3, + ACTIONS(4066), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4048), 4, + ACTIONS(4082), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4064), 17, + ACTIONS(4093), 17, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -142191,44 +143520,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_EQ, anon_sym_COMMA, anon_sym_else, - [32552] = 15, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [32370] = 12, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3744), 1, + ACTIONS(3796), 1, anon_sym_LBRACK, - ACTIONS(3748), 1, + ACTIONS(3800), 1, anon_sym_QMARK, - ACTIONS(3750), 1, + ACTIONS(3802), 1, anon_sym_DOT, - ACTIONS(3862), 1, + ACTIONS(3976), 1, anon_sym_as, - ACTIONS(4040), 1, - anon_sym_AMP, - ACTIONS(4044), 1, - anon_sym_CARET, - ACTIONS(4046), 1, - anon_sym_PIPE, - ACTIONS(4038), 2, + ACTIONS(4064), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4042), 2, + ACTIONS(4078), 2, anon_sym_LT_LT, anon_sym_GT_GT, - STATE(1547), 2, + STATE(1550), 2, sym_line_comment, sym_block_comment, - ACTIONS(4036), 3, + ACTIONS(4066), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3860), 4, + ACTIONS(3974), 7, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_EQ, anon_sym_GT, anon_sym_LT, anon_sym_DOT_DOT, - ACTIONS(3858), 25, + ACTIONS(3972), 25, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -142254,129 +143580,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ, anon_sym_COMMA, anon_sym_else, - [32630] = 22, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [32442] = 14, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3744), 1, + ACTIONS(3796), 1, anon_sym_LBRACK, - ACTIONS(3748), 1, + ACTIONS(3800), 1, anon_sym_QMARK, - ACTIONS(3750), 1, + ACTIONS(3802), 1, anon_sym_DOT, - ACTIONS(3862), 1, + ACTIONS(3976), 1, anon_sym_as, - ACTIONS(4040), 1, - anon_sym_AMP, - ACTIONS(4044), 1, + ACTIONS(4068), 1, anon_sym_CARET, - ACTIONS(4046), 1, - anon_sym_PIPE, - ACTIONS(4052), 1, - anon_sym_AMP_AMP, - ACTIONS(4056), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4060), 1, - anon_sym_DOT_DOT, ACTIONS(4070), 1, - anon_sym_EQ, - ACTIONS(4038), 2, + anon_sym_AMP, + ACTIONS(4064), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4042), 2, + ACTIONS(4078), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4050), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4062), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1548), 2, + STATE(1551), 2, sym_line_comment, sym_block_comment, - ACTIONS(4036), 3, + ACTIONS(4066), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4048), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3788), 7, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_else, - ACTIONS(4068), 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, - [32722] = 19, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3744), 1, - anon_sym_LBRACK, - ACTIONS(3748), 1, - anon_sym_QMARK, - ACTIONS(3750), 1, - anon_sym_DOT, - ACTIONS(3862), 1, - anon_sym_as, - ACTIONS(4040), 1, - anon_sym_AMP, - ACTIONS(4044), 1, - anon_sym_CARET, - ACTIONS(4046), 1, + ACTIONS(3974), 5, anon_sym_PIPE, - ACTIONS(4052), 1, - anon_sym_AMP_AMP, - ACTIONS(4056), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4038), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4042), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4050), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4074), 2, - anon_sym_EQ, anon_sym_DOT_DOT, - STATE(1549), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4036), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4048), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4072), 19, + ACTIONS(3972), 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, @@ -142387,63 +143634,65 @@ 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, - [32808] = 19, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [32518] = 17, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3744), 1, + ACTIONS(3796), 1, anon_sym_LBRACK, - ACTIONS(3748), 1, + ACTIONS(3800), 1, anon_sym_QMARK, - ACTIONS(3750), 1, + ACTIONS(3802), 1, anon_sym_DOT, - ACTIONS(3862), 1, + ACTIONS(3976), 1, anon_sym_as, - ACTIONS(4040), 1, - anon_sym_AMP, - ACTIONS(4044), 1, + ACTIONS(4068), 1, anon_sym_CARET, - ACTIONS(4046), 1, + ACTIONS(4070), 1, + anon_sym_AMP, + ACTIONS(4072), 1, anon_sym_PIPE, - ACTIONS(4052), 1, - anon_sym_AMP_AMP, - ACTIONS(4056), 1, - anon_sym_PIPE_PIPE, - ACTIONS(381), 2, + ACTIONS(3974), 2, anon_sym_EQ, anon_sym_DOT_DOT, - ACTIONS(4038), 2, + ACTIONS(4064), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4042), 2, + ACTIONS(4078), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4050), 2, + ACTIONS(4084), 2, anon_sym_GT, anon_sym_LT, - STATE(1550), 2, + STATE(1552), 2, sym_line_comment, sym_block_comment, - ACTIONS(4036), 3, + ACTIONS(4066), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4048), 4, + ACTIONS(4082), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(379), 19, + ACTIONS(3972), 21, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_RBRACE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -142458,63 +143707,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ, anon_sym_COMMA, anon_sym_else, - [32894] = 21, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [32600] = 18, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(347), 1, - anon_sym_EQ, - ACTIONS(3744), 1, + ACTIONS(3796), 1, anon_sym_LBRACK, - ACTIONS(3748), 1, + ACTIONS(3800), 1, anon_sym_QMARK, - ACTIONS(3750), 1, + ACTIONS(3802), 1, anon_sym_DOT, - ACTIONS(3862), 1, + ACTIONS(3976), 1, anon_sym_as, - ACTIONS(4040), 1, - anon_sym_AMP, - ACTIONS(4044), 1, + ACTIONS(4068), 1, anon_sym_CARET, - ACTIONS(4046), 1, + ACTIONS(4070), 1, + anon_sym_AMP, + ACTIONS(4072), 1, anon_sym_PIPE, - ACTIONS(4052), 1, + ACTIONS(4074), 1, anon_sym_AMP_AMP, - ACTIONS(4056), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4060), 1, + ACTIONS(3974), 2, + anon_sym_EQ, anon_sym_DOT_DOT, - ACTIONS(4038), 2, + ACTIONS(4064), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4042), 2, + ACTIONS(4078), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4050), 2, + ACTIONS(4084), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4062), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1551), 2, + STATE(1553), 2, sym_line_comment, sym_block_comment, - ACTIONS(4036), 3, + ACTIONS(4066), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4048), 4, + ACTIONS(4082), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(341), 17, + ACTIONS(3972), 20, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_RBRACE, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -142525,30 +143769,34 @@ 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, - [32984] = 9, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [32684] = 11, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3496), 1, - anon_sym_LBRACE, - ACTIONS(3498), 1, - anon_sym_COLON_COLON, - ACTIONS(4076), 1, - anon_sym_BANG, - STATE(1503), 1, - sym_field_initializer_list, - STATE(1552), 2, + ACTIONS(3796), 1, + anon_sym_LBRACK, + ACTIONS(3800), 1, + anon_sym_QMARK, + ACTIONS(3802), 1, + anon_sym_DOT, + ACTIONS(3976), 1, + anon_sym_as, + ACTIONS(4064), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1554), 2, sym_line_comment, sym_block_comment, - ACTIONS(1429), 15, - anon_sym_PLUS, + ACTIONS(4066), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(3974), 9, anon_sym_CARET, anon_sym_AMP, anon_sym_PIPE, @@ -142557,14 +143805,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(1431), 24, + ACTIONS(3972), 25, anon_sym_SEMI, anon_sym_LPAREN, - anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACK, anon_sym_RBRACE, - anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -142583,113 +143830,55 @@ 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, - [33050] = 11, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4078), 1, - anon_sym_LPAREN, - ACTIONS(4080), 1, - anon_sym_BANG, - ACTIONS(4082), 1, - anon_sym_COLON_COLON, - ACTIONS(4084), 1, - anon_sym_LT2, - STATE(1663), 1, - sym_parameters, - STATE(1683), 1, - sym_type_arguments, - STATE(1553), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3356), 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(3352), 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, - [33120] = 19, + anon_sym_COMMA, + anon_sym_else, + [32754] = 19, ACTIONS(29), 1, anon_sym_LT, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(1655), 1, + ACTIONS(1660), 1, anon_sym_DASH, - ACTIONS(1681), 1, + ACTIONS(1686), 1, aux_sym_string_literal_token1, - ACTIONS(1689), 1, + ACTIONS(1694), 1, sym__raw_string_literal_start, - ACTIONS(3566), 1, + ACTIONS(3602), 1, anon_sym_COLON_COLON, - ACTIONS(3590), 1, + ACTIONS(3614), 1, sym_identifier, - ACTIONS(3596), 1, + ACTIONS(3620), 1, sym_metavariable, - STATE(2613), 1, + STATE(2693), 1, sym_scoped_identifier, - STATE(3021), 1, + STATE(3013), 1, sym__literal_pattern, - STATE(3587), 1, - sym_bracketed_type, - STATE(3600), 1, + STATE(3456), 1, sym_generic_type_with_turbofish, - ACTIONS(1683), 2, + STATE(3618), 1, + sym_bracketed_type, + ACTIONS(1688), 2, anon_sym_true, anon_sym_false, - STATE(1554), 2, + STATE(1555), 2, sym_line_comment, sym_block_comment, - ACTIONS(1679), 3, + ACTIONS(1684), 3, sym_float_literal, sym_integer_literal, sym_char_literal, - ACTIONS(3594), 3, + ACTIONS(3618), 3, sym_self, sym_super, sym_crate, - STATE(2389), 4, + STATE(2440), 4, sym_negative_literal, sym_string_literal, sym_raw_string_literal, sym_boolean_literal, - ACTIONS(3592), 20, + ACTIONS(3616), 20, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -142710,58 +143899,127 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_gen, anon_sym_union, - [33206] = 21, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [32840] = 21, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3744), 1, + ACTIONS(3796), 1, anon_sym_LBRACK, - ACTIONS(3748), 1, + ACTIONS(3800), 1, anon_sym_QMARK, - ACTIONS(3750), 1, + ACTIONS(3802), 1, anon_sym_DOT, - ACTIONS(3862), 1, + ACTIONS(3976), 1, anon_sym_as, - ACTIONS(4040), 1, + ACTIONS(4068), 1, + anon_sym_CARET, + ACTIONS(4070), 1, anon_sym_AMP, - ACTIONS(4044), 1, + ACTIONS(4072), 1, + anon_sym_PIPE, + ACTIONS(4074), 1, + anon_sym_AMP_AMP, + ACTIONS(4076), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4097), 1, + anon_sym_DOT_DOT, + ACTIONS(4103), 1, + anon_sym_EQ, + ACTIONS(4064), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4078), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4084), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4099), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1556), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4066), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4082), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4101), 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, + [32930] = 21, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(352), 1, + anon_sym_EQ, + ACTIONS(3796), 1, + anon_sym_LBRACK, + ACTIONS(3800), 1, + anon_sym_QMARK, + ACTIONS(3802), 1, + anon_sym_DOT, + ACTIONS(3976), 1, + anon_sym_as, + ACTIONS(4068), 1, anon_sym_CARET, - ACTIONS(4046), 1, + ACTIONS(4070), 1, + anon_sym_AMP, + ACTIONS(4072), 1, anon_sym_PIPE, - ACTIONS(4052), 1, + ACTIONS(4074), 1, anon_sym_AMP_AMP, - ACTIONS(4056), 1, + ACTIONS(4076), 1, anon_sym_PIPE_PIPE, - ACTIONS(4060), 1, + ACTIONS(4097), 1, anon_sym_DOT_DOT, - ACTIONS(4088), 1, - anon_sym_EQ, - ACTIONS(4038), 2, + ACTIONS(4064), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4042), 2, + ACTIONS(4078), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4050), 2, + ACTIONS(4084), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4062), 2, + ACTIONS(4099), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1555), 2, + STATE(1557), 2, sym_line_comment, sym_block_comment, - ACTIONS(4036), 3, + ACTIONS(4066), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4048), 4, + ACTIONS(4082), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4086), 17, + ACTIONS(346), 17, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -142779,53 +144037,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_EQ, anon_sym_COMMA, anon_sym_else, - [33296] = 19, + [33020] = 19, ACTIONS(29), 1, anon_sym_LT, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(1655), 1, + ACTIONS(1660), 1, anon_sym_DASH, - ACTIONS(1681), 1, + ACTIONS(1686), 1, aux_sym_string_literal_token1, - ACTIONS(1689), 1, + ACTIONS(1694), 1, sym__raw_string_literal_start, - ACTIONS(3562), 1, - sym_identifier, - ACTIONS(3566), 1, + ACTIONS(3602), 1, anon_sym_COLON_COLON, - ACTIONS(3570), 1, + ACTIONS(3626), 1, + sym_identifier, + ACTIONS(3632), 1, sym_metavariable, - STATE(2733), 1, + STATE(2707), 1, sym_scoped_identifier, - STATE(2923), 1, + STATE(3037), 1, sym__literal_pattern, - STATE(3587), 1, - sym_bracketed_type, - STATE(3600), 1, + STATE(3456), 1, sym_generic_type_with_turbofish, - ACTIONS(1683), 2, + STATE(3618), 1, + sym_bracketed_type, + ACTIONS(1688), 2, anon_sym_true, anon_sym_false, - STATE(1556), 2, + STATE(1558), 2, sym_line_comment, sym_block_comment, - ACTIONS(1679), 3, + ACTIONS(1684), 3, sym_float_literal, sym_integer_literal, sym_char_literal, - ACTIONS(3568), 3, + ACTIONS(3630), 3, sym_self, sym_super, sym_crate, - STATE(2389), 4, + STATE(2440), 4, sym_negative_literal, sym_string_literal, sym_raw_string_literal, sym_boolean_literal, - ACTIONS(3564), 20, + ACTIONS(3628), 20, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -142846,66 +144104,120 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_gen, anon_sym_union, - [33382] = 22, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [33106] = 21, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3744), 1, + ACTIONS(3796), 1, anon_sym_LBRACK, - ACTIONS(3748), 1, + ACTIONS(3800), 1, anon_sym_QMARK, - ACTIONS(3750), 1, + ACTIONS(3802), 1, anon_sym_DOT, - ACTIONS(3862), 1, + ACTIONS(3976), 1, anon_sym_as, - ACTIONS(4040), 1, - anon_sym_AMP, - ACTIONS(4044), 1, + ACTIONS(4068), 1, anon_sym_CARET, - ACTIONS(4046), 1, + ACTIONS(4070), 1, + anon_sym_AMP, + ACTIONS(4072), 1, anon_sym_PIPE, - ACTIONS(4052), 1, + ACTIONS(4074), 1, anon_sym_AMP_AMP, - ACTIONS(4056), 1, + ACTIONS(4076), 1, anon_sym_PIPE_PIPE, - ACTIONS(4060), 1, + ACTIONS(4097), 1, anon_sym_DOT_DOT, - ACTIONS(4070), 1, + ACTIONS(4107), 1, anon_sym_EQ, - ACTIONS(4038), 2, + ACTIONS(4064), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4042), 2, + ACTIONS(4078), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4050), 2, + ACTIONS(4084), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4062), 2, + ACTIONS(4099), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1557), 2, + STATE(1559), 2, sym_line_comment, sym_block_comment, - ACTIONS(4036), 3, + ACTIONS(4066), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4048), 4, + ACTIONS(4082), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3940), 7, + ACTIONS(4105), 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(4068), 10, + [33196] = 15, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(3796), 1, + anon_sym_LBRACK, + ACTIONS(3800), 1, + anon_sym_QMARK, + ACTIONS(3802), 1, + anon_sym_DOT, + ACTIONS(3976), 1, + anon_sym_as, + ACTIONS(4068), 1, + anon_sym_CARET, + ACTIONS(4070), 1, + anon_sym_AMP, + ACTIONS(4072), 1, + anon_sym_PIPE, + ACTIONS(4064), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4078), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + STATE(1560), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4066), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3974), 4, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT_DOT, + ACTIONS(3972), 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, @@ -142916,63 +144228,240 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33474] = 21, - ACTIONS(103), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_else, + [33274] = 5, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + STATE(1561), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4111), 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(4109), 33, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_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_extern, + anon_sym_safe, + anon_sym_dyn, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [33332] = 6, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(4113), 1, + anon_sym_LPAREN, + STATE(1562), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4088), 9, + 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(4086), 33, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_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_extern, + anon_sym_safe, + anon_sym_dyn, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [33392] = 11, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(4116), 1, + anon_sym_LPAREN, + ACTIONS(4118), 1, + anon_sym_BANG, + ACTIONS(4120), 1, + anon_sym_COLON_COLON, + ACTIONS(4122), 1, + anon_sym_LT2, + STATE(1642), 1, + sym_type_arguments, + STATE(1656), 1, + sym_parameters, + STATE(1563), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3370), 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(3366), 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, + [33462] = 22, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3744), 1, + ACTIONS(3796), 1, anon_sym_LBRACK, - ACTIONS(3748), 1, + ACTIONS(3800), 1, anon_sym_QMARK, - ACTIONS(3750), 1, + ACTIONS(3802), 1, anon_sym_DOT, - ACTIONS(3862), 1, + ACTIONS(3976), 1, anon_sym_as, - ACTIONS(4040), 1, - anon_sym_AMP, - ACTIONS(4044), 1, + ACTIONS(4068), 1, anon_sym_CARET, - ACTIONS(4046), 1, + ACTIONS(4070), 1, + anon_sym_AMP, + ACTIONS(4072), 1, anon_sym_PIPE, - ACTIONS(4052), 1, + ACTIONS(4074), 1, anon_sym_AMP_AMP, - ACTIONS(4056), 1, + ACTIONS(4076), 1, anon_sym_PIPE_PIPE, - ACTIONS(4060), 1, + ACTIONS(4097), 1, anon_sym_DOT_DOT, - ACTIONS(4092), 1, + ACTIONS(4126), 1, anon_sym_EQ, - ACTIONS(4038), 2, + ACTIONS(4064), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4042), 2, + ACTIONS(4078), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4050), 2, + ACTIONS(4084), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4062), 2, + ACTIONS(4099), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1558), 2, + STATE(1564), 2, sym_line_comment, sym_block_comment, - ACTIONS(4036), 3, + ACTIONS(4066), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4048), 4, + ACTIONS(4082), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4090), 17, + ACTIONS(3960), 7, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_else, + ACTIONS(4124), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -142983,65 +144472,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_COMMA, - anon_sym_else, - [33564] = 21, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [33554] = 22, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3744), 1, + ACTIONS(3796), 1, anon_sym_LBRACK, - ACTIONS(3748), 1, + ACTIONS(3800), 1, anon_sym_QMARK, - ACTIONS(3750), 1, + ACTIONS(3802), 1, anon_sym_DOT, - ACTIONS(3862), 1, + ACTIONS(3976), 1, anon_sym_as, - ACTIONS(4040), 1, - anon_sym_AMP, - ACTIONS(4044), 1, + ACTIONS(4068), 1, anon_sym_CARET, - ACTIONS(4046), 1, + ACTIONS(4070), 1, + anon_sym_AMP, + ACTIONS(4072), 1, anon_sym_PIPE, - ACTIONS(4052), 1, + ACTIONS(4074), 1, anon_sym_AMP_AMP, - ACTIONS(4056), 1, + ACTIONS(4076), 1, anon_sym_PIPE_PIPE, - ACTIONS(4060), 1, + ACTIONS(4097), 1, anon_sym_DOT_DOT, - ACTIONS(4096), 1, + ACTIONS(4126), 1, anon_sym_EQ, - ACTIONS(4038), 2, + ACTIONS(4064), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4042), 2, + ACTIONS(4078), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4050), 2, + ACTIONS(4084), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4062), 2, + ACTIONS(4099), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1559), 2, + STATE(1565), 2, sym_line_comment, sym_block_comment, - ACTIONS(4036), 3, + ACTIONS(4066), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4048), 4, + ACTIONS(4082), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4094), 17, + ACTIONS(3876), 7, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_else, + ACTIONS(4124), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -143052,60 +144542,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_COMMA, - anon_sym_else, - [33654] = 22, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [33646] = 22, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3744), 1, + ACTIONS(3796), 1, anon_sym_LBRACK, - ACTIONS(3748), 1, + ACTIONS(3800), 1, anon_sym_QMARK, - ACTIONS(3750), 1, + ACTIONS(3802), 1, anon_sym_DOT, - ACTIONS(3862), 1, + ACTIONS(3976), 1, anon_sym_as, - ACTIONS(4040), 1, - anon_sym_AMP, - ACTIONS(4044), 1, + ACTIONS(4068), 1, anon_sym_CARET, - ACTIONS(4046), 1, + ACTIONS(4070), 1, + anon_sym_AMP, + ACTIONS(4072), 1, anon_sym_PIPE, - ACTIONS(4052), 1, + ACTIONS(4074), 1, anon_sym_AMP_AMP, - ACTIONS(4056), 1, + ACTIONS(4076), 1, anon_sym_PIPE_PIPE, - ACTIONS(4060), 1, + ACTIONS(4097), 1, anon_sym_DOT_DOT, - ACTIONS(4070), 1, + ACTIONS(4126), 1, anon_sym_EQ, - ACTIONS(4038), 2, + ACTIONS(4064), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4042), 2, + ACTIONS(4078), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4050), 2, + ACTIONS(4084), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4062), 2, + ACTIONS(4099), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1560), 2, + STATE(1566), 2, sym_line_comment, sym_block_comment, - ACTIONS(4036), 3, + ACTIONS(4066), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4048), 4, + ACTIONS(4082), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4000), 7, + ACTIONS(3826), 7, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -143113,7 +144601,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_COMMA, anon_sym_else, - ACTIONS(4068), 10, + ACTIONS(4124), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -143124,53 +144612,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33746] = 19, + [33738] = 19, ACTIONS(29), 1, anon_sym_LT, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(1241), 1, + ACTIONS(1660), 1, anon_sym_DASH, - ACTIONS(1289), 1, + ACTIONS(1686), 1, aux_sym_string_literal_token1, - ACTIONS(1299), 1, + ACTIONS(1694), 1, sym__raw_string_literal_start, - ACTIONS(2554), 1, - anon_sym_COLON_COLON, - ACTIONS(3316), 1, + ACTIONS(3598), 1, sym_identifier, - ACTIONS(3326), 1, + ACTIONS(3602), 1, + anon_sym_COLON_COLON, + ACTIONS(3606), 1, sym_metavariable, - STATE(2116), 1, + STATE(2724), 1, sym_scoped_identifier, - STATE(2168), 1, + STATE(2856), 1, sym__literal_pattern, - STATE(3441), 1, - sym_bracketed_type, - STATE(3467), 1, + STATE(3456), 1, sym_generic_type_with_turbofish, - ACTIONS(1291), 2, + STATE(3618), 1, + sym_bracketed_type, + ACTIONS(1688), 2, anon_sym_true, anon_sym_false, - STATE(1561), 2, + STATE(1567), 2, sym_line_comment, sym_block_comment, - ACTIONS(1287), 3, + ACTIONS(1684), 3, sym_float_literal, sym_integer_literal, sym_char_literal, - ACTIONS(3324), 3, + ACTIONS(3604), 3, sym_self, sym_super, sym_crate, - STATE(2074), 4, + STATE(2440), 4, sym_negative_literal, sym_string_literal, sym_raw_string_literal, sym_boolean_literal, - ACTIONS(3322), 20, + ACTIONS(3600), 20, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -143191,213 +144679,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_gen, anon_sym_union, - [33832] = 8, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [33824] = 21, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3346), 1, - anon_sym_COLON_COLON, - ACTIONS(3528), 1, - anon_sym_BANG, - ACTIONS(4098), 1, - sym_identifier, - STATE(1562), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3342), 16, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(3796), 1, + anon_sym_LBRACK, + ACTIONS(3800), 1, + anon_sym_QMARK, + ACTIONS(3802), 1, + anon_sym_DOT, + ACTIONS(3976), 1, + anon_sym_as, + ACTIONS(4068), 1, anon_sym_CARET, + ACTIONS(4070), 1, anon_sym_AMP, + ACTIONS(4072), 1, anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - anon_sym_as, - ACTIONS(3340), 23, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_QMARK, + ACTIONS(4074), 1, anon_sym_AMP_AMP, + ACTIONS(4076), 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, - [33895] = 10, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4078), 1, - anon_sym_LPAREN, - ACTIONS(4084), 1, - anon_sym_LT2, - ACTIONS(4100), 1, - anon_sym_COLON_COLON, - STATE(1663), 1, - sym_parameters, - STATE(1683), 1, - sym_type_arguments, - STATE(1563), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3383), 17, + ACTIONS(4097), 1, + anon_sym_DOT_DOT, + ACTIONS(4130), 1, + anon_sym_EQ, + ACTIONS(4064), 2, anon_sym_PLUS, - anon_sym_STAR, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(4078), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LT_LT_EQ, - anon_sym_EQ, + ACTIONS(4084), 2, anon_sym_GT, anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3381), 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, + ACTIONS(4099), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_as, - [33962] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4104), 1, - anon_sym_LPAREN, - STATE(1564), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4107), 9, - 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(4102), 32, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_for, - anon_sym_gen, - anon_sym_impl, - anon_sym_union, - anon_sym_unsafe, - anon_sym_extern, - anon_sym_dyn, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [34021] = 10, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4078), 1, - anon_sym_LPAREN, - ACTIONS(4084), 1, - anon_sym_LT2, - ACTIONS(4100), 1, - anon_sym_COLON_COLON, - STATE(1663), 1, - sym_parameters, - STATE(1683), 1, - sym_type_arguments, - STATE(1565), 2, + STATE(1568), 2, sym_line_comment, sym_block_comment, - ACTIONS(3372), 17, - anon_sym_PLUS, + ACTIONS(4066), 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_LT_LT_EQ, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, + ACTIONS(4082), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3370), 20, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4128), 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, @@ -143406,33 +144744,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [34088] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + anon_sym_COMMA, + anon_sym_else, + [33914] = 19, + ACTIONS(29), 1, + anon_sym_LT, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1566), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4111), 10, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_LT, + ACTIONS(1246), 1, + anon_sym_DASH, + ACTIONS(1294), 1, + aux_sym_string_literal_token1, + ACTIONS(1304), 1, + sym__raw_string_literal_start, + ACTIONS(1867), 1, anon_sym_COLON_COLON, - anon_sym_SQUOTE, + ACTIONS(3342), 1, + sym_identifier, + ACTIONS(3352), 1, sym_metavariable, - ACTIONS(4109), 32, + STATE(2141), 1, + sym_scoped_identifier, + STATE(2215), 1, + sym__literal_pattern, + STATE(3467), 1, + sym_bracketed_type, + STATE(3493), 1, + sym_generic_type_with_turbofish, + ACTIONS(1296), 2, + anon_sym_true, + anon_sym_false, + STATE(1569), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1292), 3, + sym_float_literal, + sym_integer_literal, + sym_char_literal, + ACTIONS(3350), 3, + sym_self, + sym_super, + sym_crate, + STATE(2095), 4, + sym_negative_literal, + sym_string_literal, + sym_raw_string_literal, + sym_boolean_literal, + ACTIONS(3348), 20, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -143450,61 +144812,47 @@ 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_default, anon_sym_gen, - anon_sym_impl, anon_sym_union, - anon_sym_unsafe, - anon_sym_extern, - anon_sym_dyn, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [34145] = 10, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [34000] = 10, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4078), 1, - anon_sym_LPAREN, - ACTIONS(4084), 1, - anon_sym_LT2, - ACTIONS(4100), 1, - anon_sym_COLON_COLON, - STATE(1663), 1, - sym_parameters, - STATE(1683), 1, - sym_type_arguments, - STATE(1567), 2, + ACTIONS(3796), 1, + anon_sym_LBRACK, + ACTIONS(3800), 1, + anon_sym_QMARK, + ACTIONS(3802), 1, + anon_sym_DOT, + ACTIONS(3976), 1, + anon_sym_as, + STATE(1570), 2, sym_line_comment, sym_block_comment, - ACTIONS(3366), 17, - anon_sym_PLUS, + ACTIONS(4066), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(3974), 11, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_CARET, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LT_LT_EQ, anon_sym_EQ, anon_sym_GT, anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3364), 20, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, + ACTIONS(3972), 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, @@ -143515,33 +144863,63 @@ 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, - [34212] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + anon_sym_COMMA, + anon_sym_else, + [34068] = 19, + ACTIONS(29), 1, + anon_sym_LT, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1568), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4115), 10, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_LT, + ACTIONS(1246), 1, + anon_sym_DASH, + ACTIONS(1294), 1, + aux_sym_string_literal_token1, + ACTIONS(1304), 1, + sym__raw_string_literal_start, + ACTIONS(1867), 1, anon_sym_COLON_COLON, - anon_sym_SQUOTE, + ACTIONS(3330), 1, + sym_identifier, + ACTIONS(3340), 1, sym_metavariable, - ACTIONS(4113), 32, + STATE(2149), 1, + sym_scoped_identifier, + STATE(2193), 1, + sym__literal_pattern, + STATE(3467), 1, + sym_bracketed_type, + STATE(3493), 1, + sym_generic_type_with_turbofish, + ACTIONS(1296), 2, + anon_sym_true, + anon_sym_false, + STATE(1571), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1292), 3, + sym_float_literal, + sym_integer_literal, + sym_char_literal, + ACTIONS(3338), 3, + sym_self, + sym_super, + sym_crate, + STATE(2095), 4, + sym_negative_literal, + sym_string_literal, + sym_raw_string_literal, + sym_boolean_literal, + ACTIONS(3336), 20, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -143559,56 +144937,50 @@ 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_extern, - anon_sym_dyn, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [34269] = 8, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [34154] = 13, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3358), 1, - anon_sym_BANG, - ACTIONS(4117), 1, - anon_sym_COLON_COLON, - STATE(1503), 1, - sym_field_initializer_list, - STATE(1569), 2, + ACTIONS(3796), 1, + anon_sym_LBRACK, + ACTIONS(3800), 1, + anon_sym_QMARK, + ACTIONS(3802), 1, + anon_sym_DOT, + ACTIONS(3976), 1, + anon_sym_as, + ACTIONS(4070), 1, + anon_sym_AMP, + ACTIONS(4064), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4078), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + STATE(1572), 2, sym_line_comment, sym_block_comment, - ACTIONS(1429), 15, - anon_sym_PLUS, + ACTIONS(4066), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(3974), 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(1431), 24, + ACTIONS(3972), 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, @@ -143627,19 +144999,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_as, - [34332] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + anon_sym_COMMA, + anon_sym_else, + [34228] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4119), 1, - anon_sym_COLON_COLON, - STATE(1570), 2, + STATE(1573), 2, sym_line_comment, sym_block_comment, - ACTIONS(4107), 9, + ACTIONS(4134), 10, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_STAR, @@ -143647,9 +145017,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(4102), 32, + ACTIONS(4132), 33, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -143677,20 +145048,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, anon_sym_unsafe, anon_sym_extern, + anon_sym_safe, anon_sym_dyn, sym_identifier, sym_self, sym_super, sym_crate, - [34391] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [34286] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1571), 2, + STATE(1574), 2, sym_line_comment, sym_block_comment, - ACTIONS(4124), 10, + ACTIONS(4138), 10, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_STAR, @@ -143701,7 +145073,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_SQUOTE, sym_metavariable, - ACTIONS(4122), 32, + ACTIONS(4136), 33, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -143729,28 +145101,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, anon_sym_unsafe, anon_sym_extern, + anon_sym_safe, anon_sym_dyn, sym_identifier, sym_self, sym_super, sym_crate, - [34448] = 9, - ACTIONS(103), 1, + [34344] = 19, + ACTIONS(29), 1, + anon_sym_LT, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(1246), 1, + anon_sym_DASH, + ACTIONS(1294), 1, + aux_sym_string_literal_token1, + ACTIONS(1304), 1, + sym__raw_string_literal_start, + ACTIONS(1867), 1, + anon_sym_COLON_COLON, + ACTIONS(3354), 1, + sym_identifier, + ACTIONS(3364), 1, + sym_metavariable, + STATE(2126), 1, + sym_scoped_identifier, + STATE(2213), 1, + sym__literal_pattern, + STATE(3467), 1, + sym_bracketed_type, + STATE(3493), 1, + sym_generic_type_with_turbofish, + ACTIONS(1296), 2, + anon_sym_true, + anon_sym_false, + STATE(1575), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1292), 3, + sym_float_literal, + sym_integer_literal, + sym_char_literal, + ACTIONS(3362), 3, + sym_self, + sym_super, + sym_crate, + STATE(2095), 4, + sym_negative_literal, + sym_string_literal, + sym_raw_string_literal, + sym_boolean_literal, + ACTIONS(3360), 20, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_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, + [34430] = 9, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4080), 1, - anon_sym_BANG, - ACTIONS(4126), 1, + ACTIONS(3558), 1, anon_sym_LBRACE, - ACTIONS(4128), 1, + ACTIONS(3560), 1, anon_sym_COLON_COLON, - STATE(1790), 1, + ACTIONS(4140), 1, + anon_sym_BANG, + STATE(1485), 1, sym_field_initializer_list, - STATE(1572), 2, + STATE(1576), 2, sym_line_comment, sym_block_comment, - ACTIONS(1429), 15, + ACTIONS(1472), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -143766,10 +145206,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1431), 23, + ACTIONS(1470), 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, @@ -143790,147 +145231,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [34513] = 9, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [34496] = 19, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4078), 1, - anon_sym_LPAREN, - ACTIONS(4084), 1, - anon_sym_LT2, - STATE(1643), 1, - sym_type_arguments, - STATE(1669), 1, - sym_parameters, - STATE(1573), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3451), 17, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(3796), 1, + anon_sym_LBRACK, + ACTIONS(3800), 1, + anon_sym_QMARK, + ACTIONS(3802), 1, + anon_sym_DOT, + ACTIONS(3976), 1, + anon_sym_as, + ACTIONS(4068), 1, anon_sym_CARET, + ACTIONS(4070), 1, anon_sym_AMP, + ACTIONS(4072), 1, 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(3449), 20, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, + ACTIONS(4074), 1, anon_sym_AMP_AMP, + ACTIONS(4076), 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_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, - [34577] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3544), 1, - anon_sym_LBRACE, - STATE(1574), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3413), 16, + ACTIONS(386), 2, + anon_sym_EQ, + anon_sym_DOT_DOT, + ACTIONS(4064), 2, 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, + ACTIONS(4078), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4084), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3415), 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_COLON_COLON, - anon_sym_as, - [34635] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3560), 1, - anon_sym_LBRACE, - STATE(1575), 2, + STATE(1577), 2, sym_line_comment, sym_block_comment, - ACTIONS(3457), 16, - anon_sym_PLUS, + ACTIONS(4066), 3, 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(3459), 24, + ACTIONS(4082), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(384), 19, + anon_sym_SEMI, anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -143941,99 +145294,67 @@ 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, - [34693] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + anon_sym_COMMA, + anon_sym_else, + [34582] = 21, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1576), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3421), 16, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(3796), 1, + anon_sym_LBRACK, + ACTIONS(3800), 1, + anon_sym_QMARK, + ACTIONS(3802), 1, + anon_sym_DOT, + ACTIONS(3976), 1, + anon_sym_as, + ACTIONS(4068), 1, anon_sym_CARET, - anon_sym_BANG, + ACTIONS(4070), 1, anon_sym_AMP, + ACTIONS(4072), 1, anon_sym_PIPE, + ACTIONS(4074), 1, + anon_sym_AMP_AMP, + ACTIONS(4076), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4097), 1, + anon_sym_DOT_DOT, + ACTIONS(4144), 1, + anon_sym_EQ, + ACTIONS(4064), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4078), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4084), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3423), 25, - 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, + ACTIONS(4099), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, - anon_sym_SQUOTE, - anon_sym_as, - [34749] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3550), 1, - anon_sym_LBRACE, - STATE(1577), 2, + STATE(1578), 2, sym_line_comment, sym_block_comment, - ACTIONS(3437), 16, - anon_sym_PLUS, + ACTIONS(4066), 3, 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(3439), 24, + ACTIONS(4082), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4142), 17, + anon_sym_SEMI, anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -144044,43 +145365,45 @@ 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, - [34807] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + anon_sym_COMMA, + anon_sym_else, + [34672] = 10, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3670), 1, - anon_sym_LBRACE, - STATE(1578), 2, + ACTIONS(4116), 1, + anon_sym_LPAREN, + ACTIONS(4122), 1, + anon_sym_LT2, + ACTIONS(4146), 1, + anon_sym_COLON_COLON, + STATE(1642), 1, + sym_type_arguments, + STATE(1656), 1, + sym_parameters, + STATE(1579), 2, sym_line_comment, sym_block_comment, - ACTIONS(3421), 16, + ACTIONS(3409), 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(3423), 24, - anon_sym_LPAREN, + ACTIONS(3407), 20, anon_sym_LBRACK, anon_sym_EQ_GT, anon_sym_QMARK, @@ -144094,33 +145417,32 @@ 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, - [34865] = 9, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [34739] = 10, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4078), 1, + ACTIONS(4116), 1, anon_sym_LPAREN, - ACTIONS(4084), 1, + ACTIONS(4122), 1, anon_sym_LT2, - STATE(1643), 1, + ACTIONS(4146), 1, + anon_sym_COLON_COLON, + STATE(1642), 1, sym_type_arguments, - STATE(1669), 1, + STATE(1656), 1, sym_parameters, - STATE(1579), 2, + STATE(1580), 2, sym_line_comment, sym_block_comment, - ACTIONS(3443), 17, + ACTIONS(3398), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -144138,7 +145460,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3441), 20, + ACTIONS(3396), 20, anon_sym_LBRACK, anon_sym_EQ_GT, anon_sym_QMARK, @@ -144159,23 +145481,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [34929] = 9, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [34806] = 10, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4078), 1, + ACTIONS(4116), 1, anon_sym_LPAREN, - ACTIONS(4084), 1, + ACTIONS(4122), 1, anon_sym_LT2, - STATE(1643), 1, + ACTIONS(4146), 1, + anon_sym_COLON_COLON, + STATE(1642), 1, sym_type_arguments, - STATE(1669), 1, + STATE(1656), 1, sym_parameters, - STATE(1580), 2, + STATE(1581), 2, sym_line_comment, sym_block_comment, - ACTIONS(3431), 17, + ACTIONS(3392), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -144193,7 +145517,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3429), 20, + ACTIONS(3390), 20, anon_sym_LBRACK, anon_sym_EQ_GT, anon_sym_QMARK, @@ -144214,22 +145538,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [34993] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [34873] = 8, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1581), 2, + ACTIONS(3384), 1, + anon_sym_COLON_COLON, + ACTIONS(3523), 1, + anon_sym_BANG, + ACTIONS(4148), 1, + sym_identifier, + STATE(1582), 2, sym_line_comment, sym_block_comment, - ACTIONS(3413), 16, + ACTIONS(3380), 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, @@ -144239,10 +145568,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3415), 25, + anon_sym_as, + ACTIONS(3378), 23, + anon_sym_SEMI, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -144262,22 +145593,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, - anon_sym_SQUOTE, - anon_sym_as, - [35049] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [34936] = 8, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3421), 1, + ACTIONS(3372), 1, anon_sym_BANG, - ACTIONS(3423), 1, + ACTIONS(4150), 1, anon_sym_COLON_COLON, - STATE(1582), 2, + STATE(1485), 1, + sym_field_initializer_list, + STATE(1583), 2, sym_line_comment, sym_block_comment, - ACTIONS(3419), 17, + ACTIONS(1472), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -144288,17 +145618,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LT_LT_EQ, anon_sym_EQ, anon_sym_GT, anon_sym_LT, - anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3417), 22, + ACTIONS(1470), 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, @@ -144310,27 +145638,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, + anon_sym_SQUOTE, anon_sym_as, - anon_sym_LT2, - [35109] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [34999] = 9, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3413), 1, + ACTIONS(4118), 1, anon_sym_BANG, - ACTIONS(3415), 1, + ACTIONS(4152), 1, + anon_sym_LBRACE, + ACTIONS(4154), 1, anon_sym_COLON_COLON, - STATE(1583), 2, + STATE(1833), 1, + sym_field_initializer_list, + STATE(1584), 2, sym_line_comment, sym_block_comment, - ACTIONS(3411), 17, + ACTIONS(1472), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -144341,14 +145675,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(3409), 22, + ACTIONS(1470), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -144363,27 +145695,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_as, - anon_sym_LT2, - [35169] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [35064] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3457), 1, + ACTIONS(3439), 1, anon_sym_BANG, - ACTIONS(3459), 1, + ACTIONS(3441), 1, anon_sym_COLON_COLON, - STATE(1584), 2, + STATE(1585), 2, sym_line_comment, sym_block_comment, - ACTIONS(3455), 17, + ACTIONS(3437), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -144401,7 +145734,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3453), 22, + ACTIONS(3435), 22, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -144424,15 +145757,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ, anon_sym_as, anon_sym_LT2, - [35229] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [35124] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1585), 2, + ACTIONS(3586), 1, + anon_sym_LBRACE, + STATE(1586), 2, sym_line_comment, sym_block_comment, - ACTIONS(3437), 16, + ACTIONS(3415), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -144449,10 +145784,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3439), 25, + ACTIONS(3417), 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, @@ -144473,21 +145808,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, - anon_sym_SQUOTE, anon_sym_as, - [35285] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [35182] = 9, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3437), 1, - anon_sym_BANG, - ACTIONS(3439), 1, - anon_sym_COLON_COLON, - STATE(1586), 2, + ACTIONS(4116), 1, + anon_sym_LPAREN, + ACTIONS(4122), 1, + anon_sym_LT2, + STATE(1643), 1, + sym_type_arguments, + STATE(1657), 1, + sym_parameters, + STATE(1587), 2, sym_line_comment, sym_block_comment, - ACTIONS(3435), 17, + ACTIONS(3529), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -144505,8 +145843,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3433), 22, - anon_sym_LPAREN, + ACTIONS(3527), 20, anon_sym_LBRACK, anon_sym_EQ_GT, anon_sym_QMARK, @@ -144527,20 +145864,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - anon_sym_LT2, - [35345] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [35246] = 9, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4004), 1, - anon_sym_COLON_COLON, - ACTIONS(4076), 1, - anon_sym_BANG, - STATE(1587), 2, + ACTIONS(4116), 1, + anon_sym_LPAREN, + ACTIONS(4122), 1, + anon_sym_LT2, + STATE(1643), 1, + sym_type_arguments, + STATE(1657), 1, + sym_parameters, + STATE(1588), 2, sym_line_comment, sym_block_comment, - ACTIONS(1429), 15, + ACTIONS(3511), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -144551,16 +145891,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(1431), 24, - anon_sym_SEMI, - anon_sym_LPAREN, + ACTIONS(3509), 20, anon_sym_LBRACK, - anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -144572,31 +145912,32 @@ 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, - [35405] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [35310] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1588), 2, + ACTIONS(4052), 1, + anon_sym_COLON_COLON, + ACTIONS(4140), 1, + anon_sym_BANG, + STATE(1589), 2, sym_line_comment, sym_block_comment, - ACTIONS(3457), 16, + ACTIONS(1472), 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, @@ -144606,10 +145947,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3459), 25, + ACTIONS(1470), 24, + anon_sym_SEMI, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -144629,28 +145971,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_COLON_COLON, - anon_sym_SQUOTE, anon_sym_as, - [35461] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [35370] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3344), 1, - anon_sym_BANG, - ACTIONS(4030), 1, - anon_sym_COLON_COLON, - STATE(1589), 2, + ACTIONS(3584), 1, + anon_sym_LBRACE, + STATE(1590), 2, sym_line_comment, sym_block_comment, - ACTIONS(3342), 15, + ACTIONS(3501), 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, @@ -144660,10 +145999,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3340), 24, + ACTIONS(3503), 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, @@ -144683,25 +146022,89 @@ 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, - [35521] = 9, - ACTIONS(103), 1, + [35428] = 22, + ACTIONS(29), 1, + anon_sym_LT, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(1284), 1, + anon_sym_extern, + ACTIONS(3425), 1, + anon_sym_COLON_COLON, + ACTIONS(3427), 1, + anon_sym_default, + ACTIONS(3433), 1, + sym_metavariable, + ACTIONS(4156), 1, + sym_identifier, + ACTIONS(4158), 1, + anon_sym_fn, + STATE(2244), 1, + aux_sym_function_modifiers_repeat1, + STATE(2373), 1, + sym_extern_modifier, + STATE(2715), 1, + sym_scoped_type_identifier, + STATE(3475), 1, + sym_generic_type, + STATE(3482), 1, + sym_generic_type_with_turbofish, + STATE(3486), 1, + sym_function_modifiers, + STATE(3488), 1, + sym_scoped_identifier, + STATE(3621), 1, + sym_bracketed_type, + ACTIONS(3429), 2, + anon_sym_gen, + anon_sym_union, + STATE(1591), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3431), 3, + sym_self, + sym_super, + sym_crate, + ACTIONS(1270), 4, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + anon_sym_safe, + ACTIONS(3423), 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, + [35518] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4078), 1, - anon_sym_LPAREN, - ACTIONS(4084), 1, - anon_sym_LT2, - STATE(1643), 1, - sym_type_arguments, - STATE(1669), 1, - sym_parameters, - STATE(1590), 2, + ACTIONS(3540), 1, + anon_sym_BANG, + ACTIONS(3542), 1, + anon_sym_COLON_COLON, + STATE(1592), 2, sym_line_comment, sym_block_comment, - ACTIONS(3427), 17, + ACTIONS(3538), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -144719,7 +146122,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3425), 20, + ACTIONS(3536), 22, + anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, anon_sym_QMARK, @@ -144740,19 +146144,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [35585] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + anon_sym_LT2, + [35578] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3358), 1, + ACTIONS(3501), 1, anon_sym_BANG, - ACTIONS(4130), 1, + ACTIONS(3503), 1, anon_sym_COLON_COLON, - STATE(1591), 2, + STATE(1593), 2, sym_line_comment, sym_block_comment, - ACTIONS(1429), 15, + ACTIONS(3499), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -144763,15 +146168,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(1431), 24, + ACTIONS(3497), 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, @@ -144783,28 +146190,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_SQUOTE, anon_sym_as, - [35645] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + anon_sym_LT2, + [35638] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3884), 2, - anon_sym_LBRACE, + ACTIONS(3415), 1, + anon_sym_BANG, + ACTIONS(3417), 1, anon_sym_COLON_COLON, - STATE(1592), 2, + STATE(1594), 2, sym_line_comment, sym_block_comment, - ACTIONS(3848), 15, + ACTIONS(3413), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -144815,12 +146221,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(3844), 23, + ACTIONS(3411), 22, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -144835,26 +146243,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, - [35702] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + anon_sym_LT2, + [35698] = 9, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1458), 1, - sym_label, - STATE(1593), 2, + ACTIONS(4116), 1, + anon_sym_LPAREN, + ACTIONS(4122), 1, + anon_sym_LT2, + STATE(1643), 1, + sym_type_arguments, + STATE(1657), 1, + sym_parameters, + STATE(1595), 2, sym_line_comment, sym_block_comment, - ACTIONS(3690), 15, + ACTIONS(3507), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -144865,15 +146278,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(3688), 24, - anon_sym_LPAREN, + ACTIONS(3505), 20, anon_sym_LBRACK, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -144885,100 +146299,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_SQUOTE, anon_sym_as, - [35759] = 22, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [35762] = 6, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(1279), 1, - anon_sym_extern, - ACTIONS(3397), 1, - anon_sym_COLON_COLON, - ACTIONS(3407), 1, - sym_metavariable, - ACTIONS(3483), 1, - anon_sym_default, - ACTIONS(4132), 1, - sym_identifier, - ACTIONS(4134), 1, - anon_sym_fn, - STATE(2252), 1, - aux_sym_function_modifiers_repeat1, - STATE(2447), 1, - sym_extern_modifier, - STATE(2675), 1, - sym_scoped_type_identifier, - STATE(3450), 1, - sym_generic_type, - STATE(3457), 1, - sym_generic_type_with_turbofish, - STATE(3536), 1, - sym_function_modifiers, - STATE(3591), 1, - sym_bracketed_type, - STATE(3656), 1, - sym_scoped_identifier, - ACTIONS(3401), 2, - anon_sym_gen, - anon_sym_union, - STATE(1594), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1265), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(3405), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(3481), 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, - [35848] = 6, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3846), 1, - anon_sym_COLON_COLON, - STATE(1595), 2, + ACTIONS(3596), 1, + anon_sym_LBRACE, + STATE(1596), 2, sym_line_comment, sym_block_comment, - ACTIONS(3848), 15, + ACTIONS(3540), 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, @@ -144988,10 +146333,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3844), 24, + ACTIONS(3542), 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, @@ -145011,17 +146356,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, - [35905] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [35820] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1596), 2, + STATE(1597), 2, sym_line_comment, sym_block_comment, - ACTIONS(3413), 16, + ACTIONS(3439), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -145038,10 +146383,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3415), 24, + ACTIONS(3441), 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, @@ -145062,25 +146407,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, + anon_sym_SQUOTE, anon_sym_as, - [35960] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [35876] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3846), 2, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - STATE(1597), 2, + STATE(1598), 2, sym_line_comment, sym_block_comment, - ACTIONS(3848), 15, + ACTIONS(3540), 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, @@ -145090,10 +146434,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3844), 23, + ACTIONS(3542), 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, @@ -145113,16 +146457,20 @@ 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, - [36017] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [35932] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1598), 2, + ACTIONS(3738), 1, + anon_sym_LBRACE, + STATE(1599), 2, sym_line_comment, sym_block_comment, - ACTIONS(3437), 16, + ACTIONS(3439), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -145139,7 +146487,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3439), 24, + ACTIONS(3441), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -145164,25 +146512,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, anon_sym_as, - [36072] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [35990] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4080), 1, - anon_sym_BANG, - ACTIONS(4136), 1, - anon_sym_COLON_COLON, - STATE(1599), 2, + STATE(1600), 2, sym_line_comment, sym_block_comment, - ACTIONS(1429), 15, + ACTIONS(3501), 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, @@ -145192,10 +146537,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1431), 23, + ACTIONS(3503), 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, @@ -145215,22 +146560,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_COLON_COLON, + anon_sym_SQUOTE, anon_sym_as, - [36131] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [36046] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1600), 2, + STATE(1601), 2, sym_line_comment, sym_block_comment, - ACTIONS(3650), 15, + ACTIONS(3415), 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, @@ -145240,11 +146588,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3648), 25, + ACTIONS(3417), 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, @@ -145265,137 +146612,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, + anon_sym_SQUOTE, anon_sym_as, - [36186] = 25, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [36102] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(883), 1, - anon_sym_RBRACK, - ACTIONS(3744), 1, - anon_sym_LBRACK, - ACTIONS(3748), 1, - anon_sym_QMARK, - ACTIONS(3750), 1, - anon_sym_DOT, - ACTIONS(3862), 1, - anon_sym_as, - ACTIONS(4040), 1, - anon_sym_AMP, - ACTIONS(4044), 1, - anon_sym_CARET, - ACTIONS(4046), 1, - anon_sym_PIPE, - ACTIONS(4052), 1, - anon_sym_AMP_AMP, - ACTIONS(4056), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4070), 1, - anon_sym_EQ, - ACTIONS(4138), 1, - anon_sym_SEMI, - ACTIONS(4140), 1, - anon_sym_DOT_DOT, - ACTIONS(4144), 1, - anon_sym_COMMA, - STATE(3105), 1, - aux_sym_arguments_repeat1, - ACTIONS(4038), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4042), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4050), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4142), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1601), 2, + ACTIONS(3382), 1, + anon_sym_BANG, + ACTIONS(4058), 1, + anon_sym_COLON_COLON, + STATE(1602), 2, sym_line_comment, sym_block_comment, - ACTIONS(4036), 3, + ACTIONS(3380), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4048), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4068), 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, - [36281] = 25, - ACTIONS(19), 1, - anon_sym_LBRACE, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3348), 1, - anon_sym_SQUOTE, - ACTIONS(3744), 1, - anon_sym_LBRACK, - ACTIONS(3748), 1, - anon_sym_QMARK, - ACTIONS(3750), 1, - anon_sym_DOT, - ACTIONS(3862), 1, - anon_sym_as, - ACTIONS(4150), 1, anon_sym_CARET, - ACTIONS(4152), 1, anon_sym_AMP, - ACTIONS(4154), 1, anon_sym_PIPE, - ACTIONS(4156), 1, - anon_sym_AMP_AMP, - ACTIONS(4158), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4164), 1, - anon_sym_EQ, - ACTIONS(4170), 1, - anon_sym_DOT_DOT, - STATE(412), 1, - sym_block, - STATE(3676), 1, - sym_label, - ACTIONS(4146), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4160), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4168), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4172), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1602), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4148), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4166), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4162), 10, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3378), 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, @@ -145406,15 +146659,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36376] = 5, - ACTIONS(103), 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, + [36162] = 22, + ACTIONS(29), 1, + anon_sym_LT, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, + ACTIONS(1284), 1, + anon_sym_extern, + ACTIONS(3425), 1, + anon_sym_COLON_COLON, + ACTIONS(3427), 1, + anon_sym_default, + ACTIONS(3433), 1, + sym_metavariable, + ACTIONS(4160), 1, + sym_identifier, + ACTIONS(4162), 1, + anon_sym_fn, + STATE(2244), 1, + aux_sym_function_modifiers_repeat1, + STATE(2373), 1, + sym_extern_modifier, + STATE(2727), 1, + sym_scoped_type_identifier, + STATE(3475), 1, + sym_generic_type, + STATE(3482), 1, + sym_generic_type_with_turbofish, + STATE(3488), 1, + sym_scoped_identifier, + STATE(3514), 1, + sym_function_modifiers, + STATE(3621), 1, + sym_bracketed_type, + ACTIONS(3429), 2, + anon_sym_gen, + anon_sym_union, STATE(1603), 2, sym_line_comment, sym_block_comment, - ACTIONS(3664), 15, + ACTIONS(3431), 3, + sym_self, + sym_super, + sym_crate, + ACTIONS(1270), 4, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + anon_sym_safe, + ACTIONS(3423), 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, + [36252] = 7, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(3372), 1, + anon_sym_BANG, + ACTIONS(4164), 1, + anon_sym_COLON_COLON, + STATE(1604), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1472), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -145430,11 +146763,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3662), 25, + ACTIONS(1470), 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, @@ -145454,17 +146786,93 @@ 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, - [36431] = 5, - ACTIONS(103), 1, + [36312] = 22, + ACTIONS(29), 1, + anon_sym_LT, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(1284), 1, + anon_sym_extern, + ACTIONS(3425), 1, + anon_sym_COLON_COLON, + ACTIONS(3427), 1, + anon_sym_default, + ACTIONS(3433), 1, + sym_metavariable, + ACTIONS(4166), 1, + sym_identifier, + ACTIONS(4168), 1, + anon_sym_fn, + STATE(2244), 1, + aux_sym_function_modifiers_repeat1, + STATE(2373), 1, + sym_extern_modifier, + STATE(2584), 1, + sym_scoped_type_identifier, + STATE(3475), 1, + sym_generic_type, + STATE(3482), 1, + sym_generic_type_with_turbofish, + STATE(3488), 1, + sym_scoped_identifier, + STATE(3621), 1, + sym_bracketed_type, + STATE(3634), 1, + sym_function_modifiers, + ACTIONS(3429), 2, + anon_sym_gen, + anon_sym_union, + STATE(1605), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3431), 3, + sym_self, + sym_super, + sym_crate, + ACTIONS(1270), 4, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + anon_sym_safe, + ACTIONS(3423), 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, + [36402] = 9, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1604), 2, + ACTIONS(4116), 1, + anon_sym_LPAREN, + ACTIONS(4122), 1, + anon_sym_LT2, + STATE(1643), 1, + sym_type_arguments, + STATE(1657), 1, + sym_parameters, + STATE(1606), 2, sym_line_comment, sym_block_comment, - ACTIONS(3674), 15, + ACTIONS(3477), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -145475,15 +146883,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LT_LT_EQ, anon_sym_EQ, anon_sym_GT, anon_sym_LT, + anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3672), 25, - anon_sym_LPAREN, + ACTIONS(3475), 20, anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_AMP_AMP, @@ -145496,25 +146904,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, anon_sym_as, - [36486] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [36466] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1605), 2, + ACTIONS(3758), 2, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + STATE(1607), 2, sym_line_comment, sym_block_comment, - ACTIONS(3682), 15, + ACTIONS(3760), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -145530,10 +146938,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3680), 25, + ACTIONS(3756), 23, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_AMP_AMP, @@ -145554,21 +146961,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_as, - [36541] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [36523] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4174), 1, - anon_sym_else, - STATE(1764), 1, - sym_else_clause, - STATE(1606), 2, + ACTIONS(3834), 2, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + STATE(1608), 2, sym_line_comment, sym_block_comment, - ACTIONS(1353), 15, + ACTIONS(3760), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -145584,7 +146989,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1351), 23, + ACTIONS(3756), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -145608,25 +147013,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [36600] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [36580] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3934), 1, - anon_sym_BANG, - ACTIONS(3936), 1, - anon_sym_COLON_COLON, - STATE(1607), 2, + STATE(1609), 2, sym_line_comment, sym_block_comment, - ACTIONS(3342), 15, + ACTIONS(3415), 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, @@ -145636,7 +147038,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3340), 23, + ACTIONS(3417), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -145659,207 +147061,40 @@ 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, - [36659] = 25, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [36635] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(913), 1, - anon_sym_RBRACK, - ACTIONS(3744), 1, - anon_sym_LBRACK, - ACTIONS(3748), 1, - anon_sym_QMARK, - ACTIONS(3750), 1, - anon_sym_DOT, - ACTIONS(3862), 1, - anon_sym_as, - ACTIONS(4040), 1, - anon_sym_AMP, - ACTIONS(4044), 1, - anon_sym_CARET, - ACTIONS(4046), 1, - anon_sym_PIPE, - ACTIONS(4052), 1, - anon_sym_AMP_AMP, - ACTIONS(4056), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4070), 1, - anon_sym_EQ, - ACTIONS(4140), 1, - anon_sym_DOT_DOT, - ACTIONS(4176), 1, - anon_sym_SEMI, - ACTIONS(4178), 1, - anon_sym_COMMA, - STATE(3050), 1, - aux_sym_arguments_repeat1, - ACTIONS(4038), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4042), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4050), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4142), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1608), 2, + STATE(1610), 2, sym_line_comment, sym_block_comment, - ACTIONS(4036), 3, + ACTIONS(3708), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4048), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4068), 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, - [36754] = 25, - ACTIONS(19), 1, - anon_sym_LBRACE, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3348), 1, - anon_sym_SQUOTE, - ACTIONS(3744), 1, - anon_sym_LBRACK, - ACTIONS(3748), 1, - anon_sym_QMARK, - ACTIONS(3750), 1, - anon_sym_DOT, - ACTIONS(3862), 1, - anon_sym_as, - ACTIONS(4150), 1, anon_sym_CARET, - ACTIONS(4152), 1, anon_sym_AMP, - ACTIONS(4154), 1, anon_sym_PIPE, - ACTIONS(4156), 1, - anon_sym_AMP_AMP, - ACTIONS(4158), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4164), 1, - anon_sym_EQ, - ACTIONS(4170), 1, - anon_sym_DOT_DOT, - STATE(415), 1, - sym_block, - STATE(3676), 1, - sym_label, - ACTIONS(4146), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4160), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4168), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4172), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1609), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4148), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4166), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4162), 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, - [36849] = 25, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(871), 1, - anon_sym_RBRACK, - ACTIONS(3744), 1, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3706), 25, + anon_sym_LPAREN, anon_sym_LBRACK, - ACTIONS(3748), 1, + anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_QMARK, - ACTIONS(3750), 1, - anon_sym_DOT, - ACTIONS(3862), 1, - anon_sym_as, - ACTIONS(4040), 1, - anon_sym_AMP, - ACTIONS(4044), 1, - anon_sym_CARET, - ACTIONS(4046), 1, - anon_sym_PIPE, - ACTIONS(4052), 1, anon_sym_AMP_AMP, - ACTIONS(4056), 1, anon_sym_PIPE_PIPE, - ACTIONS(4070), 1, - anon_sym_EQ, - ACTIONS(4140), 1, - anon_sym_DOT_DOT, - ACTIONS(4180), 1, - anon_sym_SEMI, - ACTIONS(4182), 1, - anon_sym_COMMA, - STATE(3101), 1, - aux_sym_arguments_repeat1, - ACTIONS(4038), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4042), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4050), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4142), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1610), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4036), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4048), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4068), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -145870,136 +147105,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36944] = 25, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(937), 1, - anon_sym_RBRACK, - ACTIONS(3744), 1, - anon_sym_LBRACK, - ACTIONS(3748), 1, - anon_sym_QMARK, - ACTIONS(3750), 1, - anon_sym_DOT, - ACTIONS(3862), 1, - anon_sym_as, - ACTIONS(4040), 1, - anon_sym_AMP, - ACTIONS(4044), 1, - anon_sym_CARET, - ACTIONS(4046), 1, - anon_sym_PIPE, - ACTIONS(4052), 1, - anon_sym_AMP_AMP, - ACTIONS(4056), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4070), 1, - anon_sym_EQ, - ACTIONS(4140), 1, - anon_sym_DOT_DOT, - ACTIONS(4184), 1, - anon_sym_SEMI, - ACTIONS(4186), 1, - anon_sym_COMMA, - STATE(2831), 1, - aux_sym_arguments_repeat1, - ACTIONS(4038), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4042), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4050), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4142), 2, + anon_sym_EQ_EQ, + 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, + [36690] = 6, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + STATE(1427), 1, + sym_label, STATE(1611), 2, sym_line_comment, sym_block_comment, - ACTIONS(4036), 3, + ACTIONS(3742), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4048), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4068), 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, - [37039] = 25, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(343), 1, - anon_sym_LBRACE, - ACTIONS(3348), 1, - anon_sym_SQUOTE, - ACTIONS(3744), 1, - anon_sym_LBRACK, - ACTIONS(3748), 1, - anon_sym_QMARK, - ACTIONS(3750), 1, - anon_sym_DOT, - ACTIONS(3862), 1, - anon_sym_as, - ACTIONS(4150), 1, anon_sym_CARET, - ACTIONS(4152), 1, anon_sym_AMP, - ACTIONS(4154), 1, anon_sym_PIPE, - ACTIONS(4156), 1, - anon_sym_AMP_AMP, - ACTIONS(4158), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4164), 1, - anon_sym_EQ, - ACTIONS(4170), 1, - anon_sym_DOT_DOT, - STATE(1492), 1, - sym_block, - STATE(3664), 1, - sym_label, - ACTIONS(4146), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4160), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4168), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4172), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1612), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4148), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4166), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4162), 10, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3740), 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, @@ -146010,66 +147156,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [37134] = 25, - ACTIONS(103), 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, + [36747] = 25, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, - anon_sym_LBRACE, - ACTIONS(3348), 1, - anon_sym_SQUOTE, - ACTIONS(3744), 1, + ACTIONS(880), 1, + anon_sym_RBRACK, + ACTIONS(3796), 1, anon_sym_LBRACK, - ACTIONS(3748), 1, + ACTIONS(3800), 1, anon_sym_QMARK, - ACTIONS(3750), 1, + ACTIONS(3802), 1, anon_sym_DOT, - ACTIONS(3862), 1, + ACTIONS(3976), 1, anon_sym_as, - ACTIONS(4150), 1, + ACTIONS(4068), 1, anon_sym_CARET, - ACTIONS(4152), 1, + ACTIONS(4070), 1, anon_sym_AMP, - ACTIONS(4154), 1, + ACTIONS(4072), 1, anon_sym_PIPE, - ACTIONS(4156), 1, + ACTIONS(4074), 1, anon_sym_AMP_AMP, - ACTIONS(4158), 1, + ACTIONS(4076), 1, anon_sym_PIPE_PIPE, - ACTIONS(4164), 1, + ACTIONS(4126), 1, anon_sym_EQ, ACTIONS(4170), 1, + anon_sym_SEMI, + ACTIONS(4172), 1, anon_sym_DOT_DOT, - STATE(1469), 1, - sym_block, - STATE(3664), 1, - sym_label, - ACTIONS(4146), 2, + ACTIONS(4176), 1, + anon_sym_COMMA, + STATE(3125), 1, + aux_sym_arguments_repeat1, + ACTIONS(4064), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4160), 2, + ACTIONS(4078), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4168), 2, + ACTIONS(4084), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4172), 2, + ACTIONS(4174), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1613), 2, + STATE(1612), 2, sym_line_comment, sym_block_comment, - ACTIONS(4148), 3, + ACTIONS(4066), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4166), 4, + ACTIONS(4082), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4162), 10, + ACTIONS(4124), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -146080,22 +147234,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [37229] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [36842] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1614), 2, + STATE(1613), 2, sym_line_comment, sym_block_comment, - ACTIONS(3457), 16, + ACTIONS(3716), 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, @@ -146105,9 +147258,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3459), 24, + ACTIONS(3714), 25, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_AMP_AMP, @@ -146130,17 +147284,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, anon_sym_as, - [37284] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [36897] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3884), 1, - anon_sym_COLON_COLON, - STATE(1615), 2, + STATE(1614), 2, sym_line_comment, sym_block_comment, - ACTIONS(3848), 15, + ACTIONS(3730), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -146156,10 +147308,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3844), 24, + ACTIONS(3728), 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, @@ -146179,68 +147332,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_SQUOTE, + anon_sym_COLON_COLON, anon_sym_as, - [37341] = 25, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [36952] = 25, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(1301), 1, - anon_sym_LBRACE, - ACTIONS(3348), 1, - anon_sym_SQUOTE, - ACTIONS(3744), 1, + ACTIONS(926), 1, + anon_sym_RBRACK, + ACTIONS(3796), 1, anon_sym_LBRACK, - ACTIONS(3748), 1, + ACTIONS(3800), 1, anon_sym_QMARK, - ACTIONS(3750), 1, + ACTIONS(3802), 1, anon_sym_DOT, - ACTIONS(3862), 1, + ACTIONS(3976), 1, anon_sym_as, - ACTIONS(4150), 1, + ACTIONS(4068), 1, anon_sym_CARET, - ACTIONS(4152), 1, + ACTIONS(4070), 1, anon_sym_AMP, - ACTIONS(4154), 1, + ACTIONS(4072), 1, anon_sym_PIPE, - ACTIONS(4156), 1, + ACTIONS(4074), 1, anon_sym_AMP_AMP, - ACTIONS(4158), 1, + ACTIONS(4076), 1, anon_sym_PIPE_PIPE, - ACTIONS(4164), 1, + ACTIONS(4126), 1, anon_sym_EQ, - ACTIONS(4170), 1, + ACTIONS(4172), 1, anon_sym_DOT_DOT, - STATE(477), 1, - sym_block, - STATE(3717), 1, - sym_label, - ACTIONS(4146), 2, + ACTIONS(4178), 1, + anon_sym_SEMI, + ACTIONS(4180), 1, + anon_sym_COMMA, + STATE(2858), 1, + aux_sym_arguments_repeat1, + ACTIONS(4064), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4160), 2, + ACTIONS(4078), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4168), 2, + ACTIONS(4084), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4172), 2, + ACTIONS(4174), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1616), 2, + STATE(1615), 2, sym_line_comment, sym_block_comment, - ACTIONS(4148), 3, + ACTIONS(4066), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4166), 4, + ACTIONS(4082), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4162), 10, + ACTIONS(4124), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -146251,66 +147404,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [37436] = 25, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [37047] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(1301), 1, - anon_sym_LBRACE, - ACTIONS(3348), 1, - anon_sym_SQUOTE, - ACTIONS(3744), 1, - anon_sym_LBRACK, - ACTIONS(3748), 1, - anon_sym_QMARK, - ACTIONS(3750), 1, - anon_sym_DOT, - ACTIONS(3862), 1, - anon_sym_as, - ACTIONS(4150), 1, + STATE(1616), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3540), 16, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4152), 1, + anon_sym_BANG, anon_sym_AMP, - ACTIONS(4154), 1, anon_sym_PIPE, - ACTIONS(4156), 1, - anon_sym_AMP_AMP, - ACTIONS(4158), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4164), 1, - anon_sym_EQ, - ACTIONS(4170), 1, - anon_sym_DOT_DOT, - STATE(471), 1, - sym_block, - STATE(3717), 1, - sym_label, - ACTIONS(4146), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4160), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4168), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4172), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1617), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4148), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4166), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4162), 10, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3542), 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, @@ -146321,66 +147446,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [37531] = 25, - ACTIONS(103), 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, + [37102] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(407), 1, - anon_sym_LBRACE, - ACTIONS(3348), 1, - anon_sym_SQUOTE, - ACTIONS(3744), 1, - anon_sym_LBRACK, - ACTIONS(3748), 1, - anon_sym_QMARK, - ACTIONS(3750), 1, - anon_sym_DOT, - ACTIONS(3862), 1, - anon_sym_as, - ACTIONS(4150), 1, + STATE(1617), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3686), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4152), 1, anon_sym_AMP, - ACTIONS(4154), 1, anon_sym_PIPE, - ACTIONS(4156), 1, - anon_sym_AMP_AMP, - ACTIONS(4158), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4164), 1, - anon_sym_EQ, - ACTIONS(4170), 1, - anon_sym_DOT_DOT, - STATE(1770), 1, - sym_block, - STATE(3718), 1, - sym_label, - ACTIONS(4146), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4160), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4168), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4172), 2, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3684), 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, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + 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, + [37157] = 7, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(3978), 1, + anon_sym_BANG, + ACTIONS(3980), 1, + anon_sym_COLON_COLON, STATE(1618), 2, sym_line_comment, sym_block_comment, - ACTIONS(4148), 3, + ACTIONS(3380), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4166), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4162), 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(3378), 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, @@ -146391,66 +147549,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [37626] = 25, - ACTIONS(103), 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, + [37216] = 25, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(407), 1, + ACTIONS(348), 1, anon_sym_LBRACE, - ACTIONS(3348), 1, + ACTIONS(3386), 1, anon_sym_SQUOTE, - ACTIONS(3744), 1, + ACTIONS(3796), 1, anon_sym_LBRACK, - ACTIONS(3748), 1, + ACTIONS(3800), 1, anon_sym_QMARK, - ACTIONS(3750), 1, + ACTIONS(3802), 1, anon_sym_DOT, - ACTIONS(3862), 1, + ACTIONS(3976), 1, anon_sym_as, - ACTIONS(4150), 1, + ACTIONS(4186), 1, anon_sym_CARET, - ACTIONS(4152), 1, + ACTIONS(4188), 1, anon_sym_AMP, - ACTIONS(4154), 1, + ACTIONS(4190), 1, anon_sym_PIPE, - ACTIONS(4156), 1, + ACTIONS(4192), 1, anon_sym_AMP_AMP, - ACTIONS(4158), 1, + ACTIONS(4194), 1, anon_sym_PIPE_PIPE, - ACTIONS(4164), 1, + ACTIONS(4200), 1, anon_sym_EQ, - ACTIONS(4170), 1, + ACTIONS(4206), 1, anon_sym_DOT_DOT, - STATE(1775), 1, + STATE(1466), 1, sym_block, - STATE(3718), 1, + STATE(3693), 1, sym_label, - ACTIONS(4146), 2, + ACTIONS(4182), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4160), 2, + ACTIONS(4196), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4168), 2, + ACTIONS(4204), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4172), 2, + ACTIONS(4208), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, STATE(1619), 2, sym_line_comment, sym_block_comment, - ACTIONS(4148), 3, + ACTIONS(4184), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4166), 4, + ACTIONS(4202), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4162), 10, + ACTIONS(4198), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -146461,17 +147626,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [37721] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [37311] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4030), 1, - anon_sym_COLON_COLON, + ACTIONS(4210), 1, + anon_sym_SQUOTE, + STATE(1753), 1, + sym_label, STATE(1620), 2, sym_line_comment, sym_block_comment, - ACTIONS(3342), 15, + ACTIONS(3742), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -146487,10 +147654,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3340), 24, + ACTIONS(3740), 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, @@ -146510,41 +147677,137 @@ 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, - [37778] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [37370] = 25, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, + ACTIONS(348), 1, + anon_sym_LBRACE, + ACTIONS(3386), 1, + anon_sym_SQUOTE, + ACTIONS(3796), 1, + anon_sym_LBRACK, + ACTIONS(3800), 1, + anon_sym_QMARK, + ACTIONS(3802), 1, + anon_sym_DOT, + ACTIONS(3976), 1, + anon_sym_as, + ACTIONS(4186), 1, + anon_sym_CARET, ACTIONS(4188), 1, - anon_sym_COLON_COLON, + anon_sym_AMP, + ACTIONS(4190), 1, + anon_sym_PIPE, + ACTIONS(4192), 1, + anon_sym_AMP_AMP, + ACTIONS(4194), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4200), 1, + anon_sym_EQ, + ACTIONS(4206), 1, + anon_sym_DOT_DOT, + STATE(1495), 1, + sym_block, + STATE(3693), 1, + sym_label, + ACTIONS(4182), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4196), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4204), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4208), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, STATE(1621), 2, sym_line_comment, sym_block_comment, - ACTIONS(1429), 15, - anon_sym_PLUS, + ACTIONS(4184), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(4202), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4198), 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, + [37465] = 25, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(884), 1, + anon_sym_RBRACK, + ACTIONS(3796), 1, + anon_sym_LBRACK, + ACTIONS(3800), 1, + anon_sym_QMARK, + ACTIONS(3802), 1, + anon_sym_DOT, + ACTIONS(3976), 1, + anon_sym_as, + ACTIONS(4068), 1, anon_sym_CARET, + ACTIONS(4070), 1, anon_sym_AMP, + ACTIONS(4072), 1, anon_sym_PIPE, + ACTIONS(4074), 1, + anon_sym_AMP_AMP, + ACTIONS(4076), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4126), 1, + anon_sym_EQ, + ACTIONS(4172), 1, + anon_sym_DOT_DOT, + ACTIONS(4212), 1, + anon_sym_SEMI, + ACTIONS(4214), 1, + anon_sym_COMMA, + STATE(2997), 1, + aux_sym_arguments_repeat1, + ACTIONS(4064), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4078), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4084), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1431), 24, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4174), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1622), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4066), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4082), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4124), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -146555,30 +147818,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_SQUOTE, - anon_sym_as, - [37835] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [37560] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1622), 2, + ACTIONS(4118), 1, + anon_sym_BANG, + ACTIONS(4216), 1, + anon_sym_COLON_COLON, + STATE(1623), 2, sym_line_comment, sym_block_comment, - ACTIONS(3421), 16, + ACTIONS(1472), 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, @@ -146588,7 +147846,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3423), 24, + ACTIONS(1470), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -146611,155 +147869,88 @@ 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, - [37890] = 22, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [37619] = 25, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(1279), 1, - anon_sym_extern, - ACTIONS(3397), 1, - anon_sym_COLON_COLON, - ACTIONS(3407), 1, - sym_metavariable, - ACTIONS(3483), 1, - anon_sym_default, - ACTIONS(4190), 1, - sym_identifier, - ACTIONS(4192), 1, - anon_sym_fn, - STATE(2252), 1, - aux_sym_function_modifiers_repeat1, - STATE(2447), 1, - sym_extern_modifier, - STATE(2653), 1, - sym_scoped_type_identifier, - STATE(3450), 1, - sym_generic_type, - STATE(3457), 1, - sym_generic_type_with_turbofish, - STATE(3488), 1, - sym_function_modifiers, - STATE(3591), 1, - sym_bracketed_type, - STATE(3656), 1, - sym_scoped_identifier, - ACTIONS(3401), 2, - anon_sym_gen, - anon_sym_union, - STATE(1623), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1265), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(3405), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(3481), 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, - [37979] = 22, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(1279), 1, - anon_sym_extern, - ACTIONS(3397), 1, - anon_sym_COLON_COLON, - ACTIONS(3407), 1, - sym_metavariable, - ACTIONS(3483), 1, - anon_sym_default, - ACTIONS(4194), 1, - sym_identifier, - ACTIONS(4196), 1, - anon_sym_fn, - STATE(2252), 1, - aux_sym_function_modifiers_repeat1, - STATE(2447), 1, - sym_extern_modifier, - STATE(2567), 1, - sym_scoped_type_identifier, - STATE(3450), 1, - sym_generic_type, - STATE(3457), 1, - sym_generic_type_with_turbofish, - STATE(3591), 1, - sym_bracketed_type, - STATE(3606), 1, - sym_function_modifiers, - STATE(3656), 1, - sym_scoped_identifier, - ACTIONS(3401), 2, - anon_sym_gen, - anon_sym_union, - STATE(1624), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1265), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(3405), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(3481), 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, - [38068] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + ACTIONS(1010), 1, + anon_sym_RBRACK, + ACTIONS(3796), 1, + anon_sym_LBRACK, + ACTIONS(3800), 1, + anon_sym_QMARK, + ACTIONS(3802), 1, + anon_sym_DOT, + ACTIONS(3976), 1, + anon_sym_as, + ACTIONS(4068), 1, + anon_sym_CARET, + ACTIONS(4070), 1, + anon_sym_AMP, + ACTIONS(4072), 1, + anon_sym_PIPE, + ACTIONS(4074), 1, + anon_sym_AMP_AMP, + ACTIONS(4076), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4126), 1, + anon_sym_EQ, + ACTIONS(4172), 1, + anon_sym_DOT_DOT, + ACTIONS(4218), 1, + anon_sym_SEMI, + ACTIONS(4220), 1, + anon_sym_COMMA, + STATE(2892), 1, + aux_sym_arguments_repeat1, + ACTIONS(4064), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4078), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4084), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4174), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1624), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4066), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4082), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4124), 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, + [37714] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4198), 1, - anon_sym_SQUOTE, - STATE(1898), 1, - sym_label, + ACTIONS(3834), 1, + anon_sym_COLON_COLON, STATE(1625), 2, sym_line_comment, sym_block_comment, - ACTIONS(3690), 15, + ACTIONS(3760), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -146775,10 +147966,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3688), 23, + ACTIONS(3756), 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, @@ -146798,18 +147989,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_as, - [38127] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [37771] = 25, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, + ACTIONS(1366), 1, + anon_sym_LBRACE, + ACTIONS(3386), 1, + anon_sym_SQUOTE, + ACTIONS(3796), 1, + anon_sym_LBRACK, + ACTIONS(3800), 1, + anon_sym_QMARK, + ACTIONS(3802), 1, + anon_sym_DOT, + ACTIONS(3976), 1, + anon_sym_as, + ACTIONS(4186), 1, + anon_sym_CARET, + ACTIONS(4188), 1, + anon_sym_AMP, + ACTIONS(4190), 1, + anon_sym_PIPE, + ACTIONS(4192), 1, + anon_sym_AMP_AMP, + ACTIONS(4194), 1, + anon_sym_PIPE_PIPE, ACTIONS(4200), 1, - anon_sym_COLON_COLON, + anon_sym_EQ, + ACTIONS(4206), 1, + anon_sym_DOT_DOT, + STATE(482), 1, + sym_block, + STATE(3747), 1, + sym_label, + ACTIONS(4182), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4196), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4204), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4208), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, STATE(1626), 2, sym_line_comment, sym_block_comment, - ACTIONS(3427), 15, + ACTIONS(4184), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4202), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4198), 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, + [37866] = 7, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(4222), 1, + anon_sym_else, + STATE(1819), 1, + sym_else_clause, + STATE(1627), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1350), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -146825,7 +148089,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3425), 23, + ACTIONS(1348), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -146849,62 +148113,136 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [38183] = 22, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [37925] = 25, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3744), 1, + ACTIONS(1366), 1, + anon_sym_LBRACE, + ACTIONS(3386), 1, + anon_sym_SQUOTE, + ACTIONS(3796), 1, anon_sym_LBRACK, - ACTIONS(3748), 1, + ACTIONS(3800), 1, anon_sym_QMARK, - ACTIONS(3750), 1, + ACTIONS(3802), 1, anon_sym_DOT, - ACTIONS(3862), 1, + ACTIONS(3976), 1, anon_sym_as, - ACTIONS(4150), 1, + ACTIONS(4186), 1, anon_sym_CARET, - ACTIONS(4152), 1, + ACTIONS(4188), 1, anon_sym_AMP, - ACTIONS(4154), 1, + ACTIONS(4190), 1, anon_sym_PIPE, - ACTIONS(4156), 1, + ACTIONS(4192), 1, anon_sym_AMP_AMP, - ACTIONS(4158), 1, + ACTIONS(4194), 1, anon_sym_PIPE_PIPE, - ACTIONS(4164), 1, + ACTIONS(4200), 1, anon_sym_EQ, - ACTIONS(4202), 1, + ACTIONS(4206), 1, anon_sym_DOT_DOT, - ACTIONS(4146), 2, + STATE(477), 1, + sym_block, + STATE(3747), 1, + sym_label, + ACTIONS(4182), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4160), 2, + ACTIONS(4196), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4168), 2, + ACTIONS(4204), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4204), 2, + ACTIONS(4208), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1627), 2, + STATE(1628), 2, sym_line_comment, sym_block_comment, - ACTIONS(3788), 3, - anon_sym_LPAREN, + ACTIONS(4184), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4202), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4198), 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, + [38020] = 25, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(412), 1, anon_sym_LBRACE, + ACTIONS(3386), 1, anon_sym_SQUOTE, - ACTIONS(4148), 3, + ACTIONS(3796), 1, + anon_sym_LBRACK, + ACTIONS(3800), 1, + anon_sym_QMARK, + ACTIONS(3802), 1, + anon_sym_DOT, + ACTIONS(3976), 1, + anon_sym_as, + ACTIONS(4186), 1, + anon_sym_CARET, + ACTIONS(4188), 1, + anon_sym_AMP, + ACTIONS(4190), 1, + anon_sym_PIPE, + ACTIONS(4192), 1, + anon_sym_AMP_AMP, + ACTIONS(4194), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4200), 1, + anon_sym_EQ, + ACTIONS(4206), 1, + anon_sym_DOT_DOT, + STATE(1825), 1, + sym_block, + STATE(3748), 1, + sym_label, + ACTIONS(4182), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4196), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4204), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4208), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1629), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4184), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4166), 4, + ACTIONS(4202), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4162), 10, + ACTIONS(4198), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -146915,15 +148253,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [38271] = 5, - ACTIONS(103), 1, + [38115] = 25, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(412), 1, + anon_sym_LBRACE, + ACTIONS(3386), 1, + anon_sym_SQUOTE, + ACTIONS(3796), 1, + anon_sym_LBRACK, + ACTIONS(3800), 1, + anon_sym_QMARK, + ACTIONS(3802), 1, + anon_sym_DOT, + ACTIONS(3976), 1, + anon_sym_as, + ACTIONS(4186), 1, + anon_sym_CARET, + ACTIONS(4188), 1, + anon_sym_AMP, + ACTIONS(4190), 1, + anon_sym_PIPE, + ACTIONS(4192), 1, + anon_sym_AMP_AMP, + ACTIONS(4194), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4200), 1, + anon_sym_EQ, + ACTIONS(4206), 1, + anon_sym_DOT_DOT, + STATE(1830), 1, + sym_block, + STATE(3748), 1, + sym_label, + ACTIONS(4182), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4196), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4204), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4208), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1630), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4184), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4202), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4198), 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, + [38210] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1628), 2, + ACTIONS(4058), 1, + anon_sym_COLON_COLON, + STATE(1631), 2, sym_line_comment, sym_block_comment, - ACTIONS(3686), 15, + ACTIONS(3380), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -146939,10 +148349,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3684), 24, + ACTIONS(3378), 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, @@ -146962,47 +148372,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_DASH_GT, + anon_sym_SQUOTE, anon_sym_as, - [38325] = 14, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [38267] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3744), 1, - anon_sym_LBRACK, - ACTIONS(3748), 1, - anon_sym_QMARK, - ACTIONS(3750), 1, - anon_sym_DOT, - ACTIONS(3862), 1, - anon_sym_as, - ACTIONS(4150), 1, - anon_sym_CARET, - ACTIONS(4152), 1, - anon_sym_AMP, - ACTIONS(4146), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4160), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - STATE(1629), 2, + ACTIONS(4224), 1, + anon_sym_COLON_COLON, + STATE(1632), 2, sym_line_comment, sym_block_comment, - ACTIONS(4148), 3, + ACTIONS(1472), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3860), 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(3858), 21, + ACTIONS(1470), 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, @@ -147022,85 +148424,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_SQUOTE, - [38397] = 18, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + anon_sym_as, + [38324] = 25, + ACTIONS(19), 1, + anon_sym_LBRACE, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, + ACTIONS(3386), 1, + anon_sym_SQUOTE, + ACTIONS(3796), 1, + anon_sym_LBRACK, + ACTIONS(3800), 1, + anon_sym_QMARK, + ACTIONS(3802), 1, + anon_sym_DOT, + ACTIONS(3976), 1, + anon_sym_as, + ACTIONS(4186), 1, + anon_sym_CARET, + ACTIONS(4188), 1, + anon_sym_AMP, + ACTIONS(4190), 1, + anon_sym_PIPE, + ACTIONS(4192), 1, + anon_sym_AMP_AMP, + ACTIONS(4194), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4200), 1, + anon_sym_EQ, ACTIONS(4206), 1, - sym_identifier, - ACTIONS(4208), 1, - anon_sym_LBRACE, - ACTIONS(4210), 1, - anon_sym_RBRACE, - ACTIONS(4212), 1, - anon_sym_STAR, - ACTIONS(4216), 1, - anon_sym_COMMA, - ACTIONS(4218), 1, - anon_sym_COLON_COLON, - ACTIONS(4222), 1, - sym_metavariable, - STATE(2516), 1, - sym_scoped_identifier, - STATE(3119), 1, - sym__use_clause, - STATE(3465), 1, - sym_generic_type_with_turbofish, - STATE(3688), 1, - sym_bracketed_type, - STATE(1630), 2, + anon_sym_DOT_DOT, + STATE(408), 1, + sym_block, + STATE(3582), 1, + sym_label, + ACTIONS(4182), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4196), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4204), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4208), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1633), 2, sym_line_comment, sym_block_comment, - ACTIONS(4220), 3, - sym_self, - sym_super, - sym_crate, - STATE(3015), 4, - sym_scoped_use_list, - sym_use_list, - sym_use_as_clause, - sym_use_wildcard, - ACTIONS(4214), 20, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_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, - [38477] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + ACTIONS(4184), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4202), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4198), 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, + [38419] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4224), 1, - anon_sym_COLON_COLON, - STATE(1631), 2, + STATE(1634), 2, sym_line_comment, sym_block_comment, - ACTIONS(1429), 15, + ACTIONS(3501), 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, @@ -147110,7 +148520,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1431), 23, + ACTIONS(3503), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -147133,34 +148543,34 @@ 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, - [38533] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [38474] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1632), 2, + STATE(1635), 2, sym_line_comment, sym_block_comment, - ACTIONS(3411), 17, + ACTIONS(3439), 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(3409), 22, + ACTIONS(3441), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -147175,37 +148585,102 @@ 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, - [38587] = 10, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [38529] = 25, + ACTIONS(19), 1, + anon_sym_LBRACE, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3744), 1, + ACTIONS(3386), 1, + anon_sym_SQUOTE, + ACTIONS(3796), 1, anon_sym_LBRACK, - ACTIONS(3748), 1, + ACTIONS(3800), 1, anon_sym_QMARK, - ACTIONS(3750), 1, + ACTIONS(3802), 1, anon_sym_DOT, - ACTIONS(3862), 1, + ACTIONS(3976), 1, anon_sym_as, - STATE(1633), 2, + ACTIONS(4186), 1, + anon_sym_CARET, + ACTIONS(4188), 1, + anon_sym_AMP, + ACTIONS(4190), 1, + anon_sym_PIPE, + ACTIONS(4192), 1, + anon_sym_AMP_AMP, + ACTIONS(4194), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4200), 1, + anon_sym_EQ, + ACTIONS(4206), 1, + anon_sym_DOT_DOT, + STATE(412), 1, + sym_block, + STATE(3582), 1, + sym_label, + ACTIONS(4182), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4196), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4204), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4208), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1636), 2, sym_line_comment, sym_block_comment, - ACTIONS(4148), 3, + ACTIONS(4184), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3860), 11, + ACTIONS(4202), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4198), 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, + [38624] = 6, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(3758), 1, + anon_sym_COLON_COLON, + STATE(1637), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3760), 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, @@ -147214,10 +148689,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(3858), 21, + ACTIONS(3756), 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, @@ -147237,15 +148715,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_SQUOTE, - [38651] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + anon_sym_as, + [38681] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1634), 2, + ACTIONS(4226), 1, + anon_sym_COLON_COLON, + STATE(1638), 2, sym_line_comment, sym_block_comment, - ACTIONS(3628), 15, + ACTIONS(3511), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -147261,7 +148742,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3626), 24, + ACTIONS(3509), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -147284,56 +148765,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_DASH_GT, anon_sym_as, - [38705] = 17, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [38737] = 21, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3744), 1, + ACTIONS(3796), 1, anon_sym_LBRACK, - ACTIONS(3748), 1, + ACTIONS(3800), 1, anon_sym_QMARK, - ACTIONS(3750), 1, + ACTIONS(3802), 1, anon_sym_DOT, - ACTIONS(3862), 1, + ACTIONS(3976), 1, anon_sym_as, - ACTIONS(4150), 1, + ACTIONS(4144), 1, + anon_sym_EQ, + ACTIONS(4186), 1, anon_sym_CARET, - ACTIONS(4152), 1, + ACTIONS(4188), 1, anon_sym_AMP, - ACTIONS(4154), 1, + ACTIONS(4190), 1, anon_sym_PIPE, - ACTIONS(3860), 2, - anon_sym_EQ, + ACTIONS(4192), 1, + anon_sym_AMP_AMP, + ACTIONS(4194), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4228), 1, anon_sym_DOT_DOT, - ACTIONS(4146), 2, + ACTIONS(4182), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4160), 2, + ACTIONS(4196), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4168), 2, + ACTIONS(4204), 2, anon_sym_GT, anon_sym_LT, - STATE(1635), 2, + ACTIONS(4230), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1639), 2, sym_line_comment, sym_block_comment, - ACTIONS(4148), 3, + ACTIONS(4184), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4166), 4, + ACTIONS(4202), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3858), 17, + ACTIONS(4142), 13, anon_sym_LPAREN, anon_sym_LBRACE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -147344,47 +148830,102 @@ 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, - [38783] = 13, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [38823] = 22, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3744), 1, + ACTIONS(3796), 1, anon_sym_LBRACK, - ACTIONS(3748), 1, + ACTIONS(3800), 1, anon_sym_QMARK, - ACTIONS(3750), 1, + ACTIONS(3802), 1, anon_sym_DOT, - ACTIONS(3862), 1, + ACTIONS(3976), 1, anon_sym_as, - ACTIONS(4152), 1, + ACTIONS(4186), 1, + anon_sym_CARET, + ACTIONS(4188), 1, anon_sym_AMP, - ACTIONS(4146), 2, + ACTIONS(4190), 1, + anon_sym_PIPE, + ACTIONS(4192), 1, + anon_sym_AMP_AMP, + ACTIONS(4194), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4200), 1, + anon_sym_EQ, + ACTIONS(4228), 1, + anon_sym_DOT_DOT, + ACTIONS(4182), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4160), 2, + ACTIONS(4196), 2, anon_sym_LT_LT, anon_sym_GT_GT, - STATE(1636), 2, + ACTIONS(4204), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4230), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1640), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3876), 3, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_SQUOTE, + ACTIONS(4184), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4202), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4198), 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, + [38911] = 5, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + STATE(1641), 2, sym_line_comment, sym_block_comment, - ACTIONS(4148), 3, + ACTIONS(3624), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3860), 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(3858), 21, + ACTIONS(3622), 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, @@ -147403,16 +148944,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, - [38853] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + anon_sym_COLON_COLON, + anon_sym_as, + [38965] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1637), 2, + STATE(1642), 2, sym_line_comment, sym_block_comment, - ACTIONS(1397), 15, + ACTIONS(3636), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -147428,7 +148970,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1395), 24, + ACTIONS(3634), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -147451,17 +148993,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, - anon_sym_else, - [38907] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [39019] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1638), 2, + STATE(1643), 2, sym_line_comment, sym_block_comment, - ACTIONS(1415), 15, + ACTIONS(3640), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -147477,7 +149019,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1413), 24, + ACTIONS(3638), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -147500,17 +149042,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_as, - anon_sym_else, - [38961] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [39073] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1639), 2, + ACTIONS(4232), 1, + anon_sym_DASH_GT, + STATE(1644), 2, sym_line_comment, sym_block_comment, - ACTIONS(1393), 15, + ACTIONS(3644), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -147526,7 +149070,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1391), 24, + ACTIONS(3642), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -147550,18 +149094,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - anon_sym_else, - [39015] = 6, - ACTIONS(103), 1, + [39129] = 24, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(1004), 1, + anon_sym_RBRACK, + ACTIONS(3796), 1, + anon_sym_LBRACK, + ACTIONS(3800), 1, + anon_sym_QMARK, + ACTIONS(3802), 1, + anon_sym_DOT, + ACTIONS(3976), 1, + anon_sym_as, + ACTIONS(4068), 1, + anon_sym_CARET, + ACTIONS(4070), 1, + anon_sym_AMP, + ACTIONS(4072), 1, + anon_sym_PIPE, + ACTIONS(4074), 1, + anon_sym_AMP_AMP, + ACTIONS(4076), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4126), 1, + anon_sym_EQ, + ACTIONS(4172), 1, + anon_sym_DOT_DOT, + ACTIONS(4234), 1, + anon_sym_COMMA, + STATE(3110), 1, + aux_sym_arguments_repeat1, + ACTIONS(4064), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4078), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4084), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4174), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1645), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4066), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4082), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4124), 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, + [39221] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, ACTIONS(4226), 1, - anon_sym_DASH_GT, - STATE(1640), 2, + anon_sym_COLON_COLON, + STATE(1646), 2, sym_line_comment, sym_block_comment, - ACTIONS(3632), 15, + ACTIONS(3477), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -147577,7 +149188,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3630), 23, + ACTIONS(3475), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -147601,15 +149212,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [39071] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [39277] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1641), 2, + STATE(1647), 2, sym_line_comment, sym_block_comment, - ACTIONS(1389), 15, + ACTIONS(1404), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -147625,7 +149236,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1387), 24, + ACTIONS(1402), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -147650,15 +149261,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ, anon_sym_as, anon_sym_else, - [39125] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [39331] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1642), 2, + STATE(1648), 2, sym_line_comment, sym_block_comment, - ACTIONS(1385), 15, + ACTIONS(1410), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -147674,7 +149285,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1383), 24, + ACTIONS(1408), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -147699,15 +149310,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ, anon_sym_as, anon_sym_else, - [39179] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [39385] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1643), 2, + STATE(1649), 2, sym_line_comment, sym_block_comment, - ACTIONS(3604), 15, + ACTIONS(1398), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -147723,7 +149334,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3602), 24, + ACTIONS(1396), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -147746,64 +149357,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_COLON_COLON, anon_sym_as, - [39233] = 22, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + anon_sym_else, + [39439] = 21, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3744), 1, + ACTIONS(3796), 1, anon_sym_LBRACK, - ACTIONS(3748), 1, + ACTIONS(3800), 1, anon_sym_QMARK, - ACTIONS(3750), 1, + ACTIONS(3802), 1, anon_sym_DOT, - ACTIONS(3862), 1, + ACTIONS(3976), 1, anon_sym_as, - ACTIONS(4040), 1, - anon_sym_AMP, - ACTIONS(4044), 1, + ACTIONS(4103), 1, + anon_sym_EQ, + ACTIONS(4186), 1, anon_sym_CARET, - ACTIONS(4046), 1, + ACTIONS(4188), 1, + anon_sym_AMP, + ACTIONS(4190), 1, anon_sym_PIPE, - ACTIONS(4052), 1, + ACTIONS(4192), 1, anon_sym_AMP_AMP, - ACTIONS(4056), 1, + ACTIONS(4194), 1, anon_sym_PIPE_PIPE, - ACTIONS(4070), 1, - anon_sym_EQ, - ACTIONS(4140), 1, + ACTIONS(4228), 1, anon_sym_DOT_DOT, - ACTIONS(4038), 2, + ACTIONS(4182), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4042), 2, + ACTIONS(4196), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4050), 2, + ACTIONS(4204), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4142), 2, + ACTIONS(4230), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1644), 2, + STATE(1650), 2, sym_line_comment, sym_block_comment, - ACTIONS(4036), 3, + ACTIONS(4184), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4228), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_COMMA, - ACTIONS(4048), 4, + ACTIONS(4202), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4068), 10, + ACTIONS(4101), 13, + anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -147814,17 +149423,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [39321] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + anon_sym_SQUOTE, + [39525] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4230), 1, - anon_sym_COLON_COLON, - STATE(1645), 2, + STATE(1651), 2, sym_line_comment, sym_block_comment, - ACTIONS(3427), 15, + ACTIONS(1360), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -147840,7 +149448,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3425), 23, + ACTIONS(1358), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -147864,17 +149472,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [39377] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + anon_sym_else, + [39579] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4232), 1, - anon_sym_COLON_COLON, - STATE(1646), 2, + STATE(1652), 2, sym_line_comment, sym_block_comment, - ACTIONS(3427), 15, + ACTIONS(1390), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -147890,7 +149497,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3425), 23, + ACTIONS(1388), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -147914,122 +149521,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [39433] = 24, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + anon_sym_else, + [39633] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(1001), 1, - anon_sym_RBRACK, - ACTIONS(3744), 1, - anon_sym_LBRACK, - ACTIONS(3748), 1, - anon_sym_QMARK, - ACTIONS(3750), 1, - anon_sym_DOT, - ACTIONS(3862), 1, - anon_sym_as, - ACTIONS(4040), 1, - anon_sym_AMP, - ACTIONS(4044), 1, - anon_sym_CARET, - ACTIONS(4046), 1, - anon_sym_PIPE, - ACTIONS(4052), 1, - anon_sym_AMP_AMP, - ACTIONS(4056), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4070), 1, - anon_sym_EQ, - ACTIONS(4140), 1, - anon_sym_DOT_DOT, - ACTIONS(4234), 1, - anon_sym_COMMA, - STATE(3038), 1, - aux_sym_arguments_repeat1, - ACTIONS(4038), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4042), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4050), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4142), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1647), 2, + ACTIONS(4236), 1, + anon_sym_COLON_COLON, + STATE(1653), 2, sym_line_comment, sym_block_comment, - ACTIONS(4036), 3, + ACTIONS(1472), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4048), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4068), 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, - [39525] = 18, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3744), 1, - anon_sym_LBRACK, - ACTIONS(3748), 1, - anon_sym_QMARK, - ACTIONS(3750), 1, - anon_sym_DOT, - ACTIONS(3862), 1, - anon_sym_as, - ACTIONS(4150), 1, anon_sym_CARET, - ACTIONS(4152), 1, anon_sym_AMP, - ACTIONS(4154), 1, anon_sym_PIPE, - ACTIONS(4156), 1, - anon_sym_AMP_AMP, - ACTIONS(3860), 2, - anon_sym_EQ, - anon_sym_DOT_DOT, - ACTIONS(4146), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4160), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4168), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - STATE(1648), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4148), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4166), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3858), 16, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1470), 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, @@ -148041,20 +149565,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, - [39605] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + anon_sym_as, + [39689] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4236), 1, - anon_sym_DASH_GT, - STATE(1649), 2, + ACTIONS(4226), 1, + anon_sym_COLON_COLON, + STATE(1654), 2, sym_line_comment, sym_block_comment, - ACTIONS(3638), 15, + ACTIONS(3529), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -148070,7 +149598,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3636), 23, + ACTIONS(3527), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -148094,56 +149622,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [39661] = 19, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [39745] = 22, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3744), 1, + ACTIONS(3796), 1, anon_sym_LBRACK, - ACTIONS(3748), 1, + ACTIONS(3800), 1, anon_sym_QMARK, - ACTIONS(3750), 1, + ACTIONS(3802), 1, anon_sym_DOT, - ACTIONS(3862), 1, + ACTIONS(3976), 1, anon_sym_as, - ACTIONS(4150), 1, + ACTIONS(4068), 1, anon_sym_CARET, - ACTIONS(4152), 1, + ACTIONS(4070), 1, anon_sym_AMP, - ACTIONS(4154), 1, + ACTIONS(4072), 1, anon_sym_PIPE, - ACTIONS(4156), 1, + ACTIONS(4074), 1, anon_sym_AMP_AMP, - ACTIONS(4158), 1, + ACTIONS(4076), 1, anon_sym_PIPE_PIPE, - ACTIONS(381), 2, + ACTIONS(4126), 1, anon_sym_EQ, + ACTIONS(4172), 1, anon_sym_DOT_DOT, - ACTIONS(4146), 2, + ACTIONS(4064), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4160), 2, + ACTIONS(4078), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4168), 2, + ACTIONS(4084), 2, anon_sym_GT, anon_sym_LT, - STATE(1650), 2, + ACTIONS(4174), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1655), 2, sym_line_comment, sym_block_comment, - ACTIONS(4148), 3, + ACTIONS(4066), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4166), 4, + ACTIONS(4238), 3, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_COMMA, + ACTIONS(4082), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(379), 15, - anon_sym_LPAREN, - anon_sym_LBRACE, + ACTIONS(4124), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -148154,128 +149688,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_SQUOTE, - [39743] = 21, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [39833] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(347), 1, - anon_sym_EQ, - ACTIONS(3744), 1, - anon_sym_LBRACK, - ACTIONS(3748), 1, - anon_sym_QMARK, - ACTIONS(3750), 1, - anon_sym_DOT, - ACTIONS(3862), 1, - anon_sym_as, - ACTIONS(4150), 1, - anon_sym_CARET, - ACTIONS(4152), 1, - anon_sym_AMP, - ACTIONS(4154), 1, - anon_sym_PIPE, - ACTIONS(4156), 1, - anon_sym_AMP_AMP, - ACTIONS(4158), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4202), 1, - anon_sym_DOT_DOT, - ACTIONS(4146), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4160), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4168), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4204), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1651), 2, + ACTIONS(4240), 1, + anon_sym_DASH_GT, + STATE(1656), 2, sym_line_comment, sym_block_comment, - ACTIONS(4148), 3, + ACTIONS(3650), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4166), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(341), 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, - [39829] = 21, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3744), 1, - anon_sym_LBRACK, - ACTIONS(3748), 1, - anon_sym_QMARK, - ACTIONS(3750), 1, - anon_sym_DOT, - ACTIONS(3862), 1, - anon_sym_as, - ACTIONS(4088), 1, - anon_sym_EQ, - ACTIONS(4150), 1, anon_sym_CARET, - ACTIONS(4152), 1, anon_sym_AMP, - ACTIONS(4154), 1, anon_sym_PIPE, - ACTIONS(4156), 1, - anon_sym_AMP_AMP, - ACTIONS(4158), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4202), 1, - anon_sym_DOT_DOT, - ACTIONS(4146), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4160), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4168), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4204), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1652), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4148), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4166), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4086), 13, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3648), 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, @@ -148286,61 +149731,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_SQUOTE, - [39915] = 21, - ACTIONS(103), 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, + [39889] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3744), 1, - anon_sym_LBRACK, - ACTIONS(3748), 1, - anon_sym_QMARK, - ACTIONS(3750), 1, - anon_sym_DOT, - ACTIONS(3862), 1, - anon_sym_as, - ACTIONS(4092), 1, - anon_sym_EQ, - ACTIONS(4150), 1, + ACTIONS(4242), 1, + anon_sym_DASH_GT, + STATE(1657), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3656), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4152), 1, anon_sym_AMP, - ACTIONS(4154), 1, anon_sym_PIPE, - ACTIONS(4156), 1, - anon_sym_AMP_AMP, - ACTIONS(4158), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4202), 1, - anon_sym_DOT_DOT, - ACTIONS(4146), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4160), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4168), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4204), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1653), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4148), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4166), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4090), 13, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3654), 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, @@ -148351,18 +149781,26 @@ 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, - [40001] = 6, - ACTIONS(103), 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, + [39945] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4238), 1, - anon_sym_DASH_GT, - STATE(1654), 2, + ACTIONS(4244), 1, + anon_sym_LPAREN, + STATE(1848), 1, + sym_arguments, + STATE(1658), 2, sym_line_comment, sym_block_comment, - ACTIONS(3608), 15, + ACTIONS(3726), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -148378,8 +149816,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3606), 23, - anon_sym_LPAREN, + ACTIONS(3722), 22, anon_sym_LBRACK, anon_sym_EQ_GT, anon_sym_QMARK, @@ -148402,22 +149839,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [40057] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [40003] = 11, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4240), 1, - anon_sym_DASH_GT, - STATE(1655), 2, + ACTIONS(3796), 1, + anon_sym_LBRACK, + ACTIONS(3800), 1, + anon_sym_QMARK, + ACTIONS(3802), 1, + anon_sym_DOT, + ACTIONS(3976), 1, + anon_sym_as, + ACTIONS(4182), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1659), 2, sym_line_comment, sym_block_comment, - ACTIONS(3644), 15, - anon_sym_PLUS, + ACTIONS(4184), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(3974), 9, anon_sym_CARET, anon_sym_AMP, anon_sym_PIPE, @@ -148426,15 +149871,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT, anon_sym_LT, + anon_sym_DOT_DOT, + ACTIONS(3972), 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, + [40069] = 21, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(3796), 1, + anon_sym_LBRACK, + ACTIONS(3800), 1, + anon_sym_QMARK, + ACTIONS(3802), 1, anon_sym_DOT, + ACTIONS(3976), 1, + anon_sym_as, + ACTIONS(4107), 1, + anon_sym_EQ, + ACTIONS(4186), 1, + anon_sym_CARET, + ACTIONS(4188), 1, + anon_sym_AMP, + ACTIONS(4190), 1, + anon_sym_PIPE, + ACTIONS(4192), 1, + anon_sym_AMP_AMP, + ACTIONS(4194), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4228), 1, anon_sym_DOT_DOT, - ACTIONS(3642), 23, + ACTIONS(4182), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4196), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4204), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4230), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1660), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4184), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4202), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4105), 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, @@ -148445,51 +149958,57 @@ 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, - [40113] = 11, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + anon_sym_SQUOTE, + [40155] = 19, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3744), 1, + ACTIONS(3796), 1, anon_sym_LBRACK, - ACTIONS(3748), 1, + ACTIONS(3800), 1, anon_sym_QMARK, - ACTIONS(3750), 1, + ACTIONS(3802), 1, anon_sym_DOT, - ACTIONS(3862), 1, + ACTIONS(3976), 1, anon_sym_as, - ACTIONS(4146), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1656), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4148), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3860), 9, + ACTIONS(4186), 1, anon_sym_CARET, + ACTIONS(4188), 1, anon_sym_AMP, + ACTIONS(4190), 1, anon_sym_PIPE, + ACTIONS(4192), 1, + anon_sym_AMP_AMP, + ACTIONS(4194), 1, + anon_sym_PIPE_PIPE, + ACTIONS(386), 2, + anon_sym_EQ, + anon_sym_DOT_DOT, + ACTIONS(4182), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4196), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4204), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT_DOT, - ACTIONS(3858), 21, + STATE(1661), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4184), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4202), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(384), 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, @@ -148500,71 +150019,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_SQUOTE, - [40179] = 24, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [40237] = 21, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3744), 1, + ACTIONS(352), 1, + anon_sym_EQ, + ACTIONS(3796), 1, anon_sym_LBRACK, - ACTIONS(3748), 1, + ACTIONS(3800), 1, anon_sym_QMARK, - ACTIONS(3750), 1, + ACTIONS(3802), 1, anon_sym_DOT, - ACTIONS(3862), 1, + ACTIONS(3976), 1, anon_sym_as, - ACTIONS(4040), 1, - anon_sym_AMP, - ACTIONS(4044), 1, + ACTIONS(4186), 1, anon_sym_CARET, - ACTIONS(4046), 1, + ACTIONS(4188), 1, + anon_sym_AMP, + ACTIONS(4190), 1, anon_sym_PIPE, - ACTIONS(4052), 1, + ACTIONS(4192), 1, anon_sym_AMP_AMP, - ACTIONS(4056), 1, + ACTIONS(4194), 1, anon_sym_PIPE_PIPE, - ACTIONS(4070), 1, - anon_sym_EQ, - ACTIONS(4140), 1, + ACTIONS(4228), 1, anon_sym_DOT_DOT, - ACTIONS(4242), 1, - anon_sym_RPAREN, - ACTIONS(4244), 1, - anon_sym_COMMA, - STATE(2873), 1, - aux_sym_arguments_repeat1, - ACTIONS(4038), 2, + ACTIONS(4182), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4042), 2, + ACTIONS(4196), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4050), 2, + ACTIONS(4204), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4142), 2, + ACTIONS(4230), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1657), 2, + STATE(1662), 2, sym_line_comment, sym_block_comment, - ACTIONS(4036), 3, + ACTIONS(4184), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4048), 4, + ACTIONS(4202), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4068), 10, + ACTIONS(346), 13, + anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -148575,64 +150086,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40271] = 24, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + anon_sym_SQUOTE, + [40323] = 21, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(943), 1, - anon_sym_RBRACK, - ACTIONS(3744), 1, + ACTIONS(3796), 1, anon_sym_LBRACK, - ACTIONS(3748), 1, + ACTIONS(3800), 1, anon_sym_QMARK, - ACTIONS(3750), 1, + ACTIONS(3802), 1, anon_sym_DOT, - ACTIONS(3862), 1, + ACTIONS(3976), 1, anon_sym_as, - ACTIONS(4040), 1, - anon_sym_AMP, - ACTIONS(4044), 1, + ACTIONS(4130), 1, + anon_sym_EQ, + ACTIONS(4186), 1, anon_sym_CARET, - ACTIONS(4046), 1, + ACTIONS(4188), 1, + anon_sym_AMP, + ACTIONS(4190), 1, anon_sym_PIPE, - ACTIONS(4052), 1, + ACTIONS(4192), 1, anon_sym_AMP_AMP, - ACTIONS(4056), 1, + ACTIONS(4194), 1, anon_sym_PIPE_PIPE, - ACTIONS(4070), 1, - anon_sym_EQ, - ACTIONS(4140), 1, + ACTIONS(4228), 1, anon_sym_DOT_DOT, - ACTIONS(4246), 1, - anon_sym_COMMA, - STATE(2880), 1, - aux_sym_arguments_repeat1, - ACTIONS(4038), 2, + ACTIONS(4182), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4042), 2, + ACTIONS(4196), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4050), 2, + ACTIONS(4204), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4142), 2, + ACTIONS(4230), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1658), 2, + STATE(1663), 2, sym_line_comment, sym_block_comment, - ACTIONS(4036), 3, + ACTIONS(4184), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4048), 4, + ACTIONS(4202), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4068), 10, + ACTIONS(4128), 13, + anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -148643,40 +150151,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40363] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + anon_sym_SQUOTE, + [40409] = 21, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4248), 1, - anon_sym_LPAREN, - STATE(1891), 1, - sym_arguments, - STATE(1659), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3708), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(3796), 1, + anon_sym_LBRACK, + ACTIONS(3800), 1, + anon_sym_QMARK, + ACTIONS(3802), 1, + anon_sym_DOT, + ACTIONS(3976), 1, + anon_sym_as, + ACTIONS(4095), 1, + anon_sym_EQ, + ACTIONS(4186), 1, anon_sym_CARET, + ACTIONS(4188), 1, anon_sym_AMP, + ACTIONS(4190), 1, anon_sym_PIPE, + ACTIONS(4192), 1, + anon_sym_AMP_AMP, + ACTIONS(4194), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4228), 1, + anon_sym_DOT_DOT, + ACTIONS(4182), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4196), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4204), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3704), 22, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4230), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1664), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4184), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4202), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4093), 13, + anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -148687,71 +150216,65 @@ 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, - [40421] = 24, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + anon_sym_SQUOTE, + [40495] = 24, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(949), 1, + ACTIONS(1034), 1, anon_sym_RPAREN, - ACTIONS(3744), 1, + ACTIONS(3796), 1, anon_sym_LBRACK, - ACTIONS(3748), 1, + ACTIONS(3800), 1, anon_sym_QMARK, - ACTIONS(3750), 1, + ACTIONS(3802), 1, anon_sym_DOT, - ACTIONS(3862), 1, + ACTIONS(3976), 1, anon_sym_as, - ACTIONS(4040), 1, - anon_sym_AMP, - ACTIONS(4044), 1, + ACTIONS(4068), 1, anon_sym_CARET, - ACTIONS(4046), 1, + ACTIONS(4070), 1, + anon_sym_AMP, + ACTIONS(4072), 1, anon_sym_PIPE, - ACTIONS(4052), 1, + ACTIONS(4074), 1, anon_sym_AMP_AMP, - ACTIONS(4056), 1, + ACTIONS(4076), 1, anon_sym_PIPE_PIPE, - ACTIONS(4070), 1, + ACTIONS(4126), 1, anon_sym_EQ, - ACTIONS(4140), 1, + ACTIONS(4172), 1, anon_sym_DOT_DOT, - ACTIONS(4250), 1, + ACTIONS(4246), 1, anon_sym_COMMA, - STATE(2921), 1, + STATE(3034), 1, aux_sym_arguments_repeat1, - ACTIONS(4038), 2, + ACTIONS(4064), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4042), 2, + ACTIONS(4078), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4050), 2, + ACTIONS(4084), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4142), 2, + ACTIONS(4174), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1660), 2, + STATE(1665), 2, sym_line_comment, sym_block_comment, - ACTIONS(4036), 3, + ACTIONS(4066), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4048), 4, + ACTIONS(4082), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4068), 10, + ACTIONS(4124), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -148762,58 +150285,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40513] = 21, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [40587] = 19, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3744), 1, + ACTIONS(3796), 1, anon_sym_LBRACK, - ACTIONS(3748), 1, + ACTIONS(3800), 1, anon_sym_QMARK, - ACTIONS(3750), 1, + ACTIONS(3802), 1, anon_sym_DOT, - ACTIONS(3862), 1, + ACTIONS(3976), 1, anon_sym_as, - ACTIONS(4058), 1, - anon_sym_EQ, - ACTIONS(4150), 1, + ACTIONS(4186), 1, anon_sym_CARET, - ACTIONS(4152), 1, + ACTIONS(4188), 1, anon_sym_AMP, - ACTIONS(4154), 1, + ACTIONS(4190), 1, anon_sym_PIPE, - ACTIONS(4156), 1, + ACTIONS(4192), 1, anon_sym_AMP_AMP, - ACTIONS(4158), 1, + ACTIONS(4194), 1, anon_sym_PIPE_PIPE, - ACTIONS(4202), 1, + ACTIONS(4080), 2, + anon_sym_EQ, anon_sym_DOT_DOT, - ACTIONS(4146), 2, + ACTIONS(4182), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4160), 2, + ACTIONS(4196), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4168), 2, + ACTIONS(4204), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4204), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1661), 2, + STATE(1666), 2, sym_line_comment, sym_block_comment, - ACTIONS(4148), 3, + ACTIONS(4184), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4166), 4, + ACTIONS(4202), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4054), 13, + ACTIONS(4062), 15, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_PLUS_EQ, @@ -148826,61 +150345,67 @@ 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, - [40599] = 21, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [40669] = 24, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3744), 1, + ACTIONS(3796), 1, anon_sym_LBRACK, - ACTIONS(3748), 1, + ACTIONS(3800), 1, anon_sym_QMARK, - ACTIONS(3750), 1, + ACTIONS(3802), 1, anon_sym_DOT, - ACTIONS(3862), 1, + ACTIONS(3976), 1, anon_sym_as, - ACTIONS(4066), 1, - anon_sym_EQ, - ACTIONS(4150), 1, + ACTIONS(4068), 1, anon_sym_CARET, - ACTIONS(4152), 1, + ACTIONS(4070), 1, anon_sym_AMP, - ACTIONS(4154), 1, + ACTIONS(4072), 1, anon_sym_PIPE, - ACTIONS(4156), 1, + ACTIONS(4074), 1, anon_sym_AMP_AMP, - ACTIONS(4158), 1, + ACTIONS(4076), 1, anon_sym_PIPE_PIPE, - ACTIONS(4202), 1, + ACTIONS(4126), 1, + anon_sym_EQ, + ACTIONS(4172), 1, anon_sym_DOT_DOT, - ACTIONS(4146), 2, + ACTIONS(4248), 1, + anon_sym_RPAREN, + ACTIONS(4250), 1, + anon_sym_COMMA, + STATE(2894), 1, + aux_sym_arguments_repeat1, + ACTIONS(4064), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4160), 2, + ACTIONS(4078), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4168), 2, + ACTIONS(4084), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4204), 2, + ACTIONS(4174), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1662), 2, + STATE(1667), 2, sym_line_comment, sym_block_comment, - ACTIONS(4148), 3, + ACTIONS(4066), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4166), 4, + ACTIONS(4082), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4064), 13, - anon_sym_LPAREN, - anon_sym_LBRACE, + ACTIONS(4124), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -148891,38 +150416,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_SQUOTE, - [40685] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [40761] = 15, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4252), 1, - anon_sym_DASH_GT, - STATE(1663), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3614), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(3796), 1, + anon_sym_LBRACK, + ACTIONS(3800), 1, + anon_sym_QMARK, + ACTIONS(3802), 1, + anon_sym_DOT, + ACTIONS(3976), 1, + anon_sym_as, + ACTIONS(4186), 1, anon_sym_CARET, + ACTIONS(4188), 1, anon_sym_AMP, + ACTIONS(4190), 1, anon_sym_PIPE, + ACTIONS(4182), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4196), 2, anon_sym_LT_LT, anon_sym_GT_GT, + STATE(1668), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4184), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3974), 4, anon_sym_EQ, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3612), 23, + ACTIONS(3972), 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, @@ -148941,47 +150474,168 @@ 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, - [40741] = 15, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + anon_sym_SQUOTE, + [40835] = 24, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3744), 1, + ACTIONS(932), 1, + anon_sym_RBRACK, + ACTIONS(3796), 1, anon_sym_LBRACK, - ACTIONS(3748), 1, + ACTIONS(3800), 1, anon_sym_QMARK, - ACTIONS(3750), 1, + ACTIONS(3802), 1, anon_sym_DOT, - ACTIONS(3862), 1, + ACTIONS(3976), 1, anon_sym_as, - ACTIONS(4150), 1, + ACTIONS(4068), 1, anon_sym_CARET, - ACTIONS(4152), 1, + ACTIONS(4070), 1, anon_sym_AMP, - ACTIONS(4154), 1, + ACTIONS(4072), 1, anon_sym_PIPE, - ACTIONS(4146), 2, + ACTIONS(4074), 1, + anon_sym_AMP_AMP, + ACTIONS(4076), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4126), 1, + anon_sym_EQ, + ACTIONS(4172), 1, + anon_sym_DOT_DOT, + ACTIONS(4252), 1, + anon_sym_COMMA, + STATE(2902), 1, + aux_sym_arguments_repeat1, + ACTIONS(4064), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4160), 2, + ACTIONS(4078), 2, anon_sym_LT_LT, anon_sym_GT_GT, - STATE(1664), 2, + ACTIONS(4084), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4174), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1669), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4066), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4082), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4124), 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, + [40927] = 18, + ACTIONS(29), 1, + anon_sym_LT, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(4254), 1, + sym_identifier, + ACTIONS(4256), 1, + anon_sym_LBRACE, + ACTIONS(4258), 1, + anon_sym_RBRACE, + ACTIONS(4260), 1, + anon_sym_STAR, + ACTIONS(4264), 1, + anon_sym_COMMA, + ACTIONS(4266), 1, + anon_sym_COLON_COLON, + ACTIONS(4270), 1, + sym_metavariable, + STATE(2479), 1, + sym_scoped_identifier, + STATE(2989), 1, + sym__use_clause, + STATE(3604), 1, + sym_generic_type_with_turbofish, + STATE(3752), 1, + sym_bracketed_type, + STATE(1670), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4268), 3, + sym_self, + sym_super, + sym_crate, + STATE(2981), 4, + sym_scoped_use_list, + sym_use_list, + sym_use_as_clause, + sym_use_wildcard, + ACTIONS(4262), 20, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_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, + [41007] = 5, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + STATE(1671), 2, sym_line_comment, sym_block_comment, - ACTIONS(4148), 3, + ACTIONS(3499), 17, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3860), 4, + 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(3858), 21, + ACTIONS(3497), 22, 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, @@ -148992,24 +150646,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_SQUOTE, - [40815] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + anon_sym_as, + anon_sym_LT2, + [41061] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1665), 2, + STATE(1672), 2, sym_line_comment, sym_block_comment, - ACTIONS(3554), 15, + ACTIONS(3664), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -149025,7 +150678,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3552), 24, + ACTIONS(3662), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -149048,66 +150701,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_COLON_COLON, + anon_sym_DASH_GT, anon_sym_as, - [40869] = 24, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [41115] = 24, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(1025), 1, + ACTIONS(934), 1, anon_sym_RPAREN, - ACTIONS(3744), 1, + ACTIONS(3796), 1, anon_sym_LBRACK, - ACTIONS(3748), 1, + ACTIONS(3800), 1, anon_sym_QMARK, - ACTIONS(3750), 1, + ACTIONS(3802), 1, anon_sym_DOT, - ACTIONS(3862), 1, + ACTIONS(3976), 1, anon_sym_as, - ACTIONS(4040), 1, - anon_sym_AMP, - ACTIONS(4044), 1, + ACTIONS(4068), 1, anon_sym_CARET, - ACTIONS(4046), 1, + ACTIONS(4070), 1, + anon_sym_AMP, + ACTIONS(4072), 1, anon_sym_PIPE, - ACTIONS(4052), 1, + ACTIONS(4074), 1, anon_sym_AMP_AMP, - ACTIONS(4056), 1, + ACTIONS(4076), 1, anon_sym_PIPE_PIPE, - ACTIONS(4070), 1, + ACTIONS(4126), 1, anon_sym_EQ, - ACTIONS(4140), 1, + ACTIONS(4172), 1, anon_sym_DOT_DOT, - ACTIONS(4254), 1, + ACTIONS(4272), 1, anon_sym_COMMA, - STATE(3037), 1, + STATE(2942), 1, aux_sym_arguments_repeat1, - ACTIONS(4038), 2, + ACTIONS(4064), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4042), 2, + ACTIONS(4078), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4050), 2, + ACTIONS(4084), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4142), 2, + ACTIONS(4174), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1666), 2, + STATE(1673), 2, sym_line_comment, sym_block_comment, - ACTIONS(4036), 3, + ACTIONS(4066), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4048), 4, + ACTIONS(4082), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4068), 10, + ACTIONS(4124), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -149118,105 +150771,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40961] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [41207] = 22, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1667), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3558), 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(3556), 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_COLON_COLON, - anon_sym_as, - [41015] = 19, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3744), 1, + ACTIONS(3796), 1, anon_sym_LBRACK, - ACTIONS(3748), 1, + ACTIONS(3800), 1, anon_sym_QMARK, - ACTIONS(3750), 1, + ACTIONS(3802), 1, anon_sym_DOT, - ACTIONS(3862), 1, + ACTIONS(3976), 1, anon_sym_as, - ACTIONS(4150), 1, + ACTIONS(4186), 1, anon_sym_CARET, - ACTIONS(4152), 1, + ACTIONS(4188), 1, anon_sym_AMP, - ACTIONS(4154), 1, + ACTIONS(4190), 1, anon_sym_PIPE, - ACTIONS(4156), 1, + ACTIONS(4192), 1, anon_sym_AMP_AMP, - ACTIONS(4158), 1, + ACTIONS(4194), 1, anon_sym_PIPE_PIPE, - ACTIONS(4074), 2, + ACTIONS(4200), 1, anon_sym_EQ, + ACTIONS(4228), 1, anon_sym_DOT_DOT, - ACTIONS(4146), 2, + ACTIONS(4182), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4160), 2, + ACTIONS(4196), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4168), 2, + ACTIONS(4204), 2, anon_sym_GT, anon_sym_LT, - STATE(1668), 2, + ACTIONS(4230), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1674), 2, sym_line_comment, sym_block_comment, - ACTIONS(4148), 3, + ACTIONS(3826), 3, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_SQUOTE, + ACTIONS(4184), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4166), 4, + ACTIONS(4202), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4072), 15, + ACTIONS(4198), 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, + [41295] = 6, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(4274), 1, + anon_sym_DASH_GT, + STATE(1675), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3668), 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(3666), 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, @@ -149227,20 +150880,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, - [41097] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + anon_sym_as, + [41351] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4256), 1, + ACTIONS(4276), 1, anon_sym_DASH_GT, - STATE(1669), 2, + STATE(1676), 2, sym_line_comment, sym_block_comment, - ACTIONS(3620), 15, + ACTIONS(3674), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -149256,7 +150913,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3618), 23, + ACTIONS(3672), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -149280,15 +150937,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [41153] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [41407] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1670), 2, + ACTIONS(4278), 1, + anon_sym_DASH_GT, + STATE(1677), 2, sym_line_comment, sym_block_comment, - ACTIONS(3654), 15, + ACTIONS(3680), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -149304,7 +150963,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3652), 24, + ACTIONS(3678), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -149327,19 +150986,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, - [41207] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [41463] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4258), 1, + ACTIONS(4280), 1, anon_sym_COLON_COLON, - STATE(1671), 2, + STATE(1678), 2, sym_line_comment, sym_block_comment, - ACTIONS(1429), 15, + ACTIONS(3507), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -149355,7 +151013,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1431), 23, + ACTIONS(3505), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -149379,62 +151037,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [41263] = 22, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [41519] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3744), 1, - anon_sym_LBRACK, - ACTIONS(3748), 1, - anon_sym_QMARK, - ACTIONS(3750), 1, - anon_sym_DOT, - ACTIONS(3862), 1, - anon_sym_as, - ACTIONS(4150), 1, + ACTIONS(4226), 1, + anon_sym_COLON_COLON, + STATE(1679), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3507), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4152), 1, anon_sym_AMP, - ACTIONS(4154), 1, anon_sym_PIPE, - ACTIONS(4156), 1, - anon_sym_AMP_AMP, - ACTIONS(4158), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4164), 1, - anon_sym_EQ, - ACTIONS(4202), 1, - anon_sym_DOT_DOT, - ACTIONS(4146), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4160), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4168), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4204), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1672), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4000), 3, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3505), 23, anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_SQUOTE, - ACTIONS(4148), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4166), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4162), 10, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -149445,17 +151080,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41351] = 6, - ACTIONS(103), 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, + [41575] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4232), 1, - anon_sym_COLON_COLON, - STATE(1673), 2, + STATE(1680), 2, sym_line_comment, sym_block_comment, - ACTIONS(3431), 15, + ACTIONS(3690), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -149471,7 +151111,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3429), 23, + ACTIONS(3688), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -149494,18 +151134,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, - [41407] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [41629] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3936), 1, - anon_sym_COLON_COLON, - STATE(1674), 2, + STATE(1681), 2, sym_line_comment, sym_block_comment, - ACTIONS(3342), 15, + ACTIONS(3590), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -149521,7 +151160,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3340), 23, + ACTIONS(3588), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -149544,111 +151183,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_COLON_COLON, anon_sym_as, - [41463] = 22, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [41683] = 18, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3744), 1, + ACTIONS(3796), 1, anon_sym_LBRACK, - ACTIONS(3748), 1, + ACTIONS(3800), 1, anon_sym_QMARK, - ACTIONS(3750), 1, + ACTIONS(3802), 1, anon_sym_DOT, - ACTIONS(3862), 1, + ACTIONS(3976), 1, anon_sym_as, - ACTIONS(4040), 1, - anon_sym_AMP, - ACTIONS(4044), 1, + ACTIONS(4186), 1, anon_sym_CARET, - ACTIONS(4046), 1, + ACTIONS(4188), 1, + anon_sym_AMP, + ACTIONS(4190), 1, anon_sym_PIPE, - ACTIONS(4052), 1, + ACTIONS(4192), 1, anon_sym_AMP_AMP, - ACTIONS(4056), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4070), 1, + ACTIONS(3974), 2, anon_sym_EQ, - ACTIONS(4140), 1, anon_sym_DOT_DOT, - ACTIONS(4038), 2, + ACTIONS(4182), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4042), 2, + ACTIONS(4196), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4050), 2, + ACTIONS(4204), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4142), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1675), 2, + STATE(1682), 2, sym_line_comment, sym_block_comment, - ACTIONS(4036), 3, + ACTIONS(4184), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4260), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_COMMA, - ACTIONS(4048), 4, + ACTIONS(4202), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4068), 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, - [41551] = 12, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3744), 1, - anon_sym_LBRACK, - ACTIONS(3748), 1, - anon_sym_QMARK, - ACTIONS(3750), 1, - anon_sym_DOT, - ACTIONS(3862), 1, - anon_sym_as, - ACTIONS(4146), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4160), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - STATE(1676), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4148), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3860), 7, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT_DOT, - ACTIONS(3858), 21, + ACTIONS(3972), 16, anon_sym_LPAREN, anon_sym_LBRACE, - anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -149660,24 +151244,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_SQUOTE, - [41619] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [41763] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4262), 1, - anon_sym_DASH_GT, - STATE(1677), 2, + ACTIONS(3980), 1, + anon_sym_COLON_COLON, + STATE(1683), 2, sym_line_comment, sym_block_comment, - ACTIONS(3658), 15, + ACTIONS(3380), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -149693,7 +151273,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3656), 23, + ACTIONS(3378), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -149717,64 +151297,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [41675] = 24, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [41819] = 24, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3744), 1, + ACTIONS(3796), 1, anon_sym_LBRACK, - ACTIONS(3748), 1, + ACTIONS(3800), 1, anon_sym_QMARK, - ACTIONS(3750), 1, + ACTIONS(3802), 1, anon_sym_DOT, - ACTIONS(3862), 1, + ACTIONS(3976), 1, anon_sym_as, - ACTIONS(4040), 1, - anon_sym_AMP, - ACTIONS(4044), 1, + ACTIONS(4068), 1, anon_sym_CARET, - ACTIONS(4046), 1, + ACTIONS(4070), 1, + anon_sym_AMP, + ACTIONS(4072), 1, anon_sym_PIPE, - ACTIONS(4052), 1, + ACTIONS(4074), 1, anon_sym_AMP_AMP, - ACTIONS(4056), 1, + ACTIONS(4076), 1, anon_sym_PIPE_PIPE, - ACTIONS(4070), 1, + ACTIONS(4126), 1, anon_sym_EQ, - ACTIONS(4140), 1, + ACTIONS(4172), 1, anon_sym_DOT_DOT, - ACTIONS(4264), 1, + ACTIONS(4282), 1, anon_sym_RPAREN, - ACTIONS(4266), 1, + ACTIONS(4284), 1, anon_sym_COMMA, - STATE(2972), 1, + STATE(3081), 1, aux_sym_arguments_repeat1, - ACTIONS(4038), 2, + ACTIONS(4064), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4042), 2, + ACTIONS(4078), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4050), 2, + ACTIONS(4084), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4142), 2, + ACTIONS(4174), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1678), 2, + STATE(1684), 2, sym_line_comment, sym_block_comment, - ACTIONS(4036), 3, + ACTIONS(4066), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4048), 4, + ACTIONS(4082), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4068), 10, + ACTIONS(4124), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -149785,17 +151365,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41767] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [41911] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4232), 1, - anon_sym_COLON_COLON, - STATE(1679), 2, + ACTIONS(4286), 1, + anon_sym_DASH_GT, + STATE(1685), 2, sym_line_comment, sym_block_comment, - ACTIONS(3451), 15, + ACTIONS(3694), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -149811,7 +151391,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3449), 23, + ACTIONS(3692), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -149835,22 +151415,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [41823] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [41967] = 10, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4232), 1, - anon_sym_COLON_COLON, - STATE(1680), 2, + ACTIONS(3796), 1, + anon_sym_LBRACK, + ACTIONS(3800), 1, + anon_sym_QMARK, + ACTIONS(3802), 1, + anon_sym_DOT, + ACTIONS(3976), 1, + anon_sym_as, + STATE(1686), 2, sym_line_comment, sym_block_comment, - ACTIONS(3443), 15, - anon_sym_PLUS, + ACTIONS(4184), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(3974), 11, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_CARET, anon_sym_AMP, anon_sym_PIPE, @@ -149859,13 +151446,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(3441), 23, + ACTIONS(3972), 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, @@ -149884,36 +151468,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_as, - [41879] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + anon_sym_SQUOTE, + [42031] = 13, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1681), 2, + ACTIONS(3796), 1, + anon_sym_LBRACK, + ACTIONS(3800), 1, + anon_sym_QMARK, + ACTIONS(3802), 1, + anon_sym_DOT, + ACTIONS(3976), 1, + anon_sym_as, + ACTIONS(4188), 1, + anon_sym_AMP, + ACTIONS(4182), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4196), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + STATE(1687), 2, sym_line_comment, sym_block_comment, - ACTIONS(3668), 15, - anon_sym_PLUS, + ACTIONS(4184), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(3974), 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(3666), 24, + ACTIONS(3972), 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, @@ -149932,37 +151525,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_DASH_GT, - anon_sym_as, - [41933] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + anon_sym_SQUOTE, + [42101] = 12, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1682), 2, + ACTIONS(3796), 1, + anon_sym_LBRACK, + ACTIONS(3800), 1, + anon_sym_QMARK, + ACTIONS(3802), 1, + anon_sym_DOT, + ACTIONS(3976), 1, + anon_sym_as, + ACTIONS(4182), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4196), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + STATE(1688), 2, sym_line_comment, sym_block_comment, - ACTIONS(3588), 15, - anon_sym_PLUS, + ACTIONS(4184), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(3974), 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(3586), 24, + ACTIONS(3972), 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, @@ -149981,17 +151581,84 @@ 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, - [41987] = 5, - ACTIONS(103), 1, + anon_sym_SQUOTE, + [42169] = 22, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(3796), 1, + anon_sym_LBRACK, + ACTIONS(3800), 1, + anon_sym_QMARK, + ACTIONS(3802), 1, + anon_sym_DOT, + ACTIONS(3976), 1, + anon_sym_as, + ACTIONS(4068), 1, + anon_sym_CARET, + ACTIONS(4070), 1, + anon_sym_AMP, + ACTIONS(4072), 1, + anon_sym_PIPE, + ACTIONS(4074), 1, + anon_sym_AMP_AMP, + ACTIONS(4076), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4126), 1, + anon_sym_EQ, + ACTIONS(4172), 1, + anon_sym_DOT_DOT, + ACTIONS(4064), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4078), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4084), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4174), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1689), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4066), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4288), 3, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_COMMA, + ACTIONS(4082), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4124), 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, + [42257] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1683), 2, + ACTIONS(4290), 1, + anon_sym_COLON_COLON, + STATE(1690), 2, sym_line_comment, sym_block_comment, - ACTIONS(3600), 15, + ACTIONS(1472), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -150007,7 +151674,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3598), 24, + ACTIONS(1470), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -150030,62 +151697,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_COLON_COLON, anon_sym_as, - [42041] = 21, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [42313] = 14, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3744), 1, + ACTIONS(3796), 1, anon_sym_LBRACK, - ACTIONS(3748), 1, + ACTIONS(3800), 1, anon_sym_QMARK, - ACTIONS(3750), 1, + ACTIONS(3802), 1, anon_sym_DOT, - ACTIONS(3862), 1, + ACTIONS(3976), 1, anon_sym_as, - ACTIONS(4096), 1, - anon_sym_EQ, - ACTIONS(4150), 1, + ACTIONS(4186), 1, anon_sym_CARET, - ACTIONS(4152), 1, + ACTIONS(4188), 1, anon_sym_AMP, - ACTIONS(4154), 1, - anon_sym_PIPE, - ACTIONS(4156), 1, - anon_sym_AMP_AMP, - ACTIONS(4158), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4202), 1, - anon_sym_DOT_DOT, - ACTIONS(4146), 2, + ACTIONS(4182), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4160), 2, + ACTIONS(4196), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4168), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4204), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1684), 2, + STATE(1691), 2, sym_line_comment, sym_block_comment, - ACTIONS(4148), 3, + ACTIONS(4184), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4166), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4094), 13, + ACTIONS(3974), 5, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT_DOT, + ACTIONS(3972), 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, @@ -150096,16 +151749,22 @@ 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, - [42127] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [42385] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1685), 2, + STATE(1692), 2, sym_line_comment, sym_block_comment, - ACTIONS(3678), 15, + ACTIONS(3712), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -150121,7 +151780,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3676), 24, + ACTIONS(3710), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -150146,62 +151805,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ, anon_sym_DASH_GT, anon_sym_as, - [42181] = 22, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [42439] = 22, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3744), 1, + ACTIONS(3796), 1, anon_sym_LBRACK, - ACTIONS(3748), 1, + ACTIONS(3800), 1, anon_sym_QMARK, - ACTIONS(3750), 1, + ACTIONS(3802), 1, anon_sym_DOT, - ACTIONS(3862), 1, + ACTIONS(3976), 1, anon_sym_as, - ACTIONS(4150), 1, + ACTIONS(4186), 1, anon_sym_CARET, - ACTIONS(4152), 1, + ACTIONS(4188), 1, anon_sym_AMP, - ACTIONS(4154), 1, + ACTIONS(4190), 1, anon_sym_PIPE, - ACTIONS(4156), 1, + ACTIONS(4192), 1, anon_sym_AMP_AMP, - ACTIONS(4158), 1, + ACTIONS(4194), 1, anon_sym_PIPE_PIPE, - ACTIONS(4164), 1, + ACTIONS(4200), 1, anon_sym_EQ, - ACTIONS(4202), 1, + ACTIONS(4228), 1, anon_sym_DOT_DOT, - ACTIONS(4146), 2, + ACTIONS(4182), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4160), 2, + ACTIONS(4196), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4168), 2, + ACTIONS(4204), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4204), 2, + ACTIONS(4230), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1686), 2, + STATE(1693), 2, sym_line_comment, sym_block_comment, - ACTIONS(3940), 3, + ACTIONS(3960), 3, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_SQUOTE, - ACTIONS(4148), 3, + ACTIONS(4184), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4166), 4, + ACTIONS(4202), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4162), 10, + ACTIONS(4198), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -150212,95 +151871,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42269] = 17, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [42527] = 17, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4268), 1, + ACTIONS(3796), 1, anon_sym_LBRACK, - ACTIONS(4274), 1, + ACTIONS(3800), 1, anon_sym_QMARK, - ACTIONS(4276), 1, + ACTIONS(3802), 1, + anon_sym_DOT, + ACTIONS(3976), 1, + anon_sym_as, + ACTIONS(4186), 1, anon_sym_CARET, - ACTIONS(4278), 1, + ACTIONS(4188), 1, anon_sym_AMP, - ACTIONS(4280), 1, + ACTIONS(4190), 1, anon_sym_PIPE, - ACTIONS(4288), 1, - anon_sym_DOT, - ACTIONS(4290), 1, - anon_sym_as, - ACTIONS(3860), 2, + ACTIONS(3974), 2, anon_sym_EQ, anon_sym_DOT_DOT, - ACTIONS(4270), 2, + ACTIONS(4182), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4282), 2, + ACTIONS(4196), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4286), 2, + ACTIONS(4204), 2, anon_sym_GT, anon_sym_LT, - STATE(1687), 2, + STATE(1694), 2, sym_line_comment, sym_block_comment, - ACTIONS(4272), 3, + ACTIONS(4184), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4284), 4, + ACTIONS(4202), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3858), 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, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - 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, - [42346] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1688), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3852), 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(3850), 23, + ACTIONS(3972), 17, 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, @@ -150313,70 +151929,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, - [42399] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + anon_sym_SQUOTE, + [42605] = 5, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1689), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3852), 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(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, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - 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, - [42452] = 5, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1690), 2, + STATE(1695), 2, sym_line_comment, sym_block_comment, - ACTIONS(3982), 15, + ACTIONS(3720), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -150392,7 +151956,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3980), 23, + ACTIONS(3718), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -150415,16 +151979,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, - [42505] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [42659] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1691), 2, + STATE(1696), 2, sym_line_comment, sym_block_comment, - ACTIONS(1429), 15, + ACTIONS(3594), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -150440,7 +152005,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1431), 23, + ACTIONS(3592), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -150463,16 +152028,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, - [42558] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [42713] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1692), 2, + STATE(1697), 2, sym_line_comment, sym_block_comment, - ACTIONS(3790), 15, + ACTIONS(3734), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -150488,7 +152054,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3788), 23, + ACTIONS(3732), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -150511,22 +152077,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, - [42611] = 8, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [42767] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4268), 1, - anon_sym_LBRACK, - ACTIONS(4274), 1, - anon_sym_QMARK, - ACTIONS(4288), 1, - anon_sym_DOT, - STATE(1693), 2, + ACTIONS(4292), 1, + anon_sym_COLON_COLON, + STATE(1698), 2, sym_line_comment, sym_block_comment, - ACTIONS(3958), 14, + ACTIONS(3507), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -150540,10 +152103,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(3956), 21, + ACTIONS(3505), 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, @@ -150563,61 +152129,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [42670] = 22, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [42823] = 23, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3744), 1, + ACTIONS(340), 1, + anon_sym_RBRACE, + ACTIONS(3796), 1, anon_sym_LBRACK, - ACTIONS(3748), 1, + ACTIONS(3800), 1, anon_sym_QMARK, - ACTIONS(3750), 1, + ACTIONS(3802), 1, anon_sym_DOT, - ACTIONS(3862), 1, + ACTIONS(3976), 1, anon_sym_as, - ACTIONS(4296), 1, + ACTIONS(4068), 1, anon_sym_CARET, - ACTIONS(4298), 1, + ACTIONS(4070), 1, anon_sym_AMP, - ACTIONS(4300), 1, + ACTIONS(4072), 1, anon_sym_PIPE, - ACTIONS(4302), 1, + ACTIONS(4074), 1, anon_sym_AMP_AMP, - ACTIONS(4304), 1, + ACTIONS(4076), 1, anon_sym_PIPE_PIPE, - ACTIONS(4310), 1, + ACTIONS(4126), 1, anon_sym_EQ, - ACTIONS(4316), 1, + ACTIONS(4172), 1, anon_sym_DOT_DOT, - ACTIONS(3940), 2, - anon_sym_LPAREN, - anon_sym_LBRACE, - ACTIONS(4292), 2, + ACTIONS(4294), 1, + anon_sym_SEMI, + ACTIONS(4064), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4306), 2, + ACTIONS(4078), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4314), 2, + ACTIONS(4084), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4318), 2, + ACTIONS(4174), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1694), 2, + STATE(1699), 2, sym_line_comment, sym_block_comment, - ACTIONS(4294), 3, + ACTIONS(4066), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4312), 4, + ACTIONS(4082), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4308), 10, + ACTIONS(4124), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -150628,85 +152195,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42757] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [42912] = 23, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1695), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3708), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(3796), 1, + anon_sym_LBRACK, + ACTIONS(3800), 1, + anon_sym_QMARK, + ACTIONS(3802), 1, + anon_sym_DOT, + ACTIONS(3976), 1, + anon_sym_as, + ACTIONS(4068), 1, anon_sym_CARET, + ACTIONS(4070), 1, anon_sym_AMP, + ACTIONS(4072), 1, anon_sym_PIPE, + ACTIONS(4074), 1, + anon_sym_AMP_AMP, + ACTIONS(4076), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4126), 1, + anon_sym_EQ, + ACTIONS(4172), 1, + anon_sym_DOT_DOT, + ACTIONS(4296), 1, + anon_sym_RBRACE, + ACTIONS(4298), 1, + anon_sym_COMMA, + ACTIONS(4064), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4078), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4084), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3704), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_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(4174), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_as, - [42810] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1696), 2, + STATE(1700), 2, sym_line_comment, sym_block_comment, - ACTIONS(3904), 15, - anon_sym_PLUS, + ACTIONS(4066), 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(3902), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4082), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4124), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -150717,22 +152261,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, - [42863] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [43001] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1697), 2, + STATE(1701), 2, sym_line_comment, sym_block_comment, - ACTIONS(1429), 15, + ACTIONS(3886), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -150748,7 +152285,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1431), 23, + ACTIONS(3884), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -150772,15 +152309,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [42916] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [43054] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1698), 2, + STATE(1702), 2, sym_line_comment, sym_block_comment, - ACTIONS(3912), 15, + ACTIONS(4006), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -150796,7 +152333,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3910), 23, + ACTIONS(4004), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -150820,15 +152357,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [42969] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [43107] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1699), 2, + STATE(1703), 2, sym_line_comment, sym_block_comment, - ACTIONS(3882), 15, + ACTIONS(4026), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -150844,7 +152381,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3880), 23, + ACTIONS(4024), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -150868,15 +152405,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [43022] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [43160] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1700), 2, + STATE(1704), 2, sym_line_comment, sym_block_comment, - ACTIONS(3431), 15, + ACTIONS(3764), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -150892,7 +152429,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3429), 23, + ACTIONS(3762), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -150916,128 +152453,121 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [43075] = 23, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [43213] = 17, + ACTIONS(29), 1, + anon_sym_LT, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3744), 1, - anon_sym_LBRACK, - ACTIONS(3748), 1, - anon_sym_QMARK, - ACTIONS(3750), 1, - anon_sym_DOT, - ACTIONS(3862), 1, - anon_sym_as, - ACTIONS(4040), 1, - anon_sym_AMP, - ACTIONS(4044), 1, - anon_sym_CARET, - ACTIONS(4046), 1, - anon_sym_PIPE, - ACTIONS(4052), 1, - anon_sym_AMP_AMP, - ACTIONS(4056), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4070), 1, - anon_sym_EQ, - ACTIONS(4140), 1, - anon_sym_DOT_DOT, - ACTIONS(4320), 1, - anon_sym_SEMI, - ACTIONS(4322), 1, - anon_sym_else, - ACTIONS(4038), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4042), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4050), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4142), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1701), 2, + ACTIONS(4254), 1, + sym_identifier, + ACTIONS(4256), 1, + anon_sym_LBRACE, + ACTIONS(4260), 1, + anon_sym_STAR, + ACTIONS(4266), 1, + anon_sym_COLON_COLON, + ACTIONS(4270), 1, + sym_metavariable, + ACTIONS(4300), 1, + anon_sym_RBRACE, + STATE(2479), 1, + sym_scoped_identifier, + STATE(3196), 1, + sym__use_clause, + STATE(3604), 1, + sym_generic_type_with_turbofish, + STATE(3752), 1, + sym_bracketed_type, + STATE(1705), 2, sym_line_comment, sym_block_comment, - ACTIONS(4036), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4048), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4068), 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, - [43164] = 23, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + ACTIONS(4268), 3, + sym_self, + sym_super, + sym_crate, + STATE(2981), 4, + sym_scoped_use_list, + sym_use_list, + sym_use_as_clause, + sym_use_wildcard, + ACTIONS(4262), 20, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_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, + [43290] = 22, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3744), 1, + ACTIONS(3796), 1, anon_sym_LBRACK, - ACTIONS(3748), 1, + ACTIONS(3800), 1, anon_sym_QMARK, - ACTIONS(3750), 1, + ACTIONS(3802), 1, anon_sym_DOT, - ACTIONS(3862), 1, + ACTIONS(3976), 1, anon_sym_as, - ACTIONS(4040), 1, - anon_sym_AMP, - ACTIONS(4044), 1, + ACTIONS(4068), 1, anon_sym_CARET, - ACTIONS(4046), 1, + ACTIONS(4070), 1, + anon_sym_AMP, + ACTIONS(4072), 1, anon_sym_PIPE, - ACTIONS(4052), 1, + ACTIONS(4074), 1, anon_sym_AMP_AMP, - ACTIONS(4056), 1, + ACTIONS(4076), 1, anon_sym_PIPE_PIPE, - ACTIONS(4070), 1, + ACTIONS(4126), 1, anon_sym_EQ, - ACTIONS(4140), 1, + ACTIONS(4172), 1, anon_sym_DOT_DOT, - ACTIONS(4324), 1, - anon_sym_SEMI, - ACTIONS(4326), 1, - anon_sym_else, - ACTIONS(4038), 2, + ACTIONS(4064), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4042), 2, + ACTIONS(4078), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4050), 2, + ACTIONS(4084), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4142), 2, + ACTIONS(4174), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1702), 2, + ACTIONS(4302), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(1706), 2, sym_line_comment, sym_block_comment, - ACTIONS(4036), 3, + ACTIONS(4066), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4048), 4, + ACTIONS(4082), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4068), 10, + ACTIONS(4124), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -151048,63 +152578,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43253] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [43377] = 5, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1703), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4016), 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(4014), 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, - [43306] = 5, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1704), 2, + STATE(1707), 2, sym_line_comment, sym_block_comment, - ACTIONS(3916), 15, + ACTIONS(3966), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -151120,7 +152602,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3914), 23, + ACTIONS(3964), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -151144,15 +152626,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [43359] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [43430] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1705), 2, + STATE(1708), 2, sym_line_comment, sym_block_comment, - ACTIONS(3856), 15, + ACTIONS(1472), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -151168,7 +152650,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3854), 23, + ACTIONS(1470), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -151192,15 +152674,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [43412] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [43483] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1706), 2, + STATE(1709), 2, sym_line_comment, sym_block_comment, - ACTIONS(3928), 15, + ACTIONS(3806), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -151216,7 +152698,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3926), 23, + ACTIONS(3804), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -151240,40 +152722,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [43465] = 8, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [43536] = 23, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4268), 1, + ACTIONS(296), 1, + anon_sym_RBRACE, + ACTIONS(3796), 1, anon_sym_LBRACK, - ACTIONS(4274), 1, + ACTIONS(3800), 1, anon_sym_QMARK, - ACTIONS(4288), 1, + ACTIONS(3802), 1, anon_sym_DOT, - STATE(1707), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3746), 14, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(3976), 1, + anon_sym_as, + ACTIONS(4068), 1, anon_sym_CARET, + ACTIONS(4070), 1, anon_sym_AMP, + ACTIONS(4072), 1, anon_sym_PIPE, + ACTIONS(4074), 1, + anon_sym_AMP_AMP, + ACTIONS(4076), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4126), 1, + anon_sym_EQ, + ACTIONS(4172), 1, + anon_sym_DOT_DOT, + ACTIONS(4294), 1, + anon_sym_SEMI, + ACTIONS(4064), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4078), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4084), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT_DOT, - ACTIONS(3742), 21, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4174), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1710), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4066), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4082), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4124), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -151284,22 +152788,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, - [43524] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [43625] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1708), 2, + STATE(1711), 2, sym_line_comment, sym_block_comment, - ACTIONS(1429), 15, + ACTIONS(1472), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -151315,7 +152812,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1431), 23, + ACTIONS(1470), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -151339,15 +152836,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [43577] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [43678] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1709), 2, + STATE(1712), 2, sym_line_comment, sym_block_comment, - ACTIONS(3878), 15, + ACTIONS(3850), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -151363,7 +152860,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3876), 23, + ACTIONS(3848), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -151387,37 +152884,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [43630] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [43731] = 23, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1710), 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, + ACTIONS(1058), 1, + anon_sym_RPAREN, + ACTIONS(3796), 1, + anon_sym_LBRACK, + ACTIONS(3800), 1, + anon_sym_QMARK, + ACTIONS(3802), 1, + anon_sym_DOT, + ACTIONS(3976), 1, + anon_sym_as, + ACTIONS(4068), 1, anon_sym_CARET, + ACTIONS(4070), 1, anon_sym_AMP, + ACTIONS(4072), 1, anon_sym_PIPE, + ACTIONS(4074), 1, + anon_sym_AMP_AMP, + ACTIONS(4076), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4126), 1, + anon_sym_EQ, + ACTIONS(4172), 1, + anon_sym_DOT_DOT, + ACTIONS(4304), 1, + anon_sym_COMMA, + ACTIONS(4064), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4078), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4084), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3734), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4174), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1713), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4066), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4082), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4124), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -151428,22 +152950,23 @@ 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, - [43683] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [43820] = 9, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1711), 2, + ACTIONS(4306), 1, + anon_sym_LBRACK, + ACTIONS(4308), 1, + anon_sym_QMARK, + ACTIONS(4310), 1, + anon_sym_DOT, + ACTIONS(4312), 1, + anon_sym_as, + STATE(1714), 2, sym_line_comment, sym_block_comment, - ACTIONS(3740), 15, + ACTIONS(3974), 14, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -151457,13 +152980,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(3738), 23, + ACTIONS(3972), 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, @@ -151482,16 +153002,15 @@ 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, - [43736] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [43881] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1712), 2, + STATE(1715), 2, sym_line_comment, sym_block_comment, - ACTIONS(1429), 15, + ACTIONS(3726), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -151507,7 +153026,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1431), 23, + ACTIONS(3722), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -151531,15 +153050,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [43789] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [43934] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1713), 2, + STATE(1716), 2, sym_line_comment, sym_block_comment, - ACTIONS(3754), 15, + ACTIONS(4002), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -151555,7 +153074,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3752), 23, + ACTIONS(4000), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -151579,15 +153098,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [43842] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [43987] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1714), 2, + STATE(1717), 2, sym_line_comment, sym_block_comment, - ACTIONS(3758), 15, + ACTIONS(1472), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -151603,7 +153122,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3756), 23, + ACTIONS(1470), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -151627,15 +153146,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [43895] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [44040] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1715), 2, + STATE(1718), 2, sym_line_comment, sym_block_comment, - ACTIONS(3762), 15, + ACTIONS(3842), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -151651,7 +153170,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3760), 23, + ACTIONS(3840), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -151675,79 +153194,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [43948] = 21, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [44093] = 5, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3744), 1, - anon_sym_LBRACK, - ACTIONS(3748), 1, - anon_sym_QMARK, - ACTIONS(3750), 1, - anon_sym_DOT, - ACTIONS(3862), 1, - anon_sym_as, - ACTIONS(4150), 1, - anon_sym_CARET, - ACTIONS(4152), 1, - anon_sym_AMP, - ACTIONS(4154), 1, - anon_sym_PIPE, - ACTIONS(4158), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4164), 1, - anon_sym_EQ, - ACTIONS(4170), 1, - anon_sym_DOT_DOT, - ACTIONS(4146), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4160), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4168), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4172), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1716), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4148), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4328), 3, - anon_sym_LBRACE, - anon_sym_AMP_AMP, - anon_sym_SQUOTE, - ACTIONS(4166), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4162), 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, - [44033] = 5, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1717), 2, + STATE(1719), 2, sym_line_comment, sym_block_comment, - ACTIONS(3766), 15, + ACTIONS(4018), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -151763,7 +153218,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3764), 23, + ACTIONS(4016), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -151787,42 +153242,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [44086] = 9, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [44146] = 22, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4268), 1, + ACTIONS(3796), 1, anon_sym_LBRACK, - ACTIONS(4274), 1, + ACTIONS(3800), 1, anon_sym_QMARK, - ACTIONS(4288), 1, + ACTIONS(3802), 1, anon_sym_DOT, - ACTIONS(4290), 1, + ACTIONS(3976), 1, anon_sym_as, - STATE(1718), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3860), 14, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(4068), 1, anon_sym_CARET, + ACTIONS(4070), 1, anon_sym_AMP, + ACTIONS(4072), 1, anon_sym_PIPE, + ACTIONS(4074), 1, + anon_sym_AMP_AMP, + ACTIONS(4076), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4126), 1, + anon_sym_EQ, + ACTIONS(4172), 1, + anon_sym_DOT_DOT, + ACTIONS(4064), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4078), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4084), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT_DOT, - ACTIONS(3858), 20, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4174), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(4314), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(1720), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4066), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4082), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4124), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -151831,23 +153305,17 @@ 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, - [44147] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [44233] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1719), 2, + STATE(1721), 2, sym_line_comment, sym_block_comment, - ACTIONS(3954), 15, + ACTIONS(3507), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -151863,7 +153331,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3952), 23, + ACTIONS(3505), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -151887,15 +153355,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [44200] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [44286] = 8, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1720), 2, + ACTIONS(4306), 1, + anon_sym_LBRACK, + ACTIONS(4308), 1, + anon_sym_QMARK, + ACTIONS(4310), 1, + anon_sym_DOT, + STATE(1722), 2, sym_line_comment, sym_block_comment, - ACTIONS(3810), 15, + ACTIONS(4034), 14, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -151909,13 +153383,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(3808), 23, + ACTIONS(4032), 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, @@ -151935,15 +153406,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [44253] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [44345] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1721), 2, + STATE(1723), 2, sym_line_comment, sym_block_comment, - ACTIONS(3814), 15, + ACTIONS(3994), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -151959,7 +153430,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3812), 23, + ACTIONS(3992), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -151983,15 +153454,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [44306] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [44398] = 8, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1722), 2, + ACTIONS(4306), 1, + anon_sym_LBRACK, + ACTIONS(4308), 1, + anon_sym_QMARK, + ACTIONS(4310), 1, + anon_sym_DOT, + STATE(1724), 2, sym_line_comment, sym_block_comment, - ACTIONS(3818), 15, + ACTIONS(4056), 14, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -152005,13 +153482,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(3816), 23, + ACTIONS(4054), 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, @@ -152031,127 +153505,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [44359] = 23, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [44457] = 22, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(1059), 1, - anon_sym_RPAREN, - ACTIONS(3744), 1, - anon_sym_LBRACK, - ACTIONS(3748), 1, - anon_sym_QMARK, - ACTIONS(3750), 1, - anon_sym_DOT, - ACTIONS(3862), 1, - anon_sym_as, - ACTIONS(4040), 1, - anon_sym_AMP, - ACTIONS(4044), 1, - anon_sym_CARET, - ACTIONS(4046), 1, - anon_sym_PIPE, - ACTIONS(4052), 1, - anon_sym_AMP_AMP, - ACTIONS(4056), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4070), 1, - anon_sym_EQ, - ACTIONS(4140), 1, - anon_sym_DOT_DOT, - ACTIONS(4330), 1, - anon_sym_COMMA, - ACTIONS(4038), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4042), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4050), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4142), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1723), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4036), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4048), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4068), 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, - [44448] = 22, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3744), 1, + ACTIONS(3796), 1, anon_sym_LBRACK, - ACTIONS(3748), 1, + ACTIONS(3800), 1, anon_sym_QMARK, - ACTIONS(3750), 1, + ACTIONS(3802), 1, anon_sym_DOT, - ACTIONS(3862), 1, + ACTIONS(3976), 1, anon_sym_as, - ACTIONS(4150), 1, + ACTIONS(4068), 1, anon_sym_CARET, - ACTIONS(4152), 1, + ACTIONS(4070), 1, anon_sym_AMP, - ACTIONS(4154), 1, + ACTIONS(4072), 1, anon_sym_PIPE, - ACTIONS(4158), 1, + ACTIONS(4074), 1, + anon_sym_AMP_AMP, + ACTIONS(4076), 1, anon_sym_PIPE_PIPE, - ACTIONS(4164), 1, + ACTIONS(4126), 1, anon_sym_EQ, - ACTIONS(4170), 1, + ACTIONS(4172), 1, anon_sym_DOT_DOT, - ACTIONS(4334), 1, - anon_sym_AMP_AMP, - ACTIONS(4146), 2, + ACTIONS(4064), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4160), 2, + ACTIONS(4078), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4168), 2, + ACTIONS(4084), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4172), 2, + ACTIONS(4174), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(4332), 2, - anon_sym_LBRACE, - anon_sym_SQUOTE, - STATE(1724), 2, + ACTIONS(4316), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(1725), 2, sym_line_comment, sym_block_comment, - ACTIONS(4148), 3, + ACTIONS(4066), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4166), 4, + ACTIONS(4082), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4162), 10, + ACTIONS(4124), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -152162,15 +153570,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44535] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [44544] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1725), 2, + STATE(1726), 2, sym_line_comment, sym_block_comment, - ACTIONS(3870), 15, + ACTIONS(3754), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -152186,7 +153594,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3868), 23, + ACTIONS(3752), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -152210,15 +153618,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [44588] = 5, - ACTIONS(103), 1, + [44597] = 22, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(3796), 1, + anon_sym_LBRACK, + ACTIONS(3800), 1, + anon_sym_QMARK, + ACTIONS(3802), 1, + anon_sym_DOT, + ACTIONS(3976), 1, + anon_sym_as, + ACTIONS(4322), 1, + anon_sym_CARET, + ACTIONS(4324), 1, + anon_sym_AMP, + ACTIONS(4326), 1, + anon_sym_PIPE, + ACTIONS(4328), 1, + anon_sym_AMP_AMP, + ACTIONS(4330), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4336), 1, + anon_sym_EQ, + ACTIONS(4342), 1, + anon_sym_DOT_DOT, + ACTIONS(3960), 2, + anon_sym_LPAREN, + anon_sym_LBRACE, + ACTIONS(4318), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4332), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4340), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4344), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1727), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4320), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4338), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4334), 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, + [44684] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1726), 2, + STATE(1728), 2, sym_line_comment, sym_block_comment, - ACTIONS(3874), 15, + ACTIONS(3760), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -152234,7 +153707,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3872), 23, + ACTIONS(3756), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -152258,15 +153731,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [44641] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [44737] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1727), 2, + STATE(1729), 2, sym_line_comment, sym_block_comment, - ACTIONS(3920), 15, + ACTIONS(3772), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -152282,7 +153755,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3918), 23, + ACTIONS(3770), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -152306,15 +153779,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [44694] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [44790] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1728), 2, + STATE(1730), 2, sym_line_comment, sym_block_comment, - ACTIONS(3924), 15, + ACTIONS(3776), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -152330,7 +153803,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3922), 23, + ACTIONS(3774), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -152354,122 +153827,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [44747] = 17, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [44843] = 22, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4206), 1, - sym_identifier, - ACTIONS(4208), 1, - anon_sym_LBRACE, - ACTIONS(4212), 1, - anon_sym_STAR, - ACTIONS(4218), 1, - anon_sym_COLON_COLON, - ACTIONS(4222), 1, - sym_metavariable, - ACTIONS(4336), 1, - anon_sym_RBRACE, - STATE(2516), 1, - sym_scoped_identifier, - STATE(3326), 1, - sym__use_clause, - STATE(3465), 1, - sym_generic_type_with_turbofish, - STATE(3688), 1, - sym_bracketed_type, - STATE(1729), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4220), 3, - sym_self, - sym_super, - sym_crate, - STATE(3015), 4, - sym_scoped_use_list, - sym_use_list, - sym_use_as_clause, - sym_use_wildcard, - ACTIONS(4214), 20, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_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, - [44824] = 23, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(127), 1, - anon_sym_RBRACE, - ACTIONS(3744), 1, + ACTIONS(3796), 1, anon_sym_LBRACK, - ACTIONS(3748), 1, + ACTIONS(3800), 1, anon_sym_QMARK, - ACTIONS(3750), 1, + ACTIONS(3802), 1, anon_sym_DOT, - ACTIONS(3862), 1, + ACTIONS(3976), 1, anon_sym_as, - ACTIONS(4040), 1, - anon_sym_AMP, - ACTIONS(4044), 1, + ACTIONS(4068), 1, anon_sym_CARET, - ACTIONS(4046), 1, + ACTIONS(4070), 1, + anon_sym_AMP, + ACTIONS(4072), 1, anon_sym_PIPE, - ACTIONS(4052), 1, + ACTIONS(4074), 1, anon_sym_AMP_AMP, - ACTIONS(4056), 1, + ACTIONS(4076), 1, anon_sym_PIPE_PIPE, - ACTIONS(4070), 1, + ACTIONS(4126), 1, anon_sym_EQ, - ACTIONS(4140), 1, + ACTIONS(4172), 1, anon_sym_DOT_DOT, - ACTIONS(4338), 1, - anon_sym_SEMI, - ACTIONS(4038), 2, + ACTIONS(4064), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4042), 2, + ACTIONS(4078), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4050), 2, + ACTIONS(4084), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4142), 2, + ACTIONS(4174), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1730), 2, + ACTIONS(4346), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(1731), 2, sym_line_comment, sym_block_comment, - ACTIONS(4036), 3, + ACTIONS(4066), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4048), 4, + ACTIONS(4082), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4068), 10, + ACTIONS(4124), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -152480,15 +153892,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44913] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [44930] = 8, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1731), 2, + ACTIONS(4306), 1, + anon_sym_LBRACK, + ACTIONS(4308), 1, + anon_sym_QMARK, + ACTIONS(4310), 1, + anon_sym_DOT, + STATE(1732), 2, sym_line_comment, sym_block_comment, - ACTIONS(1583), 15, + ACTIONS(3798), 14, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -152502,13 +153920,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(1585), 23, + ACTIONS(3794), 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, @@ -152528,15 +153943,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [44966] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [44989] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1732), 2, + STATE(1733), 2, sym_line_comment, sym_block_comment, - ACTIONS(1479), 15, + ACTIONS(3890), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -152552,7 +153967,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1477), 23, + ACTIONS(3888), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -152576,15 +153991,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [45019] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [45042] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1733), 2, + STATE(1734), 2, sym_line_comment, sym_block_comment, - ACTIONS(1495), 15, + ACTIONS(3746), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -152600,7 +154015,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1493), 23, + ACTIONS(3744), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -152624,15 +154039,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [45072] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [45095] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1734), 2, + STATE(1735), 2, sym_line_comment, sym_block_comment, - ACTIONS(1469), 15, + ACTIONS(3326), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -152648,7 +154063,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1467), 23, + ACTIONS(3328), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -152672,15 +154087,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [45125] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [45148] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1735), 2, + STATE(1736), 2, sym_line_comment, sym_block_comment, - ACTIONS(1531), 15, + ACTIONS(3477), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -152696,7 +154111,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1529), 23, + ACTIONS(3475), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -152720,15 +154135,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [45178] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [45201] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1736), 2, + STATE(1737), 2, sym_line_comment, sym_block_comment, - ACTIONS(1515), 15, + ACTIONS(3529), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -152744,7 +154159,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1513), 23, + ACTIONS(3527), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -152768,60 +154183,122 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [45231] = 21, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [45254] = 19, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4088), 1, - anon_sym_EQ, - ACTIONS(4268), 1, + ACTIONS(4306), 1, anon_sym_LBRACK, - ACTIONS(4274), 1, + ACTIONS(4308), 1, anon_sym_QMARK, - ACTIONS(4276), 1, + ACTIONS(4310), 1, + anon_sym_DOT, + ACTIONS(4312), 1, + anon_sym_as, + ACTIONS(4352), 1, anon_sym_CARET, - ACTIONS(4278), 1, + ACTIONS(4354), 1, anon_sym_AMP, - ACTIONS(4280), 1, + ACTIONS(4356), 1, anon_sym_PIPE, - ACTIONS(4288), 1, + ACTIONS(4358), 1, + anon_sym_AMP_AMP, + ACTIONS(4360), 1, + anon_sym_PIPE_PIPE, + ACTIONS(386), 2, + anon_sym_EQ, + anon_sym_DOT_DOT, + ACTIONS(4348), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4362), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4366), 2, + anon_sym_GT, + anon_sym_LT, + STATE(1738), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4350), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4364), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(384), 14, + anon_sym_LPAREN, + anon_sym_EQ_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [45335] = 21, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(3796), 1, + anon_sym_LBRACK, + ACTIONS(3800), 1, + anon_sym_QMARK, + ACTIONS(3802), 1, anon_sym_DOT, - ACTIONS(4290), 1, + ACTIONS(3976), 1, anon_sym_as, - ACTIONS(4340), 1, + ACTIONS(4144), 1, + anon_sym_EQ, + ACTIONS(4322), 1, + anon_sym_CARET, + ACTIONS(4324), 1, + anon_sym_AMP, + ACTIONS(4326), 1, + anon_sym_PIPE, + ACTIONS(4328), 1, anon_sym_AMP_AMP, - ACTIONS(4342), 1, + ACTIONS(4330), 1, anon_sym_PIPE_PIPE, - ACTIONS(4344), 1, + ACTIONS(4342), 1, anon_sym_DOT_DOT, - ACTIONS(4270), 2, + ACTIONS(4318), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4282), 2, + ACTIONS(4332), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4286), 2, + ACTIONS(4340), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4346), 2, + ACTIONS(4344), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1737), 2, + STATE(1739), 2, sym_line_comment, sym_block_comment, - ACTIONS(4272), 3, + ACTIONS(4320), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4284), 4, + ACTIONS(4338), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4086), 12, + ACTIONS(4142), 12, anon_sym_LPAREN, - anon_sym_EQ_GT, + anon_sym_LBRACE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -152832,61 +154309,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45316] = 22, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [45420] = 22, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3744), 1, + ACTIONS(3796), 1, anon_sym_LBRACK, - ACTIONS(3748), 1, + ACTIONS(3800), 1, anon_sym_QMARK, - ACTIONS(3750), 1, + ACTIONS(3802), 1, anon_sym_DOT, - ACTIONS(3862), 1, + ACTIONS(3976), 1, anon_sym_as, - ACTIONS(4040), 1, - anon_sym_AMP, - ACTIONS(4044), 1, + ACTIONS(4322), 1, anon_sym_CARET, - ACTIONS(4046), 1, + ACTIONS(4324), 1, + anon_sym_AMP, + ACTIONS(4326), 1, anon_sym_PIPE, - ACTIONS(4052), 1, + ACTIONS(4328), 1, anon_sym_AMP_AMP, - ACTIONS(4056), 1, + ACTIONS(4330), 1, anon_sym_PIPE_PIPE, - ACTIONS(4070), 1, + ACTIONS(4336), 1, anon_sym_EQ, - ACTIONS(4140), 1, + ACTIONS(4342), 1, anon_sym_DOT_DOT, - ACTIONS(4000), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(4038), 2, + ACTIONS(3826), 2, + anon_sym_LPAREN, + anon_sym_LBRACE, + ACTIONS(4318), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4042), 2, + ACTIONS(4332), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4050), 2, + ACTIONS(4340), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4142), 2, + ACTIONS(4344), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1738), 2, + STATE(1740), 2, sym_line_comment, sym_block_comment, - ACTIONS(4036), 3, + ACTIONS(4320), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4048), 4, + ACTIONS(4338), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4068), 10, + ACTIONS(4334), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -152897,62 +154374,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45403] = 23, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [45507] = 21, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3744), 1, + ACTIONS(352), 1, + anon_sym_EQ, + ACTIONS(4306), 1, anon_sym_LBRACK, - ACTIONS(3748), 1, + ACTIONS(4308), 1, anon_sym_QMARK, - ACTIONS(3750), 1, + ACTIONS(4310), 1, anon_sym_DOT, - ACTIONS(3862), 1, + ACTIONS(4312), 1, anon_sym_as, - ACTIONS(4040), 1, - anon_sym_AMP, - ACTIONS(4044), 1, + ACTIONS(4352), 1, anon_sym_CARET, - ACTIONS(4046), 1, + ACTIONS(4354), 1, + anon_sym_AMP, + ACTIONS(4356), 1, anon_sym_PIPE, - ACTIONS(4052), 1, + ACTIONS(4358), 1, anon_sym_AMP_AMP, - ACTIONS(4056), 1, + ACTIONS(4360), 1, anon_sym_PIPE_PIPE, - ACTIONS(4070), 1, - anon_sym_EQ, - ACTIONS(4140), 1, + ACTIONS(4368), 1, anon_sym_DOT_DOT, - ACTIONS(4348), 1, - anon_sym_SEMI, - ACTIONS(4350), 1, - anon_sym_else, - ACTIONS(4038), 2, + ACTIONS(4348), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4042), 2, + ACTIONS(4362), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4050), 2, + ACTIONS(4366), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4142), 2, + ACTIONS(4370), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1739), 2, + STATE(1741), 2, sym_line_comment, sym_block_comment, - ACTIONS(4036), 3, + ACTIONS(4350), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4048), 4, + ACTIONS(4364), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4068), 10, + ACTIONS(346), 12, + anon_sym_LPAREN, + anon_sym_EQ_GT, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -152963,20 +154438,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45492] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [45592] = 10, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1740), 2, + ACTIONS(3796), 1, + anon_sym_LBRACK, + ACTIONS(3800), 1, + anon_sym_QMARK, + ACTIONS(3802), 1, + anon_sym_DOT, + ACTIONS(3976), 1, + anon_sym_as, + STATE(1742), 2, sym_line_comment, sym_block_comment, - ACTIONS(3778), 15, - anon_sym_PLUS, + ACTIONS(4320), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(3974), 11, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_CARET, anon_sym_AMP, anon_sym_PIPE, @@ -152985,13 +154469,66 @@ 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(3776), 23, + ACTIONS(3972), 20, anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [45655] = 13, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(3796), 1, anon_sym_LBRACK, - anon_sym_EQ_GT, + ACTIONS(3800), 1, anon_sym_QMARK, + ACTIONS(3802), 1, + anon_sym_DOT, + ACTIONS(3976), 1, + anon_sym_as, + ACTIONS(4324), 1, + anon_sym_AMP, + ACTIONS(4318), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4332), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + STATE(1743), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4320), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3974), 6, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT_DOT, + ACTIONS(3972), 20, + anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -153010,36 +154547,100 @@ 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, - [45545] = 5, - ACTIONS(103), 1, + [45724] = 12, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(3796), 1, + anon_sym_LBRACK, + ACTIONS(3800), 1, + anon_sym_QMARK, + ACTIONS(3802), 1, + anon_sym_DOT, + ACTIONS(3976), 1, + anon_sym_as, + ACTIONS(4318), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4332), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + STATE(1744), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4320), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3974), 7, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT_DOT, + ACTIONS(3972), 20, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [45791] = 14, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1741), 2, + ACTIONS(3796), 1, + anon_sym_LBRACK, + ACTIONS(3800), 1, + anon_sym_QMARK, + ACTIONS(3802), 1, + anon_sym_DOT, + ACTIONS(3976), 1, + anon_sym_as, + ACTIONS(4322), 1, + anon_sym_CARET, + ACTIONS(4324), 1, + anon_sym_AMP, + ACTIONS(4318), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4332), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + STATE(1745), 2, sym_line_comment, sym_block_comment, - ACTIONS(1443), 15, - anon_sym_PLUS, + ACTIONS(4320), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(3974), 5, anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_EQ, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1441), 23, + ACTIONS(3972), 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, @@ -153058,61 +154659,54 @@ 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, - [45598] = 21, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [45862] = 17, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4096), 1, - anon_sym_EQ, - ACTIONS(4268), 1, + ACTIONS(3796), 1, anon_sym_LBRACK, - ACTIONS(4274), 1, + ACTIONS(3800), 1, anon_sym_QMARK, - ACTIONS(4276), 1, + ACTIONS(3802), 1, + anon_sym_DOT, + ACTIONS(3976), 1, + anon_sym_as, + ACTIONS(4322), 1, anon_sym_CARET, - ACTIONS(4278), 1, + ACTIONS(4324), 1, anon_sym_AMP, - ACTIONS(4280), 1, + ACTIONS(4326), 1, anon_sym_PIPE, - ACTIONS(4288), 1, - anon_sym_DOT, - ACTIONS(4290), 1, - anon_sym_as, - ACTIONS(4340), 1, - anon_sym_AMP_AMP, - ACTIONS(4342), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4344), 1, + ACTIONS(3974), 2, + anon_sym_EQ, anon_sym_DOT_DOT, - ACTIONS(4270), 2, + ACTIONS(4318), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4282), 2, + ACTIONS(4332), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4286), 2, + ACTIONS(4340), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4346), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1742), 2, + STATE(1746), 2, sym_line_comment, sym_block_comment, - ACTIONS(4272), 3, + ACTIONS(4320), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4284), 4, + ACTIONS(4338), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4094), 12, + ACTIONS(3972), 16, anon_sym_LPAREN, - anon_sym_EQ_GT, + anon_sym_LBRACE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -153123,36 +154717,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45683] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [45939] = 18, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1743), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1423), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(3796), 1, + anon_sym_LBRACK, + ACTIONS(3800), 1, + anon_sym_QMARK, + ACTIONS(3802), 1, + anon_sym_DOT, + ACTIONS(3976), 1, + anon_sym_as, + ACTIONS(4322), 1, anon_sym_CARET, + ACTIONS(4324), 1, anon_sym_AMP, + ACTIONS(4326), 1, anon_sym_PIPE, + ACTIONS(4328), 1, + anon_sym_AMP_AMP, + ACTIONS(3974), 2, + anon_sym_EQ, + anon_sym_DOT_DOT, + ACTIONS(4318), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4332), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4340), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1421), 23, + STATE(1747), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4320), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4338), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3972), 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, @@ -153164,27 +154778,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, - [45736] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [46018] = 11, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1744), 2, + ACTIONS(3796), 1, + anon_sym_LBRACK, + ACTIONS(3800), 1, + anon_sym_QMARK, + ACTIONS(3802), 1, + anon_sym_DOT, + ACTIONS(3976), 1, + anon_sym_as, + ACTIONS(4318), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1748), 2, sym_line_comment, sym_block_comment, - ACTIONS(3986), 15, - anon_sym_PLUS, + ACTIONS(4320), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(3974), 9, anon_sym_CARET, anon_sym_AMP, anon_sym_PIPE, @@ -153193,13 +154812,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(3984), 23, + ACTIONS(3972), 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, @@ -153218,38 +154834,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, - [45789] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [46083] = 21, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1745), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1527), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(3796), 1, + anon_sym_LBRACK, + ACTIONS(3800), 1, + anon_sym_QMARK, + ACTIONS(3802), 1, + anon_sym_DOT, + ACTIONS(3976), 1, + anon_sym_as, + ACTIONS(4103), 1, + anon_sym_EQ, + ACTIONS(4322), 1, anon_sym_CARET, + ACTIONS(4324), 1, anon_sym_AMP, + ACTIONS(4326), 1, anon_sym_PIPE, + ACTIONS(4328), 1, + anon_sym_AMP_AMP, + ACTIONS(4330), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4342), 1, + anon_sym_DOT_DOT, + ACTIONS(4318), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4332), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4340), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1525), 23, + ACTIONS(4344), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1749), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4320), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4338), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4101), 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, @@ -153260,68 +154898,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, - [45842] = 22, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [46168] = 21, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3744), 1, + ACTIONS(3796), 1, anon_sym_LBRACK, - ACTIONS(3748), 1, + ACTIONS(3800), 1, anon_sym_QMARK, - ACTIONS(3750), 1, + ACTIONS(3802), 1, anon_sym_DOT, - ACTIONS(3862), 1, + ACTIONS(3976), 1, anon_sym_as, - ACTIONS(4040), 1, - anon_sym_AMP, - ACTIONS(4044), 1, + ACTIONS(4107), 1, + anon_sym_EQ, + ACTIONS(4322), 1, anon_sym_CARET, - ACTIONS(4046), 1, + ACTIONS(4324), 1, + anon_sym_AMP, + ACTIONS(4326), 1, anon_sym_PIPE, - ACTIONS(4052), 1, + ACTIONS(4328), 1, anon_sym_AMP_AMP, - ACTIONS(4056), 1, + ACTIONS(4330), 1, anon_sym_PIPE_PIPE, - ACTIONS(4070), 1, - anon_sym_EQ, - ACTIONS(4140), 1, + ACTIONS(4342), 1, anon_sym_DOT_DOT, - ACTIONS(4038), 2, + ACTIONS(4318), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4042), 2, + ACTIONS(4332), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4050), 2, + ACTIONS(4340), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4142), 2, + ACTIONS(4344), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(4352), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(1746), 2, + STATE(1750), 2, sym_line_comment, sym_block_comment, - ACTIONS(4036), 3, + ACTIONS(4320), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4048), 4, + ACTIONS(4338), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4068), 10, + ACTIONS(4105), 12, + anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -153332,61 +154962,114 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45929] = 22, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [46253] = 15, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3744), 1, + ACTIONS(3796), 1, anon_sym_LBRACK, - ACTIONS(3748), 1, + ACTIONS(3800), 1, anon_sym_QMARK, - ACTIONS(3750), 1, + ACTIONS(3802), 1, anon_sym_DOT, - ACTIONS(3862), 1, + ACTIONS(3976), 1, anon_sym_as, - ACTIONS(4040), 1, + ACTIONS(4322), 1, + anon_sym_CARET, + ACTIONS(4324), 1, anon_sym_AMP, - ACTIONS(4044), 1, + ACTIONS(4326), 1, + anon_sym_PIPE, + ACTIONS(4318), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4332), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + STATE(1751), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4320), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3974), 4, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT_DOT, + ACTIONS(3972), 20, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [46326] = 19, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(3796), 1, + anon_sym_LBRACK, + ACTIONS(3800), 1, + anon_sym_QMARK, + ACTIONS(3802), 1, + anon_sym_DOT, + ACTIONS(3976), 1, + anon_sym_as, + ACTIONS(4322), 1, anon_sym_CARET, - ACTIONS(4046), 1, + ACTIONS(4324), 1, + anon_sym_AMP, + ACTIONS(4326), 1, anon_sym_PIPE, - ACTIONS(4052), 1, + ACTIONS(4328), 1, anon_sym_AMP_AMP, - ACTIONS(4056), 1, + ACTIONS(4330), 1, anon_sym_PIPE_PIPE, - ACTIONS(4070), 1, + ACTIONS(4080), 2, anon_sym_EQ, - ACTIONS(4140), 1, anon_sym_DOT_DOT, - ACTIONS(3788), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(4038), 2, + ACTIONS(4318), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4042), 2, + ACTIONS(4332), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4050), 2, + ACTIONS(4340), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4142), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1747), 2, + STATE(1752), 2, sym_line_comment, sym_block_comment, - ACTIONS(4036), 3, + ACTIONS(4320), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4048), 4, + ACTIONS(4338), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4068), 10, + ACTIONS(4062), 14, + anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -153397,15 +155080,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46016] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [46407] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1748), 2, + STATE(1753), 2, sym_line_comment, sym_block_comment, - ACTIONS(1435), 15, + ACTIONS(3768), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -153421,7 +155106,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1433), 23, + ACTIONS(3766), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -153445,15 +155130,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [46069] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [46460] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1749), 2, + STATE(1754), 2, sym_line_comment, sym_block_comment, - ACTIONS(3798), 15, + ACTIONS(3780), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -153469,7 +155154,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3796), 23, + ACTIONS(3778), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -153493,29 +155178,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [46122] = 10, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [46513] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4268), 1, - anon_sym_LBRACK, - ACTIONS(4274), 1, - anon_sym_QMARK, - ACTIONS(4288), 1, - anon_sym_DOT, - ACTIONS(4290), 1, - anon_sym_as, - STATE(1750), 2, + STATE(1755), 2, sym_line_comment, sym_block_comment, - ACTIONS(4272), 3, + ACTIONS(3784), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3860), 11, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_CARET, anon_sym_AMP, anon_sym_PIPE, @@ -153524,10 +155200,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(3858), 20, + ACTIONS(3782), 23, anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_EQ_GT, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -153546,44 +155225,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [46185] = 13, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + anon_sym_as, + [46566] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4268), 1, - anon_sym_LBRACK, - ACTIONS(4274), 1, - anon_sym_QMARK, - ACTIONS(4278), 1, - anon_sym_AMP, - ACTIONS(4288), 1, - anon_sym_DOT, - ACTIONS(4290), 1, - anon_sym_as, - ACTIONS(4270), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4282), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - STATE(1751), 2, + STATE(1756), 2, sym_line_comment, sym_block_comment, - ACTIONS(4272), 3, + ACTIONS(3810), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3860), 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(3858), 20, + ACTIONS(3808), 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, @@ -153602,43 +155273,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [46254] = 12, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + anon_sym_as, + [46619] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4268), 1, - anon_sym_LBRACK, - ACTIONS(4274), 1, - anon_sym_QMARK, - ACTIONS(4288), 1, - anon_sym_DOT, - ACTIONS(4290), 1, - anon_sym_as, - ACTIONS(4270), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4282), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - STATE(1752), 2, + STATE(1757), 2, sym_line_comment, sym_block_comment, - ACTIONS(4272), 3, + ACTIONS(3810), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3860), 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(3858), 20, + ACTIONS(3808), 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, @@ -153657,45 +155321,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [46321] = 14, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + anon_sym_as, + [46672] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4268), 1, - anon_sym_LBRACK, - ACTIONS(4274), 1, - anon_sym_QMARK, - ACTIONS(4276), 1, - anon_sym_CARET, - ACTIONS(4278), 1, - anon_sym_AMP, - ACTIONS(4288), 1, - anon_sym_DOT, - ACTIONS(4290), 1, - anon_sym_as, - ACTIONS(4270), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4282), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - STATE(1753), 2, + STATE(1758), 2, sym_line_comment, sym_block_comment, - ACTIONS(4272), 3, + ACTIONS(3810), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3860), 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(3858), 20, + ACTIONS(3808), 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, @@ -153714,62 +155369,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [46392] = 23, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + anon_sym_as, + [46725] = 22, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3744), 1, + ACTIONS(3796), 1, anon_sym_LBRACK, - ACTIONS(3748), 1, + ACTIONS(3800), 1, anon_sym_QMARK, - ACTIONS(3750), 1, + ACTIONS(3802), 1, anon_sym_DOT, - ACTIONS(3862), 1, + ACTIONS(3976), 1, anon_sym_as, - ACTIONS(4040), 1, - anon_sym_AMP, - ACTIONS(4044), 1, + ACTIONS(4068), 1, anon_sym_CARET, - ACTIONS(4046), 1, + ACTIONS(4070), 1, + anon_sym_AMP, + ACTIONS(4072), 1, anon_sym_PIPE, - ACTIONS(4052), 1, + ACTIONS(4074), 1, anon_sym_AMP_AMP, - ACTIONS(4056), 1, + ACTIONS(4076), 1, anon_sym_PIPE_PIPE, - ACTIONS(4070), 1, + ACTIONS(4126), 1, anon_sym_EQ, - ACTIONS(4140), 1, + ACTIONS(4172), 1, anon_sym_DOT_DOT, - ACTIONS(4338), 1, - anon_sym_SEMI, - ACTIONS(4354), 1, - anon_sym_RBRACE, - ACTIONS(4038), 2, + ACTIONS(4064), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4042), 2, + ACTIONS(4078), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4050), 2, + ACTIONS(4084), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4142), 2, + ACTIONS(4174), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1754), 2, + ACTIONS(4372), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(1759), 2, sym_line_comment, sym_block_comment, - ACTIONS(4036), 3, + ACTIONS(4066), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4048), 4, + ACTIONS(4082), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4068), 10, + ACTIONS(4124), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -153780,55 +155435,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46481] = 18, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [46812] = 22, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4268), 1, + ACTIONS(3796), 1, anon_sym_LBRACK, - ACTIONS(4274), 1, + ACTIONS(3800), 1, anon_sym_QMARK, - ACTIONS(4276), 1, + ACTIONS(3802), 1, + anon_sym_DOT, + ACTIONS(3976), 1, + anon_sym_as, + ACTIONS(4186), 1, anon_sym_CARET, - ACTIONS(4278), 1, + ACTIONS(4188), 1, anon_sym_AMP, - ACTIONS(4280), 1, + ACTIONS(4190), 1, anon_sym_PIPE, - ACTIONS(4288), 1, - anon_sym_DOT, - ACTIONS(4290), 1, - anon_sym_as, - ACTIONS(4340), 1, - anon_sym_AMP_AMP, - ACTIONS(3860), 2, + ACTIONS(4194), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4200), 1, anon_sym_EQ, + ACTIONS(4206), 1, anon_sym_DOT_DOT, - ACTIONS(4270), 2, + ACTIONS(4376), 1, + anon_sym_AMP_AMP, + ACTIONS(4182), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4282), 2, + ACTIONS(4196), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4286), 2, + ACTIONS(4204), 2, anon_sym_GT, anon_sym_LT, - STATE(1755), 2, + ACTIONS(4208), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(4374), 2, + anon_sym_LBRACE, + anon_sym_SQUOTE, + STATE(1760), 2, sym_line_comment, sym_block_comment, - ACTIONS(4272), 3, + ACTIONS(4184), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4284), 4, + ACTIONS(4202), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3858), 15, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_PIPE_PIPE, + ACTIONS(4198), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -153839,32 +155500,85 @@ 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, - [46560] = 11, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [46899] = 22, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4268), 1, + ACTIONS(3796), 1, anon_sym_LBRACK, - ACTIONS(4274), 1, + ACTIONS(3800), 1, anon_sym_QMARK, - ACTIONS(4288), 1, + ACTIONS(3802), 1, anon_sym_DOT, - ACTIONS(4290), 1, + ACTIONS(3976), 1, anon_sym_as, - ACTIONS(4270), 2, + ACTIONS(4322), 1, + anon_sym_CARET, + ACTIONS(4324), 1, + anon_sym_AMP, + ACTIONS(4326), 1, + anon_sym_PIPE, + ACTIONS(4328), 1, + anon_sym_AMP_AMP, + ACTIONS(4330), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4336), 1, + anon_sym_EQ, + ACTIONS(4342), 1, + anon_sym_DOT_DOT, + ACTIONS(3876), 2, + anon_sym_LPAREN, + anon_sym_LBRACE, + ACTIONS(4318), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1756), 2, + ACTIONS(4332), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4340), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4344), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1761), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4320), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4338), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4334), 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, + [46986] = 5, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + STATE(1762), 2, sym_line_comment, sym_block_comment, - ACTIONS(4272), 3, + ACTIONS(3820), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3860), 9, anon_sym_CARET, anon_sym_AMP, anon_sym_PIPE, @@ -153873,10 +155587,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(3858), 20, + ACTIONS(3818), 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, @@ -153895,58 +155612,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [46625] = 21, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + anon_sym_as, + [47039] = 21, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4058), 1, + ACTIONS(4130), 1, anon_sym_EQ, - ACTIONS(4268), 1, + ACTIONS(4306), 1, anon_sym_LBRACK, - ACTIONS(4274), 1, + ACTIONS(4308), 1, anon_sym_QMARK, - ACTIONS(4276), 1, + ACTIONS(4310), 1, + anon_sym_DOT, + ACTIONS(4312), 1, + anon_sym_as, + ACTIONS(4352), 1, anon_sym_CARET, - ACTIONS(4278), 1, + ACTIONS(4354), 1, anon_sym_AMP, - ACTIONS(4280), 1, + ACTIONS(4356), 1, anon_sym_PIPE, - ACTIONS(4288), 1, - anon_sym_DOT, - ACTIONS(4290), 1, - anon_sym_as, - ACTIONS(4340), 1, + ACTIONS(4358), 1, anon_sym_AMP_AMP, - ACTIONS(4342), 1, + ACTIONS(4360), 1, anon_sym_PIPE_PIPE, - ACTIONS(4344), 1, + ACTIONS(4368), 1, anon_sym_DOT_DOT, - ACTIONS(4270), 2, + ACTIONS(4348), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4282), 2, + ACTIONS(4362), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4286), 2, + ACTIONS(4366), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4346), 2, + ACTIONS(4370), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1757), 2, + STATE(1763), 2, sym_line_comment, sym_block_comment, - ACTIONS(4272), 3, + ACTIONS(4350), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4284), 4, + ACTIONS(4364), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4054), 12, + ACTIONS(4128), 12, anon_sym_LPAREN, anon_sym_EQ_GT, anon_sym_PLUS_EQ, @@ -153959,110 +155677,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46710] = 21, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [47124] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4066), 1, - anon_sym_EQ, - ACTIONS(4268), 1, - anon_sym_LBRACK, - ACTIONS(4274), 1, - anon_sym_QMARK, - ACTIONS(4276), 1, - anon_sym_CARET, - ACTIONS(4278), 1, - anon_sym_AMP, - ACTIONS(4280), 1, - anon_sym_PIPE, - ACTIONS(4288), 1, - anon_sym_DOT, - ACTIONS(4290), 1, - anon_sym_as, - ACTIONS(4340), 1, - anon_sym_AMP_AMP, - ACTIONS(4342), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4344), 1, - anon_sym_DOT_DOT, - ACTIONS(4270), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4282), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4286), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4346), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1758), 2, + STATE(1764), 2, sym_line_comment, sym_block_comment, - ACTIONS(4272), 3, + ACTIONS(3832), 15, + anon_sym_PLUS, 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(4064), 12, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [46795] = 15, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4268), 1, - anon_sym_LBRACK, - ACTIONS(4274), 1, - anon_sym_QMARK, - ACTIONS(4276), 1, anon_sym_CARET, - ACTIONS(4278), 1, anon_sym_AMP, - ACTIONS(4280), 1, anon_sym_PIPE, - ACTIONS(4288), 1, - anon_sym_DOT, - ACTIONS(4290), 1, - anon_sym_as, - ACTIONS(4270), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4282), 2, anon_sym_LT_LT, anon_sym_GT_GT, - STATE(1759), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4272), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3860), 4, anon_sym_EQ, anon_sym_GT, anon_sym_LT, + anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3858), 20, + 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, @@ -154081,56 +155724,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [46868] = 19, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + anon_sym_as, + [47177] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4268), 1, - anon_sym_LBRACK, - ACTIONS(4274), 1, - anon_sym_QMARK, - ACTIONS(4276), 1, + STATE(1765), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3511), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4278), 1, anon_sym_AMP, - ACTIONS(4280), 1, anon_sym_PIPE, - ACTIONS(4288), 1, - anon_sym_DOT, - ACTIONS(4290), 1, - anon_sym_as, - ACTIONS(4340), 1, - anon_sym_AMP_AMP, - ACTIONS(4342), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4074), 2, - anon_sym_EQ, - anon_sym_DOT_DOT, - ACTIONS(4270), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4282), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4286), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - STATE(1760), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4272), 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(4072), 14, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3509), 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, @@ -154141,17 +155766,22 @@ 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, - [46949] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + anon_sym_as, + [47230] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1761), 2, + STATE(1766), 2, sym_line_comment, sym_block_comment, - ACTIONS(3834), 15, + ACTIONS(3838), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -154167,7 +155797,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3832), 23, + ACTIONS(3836), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -154191,15 +155821,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [47002] = 5, - ACTIONS(103), 1, + [47283] = 22, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(3796), 1, + anon_sym_LBRACK, + ACTIONS(3800), 1, + anon_sym_QMARK, + ACTIONS(3802), 1, + anon_sym_DOT, + ACTIONS(3976), 1, + anon_sym_as, + ACTIONS(4068), 1, + anon_sym_CARET, + ACTIONS(4070), 1, + anon_sym_AMP, + ACTIONS(4072), 1, + anon_sym_PIPE, + ACTIONS(4074), 1, + anon_sym_AMP_AMP, + ACTIONS(4076), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4126), 1, + anon_sym_EQ, + ACTIONS(4172), 1, + anon_sym_DOT_DOT, + ACTIONS(4064), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4078), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4084), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4174), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(4378), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(1767), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4066), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4082), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4124), 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, + [47370] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1762), 2, + STATE(1768), 2, sym_line_comment, sym_block_comment, - ACTIONS(3838), 15, + ACTIONS(3846), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -154215,7 +155910,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3836), 23, + ACTIONS(3844), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -154239,61 +155934,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [47055] = 22, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [47423] = 21, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3744), 1, + ACTIONS(4095), 1, + anon_sym_EQ, + ACTIONS(4306), 1, anon_sym_LBRACK, - ACTIONS(3748), 1, + ACTIONS(4308), 1, anon_sym_QMARK, - ACTIONS(3750), 1, + ACTIONS(4310), 1, anon_sym_DOT, - ACTIONS(3862), 1, + ACTIONS(4312), 1, anon_sym_as, - ACTIONS(4040), 1, - anon_sym_AMP, - ACTIONS(4044), 1, + ACTIONS(4352), 1, anon_sym_CARET, - ACTIONS(4046), 1, + ACTIONS(4354), 1, + anon_sym_AMP, + ACTIONS(4356), 1, anon_sym_PIPE, - ACTIONS(4052), 1, + ACTIONS(4358), 1, anon_sym_AMP_AMP, - ACTIONS(4056), 1, + ACTIONS(4360), 1, anon_sym_PIPE_PIPE, - ACTIONS(4070), 1, - anon_sym_EQ, - ACTIONS(4140), 1, + ACTIONS(4368), 1, anon_sym_DOT_DOT, - ACTIONS(4038), 2, + ACTIONS(4348), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4042), 2, + ACTIONS(4362), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4050), 2, + ACTIONS(4366), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4142), 2, + ACTIONS(4370), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(4356), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(1763), 2, + STATE(1769), 2, sym_line_comment, sym_block_comment, - ACTIONS(4036), 3, + ACTIONS(4350), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4048), 4, + ACTIONS(4364), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4068), 10, + ACTIONS(4093), 12, + anon_sym_LPAREN, + anon_sym_EQ_GT, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -154304,15 +155998,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [47142] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [47508] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1764), 2, + STATE(1770), 2, sym_line_comment, sym_block_comment, - ACTIONS(1419), 15, + ACTIONS(3878), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -154328,7 +156022,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1417), 23, + ACTIONS(3876), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -154352,15 +156046,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [47195] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [47561] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1765), 2, + STATE(1771), 2, sym_line_comment, sym_block_comment, - ACTIONS(1499), 15, + ACTIONS(3854), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -154376,7 +156070,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1497), 23, + ACTIONS(3852), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -154400,61 +156094,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [47248] = 22, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [47614] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3744), 1, - anon_sym_LBRACK, - ACTIONS(3748), 1, - anon_sym_QMARK, - ACTIONS(3750), 1, - anon_sym_DOT, - ACTIONS(3862), 1, - anon_sym_as, - ACTIONS(4040), 1, - anon_sym_AMP, - ACTIONS(4044), 1, - anon_sym_CARET, - ACTIONS(4046), 1, - anon_sym_PIPE, - ACTIONS(4052), 1, - anon_sym_AMP_AMP, - ACTIONS(4056), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4070), 1, - anon_sym_EQ, - ACTIONS(4140), 1, - anon_sym_DOT_DOT, - ACTIONS(3940), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(4038), 2, + STATE(1772), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3858), 15, anon_sym_PLUS, + anon_sym_STAR, anon_sym_DASH, - ACTIONS(4042), 2, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4050), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4142), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1766), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4036), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4048), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4068), 10, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3856), 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, @@ -154465,15 +156135,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [47335] = 5, - ACTIONS(103), 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, + [47667] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1767), 2, + STATE(1773), 2, sym_line_comment, sym_block_comment, - ACTIONS(1463), 15, + ACTIONS(3862), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -154489,7 +156166,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1461), 23, + ACTIONS(3860), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -154513,15 +156190,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [47388] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [47720] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1768), 2, + STATE(1774), 2, sym_line_comment, sym_block_comment, - ACTIONS(3908), 15, + ACTIONS(3866), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -154537,7 +156214,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3906), 23, + ACTIONS(3864), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -154561,15 +156238,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [47441] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [47773] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1769), 2, + STATE(1775), 2, sym_line_comment, sym_block_comment, - ACTIONS(3932), 15, + ACTIONS(3870), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -154585,7 +156262,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3930), 23, + ACTIONS(3868), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -154609,15 +156286,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [47494] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [47826] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1770), 2, + STATE(1776), 2, sym_line_comment, sym_block_comment, - ACTIONS(1507), 15, + ACTIONS(3874), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -154633,7 +156310,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1505), 23, + ACTIONS(3872), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -154657,15 +156334,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [47547] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [47879] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1771), 2, + STATE(1777), 2, sym_line_comment, sym_block_comment, - ACTIONS(1511), 15, + ACTIONS(1472), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -154681,7 +156358,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1509), 23, + ACTIONS(1470), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -154705,15 +156382,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [47600] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [47932] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1772), 2, + STATE(1778), 2, sym_line_comment, sym_block_comment, - ACTIONS(1523), 15, + ACTIONS(3894), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -154729,7 +156406,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1521), 23, + ACTIONS(3892), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -154753,15 +156430,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [47653] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [47985] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1773), 2, + STATE(1779), 2, sym_line_comment, sym_block_comment, - ACTIONS(1491), 15, + ACTIONS(3898), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -154777,7 +156454,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1489), 23, + ACTIONS(3896), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -154801,15 +156478,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [47706] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [48038] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1774), 2, + STATE(1780), 2, sym_line_comment, sym_block_comment, - ACTIONS(1487), 15, + ACTIONS(3902), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -154825,7 +156502,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1485), 23, + ACTIONS(3900), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -154849,15 +156526,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [47759] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [48091] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1775), 2, + STATE(1781), 2, sym_line_comment, sym_block_comment, - ACTIONS(1519), 15, + ACTIONS(3910), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -154873,7 +156550,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1517), 23, + ACTIONS(3908), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -154897,15 +156574,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [47812] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [48144] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1776), 2, + STATE(1782), 2, sym_line_comment, sym_block_comment, - ACTIONS(993), 15, + ACTIONS(3914), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -154921,7 +156598,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(995), 23, + ACTIONS(3912), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -154945,15 +156622,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [47865] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [48197] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1777), 2, + STATE(1783), 2, sym_line_comment, sym_block_comment, - ACTIONS(997), 15, + ACTIONS(3946), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -154969,7 +156646,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(999), 23, + ACTIONS(3944), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -154993,15 +156670,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [47918] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [48250] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1778), 2, + STATE(1784), 2, sym_line_comment, sym_block_comment, - ACTIONS(1483), 15, + ACTIONS(3950), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -155017,7 +156694,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1481), 23, + ACTIONS(3948), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -155041,15 +156718,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [47971] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [48303] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1779), 2, + STATE(1785), 2, sym_line_comment, sym_block_comment, - ACTIONS(1003), 15, + ACTIONS(3906), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -155065,7 +156742,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1005), 23, + ACTIONS(3904), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -155089,61 +156766,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [48024] = 22, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [48356] = 23, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4268), 1, + ACTIONS(3796), 1, anon_sym_LBRACK, - ACTIONS(4274), 1, + ACTIONS(3800), 1, anon_sym_QMARK, - ACTIONS(4276), 1, + ACTIONS(3802), 1, + anon_sym_DOT, + ACTIONS(3976), 1, + anon_sym_as, + ACTIONS(4322), 1, anon_sym_CARET, - ACTIONS(4278), 1, + ACTIONS(4324), 1, anon_sym_AMP, - ACTIONS(4280), 1, + ACTIONS(4326), 1, anon_sym_PIPE, - ACTIONS(4288), 1, - anon_sym_DOT, - ACTIONS(4290), 1, - anon_sym_as, - ACTIONS(4340), 1, + ACTIONS(4328), 1, anon_sym_AMP_AMP, - ACTIONS(4342), 1, + ACTIONS(4330), 1, anon_sym_PIPE_PIPE, - ACTIONS(4344), 1, - anon_sym_DOT_DOT, - ACTIONS(4360), 1, + ACTIONS(4336), 1, anon_sym_EQ, - ACTIONS(4000), 2, - anon_sym_LPAREN, - anon_sym_EQ_GT, - ACTIONS(4270), 2, + ACTIONS(4380), 1, + anon_sym_LBRACE, + ACTIONS(4382), 1, + anon_sym_DOT_DOT, + STATE(415), 1, + sym_match_block, + ACTIONS(4318), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4282), 2, + ACTIONS(4332), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4286), 2, + ACTIONS(4340), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4346), 2, + ACTIONS(4384), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1780), 2, + STATE(1786), 2, sym_line_comment, sym_block_comment, - ACTIONS(4272), 3, + ACTIONS(4320), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4284), 4, + ACTIONS(4338), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4358), 10, + ACTIONS(4334), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -155154,15 +156832,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [48111] = 5, - ACTIONS(103), 1, + [48445] = 5, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + STATE(1787), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1588), 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(1590), 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, + [48498] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1781), 2, + STATE(1788), 2, sym_line_comment, sym_block_comment, - ACTIONS(1009), 15, + ACTIONS(1476), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -155178,7 +156904,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1011), 23, + ACTIONS(1474), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -155202,15 +156928,111 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [48164] = 5, - ACTIONS(103), 1, + [48551] = 5, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + STATE(1789), 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, + [48604] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1782), 2, + STATE(1790), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1528), 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(1526), 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, + [48657] = 5, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + STATE(1791), 2, sym_line_comment, sym_block_comment, - ACTIONS(3802), 15, + ACTIONS(1508), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -155226,7 +157048,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3800), 23, + ACTIONS(1506), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -155250,15 +157072,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [48217] = 5, - ACTIONS(103), 1, + [48710] = 5, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + STATE(1792), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1512), 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(1510), 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, + [48763] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1783), 2, + STATE(1793), 2, sym_line_comment, sym_block_comment, - ACTIONS(1473), 15, + ACTIONS(3922), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -155274,7 +157144,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1471), 23, + ACTIONS(3920), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -155298,61 +157168,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [48270] = 22, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [48816] = 22, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4268), 1, + ACTIONS(3796), 1, anon_sym_LBRACK, - ACTIONS(4274), 1, + ACTIONS(3800), 1, anon_sym_QMARK, - ACTIONS(4276), 1, + ACTIONS(3802), 1, + anon_sym_DOT, + ACTIONS(3976), 1, + anon_sym_as, + ACTIONS(4068), 1, anon_sym_CARET, - ACTIONS(4278), 1, + ACTIONS(4070), 1, anon_sym_AMP, - ACTIONS(4280), 1, + ACTIONS(4072), 1, anon_sym_PIPE, - ACTIONS(4288), 1, - anon_sym_DOT, - ACTIONS(4290), 1, - anon_sym_as, - ACTIONS(4340), 1, + ACTIONS(4074), 1, anon_sym_AMP_AMP, - ACTIONS(4342), 1, + ACTIONS(4076), 1, anon_sym_PIPE_PIPE, - ACTIONS(4344), 1, - anon_sym_DOT_DOT, - ACTIONS(4360), 1, + ACTIONS(4126), 1, anon_sym_EQ, - ACTIONS(3788), 2, - anon_sym_LPAREN, - anon_sym_EQ_GT, - ACTIONS(4270), 2, + ACTIONS(4172), 1, + anon_sym_DOT_DOT, + ACTIONS(3960), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(4064), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4282), 2, + ACTIONS(4078), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4286), 2, + ACTIONS(4084), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4346), 2, + ACTIONS(4174), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1784), 2, + STATE(1794), 2, sym_line_comment, sym_block_comment, - ACTIONS(4272), 3, + ACTIONS(4066), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4284), 4, + ACTIONS(4082), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4358), 10, + ACTIONS(4124), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -155363,37 +157233,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [48357] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [48903] = 21, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1785), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1017), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(3796), 1, + anon_sym_LBRACK, + ACTIONS(3800), 1, + anon_sym_QMARK, + ACTIONS(3802), 1, + anon_sym_DOT, + ACTIONS(3976), 1, + anon_sym_as, + ACTIONS(4186), 1, anon_sym_CARET, + ACTIONS(4188), 1, anon_sym_AMP, + ACTIONS(4190), 1, anon_sym_PIPE, + ACTIONS(4194), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4200), 1, + anon_sym_EQ, + ACTIONS(4206), 1, + anon_sym_DOT_DOT, + ACTIONS(4182), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4196), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4204), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1019), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, + ACTIONS(4208), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1795), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4184), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4386), 3, + anon_sym_LBRACE, anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_SQUOTE, + ACTIONS(4202), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4198), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -155404,22 +157297,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, - [48410] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [48988] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1786), 2, + STATE(1796), 2, sym_line_comment, sym_block_comment, - ACTIONS(1439), 15, + ACTIONS(3926), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -155435,7 +157321,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1437), 23, + ACTIONS(3924), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -155459,15 +157345,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [48463] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [49041] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1787), 2, + STATE(1797), 2, sym_line_comment, sym_block_comment, - ACTIONS(3427), 15, + ACTIONS(3750), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -155483,7 +157369,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3425), 23, + ACTIONS(3748), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -155507,15 +157393,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [48516] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [49094] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1788), 2, + STATE(1798), 2, sym_line_comment, sym_block_comment, - ACTIONS(3720), 15, + ACTIONS(1536), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -155531,7 +157417,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3718), 23, + ACTIONS(1534), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -155555,61 +157441,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [48569] = 22, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [49147] = 21, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4268), 1, + ACTIONS(4144), 1, + anon_sym_EQ, + ACTIONS(4306), 1, anon_sym_LBRACK, - ACTIONS(4274), 1, + ACTIONS(4308), 1, anon_sym_QMARK, - ACTIONS(4276), 1, + ACTIONS(4310), 1, + anon_sym_DOT, + ACTIONS(4312), 1, + anon_sym_as, + ACTIONS(4352), 1, anon_sym_CARET, - ACTIONS(4278), 1, + ACTIONS(4354), 1, anon_sym_AMP, - ACTIONS(4280), 1, + ACTIONS(4356), 1, anon_sym_PIPE, - ACTIONS(4288), 1, - anon_sym_DOT, - ACTIONS(4290), 1, - anon_sym_as, - ACTIONS(4340), 1, + ACTIONS(4358), 1, anon_sym_AMP_AMP, - ACTIONS(4342), 1, + ACTIONS(4360), 1, anon_sym_PIPE_PIPE, - ACTIONS(4344), 1, + ACTIONS(4368), 1, anon_sym_DOT_DOT, - ACTIONS(4360), 1, - anon_sym_EQ, - ACTIONS(3940), 2, - anon_sym_LPAREN, - anon_sym_EQ_GT, - ACTIONS(4270), 2, + ACTIONS(4348), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4282), 2, + ACTIONS(4362), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4286), 2, + ACTIONS(4366), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4346), 2, + ACTIONS(4370), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1789), 2, + STATE(1799), 2, sym_line_comment, sym_block_comment, - ACTIONS(4272), 3, + ACTIONS(4350), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4284), 4, + ACTIONS(4364), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4358), 10, + ACTIONS(4142), 12, + anon_sym_LPAREN, + anon_sym_EQ_GT, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -155620,15 +157505,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [48656] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [49232] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1790), 2, + STATE(1800), 2, sym_line_comment, sym_block_comment, - ACTIONS(3946), 15, + ACTIONS(1446), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -155644,7 +157529,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3944), 23, + ACTIONS(1444), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -155668,15 +157553,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [48709] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [49285] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1791), 2, + STATE(1801), 2, sym_line_comment, sym_block_comment, - ACTIONS(3782), 15, + ACTIONS(3930), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -155692,7 +157577,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3780), 23, + ACTIONS(3928), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -155716,15 +157601,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [48762] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [49338] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1792), 2, + STATE(1802), 2, sym_line_comment, sym_block_comment, - ACTIONS(3966), 15, + ACTIONS(1516), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -155740,7 +157625,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3964), 23, + ACTIONS(1514), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -155764,61 +157649,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [48815] = 22, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [49391] = 22, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3744), 1, + ACTIONS(3796), 1, anon_sym_LBRACK, - ACTIONS(3748), 1, + ACTIONS(3800), 1, anon_sym_QMARK, - ACTIONS(3750), 1, + ACTIONS(3802), 1, anon_sym_DOT, - ACTIONS(3862), 1, + ACTIONS(3976), 1, anon_sym_as, - ACTIONS(4296), 1, + ACTIONS(4068), 1, anon_sym_CARET, - ACTIONS(4298), 1, + ACTIONS(4070), 1, anon_sym_AMP, - ACTIONS(4300), 1, + ACTIONS(4072), 1, anon_sym_PIPE, - ACTIONS(4302), 1, + ACTIONS(4074), 1, anon_sym_AMP_AMP, - ACTIONS(4304), 1, + ACTIONS(4076), 1, anon_sym_PIPE_PIPE, - ACTIONS(4310), 1, + ACTIONS(4126), 1, anon_sym_EQ, - ACTIONS(4316), 1, + ACTIONS(4172), 1, anon_sym_DOT_DOT, - ACTIONS(4000), 2, - anon_sym_LPAREN, - anon_sym_LBRACE, - ACTIONS(4292), 2, + ACTIONS(3826), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(4064), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4306), 2, + ACTIONS(4078), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4314), 2, + ACTIONS(4084), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4318), 2, + ACTIONS(4174), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1793), 2, + STATE(1803), 2, sym_line_comment, sym_block_comment, - ACTIONS(4294), 3, + ACTIONS(4066), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4312), 4, + ACTIONS(4082), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4308), 10, + ACTIONS(4124), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -155829,21 +157714,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [48902] = 8, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [49478] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4268), 1, - anon_sym_LBRACK, - ACTIONS(4274), 1, - anon_sym_QMARK, - ACTIONS(4288), 1, - anon_sym_DOT, - STATE(1794), 2, + STATE(1804), 2, sym_line_comment, sym_block_comment, - ACTIONS(3950), 14, + ACTIONS(1532), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -155857,10 +157736,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(3948), 21, + ACTIONS(1530), 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, @@ -155880,20 +157762,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [48961] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [49531] = 10, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1795), 2, + ACTIONS(4306), 1, + anon_sym_LBRACK, + ACTIONS(4308), 1, + anon_sym_QMARK, + ACTIONS(4310), 1, + anon_sym_DOT, + ACTIONS(4312), 1, + anon_sym_as, + STATE(1805), 2, sym_line_comment, sym_block_comment, - ACTIONS(1045), 15, - anon_sym_PLUS, + ACTIONS(4350), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(3974), 11, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_CARET, anon_sym_AMP, anon_sym_PIPE, @@ -155902,13 +157793,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(1047), 23, + ACTIONS(3972), 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, @@ -155927,36 +157815,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, - [49014] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [49594] = 13, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1796), 2, + ACTIONS(4306), 1, + anon_sym_LBRACK, + ACTIONS(4308), 1, + anon_sym_QMARK, + ACTIONS(4310), 1, + anon_sym_DOT, + ACTIONS(4312), 1, + anon_sym_as, + ACTIONS(4354), 1, + anon_sym_AMP, + ACTIONS(4348), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4362), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + STATE(1806), 2, sym_line_comment, sym_block_comment, - ACTIONS(1049), 15, - anon_sym_PLUS, + ACTIONS(4350), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(3974), 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(1051), 23, + ACTIONS(3972), 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, @@ -155975,36 +157871,100 @@ 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, - [49067] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [49663] = 12, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1797), 2, + ACTIONS(4306), 1, + anon_sym_LBRACK, + ACTIONS(4308), 1, + anon_sym_QMARK, + ACTIONS(4310), 1, + anon_sym_DOT, + ACTIONS(4312), 1, + anon_sym_as, + ACTIONS(4348), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4362), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + STATE(1807), 2, sym_line_comment, sym_block_comment, - ACTIONS(3974), 15, - anon_sym_PLUS, + ACTIONS(4350), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(3974), 7, anon_sym_CARET, anon_sym_AMP, anon_sym_PIPE, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT_DOT, + ACTIONS(3972), 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, + [49730] = 14, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(4306), 1, + anon_sym_LBRACK, + ACTIONS(4308), 1, + anon_sym_QMARK, + ACTIONS(4310), 1, + anon_sym_DOT, + ACTIONS(4312), 1, + anon_sym_as, + ACTIONS(4352), 1, + anon_sym_CARET, + ACTIONS(4354), 1, + anon_sym_AMP, + ACTIONS(4348), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4362), 2, anon_sym_LT_LT, anon_sym_GT_GT, + STATE(1808), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4350), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3974), 5, + anon_sym_PIPE, anon_sym_EQ, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3972), 23, + ACTIONS(3972), 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, @@ -156023,36 +157983,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_as, - [49120] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [49801] = 17, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1798), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3978), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(4306), 1, + anon_sym_LBRACK, + ACTIONS(4308), 1, + anon_sym_QMARK, + ACTIONS(4310), 1, + anon_sym_DOT, + ACTIONS(4312), 1, + anon_sym_as, + ACTIONS(4352), 1, anon_sym_CARET, + ACTIONS(4354), 1, anon_sym_AMP, + ACTIONS(4356), 1, anon_sym_PIPE, + ACTIONS(3974), 2, + anon_sym_EQ, + anon_sym_DOT_DOT, + ACTIONS(4348), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4362), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4366), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3976), 23, + STATE(1809), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4350), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4364), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3972), 16, anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_EQ_GT, - anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -156065,27 +158041,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [49878] = 18, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(4306), 1, + anon_sym_LBRACK, + ACTIONS(4308), 1, + anon_sym_QMARK, + ACTIONS(4310), 1, + anon_sym_DOT, + ACTIONS(4312), 1, + anon_sym_as, + ACTIONS(4352), 1, + anon_sym_CARET, + ACTIONS(4354), 1, + anon_sym_AMP, + ACTIONS(4356), 1, + anon_sym_PIPE, + ACTIONS(4358), 1, + anon_sym_AMP_AMP, + ACTIONS(3974), 2, + anon_sym_EQ, + anon_sym_DOT_DOT, + ACTIONS(4348), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4362), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4366), 2, + anon_sym_GT, + anon_sym_LT, + STATE(1810), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4350), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4364), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, + ACTIONS(3972), 15, + anon_sym_LPAREN, + anon_sym_EQ_GT, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_as, - [49173] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [49957] = 11, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1799), 2, + ACTIONS(4306), 1, + anon_sym_LBRACK, + ACTIONS(4308), 1, + anon_sym_QMARK, + ACTIONS(4310), 1, + anon_sym_DOT, + ACTIONS(4312), 1, + anon_sym_as, + ACTIONS(4348), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1811), 2, sym_line_comment, sym_block_comment, - ACTIONS(3794), 15, - anon_sym_PLUS, + ACTIONS(4350), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(3974), 9, anon_sym_CARET, anon_sym_AMP, anon_sym_PIPE, @@ -156094,13 +158136,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(3792), 23, + ACTIONS(3972), 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, @@ -156119,55 +158158,58 @@ 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, - [49226] = 19, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [50022] = 21, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4268), 1, + ACTIONS(4103), 1, + anon_sym_EQ, + ACTIONS(4306), 1, anon_sym_LBRACK, - ACTIONS(4274), 1, + ACTIONS(4308), 1, anon_sym_QMARK, - ACTIONS(4276), 1, + ACTIONS(4310), 1, + anon_sym_DOT, + ACTIONS(4312), 1, + anon_sym_as, + ACTIONS(4352), 1, anon_sym_CARET, - ACTIONS(4278), 1, + ACTIONS(4354), 1, anon_sym_AMP, - ACTIONS(4280), 1, + ACTIONS(4356), 1, anon_sym_PIPE, - ACTIONS(4288), 1, - anon_sym_DOT, - ACTIONS(4290), 1, - anon_sym_as, - ACTIONS(4340), 1, + ACTIONS(4358), 1, anon_sym_AMP_AMP, - ACTIONS(4342), 1, + ACTIONS(4360), 1, anon_sym_PIPE_PIPE, - ACTIONS(381), 2, - anon_sym_EQ, + ACTIONS(4368), 1, anon_sym_DOT_DOT, - ACTIONS(4270), 2, + ACTIONS(4348), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4282), 2, + ACTIONS(4362), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4286), 2, + ACTIONS(4366), 2, anon_sym_GT, anon_sym_LT, - STATE(1800), 2, + ACTIONS(4370), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1812), 2, sym_line_comment, sym_block_comment, - ACTIONS(4272), 3, + ACTIONS(4350), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4284), 4, + ACTIONS(4364), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(379), 14, + ACTIONS(4101), 12, anon_sym_LPAREN, anon_sym_EQ_GT, anon_sym_PLUS_EQ, @@ -156180,63 +158222,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, - [49307] = 22, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [50107] = 21, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3744), 1, + ACTIONS(4107), 1, + anon_sym_EQ, + ACTIONS(4306), 1, anon_sym_LBRACK, - ACTIONS(3748), 1, + ACTIONS(4308), 1, anon_sym_QMARK, - ACTIONS(3750), 1, + ACTIONS(4310), 1, anon_sym_DOT, - ACTIONS(3862), 1, + ACTIONS(4312), 1, anon_sym_as, - ACTIONS(4040), 1, - anon_sym_AMP, - ACTIONS(4044), 1, + ACTIONS(4352), 1, anon_sym_CARET, - ACTIONS(4046), 1, + ACTIONS(4354), 1, + anon_sym_AMP, + ACTIONS(4356), 1, anon_sym_PIPE, - ACTIONS(4052), 1, + ACTIONS(4358), 1, anon_sym_AMP_AMP, - ACTIONS(4056), 1, + ACTIONS(4360), 1, anon_sym_PIPE_PIPE, - ACTIONS(4070), 1, - anon_sym_EQ, - ACTIONS(4140), 1, + ACTIONS(4368), 1, anon_sym_DOT_DOT, - ACTIONS(4038), 2, + ACTIONS(4348), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4042), 2, + ACTIONS(4362), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4050), 2, + ACTIONS(4366), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4142), 2, + ACTIONS(4370), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(4362), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(1801), 2, + STATE(1813), 2, sym_line_comment, sym_block_comment, - ACTIONS(4036), 3, + ACTIONS(4350), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4048), 4, + ACTIONS(4364), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4068), 10, + ACTIONS(4105), 12, + anon_sym_LPAREN, + anon_sym_EQ_GT, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -156247,61 +158286,114 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [49394] = 22, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [50192] = 15, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3744), 1, + ACTIONS(4306), 1, anon_sym_LBRACK, - ACTIONS(3748), 1, + ACTIONS(4308), 1, anon_sym_QMARK, - ACTIONS(3750), 1, + ACTIONS(4310), 1, anon_sym_DOT, - ACTIONS(3862), 1, + ACTIONS(4312), 1, anon_sym_as, - ACTIONS(4040), 1, + ACTIONS(4352), 1, + anon_sym_CARET, + ACTIONS(4354), 1, anon_sym_AMP, - ACTIONS(4044), 1, + ACTIONS(4356), 1, + anon_sym_PIPE, + ACTIONS(4348), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4362), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + STATE(1814), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4350), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3974), 4, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT_DOT, + ACTIONS(3972), 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, + [50265] = 19, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(4306), 1, + anon_sym_LBRACK, + ACTIONS(4308), 1, + anon_sym_QMARK, + ACTIONS(4310), 1, + anon_sym_DOT, + ACTIONS(4312), 1, + anon_sym_as, + ACTIONS(4352), 1, anon_sym_CARET, - ACTIONS(4046), 1, + ACTIONS(4354), 1, + anon_sym_AMP, + ACTIONS(4356), 1, anon_sym_PIPE, - ACTIONS(4052), 1, + ACTIONS(4358), 1, anon_sym_AMP_AMP, - ACTIONS(4056), 1, + ACTIONS(4360), 1, anon_sym_PIPE_PIPE, - ACTIONS(4070), 1, + ACTIONS(4080), 2, anon_sym_EQ, - ACTIONS(4140), 1, anon_sym_DOT_DOT, - ACTIONS(4038), 2, + ACTIONS(4348), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4042), 2, + ACTIONS(4362), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4050), 2, + ACTIONS(4366), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4142), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(4364), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(1802), 2, + STATE(1815), 2, sym_line_comment, sym_block_comment, - ACTIONS(4036), 3, + ACTIONS(4350), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4048), 4, + ACTIONS(4364), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4068), 10, + ACTIONS(4062), 14, + anon_sym_LPAREN, + anon_sym_EQ_GT, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -156312,15 +158404,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [49481] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [50346] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1803), 2, + STATE(1816), 2, sym_line_comment, sym_block_comment, - ACTIONS(3770), 15, + ACTIONS(3788), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -156336,7 +158430,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3768), 23, + ACTIONS(3786), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -156360,62 +158454,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [49534] = 23, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [50399] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3744), 1, - anon_sym_LBRACK, - ACTIONS(3748), 1, - anon_sym_QMARK, - ACTIONS(3750), 1, - anon_sym_DOT, - ACTIONS(3862), 1, - anon_sym_as, - ACTIONS(4296), 1, + STATE(1817), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3792), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4298), 1, anon_sym_AMP, - ACTIONS(4300), 1, anon_sym_PIPE, - ACTIONS(4302), 1, - anon_sym_AMP_AMP, - ACTIONS(4304), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4310), 1, - anon_sym_EQ, - ACTIONS(4366), 1, - anon_sym_LBRACE, - ACTIONS(4368), 1, - anon_sym_DOT_DOT, - STATE(417), 1, - sym_match_block, - ACTIONS(4292), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4306), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4314), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4370), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1804), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4294), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4312), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4308), 10, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3790), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -156426,62 +158495,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [49623] = 23, - ACTIONS(103), 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, + [50452] = 23, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3744), 1, + ACTIONS(294), 1, + anon_sym_RBRACE, + ACTIONS(3796), 1, anon_sym_LBRACK, - ACTIONS(3748), 1, + ACTIONS(3800), 1, anon_sym_QMARK, - ACTIONS(3750), 1, + ACTIONS(3802), 1, anon_sym_DOT, - ACTIONS(3862), 1, + ACTIONS(3976), 1, anon_sym_as, - ACTIONS(4040), 1, - anon_sym_AMP, - ACTIONS(4044), 1, + ACTIONS(4068), 1, anon_sym_CARET, - ACTIONS(4046), 1, + ACTIONS(4070), 1, + anon_sym_AMP, + ACTIONS(4072), 1, anon_sym_PIPE, - ACTIONS(4052), 1, + ACTIONS(4074), 1, anon_sym_AMP_AMP, - ACTIONS(4056), 1, + ACTIONS(4076), 1, anon_sym_PIPE_PIPE, - ACTIONS(4070), 1, + ACTIONS(4126), 1, anon_sym_EQ, - ACTIONS(4140), 1, + ACTIONS(4172), 1, anon_sym_DOT_DOT, - ACTIONS(4372), 1, - anon_sym_RPAREN, - ACTIONS(4374), 1, - anon_sym_COMMA, - ACTIONS(4038), 2, + ACTIONS(4294), 1, + anon_sym_SEMI, + ACTIONS(4064), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4042), 2, + ACTIONS(4078), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4050), 2, + ACTIONS(4084), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4142), 2, + ACTIONS(4174), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1805), 2, + STATE(1818), 2, sym_line_comment, sym_block_comment, - ACTIONS(4036), 3, + ACTIONS(4066), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4048), 4, + ACTIONS(4082), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4068), 10, + ACTIONS(4124), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -156492,15 +158568,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [49712] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [50541] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1806), 2, + STATE(1819), 2, sym_line_comment, sym_block_comment, - ACTIONS(3774), 15, + ACTIONS(1488), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -156516,7 +158592,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3772), 23, + ACTIONS(1486), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -156540,62 +158616,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [49765] = 23, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [50594] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3744), 1, - anon_sym_LBRACK, - ACTIONS(3748), 1, - anon_sym_QMARK, - ACTIONS(3750), 1, - anon_sym_DOT, - ACTIONS(3862), 1, - anon_sym_as, - ACTIONS(4040), 1, - anon_sym_AMP, - ACTIONS(4044), 1, - anon_sym_CARET, - ACTIONS(4046), 1, - anon_sym_PIPE, - ACTIONS(4052), 1, - anon_sym_AMP_AMP, - ACTIONS(4056), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4070), 1, - anon_sym_EQ, - ACTIONS(4140), 1, - anon_sym_DOT_DOT, - ACTIONS(4376), 1, - anon_sym_RBRACE, - ACTIONS(4378), 1, - anon_sym_COMMA, - ACTIONS(4038), 2, + STATE(1820), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1442), 15, anon_sym_PLUS, + anon_sym_STAR, anon_sym_DASH, - ACTIONS(4042), 2, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4050), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4142), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1807), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4036), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4048), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4068), 10, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1440), 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, @@ -156606,61 +158657,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [49854] = 22, - ACTIONS(103), 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, + [50647] = 22, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3744), 1, + ACTIONS(3796), 1, anon_sym_LBRACK, - ACTIONS(3748), 1, + ACTIONS(3800), 1, anon_sym_QMARK, - ACTIONS(3750), 1, + ACTIONS(3802), 1, anon_sym_DOT, - ACTIONS(3862), 1, + ACTIONS(3976), 1, anon_sym_as, - ACTIONS(4040), 1, - anon_sym_AMP, - ACTIONS(4044), 1, + ACTIONS(4068), 1, anon_sym_CARET, - ACTIONS(4046), 1, + ACTIONS(4070), 1, + anon_sym_AMP, + ACTIONS(4072), 1, anon_sym_PIPE, - ACTIONS(4052), 1, + ACTIONS(4074), 1, anon_sym_AMP_AMP, - ACTIONS(4056), 1, + ACTIONS(4076), 1, anon_sym_PIPE_PIPE, - ACTIONS(4070), 1, + ACTIONS(4126), 1, anon_sym_EQ, - ACTIONS(4140), 1, + ACTIONS(4172), 1, anon_sym_DOT_DOT, - ACTIONS(4038), 2, + ACTIONS(3876), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(4064), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4042), 2, + ACTIONS(4078), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4050), 2, + ACTIONS(4084), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4142), 2, + ACTIONS(4174), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(4380), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(1808), 2, + STATE(1821), 2, sym_line_comment, sym_block_comment, - ACTIONS(4036), 3, + ACTIONS(4066), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4048), 4, + ACTIONS(4082), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4068), 10, + ACTIONS(4124), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -156671,15 +158729,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [49941] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [50734] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1809), 2, + STATE(1822), 2, sym_line_comment, sym_block_comment, - ACTIONS(3300), 15, + ACTIONS(1464), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -156695,7 +158753,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3302), 23, + ACTIONS(1462), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -156719,15 +158777,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [49994] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [50787] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1810), 2, + STATE(1823), 2, sym_line_comment, sym_block_comment, - ACTIONS(3786), 15, + ACTIONS(3824), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -156743,7 +158801,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3784), 23, + ACTIONS(3822), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -156767,62 +158825,133 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [50047] = 23, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [50840] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3744), 1, - anon_sym_LBRACK, - ACTIONS(3748), 1, - anon_sym_QMARK, - ACTIONS(3750), 1, - anon_sym_DOT, - ACTIONS(3862), 1, - anon_sym_as, - ACTIONS(4296), 1, + STATE(1824), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3970), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4298), 1, anon_sym_AMP, - ACTIONS(4300), 1, anon_sym_PIPE, - ACTIONS(4302), 1, - anon_sym_AMP_AMP, - ACTIONS(4304), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4310), 1, - anon_sym_EQ, - ACTIONS(4368), 1, - anon_sym_DOT_DOT, - ACTIONS(4382), 1, - anon_sym_LBRACE, - STATE(1438), 1, - sym_match_block, - ACTIONS(4292), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4306), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4314), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4370), 2, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3968), 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(1811), 2, + anon_sym_as, + [50893] = 5, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + STATE(1825), 2, sym_line_comment, sym_block_comment, - ACTIONS(4294), 3, + ACTIONS(1492), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4312), 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(1490), 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(4308), 10, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [50946] = 5, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + STATE(1826), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1496), 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(1494), 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, @@ -156833,15 +158962,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [50136] = 5, - ACTIONS(103), 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, + [50999] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1812), 2, + STATE(1827), 2, sym_line_comment, sym_block_comment, - ACTIONS(3990), 15, + ACTIONS(1500), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -156857,7 +158993,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3988), 23, + ACTIONS(1498), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -156881,15 +159017,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [50189] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [51052] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1813), 2, + STATE(1828), 2, sym_line_comment, sym_block_comment, - ACTIONS(3451), 15, + ACTIONS(1524), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -156905,7 +159041,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3449), 23, + ACTIONS(1522), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -156929,15 +159065,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [50242] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [51105] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1814), 2, + STATE(1829), 2, sym_line_comment, sym_block_comment, - ACTIONS(3994), 15, + ACTIONS(1520), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -156953,7 +159089,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3992), 23, + ACTIONS(1518), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -156977,15 +159113,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [50295] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [51158] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1815), 2, + STATE(1830), 2, sym_line_comment, sym_block_comment, - ACTIONS(4002), 15, + ACTIONS(1504), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -157001,7 +159137,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(4000), 23, + ACTIONS(1502), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -157025,15 +159161,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [50348] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [51211] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1816), 2, + STATE(1831), 2, sym_line_comment, sym_block_comment, - ACTIONS(3998), 15, + ACTIONS(1000), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -157049,7 +159185,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3996), 23, + ACTIONS(1002), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -157073,127 +159209,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [50401] = 23, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [51264] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(297), 1, - anon_sym_RBRACE, - ACTIONS(3744), 1, - anon_sym_LBRACK, - ACTIONS(3748), 1, - anon_sym_QMARK, - ACTIONS(3750), 1, - anon_sym_DOT, - ACTIONS(3862), 1, - anon_sym_as, - ACTIONS(4040), 1, - anon_sym_AMP, - ACTIONS(4044), 1, - anon_sym_CARET, - ACTIONS(4046), 1, - anon_sym_PIPE, - ACTIONS(4052), 1, - anon_sym_AMP_AMP, - ACTIONS(4056), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4070), 1, - anon_sym_EQ, - ACTIONS(4140), 1, - anon_sym_DOT_DOT, - ACTIONS(4338), 1, - anon_sym_SEMI, - ACTIONS(4038), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4042), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4050), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4142), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1817), 2, + STATE(1832), 2, sym_line_comment, sym_block_comment, - ACTIONS(4036), 3, + ACTIONS(1006), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4048), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4068), 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, - [50490] = 22, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3744), 1, - anon_sym_LBRACK, - ACTIONS(3748), 1, - anon_sym_QMARK, - ACTIONS(3750), 1, - anon_sym_DOT, - ACTIONS(3862), 1, - anon_sym_as, - ACTIONS(4040), 1, - anon_sym_AMP, - ACTIONS(4044), 1, anon_sym_CARET, - ACTIONS(4046), 1, + anon_sym_AMP, anon_sym_PIPE, - ACTIONS(4052), 1, - anon_sym_AMP_AMP, - ACTIONS(4056), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4070), 1, - anon_sym_EQ, - ACTIONS(4140), 1, - anon_sym_DOT_DOT, - ACTIONS(4038), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4042), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4050), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4142), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(4384), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(1818), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4036), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4048), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4068), 10, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1008), 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, @@ -157204,15 +159250,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [50577] = 5, - ACTIONS(103), 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, + [51317] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1819), 2, + STATE(1833), 2, sym_line_comment, sym_block_comment, - ACTIONS(3443), 15, + ACTIONS(3882), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -157228,7 +159281,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3441), 23, + ACTIONS(3880), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -157252,127 +159305,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [50630] = 23, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [51370] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(1105), 1, - anon_sym_RPAREN, - ACTIONS(3744), 1, - anon_sym_LBRACK, - ACTIONS(3748), 1, - anon_sym_QMARK, - ACTIONS(3750), 1, - anon_sym_DOT, - ACTIONS(3862), 1, - anon_sym_as, - ACTIONS(4040), 1, - anon_sym_AMP, - ACTIONS(4044), 1, - anon_sym_CARET, - ACTIONS(4046), 1, - anon_sym_PIPE, - ACTIONS(4052), 1, - anon_sym_AMP_AMP, - ACTIONS(4056), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4070), 1, - anon_sym_EQ, - ACTIONS(4140), 1, - anon_sym_DOT_DOT, - ACTIONS(4330), 1, - anon_sym_COMMA, - ACTIONS(4038), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4042), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4050), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4142), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1820), 2, + STATE(1834), 2, sym_line_comment, sym_block_comment, - ACTIONS(4036), 3, + ACTIONS(1454), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4048), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4068), 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, - [50719] = 22, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3744), 1, - anon_sym_LBRACK, - ACTIONS(3748), 1, - anon_sym_QMARK, - ACTIONS(3750), 1, - anon_sym_DOT, - ACTIONS(3862), 1, - anon_sym_as, - ACTIONS(4040), 1, - anon_sym_AMP, - ACTIONS(4044), 1, anon_sym_CARET, - ACTIONS(4046), 1, + anon_sym_AMP, anon_sym_PIPE, - ACTIONS(4052), 1, - anon_sym_AMP_AMP, - ACTIONS(4056), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4070), 1, - anon_sym_EQ, - ACTIONS(4140), 1, - anon_sym_DOT_DOT, - ACTIONS(4038), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4042), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4050), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4142), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(4386), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(1821), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4036), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4048), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4068), 10, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1452), 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, @@ -157383,121 +159346,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [50806] = 17, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(103), 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, + [51423] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4206), 1, - sym_identifier, - ACTIONS(4208), 1, - anon_sym_LBRACE, - ACTIONS(4212), 1, - anon_sym_STAR, - ACTIONS(4218), 1, - anon_sym_COLON_COLON, - ACTIONS(4222), 1, - sym_metavariable, - ACTIONS(4388), 1, - anon_sym_RBRACE, - STATE(2516), 1, - sym_scoped_identifier, - STATE(3326), 1, - sym__use_clause, - STATE(3465), 1, - sym_generic_type_with_turbofish, - STATE(3688), 1, - sym_bracketed_type, - STATE(1822), 2, + STATE(1835), 2, sym_line_comment, sym_block_comment, - ACTIONS(4220), 3, - sym_self, - sym_super, - sym_crate, - STATE(3015), 4, - sym_scoped_use_list, - sym_use_list, - sym_use_as_clause, - sym_use_wildcard, - ACTIONS(4214), 20, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_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, - [50883] = 22, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3744), 1, - anon_sym_LBRACK, - ACTIONS(3748), 1, - anon_sym_QMARK, - ACTIONS(3750), 1, - anon_sym_DOT, - ACTIONS(3862), 1, - anon_sym_as, - ACTIONS(4040), 1, - anon_sym_AMP, - ACTIONS(4044), 1, - anon_sym_CARET, - ACTIONS(4046), 1, - anon_sym_PIPE, - ACTIONS(4052), 1, - anon_sym_AMP_AMP, - ACTIONS(4056), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4070), 1, - anon_sym_EQ, - ACTIONS(4140), 1, - anon_sym_DOT_DOT, - ACTIONS(4038), 2, + ACTIONS(1012), 15, anon_sym_PLUS, + anon_sym_STAR, anon_sym_DASH, - ACTIONS(4042), 2, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4050), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4142), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(4390), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(1823), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4036), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4048), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4068), 10, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1014), 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, @@ -157508,127 +159394,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [50970] = 23, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3744), 1, - anon_sym_LBRACK, - ACTIONS(3748), 1, - anon_sym_QMARK, - ACTIONS(3750), 1, - anon_sym_DOT, - ACTIONS(3862), 1, - anon_sym_as, - ACTIONS(4040), 1, - anon_sym_AMP, - ACTIONS(4044), 1, - anon_sym_CARET, - ACTIONS(4046), 1, - anon_sym_PIPE, - ACTIONS(4052), 1, - anon_sym_AMP_AMP, - ACTIONS(4056), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4070), 1, - anon_sym_EQ, - ACTIONS(4140), 1, - anon_sym_DOT_DOT, - ACTIONS(4392), 1, - anon_sym_SEMI, - ACTIONS(4394), 1, - anon_sym_else, - ACTIONS(4038), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4042), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4050), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4142), 2, + anon_sym_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(1824), 2, + anon_sym_as, + [51476] = 5, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + STATE(1836), 2, sym_line_comment, sym_block_comment, - ACTIONS(4036), 3, + ACTIONS(3942), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4048), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4068), 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, - [51059] = 22, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3744), 1, - anon_sym_LBRACK, - ACTIONS(3748), 1, - anon_sym_QMARK, - ACTIONS(3750), 1, - anon_sym_DOT, - ACTIONS(3862), 1, - anon_sym_as, - ACTIONS(4040), 1, - anon_sym_AMP, - ACTIONS(4044), 1, anon_sym_CARET, - ACTIONS(4046), 1, + anon_sym_AMP, anon_sym_PIPE, - ACTIONS(4052), 1, - anon_sym_AMP_AMP, - ACTIONS(4056), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4070), 1, - anon_sym_EQ, - ACTIONS(4140), 1, - anon_sym_DOT_DOT, - ACTIONS(4038), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4042), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4050), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4142), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(4396), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(1825), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4036), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4048), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4068), 10, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3940), 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, @@ -157639,15 +159442,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [51146] = 5, - ACTIONS(103), 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, + [51529] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1826), 2, + STATE(1837), 2, sym_line_comment, sym_block_comment, - ACTIONS(3724), 15, + ACTIONS(3954), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -157663,7 +159473,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3722), 23, + ACTIONS(3952), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -157687,62 +159497,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [51199] = 23, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [51582] = 22, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(299), 1, - anon_sym_RBRACE, - ACTIONS(3744), 1, + ACTIONS(4306), 1, anon_sym_LBRACK, - ACTIONS(3748), 1, + ACTIONS(4308), 1, anon_sym_QMARK, - ACTIONS(3750), 1, + ACTIONS(4310), 1, anon_sym_DOT, - ACTIONS(3862), 1, + ACTIONS(4312), 1, anon_sym_as, - ACTIONS(4040), 1, - anon_sym_AMP, - ACTIONS(4044), 1, + ACTIONS(4352), 1, anon_sym_CARET, - ACTIONS(4046), 1, + ACTIONS(4354), 1, + anon_sym_AMP, + ACTIONS(4356), 1, anon_sym_PIPE, - ACTIONS(4052), 1, + ACTIONS(4358), 1, anon_sym_AMP_AMP, - ACTIONS(4056), 1, + ACTIONS(4360), 1, anon_sym_PIPE_PIPE, - ACTIONS(4070), 1, - anon_sym_EQ, - ACTIONS(4140), 1, + ACTIONS(4368), 1, anon_sym_DOT_DOT, - ACTIONS(4338), 1, - anon_sym_SEMI, - ACTIONS(4038), 2, + ACTIONS(4390), 1, + anon_sym_EQ, + ACTIONS(3960), 2, + anon_sym_LPAREN, + anon_sym_EQ_GT, + ACTIONS(4348), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4042), 2, + ACTIONS(4362), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4050), 2, + ACTIONS(4366), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4142), 2, + ACTIONS(4370), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1827), 2, + STATE(1838), 2, sym_line_comment, sym_block_comment, - ACTIONS(4036), 3, + ACTIONS(4350), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4048), 4, + ACTIONS(4364), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4068), 10, + ACTIONS(4388), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -157753,15 +159562,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [51288] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [51669] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1828), 2, + STATE(1839), 2, sym_line_comment, sym_block_comment, - ACTIONS(3900), 15, + ACTIONS(1022), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -157777,7 +159586,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3898), 23, + ACTIONS(1024), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -157801,62 +159610,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [51341] = 23, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [51722] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(1063), 1, - anon_sym_RPAREN, - ACTIONS(3744), 1, - anon_sym_LBRACK, - ACTIONS(3748), 1, - anon_sym_QMARK, - ACTIONS(3750), 1, - anon_sym_DOT, - ACTIONS(3862), 1, - anon_sym_as, - ACTIONS(4040), 1, - anon_sym_AMP, - ACTIONS(4044), 1, - anon_sym_CARET, - ACTIONS(4046), 1, - anon_sym_PIPE, - ACTIONS(4052), 1, - anon_sym_AMP_AMP, - ACTIONS(4056), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4070), 1, - anon_sym_EQ, - ACTIONS(4140), 1, - anon_sym_DOT_DOT, - ACTIONS(4330), 1, - anon_sym_COMMA, - ACTIONS(4038), 2, + STATE(1840), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1484), 15, anon_sym_PLUS, + anon_sym_STAR, anon_sym_DASH, - ACTIONS(4042), 2, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4050), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4142), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1829), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4036), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4048), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4068), 10, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1482), 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, @@ -157867,60 +159651,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [51430] = 21, - ACTIONS(103), 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, + [51775] = 22, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3744), 1, + ACTIONS(4306), 1, anon_sym_LBRACK, - ACTIONS(3748), 1, + ACTIONS(4308), 1, anon_sym_QMARK, - ACTIONS(3750), 1, + ACTIONS(4310), 1, anon_sym_DOT, - ACTIONS(3862), 1, + ACTIONS(4312), 1, anon_sym_as, - ACTIONS(4096), 1, - anon_sym_EQ, - ACTIONS(4296), 1, + ACTIONS(4352), 1, anon_sym_CARET, - ACTIONS(4298), 1, + ACTIONS(4354), 1, anon_sym_AMP, - ACTIONS(4300), 1, + ACTIONS(4356), 1, anon_sym_PIPE, - ACTIONS(4302), 1, + ACTIONS(4358), 1, anon_sym_AMP_AMP, - ACTIONS(4304), 1, + ACTIONS(4360), 1, anon_sym_PIPE_PIPE, - ACTIONS(4316), 1, + ACTIONS(4368), 1, anon_sym_DOT_DOT, - ACTIONS(4292), 2, + ACTIONS(4390), 1, + anon_sym_EQ, + ACTIONS(3826), 2, + anon_sym_LPAREN, + anon_sym_EQ_GT, + ACTIONS(4348), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4306), 2, + ACTIONS(4362), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4314), 2, + ACTIONS(4366), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4318), 2, + ACTIONS(4370), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1830), 2, + STATE(1841), 2, sym_line_comment, sym_block_comment, - ACTIONS(4294), 3, + ACTIONS(4350), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4312), 4, + ACTIONS(4364), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4094), 12, - anon_sym_LPAREN, - anon_sym_LBRACE, + ACTIONS(4388), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -157931,62 +159723,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [51515] = 23, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [51862] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3744), 1, - anon_sym_LBRACK, - ACTIONS(3748), 1, - anon_sym_QMARK, - ACTIONS(3750), 1, - anon_sym_DOT, - ACTIONS(3862), 1, - anon_sym_as, - ACTIONS(4040), 1, - anon_sym_AMP, - ACTIONS(4044), 1, - anon_sym_CARET, - ACTIONS(4046), 1, - anon_sym_PIPE, - ACTIONS(4052), 1, - anon_sym_AMP_AMP, - ACTIONS(4056), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4070), 1, - anon_sym_EQ, - ACTIONS(4140), 1, - anon_sym_DOT_DOT, - ACTIONS(4398), 1, - anon_sym_SEMI, - ACTIONS(4400), 1, - anon_sym_else, - ACTIONS(4038), 2, + STATE(1842), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1026), 15, anon_sym_PLUS, + anon_sym_STAR, anon_sym_DASH, - ACTIONS(4042), 2, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4050), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4142), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1831), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4036), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4048), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4068), 10, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1028), 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, @@ -157997,62 +159764,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [51604] = 23, - ACTIONS(103), 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, + [51915] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3744), 1, - anon_sym_LBRACK, - ACTIONS(3748), 1, - anon_sym_QMARK, - ACTIONS(3750), 1, - anon_sym_DOT, - ACTIONS(3862), 1, - anon_sym_as, - ACTIONS(4040), 1, - anon_sym_AMP, - ACTIONS(4044), 1, - anon_sym_CARET, - ACTIONS(4046), 1, - anon_sym_PIPE, - ACTIONS(4052), 1, - anon_sym_AMP_AMP, - ACTIONS(4056), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4070), 1, - anon_sym_EQ, - ACTIONS(4140), 1, - anon_sym_DOT_DOT, - ACTIONS(4338), 1, - anon_sym_SEMI, - ACTIONS(4402), 1, - anon_sym_RBRACE, - ACTIONS(4038), 2, + STATE(1843), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1450), 15, anon_sym_PLUS, + anon_sym_STAR, anon_sym_DASH, - ACTIONS(4042), 2, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4050), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4142), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1832), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4036), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4048), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4068), 10, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1448), 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, @@ -158063,62 +159812,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [51693] = 23, - ACTIONS(103), 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, + [51968] = 22, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3744), 1, + ACTIONS(4306), 1, anon_sym_LBRACK, - ACTIONS(3748), 1, + ACTIONS(4308), 1, anon_sym_QMARK, - ACTIONS(3750), 1, + ACTIONS(4310), 1, anon_sym_DOT, - ACTIONS(3862), 1, + ACTIONS(4312), 1, anon_sym_as, - ACTIONS(4040), 1, - anon_sym_AMP, - ACTIONS(4044), 1, + ACTIONS(4352), 1, anon_sym_CARET, - ACTIONS(4046), 1, + ACTIONS(4354), 1, + anon_sym_AMP, + ACTIONS(4356), 1, anon_sym_PIPE, - ACTIONS(4052), 1, + ACTIONS(4358), 1, anon_sym_AMP_AMP, - ACTIONS(4056), 1, + ACTIONS(4360), 1, anon_sym_PIPE_PIPE, - ACTIONS(4070), 1, - anon_sym_EQ, - ACTIONS(4140), 1, + ACTIONS(4368), 1, anon_sym_DOT_DOT, - ACTIONS(4330), 1, - anon_sym_COMMA, - ACTIONS(4404), 1, - anon_sym_RPAREN, - ACTIONS(4038), 2, + ACTIONS(4390), 1, + anon_sym_EQ, + ACTIONS(3876), 2, + anon_sym_LPAREN, + anon_sym_EQ_GT, + ACTIONS(4348), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4042), 2, + ACTIONS(4362), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4050), 2, + ACTIONS(4366), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4142), 2, + ACTIONS(4370), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1833), 2, + STATE(1844), 2, sym_line_comment, sym_block_comment, - ACTIONS(4036), 3, + ACTIONS(4350), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4048), 4, + ACTIONS(4364), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4068), 10, + ACTIONS(4388), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -158129,62 +159884,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [51782] = 23, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [52055] = 23, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3744), 1, + ACTIONS(3796), 1, anon_sym_LBRACK, - ACTIONS(3748), 1, + ACTIONS(3800), 1, anon_sym_QMARK, - ACTIONS(3750), 1, + ACTIONS(3802), 1, anon_sym_DOT, - ACTIONS(3862), 1, + ACTIONS(3976), 1, anon_sym_as, - ACTIONS(4040), 1, - anon_sym_AMP, - ACTIONS(4044), 1, + ACTIONS(4068), 1, anon_sym_CARET, - ACTIONS(4046), 1, + ACTIONS(4070), 1, + anon_sym_AMP, + ACTIONS(4072), 1, anon_sym_PIPE, - ACTIONS(4052), 1, + ACTIONS(4074), 1, anon_sym_AMP_AMP, - ACTIONS(4056), 1, + ACTIONS(4076), 1, anon_sym_PIPE_PIPE, - ACTIONS(4070), 1, + ACTIONS(4126), 1, anon_sym_EQ, - ACTIONS(4140), 1, + ACTIONS(4172), 1, anon_sym_DOT_DOT, - ACTIONS(4406), 1, + ACTIONS(4392), 1, anon_sym_SEMI, - ACTIONS(4408), 1, + ACTIONS(4394), 1, anon_sym_else, - ACTIONS(4038), 2, + ACTIONS(4064), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4042), 2, + ACTIONS(4078), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4050), 2, + ACTIONS(4084), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4142), 2, + ACTIONS(4174), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1834), 2, + STATE(1845), 2, sym_line_comment, sym_block_comment, - ACTIONS(4036), 3, + ACTIONS(4066), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4048), 4, + ACTIONS(4082), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4068), 10, + ACTIONS(4124), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -158195,61 +159950,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [51871] = 22, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [52144] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3744), 1, - anon_sym_LBRACK, - ACTIONS(3748), 1, - anon_sym_QMARK, - ACTIONS(3750), 1, - anon_sym_DOT, - ACTIONS(3862), 1, - anon_sym_as, - ACTIONS(4296), 1, + STATE(1846), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3958), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4298), 1, anon_sym_AMP, - ACTIONS(4300), 1, anon_sym_PIPE, - ACTIONS(4302), 1, - anon_sym_AMP_AMP, - ACTIONS(4304), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4310), 1, - anon_sym_EQ, - ACTIONS(4316), 1, - anon_sym_DOT_DOT, - ACTIONS(3788), 2, - anon_sym_LPAREN, - anon_sym_LBRACE, - ACTIONS(4292), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4306), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4314), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4318), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1835), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4294), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4312), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4308), 10, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3956), 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, @@ -158260,62 +159991,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [51958] = 23, - ACTIONS(103), 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, + [52197] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3744), 1, - anon_sym_LBRACK, - ACTIONS(3748), 1, - anon_sym_QMARK, - ACTIONS(3750), 1, - anon_sym_DOT, - ACTIONS(3862), 1, - anon_sym_as, - ACTIONS(4040), 1, - anon_sym_AMP, - ACTIONS(4044), 1, - anon_sym_CARET, - ACTIONS(4046), 1, - anon_sym_PIPE, - ACTIONS(4052), 1, - anon_sym_AMP_AMP, - ACTIONS(4056), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4070), 1, - anon_sym_EQ, - ACTIONS(4140), 1, - anon_sym_DOT_DOT, - ACTIONS(4330), 1, - anon_sym_COMMA, - ACTIONS(4410), 1, - anon_sym_RPAREN, - ACTIONS(4038), 2, + STATE(1847), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3918), 15, anon_sym_PLUS, + anon_sym_STAR, anon_sym_DASH, - ACTIONS(4042), 2, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4050), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4142), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1836), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4036), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4048), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4068), 10, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3916), 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, @@ -158326,62 +160039,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [52047] = 23, - ACTIONS(103), 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, + [52250] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3744), 1, - anon_sym_LBRACK, - ACTIONS(3748), 1, - anon_sym_QMARK, - ACTIONS(3750), 1, - anon_sym_DOT, - ACTIONS(3862), 1, - anon_sym_as, - ACTIONS(4040), 1, - anon_sym_AMP, - ACTIONS(4044), 1, - anon_sym_CARET, - ACTIONS(4046), 1, - anon_sym_PIPE, - ACTIONS(4052), 1, - anon_sym_AMP_AMP, - ACTIONS(4056), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4070), 1, - anon_sym_EQ, - ACTIONS(4140), 1, - anon_sym_DOT_DOT, - ACTIONS(4412), 1, - anon_sym_SEMI, - ACTIONS(4414), 1, - anon_sym_else, - ACTIONS(4038), 2, + STATE(1848), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3934), 15, anon_sym_PLUS, + anon_sym_STAR, anon_sym_DASH, - ACTIONS(4042), 2, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4050), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4142), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1837), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4036), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4048), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4068), 10, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3932), 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, @@ -158392,15 +160087,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [52136] = 5, - ACTIONS(103), 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, + [52303] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1838), 2, + STATE(1849), 2, sym_line_comment, sym_block_comment, - ACTIONS(3866), 15, + ACTIONS(3938), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -158416,7 +160118,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3864), 23, + ACTIONS(3936), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -158440,15 +160142,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [52189] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [52356] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1839), 2, + STATE(1850), 2, sym_line_comment, sym_block_comment, - ACTIONS(3806), 15, + ACTIONS(1042), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -158464,7 +160166,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3804), 23, + ACTIONS(1044), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -158488,62 +160190,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [52242] = 23, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [52409] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(303), 1, - anon_sym_RBRACE, - ACTIONS(3744), 1, - anon_sym_LBRACK, - ACTIONS(3748), 1, - anon_sym_QMARK, - ACTIONS(3750), 1, - anon_sym_DOT, - ACTIONS(3862), 1, - anon_sym_as, - ACTIONS(4040), 1, - anon_sym_AMP, - ACTIONS(4044), 1, - anon_sym_CARET, - ACTIONS(4046), 1, - anon_sym_PIPE, - ACTIONS(4052), 1, - anon_sym_AMP_AMP, - ACTIONS(4056), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4070), 1, - anon_sym_EQ, - ACTIONS(4140), 1, - anon_sym_DOT_DOT, - ACTIONS(4338), 1, - anon_sym_SEMI, - ACTIONS(4038), 2, + STATE(1851), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1046), 15, anon_sym_PLUS, + anon_sym_STAR, anon_sym_DASH, - ACTIONS(4042), 2, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4050), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4142), 2, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1048), 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(1840), 2, + anon_sym_as, + [52462] = 5, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + STATE(1852), 2, sym_line_comment, sym_block_comment, - ACTIONS(4036), 3, + ACTIONS(3962), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4048), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4068), 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(3960), 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, @@ -158554,15 +160279,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [52331] = 5, - ACTIONS(103), 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, + [52515] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1841), 2, + STATE(1853), 2, sym_line_comment, sym_block_comment, - ACTIONS(3822), 15, + ACTIONS(1472), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -158578,7 +160310,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3820), 23, + ACTIONS(1470), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -158595,22 +160327,88 @@ 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, - [52384] = 5, - ACTIONS(103), 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, + [52568] = 23, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(3796), 1, + anon_sym_LBRACK, + ACTIONS(3800), 1, + anon_sym_QMARK, + ACTIONS(3802), 1, + anon_sym_DOT, + ACTIONS(3976), 1, + anon_sym_as, + ACTIONS(4068), 1, + anon_sym_CARET, + ACTIONS(4070), 1, + anon_sym_AMP, + ACTIONS(4072), 1, + anon_sym_PIPE, + ACTIONS(4074), 1, + anon_sym_AMP_AMP, + ACTIONS(4076), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4126), 1, + anon_sym_EQ, + ACTIONS(4172), 1, + anon_sym_DOT_DOT, + ACTIONS(4396), 1, + anon_sym_RPAREN, + ACTIONS(4398), 1, + anon_sym_COMMA, + ACTIONS(4064), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4078), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4084), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4174), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1854), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4066), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4082), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4124), 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, + [52657] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1842), 2, + STATE(1855), 2, sym_line_comment, sym_block_comment, - ACTIONS(3962), 15, + ACTIONS(3986), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -158626,7 +160424,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3960), 23, + ACTIONS(3984), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -158650,60 +160448,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [52437] = 21, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [52710] = 23, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4092), 1, - anon_sym_EQ, - ACTIONS(4268), 1, + ACTIONS(300), 1, + anon_sym_RBRACE, + ACTIONS(3796), 1, anon_sym_LBRACK, - ACTIONS(4274), 1, + ACTIONS(3800), 1, anon_sym_QMARK, - ACTIONS(4276), 1, + ACTIONS(3802), 1, + anon_sym_DOT, + ACTIONS(3976), 1, + anon_sym_as, + ACTIONS(4068), 1, anon_sym_CARET, - ACTIONS(4278), 1, + ACTIONS(4070), 1, anon_sym_AMP, - ACTIONS(4280), 1, + ACTIONS(4072), 1, anon_sym_PIPE, - ACTIONS(4288), 1, - anon_sym_DOT, - ACTIONS(4290), 1, - anon_sym_as, - ACTIONS(4340), 1, + ACTIONS(4074), 1, anon_sym_AMP_AMP, - ACTIONS(4342), 1, + ACTIONS(4076), 1, anon_sym_PIPE_PIPE, - ACTIONS(4344), 1, + ACTIONS(4126), 1, + anon_sym_EQ, + ACTIONS(4172), 1, anon_sym_DOT_DOT, - ACTIONS(4270), 2, + ACTIONS(4294), 1, + anon_sym_SEMI, + ACTIONS(4064), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4282), 2, + ACTIONS(4078), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4286), 2, + ACTIONS(4084), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4346), 2, + ACTIONS(4174), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1843), 2, + STATE(1856), 2, sym_line_comment, sym_block_comment, - ACTIONS(4272), 3, + ACTIONS(4066), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4284), 4, + ACTIONS(4082), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4090), 12, - anon_sym_LPAREN, - anon_sym_EQ_GT, + ACTIONS(4124), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -158714,15 +160514,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [52522] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [52799] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1844), 2, + STATE(1857), 2, sym_line_comment, sym_block_comment, - ACTIONS(3728), 15, + ACTIONS(3990), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -158738,7 +160538,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3726), 23, + ACTIONS(3988), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -158762,56 +160562,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [52575] = 19, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [52852] = 23, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3744), 1, + ACTIONS(3796), 1, anon_sym_LBRACK, - ACTIONS(3748), 1, + ACTIONS(3800), 1, anon_sym_QMARK, - ACTIONS(3750), 1, + ACTIONS(3802), 1, anon_sym_DOT, - ACTIONS(3862), 1, + ACTIONS(3976), 1, anon_sym_as, - ACTIONS(4296), 1, + ACTIONS(4068), 1, anon_sym_CARET, - ACTIONS(4298), 1, + ACTIONS(4070), 1, anon_sym_AMP, - ACTIONS(4300), 1, + ACTIONS(4072), 1, anon_sym_PIPE, - ACTIONS(4302), 1, + ACTIONS(4074), 1, anon_sym_AMP_AMP, - ACTIONS(4304), 1, + ACTIONS(4076), 1, anon_sym_PIPE_PIPE, - ACTIONS(381), 2, + ACTIONS(4126), 1, anon_sym_EQ, + ACTIONS(4172), 1, anon_sym_DOT_DOT, - ACTIONS(4292), 2, + ACTIONS(4400), 1, + anon_sym_SEMI, + ACTIONS(4402), 1, + anon_sym_else, + ACTIONS(4064), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4306), 2, + ACTIONS(4078), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4314), 2, + ACTIONS(4084), 2, anon_sym_GT, anon_sym_LT, - STATE(1845), 2, + ACTIONS(4174), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1858), 2, sym_line_comment, sym_block_comment, - ACTIONS(4294), 3, + ACTIONS(4066), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4312), 4, + ACTIONS(4082), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(379), 14, - anon_sym_LPAREN, - anon_sym_LBRACE, + ACTIONS(4124), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -158822,62 +160628,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [52656] = 21, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [52941] = 23, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(347), 1, - anon_sym_EQ, - ACTIONS(3744), 1, + ACTIONS(3796), 1, anon_sym_LBRACK, - ACTIONS(3748), 1, + ACTIONS(3800), 1, anon_sym_QMARK, - ACTIONS(3750), 1, + ACTIONS(3802), 1, anon_sym_DOT, - ACTIONS(3862), 1, + ACTIONS(3976), 1, anon_sym_as, - ACTIONS(4296), 1, + ACTIONS(4322), 1, anon_sym_CARET, - ACTIONS(4298), 1, + ACTIONS(4324), 1, anon_sym_AMP, - ACTIONS(4300), 1, + ACTIONS(4326), 1, anon_sym_PIPE, - ACTIONS(4302), 1, + ACTIONS(4328), 1, anon_sym_AMP_AMP, - ACTIONS(4304), 1, + ACTIONS(4330), 1, anon_sym_PIPE_PIPE, - ACTIONS(4316), 1, + ACTIONS(4336), 1, + anon_sym_EQ, + ACTIONS(4382), 1, anon_sym_DOT_DOT, - ACTIONS(4292), 2, + ACTIONS(4404), 1, + anon_sym_LBRACE, + STATE(1434), 1, + sym_match_block, + ACTIONS(4318), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4306), 2, + ACTIONS(4332), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4314), 2, + ACTIONS(4340), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4318), 2, + ACTIONS(4384), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1846), 2, + STATE(1859), 2, sym_line_comment, sym_block_comment, - ACTIONS(4294), 3, + ACTIONS(4320), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4312), 4, + ACTIONS(4338), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(341), 12, - anon_sym_LPAREN, - anon_sym_LBRACE, + ACTIONS(4334), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -158888,62 +160694,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [52741] = 23, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [53030] = 21, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3744), 1, + ACTIONS(3796), 1, anon_sym_LBRACK, - ACTIONS(3748), 1, + ACTIONS(3800), 1, anon_sym_QMARK, - ACTIONS(3750), 1, + ACTIONS(3802), 1, anon_sym_DOT, - ACTIONS(3862), 1, + ACTIONS(3976), 1, anon_sym_as, - ACTIONS(4296), 1, + ACTIONS(4186), 1, anon_sym_CARET, - ACTIONS(4298), 1, + ACTIONS(4188), 1, anon_sym_AMP, - ACTIONS(4300), 1, + ACTIONS(4190), 1, anon_sym_PIPE, - ACTIONS(4302), 1, - anon_sym_AMP_AMP, - ACTIONS(4304), 1, + ACTIONS(4194), 1, anon_sym_PIPE_PIPE, - ACTIONS(4310), 1, + ACTIONS(4200), 1, anon_sym_EQ, - ACTIONS(4368), 1, + ACTIONS(4206), 1, anon_sym_DOT_DOT, - ACTIONS(4416), 1, - anon_sym_LBRACE, - STATE(481), 1, - sym_match_block, - ACTIONS(4292), 2, + ACTIONS(4182), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4306), 2, + ACTIONS(4196), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4314), 2, + ACTIONS(4204), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4370), 2, + ACTIONS(4208), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1847), 2, + STATE(1860), 2, sym_line_comment, sym_block_comment, - ACTIONS(4294), 3, + ACTIONS(4184), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4312), 4, + ACTIONS(4406), 3, + anon_sym_LBRACE, + anon_sym_AMP_AMP, + anon_sym_SQUOTE, + ACTIONS(4202), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4308), 10, + ACTIONS(4198), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -158954,60 +160758,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [52830] = 21, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [53115] = 8, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3744), 1, + ACTIONS(4306), 1, anon_sym_LBRACK, - ACTIONS(3748), 1, + ACTIONS(4308), 1, anon_sym_QMARK, - ACTIONS(3750), 1, + ACTIONS(4310), 1, anon_sym_DOT, - ACTIONS(3862), 1, - anon_sym_as, - ACTIONS(4088), 1, - anon_sym_EQ, - ACTIONS(4296), 1, + STATE(1861), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3998), 14, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4298), 1, anon_sym_AMP, - ACTIONS(4300), 1, anon_sym_PIPE, - ACTIONS(4302), 1, - anon_sym_AMP_AMP, - ACTIONS(4304), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4316), 1, - anon_sym_DOT_DOT, - ACTIONS(4292), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4306), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4314), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4318), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1848), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4294), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4312), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4086), 12, + anon_sym_DOT_DOT, + ACTIONS(3996), 21, anon_sym_LPAREN, - anon_sym_LBRACE, + anon_sym_EQ_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -159018,60 +160802,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [52915] = 21, - ACTIONS(103), 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, + [53174] = 23, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3744), 1, + ACTIONS(302), 1, + anon_sym_RBRACE, + ACTIONS(3796), 1, anon_sym_LBRACK, - ACTIONS(3748), 1, + ACTIONS(3800), 1, anon_sym_QMARK, - ACTIONS(3750), 1, + ACTIONS(3802), 1, anon_sym_DOT, - ACTIONS(3862), 1, + ACTIONS(3976), 1, anon_sym_as, - ACTIONS(4092), 1, - anon_sym_EQ, - ACTIONS(4296), 1, + ACTIONS(4068), 1, anon_sym_CARET, - ACTIONS(4298), 1, + ACTIONS(4070), 1, anon_sym_AMP, - ACTIONS(4300), 1, + ACTIONS(4072), 1, anon_sym_PIPE, - ACTIONS(4302), 1, + ACTIONS(4074), 1, anon_sym_AMP_AMP, - ACTIONS(4304), 1, + ACTIONS(4076), 1, anon_sym_PIPE_PIPE, - ACTIONS(4316), 1, + ACTIONS(4126), 1, + anon_sym_EQ, + ACTIONS(4172), 1, anon_sym_DOT_DOT, - ACTIONS(4292), 2, + ACTIONS(4294), 1, + anon_sym_SEMI, + ACTIONS(4064), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4306), 2, + ACTIONS(4078), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4314), 2, + ACTIONS(4084), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4318), 2, + ACTIONS(4174), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1849), 2, + STATE(1862), 2, sym_line_comment, sym_block_comment, - ACTIONS(4294), 3, + ACTIONS(4066), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4312), 4, + ACTIONS(4082), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4090), 12, - anon_sym_LPAREN, - anon_sym_LBRACE, + ACTIONS(4124), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -159082,62 +160875,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [53000] = 23, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [53263] = 23, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(305), 1, - anon_sym_RBRACE, - ACTIONS(3744), 1, + ACTIONS(1194), 1, + anon_sym_RPAREN, + ACTIONS(3796), 1, anon_sym_LBRACK, - ACTIONS(3748), 1, + ACTIONS(3800), 1, anon_sym_QMARK, - ACTIONS(3750), 1, + ACTIONS(3802), 1, anon_sym_DOT, - ACTIONS(3862), 1, + ACTIONS(3976), 1, anon_sym_as, - ACTIONS(4040), 1, - anon_sym_AMP, - ACTIONS(4044), 1, + ACTIONS(4068), 1, anon_sym_CARET, - ACTIONS(4046), 1, + ACTIONS(4070), 1, + anon_sym_AMP, + ACTIONS(4072), 1, anon_sym_PIPE, - ACTIONS(4052), 1, + ACTIONS(4074), 1, anon_sym_AMP_AMP, - ACTIONS(4056), 1, + ACTIONS(4076), 1, anon_sym_PIPE_PIPE, - ACTIONS(4070), 1, + ACTIONS(4126), 1, anon_sym_EQ, - ACTIONS(4140), 1, + ACTIONS(4172), 1, anon_sym_DOT_DOT, - ACTIONS(4338), 1, - anon_sym_SEMI, - ACTIONS(4038), 2, + ACTIONS(4304), 1, + anon_sym_COMMA, + ACTIONS(4064), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4042), 2, + ACTIONS(4078), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4050), 2, + ACTIONS(4084), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4142), 2, + ACTIONS(4174), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1850), 2, + STATE(1863), 2, sym_line_comment, sym_block_comment, - ACTIONS(4036), 3, + ACTIONS(4066), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4048), 4, + ACTIONS(4082), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4068), 10, + ACTIONS(4124), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -159148,15 +160941,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [53089] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [53352] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1851), 2, + STATE(1864), 2, sym_line_comment, sym_block_comment, - ACTIONS(4020), 15, + ACTIONS(4010), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -159172,7 +160965,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(4018), 23, + ACTIONS(4008), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -159196,62 +160989,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [53142] = 23, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [53405] = 23, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(291), 1, - anon_sym_RBRACE, - ACTIONS(3744), 1, + ACTIONS(3796), 1, anon_sym_LBRACK, - ACTIONS(3748), 1, + ACTIONS(3800), 1, anon_sym_QMARK, - ACTIONS(3750), 1, + ACTIONS(3802), 1, anon_sym_DOT, - ACTIONS(3862), 1, + ACTIONS(3976), 1, anon_sym_as, - ACTIONS(4040), 1, - anon_sym_AMP, - ACTIONS(4044), 1, + ACTIONS(4068), 1, anon_sym_CARET, - ACTIONS(4046), 1, + ACTIONS(4070), 1, + anon_sym_AMP, + ACTIONS(4072), 1, anon_sym_PIPE, - ACTIONS(4052), 1, + ACTIONS(4074), 1, anon_sym_AMP_AMP, - ACTIONS(4056), 1, + ACTIONS(4076), 1, anon_sym_PIPE_PIPE, - ACTIONS(4070), 1, + ACTIONS(4126), 1, anon_sym_EQ, - ACTIONS(4140), 1, + ACTIONS(4172), 1, anon_sym_DOT_DOT, - ACTIONS(4338), 1, - anon_sym_SEMI, - ACTIONS(4038), 2, + ACTIONS(4408), 1, + anon_sym_RPAREN, + ACTIONS(4410), 1, + anon_sym_COMMA, + ACTIONS(4064), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4042), 2, + ACTIONS(4078), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4050), 2, + ACTIONS(4084), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4142), 2, + ACTIONS(4174), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1852), 2, + STATE(1865), 2, sym_line_comment, sym_block_comment, - ACTIONS(4036), 3, + ACTIONS(4066), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4048), 4, + ACTIONS(4082), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4068), 10, + ACTIONS(4124), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -159262,29 +161055,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [53231] = 10, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [53494] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3744), 1, - anon_sym_LBRACK, - ACTIONS(3748), 1, - anon_sym_QMARK, - ACTIONS(3750), 1, - anon_sym_DOT, - ACTIONS(3862), 1, - anon_sym_as, - STATE(1853), 2, + STATE(1866), 2, sym_line_comment, sym_block_comment, - ACTIONS(4294), 3, + ACTIONS(4022), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3860), 11, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_CARET, anon_sym_AMP, anon_sym_PIPE, @@ -159293,10 +161077,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(3858), 20, + ACTIONS(4020), 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, @@ -159315,46 +161102,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [53294] = 13, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + anon_sym_as, + [53547] = 23, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3744), 1, + ACTIONS(3796), 1, anon_sym_LBRACK, - ACTIONS(3748), 1, + ACTIONS(3800), 1, anon_sym_QMARK, - ACTIONS(3750), 1, + ACTIONS(3802), 1, anon_sym_DOT, - ACTIONS(3862), 1, + ACTIONS(3976), 1, anon_sym_as, - ACTIONS(4298), 1, + ACTIONS(4068), 1, + anon_sym_CARET, + ACTIONS(4070), 1, anon_sym_AMP, - ACTIONS(4292), 2, + ACTIONS(4072), 1, + anon_sym_PIPE, + ACTIONS(4074), 1, + anon_sym_AMP_AMP, + ACTIONS(4076), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4126), 1, + anon_sym_EQ, + ACTIONS(4172), 1, + anon_sym_DOT_DOT, + ACTIONS(4412), 1, + anon_sym_SEMI, + ACTIONS(4414), 1, + anon_sym_else, + ACTIONS(4064), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4306), 2, + ACTIONS(4078), 2, anon_sym_LT_LT, anon_sym_GT_GT, - STATE(1854), 2, + ACTIONS(4084), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4174), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1867), 2, sym_line_comment, sym_block_comment, - ACTIONS(4294), 3, + ACTIONS(4066), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3860), 6, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT_DOT, - ACTIONS(3858), 20, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4082), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4124), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -159365,43 +161169,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, - [53363] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [53636] = 23, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1855), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3848), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(3796), 1, + anon_sym_LBRACK, + ACTIONS(3800), 1, + anon_sym_QMARK, + ACTIONS(3802), 1, + anon_sym_DOT, + ACTIONS(3976), 1, + anon_sym_as, + ACTIONS(4068), 1, anon_sym_CARET, + ACTIONS(4070), 1, anon_sym_AMP, + ACTIONS(4072), 1, anon_sym_PIPE, + ACTIONS(4074), 1, + anon_sym_AMP_AMP, + ACTIONS(4076), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4126), 1, + anon_sym_EQ, + ACTIONS(4172), 1, + anon_sym_DOT_DOT, + ACTIONS(4416), 1, + anon_sym_SEMI, + ACTIONS(4418), 1, + anon_sym_else, + ACTIONS(4064), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4078), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4084), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3844), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4174), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1868), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4066), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4082), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4124), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -159412,52 +161235,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, - [53416] = 12, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [53725] = 23, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3744), 1, + ACTIONS(304), 1, + anon_sym_RBRACE, + ACTIONS(3796), 1, anon_sym_LBRACK, - ACTIONS(3748), 1, + ACTIONS(3800), 1, anon_sym_QMARK, - ACTIONS(3750), 1, + ACTIONS(3802), 1, anon_sym_DOT, - ACTIONS(3862), 1, + ACTIONS(3976), 1, anon_sym_as, - ACTIONS(4292), 2, + ACTIONS(4068), 1, + anon_sym_CARET, + ACTIONS(4070), 1, + anon_sym_AMP, + ACTIONS(4072), 1, + anon_sym_PIPE, + ACTIONS(4074), 1, + anon_sym_AMP_AMP, + ACTIONS(4076), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4126), 1, + anon_sym_EQ, + ACTIONS(4172), 1, + anon_sym_DOT_DOT, + ACTIONS(4294), 1, + anon_sym_SEMI, + ACTIONS(4064), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4306), 2, + ACTIONS(4078), 2, anon_sym_LT_LT, anon_sym_GT_GT, - STATE(1856), 2, + ACTIONS(4084), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4174), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1869), 2, sym_line_comment, sym_block_comment, - ACTIONS(4294), 3, + ACTIONS(4066), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3860), 7, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT_DOT, - ACTIONS(3858), 20, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4082), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4124), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -159468,68 +161301,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, - [53483] = 23, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [53814] = 23, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(307), 1, - anon_sym_RBRACE, - ACTIONS(3744), 1, + ACTIONS(1230), 1, + anon_sym_RPAREN, + ACTIONS(3796), 1, anon_sym_LBRACK, - ACTIONS(3748), 1, + ACTIONS(3800), 1, anon_sym_QMARK, - ACTIONS(3750), 1, + ACTIONS(3802), 1, anon_sym_DOT, - ACTIONS(3862), 1, + ACTIONS(3976), 1, anon_sym_as, - ACTIONS(4040), 1, - anon_sym_AMP, - ACTIONS(4044), 1, + ACTIONS(4068), 1, anon_sym_CARET, - ACTIONS(4046), 1, + ACTIONS(4070), 1, + anon_sym_AMP, + ACTIONS(4072), 1, anon_sym_PIPE, - ACTIONS(4052), 1, + ACTIONS(4074), 1, anon_sym_AMP_AMP, - ACTIONS(4056), 1, + ACTIONS(4076), 1, anon_sym_PIPE_PIPE, - ACTIONS(4070), 1, + ACTIONS(4126), 1, anon_sym_EQ, - ACTIONS(4140), 1, + ACTIONS(4172), 1, anon_sym_DOT_DOT, - ACTIONS(4338), 1, - anon_sym_SEMI, - ACTIONS(4038), 2, + ACTIONS(4304), 1, + anon_sym_COMMA, + ACTIONS(4064), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4042), 2, + ACTIONS(4078), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4050), 2, + ACTIONS(4084), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4142), 2, + ACTIONS(4174), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1857), 2, + STATE(1870), 2, sym_line_comment, sym_block_comment, - ACTIONS(4036), 3, + ACTIONS(4066), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4048), 4, + ACTIONS(4082), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4068), 10, + ACTIONS(4124), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -159540,47 +161367,122 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [53572] = 14, - ACTIONS(103), 1, + [53903] = 17, + ACTIONS(29), 1, + anon_sym_LT, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(4254), 1, + sym_identifier, + ACTIONS(4256), 1, + anon_sym_LBRACE, + ACTIONS(4260), 1, + anon_sym_STAR, + ACTIONS(4266), 1, + anon_sym_COLON_COLON, + ACTIONS(4270), 1, + sym_metavariable, + ACTIONS(4420), 1, + anon_sym_RBRACE, + STATE(2479), 1, + sym_scoped_identifier, + STATE(3196), 1, + sym__use_clause, + STATE(3604), 1, + sym_generic_type_with_turbofish, + STATE(3752), 1, + sym_bracketed_type, + STATE(1871), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4268), 3, + sym_self, + sym_super, + sym_crate, + STATE(2981), 4, + sym_scoped_use_list, + sym_use_list, + sym_use_as_clause, + sym_use_wildcard, + ACTIONS(4262), 20, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_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, + [53980] = 23, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3744), 1, + ACTIONS(3796), 1, anon_sym_LBRACK, - ACTIONS(3748), 1, + ACTIONS(3800), 1, anon_sym_QMARK, - ACTIONS(3750), 1, + ACTIONS(3802), 1, anon_sym_DOT, - ACTIONS(3862), 1, + ACTIONS(3976), 1, anon_sym_as, - ACTIONS(4296), 1, + ACTIONS(4068), 1, anon_sym_CARET, - ACTIONS(4298), 1, + ACTIONS(4070), 1, anon_sym_AMP, - ACTIONS(4292), 2, + ACTIONS(4072), 1, + anon_sym_PIPE, + ACTIONS(4074), 1, + anon_sym_AMP_AMP, + ACTIONS(4076), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4126), 1, + anon_sym_EQ, + ACTIONS(4172), 1, + anon_sym_DOT_DOT, + ACTIONS(4422), 1, + anon_sym_SEMI, + ACTIONS(4424), 1, + anon_sym_else, + ACTIONS(4064), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4306), 2, + ACTIONS(4078), 2, anon_sym_LT_LT, anon_sym_GT_GT, - STATE(1858), 2, + ACTIONS(4084), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4174), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1872), 2, sym_line_comment, sym_block_comment, - ACTIONS(4294), 3, + ACTIONS(4066), 3, anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3860), 5, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT_DOT, - ACTIONS(3858), 20, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_PERCENT, + ACTIONS(4082), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4124), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -159591,68 +161493,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, - [53643] = 23, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [54069] = 23, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3744), 1, + ACTIONS(3796), 1, anon_sym_LBRACK, - ACTIONS(3748), 1, + ACTIONS(3800), 1, anon_sym_QMARK, - ACTIONS(3750), 1, + ACTIONS(3802), 1, anon_sym_DOT, - ACTIONS(3862), 1, + ACTIONS(3976), 1, anon_sym_as, - ACTIONS(4040), 1, - anon_sym_AMP, - ACTIONS(4044), 1, + ACTIONS(4068), 1, anon_sym_CARET, - ACTIONS(4046), 1, + ACTIONS(4070), 1, + anon_sym_AMP, + ACTIONS(4072), 1, anon_sym_PIPE, - ACTIONS(4052), 1, + ACTIONS(4074), 1, anon_sym_AMP_AMP, - ACTIONS(4056), 1, + ACTIONS(4076), 1, anon_sym_PIPE_PIPE, - ACTIONS(4070), 1, + ACTIONS(4126), 1, anon_sym_EQ, - ACTIONS(4140), 1, + ACTIONS(4172), 1, anon_sym_DOT_DOT, - ACTIONS(4338), 1, + ACTIONS(4294), 1, anon_sym_SEMI, - ACTIONS(4418), 1, + ACTIONS(4426), 1, anon_sym_RBRACE, - ACTIONS(4038), 2, + ACTIONS(4064), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4042), 2, + ACTIONS(4078), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4050), 2, + ACTIONS(4084), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4142), 2, + ACTIONS(4174), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1859), 2, + STATE(1873), 2, sym_line_comment, sym_block_comment, - ACTIONS(4036), 3, + ACTIONS(4066), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4048), 4, + ACTIONS(4082), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4068), 10, + ACTIONS(4124), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -159663,54 +161559,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [53732] = 17, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [54158] = 22, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3744), 1, + ACTIONS(3796), 1, anon_sym_LBRACK, - ACTIONS(3748), 1, + ACTIONS(3800), 1, anon_sym_QMARK, - ACTIONS(3750), 1, + ACTIONS(3802), 1, anon_sym_DOT, - ACTIONS(3862), 1, + ACTIONS(3976), 1, anon_sym_as, - ACTIONS(4296), 1, + ACTIONS(4068), 1, anon_sym_CARET, - ACTIONS(4298), 1, + ACTIONS(4070), 1, anon_sym_AMP, - ACTIONS(4300), 1, + ACTIONS(4072), 1, anon_sym_PIPE, - ACTIONS(3860), 2, + ACTIONS(4074), 1, + anon_sym_AMP_AMP, + ACTIONS(4076), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4126), 1, anon_sym_EQ, + ACTIONS(4172), 1, anon_sym_DOT_DOT, - ACTIONS(4292), 2, + ACTIONS(4064), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4306), 2, + ACTIONS(4078), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4314), 2, + ACTIONS(4084), 2, anon_sym_GT, anon_sym_LT, - STATE(1860), 2, + ACTIONS(4174), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(4428), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(1874), 2, sym_line_comment, sym_block_comment, - ACTIONS(4294), 3, + ACTIONS(4066), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4312), 4, + ACTIONS(4082), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3858), 16, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4124), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -159721,64 +161624,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, - [53809] = 23, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [54245] = 22, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(311), 1, - anon_sym_RBRACE, - ACTIONS(3744), 1, + ACTIONS(3796), 1, anon_sym_LBRACK, - ACTIONS(3748), 1, + ACTIONS(3800), 1, anon_sym_QMARK, - ACTIONS(3750), 1, + ACTIONS(3802), 1, anon_sym_DOT, - ACTIONS(3862), 1, + ACTIONS(3976), 1, anon_sym_as, - ACTIONS(4040), 1, - anon_sym_AMP, - ACTIONS(4044), 1, + ACTIONS(4068), 1, anon_sym_CARET, - ACTIONS(4046), 1, + ACTIONS(4070), 1, + anon_sym_AMP, + ACTIONS(4072), 1, anon_sym_PIPE, - ACTIONS(4052), 1, + ACTIONS(4074), 1, anon_sym_AMP_AMP, - ACTIONS(4056), 1, + ACTIONS(4076), 1, anon_sym_PIPE_PIPE, - ACTIONS(4070), 1, + ACTIONS(4126), 1, anon_sym_EQ, - ACTIONS(4140), 1, + ACTIONS(4172), 1, anon_sym_DOT_DOT, - ACTIONS(4338), 1, - anon_sym_SEMI, - ACTIONS(4038), 2, + ACTIONS(4064), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4042), 2, + ACTIONS(4078), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4050), 2, + ACTIONS(4084), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4142), 2, + ACTIONS(4174), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1861), 2, + ACTIONS(4430), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(1875), 2, sym_line_comment, sym_block_comment, - ACTIONS(4036), 3, + ACTIONS(4066), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4048), 4, + ACTIONS(4082), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4068), 10, + ACTIONS(4124), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -159789,62 +161689,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [53898] = 23, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [54332] = 23, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3744), 1, + ACTIONS(3796), 1, anon_sym_LBRACK, - ACTIONS(3748), 1, + ACTIONS(3800), 1, anon_sym_QMARK, - ACTIONS(3750), 1, + ACTIONS(3802), 1, anon_sym_DOT, - ACTIONS(3862), 1, + ACTIONS(3976), 1, anon_sym_as, - ACTIONS(4296), 1, + ACTIONS(4068), 1, anon_sym_CARET, - ACTIONS(4298), 1, + ACTIONS(4070), 1, anon_sym_AMP, - ACTIONS(4300), 1, + ACTIONS(4072), 1, anon_sym_PIPE, - ACTIONS(4302), 1, + ACTIONS(4074), 1, anon_sym_AMP_AMP, - ACTIONS(4304), 1, + ACTIONS(4076), 1, anon_sym_PIPE_PIPE, - ACTIONS(4310), 1, + ACTIONS(4126), 1, anon_sym_EQ, - ACTIONS(4368), 1, + ACTIONS(4172), 1, anon_sym_DOT_DOT, - ACTIONS(4420), 1, - anon_sym_LBRACE, - STATE(1745), 1, - sym_match_block, - ACTIONS(4292), 2, + ACTIONS(4304), 1, + anon_sym_COMMA, + ACTIONS(4432), 1, + anon_sym_RPAREN, + ACTIONS(4064), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4306), 2, + ACTIONS(4078), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4314), 2, + ACTIONS(4084), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4370), 2, + ACTIONS(4174), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1862), 2, + STATE(1876), 2, sym_line_comment, sym_block_comment, - ACTIONS(4294), 3, + ACTIONS(4066), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4312), 4, + ACTIONS(4082), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4308), 10, + ACTIONS(4124), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -159855,62 +161755,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [53987] = 23, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [54421] = 23, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(313), 1, - anon_sym_RBRACE, - ACTIONS(3744), 1, + ACTIONS(3796), 1, anon_sym_LBRACK, - ACTIONS(3748), 1, + ACTIONS(3800), 1, anon_sym_QMARK, - ACTIONS(3750), 1, + ACTIONS(3802), 1, anon_sym_DOT, - ACTIONS(3862), 1, + ACTIONS(3976), 1, anon_sym_as, - ACTIONS(4040), 1, - anon_sym_AMP, - ACTIONS(4044), 1, + ACTIONS(4068), 1, anon_sym_CARET, - ACTIONS(4046), 1, + ACTIONS(4070), 1, + anon_sym_AMP, + ACTIONS(4072), 1, anon_sym_PIPE, - ACTIONS(4052), 1, + ACTIONS(4074), 1, anon_sym_AMP_AMP, - ACTIONS(4056), 1, + ACTIONS(4076), 1, anon_sym_PIPE_PIPE, - ACTIONS(4070), 1, + ACTIONS(4126), 1, anon_sym_EQ, - ACTIONS(4140), 1, + ACTIONS(4172), 1, anon_sym_DOT_DOT, - ACTIONS(4338), 1, + ACTIONS(4434), 1, anon_sym_SEMI, - ACTIONS(4038), 2, + ACTIONS(4436), 1, + anon_sym_else, + ACTIONS(4064), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4042), 2, + ACTIONS(4078), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4050), 2, + ACTIONS(4084), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4142), 2, + ACTIONS(4174), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1863), 2, + STATE(1877), 2, sym_line_comment, sym_block_comment, - ACTIONS(4036), 3, + ACTIONS(4066), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4048), 4, + ACTIONS(4082), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4068), 10, + ACTIONS(4124), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -159921,62 +161821,110 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [54076] = 23, - ACTIONS(103), 1, + [54510] = 5, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + STATE(1878), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4038), 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(4036), 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, + [54563] = 23, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3744), 1, + ACTIONS(3796), 1, anon_sym_LBRACK, - ACTIONS(3748), 1, + ACTIONS(3800), 1, anon_sym_QMARK, - ACTIONS(3750), 1, + ACTIONS(3802), 1, anon_sym_DOT, - ACTIONS(3862), 1, + ACTIONS(3976), 1, anon_sym_as, - ACTIONS(4040), 1, - anon_sym_AMP, - ACTIONS(4044), 1, + ACTIONS(4068), 1, anon_sym_CARET, - ACTIONS(4046), 1, + ACTIONS(4070), 1, + anon_sym_AMP, + ACTIONS(4072), 1, anon_sym_PIPE, - ACTIONS(4052), 1, + ACTIONS(4074), 1, anon_sym_AMP_AMP, - ACTIONS(4056), 1, + ACTIONS(4076), 1, anon_sym_PIPE_PIPE, - ACTIONS(4070), 1, + ACTIONS(4126), 1, anon_sym_EQ, - ACTIONS(4140), 1, + ACTIONS(4172), 1, anon_sym_DOT_DOT, - ACTIONS(4422), 1, - anon_sym_RBRACE, - ACTIONS(4424), 1, - anon_sym_COMMA, - ACTIONS(4038), 2, + ACTIONS(4438), 1, + anon_sym_SEMI, + ACTIONS(4440), 1, + anon_sym_else, + ACTIONS(4064), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4042), 2, + ACTIONS(4078), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4050), 2, + ACTIONS(4084), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4142), 2, + ACTIONS(4174), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1864), 2, + STATE(1879), 2, sym_line_comment, sym_block_comment, - ACTIONS(4036), 3, + ACTIONS(4066), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4048), 4, + ACTIONS(4082), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4068), 10, + ACTIONS(4124), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -159987,62 +161935,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [54165] = 23, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [54652] = 23, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(1225), 1, - anon_sym_RPAREN, - ACTIONS(3744), 1, + ACTIONS(3796), 1, anon_sym_LBRACK, - ACTIONS(3748), 1, + ACTIONS(3800), 1, anon_sym_QMARK, - ACTIONS(3750), 1, + ACTIONS(3802), 1, anon_sym_DOT, - ACTIONS(3862), 1, + ACTIONS(3976), 1, anon_sym_as, - ACTIONS(4040), 1, - anon_sym_AMP, - ACTIONS(4044), 1, + ACTIONS(4068), 1, anon_sym_CARET, - ACTIONS(4046), 1, + ACTIONS(4070), 1, + anon_sym_AMP, + ACTIONS(4072), 1, anon_sym_PIPE, - ACTIONS(4052), 1, + ACTIONS(4074), 1, anon_sym_AMP_AMP, - ACTIONS(4056), 1, + ACTIONS(4076), 1, anon_sym_PIPE_PIPE, - ACTIONS(4070), 1, + ACTIONS(4126), 1, anon_sym_EQ, - ACTIONS(4140), 1, + ACTIONS(4172), 1, anon_sym_DOT_DOT, - ACTIONS(4330), 1, + ACTIONS(4442), 1, + anon_sym_RBRACE, + ACTIONS(4444), 1, anon_sym_COMMA, - ACTIONS(4038), 2, + ACTIONS(4064), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4042), 2, + ACTIONS(4078), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4050), 2, + ACTIONS(4084), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4142), 2, + ACTIONS(4174), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1865), 2, + STATE(1880), 2, sym_line_comment, sym_block_comment, - ACTIONS(4036), 3, + ACTIONS(4066), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4048), 4, + ACTIONS(4082), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4068), 10, + ACTIONS(4124), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -160053,55 +162001,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [54254] = 18, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [54741] = 23, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3744), 1, + ACTIONS(308), 1, + anon_sym_RBRACE, + ACTIONS(3796), 1, anon_sym_LBRACK, - ACTIONS(3748), 1, + ACTIONS(3800), 1, anon_sym_QMARK, - ACTIONS(3750), 1, + ACTIONS(3802), 1, anon_sym_DOT, - ACTIONS(3862), 1, + ACTIONS(3976), 1, anon_sym_as, - ACTIONS(4296), 1, + ACTIONS(4068), 1, anon_sym_CARET, - ACTIONS(4298), 1, + ACTIONS(4070), 1, anon_sym_AMP, - ACTIONS(4300), 1, + ACTIONS(4072), 1, anon_sym_PIPE, - ACTIONS(4302), 1, + ACTIONS(4074), 1, anon_sym_AMP_AMP, - ACTIONS(3860), 2, + ACTIONS(4076), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4126), 1, anon_sym_EQ, + ACTIONS(4172), 1, anon_sym_DOT_DOT, - ACTIONS(4292), 2, + ACTIONS(4294), 1, + anon_sym_SEMI, + ACTIONS(4064), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4306), 2, + ACTIONS(4078), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4314), 2, + ACTIONS(4084), 2, anon_sym_GT, anon_sym_LT, - STATE(1866), 2, + ACTIONS(4174), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1881), 2, sym_line_comment, sym_block_comment, - ACTIONS(4294), 3, + ACTIONS(4066), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4312), 4, + ACTIONS(4082), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3858), 15, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_PIPE_PIPE, + ACTIONS(4124), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -160112,64 +162067,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [54333] = 23, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [54830] = 23, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(315), 1, + ACTIONS(129), 1, anon_sym_RBRACE, - ACTIONS(3744), 1, + ACTIONS(3796), 1, anon_sym_LBRACK, - ACTIONS(3748), 1, + ACTIONS(3800), 1, anon_sym_QMARK, - ACTIONS(3750), 1, + ACTIONS(3802), 1, anon_sym_DOT, - ACTIONS(3862), 1, + ACTIONS(3976), 1, anon_sym_as, - ACTIONS(4040), 1, - anon_sym_AMP, - ACTIONS(4044), 1, + ACTIONS(4068), 1, anon_sym_CARET, - ACTIONS(4046), 1, + ACTIONS(4070), 1, + anon_sym_AMP, + ACTIONS(4072), 1, anon_sym_PIPE, - ACTIONS(4052), 1, + ACTIONS(4074), 1, anon_sym_AMP_AMP, - ACTIONS(4056), 1, + ACTIONS(4076), 1, anon_sym_PIPE_PIPE, - ACTIONS(4070), 1, + ACTIONS(4126), 1, anon_sym_EQ, - ACTIONS(4140), 1, + ACTIONS(4172), 1, anon_sym_DOT_DOT, - ACTIONS(4338), 1, + ACTIONS(4294), 1, anon_sym_SEMI, - ACTIONS(4038), 2, + ACTIONS(4064), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4042), 2, + ACTIONS(4078), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4050), 2, + ACTIONS(4084), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4142), 2, + ACTIONS(4174), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1867), 2, + STATE(1882), 2, sym_line_comment, sym_block_comment, - ACTIONS(4036), 3, + ACTIONS(4066), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4048), 4, + ACTIONS(4082), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4068), 10, + ACTIONS(4124), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -160180,15 +162133,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [54422] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [54919] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1868), 2, + STATE(1883), 2, sym_line_comment, sym_block_comment, - ACTIONS(3888), 15, + ACTIONS(4042), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -160204,7 +162157,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3886), 23, + ACTIONS(4040), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -160228,62 +162181,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [54475] = 23, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [54972] = 19, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3744), 1, + ACTIONS(3796), 1, anon_sym_LBRACK, - ACTIONS(3748), 1, + ACTIONS(3800), 1, anon_sym_QMARK, - ACTIONS(3750), 1, + ACTIONS(3802), 1, anon_sym_DOT, - ACTIONS(3862), 1, + ACTIONS(3976), 1, anon_sym_as, - ACTIONS(4040), 1, - anon_sym_AMP, - ACTIONS(4044), 1, + ACTIONS(4322), 1, anon_sym_CARET, - ACTIONS(4046), 1, + ACTIONS(4324), 1, + anon_sym_AMP, + ACTIONS(4326), 1, anon_sym_PIPE, - ACTIONS(4052), 1, + ACTIONS(4328), 1, anon_sym_AMP_AMP, - ACTIONS(4056), 1, + ACTIONS(4330), 1, anon_sym_PIPE_PIPE, - ACTIONS(4070), 1, + ACTIONS(386), 2, anon_sym_EQ, - ACTIONS(4140), 1, anon_sym_DOT_DOT, - ACTIONS(4338), 1, - anon_sym_SEMI, - ACTIONS(4426), 1, - anon_sym_RBRACE, - ACTIONS(4038), 2, + ACTIONS(4318), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4042), 2, + ACTIONS(4332), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4050), 2, + ACTIONS(4340), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4142), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1869), 2, + STATE(1884), 2, sym_line_comment, sym_block_comment, - ACTIONS(4036), 3, + ACTIONS(4320), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4048), 4, + ACTIONS(4338), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4068), 10, + ACTIONS(384), 14, + anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -160294,44 +162241,128 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [54564] = 11, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [55053] = 21, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3744), 1, + ACTIONS(352), 1, + anon_sym_EQ, + ACTIONS(3796), 1, anon_sym_LBRACK, - ACTIONS(3748), 1, + ACTIONS(3800), 1, anon_sym_QMARK, - ACTIONS(3750), 1, + ACTIONS(3802), 1, anon_sym_DOT, - ACTIONS(3862), 1, + ACTIONS(3976), 1, anon_sym_as, - ACTIONS(4292), 2, + ACTIONS(4322), 1, + anon_sym_CARET, + ACTIONS(4324), 1, + anon_sym_AMP, + ACTIONS(4326), 1, + anon_sym_PIPE, + ACTIONS(4328), 1, + anon_sym_AMP_AMP, + ACTIONS(4330), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4342), 1, + anon_sym_DOT_DOT, + ACTIONS(4318), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1870), 2, + ACTIONS(4332), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4340), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4344), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1885), 2, sym_line_comment, sym_block_comment, - ACTIONS(4294), 3, + ACTIONS(4320), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3860), 9, + ACTIONS(4338), 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_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, + [55138] = 23, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(3796), 1, + anon_sym_LBRACK, + ACTIONS(3800), 1, + anon_sym_QMARK, + ACTIONS(3802), 1, + anon_sym_DOT, + ACTIONS(3976), 1, + anon_sym_as, + ACTIONS(4322), 1, anon_sym_CARET, + ACTIONS(4324), 1, anon_sym_AMP, + ACTIONS(4326), 1, anon_sym_PIPE, + ACTIONS(4328), 1, + anon_sym_AMP_AMP, + ACTIONS(4330), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4336), 1, + anon_sym_EQ, + ACTIONS(4382), 1, + anon_sym_DOT_DOT, + ACTIONS(4446), 1, + anon_sym_LBRACE, + STATE(473), 1, + sym_match_block, + ACTIONS(4318), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4332), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4340), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT_DOT, - ACTIONS(3858), 20, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4384), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1886), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4320), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4338), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4334), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -160342,64 +162373,122 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, + [55227] = 21, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(3796), 1, + anon_sym_LBRACK, + ACTIONS(3800), 1, + anon_sym_QMARK, + ACTIONS(3802), 1, + anon_sym_DOT, + ACTIONS(3976), 1, + anon_sym_as, + ACTIONS(4130), 1, + anon_sym_EQ, + ACTIONS(4322), 1, + anon_sym_CARET, + ACTIONS(4324), 1, + anon_sym_AMP, + ACTIONS(4326), 1, + anon_sym_PIPE, + ACTIONS(4328), 1, + anon_sym_AMP_AMP, + ACTIONS(4330), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4342), 1, + anon_sym_DOT_DOT, + ACTIONS(4318), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4332), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4340), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4344), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1887), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4320), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4338), 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, - [54629] = 21, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + ACTIONS(4128), 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, + [55312] = 21, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3744), 1, + ACTIONS(3796), 1, anon_sym_LBRACK, - ACTIONS(3748), 1, + ACTIONS(3800), 1, anon_sym_QMARK, - ACTIONS(3750), 1, + ACTIONS(3802), 1, anon_sym_DOT, - ACTIONS(3862), 1, + ACTIONS(3976), 1, anon_sym_as, - ACTIONS(4058), 1, + ACTIONS(4095), 1, anon_sym_EQ, - ACTIONS(4296), 1, + ACTIONS(4322), 1, anon_sym_CARET, - ACTIONS(4298), 1, + ACTIONS(4324), 1, anon_sym_AMP, - ACTIONS(4300), 1, + ACTIONS(4326), 1, anon_sym_PIPE, - ACTIONS(4302), 1, + ACTIONS(4328), 1, anon_sym_AMP_AMP, - ACTIONS(4304), 1, + ACTIONS(4330), 1, anon_sym_PIPE_PIPE, - ACTIONS(4316), 1, + ACTIONS(4342), 1, anon_sym_DOT_DOT, - ACTIONS(4292), 2, + ACTIONS(4318), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4306), 2, + ACTIONS(4332), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4314), 2, + ACTIONS(4340), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4318), 2, + ACTIONS(4344), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1871), 2, + STATE(1888), 2, sym_line_comment, sym_block_comment, - ACTIONS(4294), 3, + ACTIONS(4320), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4312), 4, + ACTIONS(4338), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4054), 12, + ACTIONS(4093), 12, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_PLUS_EQ, @@ -160412,15 +162501,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [54714] = 5, - ACTIONS(103), 1, + [55397] = 23, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(310), 1, + anon_sym_RBRACE, + ACTIONS(3796), 1, + anon_sym_LBRACK, + ACTIONS(3800), 1, + anon_sym_QMARK, + ACTIONS(3802), 1, + anon_sym_DOT, + ACTIONS(3976), 1, + anon_sym_as, + ACTIONS(4068), 1, + anon_sym_CARET, + ACTIONS(4070), 1, + anon_sym_AMP, + ACTIONS(4072), 1, + anon_sym_PIPE, + ACTIONS(4074), 1, + anon_sym_AMP_AMP, + ACTIONS(4076), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4126), 1, + anon_sym_EQ, + ACTIONS(4172), 1, + anon_sym_DOT_DOT, + ACTIONS(4294), 1, + anon_sym_SEMI, + ACTIONS(4064), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4078), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4084), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4174), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1889), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4066), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4082), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4124), 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, + [55486] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1872), 2, + STATE(1890), 2, sym_line_comment, sym_block_comment, - ACTIONS(3892), 15, + ACTIONS(4046), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -160436,7 +162591,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3890), 23, + ACTIONS(4044), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -160460,62 +162615,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [54767] = 23, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [55539] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(319), 1, - anon_sym_RBRACE, - ACTIONS(3744), 1, - anon_sym_LBRACK, - ACTIONS(3748), 1, - anon_sym_QMARK, - ACTIONS(3750), 1, - anon_sym_DOT, - ACTIONS(3862), 1, - anon_sym_as, - ACTIONS(4040), 1, - anon_sym_AMP, - ACTIONS(4044), 1, - anon_sym_CARET, - ACTIONS(4046), 1, - anon_sym_PIPE, - ACTIONS(4052), 1, - anon_sym_AMP_AMP, - ACTIONS(4056), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4070), 1, - anon_sym_EQ, - ACTIONS(4140), 1, - anon_sym_DOT_DOT, - ACTIONS(4338), 1, - anon_sym_SEMI, - ACTIONS(4038), 2, + STATE(1891), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4050), 15, anon_sym_PLUS, + anon_sym_STAR, anon_sym_DASH, - ACTIONS(4042), 2, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4050), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4142), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1873), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4036), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4048), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4068), 10, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(4048), 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, @@ -160526,62 +162656,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [54856] = 23, - ACTIONS(103), 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, + [55592] = 23, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(321), 1, + ACTIONS(312), 1, anon_sym_RBRACE, - ACTIONS(3744), 1, + ACTIONS(3796), 1, anon_sym_LBRACK, - ACTIONS(3748), 1, + ACTIONS(3800), 1, anon_sym_QMARK, - ACTIONS(3750), 1, + ACTIONS(3802), 1, anon_sym_DOT, - ACTIONS(3862), 1, + ACTIONS(3976), 1, anon_sym_as, - ACTIONS(4040), 1, - anon_sym_AMP, - ACTIONS(4044), 1, + ACTIONS(4068), 1, anon_sym_CARET, - ACTIONS(4046), 1, + ACTIONS(4070), 1, + anon_sym_AMP, + ACTIONS(4072), 1, anon_sym_PIPE, - ACTIONS(4052), 1, + ACTIONS(4074), 1, anon_sym_AMP_AMP, - ACTIONS(4056), 1, + ACTIONS(4076), 1, anon_sym_PIPE_PIPE, - ACTIONS(4070), 1, + ACTIONS(4126), 1, anon_sym_EQ, - ACTIONS(4140), 1, + ACTIONS(4172), 1, anon_sym_DOT_DOT, - ACTIONS(4338), 1, + ACTIONS(4294), 1, anon_sym_SEMI, - ACTIONS(4038), 2, + ACTIONS(4064), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4042), 2, + ACTIONS(4078), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4050), 2, + ACTIONS(4084), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4142), 2, + ACTIONS(4174), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1874), 2, + STATE(1892), 2, sym_line_comment, sym_block_comment, - ACTIONS(4036), 3, + ACTIONS(4066), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4048), 4, + ACTIONS(4082), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4068), 10, + ACTIONS(4124), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -160592,62 +162729,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [54945] = 23, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [55681] = 23, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(323), 1, - anon_sym_RBRACE, - ACTIONS(3744), 1, + ACTIONS(3796), 1, anon_sym_LBRACK, - ACTIONS(3748), 1, + ACTIONS(3800), 1, anon_sym_QMARK, - ACTIONS(3750), 1, + ACTIONS(3802), 1, anon_sym_DOT, - ACTIONS(3862), 1, + ACTIONS(3976), 1, anon_sym_as, - ACTIONS(4040), 1, - anon_sym_AMP, - ACTIONS(4044), 1, + ACTIONS(4068), 1, anon_sym_CARET, - ACTIONS(4046), 1, + ACTIONS(4070), 1, + anon_sym_AMP, + ACTIONS(4072), 1, anon_sym_PIPE, - ACTIONS(4052), 1, + ACTIONS(4074), 1, anon_sym_AMP_AMP, - ACTIONS(4056), 1, + ACTIONS(4076), 1, anon_sym_PIPE_PIPE, - ACTIONS(4070), 1, + ACTIONS(4126), 1, anon_sym_EQ, - ACTIONS(4140), 1, + ACTIONS(4172), 1, anon_sym_DOT_DOT, - ACTIONS(4338), 1, + ACTIONS(4294), 1, anon_sym_SEMI, - ACTIONS(4038), 2, + ACTIONS(4448), 1, + anon_sym_RBRACE, + ACTIONS(4064), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4042), 2, + ACTIONS(4078), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4050), 2, + ACTIONS(4084), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4142), 2, + ACTIONS(4174), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1875), 2, + STATE(1893), 2, sym_line_comment, sym_block_comment, - ACTIONS(4036), 3, + ACTIONS(4066), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4048), 4, + ACTIONS(4082), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4068), 10, + ACTIONS(4124), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -160658,62 +162795,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [55034] = 23, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [55770] = 23, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3744), 1, + ACTIONS(1228), 1, + anon_sym_RPAREN, + ACTIONS(3796), 1, anon_sym_LBRACK, - ACTIONS(3748), 1, + ACTIONS(3800), 1, anon_sym_QMARK, - ACTIONS(3750), 1, + ACTIONS(3802), 1, anon_sym_DOT, - ACTIONS(3862), 1, + ACTIONS(3976), 1, anon_sym_as, - ACTIONS(4040), 1, - anon_sym_AMP, - ACTIONS(4044), 1, + ACTIONS(4068), 1, anon_sym_CARET, - ACTIONS(4046), 1, + ACTIONS(4070), 1, + anon_sym_AMP, + ACTIONS(4072), 1, anon_sym_PIPE, - ACTIONS(4052), 1, + ACTIONS(4074), 1, anon_sym_AMP_AMP, - ACTIONS(4056), 1, + ACTIONS(4076), 1, anon_sym_PIPE_PIPE, - ACTIONS(4070), 1, + ACTIONS(4126), 1, anon_sym_EQ, - ACTIONS(4140), 1, + ACTIONS(4172), 1, anon_sym_DOT_DOT, - ACTIONS(4338), 1, - anon_sym_SEMI, - ACTIONS(4428), 1, - anon_sym_RBRACE, - ACTIONS(4038), 2, + ACTIONS(4304), 1, + anon_sym_COMMA, + ACTIONS(4064), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4042), 2, + ACTIONS(4078), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4050), 2, + ACTIONS(4084), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4142), 2, + ACTIONS(4174), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1876), 2, + STATE(1894), 2, sym_line_comment, sym_block_comment, - ACTIONS(4036), 3, + ACTIONS(4066), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4048), 4, + ACTIONS(4082), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4068), 10, + ACTIONS(4124), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -160724,62 +162861,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [55123] = 23, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [55859] = 23, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(327), 1, - anon_sym_RBRACE, - ACTIONS(3744), 1, + ACTIONS(3796), 1, anon_sym_LBRACK, - ACTIONS(3748), 1, + ACTIONS(3800), 1, anon_sym_QMARK, - ACTIONS(3750), 1, + ACTIONS(3802), 1, anon_sym_DOT, - ACTIONS(3862), 1, + ACTIONS(3976), 1, anon_sym_as, - ACTIONS(4040), 1, - anon_sym_AMP, - ACTIONS(4044), 1, + ACTIONS(4068), 1, anon_sym_CARET, - ACTIONS(4046), 1, + ACTIONS(4070), 1, + anon_sym_AMP, + ACTIONS(4072), 1, anon_sym_PIPE, - ACTIONS(4052), 1, + ACTIONS(4074), 1, anon_sym_AMP_AMP, - ACTIONS(4056), 1, + ACTIONS(4076), 1, anon_sym_PIPE_PIPE, - ACTIONS(4070), 1, + ACTIONS(4126), 1, anon_sym_EQ, - ACTIONS(4140), 1, + ACTIONS(4172), 1, anon_sym_DOT_DOT, - ACTIONS(4338), 1, + ACTIONS(4294), 1, anon_sym_SEMI, - ACTIONS(4038), 2, + ACTIONS(4450), 1, + anon_sym_RBRACE, + ACTIONS(4064), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4042), 2, + ACTIONS(4078), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4050), 2, + ACTIONS(4084), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4142), 2, + ACTIONS(4174), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1877), 2, + STATE(1895), 2, sym_line_comment, sym_block_comment, - ACTIONS(4036), 3, + ACTIONS(4066), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4048), 4, + ACTIONS(4082), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4068), 10, + ACTIONS(4124), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -160790,62 +162927,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [55212] = 23, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [55948] = 23, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(329), 1, + ACTIONS(316), 1, anon_sym_RBRACE, - ACTIONS(3744), 1, + ACTIONS(3796), 1, anon_sym_LBRACK, - ACTIONS(3748), 1, + ACTIONS(3800), 1, anon_sym_QMARK, - ACTIONS(3750), 1, + ACTIONS(3802), 1, anon_sym_DOT, - ACTIONS(3862), 1, + ACTIONS(3976), 1, anon_sym_as, - ACTIONS(4040), 1, - anon_sym_AMP, - ACTIONS(4044), 1, + ACTIONS(4068), 1, anon_sym_CARET, - ACTIONS(4046), 1, + ACTIONS(4070), 1, + anon_sym_AMP, + ACTIONS(4072), 1, anon_sym_PIPE, - ACTIONS(4052), 1, + ACTIONS(4074), 1, anon_sym_AMP_AMP, - ACTIONS(4056), 1, + ACTIONS(4076), 1, anon_sym_PIPE_PIPE, - ACTIONS(4070), 1, + ACTIONS(4126), 1, anon_sym_EQ, - ACTIONS(4140), 1, + ACTIONS(4172), 1, anon_sym_DOT_DOT, - ACTIONS(4338), 1, + ACTIONS(4294), 1, anon_sym_SEMI, - ACTIONS(4038), 2, + ACTIONS(4064), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4042), 2, + ACTIONS(4078), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4050), 2, + ACTIONS(4084), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4142), 2, + ACTIONS(4174), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1878), 2, + STATE(1896), 2, sym_line_comment, sym_block_comment, - ACTIONS(4036), 3, + ACTIONS(4066), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4048), 4, + ACTIONS(4082), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4068), 10, + ACTIONS(4124), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -160856,110 +162993,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [55301] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [56037] = 23, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1879), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1429), 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(1431), 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, - [55354] = 23, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(331), 1, - anon_sym_RBRACE, - ACTIONS(3744), 1, + ACTIONS(3796), 1, anon_sym_LBRACK, - ACTIONS(3748), 1, + ACTIONS(3800), 1, anon_sym_QMARK, - ACTIONS(3750), 1, + ACTIONS(3802), 1, anon_sym_DOT, - ACTIONS(3862), 1, + ACTIONS(3976), 1, anon_sym_as, - ACTIONS(4040), 1, - anon_sym_AMP, - ACTIONS(4044), 1, + ACTIONS(4322), 1, anon_sym_CARET, - ACTIONS(4046), 1, + ACTIONS(4324), 1, + anon_sym_AMP, + ACTIONS(4326), 1, anon_sym_PIPE, - ACTIONS(4052), 1, + ACTIONS(4328), 1, anon_sym_AMP_AMP, - ACTIONS(4056), 1, + ACTIONS(4330), 1, anon_sym_PIPE_PIPE, - ACTIONS(4070), 1, + ACTIONS(4336), 1, anon_sym_EQ, - ACTIONS(4140), 1, + ACTIONS(4382), 1, anon_sym_DOT_DOT, - ACTIONS(4338), 1, - anon_sym_SEMI, - ACTIONS(4038), 2, + ACTIONS(4452), 1, + anon_sym_LBRACE, + STATE(1802), 1, + sym_match_block, + ACTIONS(4318), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4042), 2, + ACTIONS(4332), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4050), 2, + ACTIONS(4340), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4142), 2, + ACTIONS(4384), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1880), 2, + STATE(1897), 2, sym_line_comment, sym_block_comment, - ACTIONS(4036), 3, + ACTIONS(4320), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4048), 4, + ACTIONS(4338), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4068), 10, + ACTIONS(4334), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -160970,62 +163059,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [55443] = 23, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [56126] = 23, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3744), 1, + ACTIONS(318), 1, + anon_sym_RBRACE, + ACTIONS(3796), 1, anon_sym_LBRACK, - ACTIONS(3748), 1, + ACTIONS(3800), 1, anon_sym_QMARK, - ACTIONS(3750), 1, + ACTIONS(3802), 1, anon_sym_DOT, - ACTIONS(3862), 1, + ACTIONS(3976), 1, anon_sym_as, - ACTIONS(4040), 1, - anon_sym_AMP, - ACTIONS(4044), 1, + ACTIONS(4068), 1, anon_sym_CARET, - ACTIONS(4046), 1, + ACTIONS(4070), 1, + anon_sym_AMP, + ACTIONS(4072), 1, anon_sym_PIPE, - ACTIONS(4052), 1, + ACTIONS(4074), 1, anon_sym_AMP_AMP, - ACTIONS(4056), 1, + ACTIONS(4076), 1, anon_sym_PIPE_PIPE, - ACTIONS(4070), 1, + ACTIONS(4126), 1, anon_sym_EQ, - ACTIONS(4140), 1, + ACTIONS(4172), 1, anon_sym_DOT_DOT, - ACTIONS(4338), 1, + ACTIONS(4294), 1, anon_sym_SEMI, - ACTIONS(4430), 1, - anon_sym_RBRACE, - ACTIONS(4038), 2, + ACTIONS(4064), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4042), 2, + ACTIONS(4078), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4050), 2, + ACTIONS(4084), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4142), 2, + ACTIONS(4174), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1881), 2, + STATE(1898), 2, sym_line_comment, sym_block_comment, - ACTIONS(4036), 3, + ACTIONS(4066), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4048), 4, + ACTIONS(4082), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4068), 10, + ACTIONS(4124), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -161036,62 +163125,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [55532] = 23, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [56215] = 23, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(335), 1, + ACTIONS(320), 1, anon_sym_RBRACE, - ACTIONS(3744), 1, + ACTIONS(3796), 1, anon_sym_LBRACK, - ACTIONS(3748), 1, + ACTIONS(3800), 1, anon_sym_QMARK, - ACTIONS(3750), 1, + ACTIONS(3802), 1, anon_sym_DOT, - ACTIONS(3862), 1, + ACTIONS(3976), 1, anon_sym_as, - ACTIONS(4040), 1, - anon_sym_AMP, - ACTIONS(4044), 1, + ACTIONS(4068), 1, anon_sym_CARET, - ACTIONS(4046), 1, + ACTIONS(4070), 1, + anon_sym_AMP, + ACTIONS(4072), 1, anon_sym_PIPE, - ACTIONS(4052), 1, + ACTIONS(4074), 1, anon_sym_AMP_AMP, - ACTIONS(4056), 1, + ACTIONS(4076), 1, anon_sym_PIPE_PIPE, - ACTIONS(4070), 1, + ACTIONS(4126), 1, anon_sym_EQ, - ACTIONS(4140), 1, + ACTIONS(4172), 1, anon_sym_DOT_DOT, - ACTIONS(4338), 1, + ACTIONS(4294), 1, anon_sym_SEMI, - ACTIONS(4038), 2, + ACTIONS(4064), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4042), 2, + ACTIONS(4078), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4050), 2, + ACTIONS(4084), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4142), 2, + ACTIONS(4174), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1882), 2, + STATE(1899), 2, sym_line_comment, sym_block_comment, - ACTIONS(4036), 3, + ACTIONS(4066), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4048), 4, + ACTIONS(4082), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4068), 10, + ACTIONS(4124), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -161102,62 +163191,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [55621] = 23, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [56304] = 23, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(123), 1, - anon_sym_RBRACE, - ACTIONS(3744), 1, + ACTIONS(3796), 1, anon_sym_LBRACK, - ACTIONS(3748), 1, + ACTIONS(3800), 1, anon_sym_QMARK, - ACTIONS(3750), 1, + ACTIONS(3802), 1, anon_sym_DOT, - ACTIONS(3862), 1, + ACTIONS(3976), 1, anon_sym_as, - ACTIONS(4040), 1, - anon_sym_AMP, - ACTIONS(4044), 1, + ACTIONS(4068), 1, anon_sym_CARET, - ACTIONS(4046), 1, + ACTIONS(4070), 1, + anon_sym_AMP, + ACTIONS(4072), 1, anon_sym_PIPE, - ACTIONS(4052), 1, + ACTIONS(4074), 1, anon_sym_AMP_AMP, - ACTIONS(4056), 1, + ACTIONS(4076), 1, anon_sym_PIPE_PIPE, - ACTIONS(4070), 1, + ACTIONS(4126), 1, anon_sym_EQ, - ACTIONS(4140), 1, + ACTIONS(4172), 1, anon_sym_DOT_DOT, - ACTIONS(4338), 1, + ACTIONS(4294), 1, anon_sym_SEMI, - ACTIONS(4038), 2, + ACTIONS(4454), 1, + anon_sym_RBRACE, + ACTIONS(4064), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4042), 2, + ACTIONS(4078), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4050), 2, + ACTIONS(4084), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4142), 2, + ACTIONS(4174), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1883), 2, + STATE(1900), 2, sym_line_comment, sym_block_comment, - ACTIONS(4036), 3, + ACTIONS(4066), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4048), 4, + ACTIONS(4082), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4068), 10, + ACTIONS(4124), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -161168,62 +163257,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [55710] = 23, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [56393] = 23, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(119), 1, + ACTIONS(324), 1, anon_sym_RBRACE, - ACTIONS(3744), 1, + ACTIONS(3796), 1, anon_sym_LBRACK, - ACTIONS(3748), 1, + ACTIONS(3800), 1, anon_sym_QMARK, - ACTIONS(3750), 1, + ACTIONS(3802), 1, anon_sym_DOT, - ACTIONS(3862), 1, + ACTIONS(3976), 1, anon_sym_as, - ACTIONS(4040), 1, - anon_sym_AMP, - ACTIONS(4044), 1, + ACTIONS(4068), 1, anon_sym_CARET, - ACTIONS(4046), 1, + ACTIONS(4070), 1, + anon_sym_AMP, + ACTIONS(4072), 1, anon_sym_PIPE, - ACTIONS(4052), 1, + ACTIONS(4074), 1, anon_sym_AMP_AMP, - ACTIONS(4056), 1, + ACTIONS(4076), 1, anon_sym_PIPE_PIPE, - ACTIONS(4070), 1, + ACTIONS(4126), 1, anon_sym_EQ, - ACTIONS(4140), 1, + ACTIONS(4172), 1, anon_sym_DOT_DOT, - ACTIONS(4338), 1, + ACTIONS(4294), 1, anon_sym_SEMI, - ACTIONS(4038), 2, + ACTIONS(4064), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4042), 2, + ACTIONS(4078), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4050), 2, + ACTIONS(4084), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4142), 2, + ACTIONS(4174), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1884), 2, + STATE(1901), 2, sym_line_comment, sym_block_comment, - ACTIONS(4036), 3, + ACTIONS(4066), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4048), 4, + ACTIONS(4082), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4068), 10, + ACTIONS(4124), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -161234,62 +163323,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [55799] = 23, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [56482] = 23, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3744), 1, + ACTIONS(326), 1, + anon_sym_RBRACE, + ACTIONS(3796), 1, anon_sym_LBRACK, - ACTIONS(3748), 1, + ACTIONS(3800), 1, anon_sym_QMARK, - ACTIONS(3750), 1, + ACTIONS(3802), 1, anon_sym_DOT, - ACTIONS(3862), 1, + ACTIONS(3976), 1, anon_sym_as, - ACTIONS(4040), 1, - anon_sym_AMP, - ACTIONS(4044), 1, + ACTIONS(4068), 1, anon_sym_CARET, - ACTIONS(4046), 1, + ACTIONS(4070), 1, + anon_sym_AMP, + ACTIONS(4072), 1, anon_sym_PIPE, - ACTIONS(4052), 1, + ACTIONS(4074), 1, anon_sym_AMP_AMP, - ACTIONS(4056), 1, + ACTIONS(4076), 1, anon_sym_PIPE_PIPE, - ACTIONS(4070), 1, + ACTIONS(4126), 1, anon_sym_EQ, - ACTIONS(4140), 1, + ACTIONS(4172), 1, anon_sym_DOT_DOT, - ACTIONS(4338), 1, + ACTIONS(4294), 1, anon_sym_SEMI, - ACTIONS(4432), 1, - anon_sym_RBRACE, - ACTIONS(4038), 2, + ACTIONS(4064), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4042), 2, + ACTIONS(4078), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4050), 2, + ACTIONS(4084), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4142), 2, + ACTIONS(4174), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1885), 2, + STATE(1902), 2, sym_line_comment, sym_block_comment, - ACTIONS(4036), 3, + ACTIONS(4066), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4048), 4, + ACTIONS(4082), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4068), 10, + ACTIONS(4124), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -161300,60 +163389,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [55888] = 21, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [56571] = 23, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3744), 1, + ACTIONS(3796), 1, anon_sym_LBRACK, - ACTIONS(3748), 1, + ACTIONS(3800), 1, anon_sym_QMARK, - ACTIONS(3750), 1, + ACTIONS(3802), 1, anon_sym_DOT, - ACTIONS(3862), 1, + ACTIONS(3976), 1, anon_sym_as, - ACTIONS(4066), 1, - anon_sym_EQ, - ACTIONS(4296), 1, + ACTIONS(4068), 1, anon_sym_CARET, - ACTIONS(4298), 1, + ACTIONS(4070), 1, anon_sym_AMP, - ACTIONS(4300), 1, + ACTIONS(4072), 1, anon_sym_PIPE, - ACTIONS(4302), 1, + ACTIONS(4074), 1, anon_sym_AMP_AMP, - ACTIONS(4304), 1, + ACTIONS(4076), 1, anon_sym_PIPE_PIPE, - ACTIONS(4316), 1, + ACTIONS(4126), 1, + anon_sym_EQ, + ACTIONS(4172), 1, anon_sym_DOT_DOT, - ACTIONS(4292), 2, + ACTIONS(4304), 1, + anon_sym_COMMA, + ACTIONS(4456), 1, + anon_sym_RPAREN, + ACTIONS(4064), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4306), 2, + ACTIONS(4078), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4314), 2, + ACTIONS(4084), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4318), 2, + ACTIONS(4174), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1886), 2, + STATE(1903), 2, sym_line_comment, sym_block_comment, - ACTIONS(4294), 3, + ACTIONS(4066), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4312), 4, + ACTIONS(4082), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4064), 12, - anon_sym_LPAREN, - anon_sym_LBRACE, + ACTIONS(4124), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -161364,114 +163455,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [55973] = 15, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [56660] = 23, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3744), 1, - anon_sym_LBRACK, - ACTIONS(3748), 1, - anon_sym_QMARK, - ACTIONS(3750), 1, - anon_sym_DOT, - ACTIONS(3862), 1, - anon_sym_as, - ACTIONS(4296), 1, - anon_sym_CARET, - ACTIONS(4298), 1, - anon_sym_AMP, - ACTIONS(4300), 1, - anon_sym_PIPE, - ACTIONS(4292), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4306), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - STATE(1887), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4294), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3860), 4, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT_DOT, - ACTIONS(3858), 20, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [56046] = 19, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3744), 1, + ACTIONS(328), 1, + anon_sym_RBRACE, + ACTIONS(3796), 1, anon_sym_LBRACK, - ACTIONS(3748), 1, + ACTIONS(3800), 1, anon_sym_QMARK, - ACTIONS(3750), 1, + ACTIONS(3802), 1, anon_sym_DOT, - ACTIONS(3862), 1, + ACTIONS(3976), 1, anon_sym_as, - ACTIONS(4296), 1, + ACTIONS(4068), 1, anon_sym_CARET, - ACTIONS(4298), 1, + ACTIONS(4070), 1, anon_sym_AMP, - ACTIONS(4300), 1, + ACTIONS(4072), 1, anon_sym_PIPE, - ACTIONS(4302), 1, + ACTIONS(4074), 1, anon_sym_AMP_AMP, - ACTIONS(4304), 1, + ACTIONS(4076), 1, anon_sym_PIPE_PIPE, - ACTIONS(4074), 2, + ACTIONS(4126), 1, anon_sym_EQ, + ACTIONS(4172), 1, anon_sym_DOT_DOT, - ACTIONS(4292), 2, + ACTIONS(4294), 1, + anon_sym_SEMI, + ACTIONS(4064), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4306), 2, + ACTIONS(4078), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4314), 2, + ACTIONS(4084), 2, anon_sym_GT, anon_sym_LT, - STATE(1888), 2, + ACTIONS(4174), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1904), 2, sym_line_comment, sym_block_comment, - ACTIONS(4294), 3, + ACTIONS(4066), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4312), 4, + ACTIONS(4082), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4072), 14, - anon_sym_LPAREN, - anon_sym_LBRACE, + ACTIONS(4124), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -161482,234 +163521,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [56127] = 8, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [56749] = 23, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4268), 1, + ACTIONS(3796), 1, anon_sym_LBRACK, - ACTIONS(4274), 1, + ACTIONS(3800), 1, anon_sym_QMARK, - ACTIONS(4288), 1, + ACTIONS(3802), 1, anon_sym_DOT, - STATE(1889), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3896), 14, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(3976), 1, + anon_sym_as, + ACTIONS(4068), 1, anon_sym_CARET, + ACTIONS(4070), 1, anon_sym_AMP, + ACTIONS(4072), 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(3894), 21, - anon_sym_LPAREN, - anon_sym_EQ_GT, + ACTIONS(4074), 1, anon_sym_AMP_AMP, + ACTIONS(4076), 1, anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [56186] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1890), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3732), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(4126), 1, anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, + ACTIONS(4172), 1, anon_sym_DOT_DOT, - ACTIONS(3730), 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, - [56239] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1891), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3970), 15, + ACTIONS(4294), 1, + anon_sym_SEMI, + ACTIONS(4458), 1, + anon_sym_RBRACE, + ACTIONS(4064), 2, anon_sym_PLUS, - anon_sym_STAR, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(4078), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4084), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3968), 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(4174), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_as, - [56292] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1892), 2, + STATE(1905), 2, sym_line_comment, sym_block_comment, - ACTIONS(4008), 15, - anon_sym_PLUS, + ACTIONS(4066), 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(4006), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, + ACTIONS(4082), 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, - [56345] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1893), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4012), 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(4010), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4124), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -161720,44 +163587,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, - [56398] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [56838] = 23, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1894), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3826), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(332), 1, + anon_sym_RBRACE, + ACTIONS(3796), 1, + anon_sym_LBRACK, + ACTIONS(3800), 1, + anon_sym_QMARK, + ACTIONS(3802), 1, + anon_sym_DOT, + ACTIONS(3976), 1, + anon_sym_as, + ACTIONS(4068), 1, anon_sym_CARET, + ACTIONS(4070), 1, anon_sym_AMP, + ACTIONS(4072), 1, anon_sym_PIPE, + ACTIONS(4074), 1, + anon_sym_AMP_AMP, + ACTIONS(4076), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4126), 1, + anon_sym_EQ, + ACTIONS(4172), 1, + anon_sym_DOT_DOT, + ACTIONS(4294), 1, + anon_sym_SEMI, + ACTIONS(4064), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4078), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4084), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3824), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4174), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1906), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4066), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4082), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4124), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -161768,67 +163653,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, - [56451] = 21, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [56927] = 23, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(347), 1, - anon_sym_EQ, - ACTIONS(4268), 1, + ACTIONS(334), 1, + anon_sym_RBRACE, + ACTIONS(3796), 1, anon_sym_LBRACK, - ACTIONS(4274), 1, + ACTIONS(3800), 1, anon_sym_QMARK, - ACTIONS(4276), 1, + ACTIONS(3802), 1, + anon_sym_DOT, + ACTIONS(3976), 1, + anon_sym_as, + ACTIONS(4068), 1, anon_sym_CARET, - ACTIONS(4278), 1, + ACTIONS(4070), 1, anon_sym_AMP, - ACTIONS(4280), 1, + ACTIONS(4072), 1, anon_sym_PIPE, - ACTIONS(4288), 1, - anon_sym_DOT, - ACTIONS(4290), 1, - anon_sym_as, - ACTIONS(4340), 1, + ACTIONS(4074), 1, anon_sym_AMP_AMP, - ACTIONS(4342), 1, + ACTIONS(4076), 1, anon_sym_PIPE_PIPE, - ACTIONS(4344), 1, + ACTIONS(4126), 1, + anon_sym_EQ, + ACTIONS(4172), 1, anon_sym_DOT_DOT, - ACTIONS(4270), 2, + ACTIONS(4294), 1, + anon_sym_SEMI, + ACTIONS(4064), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4282), 2, + ACTIONS(4078), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4286), 2, + ACTIONS(4084), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4346), 2, + ACTIONS(4174), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1895), 2, + STATE(1907), 2, sym_line_comment, sym_block_comment, - ACTIONS(4272), 3, + ACTIONS(4066), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4284), 4, + ACTIONS(4082), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(341), 12, - anon_sym_LPAREN, - anon_sym_EQ_GT, + ACTIONS(4124), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -161839,37 +163719,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [56536] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [57016] = 23, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1896), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3830), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(336), 1, + anon_sym_RBRACE, + ACTIONS(3796), 1, + anon_sym_LBRACK, + ACTIONS(3800), 1, + anon_sym_QMARK, + ACTIONS(3802), 1, + anon_sym_DOT, + ACTIONS(3976), 1, + anon_sym_as, + ACTIONS(4068), 1, anon_sym_CARET, + ACTIONS(4070), 1, anon_sym_AMP, + ACTIONS(4072), 1, anon_sym_PIPE, + ACTIONS(4074), 1, + anon_sym_AMP_AMP, + ACTIONS(4076), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4126), 1, + anon_sym_EQ, + ACTIONS(4172), 1, + anon_sym_DOT_DOT, + ACTIONS(4294), 1, + anon_sym_SEMI, + ACTIONS(4064), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4078), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4084), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3828), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4174), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1908), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4066), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4082), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4124), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -161880,44 +163785,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, - [56589] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [57105] = 23, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1897), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3942), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(3796), 1, + anon_sym_LBRACK, + ACTIONS(3800), 1, + anon_sym_QMARK, + ACTIONS(3802), 1, + anon_sym_DOT, + ACTIONS(3976), 1, + anon_sym_as, + ACTIONS(4068), 1, anon_sym_CARET, + ACTIONS(4070), 1, anon_sym_AMP, + ACTIONS(4072), 1, anon_sym_PIPE, + ACTIONS(4074), 1, + anon_sym_AMP_AMP, + ACTIONS(4076), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4126), 1, + anon_sym_EQ, + ACTIONS(4172), 1, + anon_sym_DOT_DOT, + ACTIONS(4294), 1, + anon_sym_SEMI, + ACTIONS(4460), 1, + anon_sym_RBRACE, + ACTIONS(4064), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4078), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4084), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3940), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4174), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1909), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4066), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4082), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4124), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -161928,44 +163851,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, - [56642] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [57194] = 23, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1898), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3842), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(125), 1, + anon_sym_RBRACE, + ACTIONS(3796), 1, + anon_sym_LBRACK, + ACTIONS(3800), 1, + anon_sym_QMARK, + ACTIONS(3802), 1, + anon_sym_DOT, + ACTIONS(3976), 1, + anon_sym_as, + ACTIONS(4068), 1, anon_sym_CARET, + ACTIONS(4070), 1, anon_sym_AMP, + ACTIONS(4072), 1, anon_sym_PIPE, + ACTIONS(4074), 1, + anon_sym_AMP_AMP, + ACTIONS(4076), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4126), 1, + anon_sym_EQ, + ACTIONS(4172), 1, + anon_sym_DOT_DOT, + ACTIONS(4294), 1, + anon_sym_SEMI, + ACTIONS(4064), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4078), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4084), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3840), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4174), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1910), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4066), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4082), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4124), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -161976,67 +163917,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, - [56695] = 21, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [57283] = 23, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3744), 1, + ACTIONS(121), 1, + anon_sym_RBRACE, + ACTIONS(3796), 1, anon_sym_LBRACK, - ACTIONS(3748), 1, + ACTIONS(3800), 1, anon_sym_QMARK, - ACTIONS(3750), 1, + ACTIONS(3802), 1, anon_sym_DOT, - ACTIONS(3862), 1, + ACTIONS(3976), 1, anon_sym_as, - ACTIONS(4150), 1, + ACTIONS(4068), 1, anon_sym_CARET, - ACTIONS(4152), 1, + ACTIONS(4070), 1, anon_sym_AMP, - ACTIONS(4154), 1, + ACTIONS(4072), 1, anon_sym_PIPE, - ACTIONS(4158), 1, + ACTIONS(4074), 1, + anon_sym_AMP_AMP, + ACTIONS(4076), 1, anon_sym_PIPE_PIPE, - ACTIONS(4164), 1, + ACTIONS(4126), 1, anon_sym_EQ, - ACTIONS(4170), 1, + ACTIONS(4172), 1, anon_sym_DOT_DOT, - ACTIONS(4146), 2, + ACTIONS(4294), 1, + anon_sym_SEMI, + ACTIONS(4064), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4160), 2, + ACTIONS(4078), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4168), 2, + ACTIONS(4084), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4172), 2, + ACTIONS(4174), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1899), 2, + STATE(1911), 2, sym_line_comment, sym_block_comment, - ACTIONS(4148), 3, + ACTIONS(4066), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4434), 3, - anon_sym_LBRACE, - anon_sym_AMP_AMP, - anon_sym_SQUOTE, - ACTIONS(4166), 4, + ACTIONS(4082), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4162), 10, + ACTIONS(4124), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -162047,62 +163983,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [56780] = 23, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [57372] = 23, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(289), 1, - anon_sym_RBRACE, - ACTIONS(3744), 1, + ACTIONS(3796), 1, anon_sym_LBRACK, - ACTIONS(3748), 1, + ACTIONS(3800), 1, anon_sym_QMARK, - ACTIONS(3750), 1, + ACTIONS(3802), 1, anon_sym_DOT, - ACTIONS(3862), 1, + ACTIONS(3976), 1, anon_sym_as, - ACTIONS(4040), 1, - anon_sym_AMP, - ACTIONS(4044), 1, + ACTIONS(4068), 1, anon_sym_CARET, - ACTIONS(4046), 1, + ACTIONS(4070), 1, + anon_sym_AMP, + ACTIONS(4072), 1, anon_sym_PIPE, - ACTIONS(4052), 1, + ACTIONS(4074), 1, anon_sym_AMP_AMP, - ACTIONS(4056), 1, + ACTIONS(4076), 1, anon_sym_PIPE_PIPE, - ACTIONS(4070), 1, + ACTIONS(4126), 1, anon_sym_EQ, - ACTIONS(4140), 1, + ACTIONS(4172), 1, anon_sym_DOT_DOT, - ACTIONS(4338), 1, + ACTIONS(4294), 1, anon_sym_SEMI, - ACTIONS(4038), 2, + ACTIONS(4462), 1, + anon_sym_RBRACE, + ACTIONS(4064), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4042), 2, + ACTIONS(4078), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4050), 2, + ACTIONS(4084), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4142), 2, + ACTIONS(4174), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1900), 2, + STATE(1912), 2, sym_line_comment, sym_block_comment, - ACTIONS(4036), 3, + ACTIONS(4066), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4048), 4, + ACTIONS(4082), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4068), 10, + ACTIONS(4124), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -162113,62 +164049,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [56869] = 23, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [57461] = 22, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3744), 1, + ACTIONS(3796), 1, anon_sym_LBRACK, - ACTIONS(3748), 1, + ACTIONS(3800), 1, anon_sym_QMARK, - ACTIONS(3750), 1, + ACTIONS(3802), 1, anon_sym_DOT, - ACTIONS(3862), 1, + ACTIONS(3976), 1, anon_sym_as, - ACTIONS(4040), 1, - anon_sym_AMP, - ACTIONS(4044), 1, + ACTIONS(4068), 1, anon_sym_CARET, - ACTIONS(4046), 1, + ACTIONS(4070), 1, + anon_sym_AMP, + ACTIONS(4072), 1, anon_sym_PIPE, - ACTIONS(4052), 1, + ACTIONS(4074), 1, anon_sym_AMP_AMP, - ACTIONS(4056), 1, + ACTIONS(4076), 1, anon_sym_PIPE_PIPE, - ACTIONS(4070), 1, + ACTIONS(4126), 1, anon_sym_EQ, - ACTIONS(4140), 1, + ACTIONS(4172), 1, anon_sym_DOT_DOT, - ACTIONS(4436), 1, - anon_sym_SEMI, - ACTIONS(4438), 1, - anon_sym_else, - ACTIONS(4038), 2, + ACTIONS(4064), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4042), 2, + ACTIONS(4078), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4050), 2, + ACTIONS(4084), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4142), 2, + ACTIONS(4174), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1901), 2, + ACTIONS(4464), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(1913), 2, sym_line_comment, sym_block_comment, - ACTIONS(4036), 3, + ACTIONS(4066), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4048), 4, + ACTIONS(4082), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4068), 10, + ACTIONS(4124), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -162179,62 +164114,110 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [56958] = 23, - ACTIONS(103), 1, + [57548] = 5, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + STATE(1914), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3816), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3814), 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, + [57601] = 23, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3744), 1, + ACTIONS(3796), 1, anon_sym_LBRACK, - ACTIONS(3748), 1, + ACTIONS(3800), 1, anon_sym_QMARK, - ACTIONS(3750), 1, + ACTIONS(3802), 1, anon_sym_DOT, - ACTIONS(3862), 1, + ACTIONS(3976), 1, anon_sym_as, - ACTIONS(4040), 1, - anon_sym_AMP, - ACTIONS(4044), 1, + ACTIONS(4068), 1, anon_sym_CARET, - ACTIONS(4046), 1, + ACTIONS(4070), 1, + anon_sym_AMP, + ACTIONS(4072), 1, anon_sym_PIPE, - ACTIONS(4052), 1, + ACTIONS(4074), 1, anon_sym_AMP_AMP, - ACTIONS(4056), 1, + ACTIONS(4076), 1, anon_sym_PIPE_PIPE, - ACTIONS(4070), 1, + ACTIONS(4126), 1, anon_sym_EQ, - ACTIONS(4140), 1, + ACTIONS(4172), 1, anon_sym_DOT_DOT, - ACTIONS(4440), 1, - anon_sym_RPAREN, - ACTIONS(4442), 1, - anon_sym_COMMA, - ACTIONS(4038), 2, + ACTIONS(4466), 1, + anon_sym_SEMI, + ACTIONS(4468), 1, + anon_sym_else, + ACTIONS(4064), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4042), 2, + ACTIONS(4078), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4050), 2, + ACTIONS(4084), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4142), 2, + ACTIONS(4174), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1902), 2, + STATE(1915), 2, sym_line_comment, sym_block_comment, - ACTIONS(4036), 3, + ACTIONS(4066), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4048), 4, + ACTIONS(4082), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4068), 10, + ACTIONS(4124), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -162245,15 +164228,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [57047] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [57690] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1903), 2, + STATE(1916), 2, sym_line_comment, sym_block_comment, - ACTIONS(3852), 15, + ACTIONS(3828), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -162269,7 +164252,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3850), 23, + ACTIONS(3826), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -162293,62 +164276,124 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [57100] = 23, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [57743] = 22, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(295), 1, - anon_sym_RBRACE, - ACTIONS(3744), 1, + ACTIONS(3796), 1, anon_sym_LBRACK, - ACTIONS(3748), 1, + ACTIONS(3800), 1, anon_sym_QMARK, - ACTIONS(3750), 1, + ACTIONS(3802), 1, anon_sym_DOT, - ACTIONS(3862), 1, + ACTIONS(3976), 1, anon_sym_as, - ACTIONS(4040), 1, - anon_sym_AMP, - ACTIONS(4044), 1, + ACTIONS(4068), 1, anon_sym_CARET, - ACTIONS(4046), 1, + ACTIONS(4070), 1, + anon_sym_AMP, + ACTIONS(4072), 1, anon_sym_PIPE, - ACTIONS(4052), 1, + ACTIONS(4074), 1, anon_sym_AMP_AMP, - ACTIONS(4056), 1, + ACTIONS(4076), 1, anon_sym_PIPE_PIPE, + ACTIONS(4126), 1, + anon_sym_EQ, + ACTIONS(4172), 1, + anon_sym_DOT_DOT, + ACTIONS(4470), 1, + anon_sym_RBRACK, + ACTIONS(4064), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4078), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4084), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4174), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1917), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4066), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4082), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4124), 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, + [57829] = 22, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(3796), 1, + anon_sym_LBRACK, + ACTIONS(3800), 1, + anon_sym_QMARK, + ACTIONS(3802), 1, + anon_sym_DOT, + ACTIONS(3976), 1, + anon_sym_as, + ACTIONS(4068), 1, + anon_sym_CARET, ACTIONS(4070), 1, + anon_sym_AMP, + ACTIONS(4072), 1, + anon_sym_PIPE, + ACTIONS(4074), 1, + anon_sym_AMP_AMP, + ACTIONS(4076), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4126), 1, anon_sym_EQ, - ACTIONS(4140), 1, + ACTIONS(4172), 1, anon_sym_DOT_DOT, - ACTIONS(4338), 1, + ACTIONS(4294), 1, anon_sym_SEMI, - ACTIONS(4038), 2, + ACTIONS(4064), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4042), 2, + ACTIONS(4078), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4050), 2, + ACTIONS(4084), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4142), 2, + ACTIONS(4174), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1904), 2, + STATE(1918), 2, sym_line_comment, sym_block_comment, - ACTIONS(4036), 3, + ACTIONS(4066), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4048), 4, + ACTIONS(4082), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4068), 10, + ACTIONS(4124), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -162359,60 +164404,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [57189] = 22, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [57915] = 22, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3744), 1, + ACTIONS(3796), 1, anon_sym_LBRACK, - ACTIONS(3748), 1, + ACTIONS(3800), 1, anon_sym_QMARK, - ACTIONS(3750), 1, + ACTIONS(3802), 1, anon_sym_DOT, - ACTIONS(3862), 1, + ACTIONS(3976), 1, anon_sym_as, - ACTIONS(4040), 1, - anon_sym_AMP, - ACTIONS(4044), 1, + ACTIONS(4068), 1, anon_sym_CARET, - ACTIONS(4046), 1, + ACTIONS(4070), 1, + anon_sym_AMP, + ACTIONS(4072), 1, anon_sym_PIPE, - ACTIONS(4052), 1, + ACTIONS(4074), 1, anon_sym_AMP_AMP, - ACTIONS(4056), 1, + ACTIONS(4076), 1, anon_sym_PIPE_PIPE, - ACTIONS(4070), 1, + ACTIONS(4126), 1, anon_sym_EQ, - ACTIONS(4140), 1, + ACTIONS(4172), 1, anon_sym_DOT_DOT, - ACTIONS(4444), 1, - anon_sym_RBRACK, - ACTIONS(4038), 2, + ACTIONS(4472), 1, + anon_sym_SEMI, + ACTIONS(4064), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4042), 2, + ACTIONS(4078), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4050), 2, + ACTIONS(4084), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4142), 2, + ACTIONS(4174), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1905), 2, + STATE(1919), 2, sym_line_comment, sym_block_comment, - ACTIONS(4036), 3, + ACTIONS(4066), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4048), 4, + ACTIONS(4082), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4068), 10, + ACTIONS(4124), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -162423,60 +164468,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [57275] = 22, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [58001] = 22, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3744), 1, + ACTIONS(3796), 1, anon_sym_LBRACK, - ACTIONS(3748), 1, + ACTIONS(3800), 1, anon_sym_QMARK, - ACTIONS(3750), 1, + ACTIONS(3802), 1, anon_sym_DOT, - ACTIONS(3862), 1, + ACTIONS(3976), 1, anon_sym_as, - ACTIONS(4040), 1, - anon_sym_AMP, - ACTIONS(4044), 1, + ACTIONS(4068), 1, anon_sym_CARET, - ACTIONS(4046), 1, + ACTIONS(4070), 1, + anon_sym_AMP, + ACTIONS(4072), 1, anon_sym_PIPE, - ACTIONS(4052), 1, + ACTIONS(4074), 1, anon_sym_AMP_AMP, - ACTIONS(4056), 1, + ACTIONS(4076), 1, anon_sym_PIPE_PIPE, - ACTIONS(4070), 1, + ACTIONS(4126), 1, anon_sym_EQ, - ACTIONS(4140), 1, + ACTIONS(4172), 1, anon_sym_DOT_DOT, - ACTIONS(4446), 1, - anon_sym_COMMA, - ACTIONS(4038), 2, + ACTIONS(4474), 1, + anon_sym_RBRACK, + ACTIONS(4064), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4042), 2, + ACTIONS(4078), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4050), 2, + ACTIONS(4084), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4142), 2, + ACTIONS(4174), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1906), 2, + STATE(1920), 2, sym_line_comment, sym_block_comment, - ACTIONS(4036), 3, + ACTIONS(4066), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4048), 4, + ACTIONS(4082), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4068), 10, + ACTIONS(4124), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -162487,60 +164532,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [57361] = 22, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [58087] = 22, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3744), 1, + ACTIONS(3796), 1, anon_sym_LBRACK, - ACTIONS(3748), 1, + ACTIONS(3800), 1, anon_sym_QMARK, - ACTIONS(3750), 1, + ACTIONS(3802), 1, anon_sym_DOT, - ACTIONS(3862), 1, + ACTIONS(3976), 1, anon_sym_as, - ACTIONS(4040), 1, - anon_sym_AMP, - ACTIONS(4044), 1, + ACTIONS(4068), 1, anon_sym_CARET, - ACTIONS(4046), 1, + ACTIONS(4070), 1, + anon_sym_AMP, + ACTIONS(4072), 1, anon_sym_PIPE, - ACTIONS(4052), 1, + ACTIONS(4074), 1, anon_sym_AMP_AMP, - ACTIONS(4056), 1, + ACTIONS(4076), 1, anon_sym_PIPE_PIPE, - ACTIONS(4070), 1, + ACTIONS(4126), 1, anon_sym_EQ, - ACTIONS(4140), 1, + ACTIONS(4172), 1, anon_sym_DOT_DOT, - ACTIONS(4448), 1, - anon_sym_COMMA, - ACTIONS(4038), 2, + ACTIONS(4476), 1, + anon_sym_SEMI, + ACTIONS(4064), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4042), 2, + ACTIONS(4078), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4050), 2, + ACTIONS(4084), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4142), 2, + ACTIONS(4174), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1907), 2, + STATE(1921), 2, sym_line_comment, sym_block_comment, - ACTIONS(4036), 3, + ACTIONS(4066), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4048), 4, + ACTIONS(4082), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4068), 10, + ACTIONS(4124), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -162551,60 +164596,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [57447] = 22, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [58173] = 22, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3744), 1, + ACTIONS(3796), 1, anon_sym_LBRACK, - ACTIONS(3748), 1, + ACTIONS(3800), 1, anon_sym_QMARK, - ACTIONS(3750), 1, + ACTIONS(3802), 1, anon_sym_DOT, - ACTIONS(3862), 1, + ACTIONS(3976), 1, anon_sym_as, - ACTIONS(4040), 1, - anon_sym_AMP, - ACTIONS(4044), 1, + ACTIONS(4068), 1, anon_sym_CARET, - ACTIONS(4046), 1, + ACTIONS(4070), 1, + anon_sym_AMP, + ACTIONS(4072), 1, anon_sym_PIPE, - ACTIONS(4052), 1, + ACTIONS(4074), 1, anon_sym_AMP_AMP, - ACTIONS(4056), 1, + ACTIONS(4076), 1, anon_sym_PIPE_PIPE, - ACTIONS(4070), 1, + ACTIONS(4126), 1, anon_sym_EQ, - ACTIONS(4140), 1, + ACTIONS(4172), 1, anon_sym_DOT_DOT, - ACTIONS(4450), 1, + ACTIONS(4478), 1, anon_sym_RBRACK, - ACTIONS(4038), 2, + ACTIONS(4064), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4042), 2, + ACTIONS(4078), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4050), 2, + ACTIONS(4084), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4142), 2, + ACTIONS(4174), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1908), 2, + STATE(1922), 2, sym_line_comment, sym_block_comment, - ACTIONS(4036), 3, + ACTIONS(4066), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4048), 4, + ACTIONS(4082), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4068), 10, + ACTIONS(4124), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -162615,118 +164660,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [57533] = 16, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [58259] = 21, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4206), 1, - sym_identifier, - ACTIONS(4208), 1, - anon_sym_LBRACE, - ACTIONS(4212), 1, - anon_sym_STAR, - ACTIONS(4218), 1, - anon_sym_COLON_COLON, - ACTIONS(4222), 1, - sym_metavariable, - STATE(2516), 1, - sym_scoped_identifier, - STATE(3326), 1, - sym__use_clause, - STATE(3465), 1, - sym_generic_type_with_turbofish, - STATE(3688), 1, - sym_bracketed_type, - STATE(1909), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4220), 3, - sym_self, - sym_super, - sym_crate, - STATE(3015), 4, - sym_scoped_use_list, - sym_use_list, - sym_use_as_clause, - sym_use_wildcard, - ACTIONS(4214), 20, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_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, - [57607] = 22, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3744), 1, + ACTIONS(4306), 1, anon_sym_LBRACK, - ACTIONS(3748), 1, + ACTIONS(4308), 1, anon_sym_QMARK, - ACTIONS(3750), 1, + ACTIONS(4310), 1, anon_sym_DOT, - ACTIONS(3862), 1, + ACTIONS(4312), 1, anon_sym_as, - ACTIONS(4040), 1, - anon_sym_AMP, - ACTIONS(4044), 1, + ACTIONS(4352), 1, anon_sym_CARET, - ACTIONS(4046), 1, + ACTIONS(4354), 1, + anon_sym_AMP, + ACTIONS(4356), 1, anon_sym_PIPE, - ACTIONS(4052), 1, - anon_sym_AMP_AMP, - ACTIONS(4056), 1, + ACTIONS(4360), 1, anon_sym_PIPE_PIPE, - ACTIONS(4070), 1, + ACTIONS(4390), 1, anon_sym_EQ, - ACTIONS(4140), 1, + ACTIONS(4480), 1, anon_sym_DOT_DOT, - ACTIONS(4452), 1, - anon_sym_SEMI, - ACTIONS(4038), 2, + ACTIONS(4348), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4042), 2, + ACTIONS(4362), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4050), 2, + ACTIONS(4366), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4142), 2, + ACTIONS(4386), 2, + anon_sym_EQ_GT, + anon_sym_AMP_AMP, + ACTIONS(4482), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1910), 2, + STATE(1923), 2, sym_line_comment, sym_block_comment, - ACTIONS(4036), 3, + ACTIONS(4350), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4048), 4, + ACTIONS(4364), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4068), 10, + ACTIONS(4388), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -162737,117 +164723,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [57693] = 16, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [58343] = 22, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4206), 1, - sym_identifier, - ACTIONS(4208), 1, - anon_sym_LBRACE, - ACTIONS(4212), 1, - anon_sym_STAR, - ACTIONS(4218), 1, - anon_sym_COLON_COLON, - ACTIONS(4222), 1, - sym_metavariable, - STATE(2516), 1, - sym_scoped_identifier, - STATE(3465), 1, - sym_generic_type_with_turbofish, - STATE(3679), 1, - sym__use_clause, - STATE(3688), 1, - sym_bracketed_type, - STATE(1911), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4220), 3, - sym_self, - sym_super, - sym_crate, - STATE(3015), 4, - sym_scoped_use_list, - sym_use_list, - sym_use_as_clause, - sym_use_wildcard, - ACTIONS(4214), 20, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_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, - [57767] = 21, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4268), 1, + ACTIONS(3796), 1, anon_sym_LBRACK, - ACTIONS(4274), 1, + ACTIONS(3800), 1, anon_sym_QMARK, - ACTIONS(4276), 1, + ACTIONS(3802), 1, + anon_sym_DOT, + ACTIONS(3976), 1, + anon_sym_as, + ACTIONS(4068), 1, anon_sym_CARET, - ACTIONS(4278), 1, + ACTIONS(4070), 1, anon_sym_AMP, - ACTIONS(4280), 1, + ACTIONS(4072), 1, anon_sym_PIPE, - ACTIONS(4288), 1, - anon_sym_DOT, - ACTIONS(4290), 1, - anon_sym_as, - ACTIONS(4342), 1, + ACTIONS(4074), 1, + anon_sym_AMP_AMP, + ACTIONS(4076), 1, anon_sym_PIPE_PIPE, - ACTIONS(4360), 1, + ACTIONS(4126), 1, anon_sym_EQ, - ACTIONS(4454), 1, + ACTIONS(4172), 1, anon_sym_DOT_DOT, - ACTIONS(4270), 2, + ACTIONS(4484), 1, + anon_sym_RBRACK, + ACTIONS(4064), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4282), 2, + ACTIONS(4078), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4286), 2, + ACTIONS(4084), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4434), 2, - anon_sym_EQ_GT, - anon_sym_AMP_AMP, - ACTIONS(4456), 2, + ACTIONS(4174), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1912), 2, + STATE(1924), 2, sym_line_comment, sym_block_comment, - ACTIONS(4272), 3, + ACTIONS(4066), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4284), 4, + ACTIONS(4082), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4358), 10, + ACTIONS(4124), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -162858,60 +164787,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [57851] = 22, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [58429] = 22, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3744), 1, + ACTIONS(3796), 1, anon_sym_LBRACK, - ACTIONS(3748), 1, + ACTIONS(3800), 1, anon_sym_QMARK, - ACTIONS(3750), 1, + ACTIONS(3802), 1, anon_sym_DOT, - ACTIONS(3862), 1, + ACTIONS(3976), 1, anon_sym_as, - ACTIONS(4040), 1, - anon_sym_AMP, - ACTIONS(4044), 1, + ACTIONS(4068), 1, anon_sym_CARET, - ACTIONS(4046), 1, + ACTIONS(4070), 1, + anon_sym_AMP, + ACTIONS(4072), 1, anon_sym_PIPE, - ACTIONS(4052), 1, + ACTIONS(4074), 1, anon_sym_AMP_AMP, - ACTIONS(4056), 1, + ACTIONS(4076), 1, anon_sym_PIPE_PIPE, - ACTIONS(4070), 1, + ACTIONS(4126), 1, anon_sym_EQ, - ACTIONS(4140), 1, + ACTIONS(4172), 1, anon_sym_DOT_DOT, - ACTIONS(4338), 1, - anon_sym_SEMI, - ACTIONS(4038), 2, + ACTIONS(4486), 1, + anon_sym_RBRACK, + ACTIONS(4064), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4042), 2, + ACTIONS(4078), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4050), 2, + ACTIONS(4084), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4142), 2, + ACTIONS(4174), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1913), 2, + STATE(1925), 2, sym_line_comment, sym_block_comment, - ACTIONS(4036), 3, + ACTIONS(4066), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4048), 4, + ACTIONS(4082), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4068), 10, + ACTIONS(4124), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -162922,60 +164851,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [57937] = 22, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [58515] = 22, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3744), 1, + ACTIONS(3796), 1, anon_sym_LBRACK, - ACTIONS(3748), 1, + ACTIONS(3800), 1, anon_sym_QMARK, - ACTIONS(3750), 1, + ACTIONS(3802), 1, anon_sym_DOT, - ACTIONS(3862), 1, + ACTIONS(3976), 1, anon_sym_as, - ACTIONS(4040), 1, - anon_sym_AMP, - ACTIONS(4044), 1, + ACTIONS(4068), 1, anon_sym_CARET, - ACTIONS(4046), 1, + ACTIONS(4070), 1, + anon_sym_AMP, + ACTIONS(4072), 1, anon_sym_PIPE, - ACTIONS(4052), 1, + ACTIONS(4074), 1, anon_sym_AMP_AMP, - ACTIONS(4056), 1, + ACTIONS(4076), 1, anon_sym_PIPE_PIPE, - ACTIONS(4070), 1, + ACTIONS(4126), 1, anon_sym_EQ, - ACTIONS(4140), 1, + ACTIONS(4172), 1, anon_sym_DOT_DOT, - ACTIONS(4458), 1, + ACTIONS(4488), 1, anon_sym_RBRACK, - ACTIONS(4038), 2, + ACTIONS(4064), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4042), 2, + ACTIONS(4078), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4050), 2, + ACTIONS(4084), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4142), 2, + ACTIONS(4174), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1914), 2, + STATE(1926), 2, sym_line_comment, sym_block_comment, - ACTIONS(4036), 3, + ACTIONS(4066), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4048), 4, + ACTIONS(4082), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4068), 10, + ACTIONS(4124), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -162986,60 +164915,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [58023] = 22, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [58601] = 22, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3744), 1, + ACTIONS(3796), 1, anon_sym_LBRACK, - ACTIONS(3748), 1, + ACTIONS(3800), 1, anon_sym_QMARK, - ACTIONS(3750), 1, + ACTIONS(3802), 1, anon_sym_DOT, - ACTIONS(3862), 1, + ACTIONS(3976), 1, anon_sym_as, - ACTIONS(4040), 1, - anon_sym_AMP, - ACTIONS(4044), 1, + ACTIONS(4068), 1, anon_sym_CARET, - ACTIONS(4046), 1, + ACTIONS(4070), 1, + anon_sym_AMP, + ACTIONS(4072), 1, anon_sym_PIPE, - ACTIONS(4052), 1, + ACTIONS(4074), 1, anon_sym_AMP_AMP, - ACTIONS(4056), 1, + ACTIONS(4076), 1, anon_sym_PIPE_PIPE, - ACTIONS(4070), 1, + ACTIONS(4126), 1, anon_sym_EQ, - ACTIONS(4140), 1, + ACTIONS(4172), 1, anon_sym_DOT_DOT, - ACTIONS(4460), 1, + ACTIONS(4490), 1, anon_sym_RBRACK, - ACTIONS(4038), 2, + ACTIONS(4064), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4042), 2, + ACTIONS(4078), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4050), 2, + ACTIONS(4084), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4142), 2, + ACTIONS(4174), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1915), 2, + STATE(1927), 2, sym_line_comment, sym_block_comment, - ACTIONS(4036), 3, + ACTIONS(4066), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4048), 4, + ACTIONS(4082), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4068), 10, + ACTIONS(4124), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -163050,60 +164979,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [58109] = 22, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [58687] = 22, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3744), 1, + ACTIONS(3796), 1, anon_sym_LBRACK, - ACTIONS(3748), 1, + ACTIONS(3800), 1, anon_sym_QMARK, - ACTIONS(3750), 1, + ACTIONS(3802), 1, anon_sym_DOT, - ACTIONS(3862), 1, + ACTIONS(3976), 1, anon_sym_as, - ACTIONS(4040), 1, - anon_sym_AMP, - ACTIONS(4044), 1, + ACTIONS(4068), 1, anon_sym_CARET, - ACTIONS(4046), 1, + ACTIONS(4070), 1, + anon_sym_AMP, + ACTIONS(4072), 1, anon_sym_PIPE, - ACTIONS(4052), 1, + ACTIONS(4074), 1, anon_sym_AMP_AMP, - ACTIONS(4056), 1, + ACTIONS(4076), 1, anon_sym_PIPE_PIPE, - ACTIONS(4070), 1, + ACTIONS(4126), 1, anon_sym_EQ, - ACTIONS(4140), 1, + ACTIONS(4172), 1, anon_sym_DOT_DOT, - ACTIONS(4330), 1, - anon_sym_COMMA, - ACTIONS(4038), 2, + ACTIONS(4492), 1, + anon_sym_RBRACK, + ACTIONS(4064), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4042), 2, + ACTIONS(4078), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4050), 2, + ACTIONS(4084), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4142), 2, + ACTIONS(4174), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1916), 2, + STATE(1928), 2, sym_line_comment, sym_block_comment, - ACTIONS(4036), 3, + ACTIONS(4066), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4048), 4, + ACTIONS(4082), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4068), 10, + ACTIONS(4124), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -163114,60 +165043,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [58195] = 22, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [58773] = 22, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3744), 1, + ACTIONS(3796), 1, anon_sym_LBRACK, - ACTIONS(3748), 1, + ACTIONS(3800), 1, anon_sym_QMARK, - ACTIONS(3750), 1, + ACTIONS(3802), 1, anon_sym_DOT, - ACTIONS(3862), 1, + ACTIONS(3976), 1, anon_sym_as, - ACTIONS(4040), 1, - anon_sym_AMP, - ACTIONS(4044), 1, + ACTIONS(4068), 1, anon_sym_CARET, - ACTIONS(4046), 1, + ACTIONS(4070), 1, + anon_sym_AMP, + ACTIONS(4072), 1, anon_sym_PIPE, - ACTIONS(4052), 1, + ACTIONS(4074), 1, anon_sym_AMP_AMP, - ACTIONS(4056), 1, + ACTIONS(4076), 1, anon_sym_PIPE_PIPE, - ACTIONS(4070), 1, + ACTIONS(4126), 1, anon_sym_EQ, - ACTIONS(4140), 1, + ACTIONS(4172), 1, anon_sym_DOT_DOT, - ACTIONS(4462), 1, - anon_sym_RBRACK, - ACTIONS(4038), 2, + ACTIONS(4494), 1, + anon_sym_COMMA, + ACTIONS(4064), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4042), 2, + ACTIONS(4078), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4050), 2, + ACTIONS(4084), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4142), 2, + ACTIONS(4174), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1917), 2, + STATE(1929), 2, sym_line_comment, sym_block_comment, - ACTIONS(4036), 3, + ACTIONS(4066), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4048), 4, + ACTIONS(4082), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4068), 10, + ACTIONS(4124), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -163178,118 +165107,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [58281] = 16, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [58859] = 22, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4206), 1, - sym_identifier, - ACTIONS(4208), 1, - anon_sym_LBRACE, - ACTIONS(4212), 1, - anon_sym_STAR, - ACTIONS(4218), 1, - anon_sym_COLON_COLON, - ACTIONS(4222), 1, - sym_metavariable, - STATE(2516), 1, - sym_scoped_identifier, - STATE(3465), 1, - sym_generic_type_with_turbofish, - STATE(3585), 1, - sym__use_clause, - STATE(3688), 1, - sym_bracketed_type, - STATE(1918), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4220), 3, - sym_self, - sym_super, - sym_crate, - STATE(3015), 4, - sym_scoped_use_list, - sym_use_list, - sym_use_as_clause, - sym_use_wildcard, - ACTIONS(4214), 20, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_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, - [58355] = 22, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3744), 1, + ACTIONS(3796), 1, anon_sym_LBRACK, - ACTIONS(3748), 1, + ACTIONS(3800), 1, anon_sym_QMARK, - ACTIONS(3750), 1, + ACTIONS(3802), 1, anon_sym_DOT, - ACTIONS(3862), 1, + ACTIONS(3976), 1, anon_sym_as, - ACTIONS(4040), 1, - anon_sym_AMP, - ACTIONS(4044), 1, + ACTIONS(4068), 1, anon_sym_CARET, - ACTIONS(4046), 1, + ACTIONS(4070), 1, + anon_sym_AMP, + ACTIONS(4072), 1, anon_sym_PIPE, - ACTIONS(4052), 1, + ACTIONS(4074), 1, anon_sym_AMP_AMP, - ACTIONS(4056), 1, + ACTIONS(4076), 1, anon_sym_PIPE_PIPE, - ACTIONS(4070), 1, + ACTIONS(4126), 1, anon_sym_EQ, - ACTIONS(4140), 1, + ACTIONS(4172), 1, anon_sym_DOT_DOT, - ACTIONS(4464), 1, + ACTIONS(4496), 1, anon_sym_SEMI, - ACTIONS(4038), 2, + ACTIONS(4064), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4042), 2, + ACTIONS(4078), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4050), 2, + ACTIONS(4084), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4142), 2, + ACTIONS(4174), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1919), 2, + STATE(1930), 2, sym_line_comment, sym_block_comment, - ACTIONS(4036), 3, + ACTIONS(4066), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4048), 4, + ACTIONS(4082), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4068), 10, + ACTIONS(4124), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -163300,60 +165171,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [58441] = 22, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [58945] = 22, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3744), 1, + ACTIONS(3796), 1, anon_sym_LBRACK, - ACTIONS(3748), 1, + ACTIONS(3800), 1, anon_sym_QMARK, - ACTIONS(3750), 1, + ACTIONS(3802), 1, anon_sym_DOT, - ACTIONS(3862), 1, + ACTIONS(3976), 1, anon_sym_as, - ACTIONS(4040), 1, - anon_sym_AMP, - ACTIONS(4044), 1, + ACTIONS(4068), 1, anon_sym_CARET, - ACTIONS(4046), 1, + ACTIONS(4070), 1, + anon_sym_AMP, + ACTIONS(4072), 1, anon_sym_PIPE, - ACTIONS(4052), 1, + ACTIONS(4074), 1, anon_sym_AMP_AMP, - ACTIONS(4056), 1, + ACTIONS(4076), 1, anon_sym_PIPE_PIPE, - ACTIONS(4070), 1, + ACTIONS(4126), 1, anon_sym_EQ, - ACTIONS(4140), 1, + ACTIONS(4172), 1, anon_sym_DOT_DOT, - ACTIONS(4466), 1, + ACTIONS(4498), 1, anon_sym_SEMI, - ACTIONS(4038), 2, + ACTIONS(4064), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4042), 2, + ACTIONS(4078), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4050), 2, + ACTIONS(4084), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4142), 2, + ACTIONS(4174), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1920), 2, + STATE(1931), 2, sym_line_comment, sym_block_comment, - ACTIONS(4036), 3, + ACTIONS(4066), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4048), 4, + ACTIONS(4082), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4068), 10, + ACTIONS(4124), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -163364,60 +165235,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [58527] = 22, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [59031] = 22, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3744), 1, + ACTIONS(3796), 1, anon_sym_LBRACK, - ACTIONS(3748), 1, + ACTIONS(3800), 1, anon_sym_QMARK, - ACTIONS(3750), 1, + ACTIONS(3802), 1, anon_sym_DOT, - ACTIONS(3862), 1, + ACTIONS(3976), 1, anon_sym_as, - ACTIONS(4040), 1, - anon_sym_AMP, - ACTIONS(4044), 1, + ACTIONS(4068), 1, anon_sym_CARET, - ACTIONS(4046), 1, + ACTIONS(4070), 1, + anon_sym_AMP, + ACTIONS(4072), 1, anon_sym_PIPE, - ACTIONS(4052), 1, + ACTIONS(4074), 1, anon_sym_AMP_AMP, - ACTIONS(4056), 1, + ACTIONS(4076), 1, anon_sym_PIPE_PIPE, - ACTIONS(4070), 1, + ACTIONS(4126), 1, anon_sym_EQ, - ACTIONS(4140), 1, + ACTIONS(4172), 1, anon_sym_DOT_DOT, - ACTIONS(4468), 1, + ACTIONS(4500), 1, anon_sym_SEMI, - ACTIONS(4038), 2, + ACTIONS(4064), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4042), 2, + ACTIONS(4078), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4050), 2, + ACTIONS(4084), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4142), 2, + ACTIONS(4174), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1921), 2, + STATE(1932), 2, sym_line_comment, sym_block_comment, - ACTIONS(4036), 3, + ACTIONS(4066), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4048), 4, + ACTIONS(4082), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4068), 10, + ACTIONS(4124), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -163428,60 +165299,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [58613] = 22, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [59117] = 22, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3744), 1, + ACTIONS(3796), 1, anon_sym_LBRACK, - ACTIONS(3748), 1, + ACTIONS(3800), 1, anon_sym_QMARK, - ACTIONS(3750), 1, + ACTIONS(3802), 1, anon_sym_DOT, - ACTIONS(3862), 1, + ACTIONS(3976), 1, anon_sym_as, - ACTIONS(4040), 1, - anon_sym_AMP, - ACTIONS(4044), 1, + ACTIONS(4068), 1, anon_sym_CARET, - ACTIONS(4046), 1, + ACTIONS(4070), 1, + anon_sym_AMP, + ACTIONS(4072), 1, anon_sym_PIPE, - ACTIONS(4052), 1, + ACTIONS(4074), 1, anon_sym_AMP_AMP, - ACTIONS(4056), 1, + ACTIONS(4076), 1, anon_sym_PIPE_PIPE, - ACTIONS(4070), 1, + ACTIONS(4126), 1, anon_sym_EQ, - ACTIONS(4140), 1, + ACTIONS(4172), 1, anon_sym_DOT_DOT, - ACTIONS(4470), 1, + ACTIONS(4502), 1, anon_sym_SEMI, - ACTIONS(4038), 2, + ACTIONS(4064), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4042), 2, + ACTIONS(4078), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4050), 2, + ACTIONS(4084), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4142), 2, + ACTIONS(4174), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1922), 2, + STATE(1933), 2, sym_line_comment, sym_block_comment, - ACTIONS(4036), 3, + ACTIONS(4066), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4048), 4, + ACTIONS(4082), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4068), 10, + ACTIONS(4124), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -163492,60 +165363,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [58699] = 22, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [59203] = 22, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3744), 1, + ACTIONS(3796), 1, anon_sym_LBRACK, - ACTIONS(3748), 1, + ACTIONS(3800), 1, anon_sym_QMARK, - ACTIONS(3750), 1, + ACTIONS(3802), 1, anon_sym_DOT, - ACTIONS(3862), 1, + ACTIONS(3976), 1, anon_sym_as, - ACTIONS(4040), 1, - anon_sym_AMP, - ACTIONS(4044), 1, + ACTIONS(4068), 1, anon_sym_CARET, - ACTIONS(4046), 1, + ACTIONS(4070), 1, + anon_sym_AMP, + ACTIONS(4072), 1, anon_sym_PIPE, - ACTIONS(4052), 1, + ACTIONS(4074), 1, anon_sym_AMP_AMP, - ACTIONS(4056), 1, + ACTIONS(4076), 1, anon_sym_PIPE_PIPE, - ACTIONS(4070), 1, + ACTIONS(4126), 1, anon_sym_EQ, - ACTIONS(4140), 1, + ACTIONS(4172), 1, anon_sym_DOT_DOT, - ACTIONS(4472), 1, + ACTIONS(4504), 1, anon_sym_SEMI, - ACTIONS(4038), 2, + ACTIONS(4064), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4042), 2, + ACTIONS(4078), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4050), 2, + ACTIONS(4084), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4142), 2, + ACTIONS(4174), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1923), 2, + STATE(1934), 2, sym_line_comment, sym_block_comment, - ACTIONS(4036), 3, + ACTIONS(4066), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4048), 4, + ACTIONS(4082), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4068), 10, + ACTIONS(4124), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -163556,60 +165427,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [58785] = 22, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [59289] = 22, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3744), 1, + ACTIONS(3796), 1, anon_sym_LBRACK, - ACTIONS(3748), 1, + ACTIONS(3800), 1, anon_sym_QMARK, - ACTIONS(3750), 1, + ACTIONS(3802), 1, anon_sym_DOT, - ACTIONS(3862), 1, + ACTIONS(3976), 1, anon_sym_as, - ACTIONS(4040), 1, - anon_sym_AMP, - ACTIONS(4044), 1, + ACTIONS(4068), 1, anon_sym_CARET, - ACTIONS(4046), 1, + ACTIONS(4070), 1, + anon_sym_AMP, + ACTIONS(4072), 1, anon_sym_PIPE, - ACTIONS(4052), 1, + ACTIONS(4074), 1, anon_sym_AMP_AMP, - ACTIONS(4056), 1, + ACTIONS(4076), 1, anon_sym_PIPE_PIPE, - ACTIONS(4070), 1, + ACTIONS(4126), 1, anon_sym_EQ, - ACTIONS(4140), 1, + ACTIONS(4172), 1, anon_sym_DOT_DOT, - ACTIONS(4474), 1, + ACTIONS(4506), 1, anon_sym_SEMI, - ACTIONS(4038), 2, + ACTIONS(4064), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4042), 2, + ACTIONS(4078), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4050), 2, + ACTIONS(4084), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4142), 2, + ACTIONS(4174), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1924), 2, + STATE(1935), 2, sym_line_comment, sym_block_comment, - ACTIONS(4036), 3, + ACTIONS(4066), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4048), 4, + ACTIONS(4082), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4068), 10, + ACTIONS(4124), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -163620,60 +165491,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [58871] = 22, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [59375] = 22, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3744), 1, + ACTIONS(3796), 1, anon_sym_LBRACK, - ACTIONS(3748), 1, + ACTIONS(3800), 1, anon_sym_QMARK, - ACTIONS(3750), 1, + ACTIONS(3802), 1, anon_sym_DOT, - ACTIONS(3862), 1, + ACTIONS(3976), 1, anon_sym_as, - ACTIONS(4040), 1, - anon_sym_AMP, - ACTIONS(4044), 1, + ACTIONS(4068), 1, anon_sym_CARET, - ACTIONS(4046), 1, + ACTIONS(4070), 1, + anon_sym_AMP, + ACTIONS(4072), 1, anon_sym_PIPE, - ACTIONS(4052), 1, + ACTIONS(4074), 1, anon_sym_AMP_AMP, - ACTIONS(4056), 1, + ACTIONS(4076), 1, anon_sym_PIPE_PIPE, - ACTIONS(4070), 1, + ACTIONS(4126), 1, anon_sym_EQ, - ACTIONS(4140), 1, + ACTIONS(4172), 1, anon_sym_DOT_DOT, - ACTIONS(4476), 1, - anon_sym_SEMI, - ACTIONS(4038), 2, + ACTIONS(4508), 1, + anon_sym_RBRACK, + ACTIONS(4064), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4042), 2, + ACTIONS(4078), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4050), 2, + ACTIONS(4084), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4142), 2, + ACTIONS(4174), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1925), 2, + STATE(1936), 2, sym_line_comment, sym_block_comment, - ACTIONS(4036), 3, + ACTIONS(4066), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4048), 4, + ACTIONS(4082), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4068), 10, + ACTIONS(4124), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -163684,60 +165555,176 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [58957] = 22, - ACTIONS(103), 1, + [59461] = 16, + ACTIONS(29), 1, + anon_sym_LT, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(4254), 1, + sym_identifier, + ACTIONS(4256), 1, + anon_sym_LBRACE, + ACTIONS(4260), 1, + anon_sym_STAR, + ACTIONS(4266), 1, + anon_sym_COLON_COLON, + ACTIONS(4270), 1, + sym_metavariable, + STATE(2479), 1, + sym_scoped_identifier, + STATE(3196), 1, + sym__use_clause, + STATE(3604), 1, + sym_generic_type_with_turbofish, + STATE(3752), 1, + sym_bracketed_type, + STATE(1937), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4268), 3, + sym_self, + sym_super, + sym_crate, + STATE(2981), 4, + sym_scoped_use_list, + sym_use_list, + sym_use_as_clause, + sym_use_wildcard, + ACTIONS(4262), 20, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_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, + [59535] = 16, + ACTIONS(29), 1, + anon_sym_LT, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(4254), 1, + sym_identifier, + ACTIONS(4256), 1, + anon_sym_LBRACE, + ACTIONS(4260), 1, + anon_sym_STAR, + ACTIONS(4266), 1, + anon_sym_COLON_COLON, + ACTIONS(4270), 1, + sym_metavariable, + STATE(2479), 1, + sym_scoped_identifier, + STATE(3586), 1, + sym__use_clause, + STATE(3604), 1, + sym_generic_type_with_turbofish, + STATE(3752), 1, + sym_bracketed_type, + STATE(1938), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4268), 3, + sym_self, + sym_super, + sym_crate, + STATE(2981), 4, + sym_scoped_use_list, + sym_use_list, + sym_use_as_clause, + sym_use_wildcard, + ACTIONS(4262), 20, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_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, + [59609] = 22, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4268), 1, + ACTIONS(3796), 1, anon_sym_LBRACK, - ACTIONS(4274), 1, + ACTIONS(3800), 1, anon_sym_QMARK, - ACTIONS(4276), 1, + ACTIONS(3802), 1, + anon_sym_DOT, + ACTIONS(3976), 1, + anon_sym_as, + ACTIONS(4068), 1, anon_sym_CARET, - ACTIONS(4278), 1, + ACTIONS(4070), 1, anon_sym_AMP, - ACTIONS(4280), 1, + ACTIONS(4072), 1, anon_sym_PIPE, - ACTIONS(4288), 1, - anon_sym_DOT, - ACTIONS(4290), 1, - anon_sym_as, - ACTIONS(4332), 1, - anon_sym_EQ_GT, - ACTIONS(4342), 1, + ACTIONS(4074), 1, + anon_sym_AMP_AMP, + ACTIONS(4076), 1, anon_sym_PIPE_PIPE, - ACTIONS(4360), 1, + ACTIONS(4126), 1, anon_sym_EQ, - ACTIONS(4454), 1, + ACTIONS(4172), 1, anon_sym_DOT_DOT, - ACTIONS(4478), 1, - anon_sym_AMP_AMP, - ACTIONS(4270), 2, + ACTIONS(4510), 1, + anon_sym_COMMA, + ACTIONS(4064), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4282), 2, + ACTIONS(4078), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4286), 2, + ACTIONS(4084), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4456), 2, + ACTIONS(4174), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1926), 2, + STATE(1939), 2, sym_line_comment, sym_block_comment, - ACTIONS(4272), 3, + ACTIONS(4066), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4284), 4, + ACTIONS(4082), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4358), 10, + ACTIONS(4124), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -163748,60 +165735,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [59043] = 22, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [59695] = 22, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3744), 1, + ACTIONS(3796), 1, anon_sym_LBRACK, - ACTIONS(3748), 1, + ACTIONS(3800), 1, anon_sym_QMARK, - ACTIONS(3750), 1, + ACTIONS(3802), 1, anon_sym_DOT, - ACTIONS(3862), 1, + ACTIONS(3976), 1, anon_sym_as, - ACTIONS(4040), 1, - anon_sym_AMP, - ACTIONS(4044), 1, + ACTIONS(4068), 1, anon_sym_CARET, - ACTIONS(4046), 1, + ACTIONS(4070), 1, + anon_sym_AMP, + ACTIONS(4072), 1, anon_sym_PIPE, - ACTIONS(4052), 1, + ACTIONS(4074), 1, anon_sym_AMP_AMP, - ACTIONS(4056), 1, + ACTIONS(4076), 1, anon_sym_PIPE_PIPE, - ACTIONS(4070), 1, + ACTIONS(4126), 1, anon_sym_EQ, - ACTIONS(4140), 1, + ACTIONS(4172), 1, anon_sym_DOT_DOT, - ACTIONS(4480), 1, - anon_sym_SEMI, - ACTIONS(4038), 2, + ACTIONS(4512), 1, + anon_sym_RBRACK, + ACTIONS(4064), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4042), 2, + ACTIONS(4078), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4050), 2, + ACTIONS(4084), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4142), 2, + ACTIONS(4174), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1927), 2, + STATE(1940), 2, sym_line_comment, sym_block_comment, - ACTIONS(4036), 3, + ACTIONS(4066), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4048), 4, + ACTIONS(4082), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4068), 10, + ACTIONS(4124), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -163812,59 +165799,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [59129] = 21, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [59781] = 22, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4268), 1, + ACTIONS(3796), 1, anon_sym_LBRACK, - ACTIONS(4274), 1, + ACTIONS(3800), 1, anon_sym_QMARK, - ACTIONS(4276), 1, + ACTIONS(3802), 1, + anon_sym_DOT, + ACTIONS(3976), 1, + anon_sym_as, + ACTIONS(4068), 1, anon_sym_CARET, - ACTIONS(4278), 1, + ACTIONS(4070), 1, anon_sym_AMP, - ACTIONS(4280), 1, + ACTIONS(4072), 1, anon_sym_PIPE, - ACTIONS(4288), 1, - anon_sym_DOT, - ACTIONS(4290), 1, - anon_sym_as, - ACTIONS(4342), 1, + ACTIONS(4074), 1, + anon_sym_AMP_AMP, + ACTIONS(4076), 1, anon_sym_PIPE_PIPE, - ACTIONS(4360), 1, + ACTIONS(4126), 1, anon_sym_EQ, - ACTIONS(4454), 1, + ACTIONS(4172), 1, anon_sym_DOT_DOT, - ACTIONS(4270), 2, + ACTIONS(4514), 1, + anon_sym_SEMI, + ACTIONS(4064), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4282), 2, + ACTIONS(4078), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4286), 2, + ACTIONS(4084), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4328), 2, - anon_sym_EQ_GT, - anon_sym_AMP_AMP, - ACTIONS(4456), 2, + ACTIONS(4174), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1928), 2, + STATE(1941), 2, sym_line_comment, sym_block_comment, - ACTIONS(4272), 3, + ACTIONS(4066), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4284), 4, + ACTIONS(4082), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4358), 10, + ACTIONS(4124), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -163875,60 +165863,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [59213] = 22, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [59867] = 22, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3744), 1, + ACTIONS(4306), 1, anon_sym_LBRACK, - ACTIONS(3748), 1, + ACTIONS(4308), 1, anon_sym_QMARK, - ACTIONS(3750), 1, + ACTIONS(4310), 1, anon_sym_DOT, - ACTIONS(3862), 1, + ACTIONS(4312), 1, anon_sym_as, - ACTIONS(4040), 1, - anon_sym_AMP, - ACTIONS(4044), 1, + ACTIONS(4352), 1, anon_sym_CARET, - ACTIONS(4046), 1, + ACTIONS(4354), 1, + anon_sym_AMP, + ACTIONS(4356), 1, anon_sym_PIPE, - ACTIONS(4052), 1, - anon_sym_AMP_AMP, - ACTIONS(4056), 1, + ACTIONS(4360), 1, anon_sym_PIPE_PIPE, - ACTIONS(4070), 1, + ACTIONS(4374), 1, + anon_sym_EQ_GT, + ACTIONS(4390), 1, anon_sym_EQ, - ACTIONS(4140), 1, + ACTIONS(4480), 1, anon_sym_DOT_DOT, - ACTIONS(4482), 1, - anon_sym_RBRACK, - ACTIONS(4038), 2, + ACTIONS(4516), 1, + anon_sym_AMP_AMP, + ACTIONS(4348), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4042), 2, + ACTIONS(4362), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4050), 2, + ACTIONS(4366), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4142), 2, + ACTIONS(4482), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1929), 2, + STATE(1942), 2, sym_line_comment, sym_block_comment, - ACTIONS(4036), 3, + ACTIONS(4350), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4048), 4, + ACTIONS(4364), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4068), 10, + ACTIONS(4388), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -163939,60 +165927,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [59299] = 22, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [59953] = 22, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3744), 1, + ACTIONS(3796), 1, anon_sym_LBRACK, - ACTIONS(3748), 1, + ACTIONS(3800), 1, anon_sym_QMARK, - ACTIONS(3750), 1, + ACTIONS(3802), 1, anon_sym_DOT, - ACTIONS(3862), 1, + ACTIONS(3976), 1, anon_sym_as, - ACTIONS(4040), 1, - anon_sym_AMP, - ACTIONS(4044), 1, + ACTIONS(4068), 1, anon_sym_CARET, - ACTIONS(4046), 1, + ACTIONS(4070), 1, + anon_sym_AMP, + ACTIONS(4072), 1, anon_sym_PIPE, - ACTIONS(4052), 1, + ACTIONS(4074), 1, anon_sym_AMP_AMP, - ACTIONS(4056), 1, + ACTIONS(4076), 1, anon_sym_PIPE_PIPE, - ACTIONS(4070), 1, + ACTIONS(4126), 1, anon_sym_EQ, - ACTIONS(4140), 1, + ACTIONS(4172), 1, anon_sym_DOT_DOT, - ACTIONS(4484), 1, - anon_sym_RBRACK, - ACTIONS(4038), 2, + ACTIONS(4304), 1, + anon_sym_COMMA, + ACTIONS(4064), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4042), 2, + ACTIONS(4078), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4050), 2, + ACTIONS(4084), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4142), 2, + ACTIONS(4174), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1930), 2, + STATE(1943), 2, sym_line_comment, sym_block_comment, - ACTIONS(4036), 3, + ACTIONS(4066), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4048), 4, + ACTIONS(4082), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4068), 10, + ACTIONS(4124), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -164003,60 +165991,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [59385] = 22, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [60039] = 22, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3744), 1, + ACTIONS(3796), 1, anon_sym_LBRACK, - ACTIONS(3748), 1, + ACTIONS(3800), 1, anon_sym_QMARK, - ACTIONS(3750), 1, + ACTIONS(3802), 1, anon_sym_DOT, - ACTIONS(3862), 1, + ACTIONS(3976), 1, anon_sym_as, - ACTIONS(4040), 1, - anon_sym_AMP, - ACTIONS(4044), 1, + ACTIONS(4068), 1, anon_sym_CARET, - ACTIONS(4046), 1, + ACTIONS(4070), 1, + anon_sym_AMP, + ACTIONS(4072), 1, anon_sym_PIPE, - ACTIONS(4052), 1, + ACTIONS(4074), 1, anon_sym_AMP_AMP, - ACTIONS(4056), 1, + ACTIONS(4076), 1, anon_sym_PIPE_PIPE, - ACTIONS(4070), 1, + ACTIONS(4126), 1, anon_sym_EQ, - ACTIONS(4140), 1, + ACTIONS(4172), 1, anon_sym_DOT_DOT, - ACTIONS(4486), 1, - anon_sym_RBRACK, - ACTIONS(4038), 2, + ACTIONS(4518), 1, + anon_sym_SEMI, + ACTIONS(4064), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4042), 2, + ACTIONS(4078), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4050), 2, + ACTIONS(4084), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4142), 2, + ACTIONS(4174), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1931), 2, + STATE(1944), 2, sym_line_comment, sym_block_comment, - ACTIONS(4036), 3, + ACTIONS(4066), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4048), 4, + ACTIONS(4082), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4068), 10, + ACTIONS(4124), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -164067,60 +166055,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [59471] = 22, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [60125] = 22, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3744), 1, + ACTIONS(3796), 1, anon_sym_LBRACK, - ACTIONS(3748), 1, + ACTIONS(3800), 1, anon_sym_QMARK, - ACTIONS(3750), 1, + ACTIONS(3802), 1, anon_sym_DOT, - ACTIONS(3862), 1, + ACTIONS(3976), 1, anon_sym_as, - ACTIONS(4040), 1, - anon_sym_AMP, - ACTIONS(4044), 1, + ACTIONS(4068), 1, anon_sym_CARET, - ACTIONS(4046), 1, + ACTIONS(4070), 1, + anon_sym_AMP, + ACTIONS(4072), 1, anon_sym_PIPE, - ACTIONS(4052), 1, + ACTIONS(4074), 1, anon_sym_AMP_AMP, - ACTIONS(4056), 1, + ACTIONS(4076), 1, anon_sym_PIPE_PIPE, - ACTIONS(4070), 1, + ACTIONS(4126), 1, anon_sym_EQ, - ACTIONS(4140), 1, + ACTIONS(4172), 1, anon_sym_DOT_DOT, - ACTIONS(4488), 1, + ACTIONS(4520), 1, anon_sym_SEMI, - ACTIONS(4038), 2, + ACTIONS(4064), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4042), 2, + ACTIONS(4078), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4050), 2, + ACTIONS(4084), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4142), 2, + ACTIONS(4174), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1932), 2, + STATE(1945), 2, sym_line_comment, sym_block_comment, - ACTIONS(4036), 3, + ACTIONS(4066), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4048), 4, + ACTIONS(4082), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4068), 10, + ACTIONS(4124), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -164131,44 +166119,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [59557] = 16, + [60211] = 16, ACTIONS(29), 1, anon_sym_LT, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4206), 1, + ACTIONS(4254), 1, sym_identifier, - ACTIONS(4208), 1, + ACTIONS(4256), 1, anon_sym_LBRACE, - ACTIONS(4212), 1, + ACTIONS(4260), 1, anon_sym_STAR, - ACTIONS(4218), 1, + ACTIONS(4266), 1, anon_sym_COLON_COLON, - ACTIONS(4222), 1, + ACTIONS(4270), 1, sym_metavariable, - STATE(2516), 1, + STATE(2479), 1, sym_scoped_identifier, - STATE(3465), 1, - sym_generic_type_with_turbofish, - STATE(3550), 1, + STATE(3580), 1, sym__use_clause, - STATE(3688), 1, + STATE(3604), 1, + sym_generic_type_with_turbofish, + STATE(3752), 1, sym_bracketed_type, - STATE(1933), 2, + STATE(1946), 2, sym_line_comment, sym_block_comment, - ACTIONS(4220), 3, + ACTIONS(4268), 3, sym_self, sym_super, sym_crate, - STATE(3015), 4, + STATE(2981), 4, sym_scoped_use_list, sym_use_list, sym_use_as_clause, sym_use_wildcard, - ACTIONS(4214), 20, + ACTIONS(4262), 20, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -164189,60 +166177,124 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_gen, anon_sym_union, - [59631] = 22, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [60285] = 22, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3744), 1, + ACTIONS(3796), 1, anon_sym_LBRACK, - ACTIONS(3748), 1, + ACTIONS(3800), 1, anon_sym_QMARK, - ACTIONS(3750), 1, + ACTIONS(3802), 1, anon_sym_DOT, - ACTIONS(3862), 1, + ACTIONS(3976), 1, anon_sym_as, - ACTIONS(4040), 1, - anon_sym_AMP, - ACTIONS(4044), 1, + ACTIONS(4068), 1, anon_sym_CARET, - ACTIONS(4046), 1, + ACTIONS(4070), 1, + anon_sym_AMP, + ACTIONS(4072), 1, anon_sym_PIPE, - ACTIONS(4052), 1, + ACTIONS(4074), 1, anon_sym_AMP_AMP, - ACTIONS(4056), 1, + ACTIONS(4076), 1, anon_sym_PIPE_PIPE, - ACTIONS(4070), 1, + ACTIONS(4126), 1, anon_sym_EQ, - ACTIONS(4140), 1, + ACTIONS(4172), 1, anon_sym_DOT_DOT, - ACTIONS(4490), 1, + ACTIONS(4522), 1, anon_sym_COMMA, - ACTIONS(4038), 2, + ACTIONS(4064), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4042), 2, + ACTIONS(4078), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4050), 2, + ACTIONS(4084), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4142), 2, + ACTIONS(4174), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1934), 2, + STATE(1947), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4066), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4082), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4124), 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, + [60371] = 22, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(3796), 1, + anon_sym_LBRACK, + ACTIONS(3800), 1, + anon_sym_QMARK, + ACTIONS(3802), 1, + anon_sym_DOT, + ACTIONS(3976), 1, + anon_sym_as, + ACTIONS(4068), 1, + anon_sym_CARET, + ACTIONS(4070), 1, + anon_sym_AMP, + ACTIONS(4072), 1, + anon_sym_PIPE, + ACTIONS(4074), 1, + anon_sym_AMP_AMP, + ACTIONS(4076), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4126), 1, + anon_sym_EQ, + ACTIONS(4172), 1, + anon_sym_DOT_DOT, + ACTIONS(4524), 1, + anon_sym_RBRACK, + ACTIONS(4064), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4078), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4084), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4174), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1948), 2, sym_line_comment, sym_block_comment, - ACTIONS(4036), 3, + ACTIONS(4066), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4048), 4, + ACTIONS(4082), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4068), 10, + ACTIONS(4124), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -164253,44 +166305,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [59717] = 16, + [60457] = 16, ACTIONS(29), 1, anon_sym_LT, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4206), 1, + ACTIONS(4254), 1, sym_identifier, - ACTIONS(4208), 1, + ACTIONS(4256), 1, anon_sym_LBRACE, - ACTIONS(4212), 1, + ACTIONS(4260), 1, anon_sym_STAR, - ACTIONS(4218), 1, + ACTIONS(4266), 1, anon_sym_COLON_COLON, - ACTIONS(4222), 1, + ACTIONS(4270), 1, sym_metavariable, - STATE(2516), 1, + STATE(2479), 1, sym_scoped_identifier, - STATE(3465), 1, + STATE(3604), 1, sym_generic_type_with_turbofish, - STATE(3481), 1, + STATE(3711), 1, sym__use_clause, - STATE(3688), 1, + STATE(3752), 1, sym_bracketed_type, - STATE(1935), 2, + STATE(1949), 2, sym_line_comment, sym_block_comment, - ACTIONS(4220), 3, + ACTIONS(4268), 3, sym_self, sym_super, sym_crate, - STATE(3015), 4, + STATE(2981), 4, sym_scoped_use_list, sym_use_list, sym_use_as_clause, sym_use_wildcard, - ACTIONS(4214), 20, + ACTIONS(4262), 20, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -164311,124 +166363,118 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_gen, anon_sym_union, - [59791] = 22, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [60531] = 16, + ACTIONS(29), 1, + anon_sym_LT, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3744), 1, - anon_sym_LBRACK, - ACTIONS(3748), 1, - anon_sym_QMARK, - ACTIONS(3750), 1, - anon_sym_DOT, - ACTIONS(3862), 1, - anon_sym_as, - ACTIONS(4040), 1, - anon_sym_AMP, - ACTIONS(4044), 1, - anon_sym_CARET, - ACTIONS(4046), 1, - anon_sym_PIPE, - ACTIONS(4052), 1, - anon_sym_AMP_AMP, - ACTIONS(4056), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4070), 1, - anon_sym_EQ, - ACTIONS(4140), 1, - anon_sym_DOT_DOT, - ACTIONS(4492), 1, - anon_sym_COMMA, - ACTIONS(4038), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4042), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4050), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4142), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1936), 2, + ACTIONS(4254), 1, + sym_identifier, + ACTIONS(4256), 1, + anon_sym_LBRACE, + ACTIONS(4260), 1, + anon_sym_STAR, + ACTIONS(4266), 1, + anon_sym_COLON_COLON, + ACTIONS(4270), 1, + sym_metavariable, + STATE(2479), 1, + sym_scoped_identifier, + STATE(3604), 1, + sym_generic_type_with_turbofish, + STATE(3651), 1, + sym__use_clause, + STATE(3752), 1, + sym_bracketed_type, + STATE(1950), 2, sym_line_comment, sym_block_comment, - ACTIONS(4036), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4048), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4068), 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, - [59877] = 22, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + ACTIONS(4268), 3, + sym_self, + sym_super, + sym_crate, + STATE(2981), 4, + sym_scoped_use_list, + sym_use_list, + sym_use_as_clause, + sym_use_wildcard, + ACTIONS(4262), 20, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_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, + [60605] = 22, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3744), 1, + ACTIONS(3796), 1, anon_sym_LBRACK, - ACTIONS(3748), 1, + ACTIONS(3800), 1, anon_sym_QMARK, - ACTIONS(3750), 1, + ACTIONS(3802), 1, anon_sym_DOT, - ACTIONS(3862), 1, + ACTIONS(3976), 1, anon_sym_as, - ACTIONS(4040), 1, - anon_sym_AMP, - ACTIONS(4044), 1, + ACTIONS(4068), 1, anon_sym_CARET, - ACTIONS(4046), 1, + ACTIONS(4070), 1, + anon_sym_AMP, + ACTIONS(4072), 1, anon_sym_PIPE, - ACTIONS(4052), 1, + ACTIONS(4074), 1, anon_sym_AMP_AMP, - ACTIONS(4056), 1, + ACTIONS(4076), 1, anon_sym_PIPE_PIPE, - ACTIONS(4070), 1, + ACTIONS(4126), 1, anon_sym_EQ, - ACTIONS(4140), 1, + ACTIONS(4172), 1, anon_sym_DOT_DOT, - ACTIONS(4494), 1, - anon_sym_RBRACK, - ACTIONS(4038), 2, + ACTIONS(4526), 1, + anon_sym_COMMA, + ACTIONS(4064), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4042), 2, + ACTIONS(4078), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4050), 2, + ACTIONS(4084), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4142), 2, + ACTIONS(4174), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1937), 2, + STATE(1951), 2, sym_line_comment, sym_block_comment, - ACTIONS(4036), 3, + ACTIONS(4066), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4048), 4, + ACTIONS(4082), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4068), 10, + ACTIONS(4124), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -164439,60 +166485,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [59963] = 22, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [60691] = 22, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3744), 1, + ACTIONS(3796), 1, anon_sym_LBRACK, - ACTIONS(3748), 1, + ACTIONS(3800), 1, anon_sym_QMARK, - ACTIONS(3750), 1, + ACTIONS(3802), 1, anon_sym_DOT, - ACTIONS(3862), 1, + ACTIONS(3976), 1, anon_sym_as, - ACTIONS(4040), 1, - anon_sym_AMP, - ACTIONS(4044), 1, + ACTIONS(4068), 1, anon_sym_CARET, - ACTIONS(4046), 1, + ACTIONS(4070), 1, + anon_sym_AMP, + ACTIONS(4072), 1, anon_sym_PIPE, - ACTIONS(4052), 1, + ACTIONS(4074), 1, anon_sym_AMP_AMP, - ACTIONS(4056), 1, + ACTIONS(4076), 1, anon_sym_PIPE_PIPE, - ACTIONS(4070), 1, + ACTIONS(4126), 1, anon_sym_EQ, - ACTIONS(4140), 1, + ACTIONS(4172), 1, anon_sym_DOT_DOT, - ACTIONS(4496), 1, - anon_sym_RBRACK, - ACTIONS(4038), 2, + ACTIONS(4528), 1, + anon_sym_SEMI, + ACTIONS(4064), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4042), 2, + ACTIONS(4078), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4050), 2, + ACTIONS(4084), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4142), 2, + ACTIONS(4174), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1938), 2, + STATE(1952), 2, sym_line_comment, sym_block_comment, - ACTIONS(4036), 3, + ACTIONS(4066), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4048), 4, + ACTIONS(4082), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4068), 10, + ACTIONS(4124), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -164503,60 +166549,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [60049] = 22, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [60777] = 21, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3744), 1, + ACTIONS(4306), 1, anon_sym_LBRACK, - ACTIONS(3748), 1, + ACTIONS(4308), 1, anon_sym_QMARK, - ACTIONS(3750), 1, + ACTIONS(4310), 1, anon_sym_DOT, - ACTIONS(3862), 1, + ACTIONS(4312), 1, anon_sym_as, - ACTIONS(4040), 1, - anon_sym_AMP, - ACTIONS(4044), 1, + ACTIONS(4352), 1, anon_sym_CARET, - ACTIONS(4046), 1, + ACTIONS(4354), 1, + anon_sym_AMP, + ACTIONS(4356), 1, anon_sym_PIPE, - ACTIONS(4052), 1, - anon_sym_AMP_AMP, - ACTIONS(4056), 1, + ACTIONS(4360), 1, anon_sym_PIPE_PIPE, - ACTIONS(4070), 1, + ACTIONS(4390), 1, anon_sym_EQ, - ACTIONS(4140), 1, + ACTIONS(4480), 1, anon_sym_DOT_DOT, - ACTIONS(4498), 1, - anon_sym_RBRACK, - ACTIONS(4038), 2, + ACTIONS(4348), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4042), 2, + ACTIONS(4362), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4050), 2, + ACTIONS(4366), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4142), 2, + ACTIONS(4406), 2, + anon_sym_EQ_GT, + anon_sym_AMP_AMP, + ACTIONS(4482), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1939), 2, + STATE(1953), 2, sym_line_comment, sym_block_comment, - ACTIONS(4036), 3, + ACTIONS(4350), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4048), 4, + ACTIONS(4364), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4068), 10, + ACTIONS(4388), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -164567,60 +166612,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [60135] = 22, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [60861] = 22, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3744), 1, + ACTIONS(3796), 1, anon_sym_LBRACK, - ACTIONS(3748), 1, + ACTIONS(3800), 1, anon_sym_QMARK, - ACTIONS(3750), 1, + ACTIONS(3802), 1, anon_sym_DOT, - ACTIONS(3862), 1, + ACTIONS(3976), 1, anon_sym_as, - ACTIONS(4040), 1, - anon_sym_AMP, - ACTIONS(4044), 1, + ACTIONS(4068), 1, anon_sym_CARET, - ACTIONS(4046), 1, + ACTIONS(4070), 1, + anon_sym_AMP, + ACTIONS(4072), 1, anon_sym_PIPE, - ACTIONS(4052), 1, + ACTIONS(4074), 1, anon_sym_AMP_AMP, - ACTIONS(4056), 1, + ACTIONS(4076), 1, anon_sym_PIPE_PIPE, - ACTIONS(4070), 1, + ACTIONS(4126), 1, anon_sym_EQ, - ACTIONS(4140), 1, + ACTIONS(4172), 1, anon_sym_DOT_DOT, - ACTIONS(4500), 1, + ACTIONS(4530), 1, anon_sym_SEMI, - ACTIONS(4038), 2, + ACTIONS(4064), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4042), 2, + ACTIONS(4078), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4050), 2, + ACTIONS(4084), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4142), 2, + ACTIONS(4174), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1940), 2, + STATE(1954), 2, sym_line_comment, sym_block_comment, - ACTIONS(4036), 3, + ACTIONS(4066), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4048), 4, + ACTIONS(4082), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4068), 10, + ACTIONS(4124), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -164631,60 +166676,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [60221] = 22, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [60947] = 22, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3744), 1, + ACTIONS(3796), 1, anon_sym_LBRACK, - ACTIONS(3748), 1, + ACTIONS(3800), 1, anon_sym_QMARK, - ACTIONS(3750), 1, + ACTIONS(3802), 1, anon_sym_DOT, - ACTIONS(3862), 1, + ACTIONS(3976), 1, anon_sym_as, - ACTIONS(4040), 1, - anon_sym_AMP, - ACTIONS(4044), 1, + ACTIONS(4068), 1, anon_sym_CARET, - ACTIONS(4046), 1, + ACTIONS(4070), 1, + anon_sym_AMP, + ACTIONS(4072), 1, anon_sym_PIPE, - ACTIONS(4052), 1, + ACTIONS(4074), 1, anon_sym_AMP_AMP, - ACTIONS(4056), 1, + ACTIONS(4076), 1, anon_sym_PIPE_PIPE, - ACTIONS(4070), 1, + ACTIONS(4126), 1, anon_sym_EQ, - ACTIONS(4140), 1, + ACTIONS(4172), 1, anon_sym_DOT_DOT, - ACTIONS(4502), 1, + ACTIONS(4532), 1, anon_sym_SEMI, - ACTIONS(4038), 2, + ACTIONS(4064), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4042), 2, + ACTIONS(4078), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4050), 2, + ACTIONS(4084), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4142), 2, + ACTIONS(4174), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1941), 2, + STATE(1955), 2, sym_line_comment, sym_block_comment, - ACTIONS(4036), 3, + ACTIONS(4066), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4048), 4, + ACTIONS(4082), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4068), 10, + ACTIONS(4124), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -164695,47 +166740,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [60307] = 17, + [61033] = 17, ACTIONS(29), 1, anon_sym_LT, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3986), 1, + ACTIONS(3842), 1, anon_sym_where, - ACTIONS(4504), 1, + ACTIONS(4534), 1, sym_identifier, - ACTIONS(4508), 1, + ACTIONS(4538), 1, anon_sym_COLON_COLON, - ACTIONS(4514), 1, + ACTIONS(4544), 1, sym_metavariable, - STATE(3125), 1, + STATE(3147), 1, sym_scoped_type_identifier, - STATE(3409), 1, + STATE(3435), 1, sym_generic_type, - STATE(3487), 1, + STATE(3513), 1, sym_scoped_identifier, - STATE(3597), 1, + STATE(3626), 1, sym_generic_type_with_turbofish, - STATE(3624), 1, + STATE(3653), 1, sym_bracketed_type, - STATE(1942), 2, + STATE(1956), 2, sym_line_comment, sym_block_comment, - ACTIONS(3984), 3, + ACTIONS(3840), 3, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, - ACTIONS(4510), 3, + ACTIONS(4540), 3, anon_sym_default, anon_sym_gen, anon_sym_union, - ACTIONS(4512), 3, + ACTIONS(4542), 3, sym_self, sym_super, sym_crate, - ACTIONS(4506), 17, + ACTIONS(4536), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -164753,105 +166798,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [60382] = 17, + [61108] = 17, ACTIONS(29), 1, anon_sym_LT, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3986), 1, - anon_sym_where, - ACTIONS(4508), 1, - anon_sym_COLON_COLON, - ACTIONS(4514), 1, - sym_metavariable, - ACTIONS(4516), 1, - sym_identifier, - STATE(2980), 1, - sym_scoped_type_identifier, - STATE(3142), 1, - sym_generic_type, - STATE(3487), 1, - sym_scoped_identifier, - STATE(3597), 1, - sym_generic_type_with_turbofish, - STATE(3624), 1, - sym_bracketed_type, - STATE(1943), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3984), 3, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - ACTIONS(4510), 3, - anon_sym_default, - anon_sym_gen, - anon_sym_union, - ACTIONS(4512), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(4506), 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, - [60457] = 17, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3986), 1, + ACTIONS(3842), 1, anon_sym_where, - ACTIONS(4508), 1, + ACTIONS(4538), 1, anon_sym_COLON_COLON, - ACTIONS(4514), 1, + ACTIONS(4544), 1, sym_metavariable, - ACTIONS(4518), 1, + ACTIONS(4546), 1, sym_identifier, - STATE(2970), 1, + STATE(3152), 1, sym_scoped_type_identifier, - STATE(3146), 1, + STATE(3440), 1, sym_generic_type, - STATE(3487), 1, + STATE(3513), 1, sym_scoped_identifier, - STATE(3597), 1, + STATE(3626), 1, sym_generic_type_with_turbofish, - STATE(3624), 1, + STATE(3653), 1, sym_bracketed_type, - STATE(1944), 2, + STATE(1957), 2, sym_line_comment, sym_block_comment, - ACTIONS(3984), 3, + ACTIONS(3840), 3, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, - ACTIONS(4510), 3, + ACTIONS(4540), 3, anon_sym_default, anon_sym_gen, anon_sym_union, - ACTIONS(4512), 3, + ACTIONS(4542), 3, sym_self, sym_super, sym_crate, - ACTIONS(4506), 17, + ACTIONS(4536), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -164869,105 +166856,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [60532] = 17, + [61183] = 17, ACTIONS(29), 1, anon_sym_LT, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3986), 1, - anon_sym_where, - ACTIONS(4508), 1, - anon_sym_COLON_COLON, - ACTIONS(4514), 1, - sym_metavariable, - ACTIONS(4520), 1, - sym_identifier, - STATE(3113), 1, - sym_scoped_type_identifier, - STATE(3384), 1, - sym_generic_type, - STATE(3487), 1, - sym_scoped_identifier, - STATE(3597), 1, - sym_generic_type_with_turbofish, - STATE(3624), 1, - sym_bracketed_type, - STATE(1945), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3984), 3, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - ACTIONS(4510), 3, - anon_sym_default, - anon_sym_gen, - anon_sym_union, - ACTIONS(4512), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(4506), 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, - [60607] = 17, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3986), 1, + ACTIONS(3842), 1, anon_sym_where, - ACTIONS(4508), 1, + ACTIONS(4538), 1, anon_sym_COLON_COLON, - ACTIONS(4514), 1, + ACTIONS(4544), 1, sym_metavariable, - ACTIONS(4522), 1, + ACTIONS(4548), 1, sym_identifier, - STATE(3117), 1, + STATE(2871), 1, sym_scoped_type_identifier, - STATE(3396), 1, + STATE(3191), 1, sym_generic_type, - STATE(3487), 1, + STATE(3513), 1, sym_scoped_identifier, - STATE(3597), 1, + STATE(3626), 1, sym_generic_type_with_turbofish, - STATE(3624), 1, + STATE(3653), 1, sym_bracketed_type, - STATE(1946), 2, + STATE(1958), 2, sym_line_comment, sym_block_comment, - ACTIONS(3984), 3, + ACTIONS(3840), 3, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, - ACTIONS(4510), 3, + ACTIONS(4540), 3, anon_sym_default, anon_sym_gen, anon_sym_union, - ACTIONS(4512), 3, + ACTIONS(4542), 3, sym_self, sym_super, sym_crate, - ACTIONS(4506), 17, + ACTIONS(4536), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -164985,47 +166914,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [60682] = 17, + [61258] = 17, ACTIONS(29), 1, anon_sym_LT, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3986), 1, + ACTIONS(3842), 1, anon_sym_where, - ACTIONS(4508), 1, + ACTIONS(4538), 1, anon_sym_COLON_COLON, - ACTIONS(4514), 1, + ACTIONS(4544), 1, sym_metavariable, - ACTIONS(4524), 1, + ACTIONS(4550), 1, sym_identifier, - STATE(2836), 1, + STATE(3159), 1, sym_scoped_type_identifier, - STATE(3309), 1, + STATE(3208), 1, sym_generic_type, - STATE(3487), 1, + STATE(3513), 1, sym_scoped_identifier, - STATE(3597), 1, + STATE(3626), 1, sym_generic_type_with_turbofish, - STATE(3624), 1, + STATE(3653), 1, sym_bracketed_type, - STATE(1947), 2, + STATE(1959), 2, sym_line_comment, sym_block_comment, - ACTIONS(3984), 3, + ACTIONS(3840), 3, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, - ACTIONS(4510), 3, + ACTIONS(4540), 3, anon_sym_default, anon_sym_gen, anon_sym_union, - ACTIONS(4512), 3, + ACTIONS(4542), 3, sym_self, sym_super, sym_crate, - ACTIONS(4506), 17, + ACTIONS(4536), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -165043,47 +166972,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [60757] = 17, + [61333] = 17, ACTIONS(29), 1, anon_sym_LT, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3986), 1, + ACTIONS(3842), 1, anon_sym_where, - ACTIONS(4508), 1, + ACTIONS(4538), 1, anon_sym_COLON_COLON, - ACTIONS(4514), 1, + ACTIONS(4544), 1, sym_metavariable, - ACTIONS(4526), 1, + ACTIONS(4552), 1, sym_identifier, - STATE(3121), 1, + STATE(2923), 1, sym_scoped_type_identifier, - STATE(3404), 1, + STATE(3221), 1, sym_generic_type, - STATE(3487), 1, + STATE(3513), 1, sym_scoped_identifier, - STATE(3597), 1, + STATE(3626), 1, sym_generic_type_with_turbofish, - STATE(3624), 1, + STATE(3653), 1, sym_bracketed_type, - STATE(1948), 2, + STATE(1960), 2, sym_line_comment, sym_block_comment, - ACTIONS(3984), 3, + ACTIONS(3840), 3, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, - ACTIONS(4510), 3, + ACTIONS(4540), 3, anon_sym_default, anon_sym_gen, anon_sym_union, - ACTIONS(4512), 3, + ACTIONS(4542), 3, sym_self, sym_super, sym_crate, - ACTIONS(4506), 17, + ACTIONS(4536), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -165101,47 +167030,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [60832] = 17, + [61408] = 17, ACTIONS(29), 1, anon_sym_LT, - ACTIONS(103), 1, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(3842), 1, + anon_sym_where, + ACTIONS(4538), 1, + anon_sym_COLON_COLON, + ACTIONS(4544), 1, + sym_metavariable, + ACTIONS(4554), 1, + sym_identifier, + STATE(3133), 1, + sym_scoped_type_identifier, + STATE(3226), 1, + sym_generic_type, + STATE(3513), 1, + sym_scoped_identifier, + STATE(3626), 1, + sym_generic_type_with_turbofish, + STATE(3653), 1, + sym_bracketed_type, + STATE(1961), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3840), 3, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + ACTIONS(4540), 3, + anon_sym_default, + anon_sym_gen, + anon_sym_union, + ACTIONS(4542), 3, + sym_self, + sym_super, + sym_crate, + ACTIONS(4536), 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, + [61483] = 17, + ACTIONS(29), 1, + anon_sym_LT, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3986), 1, + ACTIONS(3842), 1, anon_sym_where, - ACTIONS(4508), 1, + ACTIONS(4538), 1, anon_sym_COLON_COLON, - ACTIONS(4514), 1, + ACTIONS(4544), 1, sym_metavariable, - ACTIONS(4528), 1, + ACTIONS(4556), 1, sym_identifier, - STATE(3123), 1, + STATE(3142), 1, sym_scoped_type_identifier, - STATE(3406), 1, + STATE(3428), 1, sym_generic_type, - STATE(3487), 1, + STATE(3513), 1, sym_scoped_identifier, - STATE(3597), 1, + STATE(3626), 1, sym_generic_type_with_turbofish, - STATE(3624), 1, + STATE(3653), 1, sym_bracketed_type, - STATE(1949), 2, + STATE(1962), 2, sym_line_comment, sym_block_comment, - ACTIONS(3984), 3, + ACTIONS(3840), 3, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, - ACTIONS(4510), 3, + ACTIONS(4540), 3, anon_sym_default, anon_sym_gen, anon_sym_union, - ACTIONS(4512), 3, + ACTIONS(4542), 3, sym_self, sym_super, sym_crate, - ACTIONS(4506), 17, + ACTIONS(4536), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -165159,19 +167146,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [60907] = 5, - ACTIONS(103), 1, + [61558] = 17, + ACTIONS(29), 1, + anon_sym_LT, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(3842), 1, + anon_sym_where, + ACTIONS(4538), 1, + anon_sym_COLON_COLON, + ACTIONS(4544), 1, + sym_metavariable, + ACTIONS(4558), 1, + sym_identifier, + STATE(3145), 1, + sym_scoped_type_identifier, + STATE(3434), 1, + sym_generic_type, + STATE(3513), 1, + sym_scoped_identifier, + STATE(3626), 1, + sym_generic_type_with_turbofish, + STATE(3653), 1, + sym_bracketed_type, + STATE(1963), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3840), 3, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + ACTIONS(4540), 3, + anon_sym_default, + anon_sym_gen, + anon_sym_union, + ACTIONS(4542), 3, + sym_self, + sym_super, + sym_crate, + ACTIONS(4536), 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, + [61633] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1950), 2, + STATE(1964), 2, sym_line_comment, sym_block_comment, - ACTIONS(4532), 3, + ACTIONS(4562), 3, anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(4530), 29, + ACTIONS(4560), 30, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -165197,23 +167242,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, anon_sym_unsafe, anon_sym_extern, + anon_sym_safe, sym_identifier, sym_self, sym_super, sym_crate, - [60954] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [61681] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1951), 2, + STATE(1965), 2, sym_line_comment, sym_block_comment, - ACTIONS(4536), 3, + ACTIONS(4566), 3, anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(4534), 29, + ACTIONS(4564), 30, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -165239,23 +167285,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, anon_sym_unsafe, anon_sym_extern, + anon_sym_safe, sym_identifier, sym_self, sym_super, sym_crate, - [61001] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [61729] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1952), 2, + STATE(1966), 2, sym_line_comment, sym_block_comment, - ACTIONS(4540), 3, + ACTIONS(4570), 3, anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(4538), 29, + ACTIONS(4568), 30, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -165281,39 +167328,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, anon_sym_unsafe, anon_sym_extern, + anon_sym_safe, sym_identifier, sym_self, sym_super, sym_crate, - [61048] = 13, + [61777] = 13, ACTIONS(29), 1, anon_sym_LT, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(2554), 1, + ACTIONS(1867), 1, anon_sym_COLON_COLON, - ACTIONS(4542), 1, + ACTIONS(4572), 1, sym_identifier, - ACTIONS(4548), 1, + ACTIONS(4578), 1, sym_metavariable, - STATE(2350), 1, + STATE(2343), 1, sym_scoped_identifier, - STATE(3441), 1, - sym_bracketed_type, STATE(3467), 1, + sym_bracketed_type, + STATE(3493), 1, sym_generic_type_with_turbofish, - STATE(3678), 1, + STATE(3577), 1, sym_attribute, - STATE(1953), 2, + STATE(1967), 2, sym_line_comment, sym_block_comment, - ACTIONS(4546), 3, + ACTIONS(4576), 3, sym_self, sym_super, sym_crate, - ACTIONS(4544), 20, + ACTIONS(4574), 20, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -165334,35 +167382,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_gen, anon_sym_union, - [61110] = 13, + [61839] = 13, ACTIONS(29), 1, anon_sym_LT, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(2554), 1, + ACTIONS(1867), 1, anon_sym_COLON_COLON, - ACTIONS(4542), 1, + ACTIONS(4572), 1, sym_identifier, - ACTIONS(4548), 1, + ACTIONS(4578), 1, sym_metavariable, - STATE(2350), 1, + STATE(2343), 1, sym_scoped_identifier, - STATE(3441), 1, - sym_bracketed_type, STATE(3467), 1, + sym_bracketed_type, + STATE(3493), 1, sym_generic_type_with_turbofish, - STATE(3672), 1, + STATE(3630), 1, sym_attribute, - STATE(1954), 2, + STATE(1968), 2, sym_line_comment, sym_block_comment, - ACTIONS(4546), 3, + ACTIONS(4576), 3, sym_self, sym_super, sym_crate, - ACTIONS(4544), 20, + ACTIONS(4574), 20, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -165383,35 +167431,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_gen, anon_sym_union, - [61172] = 13, + [61901] = 13, ACTIONS(29), 1, anon_sym_LT, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(2554), 1, + ACTIONS(1867), 1, anon_sym_COLON_COLON, - ACTIONS(4542), 1, + ACTIONS(4572), 1, sym_identifier, - ACTIONS(4548), 1, + ACTIONS(4578), 1, sym_metavariable, - STATE(2350), 1, + STATE(2343), 1, sym_scoped_identifier, - STATE(3441), 1, - sym_bracketed_type, STATE(3467), 1, + sym_bracketed_type, + STATE(3493), 1, sym_generic_type_with_turbofish, - STATE(3722), 1, + STATE(3744), 1, sym_attribute, - STATE(1955), 2, + STATE(1969), 2, sym_line_comment, sym_block_comment, - ACTIONS(4546), 3, + ACTIONS(4576), 3, sym_self, sym_super, sym_crate, - ACTIONS(4544), 20, + ACTIONS(4574), 20, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -165432,35 +167480,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_gen, anon_sym_union, - [61234] = 13, + [61963] = 13, ACTIONS(29), 1, anon_sym_LT, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(2554), 1, + ACTIONS(1867), 1, anon_sym_COLON_COLON, - ACTIONS(4542), 1, + ACTIONS(4572), 1, sym_identifier, - ACTIONS(4548), 1, + ACTIONS(4578), 1, sym_metavariable, - STATE(2350), 1, + STATE(2343), 1, sym_scoped_identifier, - STATE(3441), 1, - sym_bracketed_type, STATE(3467), 1, + sym_bracketed_type, + STATE(3493), 1, sym_generic_type_with_turbofish, - STATE(3714), 1, + STATE(3609), 1, sym_attribute, - STATE(1956), 2, + STATE(1970), 2, sym_line_comment, sym_block_comment, - ACTIONS(4546), 3, + ACTIONS(4576), 3, sym_self, sym_super, sym_crate, - ACTIONS(4544), 20, + ACTIONS(4574), 20, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -165481,35 +167529,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_gen, anon_sym_union, - [61296] = 13, + [62025] = 13, ACTIONS(29), 1, anon_sym_LT, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(2554), 1, + ACTIONS(1867), 1, anon_sym_COLON_COLON, - ACTIONS(4542), 1, + ACTIONS(4572), 1, sym_identifier, - ACTIONS(4548), 1, + ACTIONS(4578), 1, sym_metavariable, - STATE(2350), 1, + STATE(2343), 1, sym_scoped_identifier, - STATE(3441), 1, - sym_bracketed_type, - STATE(3442), 1, - sym_attribute, STATE(3467), 1, + sym_bracketed_type, + STATE(3493), 1, sym_generic_type_with_turbofish, - STATE(1957), 2, + STATE(3563), 1, + sym_attribute, + STATE(1971), 2, sym_line_comment, sym_block_comment, - ACTIONS(4546), 3, + ACTIONS(4576), 3, sym_self, sym_super, sym_crate, - ACTIONS(4544), 20, + ACTIONS(4574), 20, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -165530,35 +167578,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_gen, anon_sym_union, - [61358] = 13, + [62087] = 13, ACTIONS(29), 1, anon_sym_LT, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(2554), 1, + ACTIONS(1867), 1, anon_sym_COLON_COLON, - ACTIONS(4542), 1, + ACTIONS(4572), 1, sym_identifier, - ACTIONS(4548), 1, + ACTIONS(4578), 1, sym_metavariable, - STATE(2350), 1, + STATE(2343), 1, sym_scoped_identifier, - STATE(3441), 1, - sym_bracketed_type, STATE(3467), 1, + sym_bracketed_type, + STATE(3493), 1, sym_generic_type_with_turbofish, STATE(3510), 1, sym_attribute, - STATE(1958), 2, + STATE(1972), 2, sym_line_comment, sym_block_comment, - ACTIONS(4546), 3, + ACTIONS(4576), 3, sym_self, sym_super, sym_crate, - ACTIONS(4544), 20, + ACTIONS(4574), 20, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -165579,35 +167627,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_gen, anon_sym_union, - [61420] = 13, + [62149] = 13, ACTIONS(29), 1, anon_sym_LT, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(2554), 1, + ACTIONS(1867), 1, anon_sym_COLON_COLON, - ACTIONS(4542), 1, + ACTIONS(4572), 1, sym_identifier, - ACTIONS(4548), 1, + ACTIONS(4578), 1, sym_metavariable, - STATE(2350), 1, + STATE(2343), 1, sym_scoped_identifier, - STATE(3441), 1, - sym_bracketed_type, STATE(3467), 1, + sym_bracketed_type, + STATE(3493), 1, sym_generic_type_with_turbofish, - STATE(3625), 1, + STATE(3707), 1, sym_attribute, - STATE(1959), 2, + STATE(1973), 2, sym_line_comment, sym_block_comment, - ACTIONS(4546), 3, + ACTIONS(4576), 3, sym_self, sym_super, sym_crate, - ACTIONS(4544), 20, + ACTIONS(4574), 20, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -165628,35 +167676,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_gen, anon_sym_union, - [61482] = 13, + [62211] = 13, ACTIONS(29), 1, anon_sym_LT, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(2554), 1, + ACTIONS(1867), 1, anon_sym_COLON_COLON, - ACTIONS(4542), 1, + ACTIONS(4572), 1, sym_identifier, - ACTIONS(4548), 1, + ACTIONS(4578), 1, sym_metavariable, - STATE(2350), 1, + STATE(2343), 1, sym_scoped_identifier, - STATE(3441), 1, - sym_bracketed_type, STATE(3467), 1, - sym_generic_type_with_turbofish, - STATE(3560), 1, + sym_bracketed_type, + STATE(3487), 1, sym_attribute, - STATE(1960), 2, + STATE(3493), 1, + sym_generic_type_with_turbofish, + STATE(1974), 2, sym_line_comment, sym_block_comment, - ACTIONS(4546), 3, + ACTIONS(4576), 3, sym_self, sym_super, sym_crate, - ACTIONS(4544), 20, + ACTIONS(4574), 20, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -165677,35 +167725,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_gen, anon_sym_union, - [61544] = 13, + [62273] = 13, ACTIONS(29), 1, anon_sym_LT, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(2554), 1, + ACTIONS(1867), 1, anon_sym_COLON_COLON, - ACTIONS(4542), 1, + ACTIONS(4572), 1, sym_identifier, - ACTIONS(4548), 1, + ACTIONS(4578), 1, sym_metavariable, - STATE(2350), 1, + STATE(2343), 1, sym_scoped_identifier, - STATE(3441), 1, - sym_bracketed_type, STATE(3467), 1, + sym_bracketed_type, + STATE(3493), 1, sym_generic_type_with_turbofish, - STATE(3473), 1, + STATE(3642), 1, sym_attribute, - STATE(1961), 2, + STATE(1975), 2, sym_line_comment, sym_block_comment, - ACTIONS(4546), 3, + ACTIONS(4576), 3, sym_self, sym_super, sym_crate, - ACTIONS(4544), 20, + ACTIONS(4574), 20, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -165726,33 +167774,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_gen, anon_sym_union, - [61606] = 12, + [62335] = 12, ACTIONS(29), 1, anon_sym_LT, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4550), 1, + ACTIONS(4580), 1, sym_identifier, - ACTIONS(4554), 1, + ACTIONS(4584), 1, anon_sym_COLON_COLON, - ACTIONS(4558), 1, + ACTIONS(4588), 1, sym_metavariable, - STATE(3218), 1, + STATE(3255), 1, sym_scoped_identifier, - STATE(3465), 1, + STATE(3604), 1, sym_generic_type_with_turbofish, - STATE(3688), 1, + STATE(3752), 1, sym_bracketed_type, - STATE(1962), 2, + STATE(1976), 2, sym_line_comment, sym_block_comment, - ACTIONS(4556), 3, + ACTIONS(4586), 3, sym_self, sym_super, sym_crate, - ACTIONS(4552), 20, + ACTIONS(4582), 20, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -165773,33 +167821,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_gen, anon_sym_union, - [61665] = 12, + [62394] = 12, ACTIONS(29), 1, anon_sym_LT, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4554), 1, + ACTIONS(4584), 1, anon_sym_COLON_COLON, - ACTIONS(4560), 1, + ACTIONS(4590), 1, sym_identifier, - ACTIONS(4566), 1, + ACTIONS(4596), 1, sym_metavariable, - STATE(3213), 1, + STATE(3397), 1, sym_scoped_identifier, - STATE(3465), 1, + STATE(3604), 1, sym_generic_type_with_turbofish, - STATE(3688), 1, + STATE(3752), 1, sym_bracketed_type, - STATE(1963), 2, + STATE(1977), 2, sym_line_comment, sym_block_comment, - ACTIONS(4564), 3, + ACTIONS(4594), 3, sym_self, sym_super, sym_crate, - ACTIONS(4562), 20, + ACTIONS(4592), 20, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -165820,17 +167868,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_gen, anon_sym_union, - [61724] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [62453] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(1003), 1, + ACTIONS(1026), 1, anon_sym_DOT_DOT, - STATE(1964), 2, + STATE(1978), 2, sym_line_comment, sym_block_comment, - ACTIONS(1005), 20, + ACTIONS(1028), 21, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -165849,19 +167897,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fn, anon_sym_unsafe, anon_sym_extern, + anon_sym_safe, anon_sym_else, anon_sym_in, - [61760] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [62490] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(1017), 1, + ACTIONS(1012), 1, anon_sym_DOT_DOT, - STATE(1965), 2, + STATE(1979), 2, sym_line_comment, sym_block_comment, - ACTIONS(1019), 20, + ACTIONS(1014), 21, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -165880,31 +167929,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fn, anon_sym_unsafe, anon_sym_extern, + anon_sym_safe, anon_sym_else, anon_sym_in, - [61796] = 11, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [62527] = 11, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3356), 1, + ACTIONS(3370), 1, anon_sym_COLON, - ACTIONS(4568), 1, + ACTIONS(4598), 1, anon_sym_LPAREN, - ACTIONS(4570), 1, + ACTIONS(4600), 1, anon_sym_BANG, - ACTIONS(4572), 1, + ACTIONS(4602), 1, anon_sym_COLON_COLON, - ACTIONS(4574), 1, + ACTIONS(4604), 1, anon_sym_LT2, - STATE(1999), 1, + STATE(2016), 1, sym_type_arguments, - STATE(2017), 1, + STATE(2033), 1, sym_parameters, - STATE(1966), 2, + STATE(1980), 2, sym_line_comment, sym_block_comment, - ACTIONS(3352), 14, + ACTIONS(3366), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -165919,20 +167969,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [61844] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [62575] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3419), 1, + ACTIONS(3538), 1, anon_sym_COLON, - ACTIONS(3423), 2, + ACTIONS(3542), 2, anon_sym_BANG, anon_sym_COLON_COLON, - STATE(1967), 2, + STATE(1981), 2, sym_line_comment, sym_block_comment, - ACTIONS(3417), 17, + ACTIONS(3536), 17, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -165950,20 +168000,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_where, anon_sym_else, anon_sym_LT2, - [61881] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [62612] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3455), 1, + ACTIONS(3437), 1, anon_sym_COLON, - ACTIONS(3459), 2, + ACTIONS(3441), 2, anon_sym_BANG, anon_sym_COLON_COLON, - STATE(1968), 2, + STATE(1982), 2, sym_line_comment, sym_block_comment, - ACTIONS(3453), 17, + ACTIONS(3435), 17, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -165981,20 +168031,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_where, anon_sym_else, anon_sym_LT2, - [61918] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [62649] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3411), 1, + ACTIONS(3413), 1, anon_sym_COLON, - ACTIONS(3415), 2, + ACTIONS(3417), 2, anon_sym_BANG, anon_sym_COLON_COLON, - STATE(1969), 2, + STATE(1983), 2, sym_line_comment, sym_block_comment, - ACTIONS(3409), 17, + ACTIONS(3411), 17, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -166012,59 +168062,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_where, anon_sym_else, anon_sym_LT2, - [61955] = 14, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [62686] = 10, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4570), 1, - anon_sym_BANG, - ACTIONS(4574), 1, - anon_sym_LT2, - ACTIONS(4578), 1, - anon_sym_LPAREN, - ACTIONS(4580), 1, - anon_sym_LBRACE, - ACTIONS(4582), 1, + ACTIONS(3409), 1, anon_sym_COLON, - ACTIONS(4584), 1, - anon_sym_AT, - ACTIONS(4586), 1, - anon_sym_DOT_DOT, - ACTIONS(4590), 1, + ACTIONS(4598), 1, + anon_sym_LPAREN, + ACTIONS(4604), 1, + anon_sym_LT2, + ACTIONS(4606), 1, anon_sym_COLON_COLON, - STATE(1999), 1, + STATE(2016), 1, sym_type_arguments, - ACTIONS(4588), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1970), 2, + STATE(2033), 1, + sym_parameters, + STATE(1984), 2, sym_line_comment, sym_block_comment, - ACTIONS(4576), 9, + ACTIONS(3407), 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, - anon_sym_in, - [62008] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [62731] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3435), 1, + ACTIONS(3499), 1, anon_sym_COLON, - ACTIONS(3439), 2, + ACTIONS(3503), 2, anon_sym_BANG, anon_sym_COLON_COLON, - STATE(1971), 2, + STATE(1985), 2, sym_line_comment, sym_block_comment, - ACTIONS(3433), 17, + ACTIONS(3497), 17, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -166082,27 +168128,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_where, anon_sym_else, anon_sym_LT2, - [62045] = 10, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [62768] = 10, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3372), 1, + ACTIONS(3392), 1, anon_sym_COLON, - ACTIONS(4568), 1, + ACTIONS(4598), 1, anon_sym_LPAREN, - ACTIONS(4574), 1, + ACTIONS(4604), 1, anon_sym_LT2, - ACTIONS(4592), 1, + ACTIONS(4606), 1, anon_sym_COLON_COLON, - STATE(1999), 1, + STATE(2016), 1, sym_type_arguments, - STATE(2017), 1, + STATE(2033), 1, sym_parameters, - STATE(1972), 2, + STATE(1986), 2, sym_line_comment, sym_block_comment, - ACTIONS(3370), 14, + ACTIONS(3390), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -166117,27 +168163,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [62090] = 10, - ACTIONS(103), 1, + [62813] = 14, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(4600), 1, + anon_sym_BANG, + ACTIONS(4604), 1, + anon_sym_LT2, + ACTIONS(4610), 1, + anon_sym_LPAREN, + ACTIONS(4612), 1, + anon_sym_LBRACE, + ACTIONS(4614), 1, + anon_sym_COLON, + ACTIONS(4616), 1, + anon_sym_AT, + ACTIONS(4618), 1, + anon_sym_DOT_DOT, + ACTIONS(4622), 1, + anon_sym_COLON_COLON, + STATE(2016), 1, + sym_type_arguments, + ACTIONS(4620), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1987), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4608), 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, + [62866] = 10, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3366), 1, + ACTIONS(3398), 1, anon_sym_COLON, - ACTIONS(4568), 1, + ACTIONS(4598), 1, anon_sym_LPAREN, - ACTIONS(4574), 1, + ACTIONS(4604), 1, anon_sym_LT2, - ACTIONS(4592), 1, + ACTIONS(4606), 1, anon_sym_COLON_COLON, - STATE(1999), 1, + STATE(2016), 1, sym_type_arguments, - STATE(2017), 1, + STATE(2033), 1, sym_parameters, - STATE(1973), 2, + STATE(1988), 2, sym_line_comment, sym_block_comment, - ACTIONS(3364), 14, + ACTIONS(3396), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -166152,28 +168237,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [62135] = 10, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [62911] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3383), 1, + ACTIONS(3708), 1, anon_sym_COLON, - ACTIONS(4568), 1, - anon_sym_LPAREN, - ACTIONS(4574), 1, - anon_sym_LT2, - ACTIONS(4592), 1, - anon_sym_COLON_COLON, - STATE(1999), 1, - sym_type_arguments, - STATE(2017), 1, - sym_parameters, - STATE(1974), 2, + STATE(1989), 2, sym_line_comment, sym_block_comment, - ACTIONS(3381), 14, + ACTIONS(3706), 18, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_LBRACE, @@ -166183,27 +168259,30 @@ 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, - [62180] = 8, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + anon_sym_in, + [62945] = 8, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4568), 1, + ACTIONS(4598), 1, anon_sym_LPAREN, - ACTIONS(4574), 1, + ACTIONS(4604), 1, anon_sym_LT2, - STATE(1993), 1, + STATE(2013), 1, sym_type_arguments, - STATE(2006), 1, + STATE(2025), 1, sym_parameters, - STATE(1975), 2, + STATE(1990), 2, sym_line_comment, sym_block_comment, - ACTIONS(3425), 15, + ACTIONS(3505), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -166219,22 +168298,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [62220] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [62985] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3437), 2, + ACTIONS(3501), 2, anon_sym_COLON, anon_sym_DOT_DOT, - STATE(1976), 2, + STATE(1991), 2, sym_line_comment, sym_block_comment, - ACTIONS(3433), 3, + ACTIONS(3497), 3, anon_sym_LBRACE, anon_sym_for, anon_sym_LT2, - ACTIONS(3439), 14, + ACTIONS(3503), 14, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -166249,78 +168328,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_else, anon_sym_in, - [62256] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [63021] = 8, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3674), 1, - anon_sym_COLON, - STATE(1977), 2, + ACTIONS(4598), 1, + anon_sym_LPAREN, + ACTIONS(4604), 1, + anon_sym_LT2, + STATE(2013), 1, + sym_type_arguments, + STATE(2025), 1, + sym_parameters, + STATE(1992), 2, sym_line_comment, sym_block_comment, - ACTIONS(3672), 18, + ACTIONS(3509), 15, anon_sym_SEMI, - anon_sym_LPAREN, 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_COLON_COLON, anon_sym_SQUOTE, anon_sym_as, - anon_sym_for, anon_sym_where, anon_sym_else, - anon_sym_in, - [62290] = 8, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [63061] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4568), 1, - anon_sym_LPAREN, - ACTIONS(4574), 1, - anon_sym_LT2, - STATE(1993), 1, - sym_type_arguments, - STATE(2006), 1, - sym_parameters, - STATE(1978), 2, + ACTIONS(3439), 2, + anon_sym_COLON, + anon_sym_DOT_DOT, + STATE(1993), 2, sym_line_comment, sym_block_comment, - ACTIONS(3441), 15, + ACTIONS(3435), 3, + anon_sym_LBRACE, + anon_sym_for, + anon_sym_LT2, + ACTIONS(3441), 14, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_PLUS, + anon_sym_BANG, anon_sym_PIPE, anon_sym_EQ, - anon_sym_GT, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_where, + anon_sym_COLON_COLON, anon_sym_else, - [62330] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + anon_sym_in, + [63097] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3664), 1, + ACTIONS(3686), 1, anon_sym_COLON, - STATE(1979), 2, + STATE(1994), 2, sym_line_comment, sym_block_comment, - ACTIONS(3662), 18, + ACTIONS(3684), 18, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -166339,22 +168419,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_where, anon_sym_else, anon_sym_in, - [62364] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [63131] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3413), 2, + ACTIONS(3540), 2, anon_sym_COLON, anon_sym_DOT_DOT, - STATE(1980), 2, + STATE(1995), 2, sym_line_comment, sym_block_comment, - ACTIONS(3409), 3, + ACTIONS(3536), 3, anon_sym_LBRACE, anon_sym_for, anon_sym_LT2, - ACTIONS(3415), 14, + ACTIONS(3542), 14, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -166369,146 +168449,176 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_else, anon_sym_in, - [62400] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [63167] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3457), 2, + ACTIONS(3730), 1, anon_sym_COLON, - anon_sym_DOT_DOT, - STATE(1981), 2, + STATE(1996), 2, sym_line_comment, sym_block_comment, - ACTIONS(3453), 3, - anon_sym_LBRACE, - anon_sym_for, - anon_sym_LT2, - ACTIONS(3459), 14, + ACTIONS(3728), 18, 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_as, + anon_sym_for, + anon_sym_where, anon_sym_else, anon_sym_in, - [62436] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [63201] = 8, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3682), 1, - anon_sym_COLON, - STATE(1982), 2, + ACTIONS(4598), 1, + anon_sym_LPAREN, + ACTIONS(4604), 1, + anon_sym_LT2, + STATE(2013), 1, + sym_type_arguments, + STATE(2025), 1, + sym_parameters, + STATE(1997), 2, sym_line_comment, sym_block_comment, - ACTIONS(3680), 18, + ACTIONS(3475), 15, anon_sym_SEMI, - anon_sym_LPAREN, 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_COLON_COLON, anon_sym_SQUOTE, anon_sym_as, - anon_sym_for, anon_sym_where, anon_sym_else, - anon_sym_in, - [62470] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [63241] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3650), 1, + ACTIONS(3415), 2, anon_sym_COLON, - STATE(1983), 2, + anon_sym_DOT_DOT, + STATE(1998), 2, sym_line_comment, sym_block_comment, - ACTIONS(3648), 18, + ACTIONS(3411), 3, + anon_sym_LBRACE, + anon_sym_for, + anon_sym_LT2, + ACTIONS(3417), 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_COLON_COLON, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_for, - anon_sym_where, anon_sym_else, anon_sym_in, - [62504] = 8, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [63277] = 8, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4568), 1, + ACTIONS(4598), 1, anon_sym_LPAREN, - ACTIONS(4574), 1, + ACTIONS(4604), 1, anon_sym_LT2, - STATE(1993), 1, + STATE(2013), 1, sym_type_arguments, - STATE(2006), 1, + STATE(2025), 1, sym_parameters, - STATE(1984), 2, + STATE(1999), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3527), 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, + [63317] = 5, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(3716), 1, + anon_sym_COLON, + STATE(2000), 2, sym_line_comment, sym_block_comment, - ACTIONS(3429), 15, + ACTIONS(3714), 18, anon_sym_SEMI, + anon_sym_LPAREN, 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_COLON_COLON, anon_sym_SQUOTE, anon_sym_as, + anon_sym_for, anon_sym_where, anon_sym_else, - [62544] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + anon_sym_in, + [63351] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3421), 2, + ACTIONS(3415), 2, anon_sym_COLON, anon_sym_DOT_DOT, - STATE(1985), 2, + STATE(2001), 2, sym_line_comment, sym_block_comment, - ACTIONS(3417), 3, - anon_sym_LBRACE, - anon_sym_for, - anon_sym_LT2, - ACTIONS(3423), 14, + ACTIONS(3417), 16, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_BANG, anon_sym_PIPE, @@ -166519,24 +168629,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_else, anon_sym_in, - [62580] = 8, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [63384] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4568), 1, - anon_sym_LPAREN, - ACTIONS(4574), 1, - anon_sym_LT2, - STATE(1993), 1, - sym_type_arguments, - STATE(2006), 1, - sym_parameters, - STATE(1986), 2, + STATE(2002), 2, sym_line_comment, sym_block_comment, - ACTIONS(3449), 15, + ACTIONS(3497), 18, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_LBRACE, @@ -166549,57 +168652,104 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_SQUOTE, anon_sym_as, + anon_sym_for, anon_sym_where, anon_sym_else, - [62620] = 14, - ACTIONS(37), 1, - anon_sym_SQUOTE, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + anon_sym_LT2, + [63415] = 20, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(1241), 1, - anon_sym_DASH, - ACTIONS(1289), 1, - aux_sym_string_literal_token1, - ACTIONS(1299), 1, - sym__raw_string_literal_start, - ACTIONS(1601), 1, + ACTIONS(4626), 1, + anon_sym_const, + ACTIONS(4628), 1, + anon_sym_enum, + ACTIONS(4630), 1, + anon_sym_fn, + ACTIONS(4632), 1, + anon_sym_mod, + ACTIONS(4634), 1, + anon_sym_static, + ACTIONS(4636), 1, + anon_sym_struct, + ACTIONS(4638), 1, + anon_sym_trait, + ACTIONS(4640), 1, + anon_sym_type, + ACTIONS(4642), 1, + anon_sym_union, + ACTIONS(4644), 1, + anon_sym_unsafe, + ACTIONS(4646), 1, + anon_sym_use, + ACTIONS(4648), 1, + anon_sym_extern, + ACTIONS(4650), 1, + anon_sym_safe, + STATE(2210), 1, + sym_extern_modifier, + STATE(2244), 1, + aux_sym_function_modifiers_repeat1, + STATE(3757), 1, + sym_function_modifiers, + ACTIONS(4624), 2, + anon_sym_async, + anon_sym_default, + STATE(2003), 2, + sym_line_comment, + sym_block_comment, + [63478] = 16, + ACTIONS(19), 1, anon_sym_LBRACE, - ACTIONS(4594), 1, - sym_identifier, - STATE(3709), 1, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(3386), 1, + anon_sym_SQUOTE, + ACTIONS(4652), 1, + anon_sym_impl, + ACTIONS(4654), 1, + anon_sym_pub, + ACTIONS(4656), 1, + anon_sym_static, + ACTIONS(4658), 1, + anon_sym_trait, + ACTIONS(4660), 1, + anon_sym_extern, + ACTIONS(4663), 1, + sym_crate, + STATE(413), 1, + sym_block, + STATE(2933), 1, + sym_extern_modifier, + STATE(3246), 1, + sym_visibility_modifier, + STATE(3582), 1, sym_label, - ACTIONS(1291), 2, - anon_sym_true, - anon_sym_false, - STATE(1987), 2, + STATE(2004), 2, sym_line_comment, sym_block_comment, - ACTIONS(1617), 3, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - STATE(3070), 3, - sym_string_literal, - sym_raw_string_literal, - sym_boolean_literal, - STATE(3163), 3, - sym_block, - sym__literal, - sym_negative_literal, - [62671] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + ACTIONS(3525), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_safe, + [63533] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3457), 2, + ACTIONS(3501), 2, anon_sym_COLON, anon_sym_DOT_DOT, - STATE(1988), 2, + STATE(2005), 2, sym_line_comment, sym_block_comment, - ACTIONS(3459), 16, + ACTIONS(3503), 16, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -166616,46 +168766,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_else, anon_sym_in, - [62704] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [63566] = 14, + ACTIONS(37), 1, + anon_sym_SQUOTE, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3421), 2, - anon_sym_COLON, - anon_sym_DOT_DOT, - STATE(1989), 2, + ACTIONS(1246), 1, + anon_sym_DASH, + ACTIONS(1294), 1, + aux_sym_string_literal_token1, + ACTIONS(1304), 1, + sym__raw_string_literal_start, + ACTIONS(1606), 1, + anon_sym_LBRACE, + ACTIONS(4665), 1, + sym_identifier, + STATE(3739), 1, + sym_label, + ACTIONS(1296), 2, + anon_sym_true, + anon_sym_false, + STATE(2006), 2, sym_line_comment, sym_block_comment, - ACTIONS(3423), 16, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG, - anon_sym_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, - [62737] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + ACTIONS(1622), 3, + sym_float_literal, + sym_integer_literal, + sym_char_literal, + STATE(2948), 3, + sym_string_literal, + sym_raw_string_literal, + sym_boolean_literal, + STATE(3211), 3, + sym_block, + sym__literal, + sym_negative_literal, + [63617] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3413), 2, + ACTIONS(3540), 2, anon_sym_COLON, anon_sym_DOT_DOT, - STATE(1990), 2, + STATE(2007), 2, sym_line_comment, sym_block_comment, - ACTIONS(3415), 16, + ACTIONS(3542), 16, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -166672,45 +168831,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_else, anon_sym_in, - [62770] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [63650] = 20, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1991), 2, + ACTIONS(4656), 1, + anon_sym_static, + ACTIONS(4658), 1, + anon_sym_trait, + ACTIONS(4667), 1, + anon_sym_const, + ACTIONS(4669), 1, + anon_sym_enum, + ACTIONS(4671), 1, + anon_sym_fn, + ACTIONS(4673), 1, + anon_sym_mod, + ACTIONS(4675), 1, + anon_sym_struct, + ACTIONS(4677), 1, + anon_sym_type, + ACTIONS(4679), 1, + anon_sym_union, + ACTIONS(4681), 1, + anon_sym_unsafe, + ACTIONS(4683), 1, + anon_sym_use, + ACTIONS(4685), 1, + anon_sym_extern, + ACTIONS(4687), 1, + anon_sym_safe, + STATE(2168), 1, + sym_extern_modifier, + STATE(2244), 1, + aux_sym_function_modifiers_repeat1, + STATE(3583), 1, + sym_function_modifiers, + ACTIONS(4624), 2, + anon_sym_async, + anon_sym_default, + STATE(2008), 2, sym_line_comment, sym_block_comment, - ACTIONS(3409), 18, - anon_sym_SEMI, - anon_sym_LPAREN, - 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_for, - anon_sym_where, - anon_sym_else, - anon_sym_LT2, - [62801] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [63713] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3437), 2, + ACTIONS(3439), 2, anon_sym_COLON, anon_sym_DOT_DOT, - STATE(1992), 2, + STATE(2009), 2, sym_line_comment, sym_block_comment, - ACTIONS(3439), 16, + ACTIONS(3441), 16, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -166727,44 +168902,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_else, anon_sym_in, - [62834] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [63746] = 12, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3604), 1, + ACTIONS(4604), 1, + anon_sym_LT2, + ACTIONS(4691), 1, anon_sym_COLON, - STATE(1993), 2, + ACTIONS(4693), 1, + anon_sym_BANG, + ACTIONS(4695), 1, + anon_sym_DOT_DOT, + ACTIONS(4699), 1, + anon_sym_COLON_COLON, + STATE(2011), 1, + sym_type_arguments, + ACTIONS(4697), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2010), 2, sym_line_comment, sym_block_comment, - ACTIONS(3602), 16, - anon_sym_SEMI, + ACTIONS(4689), 3, 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, - [62866] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + ACTIONS(3525), 7, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + anon_sym_safe, + [63793] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3588), 1, + ACTIONS(3624), 1, anon_sym_COLON, - STATE(1994), 2, + STATE(2011), 2, sym_line_comment, sym_block_comment, - ACTIONS(3586), 16, + ACTIONS(3622), 16, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -166781,146 +168964,117 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_where, anon_sym_else, - [62898] = 12, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [63825] = 11, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4574), 1, + ACTIONS(4604), 1, anon_sym_LT2, - ACTIONS(4598), 1, - anon_sym_COLON, - ACTIONS(4600), 1, + ACTIONS(4693), 1, anon_sym_BANG, - ACTIONS(4602), 1, + ACTIONS(4695), 1, anon_sym_DOT_DOT, - ACTIONS(4606), 1, + ACTIONS(4701), 1, anon_sym_COLON_COLON, - STATE(1994), 1, + STATE(2011), 1, sym_type_arguments, - ACTIONS(4604), 2, + ACTIONS(4697), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1995), 2, + STATE(2012), 2, sym_line_comment, sym_block_comment, - ACTIONS(4596), 3, - anon_sym_RPAREN, + ACTIONS(4689), 3, + anon_sym_RBRACK, anon_sym_PIPE, anon_sym_COMMA, - ACTIONS(3530), 6, + ACTIONS(3525), 7, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [62944] = 19, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + anon_sym_safe, + [63869] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4610), 1, - anon_sym_const, - ACTIONS(4612), 1, - anon_sym_enum, - ACTIONS(4614), 1, - anon_sym_fn, - ACTIONS(4616), 1, - anon_sym_mod, - ACTIONS(4618), 1, - anon_sym_static, - ACTIONS(4620), 1, - anon_sym_struct, - ACTIONS(4622), 1, - anon_sym_trait, - ACTIONS(4624), 1, - anon_sym_type, - ACTIONS(4626), 1, - anon_sym_union, - ACTIONS(4628), 1, - anon_sym_unsafe, - ACTIONS(4630), 1, - anon_sym_use, - ACTIONS(4632), 1, - anon_sym_extern, - STATE(2209), 1, - sym_extern_modifier, - STATE(2252), 1, - aux_sym_function_modifiers_repeat1, - STATE(3558), 1, - sym_function_modifiers, - ACTIONS(4608), 2, - anon_sym_async, - anon_sym_default, - STATE(1996), 2, + ACTIONS(3640), 1, + anon_sym_COLON, + STATE(2013), 2, sym_line_comment, sym_block_comment, - [63004] = 19, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + ACTIONS(3638), 16, + 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, + [63901] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4634), 1, + ACTIONS(4703), 1, + anon_sym_LPAREN, + STATE(2014), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4086), 16, + anon_sym_async, anon_sym_const, - ACTIONS(4636), 1, + anon_sym_default, anon_sym_enum, - ACTIONS(4638), 1, anon_sym_fn, - ACTIONS(4640), 1, anon_sym_mod, - ACTIONS(4642), 1, anon_sym_static, - ACTIONS(4644), 1, anon_sym_struct, - ACTIONS(4646), 1, anon_sym_trait, - ACTIONS(4648), 1, anon_sym_type, - ACTIONS(4650), 1, anon_sym_union, - ACTIONS(4652), 1, anon_sym_unsafe, - ACTIONS(4654), 1, anon_sym_use, - ACTIONS(4656), 1, anon_sym_extern, - STATE(2197), 1, - sym_extern_modifier, - STATE(2252), 1, - aux_sym_function_modifiers_repeat1, - STATE(3727), 1, - sym_function_modifiers, - ACTIONS(4608), 2, - anon_sym_async, - anon_sym_default, - STATE(1997), 2, - sym_line_comment, - sym_block_comment, - [63064] = 11, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + anon_sym_safe, + sym_identifier, + [63933] = 11, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4574), 1, + ACTIONS(4604), 1, anon_sym_LT2, - ACTIONS(4598), 1, + ACTIONS(4691), 1, anon_sym_COLON, - ACTIONS(4600), 1, + ACTIONS(4693), 1, anon_sym_BANG, - ACTIONS(4602), 1, + ACTIONS(4695), 1, anon_sym_DOT_DOT, - ACTIONS(4658), 1, + ACTIONS(4705), 1, anon_sym_COLON_COLON, - STATE(1994), 1, + STATE(2011), 1, sym_type_arguments, - ACTIONS(4604), 2, + ACTIONS(4697), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1998), 2, + STATE(2015), 2, sym_line_comment, sym_block_comment, - ACTIONS(4596), 9, + ACTIONS(4689), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -166930,17 +169084,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [63108] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [63977] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3600), 1, + ACTIONS(3636), 1, anon_sym_COLON, - STATE(1999), 2, + STATE(2016), 2, sym_line_comment, sym_block_comment, - ACTIONS(3598), 16, + ACTIONS(3634), 16, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -166957,46 +169111,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_where, anon_sym_else, - [63140] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [64009] = 6, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3443), 1, - anon_sym_COLON, - ACTIONS(4660), 1, - anon_sym_COLON_COLON, - STATE(2000), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3441), 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, - [63173] = 6, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3427), 1, + ACTIONS(3511), 1, anon_sym_COLON, - ACTIONS(4660), 1, + ACTIONS(4707), 1, anon_sym_COLON_COLON, - STATE(2001), 2, + STATE(2017), 2, sym_line_comment, sym_block_comment, - ACTIONS(3425), 14, + ACTIONS(3509), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -167011,17 +169138,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [63206] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [64042] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4662), 1, + ACTIONS(4709), 1, anon_sym_DASH_GT, - STATE(2002), 2, + STATE(2018), 2, sym_line_comment, sym_block_comment, - ACTIONS(3642), 15, + ACTIONS(3678), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -167037,82 +169164,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [63237] = 17, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [64073] = 16, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3352), 1, - anon_sym_PLUS, - ACTIONS(4570), 1, + ACTIONS(4600), 1, anon_sym_BANG, - ACTIONS(4574), 1, + ACTIONS(4604), 1, anon_sym_LT2, - ACTIONS(4576), 1, - anon_sym_PIPE, - ACTIONS(4580), 1, + ACTIONS(4612), 1, anon_sym_LBRACE, - ACTIONS(4582), 1, - anon_sym_COLON, - ACTIONS(4584), 1, + ACTIONS(4616), 1, anon_sym_AT, - ACTIONS(4586), 1, + ACTIONS(4618), 1, anon_sym_DOT_DOT, - ACTIONS(4664), 1, + ACTIONS(4711), 1, anon_sym_LPAREN, - ACTIONS(4669), 1, + ACTIONS(4713), 1, + anon_sym_RBRACK, + ACTIONS(4716), 1, anon_sym_COLON_COLON, - STATE(1999), 1, + STATE(2016), 1, sym_type_arguments, - STATE(2017), 1, + STATE(2033), 1, sym_parameters, - ACTIONS(4588), 2, + ACTIONS(3366), 2, + anon_sym_SEMI, + anon_sym_PLUS, + ACTIONS(4608), 2, + anon_sym_PIPE, + anon_sym_COMMA, + ACTIONS(4620), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(4666), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(2003), 2, + STATE(2019), 2, sym_line_comment, sym_block_comment, - [63292] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [64126] = 6, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(2004), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1047), 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_SQUOTE, - anon_sym_as, - anon_sym_where, - anon_sym_else, - anon_sym_in, - [63321] = 6, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3427), 1, + ACTIONS(3477), 1, anon_sym_COLON, - ACTIONS(4671), 1, + ACTIONS(4707), 1, anon_sym_COLON_COLON, - STATE(2005), 2, + STATE(2020), 2, sym_line_comment, sym_block_comment, - ACTIONS(3425), 14, + ACTIONS(3475), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -167127,17 +169228,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [63354] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [64159] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4673), 1, - anon_sym_DASH_GT, - STATE(2006), 2, + STATE(2021), 2, sym_line_comment, sym_block_comment, - ACTIONS(3618), 15, + ACTIONS(3732), 16, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -167149,44 +169248,72 @@ 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, - [63385] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [64188] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(2007), 2, + ACTIONS(3507), 1, + anon_sym_COLON, + ACTIONS(4707), 1, + anon_sym_COLON_COLON, + STATE(2022), 2, sym_line_comment, sym_block_comment, - ACTIONS(3666), 16, + ACTIONS(3505), 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, - [63414] = 4, - ACTIONS(103), 1, + [64221] = 4, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + STATE(2023), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4132), 16, + 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, + anon_sym_safe, + sym_identifier, + [64250] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(2008), 2, + STATE(2024), 2, sym_line_comment, sym_block_comment, - ACTIONS(1051), 16, + ACTIONS(1482), 16, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -167203,15 +169330,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_where, anon_sym_else, anon_sym_in, - [63443] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [64279] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(2009), 2, + ACTIONS(4718), 1, + anon_sym_DASH_GT, + STATE(2025), 2, sym_line_comment, sym_block_comment, - ACTIONS(1471), 16, + ACTIONS(3654), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -167227,18 +169356,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - anon_sym_in, - [63472] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [64310] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4675), 1, + ACTIONS(4720), 1, anon_sym_DASH_GT, - STATE(2010), 2, + STATE(2026), 2, sym_line_comment, sym_block_comment, - ACTIONS(3630), 15, + ACTIONS(3642), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -167254,15 +169382,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [63503] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [64341] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(2011), 2, + STATE(2027), 2, sym_line_comment, sym_block_comment, - ACTIONS(3684), 16, + ACTIONS(3710), 16, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -167279,40 +169407,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [63532] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [64370] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(2012), 2, + ACTIONS(3529), 1, + anon_sym_COLON, + ACTIONS(4707), 1, + anon_sym_COLON_COLON, + STATE(2028), 2, sym_line_comment, sym_block_comment, - ACTIONS(3626), 16, + ACTIONS(3527), 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, - [63561] = 4, - ACTIONS(103), 1, + [64403] = 5, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(4722), 1, + anon_sym_COLON_COLON, + STATE(2029), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4088), 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, + anon_sym_safe, + [64434] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(2013), 2, + STATE(2030), 2, sym_line_comment, sym_block_comment, - ACTIONS(1437), 16, + ACTIONS(3662), 16, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -167324,20 +169480,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, - anon_sym_in, - [63590] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [64463] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(2014), 2, + STATE(2031), 2, sym_line_comment, sym_block_comment, - ACTIONS(3676), 16, + ACTIONS(1048), 16, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -167349,59 +169505,33 @@ 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, - [63619] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + anon_sym_in, + [64492] = 10, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4677), 1, - anon_sym_LPAREN, - STATE(2015), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4102), 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, - [63650] = 10, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4570), 1, + ACTIONS(4600), 1, anon_sym_BANG, - ACTIONS(4578), 1, + ACTIONS(4610), 1, anon_sym_LPAREN, - ACTIONS(4582), 1, + ACTIONS(4614), 1, anon_sym_COLON, - ACTIONS(4586), 1, + ACTIONS(4618), 1, anon_sym_DOT_DOT, - ACTIONS(4679), 1, + ACTIONS(4724), 1, anon_sym_COLON_COLON, - ACTIONS(4588), 2, + ACTIONS(4620), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(2016), 2, + STATE(2032), 2, sym_line_comment, sym_block_comment, - ACTIONS(4576), 9, + ACTIONS(4608), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -167411,17 +169541,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [63691] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [64533] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4681), 1, + ACTIONS(4726), 1, anon_sym_DASH_GT, - STATE(2017), 2, + STATE(2033), 2, sym_line_comment, sym_block_comment, - ACTIONS(3612), 15, + ACTIONS(3648), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -167437,79 +169567,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [63722] = 16, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [64564] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4570), 1, - anon_sym_BANG, - ACTIONS(4574), 1, - anon_sym_LT2, - ACTIONS(4576), 1, - anon_sym_PIPE, - ACTIONS(4580), 1, - anon_sym_LBRACE, - ACTIONS(4582), 1, + ACTIONS(3507), 1, anon_sym_COLON, - ACTIONS(4584), 1, - anon_sym_AT, - ACTIONS(4586), 1, - anon_sym_DOT_DOT, - ACTIONS(4683), 1, - anon_sym_LPAREN, - ACTIONS(4685), 1, + ACTIONS(4728), 1, anon_sym_COLON_COLON, - STATE(1999), 1, - sym_type_arguments, - STATE(2017), 1, - sym_parameters, - ACTIONS(4588), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2018), 2, + STATE(2034), 2, sym_line_comment, sym_block_comment, - ACTIONS(3352), 3, + ACTIONS(3505), 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, - [63775] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_where, + anon_sym_else, + [64597] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3451), 1, - anon_sym_COLON, - ACTIONS(4660), 1, - anon_sym_COLON_COLON, - STATE(2019), 2, + STATE(2035), 2, sym_line_comment, sym_block_comment, - ACTIONS(3449), 14, + ACTIONS(3688), 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, - [63808] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [64626] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(2020), 2, + ACTIONS(4730), 1, + anon_sym_DASH_GT, + STATE(2036), 2, sym_line_comment, sym_block_comment, - ACTIONS(3652), 16, + ACTIONS(3692), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -167521,66 +169641,60 @@ 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, - [63837] = 16, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [64657] = 12, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4570), 1, - anon_sym_BANG, - ACTIONS(4574), 1, + ACTIONS(4604), 1, anon_sym_LT2, - ACTIONS(4580), 1, - anon_sym_LBRACE, - ACTIONS(4584), 1, - anon_sym_AT, - ACTIONS(4586), 1, - anon_sym_DOT_DOT, - ACTIONS(4666), 1, - anon_sym_RBRACK, - ACTIONS(4687), 1, - anon_sym_LPAREN, ACTIONS(4689), 1, + anon_sym_PIPE, + ACTIONS(4691), 1, + anon_sym_COLON, + ACTIONS(4693), 1, + anon_sym_BANG, + ACTIONS(4695), 1, + anon_sym_DOT_DOT, + ACTIONS(4732), 1, anon_sym_COLON_COLON, - STATE(1999), 1, + STATE(2011), 1, sym_type_arguments, - STATE(2017), 1, - sym_parameters, - ACTIONS(3352), 2, - anon_sym_SEMI, - anon_sym_PLUS, - ACTIONS(4576), 2, - anon_sym_PIPE, - anon_sym_COMMA, - ACTIONS(4588), 2, + ACTIONS(4697), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(2021), 2, + STATE(2037), 2, sym_line_comment, sym_block_comment, - [63890] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + ACTIONS(3525), 7, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + anon_sym_safe, + [64702] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3431), 1, - anon_sym_COLON, - ACTIONS(4660), 1, - anon_sym_COLON_COLON, - STATE(2022), 2, + ACTIONS(4734), 1, + anon_sym_DASH_GT, + STATE(2038), 2, sym_line_comment, sym_block_comment, - ACTIONS(3429), 14, + ACTIONS(3666), 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, @@ -167590,17 +169704,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [63923] = 5, - ACTIONS(103), 1, + [64733] = 5, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(4060), 1, + anon_sym_COLON_COLON, + STATE(2039), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4088), 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, + anon_sym_safe, + [64764] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4691), 1, - anon_sym_DASH_GT, - STATE(2023), 2, + STATE(2040), 2, sym_line_comment, sym_block_comment, - ACTIONS(3656), 15, + ACTIONS(1044), 16, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -167616,17 +169754,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [63954] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + anon_sym_in, + [64793] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4693), 1, - anon_sym_DASH_GT, - STATE(2024), 2, + STATE(2041), 2, sym_line_comment, sym_block_comment, - ACTIONS(3636), 15, + ACTIONS(3718), 16, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -167638,23 +169775,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, - [63985] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [64822] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3427), 1, + ACTIONS(3507), 1, anon_sym_COLON, - ACTIONS(4695), 1, + ACTIONS(4736), 1, anon_sym_COLON_COLON, - STATE(2025), 2, + STATE(2042), 2, sym_line_comment, sym_block_comment, - ACTIONS(3425), 14, + ACTIONS(3505), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -167669,49 +169807,128 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [64018] = 11, - ACTIONS(103), 1, + [64855] = 5, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(4738), 1, + anon_sym_DASH_GT, + STATE(2043), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3672), 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, + [64886] = 16, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4574), 1, - anon_sym_LT2, ACTIONS(4600), 1, anon_sym_BANG, - ACTIONS(4602), 1, + ACTIONS(4604), 1, + anon_sym_LT2, + ACTIONS(4608), 1, + anon_sym_PIPE, + ACTIONS(4612), 1, + anon_sym_LBRACE, + ACTIONS(4614), 1, + anon_sym_COLON, + ACTIONS(4616), 1, + anon_sym_AT, + ACTIONS(4618), 1, anon_sym_DOT_DOT, - ACTIONS(4697), 1, + ACTIONS(4740), 1, + anon_sym_LPAREN, + ACTIONS(4742), 1, anon_sym_COLON_COLON, - STATE(1994), 1, + STATE(2016), 1, sym_type_arguments, - ACTIONS(4604), 2, + STATE(2033), 1, + sym_parameters, + ACTIONS(4620), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(2026), 2, + STATE(2044), 2, sym_line_comment, sym_block_comment, - ACTIONS(4596), 3, - anon_sym_RBRACK, - anon_sym_PIPE, + ACTIONS(3366), 3, + anon_sym_RPAREN, + anon_sym_PLUS, anon_sym_COMMA, - ACTIONS(3530), 6, + [64939] = 4, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + STATE(2045), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4109), 16, 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, - [64061] = 5, - ACTIONS(103), 1, + anon_sym_safe, + sym_identifier, + [64968] = 4, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + STATE(2046), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4136), 16, + 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, + anon_sym_safe, + sym_identifier, + [64997] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4699), 1, - anon_sym_DASH_GT, - STATE(2027), 2, + STATE(2047), 2, sym_line_comment, sym_block_comment, - ACTIONS(3606), 15, + ACTIONS(1448), 16, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -167727,15 +169944,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [64092] = 4, - ACTIONS(103), 1, + anon_sym_in, + [65026] = 17, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(3366), 1, + anon_sym_PLUS, + ACTIONS(4600), 1, + anon_sym_BANG, + ACTIONS(4604), 1, + anon_sym_LT2, + ACTIONS(4608), 1, + anon_sym_PIPE, + ACTIONS(4612), 1, + anon_sym_LBRACE, + ACTIONS(4614), 1, + anon_sym_COLON, + ACTIONS(4616), 1, + anon_sym_AT, + ACTIONS(4618), 1, + anon_sym_DOT_DOT, + ACTIONS(4744), 1, + anon_sym_LPAREN, + ACTIONS(4746), 1, + anon_sym_COLON_COLON, + STATE(2016), 1, + sym_type_arguments, + STATE(2033), 1, + sym_parameters, + ACTIONS(4620), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(4713), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(2048), 2, + sym_line_comment, + sym_block_comment, + [65081] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(2028), 2, + STATE(2049), 2, sym_line_comment, sym_block_comment, - ACTIONS(3850), 15, + ACTIONS(3872), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -167751,15 +170007,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [64120] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [65109] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(2029), 2, + STATE(2050), 2, sym_line_comment, sym_block_comment, - ACTIONS(3836), 15, + ACTIONS(3944), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -167775,15 +170031,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [64148] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [65137] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(2030), 2, + STATE(2051), 2, sym_line_comment, sym_block_comment, - ACTIONS(3425), 15, + ACTIONS(3900), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -167799,39 +170055,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [64176] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [65165] = 4, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(2031), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4113), 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, - [64204] = 4, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(2032), 2, + STATE(2052), 2, sym_line_comment, sym_block_comment, - ACTIONS(3828), 15, + ACTIONS(3840), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -167847,15 +170079,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [64232] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [65193] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(2033), 2, + STATE(2053), 2, sym_line_comment, sym_block_comment, - ACTIONS(3768), 15, + ACTIONS(3948), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -167871,15 +170103,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [64260] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [65221] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(2034), 2, + STATE(2054), 2, sym_line_comment, sym_block_comment, - ACTIONS(3918), 15, + ACTIONS(3786), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -167895,15 +170127,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [64288] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [65249] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(2035), 2, + STATE(2055), 2, sym_line_comment, sym_block_comment, - ACTIONS(3449), 15, + ACTIONS(3744), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -167919,15 +170151,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [64316] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [65277] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(2036), 2, + STATE(2056), 2, sym_line_comment, sym_block_comment, - ACTIONS(3752), 15, + ACTIONS(3968), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -167943,15 +170175,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [64344] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [65305] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(2037), 2, + STATE(2057), 2, sym_line_comment, sym_block_comment, - ACTIONS(3772), 15, + ACTIONS(3836), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -167967,15 +170199,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [64372] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [65333] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(2038), 2, + STATE(2058), 2, sym_line_comment, sym_block_comment, - ACTIONS(3756), 15, + ACTIONS(3509), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -167991,15 +170223,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [64400] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [65361] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(2039), 2, + STATE(2059), 2, sym_line_comment, sym_block_comment, - ACTIONS(3738), 15, + ACTIONS(3818), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -168015,15 +170247,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [64428] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [65389] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(2040), 2, + STATE(2060), 2, sym_line_comment, sym_block_comment, - ACTIONS(3902), 15, + ACTIONS(3748), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -168039,39 +170271,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [64456] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [65417] = 4, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(2041), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4109), 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, - [64484] = 4, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(2042), 2, + STATE(2061), 2, sym_line_comment, sym_block_comment, - ACTIONS(3906), 15, + ACTIONS(3892), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -168087,15 +170295,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [64512] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [65445] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(2043), 2, + STATE(2062), 2, sym_line_comment, sym_block_comment, - ACTIONS(3760), 15, + ACTIONS(3844), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -168111,15 +170319,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [64540] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [65473] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(2044), 2, + STATE(2063), 2, sym_line_comment, sym_block_comment, - ACTIONS(3808), 15, + ACTIONS(3778), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -168135,15 +170343,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [64568] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [65501] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(2045), 2, + STATE(2064), 2, sym_line_comment, sym_block_comment, - ACTIONS(3910), 15, + ACTIONS(3908), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -168159,15 +170367,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [64596] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [65529] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(2046), 2, + STATE(2065), 2, sym_line_comment, sym_block_comment, - ACTIONS(3734), 15, + ACTIONS(3808), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -168183,15 +170391,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [64624] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [65557] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(2047), 2, + STATE(2066), 2, sym_line_comment, sym_block_comment, - ACTIONS(3429), 15, + ACTIONS(3852), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -168207,40 +170415,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [64652] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [65585] = 4, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4028), 1, - anon_sym_COLON_COLON, - STATE(2048), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4107), 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, - [64682] = 4, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(2049), 2, + STATE(2067), 2, sym_line_comment, sym_block_comment, - ACTIONS(3812), 15, + ACTIONS(3912), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -168256,15 +170439,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [64710] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [65613] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(2050), 2, + STATE(2068), 2, sym_line_comment, sym_block_comment, - ACTIONS(3930), 15, + ACTIONS(3856), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -168280,15 +170463,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [64738] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [65641] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(2051), 2, + STATE(2069), 2, sym_line_comment, sym_block_comment, - ACTIONS(3914), 15, + ACTIONS(3505), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -168304,15 +170487,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [64766] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [65669] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(2052), 2, + STATE(2070), 2, sym_line_comment, sym_block_comment, - ACTIONS(3926), 15, + ACTIONS(3822), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -168328,15 +170511,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [64794] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [65697] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(2053), 2, + STATE(2071), 2, sym_line_comment, sym_block_comment, - ACTIONS(3850), 15, + ACTIONS(3782), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -168352,15 +170535,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [64822] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [65725] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(2054), 2, + STATE(2072), 2, sym_line_comment, sym_block_comment, - ACTIONS(3850), 15, + ACTIONS(3860), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -168376,15 +170559,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [64850] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [65753] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(2055), 2, + STATE(2073), 2, sym_line_comment, sym_block_comment, - ACTIONS(3868), 15, + ACTIONS(3864), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -168400,15 +170583,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [64878] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [65781] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(2056), 2, + STATE(2074), 2, sym_line_comment, sym_block_comment, - ACTIONS(3776), 15, + ACTIONS(3868), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -168424,39 +170607,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [64906] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [65809] = 4, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(2057), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4122), 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, - [64934] = 4, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(2058), 2, + STATE(2075), 2, sym_line_comment, sym_block_comment, - ACTIONS(3832), 15, + ACTIONS(3808), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -168472,15 +170631,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [64962] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [65837] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(2059), 2, + STATE(2076), 2, sym_line_comment, sym_block_comment, - ACTIONS(3984), 15, + ACTIONS(3808), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -168496,15 +170655,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [64990] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [65865] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(2060), 2, + STATE(2077), 2, sym_line_comment, sym_block_comment, - ACTIONS(3816), 15, + ACTIONS(3830), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -168520,15 +170679,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [65018] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [65893] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(2061), 2, + STATE(2078), 2, sym_line_comment, sym_block_comment, - ACTIONS(3872), 15, + ACTIONS(3475), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -168544,15 +170703,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [65046] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [65921] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(2062), 2, + STATE(2079), 2, sym_line_comment, sym_block_comment, - ACTIONS(3764), 15, + ACTIONS(3896), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -168568,15 +170727,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [65074] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [65949] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(2063), 2, + STATE(2080), 2, sym_line_comment, sym_block_comment, - ACTIONS(3824), 15, + ACTIONS(3527), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -168592,47 +170751,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [65102] = 12, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [65977] = 4, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4574), 1, - anon_sym_LT2, - ACTIONS(4596), 1, - anon_sym_PIPE, - ACTIONS(4598), 1, - anon_sym_COLON, - ACTIONS(4600), 1, - anon_sym_BANG, - ACTIONS(4602), 1, - anon_sym_DOT_DOT, - ACTIONS(4701), 1, - anon_sym_COLON_COLON, - STATE(1994), 1, - sym_type_arguments, - ACTIONS(4604), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2064), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3530), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [65146] = 4, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(2065), 2, + STATE(2081), 2, sym_line_comment, sym_block_comment, - ACTIONS(3922), 15, + ACTIONS(3888), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -168648,15 +170775,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [65174] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [66005] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(2066), 2, + STATE(2082), 2, sym_line_comment, sym_block_comment, - ACTIONS(3441), 15, + ACTIONS(3790), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -168672,74 +170799,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [65202] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [66033] = 12, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4703), 1, - anon_sym_COLON_COLON, - STATE(2067), 2, + ACTIONS(4634), 1, + anon_sym_static, + ACTIONS(4638), 1, + anon_sym_trait, + ACTIONS(4654), 1, + anon_sym_pub, + ACTIONS(4660), 1, + anon_sym_extern, + ACTIONS(4663), 1, + sym_crate, + ACTIONS(4748), 1, + anon_sym_impl, + STATE(3111), 1, + sym_extern_modifier, + STATE(3338), 1, + sym_visibility_modifier, + STATE(2083), 2, sym_line_comment, sym_block_comment, - ACTIONS(4107), 14, + ACTIONS(3525), 6, 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, - [65232] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + anon_sym_safe, + [66076] = 8, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4707), 1, - anon_sym_pat, - STATE(162), 1, - sym_fragment_specifier, - STATE(2068), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4705), 12, - anon_sym_block, - anon_sym_expr, - anon_sym_ident, - anon_sym_item, - anon_sym_lifetime, - anon_sym_literal, - anon_sym_meta, - anon_sym_path, - anon_sym_stmt, - anon_sym_tt, - anon_sym_ty, - anon_sym_vis, - [65263] = 8, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4598), 1, + ACTIONS(4691), 1, anon_sym_COLON, - ACTIONS(4602), 1, + ACTIONS(4695), 1, anon_sym_DOT_DOT, - ACTIONS(4658), 1, + ACTIONS(4705), 1, anon_sym_COLON_COLON, - ACTIONS(4604), 2, + ACTIONS(4697), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(2069), 2, + STATE(2084), 2, sym_line_comment, sym_block_comment, - ACTIONS(4596), 9, + ACTIONS(4689), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -168749,17 +170857,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [65298] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [66111] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4711), 1, + ACTIONS(4752), 1, anon_sym_DOT_DOT, - STATE(2070), 2, + STATE(2085), 2, sym_line_comment, sym_block_comment, - ACTIONS(4709), 13, + ACTIONS(4750), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -168773,17 +170881,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [65327] = 5, - ACTIONS(103), 1, + [66140] = 6, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(4756), 1, + anon_sym_pat, + STATE(168), 1, + sym_fragment_specifier, + STATE(2086), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4754), 12, + anon_sym_block, + anon_sym_expr, + anon_sym_ident, + anon_sym_item, + anon_sym_lifetime, + anon_sym_literal, + anon_sym_meta, + anon_sym_path, + anon_sym_stmt, + anon_sym_tt, + anon_sym_ty, + anon_sym_vis, + [66171] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(997), 1, + ACTIONS(1022), 1, anon_sym_DOT_DOT, - STATE(2071), 2, + STATE(2087), 2, sym_line_comment, sym_block_comment, - ACTIONS(999), 13, + ACTIONS(1024), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -168797,17 +170930,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [65356] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [66200] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(1009), 1, + ACTIONS(1006), 1, anon_sym_DOT_DOT, - STATE(2072), 2, + STATE(2088), 2, sym_line_comment, sym_block_comment, - ACTIONS(1011), 13, + ACTIONS(1008), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -168821,684 +170954,631 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [65385] = 14, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [66229] = 7, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4568), 1, - anon_sym_LPAREN, - ACTIONS(4570), 1, - anon_sym_BANG, - ACTIONS(4572), 1, - anon_sym_COLON_COLON, - ACTIONS(4574), 1, - anon_sym_LT2, - ACTIONS(4713), 1, - anon_sym_COLON, - ACTIONS(4715), 1, - anon_sym_EQ, - STATE(1999), 1, - sym_type_arguments, - STATE(2017), 1, - sym_parameters, - STATE(2960), 1, - sym_trait_bounds, - ACTIONS(3352), 2, - anon_sym_PLUS, - anon_sym_as, - ACTIONS(4717), 2, - anon_sym_GT, - anon_sym_COMMA, - STATE(2073), 2, - sym_line_comment, - sym_block_comment, - [65431] = 5, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4721), 1, + ACTIONS(3415), 1, anon_sym_DOT_DOT, - STATE(2074), 2, + ACTIONS(4758), 2, + anon_sym_LPAREN, + anon_sym_RBRACK, + STATE(2089), 2, sym_line_comment, sym_block_comment, - ACTIONS(4719), 12, + ACTIONS(3411), 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(3417), 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, - [65459] = 13, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + anon_sym_COLON_COLON, + [66261] = 13, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4574), 1, + ACTIONS(4604), 1, anon_sym_LT2, - ACTIONS(4723), 1, + ACTIONS(4761), 1, anon_sym_LPAREN, - ACTIONS(4725), 1, + ACTIONS(4763), 1, anon_sym_LBRACE, - ACTIONS(4727), 1, + ACTIONS(4765), 1, anon_sym_BANG, - ACTIONS(4729), 1, + ACTIONS(4767), 1, anon_sym_AT, - ACTIONS(4731), 1, + ACTIONS(4769), 1, anon_sym_DOT_DOT, - ACTIONS(4735), 1, + ACTIONS(4773), 1, anon_sym_COLON_COLON, - STATE(1999), 1, + STATE(2016), 1, sym_type_arguments, - ACTIONS(4733), 2, + ACTIONS(4771), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(2075), 2, + STATE(2090), 2, sym_line_comment, sym_block_comment, - ACTIONS(4576), 3, + ACTIONS(4608), 3, anon_sym_EQ_GT, anon_sym_PIPE, anon_sym_if, - [65503] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [66305] = 7, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4586), 1, - anon_sym_DOT_DOT, - ACTIONS(4588), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2076), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4576), 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, - [65533] = 7, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3457), 1, - anon_sym_DOT_DOT, - ACTIONS(4737), 2, + ACTIONS(4775), 1, anon_sym_LPAREN, - anon_sym_RBRACK, - STATE(2077), 2, + ACTIONS(3540), 2, + anon_sym_COLON, + anon_sym_DOT_DOT, + STATE(2091), 2, sym_line_comment, sym_block_comment, - ACTIONS(3453), 4, - anon_sym_SEMI, + ACTIONS(3536), 5, + anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_PLUS, + anon_sym_COMMA, anon_sym_LT2, - ACTIONS(3459), 6, + ACTIONS(3542), 5, anon_sym_BANG, anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, anon_sym_COLON_COLON, - [65565] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [66337] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3457), 2, - anon_sym_COLON, + ACTIONS(3540), 1, anon_sym_DOT_DOT, - STATE(2078), 2, + ACTIONS(4775), 2, + anon_sym_LPAREN, + anon_sym_RBRACK, + STATE(2092), 2, sym_line_comment, sym_block_comment, - ACTIONS(3453), 3, + ACTIONS(3536), 4, + anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(4737), 3, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(3459), 5, + ACTIONS(3542), 6, anon_sym_BANG, anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, anon_sym_COLON_COLON, - [65597] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [66369] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3421), 1, + ACTIONS(3501), 1, anon_sym_DOT_DOT, - ACTIONS(4740), 2, + ACTIONS(4778), 2, anon_sym_LPAREN, anon_sym_RBRACK, - STATE(2079), 2, + STATE(2093), 2, sym_line_comment, sym_block_comment, - ACTIONS(3417), 4, + ACTIONS(3497), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(3423), 6, + ACTIONS(3503), 6, anon_sym_BANG, anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COMMA, anon_sym_COLON_COLON, - [65629] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [66401] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3413), 1, + ACTIONS(3439), 1, anon_sym_DOT_DOT, - ACTIONS(4743), 2, + ACTIONS(4781), 2, anon_sym_LPAREN, anon_sym_RBRACK, - STATE(2080), 2, + STATE(2094), 2, sym_line_comment, sym_block_comment, - ACTIONS(3409), 4, + ACTIONS(3435), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(3415), 6, + ACTIONS(3441), 6, anon_sym_BANG, anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COMMA, anon_sym_COLON_COLON, - [65661] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [66433] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3437), 1, + ACTIONS(4786), 1, anon_sym_DOT_DOT, - ACTIONS(4746), 2, - anon_sym_LPAREN, - anon_sym_RBRACK, - STATE(2081), 2, + STATE(2095), 2, sym_line_comment, sym_block_comment, - ACTIONS(3433), 4, + ACTIONS(4784), 12, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(3439), 6, - anon_sym_BANG, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_COLON, anon_sym_PIPE, + anon_sym_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COMMA, - anon_sym_COLON_COLON, - [65693] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + anon_sym_else, + anon_sym_in, + [66461] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4743), 1, - anon_sym_LPAREN, - ACTIONS(3413), 2, + ACTIONS(3439), 2, anon_sym_COLON, anon_sym_DOT_DOT, - STATE(2082), 2, + STATE(2096), 2, sym_line_comment, sym_block_comment, - ACTIONS(3409), 5, - anon_sym_RPAREN, + ACTIONS(3435), 3, anon_sym_LBRACE, anon_sym_PLUS, - anon_sym_COMMA, anon_sym_LT2, - ACTIONS(3415), 5, + ACTIONS(4781), 3, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(3441), 5, anon_sym_BANG, anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, - [65725] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [66493] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4746), 1, - anon_sym_LPAREN, - ACTIONS(3437), 2, + ACTIONS(3540), 2, anon_sym_COLON, anon_sym_DOT_DOT, - STATE(2083), 2, + STATE(2097), 2, sym_line_comment, sym_block_comment, - ACTIONS(3433), 5, - anon_sym_RPAREN, + ACTIONS(3536), 3, anon_sym_LBRACE, anon_sym_PLUS, - anon_sym_COMMA, anon_sym_LT2, - ACTIONS(3439), 5, + ACTIONS(4775), 3, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(3542), 5, anon_sym_BANG, anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, - [65757] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [66525] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4737), 1, - anon_sym_LPAREN, - ACTIONS(3457), 2, - anon_sym_COLON, + ACTIONS(4618), 1, anon_sym_DOT_DOT, - STATE(2084), 2, + ACTIONS(4620), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2098), 2, sym_line_comment, sym_block_comment, - ACTIONS(3453), 5, + ACTIONS(4608), 10, + anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_LT2, - ACTIONS(3459), 5, - anon_sym_BANG, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_COLON, anon_sym_PIPE, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, - [65789] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_else, + anon_sym_in, + [66555] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3413), 2, + ACTIONS(3415), 2, anon_sym_COLON, anon_sym_DOT_DOT, - STATE(2085), 2, + STATE(2099), 2, sym_line_comment, sym_block_comment, - ACTIONS(3409), 3, + ACTIONS(3411), 3, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(4743), 3, + ACTIONS(4758), 3, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(3415), 5, + ACTIONS(3417), 5, anon_sym_BANG, anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, - [65821] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [66587] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4740), 1, + ACTIONS(4758), 1, anon_sym_LPAREN, - ACTIONS(3421), 2, + ACTIONS(3415), 2, anon_sym_COLON, anon_sym_DOT_DOT, - STATE(2086), 2, + STATE(2100), 2, sym_line_comment, sym_block_comment, - ACTIONS(3417), 5, + ACTIONS(3411), 5, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_COMMA, anon_sym_LT2, - ACTIONS(3423), 5, + ACTIONS(3417), 5, anon_sym_BANG, anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, - [65853] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [66619] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3421), 2, + ACTIONS(3501), 2, anon_sym_COLON, anon_sym_DOT_DOT, - STATE(2087), 2, + STATE(2101), 2, sym_line_comment, sym_block_comment, - ACTIONS(3417), 3, + ACTIONS(3497), 3, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(4740), 3, + ACTIONS(4778), 3, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(3423), 5, + ACTIONS(3503), 5, anon_sym_BANG, anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, - [65885] = 7, - ACTIONS(103), 1, + [66651] = 14, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(4598), 1, + anon_sym_LPAREN, + ACTIONS(4600), 1, + anon_sym_BANG, + ACTIONS(4602), 1, + anon_sym_COLON_COLON, + ACTIONS(4604), 1, + anon_sym_LT2, + ACTIONS(4788), 1, + anon_sym_COLON, + ACTIONS(4790), 1, + anon_sym_EQ, + STATE(2016), 1, + sym_type_arguments, + STATE(2033), 1, + sym_parameters, + STATE(2899), 1, + sym_trait_bounds, + ACTIONS(3366), 2, + anon_sym_PLUS, + anon_sym_as, + ACTIONS(4792), 2, + anon_sym_GT, + anon_sym_COMMA, + STATE(2102), 2, + sym_line_comment, + sym_block_comment, + [66697] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3437), 2, + ACTIONS(4778), 1, + anon_sym_LPAREN, + ACTIONS(3501), 2, anon_sym_COLON, anon_sym_DOT_DOT, - STATE(2088), 2, + STATE(2103), 2, sym_line_comment, sym_block_comment, - ACTIONS(3433), 3, + ACTIONS(3497), 5, + anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_PLUS, + anon_sym_COMMA, anon_sym_LT2, - ACTIONS(4746), 3, + ACTIONS(3503), 5, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COLON_COLON, + [66729] = 7, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(4781), 1, anon_sym_LPAREN, + ACTIONS(3439), 2, + anon_sym_COLON, + anon_sym_DOT_DOT, + STATE(2104), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3435), 5, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_PLUS, anon_sym_COMMA, - ACTIONS(3439), 5, + anon_sym_LT2, + ACTIONS(3441), 5, anon_sym_BANG, anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, - [65917] = 13, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [66761] = 13, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3044), 1, + ACTIONS(3070), 1, anon_sym_POUND, - ACTIONS(3046), 1, + ACTIONS(3080), 1, anon_sym_SQUOTE, - ACTIONS(4749), 1, + ACTIONS(4794), 1, sym_identifier, - ACTIONS(4751), 1, + ACTIONS(4796), 1, anon_sym_GT, - ACTIONS(4753), 1, + ACTIONS(4798), 1, anon_sym_const, - ACTIONS(4755), 1, + ACTIONS(4800), 1, sym_metavariable, - STATE(1494), 1, + STATE(1377), 1, sym_attribute_item, STATE(2127), 1, aux_sym_enum_variant_list_repeat1, - STATE(2686), 1, + STATE(2602), 1, sym_lifetime, - STATE(2089), 2, + STATE(2105), 2, sym_line_comment, sym_block_comment, - STATE(3385), 3, + STATE(3230), 3, sym_const_parameter, sym_type_parameter, sym_lifetime_parameter, - [65960] = 10, - ACTIONS(19), 1, - anon_sym_LBRACE, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [66804] = 13, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3348), 1, - anon_sym_SQUOTE, - ACTIONS(4622), 1, - anon_sym_trait, - ACTIONS(4757), 1, - anon_sym_impl, - STATE(418), 1, - sym_block, - STATE(3676), 1, - sym_label, - STATE(2090), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3530), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [65997] = 13, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3044), 1, + ACTIONS(3070), 1, anon_sym_POUND, - ACTIONS(3046), 1, + ACTIONS(3080), 1, anon_sym_SQUOTE, - ACTIONS(4749), 1, + ACTIONS(4794), 1, sym_identifier, - ACTIONS(4753), 1, + ACTIONS(4798), 1, anon_sym_const, - ACTIONS(4755), 1, + ACTIONS(4800), 1, sym_metavariable, - ACTIONS(4759), 1, + ACTIONS(4802), 1, anon_sym_GT, - STATE(1494), 1, + STATE(1377), 1, sym_attribute_item, STATE(2127), 1, aux_sym_enum_variant_list_repeat1, - STATE(2686), 1, + STATE(2602), 1, sym_lifetime, - STATE(2091), 2, + STATE(2106), 2, sym_line_comment, sym_block_comment, - STATE(3385), 3, + STATE(3230), 3, sym_const_parameter, sym_type_parameter, sym_lifetime_parameter, - [66040] = 13, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [66847] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3044), 1, - anon_sym_POUND, - ACTIONS(3046), 1, - anon_sym_SQUOTE, - ACTIONS(4749), 1, - sym_identifier, - ACTIONS(4753), 1, - anon_sym_const, - ACTIONS(4755), 1, - sym_metavariable, - ACTIONS(4761), 1, - anon_sym_GT, - STATE(1494), 1, - sym_attribute_item, - STATE(2127), 1, - aux_sym_enum_variant_list_repeat1, - STATE(2686), 1, - sym_lifetime, - STATE(2092), 2, + ACTIONS(1294), 1, + aux_sym_string_literal_token1, + ACTIONS(4806), 1, + sym_crate, + STATE(2226), 1, + sym_string_literal, + STATE(2107), 2, sym_line_comment, sym_block_comment, - STATE(3385), 3, - sym_const_parameter, - sym_type_parameter, - sym_lifetime_parameter, - [66083] = 13, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + ACTIONS(4804), 9, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + anon_sym_safe, + [66878] = 9, + ACTIONS(19), 1, + anon_sym_LBRACE, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3044), 1, - anon_sym_POUND, - ACTIONS(3046), 1, + ACTIONS(3386), 1, anon_sym_SQUOTE, - ACTIONS(4749), 1, + ACTIONS(4808), 1, sym_identifier, - ACTIONS(4753), 1, - anon_sym_const, - ACTIONS(4755), 1, - sym_metavariable, - ACTIONS(4763), 1, - anon_sym_GT, - STATE(1494), 1, - sym_attribute_item, - STATE(2127), 1, - aux_sym_enum_variant_list_repeat1, - STATE(2686), 1, - sym_lifetime, - STATE(2093), 2, - sym_line_comment, - sym_block_comment, - STATE(3385), 3, - sym_const_parameter, - sym_type_parameter, - sym_lifetime_parameter, - [66126] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4767), 1, - anon_sym_COLON, - ACTIONS(3846), 2, - anon_sym_LPAREN, - anon_sym_COLON_COLON, - STATE(2094), 2, + STATE(397), 1, + sym_block, + STATE(3582), 1, + sym_label, + STATE(2108), 2, sym_line_comment, sym_block_comment, - ACTIONS(4765), 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, - [66155] = 13, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + ACTIONS(4810), 7, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + anon_sym_safe, + [66913] = 13, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3044), 1, + ACTIONS(3070), 1, anon_sym_POUND, - ACTIONS(3046), 1, + ACTIONS(3080), 1, anon_sym_SQUOTE, - ACTIONS(4749), 1, + ACTIONS(4794), 1, sym_identifier, - ACTIONS(4753), 1, + ACTIONS(4798), 1, anon_sym_const, - ACTIONS(4755), 1, + ACTIONS(4800), 1, sym_metavariable, - ACTIONS(4769), 1, + ACTIONS(4812), 1, anon_sym_GT, - STATE(1494), 1, + STATE(1377), 1, sym_attribute_item, STATE(2127), 1, aux_sym_enum_variant_list_repeat1, - STATE(2686), 1, + STATE(2602), 1, sym_lifetime, - STATE(2095), 2, + STATE(2109), 2, sym_line_comment, sym_block_comment, - STATE(3385), 3, + STATE(3230), 3, sym_const_parameter, sym_type_parameter, sym_lifetime_parameter, - [66198] = 13, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [66956] = 13, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3044), 1, + ACTIONS(3070), 1, anon_sym_POUND, - ACTIONS(3046), 1, + ACTIONS(3080), 1, anon_sym_SQUOTE, - ACTIONS(4749), 1, + ACTIONS(4794), 1, sym_identifier, - ACTIONS(4753), 1, + ACTIONS(4798), 1, anon_sym_const, - ACTIONS(4755), 1, + ACTIONS(4800), 1, sym_metavariable, - ACTIONS(4771), 1, + ACTIONS(4814), 1, anon_sym_GT, - STATE(1494), 1, + STATE(1377), 1, sym_attribute_item, STATE(2127), 1, aux_sym_enum_variant_list_repeat1, - STATE(2686), 1, + STATE(2602), 1, sym_lifetime, - STATE(2096), 2, + STATE(2110), 2, sym_line_comment, sym_block_comment, - STATE(3385), 3, + STATE(3230), 3, sym_const_parameter, sym_type_parameter, sym_lifetime_parameter, - [66241] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [66999] = 13, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4767), 1, - anon_sym_COLON, - ACTIONS(3884), 2, - anon_sym_LPAREN, - anon_sym_COLON_COLON, - STATE(2097), 2, + ACTIONS(3070), 1, + anon_sym_POUND, + ACTIONS(3080), 1, + anon_sym_SQUOTE, + ACTIONS(4794), 1, + sym_identifier, + ACTIONS(4798), 1, + anon_sym_const, + ACTIONS(4800), 1, + sym_metavariable, + ACTIONS(4816), 1, + anon_sym_GT, + STATE(1377), 1, + sym_attribute_item, + STATE(2127), 1, + aux_sym_enum_variant_list_repeat1, + STATE(2602), 1, + sym_lifetime, + STATE(2111), 2, sym_line_comment, sym_block_comment, - ACTIONS(4765), 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, - [66270] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + STATE(3230), 3, + sym_const_parameter, + sym_type_parameter, + sym_lifetime_parameter, + [67042] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(1289), 1, + ACTIONS(1294), 1, aux_sym_string_literal_token1, - ACTIONS(4775), 1, + ACTIONS(4818), 1, sym_crate, - STATE(2259), 1, + STATE(2226), 1, sym_string_literal, - STATE(2098), 2, + STATE(2112), 2, sym_line_comment, sym_block_comment, - ACTIONS(4773), 8, + ACTIONS(4804), 9, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_async, @@ -169507,19 +171587,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [66300] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + anon_sym_safe, + [67073] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4779), 1, + ACTIONS(4822), 1, anon_sym_COLON, - ACTIONS(4781), 1, + ACTIONS(3834), 2, + anon_sym_LPAREN, anon_sym_COLON_COLON, - STATE(2099), 2, + STATE(2113), 2, sym_line_comment, sym_block_comment, - ACTIONS(4777), 9, + ACTIONS(4820), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -169529,41 +171611,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [66328] = 4, - ACTIONS(103), 1, + [67102] = 9, + ACTIONS(19), 1, + anon_sym_LBRACE, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(3386), 1, + anon_sym_SQUOTE, + ACTIONS(4824), 1, + anon_sym_move, + STATE(403), 1, + sym_block, + STATE(3582), 1, + sym_label, + STATE(2114), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3525), 7, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + anon_sym_safe, + [67137] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(2100), 2, + ACTIONS(1294), 1, + aux_sym_string_literal_token1, + ACTIONS(4826), 1, + sym_crate, + STATE(2226), 1, + sym_string_literal, + STATE(2115), 2, sym_line_comment, sym_block_comment, - ACTIONS(1387), 11, + ACTIONS(4804), 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, - [66352] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + anon_sym_LBRACE, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + anon_sym_safe, + [67168] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(1289), 1, + ACTIONS(1294), 1, aux_sym_string_literal_token1, - ACTIONS(4783), 1, + ACTIONS(4828), 1, sym_crate, - STATE(2259), 1, + STATE(2226), 1, sym_string_literal, - STATE(2101), 2, + STATE(2116), 2, sym_line_comment, sym_block_comment, - ACTIONS(4773), 8, + ACTIONS(4804), 9, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_async, @@ -169572,113 +171684,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [66382] = 12, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + anon_sym_safe, + [67199] = 13, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3044), 1, + ACTIONS(3070), 1, anon_sym_POUND, - ACTIONS(3046), 1, + ACTIONS(3080), 1, anon_sym_SQUOTE, - ACTIONS(4749), 1, + ACTIONS(4794), 1, sym_identifier, - ACTIONS(4753), 1, + ACTIONS(4798), 1, anon_sym_const, - ACTIONS(4755), 1, + ACTIONS(4800), 1, sym_metavariable, - STATE(1494), 1, + ACTIONS(4830), 1, + anon_sym_GT, + STATE(1377), 1, sym_attribute_item, STATE(2127), 1, aux_sym_enum_variant_list_repeat1, - STATE(2686), 1, + STATE(2602), 1, sym_lifetime, - STATE(2102), 2, + STATE(2117), 2, sym_line_comment, sym_block_comment, - STATE(3385), 3, + STATE(3230), 3, sym_const_parameter, sym_type_parameter, sym_lifetime_parameter, - [66422] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4779), 1, - anon_sym_COLON, - ACTIONS(4785), 1, - anon_sym_COLON_COLON, - STATE(2103), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4777), 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, - [66450] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [67242] = 6, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4789), 1, - anon_sym_COLON, - ACTIONS(4791), 1, - anon_sym_COLON_COLON, - STATE(2104), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4787), 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, - [66478] = 6, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4781), 1, - anon_sym_COLON_COLON, - ACTIONS(4795), 1, + ACTIONS(4822), 1, anon_sym_COLON, - STATE(2105), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4793), 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, - [66506] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4703), 1, + ACTIONS(3758), 2, + anon_sym_LPAREN, anon_sym_COLON_COLON, - ACTIONS(4795), 1, - anon_sym_COLON, - STATE(2106), 2, + STATE(2118), 2, sym_line_comment, sym_block_comment, - ACTIONS(4793), 9, + ACTIONS(4820), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -169688,37 +171738,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [66534] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [67271] = 4, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4785), 1, - anon_sym_COLON_COLON, - ACTIONS(4795), 1, - anon_sym_COLON, - STATE(2107), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4793), 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, - [66562] = 4, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(2108), 2, + STATE(2119), 2, sym_line_comment, sym_block_comment, - ACTIONS(1395), 11, + ACTIONS(1396), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -169730,97 +171758,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [66586] = 11, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [67295] = 11, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4568), 1, - anon_sym_LPAREN, - ACTIONS(4570), 1, - anon_sym_BANG, - ACTIONS(4572), 1, - anon_sym_COLON_COLON, - ACTIONS(4574), 1, - anon_sym_LT2, - ACTIONS(4797), 1, - anon_sym_for, - STATE(1999), 1, - sym_type_arguments, - STATE(2017), 1, - sym_parameters, - STATE(2109), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3352), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [66624] = 11, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4568), 1, + ACTIONS(4598), 1, anon_sym_LPAREN, - ACTIONS(4570), 1, + ACTIONS(4600), 1, anon_sym_BANG, - ACTIONS(4572), 1, + ACTIONS(4602), 1, anon_sym_COLON_COLON, - ACTIONS(4574), 1, + ACTIONS(4604), 1, anon_sym_LT2, - ACTIONS(4799), 1, + ACTIONS(4832), 1, anon_sym_for, - STATE(1999), 1, + STATE(2016), 1, sym_type_arguments, - STATE(2017), 1, + STATE(2033), 1, sym_parameters, - STATE(2110), 2, + STATE(2120), 2, sym_line_comment, sym_block_comment, - ACTIONS(3352), 4, + ACTIONS(3366), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [66662] = 12, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [67333] = 4, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3044), 1, - anon_sym_POUND, - ACTIONS(4801), 1, - sym_identifier, - ACTIONS(4803), 1, - anon_sym_RBRACE, - ACTIONS(4805), 1, - anon_sym_DOT_DOT, - ACTIONS(4807), 1, - anon_sym_COMMA, - ACTIONS(4809), 1, - sym_integer_literal, - STATE(1494), 1, - sym_attribute_item, - STATE(2561), 1, - aux_sym_enum_variant_list_repeat1, - STATE(2111), 2, - sym_line_comment, - sym_block_comment, - STATE(2854), 3, - sym_shorthand_field_initializer, - sym_field_initializer, - sym_base_field_initializer, - [66702] = 4, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(2112), 2, + STATE(2121), 2, sym_line_comment, sym_block_comment, - ACTIONS(1413), 11, + ACTIONS(1358), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -169832,15 +171805,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [66726] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [67357] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(2113), 2, + STATE(2122), 2, sym_line_comment, sym_block_comment, - ACTIONS(1383), 11, + ACTIONS(1388), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -169852,66 +171825,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [66750] = 9, - ACTIONS(19), 1, - anon_sym_LBRACE, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [67381] = 6, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3348), 1, - anon_sym_SQUOTE, - ACTIONS(4811), 1, - anon_sym_move, - STATE(404), 1, - sym_block, - STATE(3676), 1, - sym_label, - STATE(2114), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3530), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [66784] = 6, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4703), 1, - anon_sym_COLON_COLON, - ACTIONS(4815), 1, + ACTIONS(4836), 1, anon_sym_COLON, - STATE(2115), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4813), 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, - [66812] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4785), 1, + ACTIONS(4838), 1, anon_sym_COLON_COLON, - ACTIONS(4815), 1, - anon_sym_COLON, - STATE(2116), 2, + STATE(2123), 2, sym_line_comment, sym_block_comment, - ACTIONS(4813), 9, + ACTIONS(4834), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -169921,356 +171847,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [66840] = 11, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4574), 1, - anon_sym_LT2, - ACTIONS(4598), 1, - anon_sym_COLON, - ACTIONS(4600), 1, - anon_sym_BANG, - ACTIONS(4602), 1, - anon_sym_DOT_DOT, - ACTIONS(4606), 1, - anon_sym_COLON_COLON, - STATE(1994), 1, - sym_type_arguments, - ACTIONS(4604), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2117), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4596), 3, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_COMMA, - [66878] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [67409] = 6, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4791), 1, - anon_sym_COLON_COLON, - ACTIONS(4819), 1, - anon_sym_COLON, - STATE(2118), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4817), 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, - [66906] = 6, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4781), 1, - anon_sym_COLON_COLON, - ACTIONS(4815), 1, + ACTIONS(4842), 1, anon_sym_COLON, - STATE(2119), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4813), 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, - [66934] = 12, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3044), 1, - anon_sym_POUND, - ACTIONS(3046), 1, - anon_sym_SQUOTE, - ACTIONS(4749), 1, - sym_identifier, - ACTIONS(4753), 1, - anon_sym_const, - ACTIONS(4821), 1, - sym_metavariable, - STATE(1074), 1, - aux_sym_enum_variant_list_repeat1, - STATE(1494), 1, - sym_attribute_item, - STATE(2686), 1, - sym_lifetime, - STATE(2120), 2, - sym_line_comment, - sym_block_comment, - STATE(2966), 3, - sym_const_parameter, - sym_type_parameter, - sym_lifetime_parameter, - [66974] = 12, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3044), 1, - anon_sym_POUND, - ACTIONS(3046), 1, - anon_sym_SQUOTE, - ACTIONS(4749), 1, - sym_identifier, - ACTIONS(4753), 1, - anon_sym_const, - ACTIONS(4823), 1, - sym_metavariable, - STATE(1494), 1, - sym_attribute_item, - STATE(2120), 1, - aux_sym_enum_variant_list_repeat1, - STATE(2686), 1, - sym_lifetime, - STATE(2121), 2, - sym_line_comment, - sym_block_comment, - STATE(2872), 3, - sym_const_parameter, - sym_type_parameter, - sym_lifetime_parameter, - [67014] = 11, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4568), 1, - anon_sym_LPAREN, - ACTIONS(4570), 1, - anon_sym_BANG, - ACTIONS(4572), 1, + ACTIONS(4844), 1, anon_sym_COLON_COLON, - ACTIONS(4574), 1, - anon_sym_LT2, - ACTIONS(4825), 1, - anon_sym_for, - STATE(1999), 1, - sym_type_arguments, - STATE(2017), 1, - sym_parameters, - STATE(2122), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3352), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [67052] = 12, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3044), 1, - anon_sym_POUND, - ACTIONS(3046), 1, - anon_sym_SQUOTE, - ACTIONS(4749), 1, - sym_identifier, - ACTIONS(4753), 1, - anon_sym_const, - ACTIONS(4827), 1, - sym_metavariable, - STATE(1494), 1, - sym_attribute_item, - STATE(2128), 1, - aux_sym_enum_variant_list_repeat1, - STATE(2686), 1, - sym_lifetime, - STATE(2123), 2, - sym_line_comment, - sym_block_comment, - STATE(3120), 3, - sym_const_parameter, - sym_type_parameter, - sym_lifetime_parameter, - [67092] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, STATE(2124), 2, sym_line_comment, sym_block_comment, - ACTIONS(1391), 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, - [67116] = 12, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3356), 1, - anon_sym_COLON, - ACTIONS(4568), 1, - anon_sym_LPAREN, - ACTIONS(4570), 1, - anon_sym_BANG, - ACTIONS(4572), 1, - anon_sym_COLON_COLON, - ACTIONS(4574), 1, - anon_sym_LT2, - ACTIONS(4829), 1, - anon_sym_EQ, - STATE(2017), 1, - sym_parameters, - STATE(2366), 1, - sym_type_arguments, - STATE(2125), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3352), 3, - anon_sym_PLUS, - anon_sym_GT, - anon_sym_COMMA, - [67156] = 12, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3044), 1, - anon_sym_POUND, - ACTIONS(4801), 1, - sym_identifier, - ACTIONS(4805), 1, - anon_sym_DOT_DOT, - ACTIONS(4809), 1, - sym_integer_literal, - ACTIONS(4831), 1, - anon_sym_RBRACE, - ACTIONS(4833), 1, - anon_sym_COMMA, - STATE(1494), 1, - sym_attribute_item, - STATE(2561), 1, - aux_sym_enum_variant_list_repeat1, - STATE(2126), 2, - sym_line_comment, - sym_block_comment, - STATE(2824), 3, - sym_shorthand_field_initializer, - sym_field_initializer, - sym_base_field_initializer, - [67196] = 12, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3044), 1, - anon_sym_POUND, - ACTIONS(3046), 1, - anon_sym_SQUOTE, - ACTIONS(4749), 1, - sym_identifier, - ACTIONS(4753), 1, - anon_sym_const, - ACTIONS(4835), 1, - sym_metavariable, - STATE(1074), 1, - aux_sym_enum_variant_list_repeat1, - STATE(1494), 1, - sym_attribute_item, - STATE(2686), 1, - sym_lifetime, - STATE(2127), 2, - sym_line_comment, - sym_block_comment, - STATE(3323), 3, - sym_const_parameter, - sym_type_parameter, - sym_lifetime_parameter, - [67236] = 12, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3044), 1, - anon_sym_POUND, - ACTIONS(3046), 1, - anon_sym_SQUOTE, - ACTIONS(4749), 1, - sym_identifier, - ACTIONS(4753), 1, - anon_sym_const, - ACTIONS(4837), 1, - sym_metavariable, - STATE(1074), 1, - aux_sym_enum_variant_list_repeat1, - STATE(1494), 1, - sym_attribute_item, - STATE(2686), 1, - sym_lifetime, - STATE(2128), 2, - sym_line_comment, - sym_block_comment, - STATE(2853), 3, - sym_const_parameter, - sym_type_parameter, - sym_lifetime_parameter, - [67276] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(1289), 1, - aux_sym_string_literal_token1, - ACTIONS(4839), 1, - sym_crate, - STATE(2259), 1, - sym_string_literal, - STATE(2129), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4773), 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, - [67306] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4791), 1, - anon_sym_COLON_COLON, - ACTIONS(4843), 1, - anon_sym_COLON, - STATE(2130), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4841), 9, + ACTIONS(4840), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -170280,69 +171869,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [67334] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [67437] = 6, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(1289), 1, - aux_sym_string_literal_token1, - ACTIONS(4845), 1, - sym_crate, - STATE(2259), 1, - sym_string_literal, - STATE(2131), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4773), 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, - [67364] = 11, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4568), 1, - anon_sym_LPAREN, - ACTIONS(4570), 1, - anon_sym_BANG, - ACTIONS(4572), 1, + ACTIONS(4722), 1, anon_sym_COLON_COLON, - ACTIONS(4574), 1, - anon_sym_LT2, - ACTIONS(4847), 1, - anon_sym_for, - STATE(1999), 1, - sym_type_arguments, - STATE(2017), 1, - sym_parameters, - STATE(2132), 2, + ACTIONS(4842), 1, + anon_sym_COLON, + STATE(2125), 2, sym_line_comment, sym_block_comment, - ACTIONS(3352), 4, + ACTIONS(4840), 9, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [67402] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_else, + anon_sym_in, + [67465] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4703), 1, - anon_sym_COLON_COLON, - ACTIONS(4779), 1, + ACTIONS(4842), 1, anon_sym_COLON, - STATE(2133), 2, + ACTIONS(4846), 1, + anon_sym_COLON_COLON, + STATE(2126), 2, sym_line_comment, sym_block_comment, - ACTIONS(4777), 9, + ACTIONS(4840), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -170352,101 +171913,154 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [67430] = 11, - ACTIONS(103), 1, + [67493] = 12, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(3070), 1, + anon_sym_POUND, + ACTIONS(3080), 1, + anon_sym_SQUOTE, + ACTIONS(4794), 1, + sym_identifier, + ACTIONS(4798), 1, + anon_sym_const, + ACTIONS(4848), 1, + sym_metavariable, + STATE(1085), 1, + aux_sym_enum_variant_list_repeat1, + STATE(1377), 1, + sym_attribute_item, + STATE(2602), 1, + sym_lifetime, + STATE(2127), 2, + sym_line_comment, + sym_block_comment, + STATE(3400), 3, + sym_const_parameter, + sym_type_parameter, + sym_lifetime_parameter, + [67533] = 8, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4568), 1, - anon_sym_LPAREN, - ACTIONS(4570), 1, + ACTIONS(4604), 1, + anon_sym_LT2, + ACTIONS(4693), 1, anon_sym_BANG, - ACTIONS(4572), 1, + ACTIONS(4736), 1, anon_sym_COLON_COLON, - ACTIONS(4574), 1, - anon_sym_LT2, - ACTIONS(4849), 1, - anon_sym_for, - STATE(1999), 1, + STATE(2011), 1, sym_type_arguments, - STATE(2017), 1, - sym_parameters, - STATE(2134), 2, + STATE(2128), 2, sym_line_comment, sym_block_comment, - ACTIONS(3352), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [67468] = 11, - ACTIONS(103), 1, + ACTIONS(3525), 7, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + anon_sym_safe, + [67565] = 12, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(3070), 1, + anon_sym_POUND, + ACTIONS(4850), 1, + sym_identifier, + ACTIONS(4852), 1, + anon_sym_RBRACE, + ACTIONS(4854), 1, + anon_sym_DOT_DOT, + ACTIONS(4856), 1, + anon_sym_COMMA, + ACTIONS(4858), 1, + sym_integer_literal, + STATE(1377), 1, + sym_attribute_item, + STATE(2569), 1, + aux_sym_enum_variant_list_repeat1, + STATE(2129), 2, + sym_line_comment, + sym_block_comment, + STATE(3077), 3, + sym_shorthand_field_initializer, + sym_field_initializer, + sym_base_field_initializer, + [67605] = 11, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4568), 1, + ACTIONS(4598), 1, anon_sym_LPAREN, - ACTIONS(4570), 1, + ACTIONS(4600), 1, anon_sym_BANG, - ACTIONS(4572), 1, + ACTIONS(4602), 1, anon_sym_COLON_COLON, - ACTIONS(4574), 1, + ACTIONS(4604), 1, anon_sym_LT2, - ACTIONS(4851), 1, + ACTIONS(4860), 1, anon_sym_for, - STATE(1999), 1, + STATE(2016), 1, sym_type_arguments, - STATE(2017), 1, + STATE(2033), 1, sym_parameters, - STATE(2135), 2, + STATE(2130), 2, sym_line_comment, sym_block_comment, - ACTIONS(3352), 4, + ACTIONS(3366), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [67506] = 11, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [67643] = 11, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4568), 1, + ACTIONS(4598), 1, anon_sym_LPAREN, - ACTIONS(4570), 1, + ACTIONS(4600), 1, anon_sym_BANG, - ACTIONS(4572), 1, + ACTIONS(4602), 1, anon_sym_COLON_COLON, - ACTIONS(4574), 1, + ACTIONS(4604), 1, anon_sym_LT2, - ACTIONS(4853), 1, + ACTIONS(4862), 1, anon_sym_for, - STATE(1999), 1, + STATE(2016), 1, sym_type_arguments, - STATE(2017), 1, + STATE(2033), 1, sym_parameters, - STATE(2136), 2, + STATE(2131), 2, sym_line_comment, sym_block_comment, - ACTIONS(3352), 4, + ACTIONS(3366), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [67544] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [67681] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3457), 1, + ACTIONS(3540), 1, anon_sym_DOT_DOT, - ACTIONS(3453), 2, + ACTIONS(3536), 2, anon_sym_LBRACE, anon_sym_LT2, - STATE(2137), 2, + STATE(2132), 2, sym_line_comment, sym_block_comment, - ACTIONS(3459), 8, + ACTIONS(3542), 8, anon_sym_LPAREN, anon_sym_EQ_GT, anon_sym_BANG, @@ -170455,20 +172069,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, anon_sym_if, - [67572] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [67709] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3421), 1, + ACTIONS(3439), 1, anon_sym_DOT_DOT, - ACTIONS(3417), 2, + ACTIONS(3435), 2, anon_sym_LBRACE, anon_sym_LT2, - STATE(2138), 2, + STATE(2133), 2, sym_line_comment, sym_block_comment, - ACTIONS(3423), 8, + ACTIONS(3441), 8, anon_sym_LPAREN, anon_sym_EQ_GT, anon_sym_BANG, @@ -170477,20 +172091,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, anon_sym_if, - [67600] = 6, - ACTIONS(103), 1, + [67737] = 6, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(3501), 1, + anon_sym_DOT_DOT, + ACTIONS(3497), 2, + anon_sym_LBRACE, + anon_sym_LT2, + STATE(2134), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3503), 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, + [67765] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3413), 1, + ACTIONS(3415), 1, anon_sym_DOT_DOT, - ACTIONS(3409), 2, + ACTIONS(3411), 2, anon_sym_LBRACE, anon_sym_LT2, - STATE(2139), 2, + STATE(2135), 2, sym_line_comment, sym_block_comment, - ACTIONS(3415), 8, + ACTIONS(3417), 8, anon_sym_LPAREN, anon_sym_EQ_GT, anon_sym_BANG, @@ -170499,117 +172135,208 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, anon_sym_if, - [67628] = 11, - ACTIONS(103), 1, + [67793] = 6, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(4838), 1, + anon_sym_COLON_COLON, + ACTIONS(4866), 1, + anon_sym_COLON, + STATE(2136), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4864), 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, + [67821] = 8, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(3376), 1, + anon_sym_LT2, + ACTIONS(3608), 1, + anon_sym_COLON_COLON, + ACTIONS(4868), 1, + anon_sym_BANG, + STATE(1383), 1, + sym_type_arguments, + STATE(2137), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3525), 7, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + anon_sym_safe, + [67853] = 12, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(3070), 1, + anon_sym_POUND, + ACTIONS(4850), 1, + sym_identifier, + ACTIONS(4854), 1, + anon_sym_DOT_DOT, + ACTIONS(4858), 1, + sym_integer_literal, + ACTIONS(4870), 1, + anon_sym_RBRACE, + ACTIONS(4872), 1, + anon_sym_COMMA, + STATE(1377), 1, + sym_attribute_item, + STATE(2569), 1, + aux_sym_enum_variant_list_repeat1, + STATE(2138), 2, + sym_line_comment, + sym_block_comment, + STATE(2848), 3, + sym_shorthand_field_initializer, + sym_field_initializer, + sym_base_field_initializer, + [67893] = 11, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4568), 1, + ACTIONS(4598), 1, anon_sym_LPAREN, - ACTIONS(4570), 1, + ACTIONS(4600), 1, anon_sym_BANG, - ACTIONS(4572), 1, + ACTIONS(4602), 1, anon_sym_COLON_COLON, - ACTIONS(4574), 1, + ACTIONS(4604), 1, anon_sym_LT2, - ACTIONS(4855), 1, + ACTIONS(4874), 1, anon_sym_for, - STATE(1999), 1, + STATE(2016), 1, sym_type_arguments, - STATE(2017), 1, + STATE(2033), 1, sym_parameters, - STATE(2140), 2, + STATE(2139), 2, sym_line_comment, sym_block_comment, - ACTIONS(3352), 4, + ACTIONS(3366), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [67666] = 6, - ACTIONS(103), 1, + [67931] = 6, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(4722), 1, + anon_sym_COLON_COLON, + ACTIONS(4878), 1, + anon_sym_COLON, + STATE(2140), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4876), 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, + [67959] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3437), 1, - anon_sym_DOT_DOT, - ACTIONS(3433), 2, - anon_sym_LBRACE, - anon_sym_LT2, + ACTIONS(4846), 1, + anon_sym_COLON_COLON, + ACTIONS(4878), 1, + anon_sym_COLON, STATE(2141), 2, sym_line_comment, sym_block_comment, - ACTIONS(3439), 8, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_BANG, + ACTIONS(4876), 9, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, anon_sym_PIPE, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, - anon_sym_if, - [67694] = 9, - ACTIONS(19), 1, - anon_sym_LBRACE, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_else, + anon_sym_in, + [67987] = 8, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3348), 1, + ACTIONS(1606), 1, + anon_sym_LBRACE, + ACTIONS(3386), 1, anon_sym_SQUOTE, - ACTIONS(4857), 1, - sym_identifier, - STATE(405), 1, + STATE(2181), 1, sym_block, - STATE(3676), 1, + STATE(3739), 1, sym_label, STATE(2142), 2, sym_line_comment, sym_block_comment, - ACTIONS(4859), 6, + ACTIONS(3525), 7, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [67728] = 12, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + anon_sym_safe, + [68019] = 8, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3044), 1, - anon_sym_POUND, - ACTIONS(3046), 1, - anon_sym_SQUOTE, - ACTIONS(4749), 1, - sym_identifier, - ACTIONS(4753), 1, - anon_sym_const, - ACTIONS(4823), 1, - sym_metavariable, - STATE(1494), 1, - sym_attribute_item, - STATE(2120), 1, - aux_sym_enum_variant_list_repeat1, - STATE(2529), 1, - sym_lifetime, + ACTIONS(4122), 1, + anon_sym_LT2, + ACTIONS(4292), 1, + anon_sym_COLON_COLON, + ACTIONS(4880), 1, + anon_sym_BANG, + STATE(1641), 1, + sym_type_arguments, STATE(2143), 2, sym_line_comment, sym_block_comment, - STATE(2872), 3, - sym_const_parameter, - sym_type_parameter, - sym_lifetime_parameter, - [67768] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + ACTIONS(3525), 7, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + anon_sym_safe, + [68051] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, STATE(2144), 2, sym_line_comment, sym_block_comment, - ACTIONS(4861), 10, + ACTIONS(1402), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -170617,18 +172344,19 @@ 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, - [67791] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [68075] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, STATE(2145), 2, sym_line_comment, sym_block_comment, - ACTIONS(4863), 10, + ACTIONS(1408), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -170636,160 +172364,460 @@ 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, - [67814] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [68099] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, + ACTIONS(4838), 1, + anon_sym_COLON_COLON, + ACTIONS(4884), 1, + anon_sym_COLON, STATE(2146), 2, sym_line_comment, sym_block_comment, - ACTIONS(4865), 10, + ACTIONS(4882), 9, 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, - [67837] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [68127] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, + ACTIONS(4844), 1, + anon_sym_COLON_COLON, + ACTIONS(4888), 1, + anon_sym_COLON, STATE(2147), 2, sym_line_comment, sym_block_comment, - ACTIONS(4867), 10, + ACTIONS(4886), 9, 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, - [67860] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [68155] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, + ACTIONS(4722), 1, + anon_sym_COLON_COLON, + ACTIONS(4888), 1, + anon_sym_COLON, STATE(2148), 2, sym_line_comment, sym_block_comment, - ACTIONS(4869), 10, + 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, + [68183] = 6, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(4846), 1, + anon_sym_COLON_COLON, + ACTIONS(4888), 1, anon_sym_COLON, + STATE(2149), 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, - [67883] = 13, - ACTIONS(69), 1, - anon_sym_pub, - ACTIONS(103), 1, + [68211] = 12, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(3070), 1, + anon_sym_POUND, + ACTIONS(3080), 1, + anon_sym_SQUOTE, + ACTIONS(4794), 1, + sym_identifier, + ACTIONS(4798), 1, + anon_sym_const, + ACTIONS(4890), 1, + sym_metavariable, + STATE(1085), 1, + aux_sym_enum_variant_list_repeat1, + STATE(1377), 1, + sym_attribute_item, + STATE(2602), 1, + sym_lifetime, + STATE(2150), 2, + sym_line_comment, + sym_block_comment, + STATE(2919), 3, + sym_const_parameter, + sym_type_parameter, + sym_lifetime_parameter, + [68251] = 12, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(3070), 1, + anon_sym_POUND, + ACTIONS(3080), 1, + anon_sym_SQUOTE, + ACTIONS(4794), 1, + sym_identifier, + ACTIONS(4798), 1, + anon_sym_const, + ACTIONS(4892), 1, + sym_metavariable, + STATE(1377), 1, + sym_attribute_item, + STATE(2152), 1, + aux_sym_enum_variant_list_repeat1, + STATE(2602), 1, + sym_lifetime, + STATE(2151), 2, + sym_line_comment, + sym_block_comment, + STATE(3148), 3, + sym_const_parameter, + sym_type_parameter, + sym_lifetime_parameter, + [68291] = 12, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3044), 1, + ACTIONS(3070), 1, anon_sym_POUND, - ACTIONS(4871), 1, + ACTIONS(3080), 1, + anon_sym_SQUOTE, + ACTIONS(4794), 1, sym_identifier, - ACTIONS(4873), 1, - anon_sym_RBRACE, - ACTIONS(4875), 1, + ACTIONS(4798), 1, + anon_sym_const, + ACTIONS(4894), 1, + sym_metavariable, + STATE(1085), 1, + aux_sym_enum_variant_list_repeat1, + STATE(1377), 1, + sym_attribute_item, + STATE(2602), 1, + sym_lifetime, + STATE(2152), 2, + sym_line_comment, + sym_block_comment, + STATE(2878), 3, + sym_const_parameter, + sym_type_parameter, + sym_lifetime_parameter, + [68331] = 12, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(3370), 1, + anon_sym_COLON, + ACTIONS(4598), 1, + anon_sym_LPAREN, + ACTIONS(4600), 1, + anon_sym_BANG, + ACTIONS(4602), 1, + anon_sym_COLON_COLON, + ACTIONS(4604), 1, + anon_sym_LT2, + ACTIONS(4896), 1, + anon_sym_EQ, + STATE(2033), 1, + sym_parameters, + STATE(2430), 1, + sym_type_arguments, + STATE(2153), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3366), 3, + anon_sym_PLUS, + anon_sym_GT, anon_sym_COMMA, - ACTIONS(4877), 1, - sym_crate, - STATE(1494), 1, + [68371] = 12, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(3070), 1, + anon_sym_POUND, + ACTIONS(3080), 1, + anon_sym_SQUOTE, + ACTIONS(4794), 1, + sym_identifier, + ACTIONS(4798), 1, + anon_sym_const, + ACTIONS(4898), 1, + sym_metavariable, + STATE(1377), 1, sym_attribute_item, - STATE(2271), 1, + STATE(2150), 1, aux_sym_enum_variant_list_repeat1, - STATE(2849), 1, - sym_enum_variant, - STATE(3484), 1, - sym_visibility_modifier, - STATE(2149), 2, + STATE(2602), 1, + sym_lifetime, + STATE(2154), 2, sym_line_comment, sym_block_comment, - [67924] = 4, - ACTIONS(103), 1, + STATE(2888), 3, + sym_const_parameter, + sym_type_parameter, + sym_lifetime_parameter, + [68411] = 12, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(3070), 1, + anon_sym_POUND, + ACTIONS(3080), 1, + anon_sym_SQUOTE, + ACTIONS(4794), 1, + sym_identifier, + ACTIONS(4798), 1, + anon_sym_const, + ACTIONS(4800), 1, + sym_metavariable, + STATE(1377), 1, + sym_attribute_item, + STATE(2127), 1, + aux_sym_enum_variant_list_repeat1, + STATE(2602), 1, + sym_lifetime, + STATE(2155), 2, + sym_line_comment, + sym_block_comment, + STATE(3230), 3, + sym_const_parameter, + sym_type_parameter, + sym_lifetime_parameter, + [68451] = 11, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(2150), 2, + ACTIONS(4604), 1, + anon_sym_LT2, + ACTIONS(4691), 1, + anon_sym_COLON, + ACTIONS(4693), 1, + anon_sym_BANG, + ACTIONS(4695), 1, + anon_sym_DOT_DOT, + ACTIONS(4699), 1, + anon_sym_COLON_COLON, + STATE(2011), 1, + sym_type_arguments, + ACTIONS(4697), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2156), 2, sym_line_comment, sym_block_comment, - ACTIONS(4576), 10, - anon_sym_SEMI, + ACTIONS(4689), 3, 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, - [67947] = 4, - ACTIONS(103), 1, + [68489] = 11, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(4598), 1, + anon_sym_LPAREN, + ACTIONS(4600), 1, + anon_sym_BANG, + ACTIONS(4602), 1, + anon_sym_COLON_COLON, + ACTIONS(4604), 1, + anon_sym_LT2, + ACTIONS(4900), 1, + anon_sym_for, + STATE(2016), 1, + sym_type_arguments, + STATE(2033), 1, + sym_parameters, + STATE(2157), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3366), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [68527] = 12, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(2151), 2, + ACTIONS(3070), 1, + anon_sym_POUND, + ACTIONS(3080), 1, + anon_sym_SQUOTE, + ACTIONS(4794), 1, + sym_identifier, + ACTIONS(4798), 1, + anon_sym_const, + ACTIONS(4898), 1, + sym_metavariable, + STATE(1377), 1, + sym_attribute_item, + STATE(2150), 1, + aux_sym_enum_variant_list_repeat1, + STATE(2581), 1, + sym_lifetime, + STATE(2158), 2, + sym_line_comment, + sym_block_comment, + STATE(2888), 3, + sym_const_parameter, + sym_type_parameter, + sym_lifetime_parameter, + [68567] = 11, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(4598), 1, + anon_sym_LPAREN, + ACTIONS(4600), 1, + anon_sym_BANG, + ACTIONS(4602), 1, + anon_sym_COLON_COLON, + ACTIONS(4604), 1, + anon_sym_LT2, + ACTIONS(4902), 1, + anon_sym_for, + STATE(2016), 1, + sym_type_arguments, + STATE(2033), 1, + sym_parameters, + STATE(2159), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3366), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [68605] = 11, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(4598), 1, + anon_sym_LPAREN, + ACTIONS(4600), 1, + anon_sym_BANG, + ACTIONS(4602), 1, + anon_sym_COLON_COLON, + ACTIONS(4604), 1, + anon_sym_LT2, + ACTIONS(4904), 1, + anon_sym_for, + STATE(2016), 1, + sym_type_arguments, + STATE(2033), 1, + sym_parameters, + STATE(2160), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3366), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [68643] = 11, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(4598), 1, + anon_sym_LPAREN, + ACTIONS(4600), 1, + anon_sym_BANG, + ACTIONS(4602), 1, + anon_sym_COLON_COLON, + ACTIONS(4604), 1, + anon_sym_LT2, + ACTIONS(4906), 1, + anon_sym_for, + STATE(2016), 1, + sym_type_arguments, + STATE(2033), 1, + sym_parameters, + STATE(2161), 2, sym_line_comment, sym_block_comment, - ACTIONS(4879), 10, + ACTIONS(3366), 4, 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, - [67970] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [68681] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(2152), 2, + ACTIONS(4844), 1, + anon_sym_COLON_COLON, + ACTIONS(4878), 1, + anon_sym_COLON, + STATE(2162), 2, sym_line_comment, sym_block_comment, - ACTIONS(4881), 10, + ACTIONS(4876), 9, 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, - [67993] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [68709] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(2153), 2, + STATE(2163), 2, sym_line_comment, sym_block_comment, - ACTIONS(4883), 10, + ACTIONS(4608), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -170800,81 +172828,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [68016] = 9, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [68732] = 7, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4568), 1, - anon_sym_LPAREN, - ACTIONS(4574), 1, - anon_sym_LT2, - ACTIONS(4885), 1, - anon_sym_LBRACE, - STATE(1993), 1, - sym_type_arguments, - STATE(2006), 1, - sym_parameters, - STATE(2154), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3425), 5, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_PLUS, - anon_sym_COMMA, - [68049] = 8, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3362), 1, + ACTIONS(3376), 1, anon_sym_LT2, - ACTIONS(3572), 1, + ACTIONS(4908), 1, anon_sym_COLON_COLON, - ACTIONS(4887), 1, - anon_sym_BANG, - STATE(1106), 1, + STATE(1383), 1, sym_type_arguments, - STATE(2155), 2, + STATE(2164), 2, sym_line_comment, sym_block_comment, - ACTIONS(3530), 6, + ACTIONS(3525), 7, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [68080] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + anon_sym_safe, + [68761] = 4, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(2156), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4889), 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, - [68103] = 4, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(2157), 2, + STATE(2165), 2, sym_line_comment, sym_block_comment, - ACTIONS(4891), 10, + ACTIONS(4910), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -170885,187 +172869,171 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [68126] = 13, + [68784] = 13, ACTIONS(69), 1, anon_sym_pub, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3044), 1, + ACTIONS(3070), 1, anon_sym_POUND, - ACTIONS(4871), 1, + ACTIONS(4912), 1, sym_identifier, - ACTIONS(4877), 1, - sym_crate, - ACTIONS(4893), 1, + ACTIONS(4914), 1, anon_sym_RBRACE, - ACTIONS(4895), 1, + ACTIONS(4916), 1, anon_sym_COMMA, - STATE(1494), 1, + ACTIONS(4918), 1, + sym_crate, + STATE(1377), 1, sym_attribute_item, - STATE(2279), 1, + STATE(2302), 1, aux_sym_enum_variant_list_repeat1, - STATE(2848), 1, + STATE(2874), 1, sym_enum_variant, - STATE(3484), 1, + STATE(3701), 1, sym_visibility_modifier, - STATE(2158), 2, + STATE(2166), 2, sym_line_comment, sym_block_comment, - [68167] = 13, + [68825] = 13, ACTIONS(69), 1, anon_sym_pub, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3044), 1, + ACTIONS(3070), 1, anon_sym_POUND, - ACTIONS(4877), 1, + ACTIONS(4918), 1, sym_crate, - ACTIONS(4897), 1, + ACTIONS(4920), 1, sym_identifier, - ACTIONS(4899), 1, + ACTIONS(4922), 1, anon_sym_RBRACE, - ACTIONS(4901), 1, + ACTIONS(4924), 1, anon_sym_COMMA, - STATE(1494), 1, + STATE(1377), 1, sym_attribute_item, - STATE(2280), 1, + STATE(2305), 1, aux_sym_enum_variant_list_repeat1, - STATE(2858), 1, + STATE(2882), 1, sym_field_declaration, - STATE(3658), 1, + STATE(3571), 1, sym_visibility_modifier, - STATE(2159), 2, + STATE(2167), 2, sym_line_comment, sym_block_comment, - [68208] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [68866] = 7, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(2160), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4777), 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, - [68231] = 4, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(2161), 2, + ACTIONS(4926), 1, + anon_sym_SEMI, + ACTIONS(4928), 1, + anon_sym_LBRACE, + STATE(495), 1, + sym_declaration_list, + STATE(2168), 2, sym_line_comment, sym_block_comment, - ACTIONS(4903), 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, - [68254] = 11, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + ACTIONS(3525), 7, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + anon_sym_safe, + [68895] = 11, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3044), 1, + ACTIONS(3070), 1, anon_sym_POUND, - ACTIONS(4801), 1, + ACTIONS(4850), 1, sym_identifier, - ACTIONS(4805), 1, + ACTIONS(4854), 1, anon_sym_DOT_DOT, - ACTIONS(4809), 1, + ACTIONS(4858), 1, sym_integer_literal, - ACTIONS(4905), 1, + ACTIONS(4930), 1, anon_sym_RBRACE, - STATE(1494), 1, + STATE(1377), 1, sym_attribute_item, - STATE(2561), 1, + STATE(2569), 1, aux_sym_enum_variant_list_repeat1, - STATE(2162), 2, + STATE(2169), 2, sym_line_comment, sym_block_comment, - STATE(3379), 3, + STATE(3277), 3, sym_shorthand_field_initializer, sym_field_initializer, sym_base_field_initializer, - [68291] = 11, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [68932] = 11, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3044), 1, + ACTIONS(3070), 1, anon_sym_POUND, - ACTIONS(4801), 1, + ACTIONS(4850), 1, sym_identifier, - ACTIONS(4805), 1, + ACTIONS(4854), 1, anon_sym_DOT_DOT, - ACTIONS(4809), 1, + ACTIONS(4858), 1, sym_integer_literal, - ACTIONS(4907), 1, + ACTIONS(4932), 1, anon_sym_RBRACE, - STATE(1494), 1, + STATE(1377), 1, sym_attribute_item, - STATE(2561), 1, + STATE(2569), 1, aux_sym_enum_variant_list_repeat1, - STATE(2163), 2, + STATE(2170), 2, sym_line_comment, sym_block_comment, - STATE(3379), 3, + STATE(3277), 3, sym_shorthand_field_initializer, sym_field_initializer, sym_base_field_initializer, - [68328] = 11, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [68969] = 11, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3044), 1, + ACTIONS(3070), 1, anon_sym_POUND, - ACTIONS(4801), 1, + ACTIONS(4850), 1, sym_identifier, - ACTIONS(4805), 1, + ACTIONS(4854), 1, anon_sym_DOT_DOT, - ACTIONS(4809), 1, + ACTIONS(4858), 1, sym_integer_literal, - ACTIONS(4909), 1, + ACTIONS(4934), 1, anon_sym_RBRACE, - STATE(1494), 1, + STATE(1377), 1, sym_attribute_item, - STATE(2561), 1, + STATE(2569), 1, aux_sym_enum_variant_list_repeat1, - STATE(2164), 2, + STATE(2171), 2, sym_line_comment, sym_block_comment, - STATE(3379), 3, + STATE(3277), 3, sym_shorthand_field_initializer, sym_field_initializer, sym_base_field_initializer, - [68365] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [69006] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(2165), 2, + STATE(2172), 2, sym_line_comment, sym_block_comment, - ACTIONS(4911), 10, + ACTIONS(4936), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -171076,15 +173044,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [68388] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [69029] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(2166), 2, + STATE(2173), 2, sym_line_comment, sym_block_comment, - ACTIONS(4913), 10, + ACTIONS(4938), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -171095,38 +173063,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [68411] = 8, - ACTIONS(103), 1, + [69052] = 4, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + STATE(2174), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4940), 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, + [69075] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(1601), 1, + ACTIONS(4928), 1, anon_sym_LBRACE, - ACTIONS(3348), 1, - anon_sym_SQUOTE, - STATE(2172), 1, - sym_block, - STATE(3709), 1, - sym_label, - STATE(2167), 2, + ACTIONS(4942), 1, + anon_sym_SEMI, + STATE(528), 1, + sym_declaration_list, + STATE(2175), 2, sym_line_comment, sym_block_comment, - ACTIONS(3530), 6, + ACTIONS(3525), 7, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [68442] = 4, - ACTIONS(103), 1, + anon_sym_safe, + [69104] = 7, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(4122), 1, + anon_sym_LT2, + ACTIONS(4944), 1, + anon_sym_COLON_COLON, + STATE(1641), 1, + sym_type_arguments, + STATE(2176), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3525), 7, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + anon_sym_safe, + [69133] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(2168), 2, + STATE(2177), 2, sym_line_comment, sym_block_comment, - ACTIONS(4813), 10, + ACTIONS(4946), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -171137,66 +173145,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [68465] = 8, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [69156] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4084), 1, + ACTIONS(4604), 1, anon_sym_LT2, - ACTIONS(4200), 1, + ACTIONS(4948), 1, anon_sym_COLON_COLON, - ACTIONS(4915), 1, - anon_sym_BANG, - STATE(1682), 1, + STATE(2011), 1, sym_type_arguments, - STATE(2169), 2, + STATE(2178), 2, sym_line_comment, sym_block_comment, - ACTIONS(3530), 6, + ACTIONS(3525), 7, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [68496] = 13, - ACTIONS(69), 1, - anon_sym_pub, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + anon_sym_safe, + [69185] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3044), 1, - anon_sym_POUND, - ACTIONS(4877), 1, - sym_crate, - ACTIONS(4897), 1, - sym_identifier, - ACTIONS(4917), 1, + STATE(2179), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4950), 10, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, anon_sym_RBRACE, - ACTIONS(4919), 1, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_EQ, anon_sym_COMMA, - STATE(1494), 1, - sym_attribute_item, - STATE(2261), 1, - aux_sym_enum_variant_list_repeat1, - STATE(3046), 1, - sym_field_declaration, - STATE(3658), 1, - sym_visibility_modifier, - STATE(2170), 2, + anon_sym_else, + anon_sym_in, + [69208] = 4, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + STATE(2180), 2, sym_line_comment, sym_block_comment, - [68537] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + ACTIONS(4952), 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, + [69231] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(2171), 2, + STATE(2181), 2, sym_line_comment, sym_block_comment, - ACTIONS(4921), 10, + ACTIONS(1452), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -171207,15 +173224,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [68560] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [69254] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(2172), 2, + STATE(2182), 2, sym_line_comment, sym_block_comment, - ACTIONS(1481), 10, + ACTIONS(4954), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -171226,15 +173243,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [68583] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [69277] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(2173), 2, + STATE(2183), 2, sym_line_comment, sym_block_comment, - ACTIONS(4923), 10, + ACTIONS(4956), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -171245,15 +173262,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [68606] = 4, - ACTIONS(103), 1, + [69300] = 4, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + STATE(2184), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4958), 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, + [69323] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(2174), 2, + STATE(2185), 2, sym_line_comment, sym_block_comment, - ACTIONS(4925), 10, + ACTIONS(4960), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -171264,38 +173300,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [68629] = 8, - ACTIONS(103), 1, + [69346] = 4, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + STATE(2186), 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, + [69369] = 10, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4574), 1, + ACTIONS(4604), 1, anon_sym_LT2, - ACTIONS(4600), 1, + ACTIONS(4964), 1, anon_sym_BANG, - ACTIONS(4695), 1, + ACTIONS(4966), 1, + anon_sym_DOT_DOT, + ACTIONS(4970), 1, anon_sym_COLON_COLON, - STATE(1994), 1, + STATE(2011), 1, sym_type_arguments, - STATE(2175), 2, + ACTIONS(4968), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2187), 2, sym_line_comment, sym_block_comment, - ACTIONS(3530), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [68660] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + ACTIONS(4689), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [69404] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(2176), 2, + STATE(2188), 2, sym_line_comment, sym_block_comment, - ACTIONS(4927), 10, + ACTIONS(4972), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -171306,15 +173363,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [68683] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [69427] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(2177), 2, + STATE(2189), 2, sym_line_comment, sym_block_comment, - ACTIONS(4929), 10, + ACTIONS(4974), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -171325,15 +173382,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [68706] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [69450] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(2178), 2, + STATE(2190), 2, sym_line_comment, sym_block_comment, - ACTIONS(4931), 10, + ACTIONS(4976), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -171344,15 +173401,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [68729] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [69473] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(2179), 2, + STATE(2191), 2, sym_line_comment, sym_block_comment, - ACTIONS(4933), 10, + ACTIONS(4978), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -171363,15 +173420,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [68752] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [69496] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(2180), 2, + STATE(2192), 2, sym_line_comment, sym_block_comment, - ACTIONS(4935), 10, + ACTIONS(4980), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -171382,15 +173439,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [68775] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [69519] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(2181), 2, + STATE(2193), 2, sym_line_comment, sym_block_comment, - ACTIONS(4937), 10, + ACTIONS(4886), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -171401,15 +173458,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [68798] = 4, - ACTIONS(103), 1, + [69542] = 7, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(4982), 1, + anon_sym_SEMI, + ACTIONS(4984), 1, + anon_sym_LBRACE, + STATE(1151), 1, + sym_declaration_list, + STATE(2194), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3525), 7, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + anon_sym_safe, + [69571] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(2182), 2, + STATE(2195), 2, sym_line_comment, sym_block_comment, - ACTIONS(4939), 10, + ACTIONS(4986), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -171420,15 +173499,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [68821] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [69594] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(2183), 2, + STATE(2196), 2, sym_line_comment, sym_block_comment, - ACTIONS(4941), 10, + ACTIONS(4988), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -171439,15 +173518,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [68844] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [69617] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(2184), 2, + STATE(2197), 2, sym_line_comment, sym_block_comment, - ACTIONS(4943), 10, + ACTIONS(4990), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -171458,15 +173537,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [68867] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [69640] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(2185), 2, + STATE(2198), 2, sym_line_comment, sym_block_comment, - ACTIONS(4945), 10, + ACTIONS(4992), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -171477,15 +173556,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [68890] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [69663] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(2186), 2, + STATE(2199), 2, sym_line_comment, sym_block_comment, - ACTIONS(4947), 10, + ACTIONS(4994), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -171496,15 +173575,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [68913] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [69686] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(2187), 2, + STATE(2200), 2, sym_line_comment, sym_block_comment, - ACTIONS(4949), 10, + ACTIONS(4996), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -171515,15 +173594,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [68936] = 4, - ACTIONS(103), 1, + [69709] = 4, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + STATE(2201), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4998), 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, + [69732] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(2188), 2, + STATE(2202), 2, sym_line_comment, sym_block_comment, - ACTIONS(4793), 10, + ACTIONS(5000), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -171534,15 +173632,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [68959] = 4, - ACTIONS(103), 1, + [69755] = 9, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(4598), 1, + anon_sym_LPAREN, + ACTIONS(4604), 1, + anon_sym_LT2, + ACTIONS(5002), 1, + anon_sym_LBRACE, + STATE(2013), 1, + sym_type_arguments, + STATE(2025), 1, + sym_parameters, + STATE(2203), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3505), 5, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_PLUS, + anon_sym_COMMA, + [69788] = 13, + ACTIONS(69), 1, + anon_sym_pub, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(2189), 2, + ACTIONS(3070), 1, + anon_sym_POUND, + ACTIONS(4912), 1, + sym_identifier, + ACTIONS(4918), 1, + sym_crate, + ACTIONS(5004), 1, + anon_sym_RBRACE, + ACTIONS(5006), 1, + anon_sym_COMMA, + STATE(1377), 1, + sym_attribute_item, + STATE(2283), 1, + aux_sym_enum_variant_list_repeat1, + STATE(3140), 1, + sym_enum_variant, + STATE(3701), 1, + sym_visibility_modifier, + STATE(2204), 2, + sym_line_comment, + sym_block_comment, + [69829] = 4, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + STATE(2205), 2, sym_line_comment, sym_block_comment, - ACTIONS(4951), 10, + ACTIONS(5008), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -171553,15 +173703,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [68982] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [69852] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(2190), 2, + STATE(2206), 2, sym_line_comment, sym_block_comment, - ACTIONS(4953), 10, + ACTIONS(5010), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -171572,65 +173722,191 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [69005] = 10, - ACTIONS(103), 1, + [69875] = 13, + ACTIONS(69), 1, + anon_sym_pub, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(3070), 1, + anon_sym_POUND, + ACTIONS(4918), 1, + sym_crate, + ACTIONS(4920), 1, + sym_identifier, + ACTIONS(5012), 1, + anon_sym_RBRACE, + ACTIONS(5014), 1, + anon_sym_COMMA, + STATE(1377), 1, + sym_attribute_item, + STATE(2267), 1, + aux_sym_enum_variant_list_repeat1, + STATE(2987), 1, + sym_field_declaration, + STATE(3571), 1, + sym_visibility_modifier, + STATE(2207), 2, + sym_line_comment, + sym_block_comment, + [69916] = 10, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4570), 1, + ACTIONS(4600), 1, anon_sym_BANG, - ACTIONS(4578), 1, + ACTIONS(4610), 1, anon_sym_LPAREN, - ACTIONS(4582), 1, + ACTIONS(4614), 1, anon_sym_COLON, - ACTIONS(4586), 1, + ACTIONS(4618), 1, anon_sym_DOT_DOT, - ACTIONS(4955), 1, + ACTIONS(5016), 1, anon_sym_COLON_COLON, - ACTIONS(4588), 2, + ACTIONS(4620), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(2191), 2, + STATE(2208), 2, sym_line_comment, sym_block_comment, - ACTIONS(4576), 3, + ACTIONS(4608), 3, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_COMMA, + [69951] = 4, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + STATE(2209), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5018), 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, + [69974] = 7, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(4984), 1, + anon_sym_LBRACE, + ACTIONS(5020), 1, + anon_sym_SEMI, + STATE(1207), 1, + sym_declaration_list, + STATE(2210), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3525), 7, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + anon_sym_safe, + [70003] = 4, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + STATE(2211), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5022), 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, + [70026] = 10, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(4604), 1, + anon_sym_LT2, + ACTIONS(4693), 1, + anon_sym_BANG, + ACTIONS(4695), 1, + anon_sym_DOT_DOT, + ACTIONS(4701), 1, + anon_sym_COLON_COLON, + STATE(2011), 1, + sym_type_arguments, + ACTIONS(4697), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2212), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4689), 3, + anon_sym_RBRACK, anon_sym_PIPE, anon_sym_COMMA, - [69040] = 10, - ACTIONS(103), 1, + [70061] = 4, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + STATE(2213), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4840), 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, + [70084] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4574), 1, - anon_sym_LT2, - ACTIONS(4600), 1, - anon_sym_BANG, - ACTIONS(4602), 1, - anon_sym_DOT_DOT, - ACTIONS(4697), 1, - anon_sym_COLON_COLON, - STATE(1994), 1, - sym_type_arguments, - ACTIONS(4604), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2192), 2, + STATE(2214), 2, sym_line_comment, sym_block_comment, - ACTIONS(4596), 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, - [69075] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + anon_sym_else, + anon_sym_in, + [70107] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(2193), 2, + STATE(2215), 2, sym_line_comment, sym_block_comment, - ACTIONS(4957), 10, + ACTIONS(4876), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -171641,250 +173917,272 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [69098] = 11, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [70130] = 11, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3044), 1, + ACTIONS(3070), 1, anon_sym_POUND, - ACTIONS(4801), 1, + ACTIONS(4850), 1, sym_identifier, - ACTIONS(4805), 1, + ACTIONS(4854), 1, anon_sym_DOT_DOT, - ACTIONS(4809), 1, + ACTIONS(4858), 1, sym_integer_literal, - ACTIONS(4959), 1, + ACTIONS(5026), 1, anon_sym_RBRACE, - STATE(1494), 1, + STATE(1377), 1, sym_attribute_item, - STATE(2561), 1, + STATE(2569), 1, aux_sym_enum_variant_list_repeat1, - STATE(2194), 2, + STATE(2216), 2, sym_line_comment, sym_block_comment, - STATE(3379), 3, + STATE(3277), 3, sym_shorthand_field_initializer, sym_field_initializer, sym_base_field_initializer, - [69135] = 10, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [70167] = 4, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4574), 1, - anon_sym_LT2, - ACTIONS(4961), 1, - anon_sym_BANG, - ACTIONS(4963), 1, - anon_sym_DOT_DOT, - ACTIONS(4967), 1, - anon_sym_COLON_COLON, - STATE(1994), 1, - sym_type_arguments, - ACTIONS(4965), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2195), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4596), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [69170] = 5, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3457), 1, - anon_sym_DOT_DOT, - STATE(2196), 2, + STATE(2217), 2, sym_line_comment, sym_block_comment, - ACTIONS(3459), 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, - [69194] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4969), 1, + ACTIONS(5028), 10, anon_sym_SEMI, - ACTIONS(4971), 1, - anon_sym_LBRACE, - STATE(1131), 1, - sym_declaration_list, - STATE(2197), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3530), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [69222] = 12, + 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, + [70190] = 12, ACTIONS(69), 1, anon_sym_pub, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3044), 1, + ACTIONS(3070), 1, anon_sym_POUND, - ACTIONS(4877), 1, + ACTIONS(4918), 1, sym_crate, - ACTIONS(4897), 1, + ACTIONS(4920), 1, sym_identifier, - ACTIONS(4973), 1, + ACTIONS(5030), 1, anon_sym_RBRACE, - STATE(1494), 1, + STATE(1377), 1, sym_attribute_item, - STATE(2260), 1, + STATE(2313), 1, aux_sym_enum_variant_list_repeat1, - STATE(3172), 1, + STATE(3261), 1, sym_field_declaration, - STATE(3658), 1, + STATE(3571), 1, sym_visibility_modifier, - STATE(2198), 2, + STATE(2218), 2, sym_line_comment, sym_block_comment, - [69260] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [70228] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3362), 1, - anon_sym_LT2, - ACTIONS(4975), 1, - anon_sym_COLON_COLON, - STATE(1106), 1, - sym_type_arguments, - STATE(2199), 2, + ACTIONS(5034), 1, + anon_sym_PLUS, + STATE(2251), 1, + aux_sym_trait_bounds_repeat1, + STATE(2219), 2, sym_line_comment, sym_block_comment, - ACTIONS(3530), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [69288] = 9, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + ACTIONS(5032), 7, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_where, + [70254] = 9, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4568), 1, + ACTIONS(4598), 1, anon_sym_LPAREN, - ACTIONS(4574), 1, + ACTIONS(4604), 1, anon_sym_LT2, - ACTIONS(4977), 1, + ACTIONS(5036), 1, anon_sym_for, - STATE(1993), 1, + STATE(2013), 1, sym_type_arguments, - STATE(2006), 1, + STATE(2025), 1, sym_parameters, - STATE(2200), 2, + STATE(2220), 2, sym_line_comment, sym_block_comment, - ACTIONS(3425), 4, + ACTIONS(3505), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [69320] = 9, - ACTIONS(103), 1, + [70286] = 12, + ACTIONS(69), 1, + anon_sym_pub, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(3070), 1, + anon_sym_POUND, + ACTIONS(4912), 1, + sym_identifier, + ACTIONS(4918), 1, + sym_crate, + ACTIONS(5038), 1, + anon_sym_RBRACE, + STATE(1377), 1, + sym_attribute_item, + STATE(2306), 1, + aux_sym_enum_variant_list_repeat1, + STATE(3385), 1, + sym_enum_variant, + STATE(3701), 1, + sym_visibility_modifier, + STATE(2221), 2, + sym_line_comment, + sym_block_comment, + [70324] = 12, + ACTIONS(69), 1, + anon_sym_pub, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(3070), 1, + anon_sym_POUND, + ACTIONS(4918), 1, + sym_crate, + ACTIONS(4920), 1, + sym_identifier, + ACTIONS(5040), 1, + anon_sym_RBRACE, + STATE(1377), 1, + sym_attribute_item, + STATE(2313), 1, + aux_sym_enum_variant_list_repeat1, + STATE(3261), 1, + sym_field_declaration, + STATE(3571), 1, + sym_visibility_modifier, + STATE(2222), 2, + sym_line_comment, + sym_block_comment, + [70362] = 9, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4568), 1, + ACTIONS(4598), 1, anon_sym_LPAREN, - ACTIONS(4574), 1, + ACTIONS(4604), 1, anon_sym_LT2, - ACTIONS(4979), 1, + ACTIONS(5042), 1, anon_sym_for, - STATE(1993), 1, + STATE(2013), 1, sym_type_arguments, - STATE(2006), 1, + STATE(2025), 1, sym_parameters, - STATE(2201), 2, + STATE(2223), 2, sym_line_comment, sym_block_comment, - ACTIONS(3425), 4, + ACTIONS(3505), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [69352] = 12, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [70394] = 12, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4981), 1, + ACTIONS(5044), 1, anon_sym_SEMI, - ACTIONS(4983), 1, + ACTIONS(5046), 1, anon_sym_LPAREN, - ACTIONS(4985), 1, + ACTIONS(5048), 1, anon_sym_LBRACE, - ACTIONS(4987), 1, + ACTIONS(5050), 1, anon_sym_LT, - ACTIONS(4989), 1, + ACTIONS(5052), 1, anon_sym_where, - STATE(1170), 1, + STATE(1258), 1, sym_field_declaration_list, - STATE(2327), 1, + STATE(2339), 1, sym_type_parameters, - STATE(2868), 1, + STATE(2891), 1, sym_ordered_field_declaration_list, - STATE(3313), 1, + STATE(3386), 1, sym_where_clause, - STATE(2202), 2, + STATE(2224), 2, sym_line_comment, sym_block_comment, - [69390] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [70432] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4991), 1, - anon_sym_SEMI, - ACTIONS(4993), 1, - anon_sym_LBRACE, - STATE(663), 1, - sym_declaration_list, - STATE(2203), 2, + ACTIONS(5054), 1, + anon_sym_static, + ACTIONS(5056), 1, + anon_sym_trait, + STATE(2225), 2, sym_line_comment, sym_block_comment, - ACTIONS(3530), 6, + ACTIONS(3525), 7, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [69418] = 6, - ACTIONS(103), 1, + anon_sym_safe, + [70458] = 4, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + STATE(2226), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5058), 9, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + anon_sym_safe, + [70480] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4997), 1, + ACTIONS(5034), 1, anon_sym_PLUS, - STATE(2236), 1, + STATE(2219), 1, aux_sym_trait_bounds_repeat1, - STATE(2204), 2, + STATE(2227), 2, sym_line_comment, sym_block_comment, - ACTIONS(4995), 7, + ACTIONS(5060), 7, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_EQ, @@ -171892,307 +174190,580 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_SQUOTE, anon_sym_where, - [69444] = 10, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3044), 1, - anon_sym_POUND, - ACTIONS(4801), 1, - sym_identifier, - ACTIONS(4805), 1, - anon_sym_DOT_DOT, - ACTIONS(4809), 1, - sym_integer_literal, - STATE(1494), 1, - sym_attribute_item, - STATE(2561), 1, - aux_sym_enum_variant_list_repeat1, - STATE(2205), 2, - sym_line_comment, - sym_block_comment, - STATE(3379), 3, - sym_shorthand_field_initializer, - sym_field_initializer, - sym_base_field_initializer, - [69478] = 12, + [70506] = 12, ACTIONS(69), 1, anon_sym_pub, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3044), 1, + ACTIONS(3070), 1, anon_sym_POUND, - ACTIONS(4871), 1, + ACTIONS(4912), 1, sym_identifier, - ACTIONS(4877), 1, + ACTIONS(4918), 1, sym_crate, - ACTIONS(4999), 1, + ACTIONS(5062), 1, anon_sym_RBRACE, - STATE(1494), 1, + STATE(1377), 1, sym_attribute_item, - STATE(2247), 1, + STATE(2306), 1, aux_sym_enum_variant_list_repeat1, - STATE(3240), 1, + STATE(3385), 1, sym_enum_variant, - STATE(3484), 1, + STATE(3701), 1, sym_visibility_modifier, - STATE(2206), 2, + STATE(2228), 2, + sym_line_comment, + sym_block_comment, + [70544] = 9, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(4689), 1, + anon_sym_PIPE, + ACTIONS(4691), 1, + anon_sym_COLON, + ACTIONS(4695), 1, + anon_sym_DOT_DOT, + ACTIONS(4732), 1, + anon_sym_COLON_COLON, + ACTIONS(4697), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2229), 2, sym_line_comment, sym_block_comment, - [69516] = 12, + ACTIONS(3505), 3, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_COMMA, + [70576] = 12, ACTIONS(69), 1, anon_sym_pub, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3044), 1, + ACTIONS(3070), 1, anon_sym_POUND, - ACTIONS(4877), 1, + ACTIONS(4918), 1, sym_crate, - ACTIONS(4897), 1, + ACTIONS(4920), 1, sym_identifier, - ACTIONS(5001), 1, + ACTIONS(5064), 1, anon_sym_RBRACE, - STATE(1494), 1, + STATE(1377), 1, sym_attribute_item, - STATE(2260), 1, + STATE(2313), 1, aux_sym_enum_variant_list_repeat1, - STATE(3172), 1, + STATE(3261), 1, sym_field_declaration, - STATE(3658), 1, + STATE(3571), 1, sym_visibility_modifier, - STATE(2207), 2, + STATE(2230), 2, sym_line_comment, sym_block_comment, - [69554] = 5, - ACTIONS(103), 1, + [70614] = 7, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(5069), 1, + anon_sym_fn, + ACTIONS(5071), 1, + anon_sym_extern, + STATE(2373), 1, + sym_extern_modifier, + STATE(2231), 3, + sym_line_comment, + sym_block_comment, + aux_sym_function_modifiers_repeat1, + ACTIONS(5066), 5, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_unsafe, + anon_sym_safe, + [70642] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3421), 1, - anon_sym_DOT_DOT, - STATE(2208), 2, + ACTIONS(5074), 1, + anon_sym_PLUS, + STATE(2219), 1, + aux_sym_trait_bounds_repeat1, + STATE(2232), 2, sym_line_comment, sym_block_comment, - ACTIONS(3423), 8, + ACTIONS(5060), 7, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_where, + [70668] = 9, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(4598), 1, anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_BANG, + ACTIONS(4604), 1, + anon_sym_LT2, + ACTIONS(5076), 1, + anon_sym_for, + STATE(2013), 1, + sym_type_arguments, + STATE(2025), 1, + sym_parameters, + STATE(2233), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3505), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [70700] = 11, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(4604), 1, + anon_sym_LT2, + ACTIONS(4689), 1, anon_sym_PIPE, + ACTIONS(4691), 1, + anon_sym_COLON, + ACTIONS(4693), 1, + anon_sym_BANG, + ACTIONS(4695), 1, + anon_sym_DOT_DOT, + ACTIONS(4732), 1, + anon_sym_COLON_COLON, + STATE(2011), 1, + sym_type_arguments, + ACTIONS(4697), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, - anon_sym_if, - [69578] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + STATE(2234), 2, + sym_line_comment, + sym_block_comment, + [70736] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4993), 1, - anon_sym_LBRACE, - ACTIONS(5003), 1, - anon_sym_SEMI, - STATE(689), 1, - sym_declaration_list, - STATE(2209), 2, + ACTIONS(5078), 1, + anon_sym_PLUS, + STATE(2219), 1, + aux_sym_trait_bounds_repeat1, + STATE(2235), 2, sym_line_comment, sym_block_comment, - ACTIONS(3530), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [69606] = 12, + ACTIONS(5060), 7, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_where, + [70762] = 12, ACTIONS(69), 1, anon_sym_pub, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3044), 1, + ACTIONS(3070), 1, anon_sym_POUND, - ACTIONS(4871), 1, + ACTIONS(4912), 1, sym_identifier, - ACTIONS(4877), 1, + ACTIONS(4918), 1, sym_crate, - ACTIONS(5005), 1, + ACTIONS(5080), 1, anon_sym_RBRACE, - STATE(1494), 1, + STATE(1377), 1, sym_attribute_item, - STATE(2247), 1, + STATE(2306), 1, aux_sym_enum_variant_list_repeat1, - STATE(3240), 1, + STATE(3385), 1, sym_enum_variant, - STATE(3484), 1, + STATE(3701), 1, sym_visibility_modifier, - STATE(2210), 2, + STATE(2236), 2, sym_line_comment, sym_block_comment, - [69644] = 9, - ACTIONS(103), 1, + [70800] = 9, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(5082), 1, + anon_sym_LPAREN, + ACTIONS(5087), 1, + anon_sym_LBRACK, + ACTIONS(5090), 1, + anon_sym_LBRACE, + STATE(3540), 1, + sym_macro_rule, + STATE(3547), 1, + sym_token_tree_pattern, + ACTIONS(5085), 3, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + STATE(2237), 3, + sym_line_comment, + sym_block_comment, + aux_sym_macro_definition_repeat1, + [70832] = 9, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4596), 1, - anon_sym_PIPE, - ACTIONS(4598), 1, - anon_sym_COLON, - ACTIONS(4602), 1, + ACTIONS(4761), 1, + anon_sym_LPAREN, + ACTIONS(4765), 1, + anon_sym_BANG, + ACTIONS(4769), 1, anon_sym_DOT_DOT, - ACTIONS(4701), 1, + ACTIONS(5093), 1, anon_sym_COLON_COLON, - ACTIONS(4604), 2, + ACTIONS(4771), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(2211), 2, + STATE(2238), 2, sym_line_comment, sym_block_comment, - ACTIONS(3425), 3, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_COMMA, - [69676] = 7, - ACTIONS(103), 1, + ACTIONS(4608), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [70864] = 12, + ACTIONS(69), 1, + anon_sym_pub, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(3070), 1, + anon_sym_POUND, + ACTIONS(4912), 1, + sym_identifier, + ACTIONS(4918), 1, + sym_crate, + ACTIONS(5095), 1, + anon_sym_RBRACE, + STATE(1377), 1, + sym_attribute_item, + STATE(2306), 1, + aux_sym_enum_variant_list_repeat1, + STATE(3385), 1, + sym_enum_variant, + STATE(3701), 1, + sym_visibility_modifier, + STATE(2239), 2, + sym_line_comment, + sym_block_comment, + [70902] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4574), 1, - anon_sym_LT2, - ACTIONS(5007), 1, - anon_sym_COLON_COLON, - STATE(1994), 1, - sym_type_arguments, - STATE(2212), 2, + ACTIONS(1294), 1, + aux_sym_string_literal_token1, + STATE(2226), 1, + sym_string_literal, + STATE(2240), 2, sym_line_comment, sym_block_comment, - ACTIONS(3530), 6, + ACTIONS(4804), 7, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [69704] = 12, + anon_sym_safe, + [70928] = 10, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(3070), 1, + anon_sym_POUND, + ACTIONS(4850), 1, + sym_identifier, + ACTIONS(4854), 1, + anon_sym_DOT_DOT, + ACTIONS(4858), 1, + sym_integer_literal, + STATE(1377), 1, + sym_attribute_item, + STATE(2569), 1, + aux_sym_enum_variant_list_repeat1, + STATE(2241), 2, + sym_line_comment, + sym_block_comment, + STATE(3277), 3, + sym_shorthand_field_initializer, + sym_field_initializer, + sym_base_field_initializer, + [70962] = 10, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(3505), 1, + anon_sym_PLUS, + ACTIONS(4689), 1, + anon_sym_PIPE, + ACTIONS(4691), 1, + anon_sym_COLON, + ACTIONS(4695), 1, + anon_sym_DOT_DOT, + ACTIONS(4699), 1, + anon_sym_COLON_COLON, + ACTIONS(4697), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(5097), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(2242), 2, + sym_line_comment, + sym_block_comment, + [70996] = 12, ACTIONS(69), 1, anon_sym_pub, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3044), 1, + ACTIONS(3070), 1, anon_sym_POUND, - ACTIONS(4877), 1, - sym_crate, - ACTIONS(4897), 1, + ACTIONS(4912), 1, sym_identifier, - ACTIONS(5009), 1, + ACTIONS(4918), 1, + sym_crate, + ACTIONS(5100), 1, anon_sym_RBRACE, - STATE(1494), 1, + STATE(1377), 1, sym_attribute_item, - STATE(2260), 1, + STATE(2306), 1, aux_sym_enum_variant_list_repeat1, - STATE(3172), 1, - sym_field_declaration, - STATE(3658), 1, + STATE(3385), 1, + sym_enum_variant, + STATE(3701), 1, sym_visibility_modifier, - STATE(2213), 2, + STATE(2243), 2, + sym_line_comment, + sym_block_comment, + [71034] = 8, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(5102), 1, + anon_sym_fn, + ACTIONS(5104), 1, + anon_sym_extern, + STATE(2231), 1, + aux_sym_function_modifiers_repeat1, + STATE(2373), 1, + sym_extern_modifier, + STATE(2244), 2, sym_line_comment, sym_block_comment, - [69742] = 12, + ACTIONS(4624), 5, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_unsafe, + anon_sym_safe, + [71064] = 12, ACTIONS(69), 1, anon_sym_pub, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3044), 1, + ACTIONS(3070), 1, anon_sym_POUND, - ACTIONS(4871), 1, - sym_identifier, - ACTIONS(4877), 1, + ACTIONS(4918), 1, sym_crate, - ACTIONS(5011), 1, + ACTIONS(4920), 1, + sym_identifier, + ACTIONS(5106), 1, anon_sym_RBRACE, - STATE(1494), 1, + STATE(1377), 1, sym_attribute_item, - STATE(2247), 1, + STATE(2313), 1, aux_sym_enum_variant_list_repeat1, - STATE(3240), 1, - sym_enum_variant, - STATE(3484), 1, + STATE(3261), 1, + sym_field_declaration, + STATE(3571), 1, sym_visibility_modifier, - STATE(2214), 2, + STATE(2245), 2, + sym_line_comment, + sym_block_comment, + [71102] = 12, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(5046), 1, + anon_sym_LPAREN, + ACTIONS(5050), 1, + anon_sym_LT, + ACTIONS(5052), 1, + anon_sym_where, + ACTIONS(5108), 1, + anon_sym_SEMI, + ACTIONS(5110), 1, + anon_sym_LBRACE, + STATE(766), 1, + sym_field_declaration_list, + STATE(2359), 1, + sym_type_parameters, + STATE(3118), 1, + sym_ordered_field_declaration_list, + STATE(3227), 1, + sym_where_clause, + STATE(2246), 2, + sym_line_comment, + sym_block_comment, + [71140] = 12, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(5046), 1, + anon_sym_LPAREN, + ACTIONS(5048), 1, + anon_sym_LBRACE, + ACTIONS(5050), 1, + anon_sym_LT, + ACTIONS(5052), 1, + anon_sym_where, + ACTIONS(5112), 1, + anon_sym_SEMI, + STATE(1198), 1, + sym_field_declaration_list, + STATE(2340), 1, + sym_type_parameters, + STATE(3157), 1, + sym_ordered_field_declaration_list, + STATE(3451), 1, + sym_where_clause, + STATE(2247), 2, + sym_line_comment, + sym_block_comment, + [71178] = 5, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(3439), 1, + anon_sym_DOT_DOT, + STATE(2248), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3441), 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, + [71202] = 9, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(4598), 1, + anon_sym_LPAREN, + ACTIONS(4604), 1, + anon_sym_LT2, + ACTIONS(5114), 1, + anon_sym_for, + STATE(2013), 1, + sym_type_arguments, + STATE(2025), 1, + sym_parameters, + STATE(2249), 2, sym_line_comment, sym_block_comment, - [69780] = 12, - ACTIONS(69), 1, - anon_sym_pub, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + ACTIONS(3505), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [71234] = 12, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3044), 1, - anon_sym_POUND, - ACTIONS(4877), 1, - sym_crate, - ACTIONS(4897), 1, - sym_identifier, - ACTIONS(5013), 1, - anon_sym_RBRACE, - STATE(1494), 1, - sym_attribute_item, - STATE(2260), 1, - aux_sym_enum_variant_list_repeat1, - STATE(3172), 1, - sym_field_declaration, - STATE(3658), 1, - sym_visibility_modifier, - STATE(2215), 2, + ACTIONS(5046), 1, + anon_sym_LPAREN, + ACTIONS(5050), 1, + anon_sym_LT, + ACTIONS(5052), 1, + anon_sym_where, + ACTIONS(5110), 1, + anon_sym_LBRACE, + ACTIONS(5116), 1, + anon_sym_SEMI, + STATE(658), 1, + sym_field_declaration_list, + STATE(2358), 1, + sym_type_parameters, + STATE(3068), 1, + sym_ordered_field_declaration_list, + STATE(3279), 1, + sym_where_clause, + STATE(2250), 2, sym_line_comment, sym_block_comment, - [69818] = 12, - ACTIONS(69), 1, - anon_sym_pub, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [71272] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3044), 1, - anon_sym_POUND, - ACTIONS(4877), 1, - sym_crate, - ACTIONS(4897), 1, - sym_identifier, - ACTIONS(5015), 1, - anon_sym_RBRACE, - STATE(1494), 1, - sym_attribute_item, - STATE(2260), 1, - aux_sym_enum_variant_list_repeat1, - STATE(3172), 1, - sym_field_declaration, - STATE(3658), 1, - sym_visibility_modifier, - STATE(2216), 2, + ACTIONS(5120), 1, + anon_sym_PLUS, + STATE(2251), 3, sym_line_comment, sym_block_comment, - [69856] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + aux_sym_trait_bounds_repeat1, + ACTIONS(5118), 7, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_where, + [71296] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3437), 1, + ACTIONS(3540), 1, anon_sym_DOT_DOT, - STATE(2217), 2, + STATE(2252), 2, sym_line_comment, sym_block_comment, - ACTIONS(3439), 8, + ACTIONS(3542), 8, anon_sym_LPAREN, anon_sym_EQ_GT, anon_sym_BANG, @@ -172201,1692 +174772,1422 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, anon_sym_if, - [69880] = 9, - ACTIONS(103), 1, + [71320] = 12, + ACTIONS(69), 1, + anon_sym_pub, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(3070), 1, + anon_sym_POUND, + ACTIONS(4912), 1, + sym_identifier, + ACTIONS(4918), 1, + sym_crate, + ACTIONS(5123), 1, + anon_sym_RBRACE, + STATE(1377), 1, + sym_attribute_item, + STATE(2306), 1, + aux_sym_enum_variant_list_repeat1, + STATE(3385), 1, + sym_enum_variant, + STATE(3701), 1, + sym_visibility_modifier, + STATE(2253), 2, + sym_line_comment, + sym_block_comment, + [71358] = 9, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4723), 1, - anon_sym_LPAREN, - ACTIONS(4727), 1, + ACTIONS(4600), 1, anon_sym_BANG, - ACTIONS(4731), 1, + ACTIONS(4610), 1, + anon_sym_LPAREN, + ACTIONS(4618), 1, anon_sym_DOT_DOT, - ACTIONS(5017), 1, + ACTIONS(5125), 1, anon_sym_COLON_COLON, - ACTIONS(4733), 2, + ACTIONS(4620), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(2218), 2, + STATE(2254), 2, sym_line_comment, sym_block_comment, - ACTIONS(4576), 3, - anon_sym_EQ_GT, + ACTIONS(4608), 3, + anon_sym_RBRACK, anon_sym_PIPE, - anon_sym_if, - [69912] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + anon_sym_COMMA, + [71390] = 9, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4084), 1, - anon_sym_LT2, - ACTIONS(5019), 1, - anon_sym_COLON_COLON, - STATE(1682), 1, - sym_type_arguments, - STATE(2219), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3530), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [69940] = 10, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3425), 1, - anon_sym_PLUS, - ACTIONS(4596), 1, - anon_sym_PIPE, - ACTIONS(4598), 1, - anon_sym_COLON, - ACTIONS(4602), 1, + ACTIONS(4695), 1, anon_sym_DOT_DOT, - ACTIONS(4606), 1, + ACTIONS(4701), 1, anon_sym_COLON_COLON, - ACTIONS(4604), 2, + ACTIONS(5097), 1, + anon_sym_RBRACK, + ACTIONS(3505), 2, + anon_sym_SEMI, + anon_sym_PLUS, + ACTIONS(4689), 2, + anon_sym_PIPE, + anon_sym_COMMA, + ACTIONS(4697), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(5021), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(2220), 2, + STATE(2255), 2, sym_line_comment, sym_block_comment, - [69974] = 9, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [71422] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5024), 1, - anon_sym_LPAREN, - ACTIONS(5029), 1, - anon_sym_LBRACK, - ACTIONS(5032), 1, - anon_sym_LBRACE, - STATE(3451), 1, - sym_token_tree_pattern, - STATE(3519), 1, - sym_macro_rule, - ACTIONS(5027), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - STATE(2221), 3, + ACTIONS(3501), 1, + anon_sym_DOT_DOT, + STATE(2256), 2, sym_line_comment, sym_block_comment, - aux_sym_macro_definition_repeat1, - [70006] = 9, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + ACTIONS(3503), 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, + [71446] = 9, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4568), 1, + ACTIONS(4598), 1, anon_sym_LPAREN, - ACTIONS(4574), 1, + ACTIONS(4604), 1, anon_sym_LT2, - ACTIONS(5035), 1, + ACTIONS(5127), 1, anon_sym_for, - STATE(1993), 1, + STATE(2013), 1, sym_type_arguments, - STATE(2006), 1, + STATE(2025), 1, sym_parameters, - STATE(2222), 2, + STATE(2257), 2, sym_line_comment, sym_block_comment, - ACTIONS(3425), 4, + ACTIONS(3505), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [70038] = 12, - ACTIONS(69), 1, - anon_sym_pub, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [71478] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3044), 1, - anon_sym_POUND, - ACTIONS(4871), 1, - sym_identifier, - ACTIONS(4877), 1, - sym_crate, - ACTIONS(5037), 1, - anon_sym_RBRACE, - STATE(1494), 1, - sym_attribute_item, - STATE(2247), 1, - aux_sym_enum_variant_list_repeat1, - STATE(3240), 1, - sym_enum_variant, - STATE(3484), 1, - sym_visibility_modifier, - STATE(2223), 2, + ACTIONS(5129), 1, + anon_sym_static, + ACTIONS(5131), 1, + anon_sym_trait, + STATE(2258), 2, sym_line_comment, sym_block_comment, - [70076] = 12, + ACTIONS(3525), 7, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + anon_sym_safe, + [71504] = 12, ACTIONS(69), 1, anon_sym_pub, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3044), 1, + ACTIONS(3070), 1, anon_sym_POUND, - ACTIONS(4877), 1, + ACTIONS(4918), 1, sym_crate, - ACTIONS(4897), 1, + ACTIONS(4920), 1, sym_identifier, - ACTIONS(5039), 1, + ACTIONS(5133), 1, anon_sym_RBRACE, - STATE(1494), 1, + STATE(1377), 1, sym_attribute_item, - STATE(2260), 1, + STATE(2313), 1, aux_sym_enum_variant_list_repeat1, - STATE(3172), 1, + STATE(3261), 1, sym_field_declaration, - STATE(3658), 1, + STATE(3571), 1, sym_visibility_modifier, - STATE(2224), 2, + STATE(2259), 2, sym_line_comment, sym_block_comment, - [70114] = 12, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [71542] = 9, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4983), 1, - anon_sym_LPAREN, - ACTIONS(4987), 1, - anon_sym_LT, - ACTIONS(4989), 1, - anon_sym_where, - ACTIONS(5041), 1, - anon_sym_SEMI, - ACTIONS(5043), 1, - anon_sym_LBRACE, - STATE(716), 1, - sym_field_declaration_list, - STATE(2301), 1, - sym_type_parameters, - STATE(2924), 1, - sym_ordered_field_declaration_list, - STATE(3261), 1, - sym_where_clause, - STATE(2225), 2, - sym_line_comment, - sym_block_comment, - [70152] = 6, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4997), 1, - anon_sym_PLUS, - STATE(2204), 1, - aux_sym_trait_bounds_repeat1, - STATE(2226), 2, + ACTIONS(4598), 1, + anon_sym_LPAREN, + ACTIONS(4604), 1, + anon_sym_LT2, + ACTIONS(5135), 1, + anon_sym_for, + STATE(2013), 1, + sym_type_arguments, + STATE(2025), 1, + sym_parameters, + STATE(2260), 2, sym_line_comment, sym_block_comment, - ACTIONS(5045), 7, + ACTIONS(3505), 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, - [70178] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [71574] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5047), 1, - anon_sym_PLUS, - STATE(2204), 1, - aux_sym_trait_bounds_repeat1, - STATE(2227), 2, + ACTIONS(3415), 1, + anon_sym_DOT_DOT, + STATE(2261), 2, sym_line_comment, sym_block_comment, - ACTIONS(5045), 7, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_where, - [70204] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + ACTIONS(3417), 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, + [71598] = 9, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5049), 1, - anon_sym_PLUS, - STATE(2204), 1, - aux_sym_trait_bounds_repeat1, - STATE(2228), 2, + ACTIONS(4598), 1, + anon_sym_LPAREN, + ACTIONS(4604), 1, + anon_sym_LT2, + ACTIONS(5137), 1, + anon_sym_for, + STATE(2013), 1, + sym_type_arguments, + STATE(2025), 1, + sym_parameters, + STATE(2262), 2, sym_line_comment, sym_block_comment, - ACTIONS(5045), 7, + ACTIONS(3505), 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, - [70230] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [71630] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4971), 1, - anon_sym_LBRACE, - ACTIONS(5051), 1, - anon_sym_SEMI, - STATE(1104), 1, - sym_declaration_list, - STATE(2229), 2, + ACTIONS(4838), 1, + anon_sym_COLON_COLON, + ACTIONS(4964), 1, + anon_sym_BANG, + STATE(2263), 2, sym_line_comment, sym_block_comment, - ACTIONS(3530), 6, + ACTIONS(3525), 7, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [70258] = 11, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4574), 1, - anon_sym_LT2, - ACTIONS(4596), 1, - anon_sym_PIPE, - ACTIONS(4598), 1, - anon_sym_COLON, - ACTIONS(4600), 1, - anon_sym_BANG, - ACTIONS(4602), 1, - anon_sym_DOT_DOT, - ACTIONS(4701), 1, - anon_sym_COLON_COLON, - STATE(1994), 1, - sym_type_arguments, - ACTIONS(4604), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2230), 2, - sym_line_comment, - sym_block_comment, - [70294] = 12, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + anon_sym_safe, + [71656] = 9, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4983), 1, - anon_sym_LPAREN, - ACTIONS(4987), 1, - anon_sym_LT, - ACTIONS(4989), 1, - anon_sym_where, - ACTIONS(5043), 1, - anon_sym_LBRACE, - ACTIONS(5053), 1, - anon_sym_SEMI, - STATE(675), 1, - sym_field_declaration_list, - STATE(2313), 1, - sym_type_parameters, - STATE(3033), 1, - sym_ordered_field_declaration_list, - STATE(3248), 1, - sym_where_clause, - STATE(2231), 2, - sym_line_comment, - sym_block_comment, - [70332] = 9, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4568), 1, + ACTIONS(4598), 1, anon_sym_LPAREN, - ACTIONS(4574), 1, + ACTIONS(4604), 1, anon_sym_LT2, - ACTIONS(5055), 1, + ACTIONS(5139), 1, anon_sym_for, - STATE(1993), 1, + STATE(2013), 1, sym_type_arguments, - STATE(2006), 1, + STATE(2025), 1, sym_parameters, - STATE(2232), 2, + STATE(2264), 2, sym_line_comment, sym_block_comment, - ACTIONS(3425), 4, + ACTIONS(3505), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [70364] = 12, + [71688] = 12, ACTIONS(69), 1, anon_sym_pub, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3044), 1, + ACTIONS(3070), 1, anon_sym_POUND, - ACTIONS(4871), 1, - sym_identifier, - ACTIONS(4877), 1, + ACTIONS(4918), 1, sym_crate, - ACTIONS(5057), 1, + ACTIONS(4920), 1, + sym_identifier, + ACTIONS(5141), 1, anon_sym_RBRACE, - STATE(1494), 1, + STATE(1377), 1, sym_attribute_item, - STATE(2247), 1, + STATE(2313), 1, aux_sym_enum_variant_list_repeat1, - STATE(3240), 1, - sym_enum_variant, - STATE(3484), 1, + STATE(3261), 1, + sym_field_declaration, + STATE(3571), 1, sym_visibility_modifier, - STATE(2233), 2, + STATE(2265), 2, sym_line_comment, sym_block_comment, - [70402] = 9, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [71726] = 11, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4602), 1, - anon_sym_DOT_DOT, - ACTIONS(4697), 1, - anon_sym_COLON_COLON, - ACTIONS(5021), 1, - anon_sym_RBRACK, - ACTIONS(3425), 2, + ACTIONS(3386), 1, + anon_sym_SQUOTE, + ACTIONS(5052), 1, + anon_sym_where, + ACTIONS(5143), 1, anon_sym_SEMI, - anon_sym_PLUS, - ACTIONS(4596), 2, - anon_sym_PIPE, - anon_sym_COMMA, - ACTIONS(4604), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2234), 2, + ACTIONS(5145), 1, + anon_sym_LBRACE, + ACTIONS(5147), 1, + anon_sym_DASH_GT, + STATE(536), 1, + sym_block, + STATE(2563), 1, + sym_where_clause, + STATE(3743), 1, + sym_label, + STATE(2266), 2, sym_line_comment, sym_block_comment, - [70434] = 12, + [71761] = 11, ACTIONS(69), 1, anon_sym_pub, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3044), 1, + ACTIONS(3070), 1, anon_sym_POUND, - ACTIONS(4871), 1, - sym_identifier, - ACTIONS(4877), 1, + ACTIONS(4918), 1, sym_crate, - ACTIONS(5059), 1, - anon_sym_RBRACE, - STATE(1494), 1, - sym_attribute_item, - STATE(2247), 1, + ACTIONS(4920), 1, + sym_identifier, + STATE(1085), 1, aux_sym_enum_variant_list_repeat1, - STATE(3240), 1, - sym_enum_variant, - STATE(3484), 1, + STATE(1377), 1, + sym_attribute_item, + STATE(3129), 1, + sym_field_declaration, + STATE(3571), 1, sym_visibility_modifier, - STATE(2235), 2, + STATE(2267), 2, sym_line_comment, sym_block_comment, - [70472] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [71796] = 11, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5063), 1, - anon_sym_PLUS, - STATE(2236), 3, - sym_line_comment, - sym_block_comment, - aux_sym_trait_bounds_repeat1, - ACTIONS(5061), 7, - anon_sym_SEMI, + ACTIONS(4984), 1, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_SQUOTE, + ACTIONS(5052), 1, anon_sym_where, - [70496] = 9, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4570), 1, - anon_sym_BANG, - ACTIONS(4578), 1, - anon_sym_LPAREN, - ACTIONS(4586), 1, - anon_sym_DOT_DOT, - ACTIONS(5066), 1, - anon_sym_COLON_COLON, - ACTIONS(4588), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2237), 2, + ACTIONS(5149), 1, + anon_sym_COLON, + ACTIONS(5151), 1, + anon_sym_LT, + STATE(1199), 1, + sym_declaration_list, + STATE(2382), 1, + sym_type_parameters, + STATE(2771), 1, + sym_trait_bounds, + STATE(3453), 1, + sym_where_clause, + STATE(2268), 2, sym_line_comment, sym_block_comment, - ACTIONS(4576), 3, - anon_sym_RBRACK, - anon_sym_PIPE, - anon_sym_COMMA, - [70528] = 9, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [71831] = 11, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4568), 1, - anon_sym_LPAREN, - ACTIONS(4574), 1, - anon_sym_LT2, - ACTIONS(5068), 1, - anon_sym_for, - STATE(1993), 1, - sym_type_arguments, - STATE(2006), 1, - sym_parameters, - STATE(2238), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3425), 4, + ACTIONS(3386), 1, + anon_sym_SQUOTE, + ACTIONS(5052), 1, + anon_sym_where, + ACTIONS(5153), 1, anon_sym_SEMI, + ACTIONS(5155), 1, anon_sym_LBRACE, + ACTIONS(5157), 1, anon_sym_PLUS, - anon_sym_where, - [70560] = 12, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + STATE(1365), 1, + sym_block, + STATE(2556), 1, + sym_where_clause, + STATE(3746), 1, + sym_label, + STATE(2269), 2, + sym_line_comment, + sym_block_comment, + [71866] = 11, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4983), 1, - anon_sym_LPAREN, - ACTIONS(4985), 1, - anon_sym_LBRACE, - ACTIONS(4987), 1, - anon_sym_LT, - ACTIONS(4989), 1, + ACTIONS(5052), 1, anon_sym_where, - ACTIONS(5070), 1, + ACTIONS(5149), 1, + anon_sym_COLON, + ACTIONS(5151), 1, + anon_sym_LT, + ACTIONS(5159), 1, anon_sym_SEMI, - STATE(1124), 1, - sym_field_declaration_list, - STATE(2312), 1, + ACTIONS(5161), 1, + anon_sym_EQ, + STATE(2383), 1, sym_type_parameters, - STATE(3127), 1, - sym_ordered_field_declaration_list, - STATE(3418), 1, + STATE(2843), 1, + sym_trait_bounds, + STATE(3262), 1, sym_where_clause, - STATE(2239), 2, + STATE(2270), 2, sym_line_comment, sym_block_comment, - [70598] = 9, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [71901] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4568), 1, - anon_sym_LPAREN, - ACTIONS(4574), 1, - anon_sym_LT2, - ACTIONS(5072), 1, - anon_sym_for, - STATE(1993), 1, - sym_type_arguments, - STATE(2006), 1, - sym_parameters, - STATE(2240), 2, + ACTIONS(5163), 1, + sym_identifier, + STATE(2271), 2, sym_line_comment, sym_block_comment, - ACTIONS(3425), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [70630] = 9, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + ACTIONS(4810), 7, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + anon_sym_safe, + [71924] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4568), 1, - anon_sym_LPAREN, - ACTIONS(4574), 1, - anon_sym_LT2, - ACTIONS(5074), 1, - anon_sym_for, - STATE(1993), 1, - sym_type_arguments, - STATE(2006), 1, - sym_parameters, - STATE(2241), 2, + STATE(2272), 2, sym_line_comment, sym_block_comment, - ACTIONS(3425), 4, + ACTIONS(5118), 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, - [70662] = 9, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [71945] = 11, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4568), 1, - anon_sym_LPAREN, - ACTIONS(4574), 1, - anon_sym_LT2, - ACTIONS(5076), 1, - anon_sym_for, - STATE(1993), 1, - sym_type_arguments, - STATE(2006), 1, - sym_parameters, - STATE(2242), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3425), 4, - anon_sym_SEMI, + ACTIONS(3386), 1, + anon_sym_SQUOTE, + ACTIONS(5052), 1, + anon_sym_where, + ACTIONS(5155), 1, anon_sym_LBRACE, + ACTIONS(5157), 1, anon_sym_PLUS, - anon_sym_where, - [70694] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + ACTIONS(5165), 1, + anon_sym_SEMI, + STATE(1133), 1, + sym_block, + STATE(2562), 1, + sym_where_clause, + STATE(3746), 1, + sym_label, + STATE(2273), 2, + sym_line_comment, + sym_block_comment, + [71980] = 11, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3413), 1, - anon_sym_DOT_DOT, - STATE(2243), 2, + ACTIONS(3386), 1, + anon_sym_SQUOTE, + ACTIONS(5052), 1, + anon_sym_where, + ACTIONS(5155), 1, + anon_sym_LBRACE, + ACTIONS(5157), 1, + anon_sym_PLUS, + ACTIONS(5167), 1, + anon_sym_SEMI, + STATE(1144), 1, + sym_block, + STATE(2564), 1, + sym_where_clause, + STATE(3746), 1, + sym_label, + STATE(2274), 2, sym_line_comment, sym_block_comment, - ACTIONS(3415), 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, - [70718] = 11, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [72015] = 11, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3348), 1, + ACTIONS(3386), 1, anon_sym_SQUOTE, - ACTIONS(4989), 1, + ACTIONS(5052), 1, anon_sym_where, - ACTIONS(5078), 1, - anon_sym_SEMI, - ACTIONS(5080), 1, + ACTIONS(5155), 1, anon_sym_LBRACE, - ACTIONS(5082), 1, + ACTIONS(5157), 1, anon_sym_PLUS, - STATE(687), 1, + ACTIONS(5169), 1, + anon_sym_SEMI, + STATE(1158), 1, sym_block, - STATE(2531), 1, + STATE(2565), 1, sym_where_clause, - STATE(3713), 1, + STATE(3746), 1, sym_label, - STATE(2244), 2, + STATE(2275), 2, sym_line_comment, sym_block_comment, - [70753] = 11, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [72050] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3348), 1, + STATE(2276), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5118), 8, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_EQ, + anon_sym_GT, + anon_sym_COMMA, anon_sym_SQUOTE, - ACTIONS(4989), 1, anon_sym_where, - ACTIONS(5080), 1, - anon_sym_LBRACE, - ACTIONS(5084), 1, - anon_sym_SEMI, - ACTIONS(5086), 1, - anon_sym_DASH_GT, - STATE(766), 1, - sym_block, - STATE(2493), 1, - sym_where_clause, - STATE(3713), 1, - sym_label, - STATE(2245), 2, + [72071] = 4, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + STATE(2277), 2, sym_line_comment, sym_block_comment, - [70788] = 11, - ACTIONS(103), 1, + ACTIONS(5118), 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, + [72092] = 4, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + STATE(2278), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5118), 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, + [72113] = 11, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3348), 1, + ACTIONS(3386), 1, anon_sym_SQUOTE, - ACTIONS(4989), 1, + ACTIONS(5052), 1, anon_sym_where, - ACTIONS(5080), 1, + ACTIONS(5145), 1, anon_sym_LBRACE, - ACTIONS(5088), 1, + ACTIONS(5157), 1, + anon_sym_PLUS, + ACTIONS(5171), 1, anon_sym_SEMI, - ACTIONS(5090), 1, - anon_sym_DASH_GT, - STATE(643), 1, + STATE(714), 1, sym_block, - STATE(2465), 1, + STATE(2574), 1, sym_where_clause, - STATE(3713), 1, + STATE(3743), 1, sym_label, - STATE(2246), 2, + STATE(2279), 2, sym_line_comment, sym_block_comment, - [70823] = 11, + [72148] = 11, ACTIONS(69), 1, anon_sym_pub, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3044), 1, + ACTIONS(3070), 1, anon_sym_POUND, - ACTIONS(4871), 1, + ACTIONS(4912), 1, sym_identifier, - ACTIONS(4877), 1, + ACTIONS(4918), 1, sym_crate, - STATE(1074), 1, - aux_sym_enum_variant_list_repeat1, - STATE(1494), 1, + STATE(1377), 1, sym_attribute_item, - STATE(3354), 1, + STATE(2306), 1, + aux_sym_enum_variant_list_repeat1, + STATE(3385), 1, sym_enum_variant, - STATE(3484), 1, + STATE(3701), 1, sym_visibility_modifier, - STATE(2247), 2, + STATE(2280), 2, sym_line_comment, sym_block_comment, - [70858] = 11, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [72183] = 11, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3348), 1, + ACTIONS(3386), 1, anon_sym_SQUOTE, - ACTIONS(4989), 1, + ACTIONS(5052), 1, anon_sym_where, - ACTIONS(5080), 1, + ACTIONS(5145), 1, anon_sym_LBRACE, - ACTIONS(5092), 1, + ACTIONS(5173), 1, anon_sym_SEMI, - ACTIONS(5094), 1, + ACTIONS(5175), 1, anon_sym_DASH_GT, - STATE(731), 1, + STATE(551), 1, sym_block, - STATE(2562), 1, + STATE(2560), 1, sym_where_clause, - STATE(3713), 1, + STATE(3743), 1, sym_label, - STATE(2248), 2, + STATE(2281), 2, sym_line_comment, sym_block_comment, - [70893] = 11, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [72218] = 11, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3348), 1, - anon_sym_SQUOTE, - ACTIONS(4989), 1, - anon_sym_where, - ACTIONS(5080), 1, + ACTIONS(4928), 1, anon_sym_LBRACE, - ACTIONS(5096), 1, - anon_sym_SEMI, - ACTIONS(5098), 1, - anon_sym_DASH_GT, - STATE(547), 1, - sym_block, - STATE(2545), 1, + ACTIONS(5052), 1, + anon_sym_where, + ACTIONS(5149), 1, + anon_sym_COLON, + ACTIONS(5151), 1, + anon_sym_LT, + STATE(643), 1, + sym_declaration_list, + STATE(2454), 1, + sym_type_parameters, + STATE(2739), 1, + sym_trait_bounds, + STATE(3239), 1, sym_where_clause, - STATE(3713), 1, - sym_label, - STATE(2249), 2, + STATE(2282), 2, sym_line_comment, sym_block_comment, - [70928] = 10, - ACTIONS(103), 1, + [72253] = 11, + ACTIONS(69), 1, + anon_sym_pub, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(3070), 1, + anon_sym_POUND, + ACTIONS(4912), 1, + sym_identifier, + ACTIONS(4918), 1, + sym_crate, + STATE(1085), 1, + aux_sym_enum_variant_list_repeat1, + STATE(1377), 1, + sym_attribute_item, + STATE(2993), 1, + sym_enum_variant, + STATE(3701), 1, + sym_visibility_modifier, + STATE(2283), 2, + sym_line_comment, + sym_block_comment, + [72288] = 10, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5100), 1, + ACTIONS(5177), 1, sym_identifier, - ACTIONS(5102), 1, + ACTIONS(5179), 1, anon_sym_RBRACE, - ACTIONS(5104), 1, + ACTIONS(5181), 1, anon_sym_DOT_DOT, - ACTIONS(5106), 1, + ACTIONS(5183), 1, anon_sym_COMMA, - ACTIONS(5108), 1, + ACTIONS(5185), 1, anon_sym_ref, - ACTIONS(5110), 1, + ACTIONS(5187), 1, sym_mutable_specifier, - STATE(2250), 2, + STATE(2284), 2, sym_line_comment, sym_block_comment, - STATE(2838), 2, + STATE(2864), 2, sym_field_pattern, sym_remaining_field_pattern, - [70961] = 11, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [72321] = 11, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3348), 1, + ACTIONS(3386), 1, anon_sym_SQUOTE, - ACTIONS(4989), 1, + ACTIONS(5052), 1, anon_sym_where, - ACTIONS(5080), 1, + ACTIONS(5145), 1, anon_sym_LBRACE, - ACTIONS(5082), 1, + ACTIONS(5157), 1, anon_sym_PLUS, - ACTIONS(5112), 1, + ACTIONS(5189), 1, anon_sym_SEMI, - STATE(578), 1, + STATE(670), 1, sym_block, - STATE(2523), 1, + STATE(2554), 1, sym_where_clause, - STATE(3713), 1, + STATE(3743), 1, sym_label, - STATE(2251), 2, + STATE(2285), 2, sym_line_comment, sym_block_comment, - [70996] = 8, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [72356] = 10, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(5114), 1, - anon_sym_fn, - ACTIONS(5116), 1, - anon_sym_extern, - STATE(2278), 1, - aux_sym_function_modifiers_repeat1, - STATE(2447), 1, - sym_extern_modifier, - STATE(2252), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4608), 4, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_unsafe, - [71025] = 10, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5100), 1, + ACTIONS(5177), 1, sym_identifier, - ACTIONS(5104), 1, + ACTIONS(5181), 1, anon_sym_DOT_DOT, - ACTIONS(5108), 1, + ACTIONS(5185), 1, anon_sym_ref, - ACTIONS(5110), 1, + ACTIONS(5187), 1, sym_mutable_specifier, - ACTIONS(5118), 1, + ACTIONS(5191), 1, anon_sym_RBRACE, - ACTIONS(5120), 1, + ACTIONS(5193), 1, anon_sym_COMMA, - STATE(2253), 2, + STATE(2286), 2, sym_line_comment, sym_block_comment, - STATE(2864), 2, + STATE(2865), 2, sym_field_pattern, sym_remaining_field_pattern, - [71058] = 11, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [72389] = 11, + ACTIONS(69), 1, + anon_sym_pub, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3348), 1, - anon_sym_SQUOTE, - ACTIONS(4989), 1, - anon_sym_where, - ACTIONS(5082), 1, - anon_sym_PLUS, - ACTIONS(5122), 1, - anon_sym_SEMI, - ACTIONS(5124), 1, - anon_sym_LBRACE, - STATE(1235), 1, - sym_block, - STATE(2467), 1, - sym_where_clause, - STATE(3716), 1, - sym_label, - STATE(2254), 2, - sym_line_comment, - sym_block_comment, - [71093] = 11, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3348), 1, - anon_sym_SQUOTE, - ACTIONS(4989), 1, - anon_sym_where, - ACTIONS(5080), 1, - anon_sym_LBRACE, - ACTIONS(5082), 1, - anon_sym_PLUS, - ACTIONS(5126), 1, - anon_sym_SEMI, - STATE(590), 1, - sym_block, - STATE(2548), 1, - sym_where_clause, - STATE(3713), 1, - sym_label, - STATE(2255), 2, + ACTIONS(3070), 1, + anon_sym_POUND, + ACTIONS(4918), 1, + sym_crate, + ACTIONS(4920), 1, + sym_identifier, + STATE(1377), 1, + sym_attribute_item, + STATE(2313), 1, + aux_sym_enum_variant_list_repeat1, + STATE(3261), 1, + sym_field_declaration, + STATE(3571), 1, + sym_visibility_modifier, + STATE(2287), 2, sym_line_comment, sym_block_comment, - [71128] = 11, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [72424] = 11, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4971), 1, - anon_sym_LBRACE, - ACTIONS(4989), 1, - anon_sym_where, - ACTIONS(5128), 1, - anon_sym_COLON, - ACTIONS(5130), 1, - anon_sym_LT, - STATE(1163), 1, - sym_declaration_list, - STATE(2385), 1, - sym_type_parameters, - STATE(2757), 1, - sym_trait_bounds, - STATE(3301), 1, - sym_where_clause, - STATE(2256), 2, - sym_line_comment, - sym_block_comment, - [71163] = 11, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3348), 1, + ACTIONS(3386), 1, anon_sym_SQUOTE, - ACTIONS(4989), 1, + ACTIONS(5052), 1, anon_sym_where, - ACTIONS(5124), 1, + ACTIONS(5145), 1, anon_sym_LBRACE, - ACTIONS(5132), 1, + ACTIONS(5195), 1, anon_sym_SEMI, - ACTIONS(5134), 1, + ACTIONS(5197), 1, anon_sym_DASH_GT, - STATE(1265), 1, + STATE(565), 1, sym_block, - STATE(2471), 1, + STATE(2546), 1, sym_where_clause, - STATE(3716), 1, + STATE(3743), 1, sym_label, - STATE(2257), 2, + STATE(2288), 2, sym_line_comment, sym_block_comment, - [71198] = 11, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [72459] = 5, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3348), 1, - anon_sym_SQUOTE, - ACTIONS(4989), 1, - anon_sym_where, - ACTIONS(5080), 1, - anon_sym_LBRACE, - ACTIONS(5082), 1, - anon_sym_PLUS, - ACTIONS(5136), 1, - anon_sym_SEMI, - STATE(601), 1, - sym_block, - STATE(2476), 1, - sym_where_clause, - STATE(3713), 1, - sym_label, - STATE(2258), 2, - sym_line_comment, - sym_block_comment, - [71233] = 4, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(2259), 2, + ACTIONS(5199), 1, + sym_identifier, + STATE(2289), 2, sym_line_comment, sym_block_comment, - ACTIONS(5138), 8, - anon_sym_SEMI, - anon_sym_LBRACE, + ACTIONS(4810), 7, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [71254] = 11, - ACTIONS(69), 1, - anon_sym_pub, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + anon_sym_safe, + [72482] = 11, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3044), 1, - anon_sym_POUND, - ACTIONS(4877), 1, - sym_crate, - ACTIONS(4897), 1, - sym_identifier, - STATE(1074), 1, - aux_sym_enum_variant_list_repeat1, - STATE(1494), 1, - sym_attribute_item, - STATE(3397), 1, - sym_field_declaration, - STATE(3658), 1, - sym_visibility_modifier, - STATE(2260), 2, + ACTIONS(4928), 1, + anon_sym_LBRACE, + ACTIONS(5052), 1, + anon_sym_where, + ACTIONS(5149), 1, + anon_sym_COLON, + ACTIONS(5151), 1, + anon_sym_LT, + STATE(773), 1, + sym_declaration_list, + STATE(2393), 1, + sym_type_parameters, + STATE(2607), 1, + sym_trait_bounds, + STATE(3263), 1, + sym_where_clause, + STATE(2290), 2, sym_line_comment, sym_block_comment, - [71289] = 11, - ACTIONS(69), 1, - anon_sym_pub, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [72517] = 11, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3044), 1, - anon_sym_POUND, - ACTIONS(4877), 1, - sym_crate, - ACTIONS(4897), 1, - sym_identifier, - STATE(1074), 1, - aux_sym_enum_variant_list_repeat1, - STATE(1494), 1, - sym_attribute_item, - STATE(2874), 1, - sym_field_declaration, - STATE(3658), 1, - sym_visibility_modifier, - STATE(2261), 2, + ACTIONS(5052), 1, + anon_sym_where, + ACTIONS(5149), 1, + anon_sym_COLON, + ACTIONS(5151), 1, + anon_sym_LT, + ACTIONS(5201), 1, + anon_sym_SEMI, + ACTIONS(5203), 1, + anon_sym_EQ, + STATE(2408), 1, + sym_type_parameters, + STATE(2995), 1, + sym_trait_bounds, + STATE(3169), 1, + sym_where_clause, + STATE(2291), 2, sym_line_comment, sym_block_comment, - [71324] = 11, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [72552] = 11, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3348), 1, + ACTIONS(3386), 1, anon_sym_SQUOTE, - ACTIONS(4989), 1, + ACTIONS(5052), 1, anon_sym_where, - ACTIONS(5124), 1, + ACTIONS(5145), 1, anon_sym_LBRACE, - ACTIONS(5140), 1, + ACTIONS(5205), 1, anon_sym_SEMI, - ACTIONS(5142), 1, + ACTIONS(5207), 1, anon_sym_DASH_GT, - STATE(1279), 1, + STATE(707), 1, sym_block, - STATE(2472), 1, + STATE(2514), 1, sym_where_clause, - STATE(3716), 1, + STATE(3743), 1, sym_label, - STATE(2262), 2, + STATE(2292), 2, sym_line_comment, sym_block_comment, - [71359] = 11, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [72587] = 11, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3348), 1, + ACTIONS(3386), 1, anon_sym_SQUOTE, - ACTIONS(4989), 1, + ACTIONS(5052), 1, anon_sym_where, - ACTIONS(5080), 1, + ACTIONS(5155), 1, anon_sym_LBRACE, - ACTIONS(5082), 1, - anon_sym_PLUS, - ACTIONS(5144), 1, + ACTIONS(5209), 1, anon_sym_SEMI, - STATE(537), 1, + ACTIONS(5211), 1, + anon_sym_DASH_GT, + STATE(1227), 1, sym_block, - STATE(2564), 1, + STATE(2557), 1, sym_where_clause, - STATE(3713), 1, + STATE(3746), 1, sym_label, - STATE(2263), 2, - sym_line_comment, - sym_block_comment, - [71394] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(2264), 2, + STATE(2293), 2, sym_line_comment, sym_block_comment, - ACTIONS(5061), 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, - [71415] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [72622] = 10, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(2265), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(5061), 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, - [71436] = 10, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5100), 1, + ACTIONS(5177), 1, sym_identifier, - ACTIONS(5104), 1, + ACTIONS(5181), 1, anon_sym_DOT_DOT, - ACTIONS(5108), 1, + ACTIONS(5185), 1, anon_sym_ref, - ACTIONS(5110), 1, + ACTIONS(5187), 1, sym_mutable_specifier, - ACTIONS(5146), 1, + ACTIONS(5213), 1, anon_sym_RBRACE, - ACTIONS(5148), 1, + ACTIONS(5215), 1, anon_sym_COMMA, - STATE(2266), 2, + STATE(2294), 2, sym_line_comment, sym_block_comment, - STATE(2958), 2, + STATE(3074), 2, sym_field_pattern, sym_remaining_field_pattern, - [71469] = 11, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [72655] = 11, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4989), 1, - anon_sym_where, - ACTIONS(5128), 1, - anon_sym_COLON, - ACTIONS(5130), 1, - anon_sym_LT, - ACTIONS(5150), 1, - anon_sym_SEMI, - ACTIONS(5152), 1, - anon_sym_EQ, - STATE(2359), 1, - sym_type_parameters, - STATE(3049), 1, - sym_trait_bounds, - STATE(3265), 1, - sym_where_clause, - STATE(2267), 2, - sym_line_comment, - sym_block_comment, - [71504] = 11, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4989), 1, + ACTIONS(4984), 1, + anon_sym_LBRACE, + ACTIONS(5052), 1, anon_sym_where, - ACTIONS(5128), 1, + ACTIONS(5149), 1, anon_sym_COLON, - ACTIONS(5130), 1, + ACTIONS(5151), 1, anon_sym_LT, - ACTIONS(5154), 1, - anon_sym_SEMI, - ACTIONS(5156), 1, - anon_sym_EQ, - STATE(2420), 1, + STATE(1249), 1, + sym_declaration_list, + STATE(2400), 1, sym_type_parameters, - STATE(2991), 1, + STATE(2609), 1, sym_trait_bounds, - STATE(3293), 1, + STATE(3336), 1, sym_where_clause, - STATE(2268), 2, + STATE(2295), 2, sym_line_comment, sym_block_comment, - [71539] = 11, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [72690] = 11, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3348), 1, + ACTIONS(3386), 1, anon_sym_SQUOTE, - ACTIONS(4989), 1, + ACTIONS(5052), 1, anon_sym_where, - ACTIONS(5082), 1, - anon_sym_PLUS, - ACTIONS(5124), 1, + ACTIONS(5145), 1, anon_sym_LBRACE, - ACTIONS(5158), 1, + ACTIONS(5157), 1, + anon_sym_PLUS, + ACTIONS(5217), 1, anon_sym_SEMI, - STATE(1287), 1, + STATE(745), 1, sym_block, - STATE(2475), 1, + STATE(2496), 1, sym_where_clause, - STATE(3716), 1, + STATE(3743), 1, sym_label, - STATE(2269), 2, - sym_line_comment, - sym_block_comment, - [71574] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(2270), 2, + STATE(2296), 2, sym_line_comment, sym_block_comment, - ACTIONS(5061), 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, - [71595] = 11, - ACTIONS(69), 1, - anon_sym_pub, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [72725] = 11, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3044), 1, - anon_sym_POUND, - ACTIONS(4871), 1, - sym_identifier, - ACTIONS(4877), 1, - sym_crate, - STATE(1074), 1, - aux_sym_enum_variant_list_repeat1, - STATE(1494), 1, - sym_attribute_item, - STATE(3100), 1, - sym_enum_variant, - STATE(3484), 1, - sym_visibility_modifier, - STATE(2271), 2, - sym_line_comment, - sym_block_comment, - [71630] = 11, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3348), 1, + ACTIONS(3386), 1, anon_sym_SQUOTE, - ACTIONS(4989), 1, + ACTIONS(5052), 1, anon_sym_where, - ACTIONS(5124), 1, + ACTIONS(5145), 1, anon_sym_LBRACE, - ACTIONS(5160), 1, + ACTIONS(5219), 1, anon_sym_SEMI, - ACTIONS(5162), 1, + ACTIONS(5221), 1, anon_sym_DASH_GT, - STATE(1184), 1, + STATE(666), 1, sym_block, - STATE(2556), 1, + STATE(2570), 1, sym_where_clause, - STATE(3716), 1, + STATE(3743), 1, sym_label, - STATE(2272), 2, + STATE(2297), 2, sym_line_comment, sym_block_comment, - [71665] = 10, - ACTIONS(103), 1, + [72760] = 5, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(5054), 1, + anon_sym_static, + STATE(2298), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3525), 7, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + anon_sym_safe, + [72783] = 10, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4570), 1, + ACTIONS(4600), 1, anon_sym_BANG, - ACTIONS(4576), 1, + ACTIONS(4608), 1, anon_sym_PIPE, - ACTIONS(4578), 1, + ACTIONS(4610), 1, anon_sym_LPAREN, - ACTIONS(4582), 1, + ACTIONS(4614), 1, anon_sym_COLON, - ACTIONS(4586), 1, + ACTIONS(4618), 1, anon_sym_DOT_DOT, - ACTIONS(5164), 1, + ACTIONS(5223), 1, anon_sym_COLON_COLON, - ACTIONS(4588), 2, + ACTIONS(4620), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(2273), 2, + STATE(2299), 2, sym_line_comment, sym_block_comment, - [71698] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [72816] = 11, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4646), 1, - anon_sym_trait, - ACTIONS(5166), 1, - anon_sym_impl, - STATE(2274), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3530), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [71723] = 11, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4989), 1, + ACTIONS(3386), 1, + anon_sym_SQUOTE, + ACTIONS(5052), 1, anon_sym_where, - ACTIONS(4993), 1, + ACTIONS(5155), 1, anon_sym_LBRACE, - ACTIONS(5128), 1, - anon_sym_COLON, - ACTIONS(5130), 1, - anon_sym_LT, - STATE(676), 1, - sym_declaration_list, - STATE(2444), 1, - sym_type_parameters, - STATE(2623), 1, - sym_trait_bounds, - STATE(3257), 1, + ACTIONS(5225), 1, + anon_sym_SEMI, + ACTIONS(5227), 1, + anon_sym_DASH_GT, + STATE(1294), 1, + sym_block, + STATE(2553), 1, sym_where_clause, - STATE(2275), 2, + STATE(3746), 1, + sym_label, + STATE(2300), 2, sym_line_comment, sym_block_comment, - [71758] = 10, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [72851] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5100), 1, - sym_identifier, - ACTIONS(5104), 1, - anon_sym_DOT_DOT, - ACTIONS(5108), 1, - anon_sym_ref, - ACTIONS(5110), 1, - sym_mutable_specifier, - ACTIONS(5168), 1, - anon_sym_RBRACE, - ACTIONS(5170), 1, - anon_sym_COMMA, - STATE(2276), 2, + ACTIONS(4656), 1, + anon_sym_static, + STATE(2301), 2, sym_line_comment, sym_block_comment, - STATE(2837), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [71791] = 11, + ACTIONS(3525), 7, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + anon_sym_safe, + [72874] = 11, ACTIONS(69), 1, anon_sym_pub, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3044), 1, + ACTIONS(3070), 1, anon_sym_POUND, - ACTIONS(4871), 1, + ACTIONS(4912), 1, sym_identifier, - ACTIONS(4877), 1, + ACTIONS(4918), 1, sym_crate, - STATE(1494), 1, - sym_attribute_item, - STATE(2247), 1, + STATE(1085), 1, aux_sym_enum_variant_list_repeat1, - STATE(3240), 1, + STATE(1377), 1, + sym_attribute_item, + STATE(2918), 1, sym_enum_variant, - STATE(3484), 1, + STATE(3701), 1, sym_visibility_modifier, - STATE(2277), 2, + STATE(2302), 2, sym_line_comment, sym_block_comment, - [71826] = 7, - ACTIONS(103), 1, + [72909] = 11, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(3386), 1, + anon_sym_SQUOTE, + ACTIONS(5052), 1, + anon_sym_where, + ACTIONS(5155), 1, + anon_sym_LBRACE, + ACTIONS(5229), 1, + anon_sym_SEMI, + ACTIONS(5231), 1, + anon_sym_DASH_GT, + STATE(1353), 1, + sym_block, + STATE(2483), 1, + sym_where_clause, + STATE(3746), 1, + sym_label, + STATE(2303), 2, + sym_line_comment, + sym_block_comment, + [72944] = 11, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5175), 1, - anon_sym_fn, - ACTIONS(5177), 1, - anon_sym_extern, - STATE(2447), 1, - sym_extern_modifier, - STATE(2278), 3, + ACTIONS(4984), 1, + anon_sym_LBRACE, + ACTIONS(5052), 1, + anon_sym_where, + ACTIONS(5149), 1, + anon_sym_COLON, + ACTIONS(5151), 1, + anon_sym_LT, + STATE(1114), 1, + sym_declaration_list, + STATE(2409), 1, + sym_type_parameters, + STATE(2597), 1, + sym_trait_bounds, + STATE(3260), 1, + sym_where_clause, + STATE(2304), 2, sym_line_comment, sym_block_comment, - aux_sym_function_modifiers_repeat1, - ACTIONS(5172), 4, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_unsafe, - [71853] = 11, + [72979] = 11, ACTIONS(69), 1, anon_sym_pub, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3044), 1, + ACTIONS(3070), 1, anon_sym_POUND, - ACTIONS(4871), 1, - sym_identifier, - ACTIONS(4877), 1, + ACTIONS(4918), 1, sym_crate, - STATE(1074), 1, + ACTIONS(4920), 1, + sym_identifier, + STATE(1085), 1, aux_sym_enum_variant_list_repeat1, - STATE(1494), 1, + STATE(1377), 1, sym_attribute_item, - STATE(2895), 1, - sym_enum_variant, - STATE(3484), 1, + STATE(2930), 1, + sym_field_declaration, + STATE(3571), 1, sym_visibility_modifier, - STATE(2279), 2, + STATE(2305), 2, sym_line_comment, sym_block_comment, - [71888] = 11, + [73014] = 11, ACTIONS(69), 1, anon_sym_pub, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3044), 1, + ACTIONS(3070), 1, anon_sym_POUND, - ACTIONS(4877), 1, - sym_crate, - ACTIONS(4897), 1, + ACTIONS(4912), 1, sym_identifier, - STATE(1074), 1, + ACTIONS(4918), 1, + sym_crate, + STATE(1085), 1, aux_sym_enum_variant_list_repeat1, - STATE(1494), 1, + STATE(1377), 1, sym_attribute_item, - STATE(2910), 1, - sym_field_declaration, - STATE(3658), 1, + STATE(3288), 1, + sym_enum_variant, + STATE(3701), 1, sym_visibility_modifier, - STATE(2280), 2, + STATE(2306), 2, sym_line_comment, sym_block_comment, - [71923] = 11, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [73049] = 11, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4989), 1, - anon_sym_where, - ACTIONS(4993), 1, + ACTIONS(4928), 1, anon_sym_LBRACE, - ACTIONS(5128), 1, + ACTIONS(5052), 1, + anon_sym_where, + ACTIONS(5149), 1, anon_sym_COLON, - ACTIONS(5130), 1, + ACTIONS(5151), 1, anon_sym_LT, - STATE(666), 1, + STATE(559), 1, sym_declaration_list, - STATE(2367), 1, + STATE(2435), 1, sym_type_parameters, - STATE(2710), 1, + STATE(2595), 1, sym_trait_bounds, - STATE(3154), 1, + STATE(3215), 1, sym_where_clause, - STATE(2281), 2, + STATE(2307), 2, sym_line_comment, sym_block_comment, - [71958] = 11, - ACTIONS(69), 1, - anon_sym_pub, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [73084] = 11, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3044), 1, - anon_sym_POUND, - ACTIONS(4877), 1, - sym_crate, - ACTIONS(4897), 1, - sym_identifier, - STATE(1494), 1, - sym_attribute_item, - STATE(2260), 1, - aux_sym_enum_variant_list_repeat1, - STATE(3172), 1, - sym_field_declaration, - STATE(3658), 1, - sym_visibility_modifier, - STATE(2282), 2, - sym_line_comment, - sym_block_comment, - [71993] = 11, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3348), 1, + ACTIONS(3386), 1, anon_sym_SQUOTE, - ACTIONS(4989), 1, + ACTIONS(5052), 1, anon_sym_where, - ACTIONS(5082), 1, - anon_sym_PLUS, - ACTIONS(5124), 1, + ACTIONS(5145), 1, anon_sym_LBRACE, - ACTIONS(5180), 1, + ACTIONS(5157), 1, + anon_sym_PLUS, + ACTIONS(5233), 1, anon_sym_SEMI, - STATE(1322), 1, + STATE(571), 1, sym_block, - STATE(2477), 1, + STATE(2499), 1, sym_where_clause, - STATE(3716), 1, + STATE(3743), 1, sym_label, - STATE(2283), 2, + STATE(2308), 2, sym_line_comment, sym_block_comment, - [72028] = 11, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [73119] = 10, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3348), 1, - anon_sym_SQUOTE, - ACTIONS(4989), 1, - anon_sym_where, - ACTIONS(5124), 1, - anon_sym_LBRACE, - ACTIONS(5182), 1, - anon_sym_SEMI, - ACTIONS(5184), 1, - anon_sym_DASH_GT, - STATE(1332), 1, - sym_block, - STATE(2478), 1, - sym_where_clause, - STATE(3716), 1, - sym_label, - STATE(2284), 2, + ACTIONS(5177), 1, + sym_identifier, + ACTIONS(5181), 1, + anon_sym_DOT_DOT, + ACTIONS(5185), 1, + anon_sym_ref, + ACTIONS(5187), 1, + sym_mutable_specifier, + ACTIONS(5235), 1, + anon_sym_RBRACE, + ACTIONS(5237), 1, + anon_sym_COMMA, + STATE(2309), 2, sym_line_comment, sym_block_comment, - [72063] = 11, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + STATE(2881), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [73152] = 11, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3348), 1, + ACTIONS(3386), 1, anon_sym_SQUOTE, - ACTIONS(4989), 1, + ACTIONS(5052), 1, anon_sym_where, - ACTIONS(5080), 1, + ACTIONS(5145), 1, anon_sym_LBRACE, - ACTIONS(5186), 1, + ACTIONS(5157), 1, + anon_sym_PLUS, + ACTIONS(5239), 1, anon_sym_SEMI, - ACTIONS(5188), 1, - anon_sym_DASH_GT, - STATE(742), 1, + STATE(761), 1, sym_block, - STATE(2560), 1, + STATE(2492), 1, sym_where_clause, - STATE(3713), 1, + STATE(3743), 1, sym_label, - STATE(2285), 2, + STATE(2310), 2, sym_line_comment, sym_block_comment, - [72098] = 11, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [73187] = 5, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4989), 1, - anon_sym_where, - ACTIONS(4993), 1, - anon_sym_LBRACE, - ACTIONS(5128), 1, - anon_sym_COLON, - ACTIONS(5130), 1, - anon_sym_LT, - STATE(652), 1, - sym_declaration_list, - STATE(2406), 1, - sym_type_parameters, - STATE(2811), 1, - sym_trait_bounds, - STATE(3188), 1, - sym_where_clause, - STATE(2286), 2, - sym_line_comment, - sym_block_comment, - [72133] = 11, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4971), 1, - anon_sym_LBRACE, - ACTIONS(4989), 1, - anon_sym_where, - ACTIONS(5128), 1, - anon_sym_COLON, - ACTIONS(5130), 1, - anon_sym_LT, - STATE(1125), 1, - sym_declaration_list, - STATE(2417), 1, - sym_type_parameters, - STATE(2677), 1, - sym_trait_bounds, - STATE(3419), 1, - sym_where_clause, - STATE(2287), 2, + ACTIONS(5129), 1, + anon_sym_static, + STATE(2311), 2, sym_line_comment, sym_block_comment, - [72168] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + ACTIONS(3525), 7, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + anon_sym_safe, + [73210] = 11, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(2288), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(5061), 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, - [72189] = 11, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3348), 1, + ACTIONS(3386), 1, anon_sym_SQUOTE, - ACTIONS(4989), 1, + ACTIONS(5052), 1, anon_sym_where, - ACTIONS(5124), 1, + ACTIONS(5145), 1, anon_sym_LBRACE, - ACTIONS(5190), 1, + ACTIONS(5241), 1, anon_sym_SEMI, - ACTIONS(5192), 1, + ACTIONS(5243), 1, anon_sym_DASH_GT, - STATE(1216), 1, + STATE(602), 1, sym_block, - STATE(2461), 1, + STATE(2507), 1, sym_where_clause, - STATE(3716), 1, + STATE(3743), 1, sym_label, - STATE(2289), 2, + STATE(2312), 2, sym_line_comment, sym_block_comment, - [72224] = 11, - ACTIONS(103), 1, + [73245] = 11, + ACTIONS(69), 1, + anon_sym_pub, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(3070), 1, + anon_sym_POUND, + ACTIONS(4918), 1, + sym_crate, + ACTIONS(4920), 1, + sym_identifier, + STATE(1085), 1, + aux_sym_enum_variant_list_repeat1, + STATE(1377), 1, + sym_attribute_item, + STATE(3427), 1, + sym_field_declaration, + STATE(3571), 1, + sym_visibility_modifier, + STATE(2313), 2, + sym_line_comment, + sym_block_comment, + [73280] = 11, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3348), 1, + ACTIONS(3386), 1, anon_sym_SQUOTE, - ACTIONS(4989), 1, + ACTIONS(5052), 1, anon_sym_where, - ACTIONS(5080), 1, + ACTIONS(5155), 1, anon_sym_LBRACE, - ACTIONS(5194), 1, + ACTIONS(5157), 1, + anon_sym_PLUS, + ACTIONS(5245), 1, anon_sym_SEMI, - ACTIONS(5196), 1, - anon_sym_DASH_GT, - STATE(519), 1, + STATE(1177), 1, sym_block, - STATE(2546), 1, + STATE(2511), 1, sym_where_clause, - STATE(3713), 1, + STATE(3746), 1, sym_label, - STATE(2290), 2, + STATE(2314), 2, sym_line_comment, sym_block_comment, - [72259] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [73315] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(2291), 2, + STATE(2315), 2, sym_line_comment, sym_block_comment, - ACTIONS(5061), 8, + ACTIONS(5118), 8, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, @@ -173895,26214 +176196,26386 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_SQUOTE, anon_sym_where, - [72280] = 11, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [73336] = 11, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4971), 1, - anon_sym_LBRACE, - ACTIONS(4989), 1, + ACTIONS(3386), 1, + anon_sym_SQUOTE, + ACTIONS(5052), 1, anon_sym_where, - ACTIONS(5128), 1, - anon_sym_COLON, - ACTIONS(5130), 1, - anon_sym_LT, - STATE(1225), 1, - sym_declaration_list, - STATE(2448), 1, - sym_type_parameters, - STATE(2747), 1, - sym_trait_bounds, - STATE(3238), 1, + ACTIONS(5145), 1, + anon_sym_LBRACE, + ACTIONS(5157), 1, + anon_sym_PLUS, + ACTIONS(5247), 1, + anon_sym_SEMI, + STATE(630), 1, + sym_block, + STATE(2486), 1, sym_where_clause, - STATE(2292), 2, + STATE(3743), 1, + sym_label, + STATE(2316), 2, sym_line_comment, sym_block_comment, - [72315] = 11, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [73371] = 11, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3348), 1, + ACTIONS(3386), 1, anon_sym_SQUOTE, - ACTIONS(4989), 1, + ACTIONS(5052), 1, anon_sym_where, - ACTIONS(5082), 1, - anon_sym_PLUS, - ACTIONS(5124), 1, + ACTIONS(5155), 1, anon_sym_LBRACE, - ACTIONS(5198), 1, + ACTIONS(5249), 1, anon_sym_SEMI, - STATE(1362), 1, + ACTIONS(5251), 1, + anon_sym_DASH_GT, + STATE(1261), 1, sym_block, - STATE(2479), 1, + STATE(2538), 1, sym_where_clause, - STATE(3716), 1, + STATE(3746), 1, sym_label, - STATE(2293), 2, + STATE(2317), 2, sym_line_comment, sym_block_comment, - [72350] = 11, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [73406] = 11, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3348), 1, + ACTIONS(3386), 1, anon_sym_SQUOTE, - ACTIONS(4989), 1, + ACTIONS(5052), 1, anon_sym_where, - ACTIONS(5082), 1, - anon_sym_PLUS, - ACTIONS(5124), 1, + ACTIONS(5155), 1, anon_sym_LBRACE, - ACTIONS(5200), 1, + ACTIONS(5253), 1, anon_sym_SEMI, - STATE(1374), 1, + ACTIONS(5255), 1, + anon_sym_DASH_GT, + STATE(1281), 1, sym_block, - STATE(2480), 1, + STATE(2541), 1, sym_where_clause, - STATE(3716), 1, + STATE(3746), 1, sym_label, - STATE(2294), 2, + STATE(2318), 2, sym_line_comment, sym_block_comment, - [72385] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [73441] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(1289), 1, - aux_sym_string_literal_token1, - STATE(2259), 1, - sym_string_literal, - STATE(2295), 2, + ACTIONS(4634), 1, + anon_sym_static, + STATE(2319), 2, sym_line_comment, sym_block_comment, - ACTIONS(4773), 6, + ACTIONS(3525), 7, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [72410] = 11, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + anon_sym_safe, + [73464] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3348), 1, - anon_sym_SQUOTE, - ACTIONS(4989), 1, - anon_sym_where, - ACTIONS(5124), 1, - anon_sym_LBRACE, - ACTIONS(5202), 1, - anon_sym_SEMI, - ACTIONS(5204), 1, - anon_sym_DASH_GT, - STATE(1143), 1, - sym_block, - STATE(2532), 1, - sym_where_clause, - STATE(3716), 1, - sym_label, - STATE(2296), 2, + ACTIONS(5257), 1, + sym_identifier, + STATE(2320), 2, sym_line_comment, sym_block_comment, - [72445] = 11, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + ACTIONS(4810), 7, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + anon_sym_safe, + [73487] = 11, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3348), 1, + ACTIONS(3386), 1, anon_sym_SQUOTE, - ACTIONS(4989), 1, + ACTIONS(5052), 1, anon_sym_where, - ACTIONS(5082), 1, - anon_sym_PLUS, - ACTIONS(5124), 1, + ACTIONS(5155), 1, anon_sym_LBRACE, - ACTIONS(5206), 1, + ACTIONS(5157), 1, + anon_sym_PLUS, + ACTIONS(5259), 1, anon_sym_SEMI, - STATE(1385), 1, + STATE(1289), 1, sym_block, - STATE(2481), 1, + STATE(2547), 1, sym_where_clause, - STATE(3716), 1, + STATE(3746), 1, sym_label, - STATE(2297), 2, + STATE(2321), 2, sym_line_comment, sym_block_comment, - [72480] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [73522] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4791), 1, - anon_sym_COLON_COLON, - ACTIONS(4961), 1, - anon_sym_BANG, - STATE(2298), 2, + ACTIONS(5261), 1, + sym_identifier, + STATE(2322), 2, sym_line_comment, sym_block_comment, - ACTIONS(3530), 6, + ACTIONS(4810), 7, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [72505] = 11, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + anon_sym_safe, + [73545] = 11, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3348), 1, + ACTIONS(3386), 1, anon_sym_SQUOTE, - ACTIONS(4989), 1, + ACTIONS(5052), 1, anon_sym_where, - ACTIONS(5080), 1, + ACTIONS(5155), 1, anon_sym_LBRACE, - ACTIONS(5082), 1, - anon_sym_PLUS, - ACTIONS(5208), 1, + ACTIONS(5263), 1, anon_sym_SEMI, - STATE(499), 1, + ACTIONS(5265), 1, + anon_sym_DASH_GT, + STATE(1097), 1, sym_block, - STATE(2536), 1, + STATE(2559), 1, sym_where_clause, - STATE(3713), 1, + STATE(3746), 1, sym_label, - STATE(2299), 2, + STATE(2323), 2, sym_line_comment, sym_block_comment, - [72540] = 7, - ACTIONS(103), 1, + [73580] = 10, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(5267), 1, + anon_sym_LPAREN, + ACTIONS(5269), 1, + anon_sym_LBRACK, + ACTIONS(5271), 1, + anon_sym_LBRACE, + ACTIONS(5273), 1, + anon_sym_RBRACE, + STATE(2237), 1, + aux_sym_macro_definition_repeat1, + STATE(3161), 1, + sym_macro_rule, + STATE(3547), 1, + sym_token_tree_pattern, + STATE(2324), 2, + sym_line_comment, + sym_block_comment, + [73612] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4586), 1, + ACTIONS(4966), 1, anon_sym_DOT_DOT, - ACTIONS(5210), 1, + ACTIONS(4970), 1, anon_sym_COLON_COLON, - ACTIONS(4588), 2, + ACTIONS(4968), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(2300), 2, + STATE(2325), 2, sym_line_comment, sym_block_comment, - ACTIONS(3425), 3, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_COMMA, - [72566] = 10, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + ACTIONS(4689), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [73638] = 10, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4983), 1, + ACTIONS(5267), 1, anon_sym_LPAREN, - ACTIONS(4989), 1, - anon_sym_where, - ACTIONS(5043), 1, + ACTIONS(5269), 1, + anon_sym_LBRACK, + ACTIONS(5271), 1, anon_sym_LBRACE, - ACTIONS(5212), 1, - anon_sym_SEMI, - STATE(649), 1, - sym_field_declaration_list, - STATE(2961), 1, - sym_ordered_field_declaration_list, - STATE(3137), 1, - sym_where_clause, - STATE(2301), 2, + ACTIONS(5275), 1, + anon_sym_RBRACE, + STATE(2342), 1, + aux_sym_macro_definition_repeat1, + STATE(3394), 1, + sym_macro_rule, + STATE(3547), 1, + sym_token_tree_pattern, + STATE(2326), 2, sym_line_comment, sym_block_comment, - [72598] = 9, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [73670] = 10, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5100), 1, - sym_identifier, - ACTIONS(5104), 1, - anon_sym_DOT_DOT, - ACTIONS(5108), 1, - anon_sym_ref, - ACTIONS(5110), 1, - sym_mutable_specifier, - ACTIONS(5214), 1, - anon_sym_RBRACE, - STATE(2302), 2, + ACTIONS(4838), 1, + anon_sym_COLON_COLON, + ACTIONS(5277), 1, + anon_sym_LPAREN, + ACTIONS(5279), 1, + anon_sym_LBRACK, + ACTIONS(5281), 1, + anon_sym_RBRACK, + ACTIONS(5283), 1, + anon_sym_LBRACE, + ACTIONS(5285), 1, + anon_sym_EQ, + STATE(3594), 1, + sym_delim_token_tree, + STATE(2327), 2, sym_line_comment, sym_block_comment, - STATE(3262), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [72628] = 10, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [73702] = 10, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5216), 1, + ACTIONS(4844), 1, + anon_sym_COLON_COLON, + ACTIONS(5277), 1, anon_sym_LPAREN, - ACTIONS(5218), 1, - anon_sym_RPAREN, - ACTIONS(5220), 1, + ACTIONS(5279), 1, anon_sym_LBRACK, - ACTIONS(5222), 1, + ACTIONS(5283), 1, anon_sym_LBRACE, - STATE(2221), 1, - aux_sym_macro_definition_repeat1, - STATE(3195), 1, - sym_macro_rule, - STATE(3451), 1, - sym_token_tree_pattern, - STATE(2303), 2, + ACTIONS(5287), 1, + anon_sym_RBRACK, + ACTIONS(5289), 1, + anon_sym_EQ, + STATE(3602), 1, + sym_delim_token_tree, + STATE(2328), 2, sym_line_comment, sym_block_comment, - [72660] = 10, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [73734] = 10, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5216), 1, + ACTIONS(4722), 1, + anon_sym_COLON_COLON, + ACTIONS(5277), 1, anon_sym_LPAREN, - ACTIONS(5218), 1, - anon_sym_RBRACK, - ACTIONS(5220), 1, + ACTIONS(5279), 1, anon_sym_LBRACK, - ACTIONS(5222), 1, + ACTIONS(5283), 1, anon_sym_LBRACE, - STATE(2221), 1, - aux_sym_macro_definition_repeat1, - STATE(3198), 1, - sym_macro_rule, - STATE(3451), 1, - sym_token_tree_pattern, - STATE(2304), 2, + ACTIONS(5287), 1, + anon_sym_RBRACK, + ACTIONS(5289), 1, + anon_sym_EQ, + STATE(3602), 1, + sym_delim_token_tree, + STATE(2329), 2, sym_line_comment, sym_block_comment, - [72692] = 10, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [73766] = 10, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5216), 1, + ACTIONS(5267), 1, anon_sym_LPAREN, - ACTIONS(5220), 1, + ACTIONS(5269), 1, anon_sym_LBRACK, - ACTIONS(5222), 1, + ACTIONS(5271), 1, anon_sym_LBRACE, - ACTIONS(5224), 1, - anon_sym_RBRACE, - STATE(2316), 1, + ACTIONS(5291), 1, + anon_sym_RPAREN, + STATE(2237), 1, aux_sym_macro_definition_repeat1, - STATE(3155), 1, + STATE(3380), 1, sym_macro_rule, - STATE(3451), 1, + STATE(3547), 1, sym_token_tree_pattern, - STATE(2305), 2, + STATE(2330), 2, sym_line_comment, sym_block_comment, - [72724] = 10, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [73798] = 10, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5216), 1, + ACTIONS(5267), 1, anon_sym_LPAREN, - ACTIONS(5220), 1, + ACTIONS(5269), 1, anon_sym_LBRACK, - ACTIONS(5222), 1, + ACTIONS(5271), 1, anon_sym_LBRACE, - ACTIONS(5226), 1, - anon_sym_RBRACE, - STATE(2317), 1, + ACTIONS(5291), 1, + anon_sym_RBRACK, + STATE(2237), 1, aux_sym_macro_definition_repeat1, - STATE(3185), 1, + STATE(3381), 1, sym_macro_rule, - STATE(3451), 1, + STATE(3547), 1, sym_token_tree_pattern, - STATE(2306), 2, + STATE(2331), 2, sym_line_comment, sym_block_comment, - [72756] = 10, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [73830] = 10, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5216), 1, + ACTIONS(5267), 1, anon_sym_LPAREN, - ACTIONS(5220), 1, + ACTIONS(5269), 1, anon_sym_LBRACK, - ACTIONS(5222), 1, + ACTIONS(5271), 1, anon_sym_LBRACE, - ACTIONS(5228), 1, - anon_sym_RBRACE, - STATE(2221), 1, + ACTIONS(5293), 1, + anon_sym_RPAREN, + STATE(2237), 1, aux_sym_macro_definition_repeat1, - STATE(3203), 1, + STATE(3382), 1, sym_macro_rule, - STATE(3451), 1, + STATE(3547), 1, sym_token_tree_pattern, - STATE(2307), 2, + STATE(2332), 2, sym_line_comment, sym_block_comment, - [72788] = 10, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [73862] = 10, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5216), 1, + ACTIONS(5267), 1, anon_sym_LPAREN, - ACTIONS(5220), 1, + ACTIONS(5269), 1, anon_sym_LBRACK, - ACTIONS(5222), 1, + ACTIONS(5271), 1, anon_sym_LBRACE, - ACTIONS(5230), 1, - anon_sym_RPAREN, - STATE(2221), 1, + ACTIONS(5293), 1, + anon_sym_RBRACK, + STATE(2237), 1, aux_sym_macro_definition_repeat1, - STATE(3224), 1, + STATE(3383), 1, sym_macro_rule, - STATE(3451), 1, + STATE(3547), 1, sym_token_tree_pattern, - STATE(2308), 2, + STATE(2333), 2, sym_line_comment, sym_block_comment, - [72820] = 7, - ACTIONS(103), 1, + [73894] = 9, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(4256), 1, + anon_sym_LBRACE, + ACTIONS(4604), 1, + anon_sym_LT2, + ACTIONS(5297), 1, + anon_sym_STAR, + STATE(3054), 1, + sym_use_list, + STATE(3575), 1, + sym_type_arguments, + ACTIONS(5295), 2, + sym_identifier, + sym_super, + STATE(2334), 2, + sym_line_comment, + sym_block_comment, + [73924] = 8, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4963), 1, + ACTIONS(4618), 1, anon_sym_DOT_DOT, - ACTIONS(4967), 1, + ACTIONS(5301), 1, + anon_sym_COLON, + ACTIONS(5303), 1, anon_sym_COLON_COLON, - ACTIONS(4965), 2, + ACTIONS(4620), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(2309), 2, + ACTIONS(5299), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(2335), 2, sym_line_comment, sym_block_comment, - ACTIONS(4596), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [72846] = 10, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [73952] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5216), 1, - anon_sym_LPAREN, - ACTIONS(5220), 1, - anon_sym_LBRACK, - ACTIONS(5222), 1, - anon_sym_LBRACE, - ACTIONS(5230), 1, - anon_sym_RBRACK, - STATE(2221), 1, - aux_sym_macro_definition_repeat1, - STATE(3225), 1, - sym_macro_rule, - STATE(3451), 1, - sym_token_tree_pattern, - STATE(2310), 2, + ACTIONS(4618), 1, + anon_sym_DOT_DOT, + ACTIONS(5303), 1, + anon_sym_COLON_COLON, + ACTIONS(4620), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2336), 2, sym_line_comment, sym_block_comment, - [72878] = 10, - ACTIONS(103), 1, + ACTIONS(3505), 3, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_COMMA, + [73978] = 9, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(5177), 1, + sym_identifier, + ACTIONS(5181), 1, + anon_sym_DOT_DOT, + ACTIONS(5185), 1, + anon_sym_ref, + ACTIONS(5187), 1, + sym_mutable_specifier, + ACTIONS(5305), 1, + anon_sym_RBRACE, + STATE(2337), 2, + sym_line_comment, + sym_block_comment, + STATE(3321), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [74008] = 10, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5216), 1, + ACTIONS(5267), 1, anon_sym_LPAREN, - ACTIONS(5220), 1, + ACTIONS(5269), 1, anon_sym_LBRACK, - ACTIONS(5222), 1, + ACTIONS(5271), 1, anon_sym_LBRACE, - ACTIONS(5232), 1, - anon_sym_RBRACE, - STATE(2221), 1, + ACTIONS(5307), 1, + anon_sym_RPAREN, + STATE(2363), 1, aux_sym_macro_definition_repeat1, - STATE(3226), 1, + STATE(3343), 1, sym_macro_rule, - STATE(3451), 1, + STATE(3547), 1, sym_token_tree_pattern, - STATE(2311), 2, + STATE(2338), 2, sym_line_comment, sym_block_comment, - [72910] = 10, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [74040] = 10, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4983), 1, + ACTIONS(5046), 1, anon_sym_LPAREN, - ACTIONS(4985), 1, + ACTIONS(5048), 1, anon_sym_LBRACE, - ACTIONS(4989), 1, + ACTIONS(5052), 1, anon_sym_where, - ACTIONS(5234), 1, + ACTIONS(5309), 1, anon_sym_SEMI, - STATE(1152), 1, + STATE(1283), 1, sym_field_declaration_list, - STATE(2859), 1, + STATE(2937), 1, sym_ordered_field_declaration_list, - STATE(3245), 1, + STATE(3256), 1, sym_where_clause, - STATE(2312), 2, + STATE(2339), 2, sym_line_comment, sym_block_comment, - [72942] = 10, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [74072] = 10, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4983), 1, + ACTIONS(5046), 1, anon_sym_LPAREN, - ACTIONS(4989), 1, - anon_sym_where, - ACTIONS(5043), 1, + ACTIONS(5048), 1, anon_sym_LBRACE, - ACTIONS(5236), 1, + ACTIONS(5052), 1, + anon_sym_where, + ACTIONS(5311), 1, anon_sym_SEMI, - STATE(749), 1, + STATE(1238), 1, sym_field_declaration_list, - STATE(3055), 1, + STATE(2883), 1, sym_ordered_field_declaration_list, - STATE(3423), 1, + STATE(3276), 1, sym_where_clause, - STATE(2313), 2, + STATE(2340), 2, sym_line_comment, sym_block_comment, - [72974] = 9, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [74104] = 7, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(5100), 1, - sym_identifier, - ACTIONS(5104), 1, - anon_sym_DOT_DOT, - ACTIONS(5108), 1, - anon_sym_ref, - ACTIONS(5110), 1, - sym_mutable_specifier, - ACTIONS(5238), 1, - anon_sym_RBRACE, - STATE(2314), 2, - sym_line_comment, - sym_block_comment, - STATE(3262), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [73004] = 5, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5240), 1, - sym_identifier, - STATE(2315), 2, + ACTIONS(4618), 1, + anon_sym_DOT_DOT, + ACTIONS(5313), 1, + anon_sym_COLON_COLON, + ACTIONS(4620), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2341), 2, sym_line_comment, sym_block_comment, - ACTIONS(4859), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [73026] = 10, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + ACTIONS(3505), 3, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_COMMA, + [74130] = 10, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(5216), 1, - anon_sym_LPAREN, - ACTIONS(5220), 1, - anon_sym_LBRACK, - ACTIONS(5222), 1, - anon_sym_LBRACE, - ACTIONS(5242), 1, - anon_sym_RBRACE, - STATE(2221), 1, - aux_sym_macro_definition_repeat1, - STATE(3405), 1, - sym_macro_rule, - STATE(3451), 1, - sym_token_tree_pattern, - STATE(2316), 2, - sym_line_comment, - sym_block_comment, - [73058] = 10, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5216), 1, + ACTIONS(5267), 1, anon_sym_LPAREN, - ACTIONS(5220), 1, + ACTIONS(5269), 1, anon_sym_LBRACK, - ACTIONS(5222), 1, + ACTIONS(5271), 1, anon_sym_LBRACE, - ACTIONS(5244), 1, + ACTIONS(5315), 1, anon_sym_RBRACE, - STATE(2221), 1, + STATE(2237), 1, aux_sym_macro_definition_repeat1, - STATE(3410), 1, - sym_macro_rule, - STATE(3451), 1, - sym_token_tree_pattern, - STATE(2317), 2, - sym_line_comment, - sym_block_comment, - [73090] = 9, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(5100), 1, - sym_identifier, - ACTIONS(5104), 1, - anon_sym_DOT_DOT, - ACTIONS(5108), 1, - anon_sym_ref, - ACTIONS(5110), 1, - sym_mutable_specifier, - ACTIONS(5246), 1, - anon_sym_RBRACE, - STATE(2318), 2, + STATE(3354), 1, + sym_macro_rule, + STATE(3547), 1, + sym_token_tree_pattern, + STATE(2342), 2, sym_line_comment, sym_block_comment, - STATE(3262), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [73120] = 8, - ACTIONS(103), 1, + [74162] = 10, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(4846), 1, + anon_sym_COLON_COLON, + ACTIONS(5277), 1, + anon_sym_LPAREN, + ACTIONS(5279), 1, + anon_sym_LBRACK, + ACTIONS(5283), 1, + anon_sym_LBRACE, + ACTIONS(5287), 1, + anon_sym_RBRACK, + ACTIONS(5289), 1, + anon_sym_EQ, + STATE(3602), 1, + sym_delim_token_tree, + STATE(2343), 2, + sym_line_comment, + sym_block_comment, + [74194] = 8, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4983), 1, + ACTIONS(5046), 1, anon_sym_LPAREN, - ACTIONS(4985), 1, + ACTIONS(5048), 1, anon_sym_LBRACE, - ACTIONS(5250), 1, + ACTIONS(5319), 1, anon_sym_EQ, - ACTIONS(5248), 2, + ACTIONS(5317), 2, anon_sym_RBRACE, anon_sym_COMMA, - STATE(2319), 2, + STATE(2344), 2, sym_line_comment, sym_block_comment, - STATE(3096), 2, + STATE(3114), 2, sym_field_declaration_list, sym_ordered_field_declaration_list, - [73148] = 9, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [74222] = 9, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(5100), 1, - sym_identifier, - ACTIONS(5104), 1, - anon_sym_DOT_DOT, - ACTIONS(5108), 1, - anon_sym_ref, - ACTIONS(5110), 1, - sym_mutable_specifier, - ACTIONS(5252), 1, - anon_sym_RBRACE, - STATE(2320), 2, - sym_line_comment, - sym_block_comment, - STATE(3262), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [73178] = 9, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5100), 1, + ACTIONS(5177), 1, sym_identifier, - ACTIONS(5104), 1, + ACTIONS(5181), 1, anon_sym_DOT_DOT, - ACTIONS(5108), 1, + ACTIONS(5185), 1, anon_sym_ref, - ACTIONS(5110), 1, + ACTIONS(5187), 1, sym_mutable_specifier, - ACTIONS(5254), 1, + ACTIONS(5321), 1, anon_sym_RBRACE, - STATE(2321), 2, + STATE(2345), 2, sym_line_comment, sym_block_comment, - STATE(3262), 2, + STATE(3321), 2, sym_field_pattern, sym_remaining_field_pattern, - [73208] = 10, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [74252] = 10, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5216), 1, + ACTIONS(5267), 1, anon_sym_LPAREN, - ACTIONS(5220), 1, + ACTIONS(5269), 1, anon_sym_LBRACK, - ACTIONS(5222), 1, + ACTIONS(5271), 1, anon_sym_LBRACE, - ACTIONS(5256), 1, - anon_sym_RPAREN, - STATE(2329), 1, + ACTIONS(5323), 1, + anon_sym_RBRACE, + STATE(2237), 1, aux_sym_macro_definition_repeat1, - STATE(3329), 1, + STATE(3450), 1, sym_macro_rule, - STATE(3451), 1, + STATE(3547), 1, sym_token_tree_pattern, - STATE(2322), 2, + STATE(2346), 2, sym_line_comment, sym_block_comment, - [73240] = 10, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [74284] = 10, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5216), 1, + ACTIONS(5267), 1, anon_sym_LPAREN, - ACTIONS(5220), 1, + ACTIONS(5269), 1, anon_sym_LBRACK, - ACTIONS(5222), 1, + ACTIONS(5271), 1, anon_sym_LBRACE, - ACTIONS(5256), 1, + ACTIONS(5325), 1, anon_sym_RBRACK, - STATE(2330), 1, + STATE(2333), 1, aux_sym_macro_definition_repeat1, - STATE(3331), 1, + STATE(3364), 1, sym_macro_rule, - STATE(3451), 1, + STATE(3547), 1, sym_token_tree_pattern, - STATE(2323), 2, + STATE(2347), 2, sym_line_comment, sym_block_comment, - [73272] = 10, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [74316] = 10, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(5216), 1, - anon_sym_LPAREN, - ACTIONS(5220), 1, - anon_sym_LBRACK, - ACTIONS(5222), 1, - anon_sym_LBRACE, - ACTIONS(5258), 1, - anon_sym_RPAREN, - STATE(2331), 1, - aux_sym_macro_definition_repeat1, - STATE(3332), 1, - sym_macro_rule, - STATE(3451), 1, - sym_token_tree_pattern, - STATE(2324), 2, - sym_line_comment, - sym_block_comment, - [73304] = 10, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5216), 1, + ACTIONS(5267), 1, anon_sym_LPAREN, - ACTIONS(5220), 1, + ACTIONS(5269), 1, anon_sym_LBRACK, - ACTIONS(5222), 1, + ACTIONS(5271), 1, anon_sym_LBRACE, - ACTIONS(5258), 1, + ACTIONS(5327), 1, anon_sym_RBRACK, - STATE(2332), 1, + STATE(2237), 1, aux_sym_macro_definition_repeat1, - STATE(3333), 1, + STATE(3350), 1, sym_macro_rule, - STATE(3451), 1, + STATE(3547), 1, sym_token_tree_pattern, - STATE(2325), 2, + STATE(2348), 2, sym_line_comment, sym_block_comment, - [73336] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [74348] = 9, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5260), 1, + ACTIONS(5177), 1, sym_identifier, - STATE(2326), 2, + ACTIONS(5181), 1, + anon_sym_DOT_DOT, + ACTIONS(5185), 1, + anon_sym_ref, + ACTIONS(5187), 1, + sym_mutable_specifier, + ACTIONS(5329), 1, + anon_sym_RBRACE, + STATE(2349), 2, sym_line_comment, sym_block_comment, - ACTIONS(4859), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [73358] = 10, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + STATE(3321), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [74378] = 9, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4983), 1, - anon_sym_LPAREN, - ACTIONS(4985), 1, - anon_sym_LBRACE, - ACTIONS(4989), 1, - anon_sym_where, - ACTIONS(5262), 1, - anon_sym_SEMI, - STATE(1222), 1, - sym_field_declaration_list, - STATE(2917), 1, - sym_ordered_field_declaration_list, - STATE(3234), 1, - sym_where_clause, - STATE(2327), 2, - sym_line_comment, - sym_block_comment, - [73390] = 9, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5100), 1, + ACTIONS(5177), 1, sym_identifier, - ACTIONS(5104), 1, + ACTIONS(5181), 1, anon_sym_DOT_DOT, - ACTIONS(5108), 1, + ACTIONS(5185), 1, anon_sym_ref, - ACTIONS(5110), 1, + ACTIONS(5187), 1, sym_mutable_specifier, - ACTIONS(5264), 1, + ACTIONS(5331), 1, anon_sym_RBRACE, - STATE(2328), 2, + STATE(2350), 2, sym_line_comment, sym_block_comment, - STATE(3262), 2, + STATE(3321), 2, sym_field_pattern, sym_remaining_field_pattern, - [73420] = 10, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [74408] = 10, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5216), 1, + ACTIONS(5267), 1, anon_sym_LPAREN, - ACTIONS(5220), 1, + ACTIONS(5269), 1, anon_sym_LBRACK, - ACTIONS(5222), 1, + ACTIONS(5271), 1, anon_sym_LBRACE, - ACTIONS(5266), 1, - anon_sym_RPAREN, - STATE(2221), 1, + ACTIONS(5333), 1, + anon_sym_RBRACK, + STATE(2237), 1, aux_sym_macro_definition_repeat1, - STATE(3348), 1, + STATE(3362), 1, sym_macro_rule, - STATE(3451), 1, + STATE(3547), 1, sym_token_tree_pattern, - STATE(2329), 2, + STATE(2351), 2, sym_line_comment, sym_block_comment, - [73452] = 10, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [74440] = 9, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5216), 1, - anon_sym_LPAREN, - ACTIONS(5220), 1, - anon_sym_LBRACK, - ACTIONS(5222), 1, + ACTIONS(4256), 1, anon_sym_LBRACE, - ACTIONS(5266), 1, - anon_sym_RBRACK, - STATE(2221), 1, - aux_sym_macro_definition_repeat1, - STATE(3349), 1, - sym_macro_rule, - STATE(3451), 1, - sym_token_tree_pattern, - STATE(2330), 2, + ACTIONS(4604), 1, + anon_sym_LT2, + ACTIONS(5297), 1, + anon_sym_STAR, + STATE(3054), 1, + sym_use_list, + STATE(3462), 1, + sym_type_arguments, + ACTIONS(5295), 2, + sym_identifier, + sym_super, + STATE(2352), 2, sym_line_comment, sym_block_comment, - [73484] = 10, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [74470] = 10, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5216), 1, + ACTIONS(5267), 1, anon_sym_LPAREN, - ACTIONS(5220), 1, + ACTIONS(5269), 1, anon_sym_LBRACK, - ACTIONS(5222), 1, + ACTIONS(5271), 1, anon_sym_LBRACE, - ACTIONS(5268), 1, - anon_sym_RPAREN, - STATE(2221), 1, + ACTIONS(5335), 1, + anon_sym_RBRACE, + STATE(2346), 1, aux_sym_macro_definition_repeat1, - STATE(3350), 1, + STATE(3198), 1, sym_macro_rule, - STATE(3451), 1, + STATE(3547), 1, sym_token_tree_pattern, - STATE(2331), 2, + STATE(2353), 2, sym_line_comment, sym_block_comment, - [73516] = 10, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [74502] = 10, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5216), 1, + ACTIONS(5267), 1, anon_sym_LPAREN, - ACTIONS(5220), 1, + ACTIONS(5269), 1, anon_sym_LBRACK, - ACTIONS(5222), 1, + ACTIONS(5271), 1, anon_sym_LBRACE, - ACTIONS(5268), 1, + ACTIONS(5307), 1, anon_sym_RBRACK, - STATE(2221), 1, + STATE(2348), 1, aux_sym_macro_definition_repeat1, - STATE(3351), 1, + STATE(3368), 1, sym_macro_rule, - STATE(3451), 1, + STATE(3547), 1, sym_token_tree_pattern, - STATE(2332), 2, + STATE(2354), 2, sym_line_comment, sym_block_comment, - [73548] = 8, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [74534] = 9, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4586), 1, + ACTIONS(5177), 1, + sym_identifier, + ACTIONS(5181), 1, anon_sym_DOT_DOT, - ACTIONS(5272), 1, - anon_sym_COLON, - ACTIONS(5274), 1, - anon_sym_COLON_COLON, - ACTIONS(4588), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(5270), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(2333), 2, + ACTIONS(5185), 1, + anon_sym_ref, + ACTIONS(5187), 1, + sym_mutable_specifier, + ACTIONS(5337), 1, + anon_sym_RBRACE, + STATE(2355), 2, sym_line_comment, sym_block_comment, - [73576] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + STATE(3321), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [74564] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4586), 1, + ACTIONS(4618), 1, anon_sym_DOT_DOT, - ACTIONS(5274), 1, + ACTIONS(5339), 1, anon_sym_COLON_COLON, - ACTIONS(4588), 2, + ACTIONS(4620), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(2334), 2, + STATE(2356), 2, sym_line_comment, sym_block_comment, - ACTIONS(3425), 3, - anon_sym_RPAREN, + ACTIONS(3505), 3, + anon_sym_SEMI, + anon_sym_RBRACK, anon_sym_PLUS, - anon_sym_COMMA, - [73602] = 8, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [74590] = 10, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4586), 1, - anon_sym_DOT_DOT, - ACTIONS(5210), 1, - anon_sym_COLON_COLON, - ACTIONS(5272), 1, - anon_sym_COLON, - ACTIONS(4588), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(5270), 2, + ACTIONS(5267), 1, + anon_sym_LPAREN, + ACTIONS(5269), 1, + anon_sym_LBRACK, + ACTIONS(5271), 1, + anon_sym_LBRACE, + ACTIONS(5341), 1, anon_sym_RPAREN, - anon_sym_COMMA, - STATE(2335), 2, + STATE(2376), 1, + aux_sym_macro_definition_repeat1, + STATE(3407), 1, + sym_macro_rule, + STATE(3547), 1, + sym_token_tree_pattern, + STATE(2357), 2, sym_line_comment, sym_block_comment, - [73630] = 10, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [74622] = 10, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4791), 1, - anon_sym_COLON_COLON, - ACTIONS(5276), 1, + ACTIONS(5046), 1, anon_sym_LPAREN, - ACTIONS(5278), 1, - anon_sym_LBRACK, - ACTIONS(5280), 1, - anon_sym_RBRACK, - ACTIONS(5282), 1, + ACTIONS(5052), 1, + anon_sym_where, + ACTIONS(5110), 1, anon_sym_LBRACE, - ACTIONS(5284), 1, - anon_sym_EQ, - STATE(3669), 1, - sym_delim_token_tree, - STATE(2336), 2, + ACTIONS(5343), 1, + anon_sym_SEMI, + STATE(540), 1, + sym_field_declaration_list, + STATE(3006), 1, + sym_ordered_field_declaration_list, + STATE(3197), 1, + sym_where_clause, + STATE(2358), 2, sym_line_comment, sym_block_comment, - [73662] = 9, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [74654] = 10, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5100), 1, - sym_identifier, - ACTIONS(5104), 1, - anon_sym_DOT_DOT, - ACTIONS(5108), 1, - anon_sym_ref, + ACTIONS(5046), 1, + anon_sym_LPAREN, + ACTIONS(5052), 1, + anon_sym_where, ACTIONS(5110), 1, - sym_mutable_specifier, - ACTIONS(5286), 1, - anon_sym_RBRACE, - STATE(2337), 2, + anon_sym_LBRACE, + ACTIONS(5345), 1, + anon_sym_SEMI, + STATE(629), 1, + sym_field_declaration_list, + STATE(2994), 1, + sym_ordered_field_declaration_list, + STATE(3178), 1, + sym_where_clause, + STATE(2359), 2, sym_line_comment, sym_block_comment, - STATE(3262), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [73692] = 10, - ACTIONS(103), 1, + [74686] = 10, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5347), 1, + aux_sym_line_comment_token1, + ACTIONS(5349), 1, + aux_sym_line_comment_token3, + ACTIONS(5351), 1, + anon_sym_BANG2, + ACTIONS(5353), 1, + anon_sym_SLASH2, + STATE(3595), 1, + sym__line_doc_comment_marker, + STATE(3603), 1, + sym__inner_line_doc_comment_marker, + STATE(3716), 1, + sym__outer_line_doc_comment_marker, + STATE(2360), 2, + sym_line_comment, + sym_block_comment, + [74718] = 10, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5216), 1, + ACTIONS(5267), 1, anon_sym_LPAREN, - ACTIONS(5220), 1, + ACTIONS(5269), 1, anon_sym_LBRACK, - ACTIONS(5222), 1, + ACTIONS(5271), 1, anon_sym_LBRACE, - ACTIONS(5288), 1, - anon_sym_RPAREN, - STATE(2303), 1, + ACTIONS(5355), 1, + anon_sym_RBRACE, + STATE(2324), 1, aux_sym_macro_definition_repeat1, - STATE(3216), 1, + STATE(3212), 1, sym_macro_rule, - STATE(3451), 1, + STATE(3547), 1, sym_token_tree_pattern, - STATE(2338), 2, + STATE(2361), 2, sym_line_comment, sym_block_comment, - [73724] = 10, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [74750] = 10, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5216), 1, + ACTIONS(5267), 1, anon_sym_LPAREN, - ACTIONS(5220), 1, + ACTIONS(5269), 1, anon_sym_LBRACK, - ACTIONS(5222), 1, + ACTIONS(5271), 1, anon_sym_LBRACE, - ACTIONS(5288), 1, + ACTIONS(5341), 1, anon_sym_RBRACK, - STATE(2304), 1, + STATE(2351), 1, aux_sym_macro_definition_repeat1, - STATE(3228), 1, + STATE(3415), 1, sym_macro_rule, - STATE(3451), 1, + STATE(3547), 1, sym_token_tree_pattern, - STATE(2339), 2, + STATE(2362), 2, sym_line_comment, sym_block_comment, - [73756] = 10, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [74782] = 10, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5216), 1, + ACTIONS(5267), 1, anon_sym_LPAREN, - ACTIONS(5220), 1, + ACTIONS(5269), 1, anon_sym_LBRACK, - ACTIONS(5222), 1, + ACTIONS(5271), 1, anon_sym_LBRACE, - ACTIONS(5290), 1, - anon_sym_RBRACE, - STATE(2307), 1, + ACTIONS(5327), 1, + anon_sym_RPAREN, + STATE(2237), 1, aux_sym_macro_definition_repeat1, - STATE(3230), 1, + STATE(3345), 1, sym_macro_rule, - STATE(3451), 1, + STATE(3547), 1, sym_token_tree_pattern, - STATE(2340), 2, + STATE(2363), 2, sym_line_comment, sym_block_comment, - [73788] = 10, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [74814] = 8, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5216), 1, - anon_sym_LPAREN, - ACTIONS(5220), 1, - anon_sym_LBRACK, - ACTIONS(5222), 1, - anon_sym_LBRACE, - ACTIONS(5292), 1, + ACTIONS(4618), 1, + anon_sym_DOT_DOT, + ACTIONS(5301), 1, + anon_sym_COLON, + ACTIONS(5313), 1, + anon_sym_COLON_COLON, + ACTIONS(4620), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(5299), 2, anon_sym_RPAREN, - STATE(2308), 1, - aux_sym_macro_definition_repeat1, - STATE(3233), 1, - sym_macro_rule, - STATE(3451), 1, - sym_token_tree_pattern, - STATE(2341), 2, + anon_sym_COMMA, + STATE(2364), 2, sym_line_comment, sym_block_comment, - [73820] = 10, - ACTIONS(103), 1, + [74842] = 9, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(5177), 1, + sym_identifier, + ACTIONS(5181), 1, + anon_sym_DOT_DOT, + ACTIONS(5185), 1, + anon_sym_ref, + ACTIONS(5187), 1, + sym_mutable_specifier, + ACTIONS(5357), 1, + anon_sym_RBRACE, + STATE(2365), 2, + sym_line_comment, + sym_block_comment, + STATE(3321), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [74872] = 10, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5216), 1, + ACTIONS(5267), 1, anon_sym_LPAREN, - ACTIONS(5220), 1, + ACTIONS(5269), 1, anon_sym_LBRACK, - ACTIONS(5222), 1, + ACTIONS(5271), 1, anon_sym_LBRACE, - ACTIONS(5292), 1, - anon_sym_RBRACK, - STATE(2310), 1, + ACTIONS(5359), 1, + anon_sym_RBRACE, + STATE(2237), 1, aux_sym_macro_definition_repeat1, - STATE(3237), 1, + STATE(3365), 1, sym_macro_rule, - STATE(3451), 1, + STATE(3547), 1, sym_token_tree_pattern, - STATE(2342), 2, + STATE(2366), 2, sym_line_comment, sym_block_comment, - [73852] = 10, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [74904] = 10, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5216), 1, + ACTIONS(5267), 1, anon_sym_LPAREN, - ACTIONS(5220), 1, + ACTIONS(5269), 1, anon_sym_LBRACK, - ACTIONS(5222), 1, + ACTIONS(5271), 1, anon_sym_LBRACE, - ACTIONS(5294), 1, + ACTIONS(5361), 1, anon_sym_RBRACE, - STATE(2311), 1, + STATE(2366), 1, aux_sym_macro_definition_repeat1, - STATE(3243), 1, + STATE(3454), 1, sym_macro_rule, - STATE(3451), 1, + STATE(3547), 1, sym_token_tree_pattern, - STATE(2343), 2, + STATE(2367), 2, sym_line_comment, sym_block_comment, - [73884] = 9, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [74936] = 9, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4208), 1, - anon_sym_LBRACE, - ACTIONS(4574), 1, - anon_sym_LT2, - ACTIONS(5298), 1, - anon_sym_STAR, - STATE(2845), 1, - sym_use_list, - STATE(3554), 1, - sym_type_arguments, - ACTIONS(5296), 2, + ACTIONS(5177), 1, sym_identifier, - sym_super, - STATE(2344), 2, + ACTIONS(5181), 1, + anon_sym_DOT_DOT, + ACTIONS(5185), 1, + anon_sym_ref, + ACTIONS(5187), 1, + sym_mutable_specifier, + ACTIONS(5363), 1, + anon_sym_RBRACE, + STATE(2368), 2, sym_line_comment, sym_block_comment, - [73914] = 9, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + STATE(3321), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [74966] = 9, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5100), 1, + ACTIONS(5177), 1, sym_identifier, - ACTIONS(5104), 1, + ACTIONS(5181), 1, anon_sym_DOT_DOT, - ACTIONS(5108), 1, + ACTIONS(5185), 1, anon_sym_ref, - ACTIONS(5110), 1, + ACTIONS(5187), 1, sym_mutable_specifier, - ACTIONS(5300), 1, + ACTIONS(5365), 1, anon_sym_RBRACE, - STATE(2345), 2, + STATE(2369), 2, sym_line_comment, sym_block_comment, - STATE(3262), 2, + STATE(3321), 2, sym_field_pattern, sym_remaining_field_pattern, - [73944] = 8, - ACTIONS(103), 1, + [74996] = 8, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(4618), 1, + anon_sym_DOT_DOT, + ACTIONS(5369), 1, + anon_sym_COLON, + ACTIONS(5371), 1, + anon_sym_COLON_COLON, + ACTIONS(4620), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(5367), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(2370), 2, + sym_line_comment, + sym_block_comment, + [75024] = 8, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4983), 1, + ACTIONS(5046), 1, anon_sym_LPAREN, - ACTIONS(4985), 1, + ACTIONS(5048), 1, anon_sym_LBRACE, - ACTIONS(5304), 1, + ACTIONS(5375), 1, anon_sym_EQ, - ACTIONS(5302), 2, + ACTIONS(5373), 2, anon_sym_RBRACE, anon_sym_COMMA, - STATE(2346), 2, + STATE(2371), 2, sym_line_comment, sym_block_comment, - STATE(3043), 2, + STATE(2988), 2, sym_field_declaration_list, sym_ordered_field_declaration_list, - [73972] = 5, - ACTIONS(103), 1, + [75052] = 10, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(5267), 1, + anon_sym_LPAREN, + ACTIONS(5269), 1, + anon_sym_LBRACK, + ACTIONS(5271), 1, + anon_sym_LBRACE, + ACTIONS(5377), 1, + anon_sym_RPAREN, + STATE(2330), 1, + aux_sym_macro_definition_repeat1, + STATE(3359), 1, + sym_macro_rule, + STATE(3547), 1, + sym_token_tree_pattern, + STATE(2372), 2, + sym_line_comment, + sym_block_comment, + [75084] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5306), 1, - anon_sym_trait, - STATE(2347), 2, + STATE(2373), 2, sym_line_comment, sym_block_comment, - ACTIONS(3530), 6, + ACTIONS(3525), 7, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [73994] = 10, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + anon_sym_safe, + [75104] = 10, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4781), 1, - anon_sym_COLON_COLON, - ACTIONS(5276), 1, - anon_sym_LPAREN, - ACTIONS(5278), 1, - anon_sym_LBRACK, - ACTIONS(5282), 1, - anon_sym_LBRACE, - ACTIONS(5308), 1, - anon_sym_RBRACK, - ACTIONS(5310), 1, - anon_sym_EQ, - STATE(3674), 1, - sym_delim_token_tree, - STATE(2348), 2, - sym_line_comment, - sym_block_comment, - [74026] = 10, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4703), 1, - anon_sym_COLON_COLON, - ACTIONS(5276), 1, + ACTIONS(5267), 1, anon_sym_LPAREN, - ACTIONS(5278), 1, + ACTIONS(5269), 1, anon_sym_LBRACK, - ACTIONS(5282), 1, + ACTIONS(5271), 1, anon_sym_LBRACE, - ACTIONS(5308), 1, + ACTIONS(5377), 1, anon_sym_RBRACK, - ACTIONS(5310), 1, - anon_sym_EQ, - STATE(3674), 1, - sym_delim_token_tree, - STATE(2349), 2, + STATE(2331), 1, + aux_sym_macro_definition_repeat1, + STATE(3361), 1, + sym_macro_rule, + STATE(3547), 1, + sym_token_tree_pattern, + STATE(2374), 2, sym_line_comment, sym_block_comment, - [74058] = 10, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [75136] = 10, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4785), 1, - anon_sym_COLON_COLON, - ACTIONS(5276), 1, + ACTIONS(5267), 1, anon_sym_LPAREN, - ACTIONS(5278), 1, + ACTIONS(5269), 1, anon_sym_LBRACK, - ACTIONS(5282), 1, + ACTIONS(5271), 1, anon_sym_LBRACE, - ACTIONS(5308), 1, - anon_sym_RBRACK, - ACTIONS(5310), 1, - anon_sym_EQ, - STATE(3674), 1, - sym_delim_token_tree, - STATE(2350), 2, + ACTIONS(5325), 1, + anon_sym_RPAREN, + STATE(2332), 1, + aux_sym_macro_definition_repeat1, + STATE(3363), 1, + sym_macro_rule, + STATE(3547), 1, + sym_token_tree_pattern, + STATE(2375), 2, sym_line_comment, sym_block_comment, - [74090] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [75168] = 10, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4586), 1, - anon_sym_DOT_DOT, - ACTIONS(5312), 1, - anon_sym_COLON_COLON, - ACTIONS(4588), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2351), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3425), 3, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_PLUS, - [74116] = 9, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4208), 1, + ACTIONS(5267), 1, + anon_sym_LPAREN, + ACTIONS(5269), 1, + anon_sym_LBRACK, + ACTIONS(5271), 1, anon_sym_LBRACE, - ACTIONS(4574), 1, - anon_sym_LT2, - ACTIONS(5298), 1, - anon_sym_STAR, - STATE(2845), 1, - sym_use_list, - STATE(3659), 1, - sym_type_arguments, - ACTIONS(5296), 2, - sym_identifier, - sym_super, - STATE(2352), 2, - sym_line_comment, - sym_block_comment, - [74146] = 10, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(5314), 1, - aux_sym_line_comment_token1, - ACTIONS(5316), 1, - aux_sym_line_comment_token3, - ACTIONS(5318), 1, - anon_sym_BANG2, - ACTIONS(5320), 1, - anon_sym_SLASH2, - STATE(3561), 1, - sym__line_doc_comment_marker, - STATE(3571), 1, - sym__inner_line_doc_comment_marker, - STATE(3598), 1, - sym__outer_line_doc_comment_marker, - STATE(2353), 2, - sym_line_comment, - sym_block_comment, - [74178] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(5322), 1, - anon_sym_trait, - STATE(2354), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3530), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [74200] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(5324), 1, - sym_identifier, - STATE(2355), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4859), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [74222] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(5326), 1, - sym_identifier, - STATE(2356), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4859), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [74244] = 8, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + ACTIONS(5333), 1, + anon_sym_RPAREN, + STATE(2237), 1, + aux_sym_macro_definition_repeat1, + STATE(3360), 1, + sym_macro_rule, + STATE(3547), 1, + sym_token_tree_pattern, + STATE(2376), 2, + sym_line_comment, + sym_block_comment, + [75200] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4586), 1, - anon_sym_DOT_DOT, - ACTIONS(5330), 1, - anon_sym_COLON, - ACTIONS(5332), 1, + ACTIONS(4707), 1, anon_sym_COLON_COLON, - ACTIONS(4588), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(5328), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(2357), 2, + ACTIONS(5139), 1, + anon_sym_for, + STATE(2377), 2, sym_line_comment, sym_block_comment, - [74272] = 9, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + ACTIONS(3505), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [75223] = 9, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4971), 1, + ACTIONS(4928), 1, anon_sym_LBRACE, - ACTIONS(4989), 1, + ACTIONS(5052), 1, anon_sym_where, - ACTIONS(5082), 1, + ACTIONS(5157), 1, anon_sym_PLUS, - ACTIONS(5334), 1, + ACTIONS(5379), 1, anon_sym_SEMI, - STATE(1209), 1, + STATE(556), 1, sym_declaration_list, - STATE(2911), 1, + STATE(2900), 1, sym_where_clause, - STATE(2358), 2, + STATE(2378), 2, sym_line_comment, sym_block_comment, - [74301] = 9, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [75252] = 9, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4989), 1, + ACTIONS(4984), 1, + anon_sym_LBRACE, + ACTIONS(5052), 1, anon_sym_where, - ACTIONS(5128), 1, - anon_sym_COLON, - ACTIONS(5336), 1, + ACTIONS(5157), 1, + anon_sym_PLUS, + ACTIONS(5381), 1, anon_sym_SEMI, - ACTIONS(5338), 1, - anon_sym_EQ, - STATE(3104), 1, - sym_trait_bounds, - STATE(3367), 1, + STATE(1230), 1, + sym_declaration_list, + STATE(2879), 1, sym_where_clause, - STATE(2359), 2, + STATE(2379), 2, sym_line_comment, sym_block_comment, - [74330] = 9, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [75281] = 9, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4971), 1, + ACTIONS(4928), 1, anon_sym_LBRACE, - ACTIONS(4989), 1, + ACTIONS(5052), 1, anon_sym_where, - ACTIONS(5082), 1, + ACTIONS(5157), 1, anon_sym_PLUS, - ACTIONS(5340), 1, + ACTIONS(5383), 1, anon_sym_SEMI, - STATE(1317), 1, + STATE(698), 1, sym_declaration_list, - STATE(2956), 1, + STATE(3083), 1, sym_where_clause, - STATE(2360), 2, + STATE(2380), 2, sym_line_comment, sym_block_comment, - [74359] = 9, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [75310] = 9, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4971), 1, + ACTIONS(4928), 1, anon_sym_LBRACE, - ACTIONS(4989), 1, + ACTIONS(5052), 1, anon_sym_where, - ACTIONS(5082), 1, + ACTIONS(5157), 1, anon_sym_PLUS, - ACTIONS(5342), 1, + ACTIONS(5385), 1, anon_sym_SEMI, - STATE(1295), 1, + STATE(609), 1, sym_declaration_list, - STATE(2948), 1, + STATE(2931), 1, sym_where_clause, - STATE(2361), 2, + STATE(2381), 2, sym_line_comment, sym_block_comment, - [74388] = 9, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [75339] = 9, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4989), 1, - anon_sym_where, - ACTIONS(4993), 1, + ACTIONS(4984), 1, anon_sym_LBRACE, - ACTIONS(5082), 1, - anon_sym_PLUS, - ACTIONS(5344), 1, - anon_sym_SEMI, - STATE(738), 1, + ACTIONS(5052), 1, + anon_sym_where, + ACTIONS(5149), 1, + anon_sym_COLON, + STATE(1241), 1, sym_declaration_list, - STATE(2973), 1, + STATE(2599), 1, + sym_trait_bounds, + STATE(3283), 1, sym_where_clause, - STATE(2362), 2, + STATE(2382), 2, sym_line_comment, sym_block_comment, - [74417] = 9, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [75368] = 9, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4971), 1, - anon_sym_LBRACE, - ACTIONS(4989), 1, + ACTIONS(5052), 1, anon_sym_where, - ACTIONS(5082), 1, - anon_sym_PLUS, - ACTIONS(5346), 1, + ACTIONS(5149), 1, + anon_sym_COLON, + ACTIONS(5387), 1, anon_sym_SEMI, - STATE(1297), 1, - sym_declaration_list, - STATE(2949), 1, + ACTIONS(5389), 1, + anon_sym_EQ, + STATE(2885), 1, + sym_trait_bounds, + STATE(3302), 1, sym_where_clause, - STATE(2363), 2, + STATE(2383), 2, sym_line_comment, sym_block_comment, - [74446] = 9, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [75397] = 9, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4989), 1, - anon_sym_where, - ACTIONS(4993), 1, + ACTIONS(4984), 1, anon_sym_LBRACE, - ACTIONS(5082), 1, + ACTIONS(5052), 1, + anon_sym_where, + ACTIONS(5157), 1, anon_sym_PLUS, - ACTIONS(5348), 1, + ACTIONS(5391), 1, anon_sym_SEMI, - STATE(528), 1, + STATE(1248), 1, sym_declaration_list, - STATE(2914), 1, + STATE(2886), 1, sym_where_clause, - STATE(2364), 2, - sym_line_comment, - sym_block_comment, - [74475] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(1003), 1, - anon_sym_DOT_DOT, - STATE(2365), 2, + STATE(2384), 2, sym_line_comment, sym_block_comment, - ACTIONS(1005), 5, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_if, - [74496] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [75426] = 9, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3600), 1, - anon_sym_COLON, - ACTIONS(5350), 1, - anon_sym_EQ, - STATE(2366), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3598), 4, - anon_sym_PLUS, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_COLON_COLON, - [74519] = 9, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4989), 1, + ACTIONS(5050), 1, + anon_sym_LT, + ACTIONS(5052), 1, anon_sym_where, - ACTIONS(4993), 1, + ACTIONS(5393), 1, anon_sym_LBRACE, - ACTIONS(5128), 1, - anon_sym_COLON, - STATE(781), 1, - sym_declaration_list, - STATE(2582), 1, - sym_trait_bounds, - STATE(3308), 1, + STATE(1254), 1, + sym_enum_variant_list, + STATE(2643), 1, + sym_type_parameters, + STATE(3373), 1, sym_where_clause, - STATE(2367), 2, + STATE(2385), 2, sym_line_comment, sym_block_comment, - [74548] = 9, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [75455] = 9, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4987), 1, + ACTIONS(5048), 1, + anon_sym_LBRACE, + ACTIONS(5050), 1, anon_sym_LT, - ACTIONS(4989), 1, + ACTIONS(5052), 1, anon_sym_where, - ACTIONS(5043), 1, - anon_sym_LBRACE, - STATE(772), 1, + STATE(1259), 1, sym_field_declaration_list, - STATE(2647), 1, + STATE(2645), 1, sym_type_parameters, - STATE(3365), 1, + STATE(3396), 1, sym_where_clause, - STATE(2368), 2, + STATE(2386), 2, sym_line_comment, sym_block_comment, - [74577] = 9, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [75484] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4989), 1, + ACTIONS(4707), 1, + anon_sym_COLON_COLON, + ACTIONS(5036), 1, + anon_sym_for, + STATE(2387), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3505), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, anon_sym_where, - ACTIONS(4993), 1, + [75507] = 9, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(4928), 1, anon_sym_LBRACE, - ACTIONS(5082), 1, + ACTIONS(5052), 1, + anon_sym_where, + ACTIONS(5157), 1, anon_sym_PLUS, - ACTIONS(5352), 1, + ACTIONS(5395), 1, anon_sym_SEMI, - STATE(530), 1, + STATE(616), 1, sym_declaration_list, - STATE(2932), 1, + STATE(2876), 1, sym_where_clause, - STATE(2369), 2, + STATE(2388), 2, sym_line_comment, sym_block_comment, - [74606] = 8, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [75536] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5100), 1, - sym_identifier, - ACTIONS(5104), 1, - anon_sym_DOT_DOT, - ACTIONS(5108), 1, - anon_sym_ref, - ACTIONS(5110), 1, - sym_mutable_specifier, - STATE(2370), 2, + ACTIONS(4707), 1, + anon_sym_COLON_COLON, + ACTIONS(5042), 1, + anon_sym_for, + STATE(2389), 2, sym_line_comment, sym_block_comment, - STATE(3262), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [74633] = 9, - ACTIONS(103), 1, + ACTIONS(3505), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [75559] = 9, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(4928), 1, + anon_sym_LBRACE, + ACTIONS(5052), 1, + anon_sym_where, + ACTIONS(5157), 1, + anon_sym_PLUS, + ACTIONS(5397), 1, + anon_sym_SEMI, + STATE(642), 1, + sym_declaration_list, + STATE(3038), 1, + sym_where_clause, + STATE(2390), 2, + sym_line_comment, + sym_block_comment, + [75588] = 9, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5128), 1, + ACTIONS(5149), 1, anon_sym_COLON, - ACTIONS(5354), 1, + ACTIONS(5399), 1, anon_sym_PLUS, - ACTIONS(5356), 1, + ACTIONS(5401), 1, anon_sym_GT, - ACTIONS(5358), 1, + ACTIONS(5403), 1, anon_sym_COMMA, - STATE(2883), 1, + STATE(2904), 1, sym_trait_bounds, - STATE(2884), 1, + STATE(2905), 1, aux_sym_type_arguments_repeat1, - STATE(2371), 2, + STATE(2391), 2, sym_line_comment, sym_block_comment, - [74662] = 9, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [75617] = 9, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3140), 1, + ACTIONS(3166), 1, anon_sym_PLUS, - ACTIONS(5128), 1, + ACTIONS(5149), 1, anon_sym_COLON, - ACTIONS(5356), 1, + ACTIONS(5401), 1, anon_sym_GT, - ACTIONS(5358), 1, + ACTIONS(5403), 1, anon_sym_COMMA, - STATE(2883), 1, + STATE(2904), 1, sym_trait_bounds, - STATE(2884), 1, + STATE(2905), 1, aux_sym_type_arguments_repeat1, - STATE(2372), 2, + STATE(2392), 2, sym_line_comment, sym_block_comment, - [74691] = 8, - ACTIONS(19), 1, - anon_sym_LBRACE, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [75646] = 9, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3348), 1, - anon_sym_SQUOTE, - ACTIONS(5360), 1, - anon_sym_if, - STATE(3676), 1, - sym_label, - STATE(413), 2, - sym_if_expression, - sym_block, - STATE(2373), 2, + ACTIONS(4928), 1, + anon_sym_LBRACE, + ACTIONS(5052), 1, + anon_sym_where, + ACTIONS(5149), 1, + anon_sym_COLON, + STATE(633), 1, + sym_declaration_list, + STATE(2749), 1, + sym_trait_bounds, + STATE(3187), 1, + sym_where_clause, + STATE(2393), 2, sym_line_comment, sym_block_comment, - [74718] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [75675] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(1009), 1, - anon_sym_DOT_DOT, - STATE(2374), 2, + ACTIONS(3662), 2, + anon_sym_PLUS, + anon_sym_DASH_GT, + ACTIONS(5028), 2, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(5405), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(2394), 2, sym_line_comment, sym_block_comment, - ACTIONS(1011), 5, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_if, - [74739] = 8, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [75698] = 8, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, + ACTIONS(348), 1, anon_sym_LBRACE, - ACTIONS(3348), 1, + ACTIONS(3386), 1, anon_sym_SQUOTE, - ACTIONS(5362), 1, + ACTIONS(5408), 1, anon_sym_if, - STATE(3664), 1, + STATE(3693), 1, sym_label, - STATE(1493), 2, + STATE(1467), 2, sym_if_expression, sym_block, - STATE(2375), 2, + STATE(2395), 2, sym_line_comment, sym_block_comment, - [74766] = 9, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [75725] = 9, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4989), 1, - anon_sym_where, - ACTIONS(4993), 1, + ACTIONS(4984), 1, anon_sym_LBRACE, - ACTIONS(5082), 1, + ACTIONS(5052), 1, + anon_sym_where, + ACTIONS(5157), 1, anon_sym_PLUS, - ACTIONS(5364), 1, + ACTIONS(5410), 1, anon_sym_SEMI, - STATE(532), 1, + STATE(1310), 1, sym_declaration_list, - STATE(2936), 1, + STATE(2922), 1, sym_where_clause, - STATE(2376), 2, + STATE(2396), 2, sym_line_comment, sym_block_comment, - [74795] = 9, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [75754] = 9, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4971), 1, + ACTIONS(4984), 1, anon_sym_LBRACE, - ACTIONS(4989), 1, + ACTIONS(5052), 1, anon_sym_where, - ACTIONS(5082), 1, + ACTIONS(5157), 1, anon_sym_PLUS, - ACTIONS(5366), 1, + ACTIONS(5412), 1, anon_sym_SEMI, - STATE(1354), 1, + STATE(1326), 1, sym_declaration_list, - STATE(2962), 1, + STATE(2925), 1, sym_where_clause, - STATE(2377), 2, + STATE(2397), 2, sym_line_comment, sym_block_comment, - [74824] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [75783] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4943), 2, + ACTIONS(4950), 2, anon_sym_COLON, anon_sym_PIPE, - STATE(2378), 2, + STATE(2398), 2, sym_line_comment, sym_block_comment, - ACTIONS(3652), 4, + ACTIONS(3688), 4, anon_sym_RPAREN, anon_sym_PLUS, anon_sym_COMMA, anon_sym_DASH_GT, - [74845] = 9, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [75804] = 9, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4971), 1, + ACTIONS(4984), 1, anon_sym_LBRACE, - ACTIONS(4989), 1, + ACTIONS(5052), 1, anon_sym_where, - ACTIONS(5082), 1, + ACTIONS(5157), 1, anon_sym_PLUS, - ACTIONS(5368), 1, + ACTIONS(5414), 1, anon_sym_SEMI, - STATE(1188), 1, + STATE(1087), 1, sym_declaration_list, - STATE(2902), 1, + STATE(2932), 1, sym_where_clause, - STATE(2379), 2, + STATE(2399), 2, sym_line_comment, sym_block_comment, - [74874] = 9, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [75833] = 9, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4989), 1, - anon_sym_where, - ACTIONS(4993), 1, + ACTIONS(4984), 1, anon_sym_LBRACE, - ACTIONS(5082), 1, - anon_sym_PLUS, - ACTIONS(5370), 1, - anon_sym_SEMI, - STATE(780), 1, + ACTIONS(5052), 1, + anon_sym_where, + ACTIONS(5149), 1, + anon_sym_COLON, + STATE(1358), 1, sym_declaration_list, - STATE(2829), 1, + STATE(2589), 1, + sym_trait_bounds, + STATE(3242), 1, sym_where_clause, - STATE(2380), 2, + STATE(2400), 2, sym_line_comment, sym_block_comment, - [74903] = 9, - ACTIONS(103), 1, + [75862] = 5, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(4752), 1, + anon_sym_DOT_DOT, + STATE(2401), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4750), 5, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_if, + [75883] = 9, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4989), 1, + ACTIONS(5050), 1, + anon_sym_LT, + ACTIONS(5052), 1, anon_sym_where, - ACTIONS(4993), 1, + ACTIONS(5416), 1, anon_sym_LBRACE, - ACTIONS(5082), 1, - anon_sym_PLUS, - ACTIONS(5372), 1, - anon_sym_SEMI, - STATE(703), 1, - sym_declaration_list, - STATE(3089), 1, + STATE(552), 1, + sym_enum_variant_list, + STATE(2793), 1, + sym_type_parameters, + STATE(3402), 1, sym_where_clause, - STATE(2381), 2, + STATE(2402), 2, sym_line_comment, sym_block_comment, - [74932] = 9, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [75912] = 9, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4971), 1, + ACTIONS(4928), 1, anon_sym_LBRACE, - ACTIONS(4989), 1, + ACTIONS(5052), 1, anon_sym_where, - ACTIONS(5082), 1, + ACTIONS(5157), 1, anon_sym_PLUS, - ACTIONS(5374), 1, + ACTIONS(5418), 1, anon_sym_SEMI, - STATE(1192), 1, + STATE(700), 1, sym_declaration_list, - STATE(2904), 1, + STATE(3093), 1, sym_where_clause, - STATE(2382), 2, + STATE(2403), 2, sym_line_comment, sym_block_comment, - [74961] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [75941] = 9, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3652), 2, + ACTIONS(4984), 1, + anon_sym_LBRACE, + ACTIONS(5052), 1, + anon_sym_where, + ACTIONS(5157), 1, anon_sym_PLUS, - anon_sym_DASH_GT, - ACTIONS(4943), 2, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(5376), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(2383), 2, + ACTIONS(5420), 1, + anon_sym_SEMI, + STATE(1179), 1, + sym_declaration_list, + STATE(2953), 1, + sym_where_clause, + STATE(2404), 2, sym_line_comment, sym_block_comment, - [74984] = 9, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [75970] = 9, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4989), 1, - anon_sym_where, - ACTIONS(4993), 1, + ACTIONS(4984), 1, anon_sym_LBRACE, - ACTIONS(5082), 1, + ACTIONS(5052), 1, + anon_sym_where, + ACTIONS(5157), 1, anon_sym_PLUS, - ACTIONS(5379), 1, + ACTIONS(5422), 1, anon_sym_SEMI, - STATE(613), 1, + STATE(1181), 1, sym_declaration_list, - STATE(3045), 1, + STATE(2954), 1, sym_where_clause, - STATE(2384), 2, + STATE(2405), 2, sym_line_comment, sym_block_comment, - [75013] = 9, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [75999] = 9, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4971), 1, + ACTIONS(4984), 1, anon_sym_LBRACE, - ACTIONS(4989), 1, + ACTIONS(5052), 1, anon_sym_where, - ACTIONS(5128), 1, - anon_sym_COLON, - STATE(1214), 1, + ACTIONS(5157), 1, + anon_sym_PLUS, + ACTIONS(5424), 1, + anon_sym_SEMI, + STATE(1185), 1, sym_declaration_list, - STATE(2663), 1, - sym_trait_bounds, - STATE(3211), 1, + STATE(2955), 1, sym_where_clause, - STATE(2385), 2, + STATE(2406), 2, sym_line_comment, sym_block_comment, - [75042] = 9, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [76028] = 9, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4971), 1, + ACTIONS(4984), 1, anon_sym_LBRACE, - ACTIONS(4989), 1, + ACTIONS(5052), 1, anon_sym_where, - ACTIONS(5082), 1, + ACTIONS(5157), 1, anon_sym_PLUS, - ACTIONS(5381), 1, + ACTIONS(5426), 1, anon_sym_SEMI, - STATE(1356), 1, + STATE(1188), 1, sym_declaration_list, - STATE(2963), 1, + STATE(2956), 1, sym_where_clause, - STATE(2386), 2, + STATE(2407), 2, sym_line_comment, sym_block_comment, - [75071] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [76057] = 9, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4586), 1, - anon_sym_DOT_DOT, - ACTIONS(5210), 1, - anon_sym_COLON_COLON, - ACTIONS(4588), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(5383), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(2387), 2, + ACTIONS(5052), 1, + anon_sym_where, + ACTIONS(5149), 1, + anon_sym_COLON, + ACTIONS(5428), 1, + anon_sym_SEMI, + ACTIONS(5430), 1, + anon_sym_EQ, + STATE(3009), 1, + sym_trait_bounds, + STATE(3202), 1, + sym_where_clause, + STATE(2408), 2, sym_line_comment, sym_block_comment, - [75096] = 9, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [76086] = 9, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4987), 1, - anon_sym_LT, - ACTIONS(4989), 1, - anon_sym_where, - ACTIONS(5385), 1, + ACTIONS(4984), 1, anon_sym_LBRACE, - STATE(630), 1, - sym_enum_variant_list, - STATE(2684), 1, - sym_type_parameters, - STATE(3344), 1, + ACTIONS(5052), 1, + anon_sym_where, + ACTIONS(5149), 1, + anon_sym_COLON, + STATE(1278), 1, + sym_declaration_list, + STATE(2681), 1, + sym_trait_bounds, + STATE(3389), 1, sym_where_clause, - STATE(2388), 2, + STATE(2409), 2, sym_line_comment, sym_block_comment, - [75125] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [76115] = 9, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4721), 1, - anon_sym_DOT_DOT, - STATE(2389), 2, + ACTIONS(4928), 1, + anon_sym_LBRACE, + ACTIONS(5052), 1, + anon_sym_where, + ACTIONS(5157), 1, + anon_sym_PLUS, + ACTIONS(5432), 1, + anon_sym_SEMI, + STATE(498), 1, + sym_declaration_list, + STATE(3128), 1, + sym_where_clause, + STATE(2410), 2, sym_line_comment, sym_block_comment, - ACTIONS(4719), 5, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_if, - [75146] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [76144] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4660), 1, + ACTIONS(4707), 1, anon_sym_COLON_COLON, - ACTIONS(4977), 1, + ACTIONS(5114), 1, anon_sym_for, - STATE(2390), 2, + STATE(2411), 2, sym_line_comment, sym_block_comment, - ACTIONS(3425), 4, + ACTIONS(3505), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [75169] = 8, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [76167] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4671), 1, - anon_sym_COLON_COLON, - ACTIONS(5387), 1, - anon_sym_GT, - ACTIONS(5389), 1, + ACTIONS(5405), 1, + anon_sym_RBRACK, + ACTIONS(5028), 2, + anon_sym_PIPE, anon_sym_COMMA, - STATE(2964), 1, - aux_sym_type_parameters_repeat1, - ACTIONS(3425), 2, - anon_sym_PLUS, - anon_sym_as, - STATE(2391), 2, + STATE(2412), 2, sym_line_comment, sym_block_comment, - [75196] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + ACTIONS(3662), 3, + anon_sym_SEMI, + anon_sym_PLUS, + anon_sym_DASH_GT, + [76190] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4660), 1, - anon_sym_COLON_COLON, - ACTIONS(5055), 1, - anon_sym_for, - STATE(2392), 2, + STATE(2413), 2, sym_line_comment, sym_block_comment, - ACTIONS(3425), 4, - anon_sym_SEMI, + ACTIONS(5085), 6, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + [76209] = 9, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(4984), 1, anon_sym_LBRACE, + ACTIONS(5052), 1, + anon_sym_where, + ACTIONS(5157), 1, anon_sym_PLUS, + ACTIONS(5434), 1, + anon_sym_SEMI, + STATE(1306), 1, + sym_declaration_list, + STATE(2970), 1, + sym_where_clause, + STATE(2414), 2, + sym_line_comment, + sym_block_comment, + [76238] = 9, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(4984), 1, + anon_sym_LBRACE, + ACTIONS(5052), 1, anon_sym_where, - [75219] = 9, - ACTIONS(103), 1, + ACTIONS(5157), 1, + anon_sym_PLUS, + ACTIONS(5436), 1, + anon_sym_SEMI, + STATE(1308), 1, + sym_declaration_list, + STATE(2971), 1, + sym_where_clause, + STATE(2415), 2, + sym_line_comment, + sym_block_comment, + [76267] = 9, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(4928), 1, + anon_sym_LBRACE, + ACTIONS(5052), 1, + anon_sym_where, + ACTIONS(5157), 1, + anon_sym_PLUS, + ACTIONS(5438), 1, + anon_sym_SEMI, + STATE(500), 1, + sym_declaration_list, + STATE(3132), 1, + sym_where_clause, + STATE(2416), 2, + sym_line_comment, + sym_block_comment, + [76296] = 9, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4989), 1, + ACTIONS(4984), 1, + anon_sym_LBRACE, + ACTIONS(5052), 1, anon_sym_where, - ACTIONS(4993), 1, + ACTIONS(5157), 1, + anon_sym_PLUS, + ACTIONS(5440), 1, + anon_sym_SEMI, + STATE(1331), 1, + sym_declaration_list, + STATE(2972), 1, + sym_where_clause, + STATE(2417), 2, + sym_line_comment, + sym_block_comment, + [76325] = 9, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(4984), 1, anon_sym_LBRACE, - ACTIONS(5082), 1, + ACTIONS(5052), 1, + anon_sym_where, + ACTIONS(5157), 1, anon_sym_PLUS, - ACTIONS(5391), 1, + ACTIONS(5442), 1, anon_sym_SEMI, - STATE(705), 1, + STATE(1334), 1, sym_declaration_list, - STATE(3093), 1, + STATE(2973), 1, sym_where_clause, - STATE(2393), 2, + STATE(2418), 2, sym_line_comment, sym_block_comment, - [75248] = 9, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [76354] = 9, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4989), 1, - anon_sym_where, - ACTIONS(4993), 1, + ACTIONS(4984), 1, anon_sym_LBRACE, - ACTIONS(5082), 1, + ACTIONS(5052), 1, + anon_sym_where, + ACTIONS(5157), 1, anon_sym_PLUS, - ACTIONS(5393), 1, + ACTIONS(5444), 1, anon_sym_SEMI, - STATE(634), 1, + STATE(1337), 1, sym_declaration_list, - STATE(3028), 1, + STATE(2975), 1, sym_where_clause, - STATE(2394), 2, + STATE(2419), 2, sym_line_comment, sym_block_comment, - [75277] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [76383] = 9, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4586), 1, - anon_sym_DOT_DOT, - ACTIONS(5210), 1, - anon_sym_COLON_COLON, - ACTIONS(4588), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(5328), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(2395), 2, - sym_line_comment, - sym_block_comment, - [75302] = 9, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4989), 1, - anon_sym_where, - ACTIONS(4993), 1, + ACTIONS(4984), 1, anon_sym_LBRACE, - ACTIONS(5082), 1, + ACTIONS(5052), 1, + anon_sym_where, + ACTIONS(5157), 1, anon_sym_PLUS, - ACTIONS(5395), 1, + ACTIONS(5446), 1, anon_sym_SEMI, - STATE(609), 1, + STATE(1343), 1, sym_declaration_list, - STATE(3131), 1, + STATE(2976), 1, sym_where_clause, - STATE(2396), 2, + STATE(2420), 2, sym_line_comment, sym_block_comment, - [75331] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [76412] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(997), 1, + ACTIONS(1006), 1, anon_sym_DOT_DOT, - STATE(2397), 2, + STATE(2421), 2, sym_line_comment, sym_block_comment, - ACTIONS(999), 5, + ACTIONS(1008), 5, anon_sym_EQ_GT, anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_if, - [75352] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [76433] = 5, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4660), 1, - anon_sym_COLON_COLON, - ACTIONS(4979), 1, - anon_sym_for, - STATE(2398), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3425), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [75375] = 5, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(1017), 1, + ACTIONS(1012), 1, anon_sym_DOT_DOT, - STATE(2399), 2, + STATE(2422), 2, sym_line_comment, sym_block_comment, - ACTIONS(1019), 5, + ACTIONS(1014), 5, anon_sym_EQ_GT, anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_if, - [75396] = 9, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [76454] = 9, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4989), 1, + ACTIONS(4984), 1, + anon_sym_LBRACE, + ACTIONS(5052), 1, anon_sym_where, - ACTIONS(4993), 1, + ACTIONS(5157), 1, + anon_sym_PLUS, + ACTIONS(5448), 1, + anon_sym_SEMI, + STATE(1124), 1, + sym_declaration_list, + STATE(2983), 1, + sym_where_clause, + STATE(2423), 2, + sym_line_comment, + sym_block_comment, + [76483] = 9, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(4984), 1, anon_sym_LBRACE, - ACTIONS(5082), 1, + ACTIONS(5052), 1, + anon_sym_where, + ACTIONS(5157), 1, anon_sym_PLUS, - ACTIONS(5397), 1, + ACTIONS(5450), 1, anon_sym_SEMI, - STATE(570), 1, + STATE(1126), 1, sym_declaration_list, - STATE(3004), 1, + STATE(2984), 1, sym_where_clause, - STATE(2400), 2, + STATE(2424), 2, sym_line_comment, sym_block_comment, - [75425] = 6, - ACTIONS(103), 1, + [76512] = 9, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(4928), 1, + anon_sym_LBRACE, + ACTIONS(5052), 1, + anon_sym_where, + ACTIONS(5157), 1, + anon_sym_PLUS, + ACTIONS(5452), 1, + anon_sym_SEMI, + STATE(618), 1, + sym_declaration_list, + STATE(2890), 1, + sym_where_clause, + STATE(2425), 2, + sym_line_comment, + sym_block_comment, + [76541] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4731), 1, + ACTIONS(1022), 1, anon_sym_DOT_DOT, - ACTIONS(4733), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2401), 2, + STATE(2426), 2, sym_line_comment, sym_block_comment, - ACTIONS(4576), 3, + ACTIONS(1024), 5, anon_sym_EQ_GT, anon_sym_PIPE, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, anon_sym_if, - [75448] = 9, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [76562] = 9, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4971), 1, + ACTIONS(4928), 1, anon_sym_LBRACE, - ACTIONS(4989), 1, + ACTIONS(5052), 1, anon_sym_where, - ACTIONS(5082), 1, + ACTIONS(5157), 1, anon_sym_PLUS, - ACTIONS(5399), 1, + ACTIONS(5454), 1, anon_sym_SEMI, - STATE(1145), 1, + STATE(620), 1, sym_declaration_list, - STATE(2855), 1, + STATE(2897), 1, sym_where_clause, - STATE(2402), 2, + STATE(2427), 2, sym_line_comment, sym_block_comment, - [75477] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [76591] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4711), 1, + ACTIONS(1026), 1, anon_sym_DOT_DOT, - STATE(2403), 2, + STATE(2428), 2, sym_line_comment, sym_block_comment, - ACTIONS(4709), 5, + ACTIONS(1028), 5, anon_sym_EQ_GT, anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_if, - [75498] = 9, - ACTIONS(103), 1, + [76612] = 6, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(4769), 1, + anon_sym_DOT_DOT, + ACTIONS(4771), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2429), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4608), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [76635] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5128), 1, + ACTIONS(3636), 1, anon_sym_COLON, - ACTIONS(5354), 1, + ACTIONS(5456), 1, + anon_sym_EQ, + STATE(2430), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3634), 4, anon_sym_PLUS, - ACTIONS(5401), 1, anon_sym_GT, - ACTIONS(5403), 1, anon_sym_COMMA, - STATE(3047), 1, - sym_trait_bounds, - STATE(3048), 1, - aux_sym_type_arguments_repeat1, - STATE(2404), 2, - sym_line_comment, - sym_block_comment, - [75527] = 9, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + anon_sym_COLON_COLON, + [76658] = 9, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3140), 1, - anon_sym_PLUS, - ACTIONS(5128), 1, + ACTIONS(5149), 1, anon_sym_COLON, - ACTIONS(5401), 1, + ACTIONS(5399), 1, + anon_sym_PLUS, + ACTIONS(5458), 1, anon_sym_GT, - ACTIONS(5403), 1, + ACTIONS(5460), 1, anon_sym_COMMA, - STATE(3047), 1, + STATE(3018), 1, sym_trait_bounds, - STATE(3048), 1, + STATE(3019), 1, aux_sym_type_arguments_repeat1, - STATE(2405), 2, + STATE(2431), 2, sym_line_comment, sym_block_comment, - [75556] = 9, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [76687] = 9, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4989), 1, - anon_sym_where, - ACTIONS(4993), 1, - anon_sym_LBRACE, - ACTIONS(5128), 1, + ACTIONS(3166), 1, + anon_sym_PLUS, + ACTIONS(5149), 1, anon_sym_COLON, - STATE(764), 1, - sym_declaration_list, - STATE(2810), 1, + ACTIONS(5458), 1, + anon_sym_GT, + ACTIONS(5460), 1, + anon_sym_COMMA, + STATE(3018), 1, sym_trait_bounds, - STATE(3232), 1, - sym_where_clause, - STATE(2406), 2, - sym_line_comment, - sym_block_comment, - [75585] = 9, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4987), 1, - anon_sym_LT, - ACTIONS(4989), 1, - anon_sym_where, - ACTIONS(5385), 1, - anon_sym_LBRACE, - STATE(674), 1, - sym_enum_variant_list, - STATE(2801), 1, - sym_type_parameters, - STATE(3167), 1, - sym_where_clause, - STATE(2407), 2, + STATE(3019), 1, + aux_sym_type_arguments_repeat1, + STATE(2432), 2, sym_line_comment, sym_block_comment, - [75614] = 9, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [76716] = 9, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4985), 1, - anon_sym_LBRACE, - ACTIONS(4987), 1, - anon_sym_LT, - ACTIONS(4989), 1, - anon_sym_where, - STATE(1127), 1, - sym_field_declaration_list, - STATE(2680), 1, - sym_type_parameters, - STATE(3312), 1, - sym_where_clause, - STATE(2408), 2, - sym_line_comment, - sym_block_comment, - [75643] = 5, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5407), 1, - anon_sym_COMMA, - STATE(2409), 3, - sym_line_comment, - sym_block_comment, - aux_sym_where_clause_repeat1, - ACTIONS(5405), 4, - anon_sym_SEMI, + ACTIONS(4928), 1, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - [75664] = 9, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4989), 1, + ACTIONS(5052), 1, anon_sym_where, - ACTIONS(4993), 1, - anon_sym_LBRACE, - ACTIONS(5082), 1, + ACTIONS(5157), 1, anon_sym_PLUS, - ACTIONS(5410), 1, + ACTIONS(5462), 1, anon_sym_SEMI, - STATE(526), 1, + STATE(613), 1, sym_declaration_list, - STATE(2900), 1, + STATE(2869), 1, sym_where_clause, - STATE(2410), 2, + STATE(2433), 2, sym_line_comment, sym_block_comment, - [75693] = 9, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [76745] = 8, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4989), 1, - anon_sym_where, - ACTIONS(4993), 1, - anon_sym_LBRACE, - ACTIONS(5082), 1, - anon_sym_PLUS, - ACTIONS(5412), 1, - anon_sym_SEMI, - STATE(507), 1, - sym_declaration_list, - STATE(2826), 1, - sym_where_clause, - STATE(2411), 2, - sym_line_comment, - sym_block_comment, - [75722] = 9, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4971), 1, + ACTIONS(1366), 1, anon_sym_LBRACE, - ACTIONS(4989), 1, - anon_sym_where, - ACTIONS(5082), 1, - anon_sym_PLUS, - ACTIONS(5414), 1, - anon_sym_SEMI, - STATE(1311), 1, - sym_declaration_list, - STATE(2951), 1, - sym_where_clause, - STATE(2412), 2, + ACTIONS(3386), 1, + anon_sym_SQUOTE, + ACTIONS(5464), 1, + anon_sym_if, + STATE(3747), 1, + sym_label, + STATE(483), 2, + sym_if_expression, + sym_block, + STATE(2434), 2, sym_line_comment, sym_block_comment, - [75751] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [76772] = 9, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(5418), 1, - anon_sym_COMMA, - STATE(2425), 1, - aux_sym_where_clause_repeat1, - STATE(2413), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(5416), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - [75774] = 9, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4971), 1, + ACTIONS(4928), 1, anon_sym_LBRACE, - ACTIONS(4989), 1, + ACTIONS(5052), 1, anon_sym_where, - ACTIONS(5082), 1, - anon_sym_PLUS, - ACTIONS(5420), 1, - anon_sym_SEMI, - STATE(1313), 1, + ACTIONS(5149), 1, + anon_sym_COLON, + STATE(549), 1, sym_declaration_list, - STATE(2952), 1, + STATE(2696), 1, + sym_trait_bounds, + STATE(3446), 1, sym_where_clause, - STATE(2414), 2, + STATE(2435), 2, sym_line_comment, sym_block_comment, - [75803] = 9, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [76801] = 9, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5128), 1, + ACTIONS(5149), 1, anon_sym_COLON, - ACTIONS(5354), 1, + ACTIONS(5399), 1, anon_sym_PLUS, - ACTIONS(5422), 1, + ACTIONS(5466), 1, anon_sym_GT, - ACTIONS(5424), 1, + ACTIONS(5468), 1, anon_sym_COMMA, - STATE(2995), 1, + STATE(3059), 1, sym_trait_bounds, - STATE(2996), 1, + STATE(3060), 1, aux_sym_type_arguments_repeat1, - STATE(2415), 2, + STATE(2436), 2, sym_line_comment, sym_block_comment, - [75832] = 9, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [76830] = 9, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3140), 1, + ACTIONS(3166), 1, anon_sym_PLUS, - ACTIONS(5128), 1, + ACTIONS(5149), 1, anon_sym_COLON, - ACTIONS(5422), 1, + ACTIONS(5466), 1, anon_sym_GT, - ACTIONS(5424), 1, + ACTIONS(5468), 1, anon_sym_COMMA, - STATE(2995), 1, + STATE(3059), 1, sym_trait_bounds, - STATE(2996), 1, + STATE(3060), 1, aux_sym_type_arguments_repeat1, - STATE(2416), 2, + STATE(2437), 2, sym_line_comment, sym_block_comment, - [75861] = 9, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [76859] = 8, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4971), 1, - anon_sym_LBRACE, - ACTIONS(4989), 1, - anon_sym_where, - ACTIONS(5128), 1, - anon_sym_COLON, - STATE(1155), 1, - sym_declaration_list, - STATE(2752), 1, - sym_trait_bounds, - STATE(3251), 1, - sym_where_clause, - STATE(2417), 2, - sym_line_comment, - sym_block_comment, - [75890] = 9, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4971), 1, - anon_sym_LBRACE, - ACTIONS(4989), 1, - anon_sym_where, - ACTIONS(5082), 1, + ACTIONS(4728), 1, + anon_sym_COLON_COLON, + ACTIONS(5470), 1, + anon_sym_GT, + ACTIONS(5472), 1, + anon_sym_COMMA, + STATE(2916), 1, + aux_sym_type_parameters_repeat1, + ACTIONS(3505), 2, anon_sym_PLUS, - ACTIONS(5426), 1, - anon_sym_SEMI, - STATE(1315), 1, - sym_declaration_list, - STATE(2955), 1, - sym_where_clause, - STATE(2418), 2, + anon_sym_as, + STATE(2438), 2, sym_line_comment, sym_block_comment, - [75919] = 8, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [76886] = 8, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(1301), 1, + ACTIONS(412), 1, anon_sym_LBRACE, - ACTIONS(3348), 1, + ACTIONS(3386), 1, anon_sym_SQUOTE, - ACTIONS(5428), 1, + ACTIONS(5474), 1, anon_sym_if, - STATE(3717), 1, + STATE(3748), 1, sym_label, - STATE(473), 2, + STATE(1826), 2, sym_if_expression, sym_block, - STATE(2419), 2, + STATE(2439), 2, sym_line_comment, sym_block_comment, - [75946] = 9, - ACTIONS(103), 1, + [76913] = 5, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(4786), 1, + anon_sym_DOT_DOT, + STATE(2440), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4784), 5, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_if, + [76934] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4989), 1, - anon_sym_where, - ACTIONS(5128), 1, + ACTIONS(3688), 2, + anon_sym_PLUS, + anon_sym_DASH_GT, + ACTIONS(4950), 2, anon_sym_COLON, - ACTIONS(5430), 1, - anon_sym_SEMI, - ACTIONS(5432), 1, - anon_sym_EQ, - STATE(2861), 1, - sym_trait_bounds, - STATE(3263), 1, - sym_where_clause, - STATE(2420), 2, + anon_sym_PIPE, + ACTIONS(5476), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(2441), 2, sym_line_comment, sym_block_comment, - [75975] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [76957] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4586), 1, + ACTIONS(4618), 1, anon_sym_DOT_DOT, - ACTIONS(5274), 1, + ACTIONS(5313), 1, anon_sym_COLON_COLON, - ACTIONS(4588), 2, + ACTIONS(4620), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(5383), 2, + ACTIONS(5367), 2, anon_sym_RPAREN, anon_sym_COMMA, - STATE(2421), 2, + STATE(2442), 2, sym_line_comment, sym_block_comment, - [76000] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [76982] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(2422), 2, + ACTIONS(5479), 1, + anon_sym_COMMA, + STATE(2458), 1, + aux_sym_where_clause_repeat1, + STATE(2443), 2, sym_line_comment, sym_block_comment, - ACTIONS(5027), 6, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(3531), 4, + anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_RBRACE, - [76019] = 9, - ACTIONS(103), 1, + anon_sym_EQ, + anon_sym_SQUOTE, + [77005] = 8, + ACTIONS(19), 1, + anon_sym_LBRACE, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(3386), 1, + anon_sym_SQUOTE, + ACTIONS(5481), 1, + anon_sym_if, + STATE(3582), 1, + sym_label, + STATE(409), 2, + sym_if_expression, + sym_block, + STATE(2444), 2, + sym_line_comment, + sym_block_comment, + [77032] = 8, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(5177), 1, + sym_identifier, + ACTIONS(5181), 1, + anon_sym_DOT_DOT, + ACTIONS(5185), 1, + anon_sym_ref, + ACTIONS(5187), 1, + sym_mutable_specifier, + STATE(2445), 2, + sym_line_comment, + sym_block_comment, + STATE(3321), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [77059] = 9, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4971), 1, + ACTIONS(4928), 1, anon_sym_LBRACE, - ACTIONS(4989), 1, + ACTIONS(5052), 1, anon_sym_where, - ACTIONS(5082), 1, + ACTIONS(5157), 1, anon_sym_PLUS, - ACTIONS(5434), 1, + ACTIONS(5483), 1, anon_sym_SEMI, - STATE(1162), 1, + STATE(765), 1, sym_declaration_list, - STATE(2862), 1, + STATE(2896), 1, sym_where_clause, - STATE(2423), 2, + STATE(2446), 2, sym_line_comment, sym_block_comment, - [76048] = 9, - ACTIONS(103), 1, + [77088] = 6, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(5476), 1, + anon_sym_RBRACK, + ACTIONS(4950), 2, + anon_sym_PIPE, + anon_sym_COMMA, + STATE(2447), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3688), 3, + anon_sym_SEMI, + anon_sym_PLUS, + anon_sym_DASH_GT, + [77111] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4989), 1, - anon_sym_where, - ACTIONS(4993), 1, + ACTIONS(4707), 1, + anon_sym_COLON_COLON, + ACTIONS(5076), 1, + anon_sym_for, + STATE(2448), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3505), 4, + anon_sym_SEMI, anon_sym_LBRACE, - ACTIONS(5082), 1, anon_sym_PLUS, - ACTIONS(5436), 1, - anon_sym_SEMI, - STATE(572), 1, - sym_declaration_list, - STATE(3013), 1, - sym_where_clause, - STATE(2424), 2, + anon_sym_where, + [77134] = 7, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(4618), 1, + anon_sym_DOT_DOT, + ACTIONS(5313), 1, + anon_sym_COLON_COLON, + ACTIONS(4620), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(5485), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(2449), 2, sym_line_comment, sym_block_comment, - [76077] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [77159] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5438), 1, + ACTIONS(5489), 1, anon_sym_COMMA, - STATE(2409), 1, + STATE(2443), 1, aux_sym_where_clause_repeat1, - STATE(2425), 2, + STATE(2450), 2, sym_line_comment, sym_block_comment, - ACTIONS(3387), 4, + ACTIONS(5487), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_EQ, anon_sym_SQUOTE, - [76100] = 9, - ACTIONS(103), 1, + [77182] = 5, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(5028), 2, + anon_sym_COLON, + anon_sym_PIPE, + STATE(2451), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3662), 4, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH_GT, + [77203] = 9, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4987), 1, + ACTIONS(5050), 1, anon_sym_LT, - ACTIONS(4989), 1, + ACTIONS(5052), 1, anon_sym_where, - ACTIONS(5440), 1, + ACTIONS(5393), 1, anon_sym_LBRACE, - STATE(1166), 1, + STATE(1186), 1, sym_enum_variant_list, - STATE(2768), 1, + STATE(2683), 1, sym_type_parameters, - STATE(3311), 1, + STATE(3432), 1, sym_where_clause, - STATE(2426), 2, + STATE(2452), 2, sym_line_comment, sym_block_comment, - [76129] = 9, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [77232] = 9, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4989), 1, - anon_sym_where, - ACTIONS(4993), 1, + ACTIONS(4984), 1, anon_sym_LBRACE, - ACTIONS(5082), 1, + ACTIONS(5052), 1, + anon_sym_where, + ACTIONS(5157), 1, anon_sym_PLUS, - ACTIONS(5442), 1, + ACTIONS(5491), 1, anon_sym_SEMI, - STATE(655), 1, + STATE(1192), 1, sym_declaration_list, - STATE(2968), 1, + STATE(3151), 1, sym_where_clause, - STATE(2427), 2, + STATE(2453), 2, + sym_line_comment, + sym_block_comment, + [77261] = 9, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(4928), 1, + anon_sym_LBRACE, + ACTIONS(5052), 1, + anon_sym_where, + ACTIONS(5149), 1, + anon_sym_COLON, + STATE(780), 1, + sym_declaration_list, + STATE(2719), 1, + sym_trait_bounds, + STATE(3170), 1, + sym_where_clause, + STATE(2454), 2, + sym_line_comment, + sym_block_comment, + [77290] = 9, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(5050), 1, + anon_sym_LT, + ACTIONS(5052), 1, + anon_sym_where, + ACTIONS(5110), 1, + anon_sym_LBRACE, + STATE(659), 1, + sym_field_declaration_list, + STATE(2748), 1, + sym_type_parameters, + STATE(3285), 1, + sym_where_clause, + STATE(2455), 2, + sym_line_comment, + sym_block_comment, + [77319] = 7, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(4618), 1, + anon_sym_DOT_DOT, + ACTIONS(5303), 1, + anon_sym_COLON_COLON, + ACTIONS(4620), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(5367), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(2456), 2, + sym_line_comment, + sym_block_comment, + [77344] = 9, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(5048), 1, + anon_sym_LBRACE, + ACTIONS(5050), 1, + anon_sym_LT, + ACTIONS(5052), 1, + anon_sym_where, + STATE(1201), 1, + sym_field_declaration_list, + STATE(2668), 1, + sym_type_parameters, + STATE(3225), 1, + sym_where_clause, + STATE(2457), 2, sym_line_comment, sym_block_comment, - [76158] = 9, - ACTIONS(103), 1, + [77373] = 5, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(5495), 1, + anon_sym_COMMA, + STATE(2458), 3, + sym_line_comment, + sym_block_comment, + aux_sym_where_clause_repeat1, + ACTIONS(5493), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_SQUOTE, + [77394] = 9, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4989), 1, - anon_sym_where, - ACTIONS(4993), 1, + ACTIONS(4928), 1, anon_sym_LBRACE, - ACTIONS(5082), 1, + ACTIONS(5052), 1, + anon_sym_where, + ACTIONS(5157), 1, anon_sym_PLUS, - ACTIONS(5444), 1, + ACTIONS(5498), 1, anon_sym_SEMI, - STATE(509), 1, + STATE(687), 1, sym_declaration_list, - STATE(2827), 1, + STATE(3120), 1, sym_where_clause, - STATE(2428), 2, + STATE(2459), 2, sym_line_comment, sym_block_comment, - [76187] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [77423] = 7, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3626), 2, - anon_sym_PLUS, - anon_sym_DASH_GT, - ACTIONS(4925), 2, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(5446), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(2429), 2, - sym_line_comment, - sym_block_comment, - [76210] = 6, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4660), 1, + ACTIONS(4618), 1, + anon_sym_DOT_DOT, + ACTIONS(5303), 1, anon_sym_COLON_COLON, - ACTIONS(5035), 1, - anon_sym_for, - STATE(2430), 2, + ACTIONS(4620), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(5485), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(2460), 2, sym_line_comment, sym_block_comment, - ACTIONS(3425), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [76233] = 9, - ACTIONS(27), 1, - anon_sym_PIPE, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [77448] = 9, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(5449), 1, - sym_identifier, - ACTIONS(5451), 1, - anon_sym_ref, - ACTIONS(5453), 1, - sym_mutable_specifier, - ACTIONS(5455), 1, - anon_sym_move, - STATE(218), 1, - sym_closure_parameters, - STATE(2431), 2, - sym_line_comment, - sym_block_comment, - [76262] = 9, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5128), 1, + ACTIONS(5149), 1, anon_sym_COLON, - ACTIONS(5354), 1, + ACTIONS(5399), 1, anon_sym_PLUS, - ACTIONS(5457), 1, + ACTIONS(5500), 1, anon_sym_GT, - ACTIONS(5459), 1, + ACTIONS(5502), 1, anon_sym_COMMA, - STATE(3026), 1, + STATE(3127), 1, sym_trait_bounds, - STATE(3027), 1, + STATE(3131), 1, aux_sym_type_arguments_repeat1, - STATE(2432), 2, + STATE(2461), 2, sym_line_comment, sym_block_comment, - [76291] = 9, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [77477] = 9, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4989), 1, + ACTIONS(5050), 1, + anon_sym_LT, + ACTIONS(5052), 1, anon_sym_where, - ACTIONS(4993), 1, + ACTIONS(5110), 1, anon_sym_LBRACE, - ACTIONS(5082), 1, - anon_sym_PLUS, - ACTIONS(5461), 1, - anon_sym_SEMI, - STATE(691), 1, - sym_declaration_list, - STATE(3062), 1, + STATE(779), 1, + sym_field_declaration_list, + STATE(2636), 1, + sym_type_parameters, + STATE(3220), 1, sym_where_clause, - STATE(2433), 2, + STATE(2462), 2, sym_line_comment, sym_block_comment, - [76320] = 9, - ACTIONS(103), 1, + [77506] = 9, + ACTIONS(27), 1, + anon_sym_PIPE, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(5504), 1, + sym_identifier, + ACTIONS(5506), 1, + anon_sym_ref, + ACTIONS(5508), 1, + sym_mutable_specifier, + ACTIONS(5510), 1, + anon_sym_move, + STATE(222), 1, + sym_closure_parameters, + STATE(2463), 2, + sym_line_comment, + sym_block_comment, + [77535] = 9, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4989), 1, - anon_sym_where, - ACTIONS(4993), 1, + ACTIONS(4928), 1, anon_sym_LBRACE, - ACTIONS(5082), 1, + ACTIONS(5052), 1, + anon_sym_where, + ACTIONS(5157), 1, anon_sym_PLUS, - ACTIONS(5463), 1, + ACTIONS(5512), 1, anon_sym_SEMI, - STATE(697), 1, + STATE(579), 1, sym_declaration_list, - STATE(3072), 1, + STATE(3008), 1, sym_where_clause, - STATE(2434), 2, + STATE(2464), 2, sym_line_comment, sym_block_comment, - [76349] = 9, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [77564] = 9, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4971), 1, + ACTIONS(4928), 1, anon_sym_LBRACE, - ACTIONS(4989), 1, + ACTIONS(5052), 1, anon_sym_where, - ACTIONS(5082), 1, + ACTIONS(5157), 1, anon_sym_PLUS, - ACTIONS(5465), 1, + ACTIONS(5514), 1, anon_sym_SEMI, - STATE(1237), 1, + STATE(582), 1, sym_declaration_list, - STATE(2934), 1, + STATE(3015), 1, sym_where_clause, - STATE(2435), 2, + STATE(2465), 2, sym_line_comment, sym_block_comment, - [76378] = 9, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [77593] = 9, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4971), 1, + ACTIONS(4928), 1, anon_sym_LBRACE, - ACTIONS(4989), 1, + ACTIONS(5052), 1, anon_sym_where, - ACTIONS(5082), 1, + ACTIONS(5157), 1, anon_sym_PLUS, - ACTIONS(5467), 1, + ACTIONS(5516), 1, anon_sym_SEMI, - STATE(1239), 1, + STATE(746), 1, sym_declaration_list, - STATE(2935), 1, + STATE(3121), 1, sym_where_clause, - STATE(2436), 2, + STATE(2466), 2, sym_line_comment, sym_block_comment, - [76407] = 9, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [77622] = 9, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3140), 1, + ACTIONS(3166), 1, anon_sym_PLUS, - ACTIONS(5128), 1, + ACTIONS(5149), 1, anon_sym_COLON, - ACTIONS(5457), 1, + ACTIONS(5500), 1, anon_sym_GT, - ACTIONS(5459), 1, + ACTIONS(5502), 1, anon_sym_COMMA, - STATE(3026), 1, + STATE(3127), 1, sym_trait_bounds, - STATE(3027), 1, + STATE(3131), 1, aux_sym_type_arguments_repeat1, - STATE(2437), 2, - sym_line_comment, - sym_block_comment, - [76436] = 8, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(407), 1, - anon_sym_LBRACE, - ACTIONS(3348), 1, - anon_sym_SQUOTE, - ACTIONS(5469), 1, - anon_sym_if, - STATE(3718), 1, - sym_label, - STATE(1771), 2, - sym_if_expression, - sym_block, - STATE(2438), 2, + STATE(2467), 2, sym_line_comment, sym_block_comment, - [76463] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [77651] = 9, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4925), 2, - anon_sym_COLON, - anon_sym_PIPE, - STATE(2439), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3626), 4, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH_GT, - [76484] = 9, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4971), 1, + ACTIONS(4928), 1, anon_sym_LBRACE, - ACTIONS(4989), 1, + ACTIONS(5052), 1, anon_sym_where, - ACTIONS(5082), 1, + ACTIONS(5157), 1, anon_sym_PLUS, - ACTIONS(5471), 1, + ACTIONS(5518), 1, anon_sym_SEMI, - STATE(1243), 1, + STATE(716), 1, sym_declaration_list, - STATE(2937), 1, + STATE(3052), 1, sym_where_clause, - STATE(2440), 2, + STATE(2468), 2, sym_line_comment, sym_block_comment, - [76513] = 9, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [77680] = 9, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4971), 1, + ACTIONS(4928), 1, anon_sym_LBRACE, - ACTIONS(4989), 1, + ACTIONS(5052), 1, anon_sym_where, - ACTIONS(5082), 1, + ACTIONS(5157), 1, anon_sym_PLUS, - ACTIONS(5473), 1, + ACTIONS(5520), 1, anon_sym_SEMI, - STATE(1245), 1, + STATE(720), 1, sym_declaration_list, - STATE(2938), 1, + STATE(3064), 1, sym_where_clause, - STATE(2441), 2, + STATE(2469), 2, sym_line_comment, sym_block_comment, - [76542] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [77709] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4660), 1, + ACTIONS(4707), 1, anon_sym_COLON_COLON, - ACTIONS(5068), 1, + ACTIONS(5127), 1, anon_sym_for, - STATE(2442), 2, + STATE(2470), 2, sym_line_comment, sym_block_comment, - ACTIONS(3425), 4, + ACTIONS(3505), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [76565] = 9, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4987), 1, - anon_sym_LT, - ACTIONS(4989), 1, - anon_sym_where, - ACTIONS(5043), 1, - anon_sym_LBRACE, - STATE(678), 1, - sym_field_declaration_list, - STATE(2651), 1, - sym_type_parameters, - STATE(3291), 1, - sym_where_clause, - STATE(2443), 2, - sym_line_comment, - sym_block_comment, - [76594] = 9, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4989), 1, - anon_sym_where, - ACTIONS(4993), 1, - anon_sym_LBRACE, - ACTIONS(5128), 1, - anon_sym_COLON, - STATE(754), 1, - sym_declaration_list, - STATE(2622), 1, - sym_trait_bounds, - STATE(3324), 1, - sym_where_clause, - STATE(2444), 2, - sym_line_comment, - sym_block_comment, - [76623] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [77732] = 6, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(5446), 1, - anon_sym_RBRACK, - ACTIONS(4925), 2, - anon_sym_PIPE, - anon_sym_COMMA, - STATE(2445), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3626), 3, - anon_sym_SEMI, - anon_sym_PLUS, - anon_sym_DASH_GT, - [76646] = 6, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4660), 1, + ACTIONS(4707), 1, anon_sym_COLON_COLON, - ACTIONS(5072), 1, + ACTIONS(5135), 1, anon_sym_for, - STATE(2446), 2, + STATE(2471), 2, sym_line_comment, sym_block_comment, - ACTIONS(3425), 4, + ACTIONS(3505), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [76669] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(2447), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3530), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [76688] = 9, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [77755] = 6, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4971), 1, - anon_sym_LBRACE, - ACTIONS(4989), 1, - anon_sym_where, - ACTIONS(5128), 1, - anon_sym_COLON, - STATE(1277), 1, - sym_declaration_list, - STATE(2595), 1, - sym_trait_bounds, - STATE(3357), 1, - sym_where_clause, - STATE(2448), 2, - sym_line_comment, - sym_block_comment, - [76717] = 6, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4660), 1, + ACTIONS(4707), 1, anon_sym_COLON_COLON, - ACTIONS(5074), 1, + ACTIONS(5137), 1, anon_sym_for, - STATE(2449), 2, + STATE(2472), 2, sym_line_comment, sym_block_comment, - ACTIONS(3425), 4, + ACTIONS(3505), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [76740] = 9, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [77778] = 9, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4987), 1, + ACTIONS(5050), 1, anon_sym_LT, - ACTIONS(4989), 1, + ACTIONS(5052), 1, anon_sym_where, - ACTIONS(5440), 1, + ACTIONS(5416), 1, anon_sym_LBRACE, - STATE(1116), 1, + STATE(654), 1, sym_enum_variant_list, - STATE(2666), 1, + STATE(2791), 1, sym_type_parameters, - STATE(3399), 1, + STATE(3272), 1, sym_where_clause, - STATE(2450), 2, + STATE(2473), 2, sym_line_comment, sym_block_comment, - [76769] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [77807] = 4, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4660), 1, - anon_sym_COLON_COLON, - ACTIONS(5076), 1, - anon_sym_for, - STATE(2451), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3425), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [76792] = 9, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4971), 1, - anon_sym_LBRACE, - ACTIONS(4989), 1, - anon_sym_where, - ACTIONS(5082), 1, - anon_sym_PLUS, - ACTIONS(5475), 1, - anon_sym_SEMI, - STATE(1119), 1, - sym_declaration_list, - STATE(3122), 1, - sym_where_clause, - STATE(2452), 2, + STATE(2474), 2, sym_line_comment, sym_block_comment, - [76821] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + ACTIONS(3728), 5, + anon_sym_LPAREN, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_COLON_COLON, + anon_sym_if, + [77825] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5376), 1, - anon_sym_RBRACK, - ACTIONS(4943), 2, - anon_sym_PIPE, - anon_sym_COMMA, - STATE(2453), 2, + STATE(2475), 2, sym_line_comment, sym_block_comment, - ACTIONS(3652), 3, - anon_sym_SEMI, - anon_sym_PLUS, - anon_sym_DASH_GT, - [76844] = 9, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + ACTIONS(3684), 5, + anon_sym_LPAREN, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_COLON_COLON, + anon_sym_if, + [77843] = 8, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4985), 1, - anon_sym_LBRACE, - ACTIONS(4987), 1, - anon_sym_LT, - ACTIONS(4989), 1, - anon_sym_where, - STATE(1171), 1, - sym_field_declaration_list, - STATE(2771), 1, - sym_type_parameters, - STATE(3335), 1, - sym_where_clause, - STATE(2454), 2, + ACTIONS(4116), 1, + anon_sym_LPAREN, + ACTIONS(4604), 1, + anon_sym_LT2, + ACTIONS(4606), 1, + anon_sym_COLON_COLON, + STATE(1676), 1, + sym_parameters, + STATE(2016), 1, + sym_type_arguments, + STATE(2476), 2, sym_line_comment, sym_block_comment, - [76873] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [77869] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4586), 1, + ACTIONS(4618), 1, anon_sym_DOT_DOT, - ACTIONS(5274), 1, + ACTIONS(5301), 1, + anon_sym_COLON, + ACTIONS(5371), 1, anon_sym_COLON_COLON, - ACTIONS(4588), 2, + ACTIONS(4620), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(5328), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(2455), 2, - sym_line_comment, - sym_block_comment, - [76898] = 8, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3058), 1, - anon_sym_SQUOTE, - ACTIONS(5477), 1, - sym_identifier, - ACTIONS(5479), 1, - anon_sym_GT, - ACTIONS(5481), 1, - anon_sym_COMMA, - STATE(2997), 1, - sym_lifetime, - STATE(2456), 2, - sym_line_comment, - sym_block_comment, - [76924] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(2457), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(5483), 5, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_where, - [76942] = 8, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(407), 1, - anon_sym_LBRACE, - ACTIONS(3348), 1, - anon_sym_SQUOTE, - ACTIONS(5082), 1, - anon_sym_PLUS, - STATE(1791), 1, - sym_block, - STATE(3718), 1, - sym_label, - STATE(2458), 2, + STATE(2477), 2, sym_line_comment, sym_block_comment, - [76968] = 8, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [77893] = 8, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4987), 1, - anon_sym_LT, - ACTIONS(4989), 1, - anon_sym_where, - ACTIONS(5485), 1, - anon_sym_EQ, - STATE(2945), 1, - sym_type_parameters, - STATE(3691), 1, - sym_where_clause, - STATE(2459), 2, - sym_line_comment, - sym_block_comment, - [76994] = 8, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, + ACTIONS(412), 1, anon_sym_LBRACE, - ACTIONS(3348), 1, + ACTIONS(3386), 1, anon_sym_SQUOTE, - ACTIONS(5082), 1, + ACTIONS(5157), 1, anon_sym_PLUS, - STATE(1431), 1, + STATE(1914), 1, sym_block, - STATE(3664), 1, + STATE(3748), 1, sym_label, - STATE(2460), 2, + STATE(2478), 2, sym_line_comment, sym_block_comment, - [77020] = 8, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [77919] = 6, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3348), 1, - anon_sym_SQUOTE, - ACTIONS(5124), 1, - anon_sym_LBRACE, - ACTIONS(5487), 1, - anon_sym_SEMI, - STATE(1267), 1, - sym_block, - STATE(3716), 1, - sym_label, - STATE(2461), 2, - sym_line_comment, - sym_block_comment, - [77046] = 4, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(2462), 2, + ACTIONS(5524), 1, + anon_sym_COLON_COLON, + ACTIONS(5526), 1, + anon_sym_as, + STATE(2479), 2, sym_line_comment, sym_block_comment, - ACTIONS(5489), 5, + ACTIONS(5522), 3, anon_sym_SEMI, anon_sym_RBRACE, - anon_sym_EQ, anon_sym_COMMA, - anon_sym_where, - [77064] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [77941] = 8, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(2463), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(5491), 5, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_where, - [77082] = 4, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(2464), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(5493), 5, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_EQ, + ACTIONS(5149), 1, + anon_sym_COLON, + ACTIONS(5458), 1, + anon_sym_GT, + ACTIONS(5460), 1, anon_sym_COMMA, - anon_sym_where, - [77100] = 8, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3348), 1, - anon_sym_SQUOTE, - ACTIONS(5080), 1, - anon_sym_LBRACE, - ACTIONS(5495), 1, - anon_sym_SEMI, - STATE(751), 1, - sym_block, - STATE(3713), 1, - sym_label, - STATE(2465), 2, + STATE(3018), 1, + sym_trait_bounds, + STATE(3019), 1, + aux_sym_type_arguments_repeat1, + STATE(2480), 2, sym_line_comment, sym_block_comment, - [77126] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [77967] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3768), 1, - anon_sym_PLUS, - ACTIONS(4861), 2, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(5497), 2, + ACTIONS(5528), 1, anon_sym_RPAREN, + ACTIONS(5530), 1, anon_sym_COMMA, - STATE(2466), 2, + STATE(3021), 1, + aux_sym_parameters_repeat1, + ACTIONS(4608), 2, + anon_sym_COLON, + anon_sym_PIPE, + STATE(2481), 2, sym_line_comment, sym_block_comment, - [77148] = 8, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [77991] = 7, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3348), 1, - anon_sym_SQUOTE, - ACTIONS(5124), 1, - anon_sym_LBRACE, - ACTIONS(5500), 1, - anon_sym_SEMI, - STATE(1289), 1, - sym_block, - STATE(3716), 1, - sym_label, - STATE(2467), 2, - sym_line_comment, - sym_block_comment, - [77174] = 6, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5504), 1, - anon_sym_COLON_COLON, - ACTIONS(5506), 1, - anon_sym_as, - STATE(2468), 2, + ACTIONS(4790), 1, + anon_sym_EQ, + ACTIONS(5149), 1, + anon_sym_COLON, + STATE(2899), 1, + sym_trait_bounds, + ACTIONS(4792), 2, + anon_sym_GT, + anon_sym_COMMA, + STATE(2482), 2, sym_line_comment, sym_block_comment, - ACTIONS(5502), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [77196] = 8, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [78015] = 8, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(1301), 1, - anon_sym_LBRACE, - ACTIONS(3348), 1, + ACTIONS(3386), 1, anon_sym_SQUOTE, - ACTIONS(5508), 1, - anon_sym_move, - STATE(476), 1, + ACTIONS(5155), 1, + anon_sym_LBRACE, + ACTIONS(5532), 1, + anon_sym_SEMI, + STATE(1266), 1, sym_block, - STATE(3717), 1, + STATE(3746), 1, sym_label, - STATE(2469), 2, + STATE(2483), 2, sym_line_comment, sym_block_comment, - [77222] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [78041] = 7, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4208), 1, - anon_sym_LBRACE, - ACTIONS(5512), 1, - anon_sym_STAR, - STATE(3130), 1, - sym_use_list, - ACTIONS(5510), 2, - sym_identifier, - sym_super, - STATE(2470), 2, - sym_line_comment, - sym_block_comment, - [77246] = 8, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3348), 1, - anon_sym_SQUOTE, - ACTIONS(5124), 1, - anon_sym_LBRACE, - ACTIONS(5514), 1, - anon_sym_SEMI, - STATE(1320), 1, - sym_block, - STATE(3716), 1, - sym_label, - STATE(2471), 2, + ACTIONS(3166), 1, + anon_sym_PLUS, + ACTIONS(5149), 1, + anon_sym_COLON, + STATE(3216), 1, + sym_trait_bounds, + ACTIONS(5534), 2, + anon_sym_GT, + anon_sym_COMMA, + STATE(2484), 2, sym_line_comment, sym_block_comment, - [77272] = 8, - ACTIONS(103), 1, + [78065] = 8, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(5018), 1, + anon_sym_PIPE, + ACTIONS(5536), 1, + anon_sym_SEMI, + ACTIONS(5538), 1, + anon_sym_COLON, + ACTIONS(5540), 1, + anon_sym_EQ, + ACTIONS(5542), 1, + anon_sym_else, + STATE(2485), 2, + sym_line_comment, + sym_block_comment, + [78091] = 8, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3348), 1, + ACTIONS(3386), 1, anon_sym_SQUOTE, - ACTIONS(5124), 1, + ACTIONS(5145), 1, anon_sym_LBRACE, - ACTIONS(5516), 1, + ACTIONS(5544), 1, anon_sym_SEMI, - STATE(1334), 1, + STATE(725), 1, sym_block, - STATE(3716), 1, + STATE(3743), 1, sym_label, - STATE(2472), 2, + STATE(2486), 2, sym_line_comment, sym_block_comment, - [77298] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [78117] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5518), 1, + ACTIONS(1416), 1, anon_sym_RPAREN, - ACTIONS(5520), 1, + ACTIONS(5546), 1, anon_sym_COMMA, - STATE(3078), 1, + STATE(3031), 1, aux_sym_parameters_repeat1, - ACTIONS(4576), 2, + ACTIONS(4608), 2, anon_sym_COLON, anon_sym_PIPE, - STATE(2473), 2, + STATE(2487), 2, sym_line_comment, sym_block_comment, - [77322] = 7, - ACTIONS(103), 1, + [78141] = 8, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(3072), 1, + anon_sym_SQUOTE, + ACTIONS(5548), 1, + sym_identifier, + ACTIONS(5550), 1, + anon_sym_GT, + ACTIONS(5552), 1, + anon_sym_COMMA, + STATE(3033), 1, + sym_lifetime, + STATE(2488), 2, + sym_line_comment, + sym_block_comment, + [78167] = 8, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4586), 1, - anon_sym_DOT_DOT, - ACTIONS(5330), 1, - anon_sym_COLON, - ACTIONS(5332), 1, + ACTIONS(3368), 1, + anon_sym_LPAREN, + ACTIONS(4604), 1, + anon_sym_LT2, + ACTIONS(4606), 1, anon_sym_COLON_COLON, - ACTIONS(4588), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2474), 2, + STATE(1397), 1, + sym_parameters, + STATE(2016), 1, + sym_type_arguments, + STATE(2489), 2, sym_line_comment, sym_block_comment, - [77346] = 8, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [78193] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3348), 1, - anon_sym_SQUOTE, - ACTIONS(5124), 1, - anon_sym_LBRACE, - ACTIONS(5522), 1, - anon_sym_SEMI, - STATE(1339), 1, - sym_block, - STATE(3716), 1, - sym_label, - STATE(2475), 2, + STATE(2490), 2, sym_line_comment, sym_block_comment, - [77372] = 8, - ACTIONS(103), 1, + ACTIONS(3578), 5, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_where, + [78211] = 4, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + STATE(2491), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5554), 5, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_where, + [78229] = 8, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3348), 1, + ACTIONS(3386), 1, anon_sym_SQUOTE, - ACTIONS(5080), 1, + ACTIONS(5145), 1, anon_sym_LBRACE, - ACTIONS(5524), 1, + ACTIONS(5556), 1, anon_sym_SEMI, - STATE(607), 1, + STATE(771), 1, sym_block, - STATE(3713), 1, + STATE(3743), 1, sym_label, - STATE(2476), 2, + STATE(2492), 2, sym_line_comment, sym_block_comment, - [77398] = 8, - ACTIONS(103), 1, + [78255] = 8, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(4996), 1, + anon_sym_RPAREN, + ACTIONS(5558), 1, + anon_sym_COLON, + ACTIONS(5560), 1, + anon_sym_PIPE, + ACTIONS(5562), 1, + anon_sym_COMMA, + STATE(2873), 1, + aux_sym_closure_parameters_repeat1, + STATE(2493), 2, + sym_line_comment, + sym_block_comment, + [78281] = 8, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3348), 1, - anon_sym_SQUOTE, - ACTIONS(5124), 1, + ACTIONS(348), 1, anon_sym_LBRACE, - ACTIONS(5526), 1, - anon_sym_SEMI, - STATE(1364), 1, + ACTIONS(3386), 1, + anon_sym_SQUOTE, + ACTIONS(5564), 1, + anon_sym_move, + STATE(1476), 1, sym_block, - STATE(3716), 1, + STATE(3693), 1, sym_label, - STATE(2477), 2, + STATE(2494), 2, sym_line_comment, sym_block_comment, - [77424] = 8, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [78307] = 8, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3348), 1, - anon_sym_SQUOTE, - ACTIONS(5124), 1, + ACTIONS(412), 1, anon_sym_LBRACE, - ACTIONS(5528), 1, - anon_sym_SEMI, - STATE(1372), 1, + ACTIONS(3386), 1, + anon_sym_SQUOTE, + ACTIONS(5157), 1, + anon_sym_PLUS, + STATE(1864), 1, sym_block, - STATE(3716), 1, + STATE(3748), 1, sym_label, - STATE(2478), 2, + STATE(2495), 2, sym_line_comment, sym_block_comment, - [77450] = 8, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [78333] = 8, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3348), 1, + ACTIONS(3386), 1, anon_sym_SQUOTE, - ACTIONS(5124), 1, + ACTIONS(5145), 1, anon_sym_LBRACE, - ACTIONS(5530), 1, + ACTIONS(5566), 1, anon_sym_SEMI, - STATE(1382), 1, + STATE(764), 1, sym_block, - STATE(3716), 1, + STATE(3743), 1, sym_label, - STATE(2479), 2, + STATE(2496), 2, sym_line_comment, sym_block_comment, - [77476] = 8, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [78359] = 8, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3348), 1, - anon_sym_SQUOTE, - ACTIONS(5124), 1, - anon_sym_LBRACE, - ACTIONS(5532), 1, - anon_sym_SEMI, - STATE(1387), 1, - sym_block, - STATE(3716), 1, - sym_label, - STATE(2480), 2, + ACTIONS(5149), 1, + anon_sym_COLON, + ACTIONS(5466), 1, + anon_sym_GT, + ACTIONS(5468), 1, + anon_sym_COMMA, + STATE(3059), 1, + sym_trait_bounds, + STATE(3060), 1, + aux_sym_type_arguments_repeat1, + STATE(2497), 2, sym_line_comment, sym_block_comment, - [77502] = 8, - ACTIONS(103), 1, + [78385] = 6, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(5526), 1, + anon_sym_as, + ACTIONS(5568), 1, + anon_sym_COLON_COLON, + STATE(2498), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5522), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [78407] = 8, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3348), 1, + ACTIONS(3386), 1, anon_sym_SQUOTE, - ACTIONS(5124), 1, + ACTIONS(5145), 1, anon_sym_LBRACE, - ACTIONS(5534), 1, + ACTIONS(5570), 1, anon_sym_SEMI, - STATE(1391), 1, + STATE(677), 1, sym_block, - STATE(3716), 1, + STATE(3743), 1, sym_label, - STATE(2481), 2, + STATE(2499), 2, sym_line_comment, sym_block_comment, - [77528] = 8, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [78433] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(407), 1, - anon_sym_LBRACE, - ACTIONS(3348), 1, - anon_sym_SQUOTE, - ACTIONS(5536), 1, - anon_sym_move, - STATE(1732), 1, - sym_block, - STATE(3718), 1, - sym_label, - STATE(2482), 2, + STATE(2500), 2, sym_line_comment, sym_block_comment, - [77554] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + ACTIONS(5572), 5, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_where, + [78451] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5128), 1, - anon_sym_COLON, - ACTIONS(5354), 1, - anon_sym_PLUS, - STATE(3298), 1, - sym_trait_bounds, - ACTIONS(5538), 2, - anon_sym_GT, - anon_sym_COMMA, - STATE(2483), 2, + STATE(2501), 2, sym_line_comment, sym_block_comment, - [77578] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + ACTIONS(5574), 5, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_where, + [78469] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3140), 1, - anon_sym_PLUS, - ACTIONS(5128), 1, - anon_sym_COLON, - STATE(3298), 1, - sym_trait_bounds, - ACTIONS(5538), 2, - anon_sym_GT, + ACTIONS(5576), 1, + anon_sym_RPAREN, + ACTIONS(5578), 1, anon_sym_COMMA, - STATE(2484), 2, + STATE(2875), 1, + aux_sym_parameters_repeat1, + ACTIONS(4608), 2, + anon_sym_COLON, + anon_sym_PIPE, + STATE(2502), 2, sym_line_comment, sym_block_comment, - [77602] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [78493] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(2485), 2, + STATE(2503), 2, sym_line_comment, sym_block_comment, - ACTIONS(3542), 5, + ACTIONS(5580), 5, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COLON, + anon_sym_RBRACE, anon_sym_EQ, + anon_sym_COMMA, anon_sym_where, - [77620] = 8, - ACTIONS(103), 1, + [78511] = 5, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(4998), 2, + anon_sym_COLON, + anon_sym_PIPE, + STATE(2504), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3888), 3, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_COMMA, + [78531] = 8, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5540), 1, + ACTIONS(5582), 1, anon_sym_SEMI, - ACTIONS(5542), 1, + ACTIONS(5584), 1, anon_sym_COLON, - ACTIONS(5544), 1, + ACTIONS(5586), 1, anon_sym_PIPE, - ACTIONS(5546), 1, + ACTIONS(5588), 1, anon_sym_EQ, - ACTIONS(5548), 1, + ACTIONS(5590), 1, anon_sym_else, - STATE(2486), 2, + STATE(2505), 2, sym_line_comment, sym_block_comment, - [77646] = 4, - ACTIONS(103), 1, + [78557] = 7, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(4256), 1, + anon_sym_LBRACE, + ACTIONS(5594), 1, + anon_sym_STAR, + STATE(3048), 1, + sym_use_list, + ACTIONS(5592), 2, + sym_identifier, + sym_super, + STATE(2506), 2, + sym_line_comment, + sym_block_comment, + [78581] = 8, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(2487), 2, + ACTIONS(3386), 1, + anon_sym_SQUOTE, + ACTIONS(5145), 1, + anon_sym_LBRACE, + ACTIONS(5596), 1, + anon_sym_SEMI, + STATE(709), 1, + sym_block, + STATE(3743), 1, + sym_label, + STATE(2507), 2, + sym_line_comment, + sym_block_comment, + [78607] = 4, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + STATE(2508), 2, sym_line_comment, sym_block_comment, - ACTIONS(3716), 5, + ACTIONS(5598), 5, anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_COLON, anon_sym_EQ, - anon_sym_where, - [77664] = 8, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + anon_sym_COMMA, + anon_sym_SQUOTE, + [78625] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4078), 1, - anon_sym_LPAREN, - ACTIONS(4574), 1, - anon_sym_LT2, - ACTIONS(4592), 1, - anon_sym_COLON_COLON, - STATE(1649), 1, - sym_parameters, - STATE(1999), 1, - sym_type_arguments, - STATE(2488), 2, + STATE(2509), 2, sym_line_comment, sym_block_comment, - [77690] = 8, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + ACTIONS(5600), 5, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + [78643] = 8, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5128), 1, + ACTIONS(5149), 1, anon_sym_COLON, ACTIONS(5401), 1, anon_sym_GT, ACTIONS(5403), 1, anon_sym_COMMA, - STATE(3047), 1, + STATE(2904), 1, sym_trait_bounds, - STATE(3048), 1, + STATE(2905), 1, aux_sym_type_arguments_repeat1, - STATE(2489), 2, + STATE(2510), 2, sym_line_comment, sym_block_comment, - [77716] = 8, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [78669] = 8, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4883), 1, - anon_sym_RPAREN, - ACTIONS(5550), 1, - anon_sym_COLON, - ACTIONS(5552), 1, - anon_sym_PIPE, - ACTIONS(5554), 1, - anon_sym_COMMA, - STATE(3003), 1, - aux_sym_closure_parameters_repeat1, - STATE(2490), 2, + ACTIONS(3386), 1, + anon_sym_SQUOTE, + ACTIONS(5155), 1, + anon_sym_LBRACE, + ACTIONS(5602), 1, + anon_sym_SEMI, + STATE(1296), 1, + sym_block, + STATE(3746), 1, + sym_label, + STATE(2511), 2, sym_line_comment, sym_block_comment, - [77742] = 8, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [78695] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5128), 1, + ACTIONS(3888), 1, + anon_sym_PLUS, + ACTIONS(4998), 2, anon_sym_COLON, - ACTIONS(5422), 1, - anon_sym_GT, - ACTIONS(5424), 1, + anon_sym_PIPE, + ACTIONS(5604), 2, + anon_sym_RPAREN, anon_sym_COMMA, - STATE(2995), 1, - sym_trait_bounds, - STATE(2996), 1, - aux_sym_type_arguments_repeat1, - STATE(2491), 2, + STATE(2512), 2, sym_line_comment, sym_block_comment, - [77768] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [78717] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5556), 1, - anon_sym_RPAREN, - ACTIONS(5558), 1, - anon_sym_COMMA, - STATE(2999), 1, - aux_sym_parameters_repeat1, - ACTIONS(4576), 2, - anon_sym_COLON, - anon_sym_PIPE, - STATE(2492), 2, + ACTIONS(4256), 1, + anon_sym_LBRACE, + ACTIONS(5609), 1, + anon_sym_STAR, + STATE(3002), 1, + sym_use_list, + ACTIONS(5607), 2, + sym_identifier, + sym_super, + STATE(2513), 2, sym_line_comment, sym_block_comment, - [77792] = 8, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [78741] = 8, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3348), 1, + ACTIONS(3386), 1, anon_sym_SQUOTE, - ACTIONS(5080), 1, + ACTIONS(5145), 1, anon_sym_LBRACE, - ACTIONS(5560), 1, + ACTIONS(5611), 1, anon_sym_SEMI, - STATE(549), 1, + STATE(592), 1, sym_block, - STATE(3713), 1, + STATE(3743), 1, sym_label, - STATE(2493), 2, + STATE(2514), 2, sym_line_comment, sym_block_comment, - [77818] = 8, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [78767] = 8, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(5562), 1, - anon_sym_STAR_SLASH, - ACTIONS(5564), 1, - sym__outer_block_doc_comment_marker, - ACTIONS(5566), 1, - sym__inner_block_doc_comment_marker, - ACTIONS(5568), 1, - sym__block_comment_content, - STATE(3369), 1, - sym__block_doc_comment_marker, - STATE(2494), 2, - sym_line_comment, - sym_block_comment, - [77844] = 8, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4568), 1, - anon_sym_LPAREN, - ACTIONS(4574), 1, + ACTIONS(4604), 1, anon_sym_LT2, - ACTIONS(4592), 1, + ACTIONS(4606), 1, anon_sym_COLON_COLON, - STATE(1999), 1, + ACTIONS(4788), 1, + anon_sym_COLON, + STATE(2016), 1, sym_type_arguments, - STATE(2024), 1, - sym_parameters, - STATE(2495), 2, + STATE(2509), 1, + sym_trait_bounds, + STATE(2515), 2, sym_line_comment, sym_block_comment, - [77870] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [78793] = 8, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(1405), 1, - anon_sym_RPAREN, - ACTIONS(5570), 1, - anon_sym_COMMA, - STATE(3006), 1, - aux_sym_parameters_repeat1, - ACTIONS(4576), 2, - anon_sym_COLON, - anon_sym_PIPE, - STATE(2496), 2, - sym_line_comment, - sym_block_comment, - [77894] = 8, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3058), 1, + ACTIONS(348), 1, + anon_sym_LBRACE, + ACTIONS(3386), 1, anon_sym_SQUOTE, - ACTIONS(5572), 1, - sym_identifier, - ACTIONS(5574), 1, - anon_sym_GT, - ACTIONS(5576), 1, - anon_sym_COMMA, - STATE(3008), 1, - sym_lifetime, - STATE(2497), 2, + ACTIONS(5157), 1, + anon_sym_PLUS, + STATE(1453), 1, + sym_block, + STATE(3693), 1, + sym_label, + STATE(2516), 2, sym_line_comment, sym_block_comment, - [77920] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [78819] = 7, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(2498), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3648), 5, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_COLON_COLON, - anon_sym_if, - [77938] = 8, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5128), 1, + ACTIONS(5149), 1, anon_sym_COLON, - ACTIONS(5457), 1, + ACTIONS(5399), 1, + anon_sym_PLUS, + STATE(3265), 1, + sym_trait_bounds, + ACTIONS(5613), 2, anon_sym_GT, - ACTIONS(5459), 1, anon_sym_COMMA, - STATE(3026), 1, - sym_trait_bounds, - STATE(3027), 1, - aux_sym_type_arguments_repeat1, - STATE(2499), 2, + STATE(2517), 2, sym_line_comment, sym_block_comment, - [77964] = 8, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [78843] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5544), 1, - anon_sym_PIPE, - ACTIONS(5578), 1, - anon_sym_SEMI, - ACTIONS(5580), 1, + ACTIONS(3166), 1, + anon_sym_PLUS, + ACTIONS(5149), 1, anon_sym_COLON, - ACTIONS(5582), 1, - anon_sym_EQ, - ACTIONS(5584), 1, - anon_sym_else, - STATE(2500), 2, + STATE(3265), 1, + sym_trait_bounds, + ACTIONS(5613), 2, + anon_sym_GT, + anon_sym_COMMA, + STATE(2518), 2, sym_line_comment, sym_block_comment, - [77990] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [78867] = 8, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3846), 2, + ACTIONS(4598), 1, anon_sym_LPAREN, + ACTIONS(4604), 1, + anon_sym_LT2, + ACTIONS(4606), 1, anon_sym_COLON_COLON, - STATE(2501), 2, + STATE(2016), 1, + sym_type_arguments, + STATE(2043), 1, + sym_parameters, + STATE(2519), 2, sym_line_comment, sym_block_comment, - ACTIONS(4765), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [78010] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [78893] = 8, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5588), 1, - anon_sym_COLON_COLON, - ACTIONS(5590), 1, - anon_sym_as, - STATE(2502), 2, + ACTIONS(1366), 1, + anon_sym_LBRACE, + ACTIONS(3386), 1, + anon_sym_SQUOTE, + ACTIONS(5615), 1, + anon_sym_move, + STATE(485), 1, + sym_block, + STATE(3747), 1, + sym_label, + STATE(2520), 2, sym_line_comment, sym_block_comment, - ACTIONS(5586), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [78032] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [78919] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(2503), 2, + STATE(2521), 2, sym_line_comment, sym_block_comment, - ACTIONS(3662), 5, + ACTIONS(3706), 5, anon_sym_LPAREN, anon_sym_EQ_GT, anon_sym_PIPE, anon_sym_COLON_COLON, anon_sym_if, - [78050] = 8, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [78937] = 7, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3354), 1, - anon_sym_LPAREN, - ACTIONS(4574), 1, - anon_sym_LT2, - ACTIONS(4592), 1, - anon_sym_COLON_COLON, - STATE(1137), 1, - sym_parameters, - STATE(1999), 1, - sym_type_arguments, - STATE(2504), 2, - sym_line_comment, - sym_block_comment, - [78076] = 4, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(2505), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(5592), 5, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_EQ, + ACTIONS(5617), 1, + anon_sym_RPAREN, + ACTIONS(5619), 1, anon_sym_COMMA, - anon_sym_where, - [78094] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(2506), 2, + STATE(2912), 1, + aux_sym_parameters_repeat1, + ACTIONS(4608), 2, + anon_sym_COLON, + anon_sym_PIPE, + STATE(2522), 2, sym_line_comment, sym_block_comment, - ACTIONS(5594), 5, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_where, - [78112] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [78961] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(2507), 2, + ACTIONS(5526), 1, + anon_sym_as, + ACTIONS(5621), 1, + anon_sym_COLON_COLON, + STATE(2523), 2, sym_line_comment, sym_block_comment, - ACTIONS(3672), 5, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_COLON_COLON, - anon_sym_if, - [78130] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + ACTIONS(5522), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [78983] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3884), 2, + ACTIONS(3834), 2, anon_sym_LPAREN, anon_sym_COLON_COLON, - STATE(2508), 2, + STATE(2524), 2, sym_line_comment, sym_block_comment, - ACTIONS(4765), 3, + ACTIONS(4820), 3, anon_sym_EQ_GT, anon_sym_PIPE, anon_sym_if, - [78150] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [79003] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(2509), 2, + STATE(2525), 2, sym_line_comment, sym_block_comment, - ACTIONS(3680), 5, + ACTIONS(3714), 5, anon_sym_LPAREN, anon_sym_EQ_GT, anon_sym_PIPE, anon_sym_COLON_COLON, anon_sym_if, - [78168] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [79021] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(2510), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(5596), 5, + ACTIONS(5604), 1, + anon_sym_RBRACK, + ACTIONS(3888), 2, anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_EQ, + anon_sym_PLUS, + ACTIONS(4998), 2, + anon_sym_PIPE, anon_sym_COMMA, - anon_sym_where, - [78186] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + STATE(2526), 2, + sym_line_comment, + sym_block_comment, + [79043] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(2511), 2, + STATE(2527), 2, sym_line_comment, sym_block_comment, - ACTIONS(5598), 5, + ACTIONS(5623), 5, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_EQ, anon_sym_COMMA, anon_sym_where, - [78204] = 8, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [79061] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4879), 1, - anon_sym_PIPE, - ACTIONS(5600), 1, - anon_sym_SEMI, - ACTIONS(5602), 1, + ACTIONS(1414), 1, + anon_sym_RPAREN, + ACTIONS(5625), 1, + anon_sym_COMMA, + STATE(3099), 1, + aux_sym_parameters_repeat1, + ACTIONS(4608), 2, anon_sym_COLON, - ACTIONS(5604), 1, - anon_sym_EQ, - ACTIONS(5606), 1, - anon_sym_else, - STATE(2512), 2, + anon_sym_PIPE, + STATE(2528), 2, sym_line_comment, sym_block_comment, - [78230] = 8, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [79085] = 7, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(343), 1, - anon_sym_LBRACE, - ACTIONS(3348), 1, - anon_sym_SQUOTE, - ACTIONS(5082), 1, - anon_sym_PLUS, - STATE(1512), 1, - sym_block, - STATE(3664), 1, - sym_label, - STATE(2513), 2, - sym_line_comment, - sym_block_comment, - [78256] = 7, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4715), 1, - anon_sym_EQ, - ACTIONS(5128), 1, + ACTIONS(4618), 1, + anon_sym_DOT_DOT, + ACTIONS(5369), 1, anon_sym_COLON, - STATE(2960), 1, - sym_trait_bounds, - ACTIONS(4717), 2, - anon_sym_GT, - anon_sym_COMMA, - STATE(2514), 2, + ACTIONS(5371), 1, + anon_sym_COLON_COLON, + ACTIONS(4620), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2529), 2, sym_line_comment, sym_block_comment, - [78280] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [79109] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5608), 1, - anon_sym_RPAREN, - ACTIONS(5611), 1, - anon_sym_COMMA, - STATE(3078), 1, - aux_sym_parameters_repeat1, - ACTIONS(4576), 2, - anon_sym_COLON, - anon_sym_PIPE, - STATE(2515), 2, + STATE(2530), 2, sym_line_comment, sym_block_comment, - [78304] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + ACTIONS(5627), 5, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_where, + [79127] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5590), 1, - anon_sym_as, - ACTIONS(5614), 1, - anon_sym_COLON_COLON, - STATE(2516), 2, + STATE(2531), 2, sym_line_comment, sym_block_comment, - ACTIONS(5586), 3, + ACTIONS(5629), 5, anon_sym_SEMI, anon_sym_RBRACE, + anon_sym_EQ, anon_sym_COMMA, - [78326] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + anon_sym_where, + [79145] = 8, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3425), 1, + ACTIONS(412), 1, + anon_sym_LBRACE, + ACTIONS(3386), 1, + anon_sym_SQUOTE, + ACTIONS(5157), 1, anon_sym_PLUS, - ACTIONS(4576), 2, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(5616), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(2517), 2, + STATE(1801), 1, + sym_block, + STATE(3748), 1, + sym_label, + STATE(2532), 2, sym_line_comment, sym_block_comment, - [78348] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [79171] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4586), 1, - anon_sym_DOT_DOT, - ACTIONS(5272), 1, - anon_sym_COLON, - ACTIONS(5332), 1, + ACTIONS(3758), 2, + anon_sym_LPAREN, anon_sym_COLON_COLON, - ACTIONS(4588), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2518), 2, + STATE(2533), 2, sym_line_comment, sym_block_comment, - [78372] = 8, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + ACTIONS(4820), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [79191] = 8, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(407), 1, + ACTIONS(348), 1, anon_sym_LBRACE, - ACTIONS(3348), 1, + ACTIONS(3386), 1, anon_sym_SQUOTE, - ACTIONS(5082), 1, + ACTIONS(5157), 1, anon_sym_PLUS, - STATE(1798), 1, + STATE(1503), 1, sym_block, - STATE(3718), 1, + STATE(3693), 1, sym_label, - STATE(2519), 2, + STATE(2534), 2, sym_line_comment, sym_block_comment, - [78398] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [79217] = 7, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(2520), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(5619), 5, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_where, - [78416] = 5, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4861), 2, + ACTIONS(1400), 1, + anon_sym_RPAREN, + ACTIONS(5631), 1, + anon_sym_COMMA, + STATE(2949), 1, + aux_sym_parameters_repeat1, + ACTIONS(4608), 2, anon_sym_COLON, anon_sym_PIPE, - STATE(2521), 2, + STATE(2535), 2, sym_line_comment, sym_block_comment, - ACTIONS(3768), 3, + [79241] = 8, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(5586), 1, + anon_sym_PIPE, + ACTIONS(5633), 1, anon_sym_RPAREN, - anon_sym_PLUS, + ACTIONS(5635), 1, + anon_sym_COLON, + ACTIONS(5637), 1, anon_sym_COMMA, - [78436] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + STATE(3141), 1, + aux_sym_slice_pattern_repeat1, + STATE(2536), 2, + sym_line_comment, + sym_block_comment, + [79267] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(2522), 2, + STATE(2537), 2, sym_line_comment, sym_block_comment, - ACTIONS(5621), 5, + ACTIONS(3550), 5, anon_sym_SEMI, - anon_sym_RBRACE, + anon_sym_LBRACE, + anon_sym_COLON, anon_sym_EQ, - anon_sym_COMMA, anon_sym_where, - [78454] = 8, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [79285] = 8, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3348), 1, + ACTIONS(3386), 1, anon_sym_SQUOTE, - ACTIONS(5080), 1, + ACTIONS(5155), 1, anon_sym_LBRACE, - ACTIONS(5623), 1, + ACTIONS(5639), 1, anon_sym_SEMI, - STATE(598), 1, + STATE(1363), 1, sym_block, - STATE(3713), 1, + STATE(3746), 1, sym_label, - STATE(2523), 2, + STATE(2538), 2, sym_line_comment, sym_block_comment, - [78480] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [79311] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(2524), 2, + STATE(2539), 2, sym_line_comment, sym_block_comment, - ACTIONS(5405), 5, + ACTIONS(5641), 5, anon_sym_SEMI, - anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_EQ, anon_sym_COMMA, - anon_sym_SQUOTE, - [78498] = 8, - ACTIONS(103), 1, + anon_sym_where, + [79329] = 8, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(5586), 1, + anon_sym_PIPE, + ACTIONS(5643), 1, + anon_sym_SEMI, + ACTIONS(5645), 1, + anon_sym_COLON, + ACTIONS(5647), 1, + anon_sym_EQ, + ACTIONS(5649), 1, + anon_sym_else, + STATE(2540), 2, + sym_line_comment, + sym_block_comment, + [79355] = 8, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, - anon_sym_LBRACE, - ACTIONS(3348), 1, + ACTIONS(3386), 1, anon_sym_SQUOTE, - ACTIONS(5082), 1, - anon_sym_PLUS, - STATE(1446), 1, + ACTIONS(5155), 1, + anon_sym_LBRACE, + ACTIONS(5651), 1, + anon_sym_SEMI, + STATE(1099), 1, sym_block, - STATE(3664), 1, + STATE(3746), 1, sym_label, - STATE(2525), 2, + STATE(2541), 2, sym_line_comment, sym_block_comment, - [78524] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [79381] = 8, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(2526), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(5625), 5, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_where, - [78542] = 8, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5128), 1, - anon_sym_COLON, - ACTIONS(5356), 1, - anon_sym_GT, - ACTIONS(5358), 1, - anon_sym_COMMA, - STATE(2883), 1, - sym_trait_bounds, - STATE(2884), 1, - aux_sym_type_arguments_repeat1, - STATE(2527), 2, + ACTIONS(5050), 1, + anon_sym_LT, + ACTIONS(5052), 1, + anon_sym_where, + ACTIONS(5653), 1, + anon_sym_EQ, + STATE(3070), 1, + sym_type_parameters, + STATE(3597), 1, + sym_where_clause, + STATE(2542), 2, sym_line_comment, sym_block_comment, - [78568] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [79407] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(1381), 1, - anon_sym_RPAREN, - ACTIONS(5627), 1, - anon_sym_COMMA, - STATE(2986), 1, - aux_sym_parameters_repeat1, - ACTIONS(4576), 2, - anon_sym_COLON, - anon_sym_PIPE, - STATE(2528), 2, + STATE(2543), 2, sym_line_comment, sym_block_comment, - [78592] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(5128), 1, + ACTIONS(3328), 5, anon_sym_COLON, - STATE(3083), 1, - aux_sym_for_lifetimes_repeat1, - STATE(3136), 1, - sym_trait_bounds, - ACTIONS(5629), 2, + anon_sym_PLUS, anon_sym_GT, anon_sym_COMMA, - STATE(2529), 2, + anon_sym_as, + [79425] = 8, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(5655), 1, + anon_sym_STAR_SLASH, + ACTIONS(5657), 1, + sym__outer_block_doc_comment_marker, + ACTIONS(5659), 1, + sym__inner_block_doc_comment_marker, + ACTIONS(5661), 1, + sym__block_comment_content, + STATE(3181), 1, + sym__block_doc_comment_marker, + STATE(2544), 2, sym_line_comment, sym_block_comment, - [78616] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [79451] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5631), 1, + ACTIONS(5663), 1, anon_sym_RPAREN, - ACTIONS(5633), 1, + ACTIONS(5666), 1, anon_sym_COMMA, - STATE(2891), 1, + STATE(2875), 1, aux_sym_parameters_repeat1, - ACTIONS(4576), 2, + ACTIONS(4608), 2, anon_sym_COLON, anon_sym_PIPE, - STATE(2530), 2, + STATE(2545), 2, sym_line_comment, sym_block_comment, - [78640] = 8, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [79475] = 8, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3348), 1, + ACTIONS(3386), 1, anon_sym_SQUOTE, - ACTIONS(5080), 1, + ACTIONS(5145), 1, anon_sym_LBRACE, - ACTIONS(5635), 1, + ACTIONS(5669), 1, anon_sym_SEMI, - STATE(501), 1, + STATE(538), 1, sym_block, - STATE(3713), 1, + STATE(3743), 1, sym_label, - STATE(2531), 2, + STATE(2546), 2, sym_line_comment, sym_block_comment, - [78666] = 8, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [79501] = 8, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3348), 1, + ACTIONS(3386), 1, anon_sym_SQUOTE, - ACTIONS(5124), 1, + ACTIONS(5155), 1, anon_sym_LBRACE, - ACTIONS(5637), 1, + ACTIONS(5671), 1, anon_sym_SEMI, - STATE(1186), 1, + STATE(1103), 1, sym_block, - STATE(3716), 1, + STATE(3746), 1, sym_label, - STATE(2532), 2, + STATE(2547), 2, sym_line_comment, sym_block_comment, - [78692] = 8, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [79527] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4574), 1, - anon_sym_LT2, - ACTIONS(4592), 1, - anon_sym_COLON_COLON, - ACTIONS(4713), 1, + ACTIONS(3505), 1, + anon_sym_PLUS, + ACTIONS(4608), 2, anon_sym_COLON, - STATE(1999), 1, - sym_type_arguments, - STATE(2543), 1, - sym_trait_bounds, - STATE(2533), 2, + anon_sym_PIPE, + ACTIONS(5673), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(2548), 2, + sym_line_comment, + sym_block_comment, + [79549] = 4, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + STATE(2549), 2, sym_line_comment, sym_block_comment, - [78718] = 8, - ACTIONS(103), 1, + ACTIONS(5493), 5, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + [79567] = 8, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(3072), 1, + anon_sym_SQUOTE, + ACTIONS(5676), 1, + sym_identifier, + ACTIONS(5678), 1, + anon_sym_GT, + ACTIONS(5680), 1, + anon_sym_COMMA, + STATE(2951), 1, + sym_lifetime, + STATE(2550), 2, + sym_line_comment, + sym_block_comment, + [79593] = 8, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, + ACTIONS(348), 1, anon_sym_LBRACE, - ACTIONS(3348), 1, + ACTIONS(3386), 1, anon_sym_SQUOTE, - ACTIONS(5639), 1, - anon_sym_move, - STATE(1405), 1, + ACTIONS(5157), 1, + anon_sym_PLUS, + STATE(1526), 1, sym_block, - STATE(3664), 1, + STATE(3693), 1, sym_label, - STATE(2534), 2, + STATE(2551), 2, sym_line_comment, sym_block_comment, - [78744] = 8, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [79619] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4879), 1, - anon_sym_PIPE, - ACTIONS(5641), 1, - anon_sym_SEMI, - ACTIONS(5643), 1, + ACTIONS(4608), 2, anon_sym_COLON, - ACTIONS(5645), 1, - anon_sym_EQ, - ACTIONS(5647), 1, - anon_sym_else, - STATE(2535), 2, + anon_sym_PIPE, + STATE(2552), 2, sym_line_comment, sym_block_comment, - [78770] = 8, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + ACTIONS(3505), 3, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_COMMA, + [79639] = 8, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3348), 1, + ACTIONS(3386), 1, anon_sym_SQUOTE, - ACTIONS(5080), 1, + ACTIONS(5155), 1, anon_sym_LBRACE, - ACTIONS(5649), 1, + ACTIONS(5682), 1, anon_sym_SEMI, - STATE(554), 1, + STATE(1175), 1, sym_block, - STATE(3713), 1, + STATE(3746), 1, sym_label, - STATE(2536), 2, + STATE(2553), 2, sym_line_comment, sym_block_comment, - [78796] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [79665] = 8, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4208), 1, + ACTIONS(3386), 1, + anon_sym_SQUOTE, + ACTIONS(5145), 1, anon_sym_LBRACE, - ACTIONS(5653), 1, - anon_sym_STAR, - STATE(2841), 1, - sym_use_list, - ACTIONS(5651), 2, - sym_identifier, - sym_super, - STATE(2537), 2, + ACTIONS(5684), 1, + anon_sym_SEMI, + STATE(573), 1, + sym_block, + STATE(3743), 1, + sym_label, + STATE(2554), 2, sym_line_comment, sym_block_comment, - [78820] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [79691] = 4, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(2538), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3302), 5, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_as, - [78838] = 4, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(2539), 2, + STATE(2555), 2, sym_line_comment, sym_block_comment, - ACTIONS(5655), 5, + ACTIONS(5686), 5, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_EQ, anon_sym_COMMA, anon_sym_where, - [78856] = 8, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [79709] = 8, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(407), 1, - anon_sym_LBRACE, - ACTIONS(3348), 1, + ACTIONS(3386), 1, anon_sym_SQUOTE, - ACTIONS(5082), 1, - anon_sym_PLUS, - STATE(1839), 1, + ACTIONS(5155), 1, + anon_sym_LBRACE, + ACTIONS(5688), 1, + anon_sym_SEMI, + STATE(1135), 1, sym_block, - STATE(3718), 1, + STATE(3746), 1, sym_label, - STATE(2540), 2, + STATE(2556), 2, sym_line_comment, sym_block_comment, - [78882] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [79735] = 8, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5590), 1, - anon_sym_as, - ACTIONS(5657), 1, - anon_sym_COLON_COLON, - STATE(2541), 2, + ACTIONS(3386), 1, + anon_sym_SQUOTE, + ACTIONS(5155), 1, + anon_sym_LBRACE, + ACTIONS(5690), 1, + anon_sym_SEMI, + STATE(1302), 1, + sym_block, + STATE(3746), 1, + sym_label, + STATE(2557), 2, sym_line_comment, sym_block_comment, - ACTIONS(5586), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [78904] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [79761] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(2542), 2, + STATE(2558), 2, sym_line_comment, sym_block_comment, - ACTIONS(5659), 5, + ACTIONS(5692), 5, anon_sym_SEMI, - anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_EQ, anon_sym_COMMA, - anon_sym_SQUOTE, - [78922] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + anon_sym_where, + [79779] = 8, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(2543), 2, + ACTIONS(3386), 1, + anon_sym_SQUOTE, + ACTIONS(5155), 1, + anon_sym_LBRACE, + ACTIONS(5694), 1, + anon_sym_SEMI, + STATE(1142), 1, + sym_block, + STATE(3746), 1, + sym_label, + STATE(2559), 2, sym_line_comment, sym_block_comment, - ACTIONS(5661), 5, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - [78940] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [79805] = 8, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5616), 1, - anon_sym_RBRACK, - ACTIONS(3425), 2, + ACTIONS(3386), 1, + anon_sym_SQUOTE, + ACTIONS(5145), 1, + anon_sym_LBRACE, + ACTIONS(5696), 1, anon_sym_SEMI, - anon_sym_PLUS, - ACTIONS(4576), 2, - anon_sym_PIPE, - anon_sym_COMMA, - STATE(2544), 2, + STATE(669), 1, + sym_block, + STATE(3743), 1, + sym_label, + STATE(2560), 2, sym_line_comment, sym_block_comment, - [78962] = 8, - ACTIONS(103), 1, + [79831] = 8, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(5018), 1, + anon_sym_PIPE, + ACTIONS(5698), 1, + anon_sym_SEMI, + ACTIONS(5700), 1, + anon_sym_COLON, + ACTIONS(5702), 1, + anon_sym_EQ, + ACTIONS(5704), 1, + anon_sym_else, + STATE(2561), 2, + sym_line_comment, + sym_block_comment, + [79857] = 8, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3348), 1, + ACTIONS(3386), 1, anon_sym_SQUOTE, - ACTIONS(5080), 1, + ACTIONS(5155), 1, anon_sym_LBRACE, - ACTIONS(5663), 1, + ACTIONS(5706), 1, anon_sym_SEMI, - STATE(588), 1, + STATE(1154), 1, sym_block, - STATE(3713), 1, + STATE(3746), 1, sym_label, - STATE(2545), 2, + STATE(2562), 2, sym_line_comment, sym_block_comment, - [78988] = 8, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [79883] = 8, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3348), 1, + ACTIONS(3386), 1, anon_sym_SQUOTE, - ACTIONS(5080), 1, + ACTIONS(5145), 1, anon_sym_LBRACE, - ACTIONS(5665), 1, + ACTIONS(5708), 1, anon_sym_SEMI, - STATE(682), 1, + STATE(623), 1, sym_block, - STATE(3713), 1, + STATE(3743), 1, sym_label, - STATE(2546), 2, + STATE(2563), 2, sym_line_comment, sym_block_comment, - [79014] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [79909] = 8, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4208), 1, + ACTIONS(3386), 1, + anon_sym_SQUOTE, + ACTIONS(5155), 1, anon_sym_LBRACE, - ACTIONS(5298), 1, - anon_sym_STAR, - STATE(2845), 1, - sym_use_list, - ACTIONS(5296), 2, - sym_identifier, - sym_super, - STATE(2547), 2, + ACTIONS(5710), 1, + anon_sym_SEMI, + STATE(1160), 1, + sym_block, + STATE(3746), 1, + sym_label, + STATE(2564), 2, sym_line_comment, sym_block_comment, - [79038] = 8, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [79935] = 8, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3348), 1, + ACTIONS(3386), 1, anon_sym_SQUOTE, - ACTIONS(5080), 1, + ACTIONS(5155), 1, anon_sym_LBRACE, - ACTIONS(5667), 1, + ACTIONS(5712), 1, anon_sym_SEMI, - STATE(603), 1, + STATE(1164), 1, sym_block, - STATE(3713), 1, + STATE(3746), 1, sym_label, - STATE(2548), 2, + STATE(2565), 2, sym_line_comment, sym_block_comment, - [79064] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [79961] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(2549), 2, + STATE(2566), 2, sym_line_comment, sym_block_comment, - ACTIONS(5669), 5, + ACTIONS(5714), 5, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_EQ, anon_sym_COMMA, anon_sym_where, - [79082] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [79979] = 4, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4576), 2, - anon_sym_COLON, - anon_sym_PIPE, - STATE(2550), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3425), 3, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_COMMA, - [79102] = 8, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5544), 1, - anon_sym_PIPE, - ACTIONS(5671), 1, - anon_sym_RPAREN, - ACTIONS(5673), 1, - anon_sym_COLON, - ACTIONS(5675), 1, - anon_sym_COMMA, - STATE(3051), 1, - aux_sym_slice_pattern_repeat1, - STATE(2551), 2, + STATE(2567), 2, sym_line_comment, sym_block_comment, - [79128] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + ACTIONS(5716), 5, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_where, + [79997] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5497), 1, + ACTIONS(5673), 1, anon_sym_RBRACK, - ACTIONS(3768), 2, + ACTIONS(3505), 2, anon_sym_SEMI, anon_sym_PLUS, - ACTIONS(4861), 2, + ACTIONS(4608), 2, anon_sym_PIPE, anon_sym_COMMA, - STATE(2552), 2, + STATE(2568), 2, sym_line_comment, sym_block_comment, - [79150] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [80019] = 8, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(1399), 1, - anon_sym_RPAREN, - ACTIONS(5677), 1, - anon_sym_COMMA, - STATE(2927), 1, - aux_sym_parameters_repeat1, - ACTIONS(4576), 2, - anon_sym_COLON, - anon_sym_PIPE, - STATE(2553), 2, - sym_line_comment, - sym_block_comment, - [79174] = 8, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3058), 1, - anon_sym_SQUOTE, - ACTIONS(5679), 1, + ACTIONS(3070), 1, + anon_sym_POUND, + ACTIONS(5718), 1, sym_identifier, - ACTIONS(5681), 1, - anon_sym_GT, - ACTIONS(5683), 1, - anon_sym_COMMA, - STATE(2929), 1, - sym_lifetime, - STATE(2554), 2, + ACTIONS(5720), 1, + sym_integer_literal, + STATE(1085), 1, + aux_sym_enum_variant_list_repeat1, + STATE(1377), 1, + sym_attribute_item, + STATE(2569), 2, sym_line_comment, sym_block_comment, - [79200] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [80045] = 8, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3140), 1, - anon_sym_PLUS, - ACTIONS(5128), 1, - anon_sym_COLON, - STATE(3136), 1, - sym_trait_bounds, - ACTIONS(5629), 2, - anon_sym_GT, - anon_sym_COMMA, - STATE(2555), 2, - sym_line_comment, - sym_block_comment, - [79224] = 8, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3348), 1, + ACTIONS(3386), 1, anon_sym_SQUOTE, - ACTIONS(5124), 1, + ACTIONS(5145), 1, anon_sym_LBRACE, - ACTIONS(5685), 1, + ACTIONS(5722), 1, anon_sym_SEMI, - STATE(1233), 1, + STATE(743), 1, sym_block, - STATE(3716), 1, + STATE(3743), 1, sym_label, - STATE(2556), 2, + STATE(2570), 2, sym_line_comment, sym_block_comment, - [79250] = 8, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [80071] = 4, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4987), 1, - anon_sym_LT, - ACTIONS(4989), 1, - anon_sym_where, - ACTIONS(5687), 1, - anon_sym_EQ, - STATE(3124), 1, - sym_type_parameters, - STATE(3697), 1, - sym_where_clause, - STATE(2557), 2, - sym_line_comment, - sym_block_comment, - [79276] = 4, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(2558), 2, + STATE(2571), 2, sym_line_comment, sym_block_comment, - ACTIONS(3538), 5, + ACTIONS(3564), 5, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_COLON, anon_sym_EQ, anon_sym_where, - [79294] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [80089] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(2559), 2, + STATE(2572), 2, sym_line_comment, sym_block_comment, - ACTIONS(3694), 5, + ACTIONS(5724), 5, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COLON, + anon_sym_RBRACE, anon_sym_EQ, + anon_sym_COMMA, anon_sym_where, - [79312] = 8, - ACTIONS(103), 1, + [80107] = 8, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(412), 1, + anon_sym_LBRACE, + ACTIONS(3386), 1, + anon_sym_SQUOTE, + ACTIONS(5726), 1, + anon_sym_move, + STATE(1788), 1, + sym_block, + STATE(3748), 1, + sym_label, + STATE(2573), 2, + sym_line_comment, + sym_block_comment, + [80133] = 8, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3348), 1, + ACTIONS(3386), 1, anon_sym_SQUOTE, - ACTIONS(5080), 1, + ACTIONS(5145), 1, anon_sym_LBRACE, - ACTIONS(5689), 1, + ACTIONS(5728), 1, anon_sym_SEMI, - STATE(535), 1, + STATE(756), 1, sym_block, - STATE(3713), 1, + STATE(3743), 1, sym_label, - STATE(2560), 2, + STATE(2574), 2, sym_line_comment, sym_block_comment, - [79338] = 8, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [80159] = 8, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3044), 1, - anon_sym_POUND, - ACTIONS(5691), 1, - sym_identifier, - ACTIONS(5693), 1, - sym_integer_literal, - STATE(1074), 1, - aux_sym_enum_variant_list_repeat1, - STATE(1494), 1, - sym_attribute_item, - STATE(2561), 2, + ACTIONS(5050), 1, + anon_sym_LT, + ACTIONS(5052), 1, + anon_sym_where, + ACTIONS(5730), 1, + anon_sym_EQ, + STATE(3150), 1, + sym_type_parameters, + STATE(3726), 1, + sym_where_clause, + STATE(2575), 2, sym_line_comment, sym_block_comment, - [79364] = 8, - ACTIONS(103), 1, + [80185] = 6, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(5734), 1, + anon_sym_COLON_COLON, + ACTIONS(5736), 1, + anon_sym_as, + STATE(2576), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5732), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [80207] = 8, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3348), 1, + ACTIONS(3072), 1, anon_sym_SQUOTE, - ACTIONS(5080), 1, - anon_sym_LBRACE, - ACTIONS(5695), 1, - anon_sym_SEMI, - STATE(551), 1, - sym_block, - STATE(3713), 1, - sym_label, - STATE(2562), 2, + ACTIONS(5738), 1, + sym_identifier, + ACTIONS(5740), 1, + anon_sym_GT, + ACTIONS(5742), 1, + anon_sym_COMMA, + STATE(3106), 1, + sym_lifetime, + STATE(2577), 2, sym_line_comment, sym_block_comment, - [79390] = 4, - ACTIONS(103), 1, + [80233] = 4, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + STATE(2578), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3574), 5, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_where, + [80251] = 8, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(2563), 2, + ACTIONS(5149), 1, + anon_sym_COLON, + ACTIONS(5500), 1, + anon_sym_GT, + ACTIONS(5502), 1, + anon_sym_COMMA, + STATE(3127), 1, + sym_trait_bounds, + STATE(3131), 1, + aux_sym_type_arguments_repeat1, + STATE(2579), 2, + sym_line_comment, + sym_block_comment, + [80277] = 4, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + STATE(2580), 2, sym_line_comment, sym_block_comment, - ACTIONS(5697), 5, + ACTIONS(5744), 5, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_EQ, anon_sym_COMMA, anon_sym_where, - [79408] = 8, - ACTIONS(103), 1, + [80295] = 7, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(5149), 1, + anon_sym_COLON, + STATE(2926), 1, + aux_sym_for_lifetimes_repeat1, + STATE(3216), 1, + sym_trait_bounds, + ACTIONS(5534), 2, + anon_sym_GT, + anon_sym_COMMA, + STATE(2581), 2, + sym_line_comment, + sym_block_comment, + [80319] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3348), 1, - anon_sym_SQUOTE, - ACTIONS(5080), 1, + ACTIONS(4256), 1, anon_sym_LBRACE, - ACTIONS(5699), 1, - anon_sym_SEMI, - STATE(580), 1, - sym_block, - STATE(3713), 1, - sym_label, - STATE(2564), 2, + ACTIONS(5297), 1, + anon_sym_STAR, + STATE(3054), 1, + sym_use_list, + ACTIONS(5295), 2, + sym_identifier, + sym_super, + STATE(2582), 2, sym_line_comment, sym_block_comment, - [79434] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [80343] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5276), 1, + ACTIONS(5746), 1, anon_sym_LPAREN, - ACTIONS(5278), 1, + ACTIONS(5748), 1, anon_sym_LBRACK, - ACTIONS(5282), 1, + ACTIONS(5750), 1, anon_sym_LBRACE, - STATE(1433), 1, + STATE(1843), 1, sym_delim_token_tree, - STATE(2565), 2, + STATE(2583), 2, sym_line_comment, sym_block_comment, - [79457] = 7, - ACTIONS(19), 1, - anon_sym_LBRACE, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [80366] = 7, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3348), 1, - anon_sym_SQUOTE, - STATE(395), 1, - sym_block, - STATE(3676), 1, - sym_label, - STATE(2566), 2, - sym_line_comment, - sym_block_comment, - [79480] = 7, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4078), 1, + ACTIONS(4116), 1, anon_sym_LPAREN, - ACTIONS(4574), 1, + ACTIONS(4604), 1, anon_sym_LT2, - STATE(1655), 1, + STATE(1677), 1, sym_parameters, - STATE(1993), 1, + STATE(2013), 1, sym_type_arguments, - STATE(2567), 2, + STATE(2584), 2, sym_line_comment, sym_block_comment, - [79503] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [80389] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4574), 1, + ACTIONS(4604), 1, anon_sym_LT2, - ACTIONS(5296), 1, + ACTIONS(5295), 1, sym_super, - ACTIONS(5701), 1, + ACTIONS(5752), 1, sym_identifier, - STATE(3659), 1, + STATE(3575), 1, sym_type_arguments, - STATE(2568), 2, + STATE(2585), 2, sym_line_comment, sym_block_comment, - [79526] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [80412] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4989), 1, + ACTIONS(5052), 1, anon_sym_where, - ACTIONS(5082), 1, + ACTIONS(5157), 1, anon_sym_PLUS, - ACTIONS(5703), 1, + ACTIONS(5754), 1, anon_sym_SEMI, - STATE(3667), 1, + STATE(3519), 1, sym_where_clause, - STATE(2569), 2, + STATE(2586), 2, sym_line_comment, sym_block_comment, - [79549] = 7, - ACTIONS(19), 1, - anon_sym_LBRACE, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [80435] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3348), 1, - anon_sym_SQUOTE, - STATE(408), 1, - sym_block, - STATE(3676), 1, - sym_label, - STATE(2570), 2, + ACTIONS(5052), 1, + anon_sym_where, + ACTIONS(5157), 1, + anon_sym_PLUS, + ACTIONS(5756), 1, + anon_sym_SEMI, + STATE(3548), 1, + sym_where_clause, + STATE(2587), 2, sym_line_comment, sym_block_comment, - [79572] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [80458] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(1301), 1, + ACTIONS(1366), 1, anon_sym_LBRACE, - ACTIONS(3348), 1, + ACTIONS(3386), 1, anon_sym_SQUOTE, - STATE(490), 1, + STATE(479), 1, sym_block, - STATE(3717), 1, + STATE(3747), 1, sym_label, - STATE(2571), 2, + STATE(2588), 2, sym_line_comment, sym_block_comment, - [79595] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [80481] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5705), 1, - anon_sym_DQUOTE, - STATE(2794), 1, - aux_sym_string_literal_repeat1, - ACTIONS(5707), 2, - sym_string_content, - sym_escape_sequence, - STATE(2572), 2, + ACTIONS(4984), 1, + anon_sym_LBRACE, + ACTIONS(5052), 1, + anon_sym_where, + STATE(1222), 1, + sym_declaration_list, + STATE(3377), 1, + sym_where_clause, + STATE(2589), 2, sym_line_comment, sym_block_comment, - [79616] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [80504] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5709), 1, - anon_sym_DQUOTE, - STATE(2794), 1, - aux_sym_string_literal_repeat1, - ACTIONS(5707), 2, - sym_string_content, - sym_escape_sequence, - STATE(2573), 2, + ACTIONS(5758), 1, + anon_sym_COLON, + STATE(2590), 2, sym_line_comment, sym_block_comment, - [79637] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + ACTIONS(5018), 3, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_COMMA, + [80523] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4989), 1, - anon_sym_where, - ACTIONS(5082), 1, + ACTIONS(5157), 1, anon_sym_PLUS, - ACTIONS(5711), 1, + ACTIONS(5760), 1, anon_sym_SEMI, - STATE(3494), 1, - sym_where_clause, - STATE(2574), 2, + ACTIONS(5762), 1, + anon_sym_EQ, + ACTIONS(5764), 1, + anon_sym_else, + STATE(2591), 2, sym_line_comment, sym_block_comment, - [79660] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [80546] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4574), 1, + ACTIONS(4604), 1, anon_sym_LT2, - STATE(3659), 1, + ACTIONS(5766), 1, + anon_sym_COLON_COLON, + ACTIONS(5768), 1, + anon_sym_for, + STATE(2016), 1, sym_type_arguments, - ACTIONS(5296), 2, - sym_identifier, - sym_super, - STATE(2575), 2, + STATE(2592), 2, sym_line_comment, sym_block_comment, - [79681] = 5, - ACTIONS(103), 1, + [80569] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5713), 1, - anon_sym_COMMA, - ACTIONS(4228), 2, - anon_sym_RPAREN, - anon_sym_RBRACK, - STATE(2576), 3, + ACTIONS(5770), 1, + aux_sym_token_repetition_pattern_token1, + STATE(2593), 2, sym_line_comment, sym_block_comment, - aux_sym_arguments_repeat1, - [79700] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + ACTIONS(5772), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [80588] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5082), 1, + ACTIONS(5157), 1, anon_sym_PLUS, - ACTIONS(5556), 1, + ACTIONS(5528), 1, anon_sym_RPAREN, - ACTIONS(5558), 1, + ACTIONS(5530), 1, anon_sym_COMMA, - STATE(2999), 1, + STATE(3021), 1, aux_sym_parameters_repeat1, - STATE(2577), 2, + STATE(2594), 2, sym_line_comment, sym_block_comment, - [79723] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [80611] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5716), 1, - anon_sym_LPAREN, - ACTIONS(5718), 1, - anon_sym_LBRACK, - ACTIONS(5720), 1, + ACTIONS(4928), 1, anon_sym_LBRACE, - STATE(394), 1, - sym_delim_token_tree, - STATE(2578), 2, + ACTIONS(5052), 1, + anon_sym_where, + STATE(548), 1, + sym_declaration_list, + STATE(3374), 1, + sym_where_clause, + STATE(2595), 2, sym_line_comment, sym_block_comment, - [79746] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [80634] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5722), 1, - sym_identifier, - STATE(2579), 2, + ACTIONS(5052), 1, + anon_sym_where, + ACTIONS(5157), 1, + anon_sym_PLUS, + ACTIONS(5774), 1, + anon_sym_SEMI, + STATE(3579), 1, + sym_where_clause, + STATE(2596), 2, sym_line_comment, sym_block_comment, - ACTIONS(5724), 3, - anon_sym_default, - anon_sym_gen, - anon_sym_union, - [79765] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [80657] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5276), 1, - anon_sym_LPAREN, - ACTIONS(5278), 1, - anon_sym_LBRACK, - ACTIONS(5282), 1, + ACTIONS(4984), 1, anon_sym_LBRACE, - STATE(1445), 1, - sym_delim_token_tree, - STATE(2580), 2, + ACTIONS(5052), 1, + anon_sym_where, + STATE(1276), 1, + sym_declaration_list, + STATE(3388), 1, + sym_where_clause, + STATE(2597), 2, sym_line_comment, sym_block_comment, - [79788] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [80680] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3362), 1, + ACTIONS(4604), 1, anon_sym_LT2, - ACTIONS(5296), 1, - sym_super, - ACTIONS(5726), 1, + ACTIONS(5752), 1, sym_identifier, - STATE(1595), 1, + ACTIONS(5776), 1, + sym_super, + STATE(2113), 1, sym_type_arguments, - STATE(2581), 2, + STATE(2598), 2, sym_line_comment, sym_block_comment, - [79811] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [80703] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4989), 1, - anon_sym_where, - ACTIONS(4993), 1, + ACTIONS(4984), 1, anon_sym_LBRACE, - STATE(734), 1, + ACTIONS(5052), 1, + anon_sym_where, + STATE(1346), 1, sym_declaration_list, - STATE(3160), 1, + STATE(3231), 1, sym_where_clause, - STATE(2582), 2, + STATE(2599), 2, sym_line_comment, sym_block_comment, - [79834] = 7, - ACTIONS(19), 1, - anon_sym_LBRACE, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [80726] = 7, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3348), 1, - anon_sym_SQUOTE, - STATE(319), 1, - sym_block, - STATE(3676), 1, - sym_label, - STATE(2583), 2, - sym_line_comment, - sym_block_comment, - [79857] = 7, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(1301), 1, + ACTIONS(1366), 1, anon_sym_LBRACE, - ACTIONS(3348), 1, + ACTIONS(3386), 1, anon_sym_SQUOTE, - STATE(491), 1, + STATE(475), 1, sym_block, - STATE(3717), 1, + STATE(3747), 1, sym_label, - STATE(2584), 2, + STATE(2600), 2, sym_line_comment, sym_block_comment, - [79880] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [80749] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4989), 1, - anon_sym_where, - ACTIONS(5082), 1, + ACTIONS(5157), 1, anon_sym_PLUS, - ACTIONS(5728), 1, - anon_sym_SEMI, - STATE(3501), 1, - sym_where_clause, - STATE(2585), 2, + STATE(2601), 2, sym_line_comment, sym_block_comment, - [79903] = 5, - ACTIONS(3), 1, + ACTIONS(5778), 3, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_COMMA, + [80768] = 6, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5730), 1, - aux_sym_token_repetition_pattern_token1, - STATE(2586), 2, + ACTIONS(5149), 1, + anon_sym_COLON, + STATE(3216), 1, + sym_trait_bounds, + ACTIONS(5534), 2, + anon_sym_GT, + anon_sym_COMMA, + STATE(2602), 2, sym_line_comment, sym_block_comment, - ACTIONS(5732), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [79922] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [80789] = 7, + ACTIONS(19), 1, + anon_sym_LBRACE, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4731), 1, - anon_sym_DOT_DOT, - ACTIONS(5734), 1, - anon_sym_COLON_COLON, - ACTIONS(4733), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2587), 2, - sym_line_comment, - sym_block_comment, - [79943] = 5, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5736), 1, - anon_sym_COLON_COLON, - STATE(2588), 2, + ACTIONS(3386), 1, + anon_sym_SQUOTE, + STATE(417), 1, + sym_block, + STATE(3582), 1, + sym_label, + STATE(2603), 2, sym_line_comment, sym_block_comment, - ACTIONS(4787), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [79962] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [80812] = 7, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4989), 1, - anon_sym_where, - ACTIONS(5082), 1, - anon_sym_PLUS, - ACTIONS(5738), 1, - anon_sym_SEMI, - STATE(3721), 1, - sym_where_clause, - STATE(2589), 2, - sym_line_comment, - sym_block_comment, - [79985] = 7, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(1405), 1, + ACTIONS(1416), 1, anon_sym_RPAREN, - ACTIONS(5082), 1, + ACTIONS(5157), 1, anon_sym_PLUS, - ACTIONS(5570), 1, + ACTIONS(5546), 1, anon_sym_COMMA, - STATE(3006), 1, + STATE(3031), 1, aux_sym_parameters_repeat1, - STATE(2590), 2, + STATE(2604), 2, sym_line_comment, sym_block_comment, - [80008] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [80835] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4989), 1, + ACTIONS(5052), 1, anon_sym_where, - ACTIONS(5082), 1, + ACTIONS(5157), 1, anon_sym_PLUS, - ACTIONS(5740), 1, + ACTIONS(5780), 1, anon_sym_SEMI, - STATE(3725), 1, + STATE(3695), 1, sym_where_clause, - STATE(2591), 2, + STATE(2605), 2, sym_line_comment, sym_block_comment, - [80031] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [80858] = 7, + ACTIONS(19), 1, + anon_sym_LBRACE, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(2592), 2, + ACTIONS(3386), 1, + anon_sym_SQUOTE, + STATE(420), 1, + sym_block, + STATE(3582), 1, + sym_label, + STATE(2606), 2, sym_line_comment, sym_block_comment, - ACTIONS(5742), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - [80048] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [80881] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5744), 1, - anon_sym_LPAREN, - ACTIONS(5746), 1, - anon_sym_LBRACK, - ACTIONS(5748), 1, + ACTIONS(4928), 1, anon_sym_LBRACE, - STATE(2592), 1, - sym_token_tree, - STATE(2593), 2, + ACTIONS(5052), 1, + anon_sym_where, + STATE(632), 1, + sym_declaration_list, + STATE(3184), 1, + sym_where_clause, + STATE(2607), 2, sym_line_comment, sym_block_comment, - [80071] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [80904] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3362), 1, - anon_sym_LT2, - ACTIONS(5296), 1, - sym_super, - ACTIONS(5726), 1, - sym_identifier, - STATE(1615), 1, - sym_type_arguments, - STATE(2594), 2, + ACTIONS(5782), 1, + anon_sym_COMMA, + ACTIONS(4288), 2, + anon_sym_RPAREN, + anon_sym_RBRACK, + STATE(2608), 3, sym_line_comment, sym_block_comment, - [80094] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + aux_sym_arguments_repeat1, + [80923] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4971), 1, + ACTIONS(4984), 1, anon_sym_LBRACE, - ACTIONS(4989), 1, + ACTIONS(5052), 1, anon_sym_where, - STATE(1329), 1, + STATE(1357), 1, sym_declaration_list, - STATE(3421), 1, + STATE(3238), 1, sym_where_clause, - STATE(2595), 2, + STATE(2609), 2, sym_line_comment, sym_block_comment, - [80117] = 7, - ACTIONS(103), 1, + [80946] = 7, + ACTIONS(19), 1, + anon_sym_LBRACE, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(3386), 1, + anon_sym_SQUOTE, + STATE(419), 1, + sym_block, + STATE(3582), 1, + sym_label, + STATE(2610), 2, + sym_line_comment, + sym_block_comment, + [80969] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3058), 1, + ACTIONS(3072), 1, anon_sym_SQUOTE, - ACTIONS(5750), 1, + ACTIONS(5785), 1, sym_identifier, - ACTIONS(5752), 1, + ACTIONS(5787), 1, anon_sym_GT, - STATE(3157), 1, + STATE(3179), 1, sym_lifetime, - STATE(2596), 2, + STATE(2611), 2, sym_line_comment, sym_block_comment, - [80140] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [80992] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3058), 1, + ACTIONS(3072), 1, anon_sym_SQUOTE, - ACTIONS(5750), 1, + ACTIONS(5785), 1, sym_identifier, - ACTIONS(5754), 1, + ACTIONS(5789), 1, anon_sym_GT, - STATE(3157), 1, + STATE(3179), 1, sym_lifetime, - STATE(2597), 2, + STATE(2612), 2, sym_line_comment, sym_block_comment, - [80163] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [81015] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3058), 1, + ACTIONS(3072), 1, anon_sym_SQUOTE, - ACTIONS(5750), 1, + ACTIONS(5785), 1, sym_identifier, - ACTIONS(5756), 1, + ACTIONS(5791), 1, anon_sym_GT, - STATE(3157), 1, + STATE(3179), 1, sym_lifetime, - STATE(2598), 2, + STATE(2613), 2, sym_line_comment, sym_block_comment, - [80186] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [81038] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3058), 1, + ACTIONS(3072), 1, anon_sym_SQUOTE, - ACTIONS(5750), 1, + ACTIONS(5785), 1, sym_identifier, - ACTIONS(5758), 1, + ACTIONS(5793), 1, anon_sym_GT, - STATE(3157), 1, + STATE(3179), 1, sym_lifetime, - STATE(2599), 2, + STATE(2614), 2, sym_line_comment, sym_block_comment, - [80209] = 7, - ACTIONS(103), 1, + [81061] = 7, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(4604), 1, + anon_sym_LT2, + ACTIONS(5295), 1, + sym_super, + ACTIONS(5795), 1, + sym_identifier, + STATE(3575), 1, + sym_type_arguments, + STATE(2615), 2, + sym_line_comment, + sym_block_comment, + [81084] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(407), 1, + ACTIONS(412), 1, anon_sym_LBRACE, - ACTIONS(3348), 1, + ACTIONS(3386), 1, anon_sym_SQUOTE, - STATE(1734), 1, + STATE(1790), 1, sym_block, - STATE(3718), 1, + STATE(3748), 1, sym_label, - STATE(2600), 2, + STATE(2616), 2, sym_line_comment, sym_block_comment, - [80232] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [81107] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(407), 1, + ACTIONS(412), 1, anon_sym_LBRACE, - ACTIONS(3348), 1, + ACTIONS(3386), 1, anon_sym_SQUOTE, - STATE(1736), 1, + STATE(1792), 1, sym_block, - STATE(3718), 1, + STATE(3748), 1, sym_label, - STATE(2601), 2, + STATE(2617), 2, sym_line_comment, sym_block_comment, - [80255] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [81130] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5760), 1, + ACTIONS(5797), 1, anon_sym_DQUOTE, - STATE(2611), 1, + STATE(2628), 1, aux_sym_string_literal_repeat1, - ACTIONS(5707), 2, + ACTIONS(5799), 2, sym_string_content, sym_escape_sequence, - STATE(2602), 2, + STATE(2618), 2, sym_line_comment, sym_block_comment, - [80276] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [81151] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(1301), 1, + ACTIONS(1366), 1, anon_sym_LBRACE, - ACTIONS(3348), 1, + ACTIONS(3386), 1, anon_sym_SQUOTE, - STATE(483), 1, + STATE(474), 1, sym_block, - STATE(3717), 1, + STATE(3747), 1, sym_label, - STATE(2603), 2, + STATE(2619), 2, sym_line_comment, sym_block_comment, - [80299] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [81174] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5762), 1, - anon_sym_COLON_COLON, - STATE(2604), 2, + ACTIONS(5801), 1, + sym_identifier, + STATE(2620), 2, sym_line_comment, sym_block_comment, - ACTIONS(4793), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [80318] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + ACTIONS(5803), 3, + anon_sym_default, + anon_sym_gen, + anon_sym_union, + [81193] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(407), 1, + ACTIONS(348), 1, anon_sym_LBRACE, - ACTIONS(3348), 1, + ACTIONS(3386), 1, anon_sym_SQUOTE, - STATE(1741), 1, + STATE(3691), 1, sym_block, - STATE(3718), 1, + STATE(3693), 1, sym_label, - STATE(2605), 2, + STATE(2621), 2, sym_line_comment, sym_block_comment, - [80341] = 7, - ACTIONS(103), 1, + [81216] = 7, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(412), 1, + anon_sym_LBRACE, + ACTIONS(3386), 1, + anon_sym_SQUOTE, + STATE(1798), 1, + sym_block, + STATE(3748), 1, + sym_label, + STATE(2622), 2, + sym_line_comment, + sym_block_comment, + [81239] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5764), 1, + ACTIONS(5805), 1, anon_sym_LPAREN, - ACTIONS(5766), 1, + ACTIONS(5807), 1, anon_sym_LBRACK, - ACTIONS(5768), 1, + ACTIONS(5809), 1, anon_sym_LBRACE, - STATE(1050), 1, + STATE(1055), 1, sym_delim_token_tree, - STATE(2606), 2, + STATE(2623), 2, sym_line_comment, sym_block_comment, - [80364] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [81262] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(407), 1, + ACTIONS(412), 1, anon_sym_LBRACE, - ACTIONS(3348), 1, + ACTIONS(3386), 1, anon_sym_SQUOTE, - STATE(1743), 1, + STATE(1800), 1, sym_block, - STATE(3718), 1, + STATE(3748), 1, sym_label, - STATE(2607), 2, + STATE(2624), 2, sym_line_comment, sym_block_comment, - [80387] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [81285] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(407), 1, + ACTIONS(412), 1, anon_sym_LBRACE, - ACTIONS(3348), 1, + ACTIONS(3386), 1, anon_sym_SQUOTE, - STATE(1606), 1, + STATE(1627), 1, sym_block, - STATE(3718), 1, + STATE(3748), 1, sym_label, - STATE(2608), 2, + STATE(2625), 2, sym_line_comment, sym_block_comment, - [80410] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [81308] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5770), 1, - anon_sym_COLON_COLON, - STATE(2609), 2, + ACTIONS(348), 1, + anon_sym_LBRACE, + ACTIONS(3386), 1, + anon_sym_SQUOTE, + STATE(3693), 1, + sym_label, + STATE(3749), 1, + sym_block, + STATE(2626), 2, sym_line_comment, sym_block_comment, - ACTIONS(4793), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [80429] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [81331] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(407), 1, + ACTIONS(412), 1, anon_sym_LBRACE, - ACTIONS(3348), 1, + ACTIONS(3386), 1, anon_sym_SQUOTE, - STATE(1748), 1, + STATE(1804), 1, sym_block, - STATE(3718), 1, + STATE(3748), 1, sym_label, - STATE(2610), 2, + STATE(2627), 2, sym_line_comment, sym_block_comment, - [80452] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [81354] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5772), 1, + ACTIONS(5811), 1, anon_sym_DQUOTE, - STATE(2794), 1, + STATE(2770), 1, aux_sym_string_literal_repeat1, - ACTIONS(5707), 2, + ACTIONS(5799), 2, sym_string_content, sym_escape_sequence, - STATE(2611), 2, + STATE(2628), 2, sym_line_comment, sym_block_comment, - [80473] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [81375] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5764), 1, + ACTIONS(5805), 1, anon_sym_LPAREN, - ACTIONS(5766), 1, + ACTIONS(5807), 1, anon_sym_LBRACK, - ACTIONS(5768), 1, + ACTIONS(5809), 1, anon_sym_LBRACE, - STATE(1047), 1, + STATE(1049), 1, sym_delim_token_tree, - STATE(2612), 2, + STATE(2629), 2, sym_line_comment, sym_block_comment, - [80496] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [81398] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5774), 1, - anon_sym_COLON_COLON, - STATE(2613), 2, + ACTIONS(5586), 1, + anon_sym_PIPE, + ACTIONS(5813), 1, + anon_sym_RBRACK, + ACTIONS(5815), 1, + anon_sym_COMMA, + STATE(2938), 1, + aux_sym_slice_pattern_repeat1, + STATE(2630), 2, sym_line_comment, sym_block_comment, - ACTIONS(4793), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [80515] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [81421] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4574), 1, + ACTIONS(4604), 1, anon_sym_LT2, ACTIONS(5776), 1, - sym_identifier, - ACTIONS(5778), 1, sym_super, - STATE(2094), 1, + ACTIONS(5817), 1, + sym_identifier, + STATE(2113), 1, sym_type_arguments, - STATE(2614), 2, + STATE(2631), 2, sym_line_comment, sym_block_comment, - [80538] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [81444] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4574), 1, + ACTIONS(4604), 1, anon_sym_LT2, ACTIONS(5776), 1, - sym_identifier, - ACTIONS(5778), 1, sym_super, - STATE(2097), 1, + ACTIONS(5817), 1, + sym_identifier, + STATE(2118), 1, sym_type_arguments, - STATE(2615), 2, + STATE(2632), 2, sym_line_comment, sym_block_comment, - [80561] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [81467] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4574), 1, + ACTIONS(4604), 1, anon_sym_LT2, - ACTIONS(5778), 1, + ACTIONS(5776), 1, sym_super, - ACTIONS(5780), 1, + ACTIONS(5819), 1, sym_identifier, - STATE(3554), 1, + STATE(3462), 1, sym_type_arguments, - STATE(2616), 2, + STATE(2633), 2, sym_line_comment, sym_block_comment, - [80584] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [81490] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4574), 1, + ACTIONS(4604), 1, anon_sym_LT2, - ACTIONS(5778), 1, + ACTIONS(5776), 1, sym_super, - ACTIONS(5780), 1, + ACTIONS(5819), 1, sym_identifier, - STATE(3659), 1, + STATE(3575), 1, sym_type_arguments, - STATE(2617), 2, + STATE(2634), 2, sym_line_comment, sym_block_comment, - [80607] = 5, - ACTIONS(3), 1, + [81513] = 4, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5782), 1, - aux_sym_token_repetition_pattern_token1, - STATE(2618), 2, + STATE(2635), 2, sym_line_comment, sym_block_comment, - ACTIONS(5784), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [80626] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(407), 1, + ACTIONS(4406), 4, anon_sym_LBRACE, - ACTIONS(3348), 1, + anon_sym_EQ_GT, + anon_sym_AMP_AMP, anon_sym_SQUOTE, - STATE(1767), 1, - sym_block, - STATE(3718), 1, - sym_label, - STATE(2619), 2, - sym_line_comment, - sym_block_comment, - [80649] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(5544), 1, - anon_sym_PIPE, - ACTIONS(5786), 1, - anon_sym_RPAREN, - ACTIONS(5788), 1, - anon_sym_COMMA, - STATE(2832), 1, - aux_sym_tuple_pattern_repeat1, - STATE(2620), 2, - sym_line_comment, - sym_block_comment, - [80672] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(5544), 1, - anon_sym_PIPE, - ACTIONS(5790), 1, - anon_sym_RBRACK, - ACTIONS(5792), 1, - anon_sym_COMMA, - STATE(2834), 1, - aux_sym_slice_pattern_repeat1, - STATE(2621), 2, - sym_line_comment, - sym_block_comment, - [80695] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [81530] = 7, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4989), 1, - anon_sym_where, - ACTIONS(4993), 1, - anon_sym_LBRACE, - STATE(626), 1, - sym_declaration_list, - STATE(3353), 1, - sym_where_clause, - STATE(2622), 2, - sym_line_comment, - sym_block_comment, - [80718] = 7, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4989), 1, + ACTIONS(5052), 1, anon_sym_where, - ACTIONS(4993), 1, + ACTIONS(5110), 1, anon_sym_LBRACE, - STATE(752), 1, - sym_declaration_list, - STATE(3317), 1, + STATE(640), 1, + sym_field_declaration_list, + STATE(3207), 1, sym_where_clause, - STATE(2623), 2, + STATE(2636), 2, sym_line_comment, sym_block_comment, - [80741] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [81553] = 7, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(5544), 1, - anon_sym_PIPE, - ACTIONS(5671), 1, - anon_sym_RPAREN, - ACTIONS(5675), 1, - anon_sym_COMMA, - STATE(3051), 1, - aux_sym_slice_pattern_repeat1, - STATE(2624), 2, - sym_line_comment, - sym_block_comment, - [80764] = 7, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, + ACTIONS(412), 1, anon_sym_LBRACE, - ACTIONS(3348), 1, + ACTIONS(3386), 1, anon_sym_SQUOTE, - STATE(1409), 1, + STATE(1822), 1, sym_block, - STATE(3664), 1, + STATE(3748), 1, sym_label, - STATE(2625), 2, + STATE(2637), 2, sym_line_comment, sym_block_comment, - [80787] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [81576] = 7, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4574), 1, - anon_sym_LT2, - ACTIONS(5778), 1, - sym_super, - ACTIONS(5794), 1, - sym_identifier, - STATE(2094), 1, - sym_type_arguments, - STATE(2626), 2, - sym_line_comment, - sym_block_comment, - [80810] = 7, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(407), 1, - anon_sym_LBRACE, - ACTIONS(3348), 1, - anon_sym_SQUOTE, - STATE(1773), 1, - sym_block, - STATE(3718), 1, - sym_label, - STATE(2627), 2, + ACTIONS(5157), 1, + anon_sym_PLUS, + ACTIONS(5821), 1, + anon_sym_RPAREN, + ACTIONS(5823), 1, + anon_sym_COMMA, + STATE(2895), 1, + aux_sym_tuple_type_repeat1, + STATE(2638), 2, sym_line_comment, sym_block_comment, - [80833] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [81599] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(2628), 2, + STATE(2639), 2, sym_line_comment, sym_block_comment, - ACTIONS(969), 4, + ACTIONS(960), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_RBRACE, - [80850] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [81616] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(2629), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4328), 4, + ACTIONS(348), 1, anon_sym_LBRACE, - anon_sym_EQ_GT, - anon_sym_AMP_AMP, + ACTIONS(3386), 1, anon_sym_SQUOTE, - [80867] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + STATE(3693), 1, + sym_label, + STATE(3735), 1, + sym_block, + STATE(2640), 2, + sym_line_comment, + sym_block_comment, + [81639] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4574), 1, + ACTIONS(4604), 1, anon_sym_LT2, - ACTIONS(5778), 1, - sym_super, - ACTIONS(5794), 1, - sym_identifier, - STATE(2097), 1, + STATE(3462), 1, sym_type_arguments, - STATE(2630), 2, + ACTIONS(5825), 2, + sym_identifier, + sym_super, + STATE(2641), 2, sym_line_comment, sym_block_comment, - [80890] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [81660] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5354), 1, - anon_sym_PLUS, - STATE(2631), 2, + ACTIONS(4598), 1, + anon_sym_LPAREN, + ACTIONS(5050), 1, + anon_sym_LT, + STATE(2288), 1, + sym_parameters, + STATE(3264), 1, + sym_type_parameters, + STATE(2642), 2, sym_line_comment, sym_block_comment, - ACTIONS(5796), 3, - anon_sym_COLON, - anon_sym_GT, - anon_sym_COMMA, - [80909] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [81683] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5082), 1, - anon_sym_PLUS, - ACTIONS(5798), 1, - anon_sym_RPAREN, - ACTIONS(5800), 1, - anon_sym_COMMA, - STATE(2840), 1, - aux_sym_tuple_type_repeat1, - STATE(2632), 2, + ACTIONS(5052), 1, + anon_sym_where, + ACTIONS(5393), 1, + anon_sym_LBRACE, + STATE(1168), 1, + sym_enum_variant_list, + STATE(3254), 1, + sym_where_clause, + STATE(2643), 2, sym_line_comment, sym_block_comment, - [80932] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [81706] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5802), 1, - anon_sym_DQUOTE, - STATE(2638), 1, - aux_sym_string_literal_repeat1, - ACTIONS(5707), 2, - sym_string_content, - sym_escape_sequence, - STATE(2633), 2, + ACTIONS(5586), 1, + anon_sym_PIPE, + ACTIONS(5827), 1, + anon_sym_RPAREN, + ACTIONS(5829), 1, + anon_sym_COMMA, + STATE(3155), 1, + aux_sym_slice_pattern_repeat1, + STATE(2644), 2, sym_line_comment, sym_block_comment, - [80953] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [81729] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(407), 1, + ACTIONS(5048), 1, anon_sym_LBRACE, - ACTIONS(3348), 1, - anon_sym_SQUOTE, - STATE(1778), 1, - sym_block, - STATE(3718), 1, - sym_label, - STATE(2634), 2, + ACTIONS(5052), 1, + anon_sym_where, + STATE(1100), 1, + sym_field_declaration_list, + STATE(3258), 1, + sym_where_clause, + STATE(2645), 2, sym_line_comment, sym_block_comment, - [80976] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [81752] = 5, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(5804), 1, - anon_sym_DQUOTE, - STATE(2572), 1, - aux_sym_string_literal_repeat1, - ACTIONS(5707), 2, - sym_string_content, - sym_escape_sequence, - STATE(2635), 2, - sym_line_comment, - sym_block_comment, - [80997] = 7, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4574), 1, - anon_sym_LT2, - ACTIONS(5806), 1, + ACTIONS(5831), 1, anon_sym_COLON_COLON, - ACTIONS(5808), 1, - anon_sym_for, - STATE(1999), 1, - sym_type_arguments, - STATE(2636), 2, + STATE(2646), 2, sym_line_comment, sym_block_comment, - [81020] = 7, - ACTIONS(103), 1, + ACTIONS(4864), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [81771] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5810), 1, - anon_sym_LPAREN, - ACTIONS(5812), 1, - anon_sym_LBRACK, - ACTIONS(5814), 1, - anon_sym_LBRACE, - STATE(1783), 1, - sym_delim_token_tree, - STATE(2637), 2, + ACTIONS(5833), 1, + aux_sym_token_repetition_pattern_token1, + STATE(2647), 2, sym_line_comment, sym_block_comment, - [81043] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + ACTIONS(5835), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [81790] = 7, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(5816), 1, - anon_sym_DQUOTE, - STATE(2794), 1, - aux_sym_string_literal_repeat1, - ACTIONS(5707), 2, - sym_string_content, - sym_escape_sequence, - STATE(2638), 2, - sym_line_comment, - sym_block_comment, - [81064] = 7, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5810), 1, - anon_sym_LPAREN, - ACTIONS(5812), 1, - anon_sym_LBRACK, - ACTIONS(5814), 1, + ACTIONS(412), 1, anon_sym_LBRACE, - STATE(1786), 1, - sym_delim_token_tree, - STATE(2639), 2, + ACTIONS(3386), 1, + anon_sym_SQUOTE, + STATE(1828), 1, + sym_block, + STATE(3748), 1, + sym_label, + STATE(2648), 2, sym_line_comment, sym_block_comment, - [81087] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [81813] = 4, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4989), 1, - anon_sym_where, - ACTIONS(5082), 1, - anon_sym_PLUS, - ACTIONS(5818), 1, - anon_sym_SEMI, - STATE(3515), 1, - sym_where_clause, - STATE(2640), 2, - sym_line_comment, - sym_block_comment, - [81110] = 7, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4574), 1, - anon_sym_LT2, - ACTIONS(5778), 1, - sym_super, - ACTIONS(5820), 1, - sym_identifier, - STATE(2094), 1, - sym_type_arguments, - STATE(2641), 2, + STATE(2649), 2, sym_line_comment, sym_block_comment, - [81133] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + ACTIONS(5837), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + [81830] = 7, + ACTIONS(19), 1, + anon_sym_LBRACE, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4574), 1, - anon_sym_LT2, - ACTIONS(5778), 1, - sym_super, - ACTIONS(5820), 1, - sym_identifier, - STATE(2097), 1, - sym_type_arguments, - STATE(2642), 2, - sym_line_comment, - sym_block_comment, - [81156] = 7, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4574), 1, - anon_sym_LT2, - ACTIONS(5296), 1, - sym_super, - ACTIONS(5780), 1, - sym_identifier, - STATE(3554), 1, - sym_type_arguments, - STATE(2643), 2, + ACTIONS(3386), 1, + anon_sym_SQUOTE, + STATE(414), 1, + sym_block, + STATE(3582), 1, + sym_label, + STATE(2650), 2, sym_line_comment, sym_block_comment, - [81179] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [81853] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4574), 1, + ACTIONS(4604), 1, anon_sym_LT2, - ACTIONS(5296), 1, - sym_super, - ACTIONS(5780), 1, - sym_identifier, - STATE(3659), 1, + ACTIONS(4693), 1, + anon_sym_BANG, + ACTIONS(4736), 1, + anon_sym_COLON_COLON, + STATE(2011), 1, sym_type_arguments, - STATE(2644), 2, + STATE(2651), 2, sym_line_comment, sym_block_comment, - [81202] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [81876] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4574), 1, + ACTIONS(4604), 1, anon_sym_LT2, - ACTIONS(5296), 1, + ACTIONS(5776), 1, sym_super, - ACTIONS(5822), 1, + ACTIONS(5795), 1, sym_identifier, - STATE(3554), 1, + STATE(3462), 1, sym_type_arguments, - STATE(2645), 2, + STATE(2652), 2, sym_line_comment, sym_block_comment, - [81225] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [81899] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5354), 1, - anon_sym_PLUS, - STATE(2646), 2, + ACTIONS(5839), 1, + anon_sym_DQUOTE, + STATE(2657), 1, + aux_sym_string_literal_repeat1, + ACTIONS(5799), 2, + sym_string_content, + sym_escape_sequence, + STATE(2653), 2, sym_line_comment, sym_block_comment, - ACTIONS(5824), 3, - anon_sym_COLON, - anon_sym_GT, - anon_sym_COMMA, - [81244] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [81920] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4989), 1, - anon_sym_where, - ACTIONS(5043), 1, + ACTIONS(412), 1, anon_sym_LBRACE, - STATE(651), 1, - sym_field_declaration_list, - STATE(3169), 1, - sym_where_clause, - STATE(2647), 2, + ACTIONS(3386), 1, + anon_sym_SQUOTE, + STATE(1834), 1, + sym_block, + STATE(3748), 1, + sym_label, + STATE(2654), 2, sym_line_comment, sym_block_comment, - [81267] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [81943] = 7, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4989), 1, - anon_sym_where, - ACTIONS(5082), 1, - anon_sym_PLUS, - ACTIONS(5826), 1, - anon_sym_SEMI, - STATE(3590), 1, - sym_where_clause, - STATE(2648), 2, - sym_line_comment, - sym_block_comment, - [81290] = 5, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5544), 1, - anon_sym_PIPE, - STATE(2649), 2, + ACTIONS(5841), 1, + anon_sym_LPAREN, + ACTIONS(5843), 1, + anon_sym_LBRACK, + ACTIONS(5845), 1, + anon_sym_LBRACE, + STATE(2649), 1, + sym_token_tree, + STATE(2655), 2, sym_line_comment, sym_block_comment, - ACTIONS(5828), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_COMMA, - [81309] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [81966] = 7, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(5830), 1, - anon_sym_DQUOTE, - STATE(2652), 1, - aux_sym_string_literal_repeat1, - ACTIONS(5707), 2, - sym_string_content, - sym_escape_sequence, - STATE(2650), 2, - sym_line_comment, - sym_block_comment, - [81330] = 7, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4989), 1, - anon_sym_where, - ACTIONS(5043), 1, + ACTIONS(5746), 1, + anon_sym_LPAREN, + ACTIONS(5748), 1, + anon_sym_LBRACK, + ACTIONS(5750), 1, anon_sym_LBRACE, - STATE(775), 1, - sym_field_declaration_list, - STATE(3383), 1, - sym_where_clause, - STATE(2651), 2, + STATE(1840), 1, + sym_delim_token_tree, + STATE(2656), 2, sym_line_comment, sym_block_comment, - [81353] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [81989] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5832), 1, + ACTIONS(5847), 1, anon_sym_DQUOTE, - STATE(2794), 1, + STATE(2770), 1, aux_sym_string_literal_repeat1, - ACTIONS(5707), 2, + ACTIONS(5799), 2, sym_string_content, sym_escape_sequence, - STATE(2652), 2, + STATE(2657), 2, sym_line_comment, sym_block_comment, - [81374] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [82010] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3354), 1, - anon_sym_LPAREN, - ACTIONS(4574), 1, - anon_sym_LT2, - STATE(1138), 1, - sym_parameters, - STATE(1993), 1, - sym_type_arguments, - STATE(2653), 2, + ACTIONS(5586), 1, + anon_sym_PIPE, + ACTIONS(5633), 1, + anon_sym_RPAREN, + ACTIONS(5637), 1, + anon_sym_COMMA, + STATE(3141), 1, + aux_sym_slice_pattern_repeat1, + STATE(2658), 2, sym_line_comment, sym_block_comment, - [81397] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [82033] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4574), 1, - anon_sym_LT2, - ACTIONS(5778), 1, - sym_super, - ACTIONS(5834), 1, - sym_identifier, - STATE(3554), 1, - sym_type_arguments, - STATE(2654), 2, + ACTIONS(5849), 1, + anon_sym_COLON_COLON, + STATE(2659), 2, sym_line_comment, sym_block_comment, - [81420] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + ACTIONS(4876), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [82052] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4574), 1, + ACTIONS(4604), 1, anon_sym_LT2, - ACTIONS(5778), 1, + ACTIONS(5776), 1, sym_super, - ACTIONS(5834), 1, + ACTIONS(5851), 1, sym_identifier, - STATE(3659), 1, + STATE(2113), 1, sym_type_arguments, - STATE(2655), 2, - sym_line_comment, - sym_block_comment, - [81443] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(5836), 1, - anon_sym_COMMA, - ACTIONS(5828), 2, - anon_sym_RPAREN, - anon_sym_RBRACK, - STATE(2656), 3, + STATE(2660), 2, sym_line_comment, sym_block_comment, - aux_sym_slice_pattern_repeat1, - [81462] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [82075] = 7, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(2657), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3302), 4, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_GT, - anon_sym_COMMA, - [81479] = 7, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3362), 1, + ACTIONS(4604), 1, anon_sym_LT2, - ACTIONS(5296), 1, + ACTIONS(5776), 1, sym_super, - ACTIONS(5839), 1, + ACTIONS(5851), 1, sym_identifier, - STATE(1476), 1, + STATE(2118), 1, sym_type_arguments, - STATE(2658), 2, + STATE(2661), 2, sym_line_comment, sym_block_comment, - [81502] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [82098] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4574), 1, + ACTIONS(4604), 1, anon_sym_LT2, - ACTIONS(5296), 1, + ACTIONS(5295), 1, sym_super, - ACTIONS(5822), 1, + ACTIONS(5819), 1, sym_identifier, - STATE(3659), 1, + STATE(3462), 1, sym_type_arguments, - STATE(2659), 2, + STATE(2662), 2, sym_line_comment, sym_block_comment, - [81525] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [82121] = 7, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3058), 1, - anon_sym_SQUOTE, - ACTIONS(5750), 1, - sym_identifier, - ACTIONS(5841), 1, - anon_sym_GT, - STATE(3157), 1, - sym_lifetime, - STATE(2660), 2, - sym_line_comment, - sym_block_comment, - [81548] = 7, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3058), 1, - anon_sym_SQUOTE, - ACTIONS(5750), 1, + ACTIONS(4604), 1, + anon_sym_LT2, + ACTIONS(5295), 1, + sym_super, + ACTIONS(5819), 1, sym_identifier, - ACTIONS(5843), 1, - anon_sym_GT, - STATE(3157), 1, - sym_lifetime, - STATE(2661), 2, + STATE(3575), 1, + sym_type_arguments, + STATE(2663), 2, sym_line_comment, sym_block_comment, - [81571] = 5, - ACTIONS(3), 1, + [82144] = 7, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5845), 1, - aux_sym_token_repetition_pattern_token1, - STATE(2662), 2, + ACTIONS(5853), 1, + anon_sym_LBRACE, + ACTIONS(5855), 1, + anon_sym_for, + ACTIONS(5857), 1, + anon_sym_loop, + ACTIONS(5859), 1, + anon_sym_while, + STATE(2664), 2, sym_line_comment, sym_block_comment, - ACTIONS(5847), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [81590] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [82167] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4971), 1, - anon_sym_LBRACE, - ACTIONS(4989), 1, + ACTIONS(5052), 1, anon_sym_where, - STATE(1262), 1, - sym_declaration_list, - STATE(3342), 1, + ACTIONS(5157), 1, + anon_sym_PLUS, + ACTIONS(5861), 1, + anon_sym_SEMI, + STATE(3697), 1, sym_where_clause, - STATE(2663), 2, + STATE(2665), 2, sym_line_comment, sym_block_comment, - [81613] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [82190] = 6, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(5082), 1, - anon_sym_PLUS, - STATE(2664), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(5849), 3, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_COMMA, - [81632] = 6, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4574), 1, + ACTIONS(4604), 1, anon_sym_LT2, - STATE(3659), 1, + STATE(3575), 1, sym_type_arguments, - ACTIONS(5778), 2, + ACTIONS(5825), 2, sym_identifier, sym_super, - STATE(2665), 2, - sym_line_comment, - sym_block_comment, - [81653] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4989), 1, - anon_sym_where, - ACTIONS(5440), 1, - anon_sym_LBRACE, - STATE(1141), 1, - sym_enum_variant_list, - STATE(3184), 1, - sym_where_clause, STATE(2666), 2, sym_line_comment, sym_block_comment, - [81676] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [82211] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5082), 1, - anon_sym_PLUS, - ACTIONS(5851), 1, - anon_sym_RPAREN, - ACTIONS(5853), 1, - anon_sym_COMMA, - STATE(2866), 1, - aux_sym_ordered_field_declaration_list_repeat1, + ACTIONS(348), 1, + anon_sym_LBRACE, + ACTIONS(3386), 1, + anon_sym_SQUOTE, + STATE(1472), 1, + sym_block, + STATE(3693), 1, + sym_label, STATE(2667), 2, sym_line_comment, sym_block_comment, - [81699] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [82234] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4574), 1, - anon_sym_LT2, - ACTIONS(5296), 1, - sym_super, - ACTIONS(5834), 1, - sym_identifier, - STATE(3554), 1, - sym_type_arguments, + ACTIONS(5048), 1, + anon_sym_LBRACE, + ACTIONS(5052), 1, + anon_sym_where, + STATE(1246), 1, + sym_field_declaration_list, + STATE(3322), 1, + sym_where_clause, STATE(2668), 2, sym_line_comment, sym_block_comment, - [81722] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [82257] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4574), 1, + ACTIONS(4604), 1, anon_sym_LT2, - ACTIONS(5296), 1, - sym_super, - ACTIONS(5834), 1, + ACTIONS(5752), 1, sym_identifier, - STATE(3659), 1, + ACTIONS(5776), 1, + sym_super, + STATE(2118), 1, sym_type_arguments, STATE(2669), 2, sym_line_comment, sym_block_comment, - [81745] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [82280] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3362), 1, - anon_sym_LT2, - ACTIONS(3572), 1, - anon_sym_COLON_COLON, - ACTIONS(4887), 1, - anon_sym_BANG, - STATE(1106), 1, - sym_type_arguments, + ACTIONS(4598), 1, + anon_sym_LPAREN, + ACTIONS(5050), 1, + anon_sym_LT, + STATE(2281), 1, + sym_parameters, + STATE(3223), 1, + sym_type_parameters, STATE(2670), 2, sym_line_comment, sym_block_comment, - [81768] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [82303] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4576), 2, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(5855), 2, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(348), 1, + anon_sym_LBRACE, + ACTIONS(3386), 1, + anon_sym_SQUOTE, + STATE(1542), 1, + sym_block, + STATE(3693), 1, + sym_label, STATE(2671), 2, sym_line_comment, sym_block_comment, - [81787] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [82326] = 7, + ACTIONS(19), 1, + anon_sym_LBRACE, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3362), 1, - anon_sym_LT2, - ACTIONS(5296), 1, - sym_super, - ACTIONS(5839), 1, - sym_identifier, - STATE(1459), 1, - sym_type_arguments, + ACTIONS(3386), 1, + anon_sym_SQUOTE, + STATE(395), 1, + sym_block, + STATE(3582), 1, + sym_label, STATE(2672), 2, sym_line_comment, sym_block_comment, - [81810] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [82349] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4989), 1, - anon_sym_where, - ACTIONS(5082), 1, - anon_sym_PLUS, - ACTIONS(5857), 1, - anon_sym_SEMI, - STATE(3736), 1, - sym_where_clause, + ACTIONS(4598), 1, + anon_sym_LPAREN, + ACTIONS(5050), 1, + anon_sym_LT, + STATE(2312), 1, + sym_parameters, + STATE(3412), 1, + sym_type_parameters, STATE(2673), 2, sym_line_comment, sym_block_comment, - [81833] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [82372] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4574), 1, - anon_sym_LT2, - ACTIONS(4799), 1, - anon_sym_for, - ACTIONS(5806), 1, - anon_sym_COLON_COLON, - STATE(1999), 1, - sym_type_arguments, + ACTIONS(5863), 1, + anon_sym_DQUOTE, + STATE(2676), 1, + aux_sym_string_literal_repeat1, + ACTIONS(5799), 2, + sym_string_content, + sym_escape_sequence, STATE(2674), 2, sym_line_comment, sym_block_comment, - [81856] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [82393] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4568), 1, - anon_sym_LPAREN, - ACTIONS(4574), 1, - anon_sym_LT2, - STATE(1993), 1, - sym_type_arguments, - STATE(2002), 1, - sym_parameters, + ACTIONS(5052), 1, + anon_sym_where, + ACTIONS(5157), 1, + anon_sym_PLUS, + ACTIONS(5865), 1, + anon_sym_SEMI, + STATE(3729), 1, + sym_where_clause, STATE(2675), 2, sym_line_comment, sym_block_comment, - [81879] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [82416] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, - anon_sym_LBRACE, - ACTIONS(3348), 1, - anon_sym_SQUOTE, - STATE(3518), 1, - sym_block, - STATE(3664), 1, - sym_label, + ACTIONS(5867), 1, + anon_sym_DQUOTE, + STATE(2770), 1, + aux_sym_string_literal_repeat1, + ACTIONS(5799), 2, + sym_string_content, + sym_escape_sequence, STATE(2676), 2, sym_line_comment, sym_block_comment, - [81902] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [82437] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4971), 1, - anon_sym_LBRACE, - ACTIONS(4989), 1, + ACTIONS(5052), 1, anon_sym_where, - STATE(1154), 1, - sym_declaration_list, - STATE(3246), 1, + ACTIONS(5157), 1, + anon_sym_PLUS, + ACTIONS(5869), 1, + anon_sym_SEMI, + STATE(3731), 1, sym_where_clause, STATE(2677), 2, sym_line_comment, sym_block_comment, - [81925] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [82460] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, - anon_sym_LBRACE, - ACTIONS(3348), 1, - anon_sym_SQUOTE, - STATE(3532), 1, - sym_block, - STATE(3664), 1, - sym_label, + ACTIONS(4604), 1, + anon_sym_LT2, + ACTIONS(5776), 1, + sym_super, + ACTIONS(5871), 1, + sym_identifier, + STATE(3462), 1, + sym_type_arguments, STATE(2678), 2, sym_line_comment, sym_block_comment, - [81948] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [82483] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4568), 1, - anon_sym_LPAREN, - ACTIONS(4987), 1, - anon_sym_LT, - STATE(2246), 1, - sym_parameters, - STATE(3138), 1, - sym_type_parameters, + ACTIONS(4604), 1, + anon_sym_LT2, + ACTIONS(5776), 1, + sym_super, + ACTIONS(5871), 1, + sym_identifier, + STATE(3575), 1, + sym_type_arguments, STATE(2679), 2, sym_line_comment, sym_block_comment, - [81971] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [82506] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4985), 1, - anon_sym_LBRACE, - ACTIONS(4989), 1, - anon_sym_where, - STATE(1160), 1, - sym_field_declaration_list, - STATE(3292), 1, - sym_where_clause, + ACTIONS(5399), 1, + anon_sym_PLUS, STATE(2680), 2, sym_line_comment, sym_block_comment, - [81994] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(5550), 1, + ACTIONS(5873), 3, anon_sym_COLON, - ACTIONS(5552), 1, - anon_sym_PIPE, - ACTIONS(5554), 1, + anon_sym_GT, anon_sym_COMMA, - STATE(3003), 1, - aux_sym_closure_parameters_repeat1, - STATE(2681), 2, - sym_line_comment, - sym_block_comment, - [82017] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [82525] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, + ACTIONS(4984), 1, anon_sym_LBRACE, - ACTIONS(3348), 1, - anon_sym_SQUOTE, - STATE(3429), 1, - sym_block, - STATE(3664), 1, - sym_label, - STATE(2682), 2, + ACTIONS(5052), 1, + anon_sym_where, + STATE(1094), 1, + sym_declaration_list, + STATE(3448), 1, + sym_where_clause, + STATE(2681), 2, sym_line_comment, sym_block_comment, - [82040] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [82548] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4586), 1, - anon_sym_DOT_DOT, - ACTIONS(5210), 1, - anon_sym_COLON_COLON, - ACTIONS(4588), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2683), 2, + ACTIONS(5157), 1, + anon_sym_PLUS, + ACTIONS(5875), 1, + anon_sym_SEMI, + ACTIONS(5877), 1, + anon_sym_EQ, + ACTIONS(5879), 1, + anon_sym_else, + STATE(2682), 2, sym_line_comment, sym_block_comment, - [82061] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [82571] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4989), 1, + ACTIONS(5052), 1, anon_sym_where, - ACTIONS(5385), 1, + ACTIONS(5393), 1, anon_sym_LBRACE, - STATE(728), 1, + STATE(1225), 1, sym_enum_variant_list, - STATE(3201), 1, + STATE(3217), 1, sym_where_clause, - STATE(2684), 2, + STATE(2683), 2, sym_line_comment, sym_block_comment, - [82084] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [82594] = 6, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4989), 1, - anon_sym_where, - ACTIONS(5082), 1, - anon_sym_PLUS, - ACTIONS(5859), 1, - anon_sym_SEMI, - STATE(3711), 1, - sym_where_clause, - STATE(2685), 2, - sym_line_comment, - sym_block_comment, - [82107] = 6, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5128), 1, + ACTIONS(5149), 1, anon_sym_COLON, - STATE(3136), 1, + STATE(3265), 1, sym_trait_bounds, - ACTIONS(5629), 2, + ACTIONS(5613), 2, anon_sym_GT, anon_sym_COMMA, - STATE(2686), 2, + STATE(2684), 2, sym_line_comment, sym_block_comment, - [82128] = 7, - ACTIONS(103), 1, + [82615] = 7, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(348), 1, + anon_sym_LBRACE, + ACTIONS(3386), 1, + anon_sym_SQUOTE, + STATE(1493), 1, + sym_block, + STATE(3693), 1, + sym_label, + STATE(2685), 2, + sym_line_comment, + sym_block_comment, + [82638] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, + ACTIONS(348), 1, anon_sym_LBRACE, - ACTIONS(3348), 1, + ACTIONS(3386), 1, anon_sym_SQUOTE, - STATE(1406), 1, + STATE(1497), 1, sym_block, - STATE(3664), 1, + STATE(3693), 1, sym_label, - STATE(2687), 2, + STATE(2686), 2, sym_line_comment, sym_block_comment, - [82151] = 7, - ACTIONS(103), 1, + [82661] = 5, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(5831), 1, + anon_sym_COLON_COLON, + STATE(2687), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4882), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [82680] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4568), 1, - anon_sym_LPAREN, - ACTIONS(4987), 1, - anon_sym_LT, - STATE(2296), 1, - sym_parameters, - STATE(3318), 1, - sym_type_parameters, + ACTIONS(5881), 1, + anon_sym_DQUOTE, + STATE(2769), 1, + aux_sym_string_literal_repeat1, + ACTIONS(5799), 2, + sym_string_content, + sym_escape_sequence, STATE(2688), 2, sym_line_comment, sym_block_comment, - [82174] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [82701] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4574), 1, - anon_sym_LT2, - ACTIONS(5778), 1, - sym_super, - ACTIONS(5822), 1, - sym_identifier, - STATE(3659), 1, - sym_type_arguments, + ACTIONS(5849), 1, + anon_sym_COLON_COLON, STATE(2689), 2, sym_line_comment, sym_block_comment, - [82197] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + ACTIONS(4886), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [82720] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4989), 1, - anon_sym_where, - ACTIONS(5082), 1, - anon_sym_PLUS, - ACTIONS(5861), 1, - anon_sym_SEMI, - STATE(3604), 1, - sym_where_clause, + ACTIONS(4604), 1, + anon_sym_LT2, + ACTIONS(5295), 1, + sym_super, + ACTIONS(5871), 1, + sym_identifier, + STATE(3462), 1, + sym_type_arguments, STATE(2690), 2, sym_line_comment, sym_block_comment, - [82220] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [82743] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5863), 1, - anon_sym_in, + ACTIONS(4604), 1, + anon_sym_LT2, + ACTIONS(5295), 1, + sym_super, + ACTIONS(5871), 1, + sym_identifier, + STATE(3575), 1, + sym_type_arguments, STATE(2691), 2, sym_line_comment, sym_block_comment, - ACTIONS(5865), 3, - sym_self, - sym_super, - sym_crate, - [82239] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [82766] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, - anon_sym_LBRACE, - ACTIONS(3348), 1, - anon_sym_SQUOTE, - STATE(1432), 1, - sym_block, - STATE(3664), 1, - sym_label, + ACTIONS(5883), 1, + anon_sym_COLON_COLON, STATE(2692), 2, sym_line_comment, sym_block_comment, - [82262] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + ACTIONS(4886), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [82785] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4989), 1, - anon_sym_where, - ACTIONS(5082), 1, - anon_sym_PLUS, - ACTIONS(5867), 1, - anon_sym_SEMI, - STATE(3500), 1, - sym_where_clause, + ACTIONS(5885), 1, + anon_sym_COLON_COLON, STATE(2693), 2, sym_line_comment, sym_block_comment, - [82285] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + ACTIONS(4886), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [82804] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3058), 1, - anon_sym_SQUOTE, - ACTIONS(5750), 1, + ACTIONS(4604), 1, + anon_sym_LT2, + STATE(3462), 1, + sym_type_arguments, + ACTIONS(5776), 2, sym_identifier, - ACTIONS(5869), 1, - anon_sym_GT, - STATE(3157), 1, - sym_lifetime, + sym_super, STATE(2694), 2, sym_line_comment, sym_block_comment, - [82308] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [82825] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5871), 1, - anon_sym_LBRACE, - ACTIONS(5873), 1, - anon_sym_for, - ACTIONS(5875), 1, - anon_sym_loop, - ACTIONS(5877), 1, - anon_sym_while, + ACTIONS(3072), 1, + anon_sym_SQUOTE, + ACTIONS(5785), 1, + sym_identifier, + ACTIONS(5887), 1, + anon_sym_GT, + STATE(3179), 1, + sym_lifetime, STATE(2695), 2, sym_line_comment, sym_block_comment, - [82331] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [82848] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, + ACTIONS(4928), 1, anon_sym_LBRACE, - ACTIONS(3348), 1, - anon_sym_SQUOTE, - STATE(1408), 1, - sym_block, - STATE(3664), 1, - sym_label, + ACTIONS(5052), 1, + anon_sym_where, + STATE(663), 1, + sym_declaration_list, + STATE(3399), 1, + sym_where_clause, STATE(2696), 2, sym_line_comment, sym_block_comment, - [82354] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [82871] = 6, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(5716), 1, - anon_sym_LPAREN, - ACTIONS(5718), 1, - anon_sym_LBRACK, - ACTIONS(5720), 1, - anon_sym_LBRACE, - STATE(401), 1, - sym_delim_token_tree, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(4604), 1, + anon_sym_LT2, + STATE(3462), 1, + sym_type_arguments, + ACTIONS(5295), 2, + sym_identifier, + sym_super, STATE(2697), 2, sym_line_comment, sym_block_comment, - [82377] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [82892] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, - anon_sym_LBRACE, - ACTIONS(3348), 1, - anon_sym_SQUOTE, - STATE(3460), 1, - sym_block, - STATE(3664), 1, - sym_label, + ACTIONS(4618), 1, + anon_sym_DOT_DOT, + ACTIONS(5371), 1, + anon_sym_COLON_COLON, + ACTIONS(4620), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, STATE(2698), 2, sym_line_comment, sym_block_comment, - [82400] = 7, - ACTIONS(19), 1, - anon_sym_LBRACE, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [82913] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3348), 1, - anon_sym_SQUOTE, - STATE(397), 1, - sym_block, - STATE(3676), 1, - sym_label, + ACTIONS(4604), 1, + anon_sym_LT2, + STATE(3575), 1, + sym_type_arguments, + ACTIONS(5295), 2, + sym_identifier, + sym_super, STATE(2699), 2, sym_line_comment, sym_block_comment, - [82423] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [82934] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3058), 1, - anon_sym_SQUOTE, - ACTIONS(5750), 1, - sym_identifier, - ACTIONS(5879), 1, - anon_sym_GT, - STATE(3157), 1, - sym_lifetime, + ACTIONS(5831), 1, + anon_sym_COLON_COLON, STATE(2700), 2, sym_line_comment, sym_block_comment, - [82446] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + ACTIONS(4834), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [82953] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5881), 1, - anon_sym_LBRACE, - ACTIONS(5883), 1, - anon_sym_for, - ACTIONS(5885), 1, - anon_sym_loop, - ACTIONS(5887), 1, - anon_sym_while, + ACTIONS(5849), 1, + anon_sym_COLON_COLON, STATE(2701), 2, sym_line_comment, sym_block_comment, - [82469] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + ACTIONS(4840), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [82972] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5082), 1, - anon_sym_PLUS, - ACTIONS(5889), 1, - anon_sym_SEMI, - ACTIONS(5891), 1, - anon_sym_EQ, - ACTIONS(5893), 1, - anon_sym_else, + ACTIONS(5883), 1, + anon_sym_COLON_COLON, STATE(2702), 2, sym_line_comment, sym_block_comment, - [82492] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + ACTIONS(4840), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [82991] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, + ACTIONS(1606), 1, anon_sym_LBRACE, - ACTIONS(3348), 1, + ACTIONS(3386), 1, anon_sym_SQUOTE, - STATE(1481), 1, + STATE(2181), 1, sym_block, - STATE(3664), 1, + STATE(3739), 1, sym_label, STATE(2703), 2, sym_line_comment, sym_block_comment, - [82515] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [83014] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3058), 1, - anon_sym_SQUOTE, - ACTIONS(5750), 1, - sym_identifier, - ACTIONS(5895), 1, - anon_sym_GT, - STATE(3157), 1, - sym_lifetime, + ACTIONS(4618), 1, + anon_sym_DOT_DOT, + ACTIONS(5313), 1, + anon_sym_COLON_COLON, + ACTIONS(4620), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, STATE(2704), 2, sym_line_comment, sym_block_comment, - [82538] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [83035] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5082), 1, - anon_sym_PLUS, - ACTIONS(5897), 1, - anon_sym_SEMI, - ACTIONS(5899), 1, - anon_sym_EQ, - ACTIONS(5901), 1, - anon_sym_else, + ACTIONS(1366), 1, + anon_sym_LBRACE, + ACTIONS(3386), 1, + anon_sym_SQUOTE, + STATE(484), 1, + sym_block, + STATE(3747), 1, + sym_label, STATE(2705), 2, sym_line_comment, sym_block_comment, - [82561] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [83058] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5082), 1, - anon_sym_PLUS, + ACTIONS(5883), 1, + anon_sym_COLON_COLON, STATE(2706), 2, sym_line_comment, sym_block_comment, - ACTIONS(5903), 3, - anon_sym_RPAREN, + ACTIONS(4876), 3, + anon_sym_EQ_GT, anon_sym_PIPE, - anon_sym_COMMA, - [82580] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + anon_sym_if, + [83077] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3058), 1, - anon_sym_SQUOTE, - ACTIONS(5750), 1, - sym_identifier, - ACTIONS(5905), 1, - anon_sym_GT, - STATE(3157), 1, - sym_lifetime, + ACTIONS(5885), 1, + anon_sym_COLON_COLON, STATE(2707), 2, sym_line_comment, sym_block_comment, - [82603] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + ACTIONS(4840), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [83096] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4574), 1, + ACTIONS(4604), 1, anon_sym_LT2, - ACTIONS(5806), 1, - anon_sym_COLON_COLON, - ACTIONS(5907), 1, - anon_sym_for, - STATE(1999), 1, + STATE(3575), 1, sym_type_arguments, + ACTIONS(5776), 2, + sym_identifier, + sym_super, STATE(2708), 2, sym_line_comment, sym_block_comment, - [82626] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [83117] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4574), 1, - anon_sym_LT2, - ACTIONS(5296), 1, - sym_super, - ACTIONS(5701), 1, - sym_identifier, - STATE(3554), 1, - sym_type_arguments, + ACTIONS(4598), 1, + anon_sym_LPAREN, + ACTIONS(5050), 1, + anon_sym_LT, + STATE(2293), 1, + sym_parameters, + STATE(3347), 1, + sym_type_parameters, STATE(2709), 2, sym_line_comment, sym_block_comment, - [82649] = 7, - ACTIONS(103), 1, + [83140] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4989), 1, - anon_sym_where, - ACTIONS(4993), 1, - anon_sym_LBRACE, - STATE(638), 1, - sym_declaration_list, - STATE(3289), 1, - sym_where_clause, + ACTIONS(5889), 1, + aux_sym_token_repetition_pattern_token1, STATE(2710), 2, sym_line_comment, sym_block_comment, - [82672] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + ACTIONS(5891), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [83159] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5082), 1, - anon_sym_PLUS, - ACTIONS(5909), 1, - anon_sym_SEMI, - ACTIONS(5911), 1, - anon_sym_EQ, - ACTIONS(5913), 1, - anon_sym_else, + ACTIONS(3072), 1, + anon_sym_SQUOTE, + ACTIONS(5785), 1, + sym_identifier, + ACTIONS(5893), 1, + anon_sym_GT, + STATE(3179), 1, + sym_lifetime, STATE(2711), 2, sym_line_comment, sym_block_comment, - [82695] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [83182] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4576), 2, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(5915), 2, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(5895), 1, + anon_sym_in, STATE(2712), 2, sym_line_comment, sym_block_comment, - [82714] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + ACTIONS(5897), 3, + sym_self, + sym_super, + sym_crate, + [83201] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4568), 1, - anon_sym_LPAREN, - ACTIONS(4987), 1, - anon_sym_LT, - STATE(2289), 1, - sym_parameters, - STATE(3346), 1, - sym_type_parameters, + ACTIONS(3072), 1, + anon_sym_SQUOTE, + ACTIONS(5785), 1, + sym_identifier, + ACTIONS(5899), 1, + anon_sym_GT, + STATE(3179), 1, + sym_lifetime, STATE(2713), 2, sym_line_comment, sym_block_comment, - [82737] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [83224] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, + ACTIONS(5052), 1, + anon_sym_where, + ACTIONS(5157), 1, + anon_sym_PLUS, + ACTIONS(5901), 1, + anon_sym_SEMI, + STATE(3544), 1, + sym_where_clause, STATE(2714), 2, sym_line_comment, sym_block_comment, - ACTIONS(973), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - [82754] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [83247] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4586), 1, - anon_sym_DOT_DOT, - ACTIONS(5332), 1, - anon_sym_COLON_COLON, - ACTIONS(4588), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, + ACTIONS(4598), 1, + anon_sym_LPAREN, + ACTIONS(4604), 1, + anon_sym_LT2, + STATE(2013), 1, + sym_type_arguments, + STATE(2018), 1, + sym_parameters, STATE(2715), 2, sym_line_comment, sym_block_comment, - [82775] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [83270] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5736), 1, - anon_sym_COLON_COLON, + ACTIONS(5903), 1, + anon_sym_COLON, STATE(2716), 2, sym_line_comment, sym_block_comment, - ACTIONS(4817), 3, - anon_sym_EQ_GT, + ACTIONS(5018), 3, + anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_if, - [82794] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + anon_sym_COMMA, + [83289] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4574), 1, - anon_sym_LT2, - STATE(3554), 1, - sym_type_arguments, - ACTIONS(5917), 2, - sym_identifier, - sym_super, + ACTIONS(5905), 1, + anon_sym_LBRACE, + ACTIONS(5907), 1, + anon_sym_for, + ACTIONS(5909), 1, + anon_sym_loop, + ACTIONS(5911), 1, + anon_sym_while, STATE(2717), 2, sym_line_comment, sym_block_comment, - [82815] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [83312] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4574), 1, - anon_sym_LT2, - STATE(3659), 1, - sym_type_arguments, - ACTIONS(5917), 2, - sym_identifier, - sym_super, + ACTIONS(5052), 1, + anon_sym_where, + ACTIONS(5157), 1, + anon_sym_PLUS, + ACTIONS(5913), 1, + anon_sym_SEMI, + STATE(3585), 1, + sym_where_clause, STATE(2718), 2, sym_line_comment, sym_block_comment, - [82836] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [83335] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5919), 1, - anon_sym_COLON, + ACTIONS(4928), 1, + anon_sym_LBRACE, + ACTIONS(5052), 1, + anon_sym_where, + STATE(533), 1, + sym_declaration_list, + STATE(3270), 1, + sym_where_clause, STATE(2719), 2, sym_line_comment, sym_block_comment, - ACTIONS(4879), 3, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_COMMA, - [82855] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [83358] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, - anon_sym_LBRACE, - ACTIONS(3348), 1, - anon_sym_SQUOTE, - STATE(1410), 1, - sym_block, - STATE(3664), 1, - sym_label, + ACTIONS(5586), 1, + anon_sym_PIPE, + ACTIONS(5915), 1, + anon_sym_RPAREN, + ACTIONS(5917), 1, + anon_sym_COMMA, + STATE(2906), 1, + aux_sym_slice_pattern_repeat1, STATE(2720), 2, sym_line_comment, sym_block_comment, - [82878] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [83381] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, - anon_sym_LBRACE, - ACTIONS(3348), 1, - anon_sym_SQUOTE, - STATE(1435), 1, - sym_block, - STATE(3664), 1, - sym_label, + ACTIONS(4769), 1, + anon_sym_DOT_DOT, + ACTIONS(5919), 1, + anon_sym_COLON_COLON, + ACTIONS(4771), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, STATE(2721), 2, sym_line_comment, sym_block_comment, - [82901] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [83402] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5921), 1, - anon_sym_DQUOTE, - STATE(2573), 1, - aux_sym_string_literal_repeat1, - ACTIONS(5707), 2, - sym_string_content, - sym_escape_sequence, + ACTIONS(5399), 1, + anon_sym_PLUS, STATE(2722), 2, sym_line_comment, sym_block_comment, - [82922] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + ACTIONS(5921), 3, + anon_sym_COLON, + anon_sym_GT, + anon_sym_COMMA, + [83421] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4568), 1, - anon_sym_LPAREN, - ACTIONS(4987), 1, - anon_sym_LT, - STATE(2245), 1, - sym_parameters, - STATE(3227), 1, - sym_type_parameters, + ACTIONS(4604), 1, + anon_sym_LT2, + ACTIONS(5776), 1, + sym_super, + ACTIONS(5795), 1, + sym_identifier, + STATE(3575), 1, + sym_type_arguments, STATE(2723), 2, sym_line_comment, sym_block_comment, - [82945] = 7, - ACTIONS(103), 1, + [83444] = 5, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(5885), 1, + anon_sym_COLON_COLON, + STATE(2724), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4876), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [83463] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5544), 1, + ACTIONS(5586), 1, anon_sym_PIPE, ACTIONS(5923), 1, anon_sym_RPAREN, ACTIONS(5925), 1, anon_sym_COMMA, - STATE(2885), 1, + STATE(2908), 1, aux_sym_slice_pattern_repeat1, - STATE(2724), 2, + STATE(2725), 2, sym_line_comment, sym_block_comment, - [82968] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [83486] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(1381), 1, + ACTIONS(1414), 1, anon_sym_RPAREN, - ACTIONS(5082), 1, + ACTIONS(5157), 1, anon_sym_PLUS, - ACTIONS(5627), 1, + ACTIONS(5625), 1, anon_sym_COMMA, - STATE(2986), 1, + STATE(3099), 1, aux_sym_parameters_repeat1, - STATE(2725), 2, - sym_line_comment, - sym_block_comment, - [82991] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(5736), 1, - anon_sym_COLON_COLON, STATE(2726), 2, sym_line_comment, sym_block_comment, - ACTIONS(4841), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [83010] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [83509] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5762), 1, - anon_sym_COLON_COLON, + ACTIONS(3368), 1, + anon_sym_LPAREN, + ACTIONS(4604), 1, + anon_sym_LT2, + STATE(1398), 1, + sym_parameters, + STATE(2013), 1, + sym_type_arguments, STATE(2727), 2, sym_line_comment, sym_block_comment, - ACTIONS(4813), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [83029] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [83532] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, + ACTIONS(5927), 1, + anon_sym_LPAREN, + ACTIONS(5929), 1, + anon_sym_LBRACK, + ACTIONS(5931), 1, anon_sym_LBRACE, - ACTIONS(3348), 1, - anon_sym_SQUOTE, - STATE(3577), 1, - sym_block, - STATE(3664), 1, - sym_label, + STATE(405), 1, + sym_delim_token_tree, STATE(2728), 2, sym_line_comment, sym_block_comment, - [83052] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [83555] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4989), 1, - anon_sym_where, - ACTIONS(5082), 1, - anon_sym_PLUS, - ACTIONS(5927), 1, - anon_sym_SEMI, - STATE(3572), 1, - sym_where_clause, + ACTIONS(5586), 1, + anon_sym_PIPE, + ACTIONS(5933), 1, + anon_sym_RPAREN, + ACTIONS(5935), 1, + anon_sym_COMMA, + STATE(2911), 1, + aux_sym_tuple_pattern_repeat1, STATE(2729), 2, sym_line_comment, sym_block_comment, - [83075] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [83578] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5544), 1, + ACTIONS(4608), 2, + anon_sym_COLON, anon_sym_PIPE, - ACTIONS(5929), 1, + ACTIONS(5937), 2, anon_sym_RPAREN, - ACTIONS(5931), 1, anon_sym_COMMA, - STATE(2888), 1, - aux_sym_slice_pattern_repeat1, STATE(2730), 2, sym_line_comment, sym_block_comment, - [83098] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [83597] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4989), 1, - anon_sym_where, - ACTIONS(5082), 1, - anon_sym_PLUS, - ACTIONS(5933), 1, - anon_sym_SEMI, - STATE(3575), 1, - sym_where_clause, + ACTIONS(3376), 1, + anon_sym_LT2, + ACTIONS(3608), 1, + anon_sym_COLON_COLON, + ACTIONS(4868), 1, + anon_sym_BANG, + STATE(1383), 1, + sym_type_arguments, STATE(2731), 2, sym_line_comment, sym_block_comment, - [83121] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [83620] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5770), 1, - anon_sym_COLON_COLON, + ACTIONS(348), 1, + anon_sym_LBRACE, + ACTIONS(3386), 1, + anon_sym_SQUOTE, + STATE(3693), 1, + sym_label, + STATE(3728), 1, + sym_block, STATE(2732), 2, sym_line_comment, sym_block_comment, - ACTIONS(4813), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [83140] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [83643] = 7, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(5774), 1, - anon_sym_COLON_COLON, - STATE(2733), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4813), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [83159] = 7, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5082), 1, + ACTIONS(1400), 1, + anon_sym_RPAREN, + ACTIONS(5157), 1, anon_sym_PLUS, ACTIONS(5631), 1, - anon_sym_RPAREN, - ACTIONS(5633), 1, anon_sym_COMMA, - STATE(2891), 1, + STATE(2949), 1, aux_sym_parameters_repeat1, - STATE(2734), 2, + STATE(2733), 2, sym_line_comment, sym_block_comment, - [83182] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [83666] = 6, + ACTIONS(101), 1, + aux_sym_string_literal_token1, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4568), 1, - anon_sym_LPAREN, - ACTIONS(4987), 1, - anon_sym_LT, - STATE(2262), 1, - sym_parameters, - STATE(3360), 1, - sym_type_parameters, - STATE(2735), 2, + STATE(2226), 1, + sym_string_literal, + ACTIONS(4804), 2, + anon_sym_SEMI, + anon_sym_LBRACE, + STATE(2734), 2, sym_line_comment, sym_block_comment, - [83205] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [83687] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(1301), 1, + ACTIONS(348), 1, anon_sym_LBRACE, - ACTIONS(3348), 1, + ACTIONS(3386), 1, anon_sym_SQUOTE, - STATE(486), 1, + STATE(1496), 1, sym_block, - STATE(3717), 1, + STATE(3693), 1, sym_label, - STATE(2736), 2, + STATE(2735), 2, sym_line_comment, sym_block_comment, - [83228] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [83710] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(1301), 1, - anon_sym_LBRACE, - ACTIONS(3348), 1, - anon_sym_SQUOTE, - STATE(474), 1, - sym_block, - STATE(3717), 1, - sym_label, - STATE(2737), 2, + ACTIONS(5052), 1, + anon_sym_where, + ACTIONS(5157), 1, + anon_sym_PLUS, + ACTIONS(5939), 1, + anon_sym_SEMI, + STATE(3705), 1, + sym_where_clause, + STATE(2736), 2, sym_line_comment, sym_block_comment, - [83251] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [83733] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5935), 1, - anon_sym_DQUOTE, - STATE(2804), 1, - aux_sym_string_literal_repeat1, - ACTIONS(5707), 2, - sym_string_content, - sym_escape_sequence, - STATE(2738), 2, + ACTIONS(4598), 1, + anon_sym_LPAREN, + ACTIONS(5050), 1, + anon_sym_LT, + STATE(2303), 1, + sym_parameters, + STATE(3376), 1, + sym_type_parameters, + STATE(2737), 2, sym_line_comment, sym_block_comment, - [83272] = 7, - ACTIONS(19), 1, - anon_sym_LBRACE, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [83756] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3348), 1, + ACTIONS(348), 1, + anon_sym_LBRACE, + ACTIONS(3386), 1, anon_sym_SQUOTE, - STATE(400), 1, + STATE(1454), 1, sym_block, - STATE(3676), 1, + STATE(3693), 1, sym_label, + STATE(2738), 2, + sym_line_comment, + sym_block_comment, + [83779] = 7, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(4928), 1, + anon_sym_LBRACE, + ACTIONS(5052), 1, + anon_sym_where, + STATE(777), 1, + sym_declaration_list, + STATE(3167), 1, + sym_where_clause, STATE(2739), 2, sym_line_comment, sym_block_comment, - [83295] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [83802] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, + ACTIONS(348), 1, anon_sym_LBRACE, - ACTIONS(3348), 1, + ACTIONS(3386), 1, anon_sym_SQUOTE, - STATE(3479), 1, + STATE(1430), 1, sym_block, - STATE(3664), 1, + STATE(3693), 1, sym_label, STATE(2740), 2, sym_line_comment, sym_block_comment, - [83318] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [83825] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, - anon_sym_LBRACE, - ACTIONS(3348), 1, - anon_sym_SQUOTE, - STATE(3424), 1, - sym_block, - STATE(3664), 1, - sym_label, + ACTIONS(5157), 1, + anon_sym_PLUS, + ACTIONS(5617), 1, + anon_sym_RPAREN, + ACTIONS(5619), 1, + anon_sym_COMMA, + STATE(2912), 1, + aux_sym_parameters_repeat1, STATE(2741), 2, sym_line_comment, sym_block_comment, - [83341] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [83848] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3348), 1, - anon_sym_SQUOTE, - ACTIONS(5124), 1, + ACTIONS(5277), 1, + anon_sym_LPAREN, + ACTIONS(5279), 1, + anon_sym_LBRACK, + ACTIONS(5283), 1, anon_sym_LBRACE, - STATE(3035), 1, - sym_block, - STATE(3716), 1, - sym_label, + STATE(1431), 1, + sym_delim_token_tree, STATE(2742), 2, sym_line_comment, sym_block_comment, - [83364] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [83871] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(407), 1, - anon_sym_LBRACE, - ACTIONS(3348), 1, + ACTIONS(3072), 1, anon_sym_SQUOTE, - STATE(1735), 1, - sym_block, - STATE(3718), 1, - sym_label, + ACTIONS(5785), 1, + sym_identifier, + ACTIONS(5941), 1, + anon_sym_GT, + STATE(3179), 1, + sym_lifetime, STATE(2743), 2, sym_line_comment, sym_block_comment, - [83387] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [83894] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4989), 1, - anon_sym_where, - ACTIONS(5082), 1, - anon_sym_PLUS, - ACTIONS(5937), 1, - anon_sym_SEMI, - STATE(3540), 1, - sym_where_clause, + ACTIONS(348), 1, + anon_sym_LBRACE, + ACTIONS(3386), 1, + anon_sym_SQUOTE, + STATE(1432), 1, + sym_block, + STATE(3693), 1, + sym_label, STATE(2744), 2, sym_line_comment, sym_block_comment, - [83410] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [83917] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, + ACTIONS(348), 1, anon_sym_LBRACE, - ACTIONS(3348), 1, + ACTIONS(3386), 1, anon_sym_SQUOTE, - STATE(1117), 1, + STATE(1393), 1, sym_block, - STATE(3664), 1, + STATE(3693), 1, sym_label, STATE(2745), 2, sym_line_comment, sym_block_comment, - [83433] = 7, - ACTIONS(103), 1, + [83940] = 7, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(3072), 1, + anon_sym_SQUOTE, + ACTIONS(5785), 1, + sym_identifier, + ACTIONS(5943), 1, + anon_sym_GT, + STATE(3179), 1, + sym_lifetime, + STATE(2746), 2, + sym_line_comment, + sym_block_comment, + [83963] = 7, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(4604), 1, + anon_sym_LT2, + ACTIONS(5766), 1, + anon_sym_COLON_COLON, + ACTIONS(5945), 1, + anon_sym_for, + STATE(2016), 1, + sym_type_arguments, + STATE(2747), 2, + sym_line_comment, + sym_block_comment, + [83986] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4989), 1, + ACTIONS(5052), 1, anon_sym_where, - ACTIONS(5082), 1, - anon_sym_PLUS, - ACTIONS(5939), 1, - anon_sym_SEMI, - STATE(3541), 1, + ACTIONS(5110), 1, + anon_sym_LBRACE, + STATE(558), 1, + sym_field_declaration_list, + STATE(3210), 1, sym_where_clause, - STATE(2746), 2, + STATE(2748), 2, sym_line_comment, sym_block_comment, - [83456] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [84009] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4971), 1, + ACTIONS(4928), 1, anon_sym_LBRACE, - ACTIONS(4989), 1, + ACTIONS(5052), 1, anon_sym_where, - STATE(1276), 1, + STATE(736), 1, sym_declaration_list, - STATE(3355), 1, + STATE(3218), 1, sym_where_clause, - STATE(2747), 2, + STATE(2749), 2, sym_line_comment, sym_block_comment, - [83479] = 7, - ACTIONS(19), 1, - anon_sym_LBRACE, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [84032] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3348), 1, + ACTIONS(348), 1, + anon_sym_LBRACE, + ACTIONS(3386), 1, anon_sym_SQUOTE, - STATE(393), 1, + STATE(3598), 1, sym_block, - STATE(3676), 1, + STATE(3693), 1, sym_label, - STATE(2748), 2, + STATE(2750), 2, sym_line_comment, sym_block_comment, - [83502] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [84055] = 7, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(5082), 1, - anon_sym_PLUS, - ACTIONS(5941), 1, - anon_sym_SEMI, - ACTIONS(5943), 1, - anon_sym_EQ, - ACTIONS(5945), 1, - anon_sym_else, - STATE(2749), 2, - sym_line_comment, - sym_block_comment, - [83525] = 7, - ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5082), 1, + ACTIONS(5157), 1, anon_sym_PLUS, - ACTIONS(5947), 1, + ACTIONS(5576), 1, anon_sym_RPAREN, - ACTIONS(5949), 1, + ACTIONS(5578), 1, anon_sym_COMMA, - STATE(3060), 1, - aux_sym_ordered_field_declaration_list_repeat1, - STATE(2750), 2, - sym_line_comment, - sym_block_comment, - [83548] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(1601), 1, - anon_sym_LBRACE, - ACTIONS(3348), 1, - anon_sym_SQUOTE, - STATE(2172), 1, - sym_block, - STATE(3709), 1, - sym_label, + STATE(2875), 1, + aux_sym_parameters_repeat1, STATE(2751), 2, sym_line_comment, sym_block_comment, - [83571] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [84078] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4971), 1, - anon_sym_LBRACE, - ACTIONS(4989), 1, + ACTIONS(5052), 1, anon_sym_where, - STATE(1202), 1, - sym_declaration_list, - STATE(3199), 1, + ACTIONS(5157), 1, + anon_sym_PLUS, + ACTIONS(5947), 1, + anon_sym_SEMI, + STATE(3696), 1, sym_where_clause, STATE(2752), 2, sym_line_comment, sym_block_comment, - [83594] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [84101] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4989), 1, - anon_sym_where, - ACTIONS(5082), 1, - anon_sym_PLUS, - ACTIONS(5951), 1, - anon_sym_SEMI, - STATE(3683), 1, - sym_where_clause, + ACTIONS(348), 1, + anon_sym_LBRACE, + ACTIONS(3386), 1, + anon_sym_SQUOTE, + STATE(3693), 1, + sym_label, + STATE(3751), 1, + sym_block, STATE(2753), 2, sym_line_comment, sym_block_comment, - [83617] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [84124] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5082), 1, - anon_sym_PLUS, - ACTIONS(5518), 1, - anon_sym_RPAREN, - ACTIONS(5520), 1, - anon_sym_COMMA, - STATE(3078), 1, - aux_sym_parameters_repeat1, + ACTIONS(3072), 1, + anon_sym_SQUOTE, + ACTIONS(5785), 1, + sym_identifier, + ACTIONS(5949), 1, + anon_sym_GT, + STATE(3179), 1, + sym_lifetime, STATE(2754), 2, sym_line_comment, sym_block_comment, - [83640] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [84147] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, - anon_sym_LBRACE, - ACTIONS(3348), 1, + ACTIONS(3072), 1, anon_sym_SQUOTE, - STATE(3628), 1, - sym_block, - STATE(3664), 1, - sym_label, + ACTIONS(5785), 1, + sym_identifier, + ACTIONS(5951), 1, + anon_sym_GT, + STATE(3179), 1, + sym_lifetime, STATE(2755), 2, sym_line_comment, sym_block_comment, - [83663] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [84170] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, - anon_sym_LBRACE, - ACTIONS(3348), 1, - anon_sym_SQUOTE, - STATE(3630), 1, - sym_block, - STATE(3664), 1, - sym_label, + ACTIONS(4598), 1, + anon_sym_LPAREN, + ACTIONS(5050), 1, + anon_sym_LT, + STATE(2318), 1, + sym_parameters, + STATE(3391), 1, + sym_type_parameters, STATE(2756), 2, sym_line_comment, sym_block_comment, - [83686] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [84193] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4971), 1, - anon_sym_LBRACE, - ACTIONS(4989), 1, - anon_sym_where, - STATE(1213), 1, - sym_declaration_list, - STATE(3207), 1, - sym_where_clause, + ACTIONS(3072), 1, + anon_sym_SQUOTE, + ACTIONS(5785), 1, + sym_identifier, + ACTIONS(5953), 1, + anon_sym_GT, + STATE(3179), 1, + sym_lifetime, STATE(2757), 2, sym_line_comment, sym_block_comment, - [83709] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [84216] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4084), 1, - anon_sym_LT2, - ACTIONS(4200), 1, - anon_sym_COLON_COLON, - ACTIONS(4915), 1, - anon_sym_BANG, - STATE(1682), 1, - sym_type_arguments, + ACTIONS(5052), 1, + anon_sym_where, + ACTIONS(5157), 1, + anon_sym_PLUS, + ACTIONS(5955), 1, + anon_sym_SEMI, + STATE(3655), 1, + sym_where_clause, STATE(2758), 2, sym_line_comment, sym_block_comment, - [83732] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [84239] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(1301), 1, - anon_sym_LBRACE, - ACTIONS(3348), 1, - anon_sym_SQUOTE, - STATE(489), 1, - sym_block, - STATE(3717), 1, - sym_label, + ACTIONS(5157), 1, + anon_sym_PLUS, + ACTIONS(5957), 1, + anon_sym_RPAREN, + ACTIONS(5959), 1, + anon_sym_COMMA, + STATE(3130), 1, + aux_sym_ordered_field_declaration_list_repeat1, STATE(2759), 2, sym_line_comment, sym_block_comment, - [83755] = 7, + [84262] = 7, ACTIONS(19), 1, anon_sym_LBRACE, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3348), 1, + ACTIONS(3386), 1, anon_sym_SQUOTE, - STATE(414), 1, + STATE(252), 1, sym_block, - STATE(3676), 1, + STATE(3582), 1, sym_label, STATE(2760), 2, sym_line_comment, sym_block_comment, - [83778] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [84285] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, + ACTIONS(348), 1, anon_sym_LBRACE, - ACTIONS(3348), 1, + ACTIONS(3386), 1, anon_sym_SQUOTE, - STATE(3664), 1, - sym_label, - STATE(3733), 1, + STATE(1436), 1, sym_block, + STATE(3693), 1, + sym_label, STATE(2761), 2, sym_line_comment, sym_block_comment, - [83801] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [84308] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5128), 1, - anon_sym_COLON, - STATE(3298), 1, - sym_trait_bounds, - ACTIONS(5538), 2, - anon_sym_GT, - anon_sym_COMMA, + ACTIONS(348), 1, + anon_sym_LBRACE, + ACTIONS(3386), 1, + anon_sym_SQUOTE, + STATE(3506), 1, + sym_block, + STATE(3693), 1, + sym_label, STATE(2762), 2, sym_line_comment, sym_block_comment, - [83822] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [84331] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(1301), 1, + ACTIONS(348), 1, anon_sym_LBRACE, - ACTIONS(3348), 1, + ACTIONS(3386), 1, anon_sym_SQUOTE, - STATE(478), 1, + STATE(3517), 1, sym_block, - STATE(3717), 1, + STATE(3693), 1, sym_label, STATE(2763), 2, sym_line_comment, sym_block_comment, - [83845] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [84354] = 7, + ACTIONS(19), 1, + anon_sym_LBRACE, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, - anon_sym_LBRACE, - ACTIONS(3348), 1, + ACTIONS(3386), 1, anon_sym_SQUOTE, - STATE(3664), 1, - sym_label, - STATE(3724), 1, + STATE(418), 1, sym_block, + STATE(3582), 1, + sym_label, STATE(2764), 2, sym_line_comment, sym_block_comment, - [83868] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [84377] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4574), 1, - anon_sym_LT2, - ACTIONS(5128), 1, - anon_sym_COLON, - STATE(1993), 1, - sym_type_arguments, - STATE(2542), 1, - sym_trait_bounds, + ACTIONS(5052), 1, + anon_sym_where, + ACTIONS(5157), 1, + anon_sym_PLUS, + ACTIONS(5961), 1, + anon_sym_SEMI, + STATE(3501), 1, + sym_where_clause, STATE(2765), 2, sym_line_comment, sym_block_comment, - [83891] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [84400] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5762), 1, - anon_sym_COLON_COLON, + ACTIONS(1366), 1, + anon_sym_LBRACE, + ACTIONS(3386), 1, + anon_sym_SQUOTE, + STATE(491), 1, + sym_block, + STATE(3747), 1, + sym_label, STATE(2766), 2, sym_line_comment, sym_block_comment, - ACTIONS(4777), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [83910] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [84423] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3058), 1, + ACTIONS(1366), 1, + anon_sym_LBRACE, + ACTIONS(3386), 1, anon_sym_SQUOTE, - ACTIONS(5750), 1, - sym_identifier, - ACTIONS(5953), 1, - anon_sym_GT, - STATE(3157), 1, - sym_lifetime, + STATE(487), 1, + sym_block, + STATE(3747), 1, + sym_label, STATE(2767), 2, sym_line_comment, sym_block_comment, - [83933] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [84446] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4989), 1, - anon_sym_where, - ACTIONS(5440), 1, - anon_sym_LBRACE, - STATE(1218), 1, - sym_enum_variant_list, - STATE(3231), 1, - sym_where_clause, + ACTIONS(5963), 1, + anon_sym_DQUOTE, + STATE(2818), 1, + aux_sym_string_literal_repeat1, + ACTIONS(5799), 2, + sym_string_content, + sym_escape_sequence, STATE(2768), 2, sym_line_comment, sym_block_comment, - [83956] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [84467] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4586), 1, - anon_sym_DOT_DOT, - ACTIONS(5274), 1, - anon_sym_COLON_COLON, - ACTIONS(4588), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, + ACTIONS(5965), 1, + anon_sym_DQUOTE, + STATE(2770), 1, + aux_sym_string_literal_repeat1, + ACTIONS(5799), 2, + sym_string_content, + sym_escape_sequence, STATE(2769), 2, sym_line_comment, sym_block_comment, - [83977] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [84488] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5544), 1, - anon_sym_PIPE, - ACTIONS(5955), 1, - anon_sym_RPAREN, - ACTIONS(5957), 1, - anon_sym_COMMA, - STATE(3061), 1, - aux_sym_tuple_pattern_repeat1, - STATE(2770), 2, + ACTIONS(5967), 1, + anon_sym_DQUOTE, + ACTIONS(5969), 2, + sym_string_content, + sym_escape_sequence, + STATE(2770), 3, sym_line_comment, sym_block_comment, - [84000] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + aux_sym_string_literal_repeat1, + [84507] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4985), 1, + ACTIONS(4984), 1, anon_sym_LBRACE, - ACTIONS(4989), 1, + ACTIONS(5052), 1, anon_sym_where, - STATE(1224), 1, - sym_field_declaration_list, - STATE(3236), 1, + STATE(1240), 1, + sym_declaration_list, + STATE(3280), 1, sym_where_clause, STATE(2771), 2, sym_line_comment, sym_block_comment, - [84023] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [84530] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3058), 1, + ACTIONS(3386), 1, anon_sym_SQUOTE, - ACTIONS(5750), 1, - sym_identifier, - ACTIONS(5959), 1, - anon_sym_GT, - STATE(3157), 1, - sym_lifetime, + ACTIONS(5155), 1, + anon_sym_LBRACE, + STATE(3065), 1, + sym_block, + STATE(3746), 1, + sym_label, STATE(2772), 2, sym_line_comment, sym_block_comment, - [84046] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [84553] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5961), 1, + ACTIONS(348), 1, anon_sym_LBRACE, - ACTIONS(5963), 1, - anon_sym_for, - ACTIONS(5965), 1, - anon_sym_loop, - ACTIONS(5967), 1, - anon_sym_while, + ACTIONS(3386), 1, + anon_sym_SQUOTE, + STATE(3664), 1, + sym_block, + STATE(3693), 1, + sym_label, STATE(2773), 2, sym_line_comment, sym_block_comment, - [84069] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [84576] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4574), 1, - anon_sym_LT2, - ACTIONS(5778), 1, - sym_super, - ACTIONS(5822), 1, - sym_identifier, - STATE(3554), 1, - sym_type_arguments, + ACTIONS(348), 1, + anon_sym_LBRACE, + ACTIONS(3386), 1, + anon_sym_SQUOTE, + STATE(3665), 1, + sym_block, + STATE(3693), 1, + sym_label, STATE(2774), 2, sym_line_comment, sym_block_comment, - [84092] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [84599] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5969), 1, - anon_sym_LPAREN, - ACTIONS(5971), 1, - anon_sym_LBRACK, - ACTIONS(5973), 1, + ACTIONS(412), 1, anon_sym_LBRACE, - STATE(2009), 1, - sym_delim_token_tree, + ACTIONS(3386), 1, + anon_sym_SQUOTE, + STATE(1791), 1, + sym_block, + STATE(3748), 1, + sym_label, STATE(2775), 2, sym_line_comment, sym_block_comment, - [84115] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [84622] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4574), 1, - anon_sym_LT2, - ACTIONS(4600), 1, - anon_sym_BANG, - ACTIONS(4695), 1, - anon_sym_COLON_COLON, - STATE(1994), 1, - sym_type_arguments, + ACTIONS(5157), 1, + anon_sym_PLUS, + ACTIONS(5972), 1, + anon_sym_SEMI, + ACTIONS(5974), 1, + anon_sym_EQ, + ACTIONS(5976), 1, + anon_sym_else, STATE(2776), 2, sym_line_comment, sym_block_comment, - [84138] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [84645] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5975), 1, - anon_sym_in, + ACTIONS(5277), 1, + anon_sym_LPAREN, + ACTIONS(5279), 1, + anon_sym_LBRACK, + ACTIONS(5283), 1, + anon_sym_LBRACE, + STATE(1437), 1, + sym_delim_token_tree, STATE(2777), 2, sym_line_comment, sym_block_comment, - ACTIONS(5977), 3, - sym_self, - sym_super, - sym_crate, - [84157] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [84668] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, - anon_sym_LBRACE, - ACTIONS(3348), 1, - anon_sym_SQUOTE, - STATE(3508), 1, - sym_block, - STATE(3664), 1, - sym_label, + ACTIONS(5157), 1, + anon_sym_PLUS, + ACTIONS(5978), 1, + anon_sym_EQ, + ACTIONS(5980), 2, + anon_sym_GT, + anon_sym_COMMA, STATE(2778), 2, sym_line_comment, sym_block_comment, - [84180] = 7, - ACTIONS(19), 1, - anon_sym_LBRACE, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [84689] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3348), 1, + ACTIONS(348), 1, + anon_sym_LBRACE, + ACTIONS(3386), 1, anon_sym_SQUOTE, - STATE(391), 1, + STATE(3608), 1, sym_block, - STATE(3676), 1, + STATE(3693), 1, sym_label, STATE(2779), 2, sym_line_comment, sym_block_comment, - [84203] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [84712] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, - anon_sym_LBRACE, - ACTIONS(3348), 1, - anon_sym_SQUOTE, - STATE(3596), 1, - sym_block, - STATE(3664), 1, - sym_label, + ACTIONS(5586), 1, + anon_sym_PIPE, STATE(2780), 2, sym_line_comment, sym_block_comment, - [84226] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + ACTIONS(5982), 3, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_COMMA, + [84731] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(1301), 1, + ACTIONS(348), 1, anon_sym_LBRACE, - ACTIONS(3348), 1, + ACTIONS(3386), 1, anon_sym_SQUOTE, - STATE(479), 1, + STATE(3484), 1, sym_block, - STATE(3717), 1, + STATE(3693), 1, sym_label, STATE(2781), 2, sym_line_comment, sym_block_comment, - [84249] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [84754] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, - anon_sym_LBRACE, - ACTIONS(3348), 1, - anon_sym_SQUOTE, - STATE(1414), 1, - sym_block, - STATE(3664), 1, - sym_label, + ACTIONS(3376), 1, + anon_sym_LT2, + ACTIONS(5295), 1, + sym_super, + ACTIONS(5984), 1, + sym_identifier, + STATE(1625), 1, + sym_type_arguments, STATE(2782), 2, sym_line_comment, sym_block_comment, - [84272] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [84777] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4586), 1, - anon_sym_DOT_DOT, - ACTIONS(5312), 1, - anon_sym_COLON_COLON, - ACTIONS(4588), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, + ACTIONS(5986), 1, + anon_sym_DQUOTE, + STATE(2770), 1, + aux_sym_string_literal_repeat1, + ACTIONS(5799), 2, + sym_string_content, + sym_escape_sequence, STATE(2783), 2, sym_line_comment, sym_block_comment, - [84293] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [84798] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5082), 1, - anon_sym_PLUS, - ACTIONS(5979), 1, - anon_sym_EQ, - ACTIONS(5981), 2, - anon_sym_GT, - anon_sym_COMMA, + ACTIONS(4122), 1, + anon_sym_LT2, + ACTIONS(4292), 1, + anon_sym_COLON_COLON, + ACTIONS(4880), 1, + anon_sym_BANG, + STATE(1641), 1, + sym_type_arguments, STATE(2784), 2, sym_line_comment, sym_block_comment, - [84314] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [84821] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4574), 1, - anon_sym_LT2, - ACTIONS(5806), 1, - anon_sym_COLON_COLON, - ACTIONS(5983), 1, - anon_sym_for, - STATE(1999), 1, - sym_type_arguments, + ACTIONS(5558), 1, + anon_sym_COLON, + ACTIONS(5560), 1, + anon_sym_PIPE, + ACTIONS(5562), 1, + anon_sym_COMMA, + STATE(2873), 1, + aux_sym_closure_parameters_repeat1, STATE(2785), 2, sym_line_comment, sym_block_comment, - [84337] = 7, - ACTIONS(103), 1, + [84844] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5985), 1, - anon_sym_LBRACE, - ACTIONS(5987), 1, - anon_sym_for, - ACTIONS(5989), 1, - anon_sym_loop, - ACTIONS(5991), 1, - anon_sym_while, + ACTIONS(5988), 1, + aux_sym_token_repetition_pattern_token1, STATE(2786), 2, sym_line_comment, sym_block_comment, - [84360] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + ACTIONS(5990), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [84863] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5544), 1, - anon_sym_PIPE, - ACTIONS(5993), 1, - anon_sym_RBRACK, - ACTIONS(5995), 1, - anon_sym_COMMA, - STATE(3065), 1, - aux_sym_slice_pattern_repeat1, + ACTIONS(4618), 1, + anon_sym_DOT_DOT, + ACTIONS(5303), 1, + anon_sym_COLON_COLON, + ACTIONS(4620), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, STATE(2787), 2, sym_line_comment, sym_block_comment, - [84383] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [84884] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(1301), 1, - anon_sym_LBRACE, - ACTIONS(3348), 1, - anon_sym_SQUOTE, - STATE(460), 1, - sym_block, - STATE(3717), 1, - sym_label, + ACTIONS(4604), 1, + anon_sym_LT2, + ACTIONS(5149), 1, + anon_sym_COLON, + STATE(2013), 1, + sym_type_arguments, + STATE(2508), 1, + sym_trait_bounds, STATE(2788), 2, sym_line_comment, sym_block_comment, - [84406] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [84907] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5770), 1, - anon_sym_COLON_COLON, - STATE(2789), 2, + ACTIONS(5992), 1, + anon_sym_COMMA, + ACTIONS(5982), 2, + anon_sym_RPAREN, + anon_sym_RBRACK, + STATE(2789), 3, sym_line_comment, sym_block_comment, - ACTIONS(4777), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [84425] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + aux_sym_slice_pattern_repeat1, + [84926] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4568), 1, - anon_sym_LPAREN, - ACTIONS(4987), 1, - anon_sym_LT, - STATE(2248), 1, - sym_parameters, - STATE(3352), 1, - sym_type_parameters, STATE(2790), 2, sym_line_comment, sym_block_comment, - [84448] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + ACTIONS(3328), 4, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_GT, + anon_sym_COMMA, + [84943] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5774), 1, - anon_sym_COLON_COLON, + ACTIONS(5052), 1, + anon_sym_where, + ACTIONS(5416), 1, + anon_sym_LBRACE, + STATE(505), 1, + sym_enum_variant_list, + STATE(3164), 1, + sym_where_clause, STATE(2791), 2, sym_line_comment, sym_block_comment, - ACTIONS(4777), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [84467] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [84966] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(1301), 1, + ACTIONS(5995), 1, anon_sym_LBRACE, - ACTIONS(3348), 1, - anon_sym_SQUOTE, - STATE(484), 1, - sym_block, - STATE(3717), 1, - sym_label, + ACTIONS(5997), 1, + anon_sym_for, + ACTIONS(5999), 1, + anon_sym_loop, + ACTIONS(6001), 1, + anon_sym_while, STATE(2792), 2, sym_line_comment, sym_block_comment, - [84490] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [84989] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5997), 1, - sym_identifier, + ACTIONS(5052), 1, + anon_sym_where, + ACTIONS(5416), 1, + anon_sym_LBRACE, + STATE(598), 1, + sym_enum_variant_list, + STATE(3224), 1, + sym_where_clause, STATE(2793), 2, sym_line_comment, sym_block_comment, - ACTIONS(5999), 3, - anon_sym_default, - anon_sym_gen, - anon_sym_union, - [84509] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [85012] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6001), 1, - anon_sym_DQUOTE, - ACTIONS(6003), 2, - sym_string_content, - sym_escape_sequence, - STATE(2794), 3, + ACTIONS(1366), 1, + anon_sym_LBRACE, + ACTIONS(3386), 1, + anon_sym_SQUOTE, + STATE(486), 1, + sym_block, + STATE(3747), 1, + sym_label, + STATE(2794), 2, sym_line_comment, sym_block_comment, - aux_sym_string_literal_repeat1, - [84528] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [85035] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5544), 1, - anon_sym_PIPE, - ACTIONS(6006), 1, - anon_sym_RPAREN, - ACTIONS(6008), 1, - anon_sym_COMMA, - STATE(3064), 1, - aux_sym_slice_pattern_repeat1, + ACTIONS(5052), 1, + anon_sym_where, + ACTIONS(5157), 1, + anon_sym_PLUS, + ACTIONS(6003), 1, + anon_sym_SEMI, + STATE(3505), 1, + sym_where_clause, STATE(2795), 2, sym_line_comment, sym_block_comment, - [84551] = 5, - ACTIONS(3), 1, + [85058] = 7, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6010), 1, - aux_sym_token_repetition_pattern_token1, + ACTIONS(3376), 1, + anon_sym_LT2, + ACTIONS(5295), 1, + sym_super, + ACTIONS(5984), 1, + sym_identifier, + STATE(1637), 1, + sym_type_arguments, STATE(2796), 2, sym_line_comment, sym_block_comment, - ACTIONS(6012), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [84570] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [85081] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4574), 1, + ACTIONS(4604), 1, anon_sym_LT2, - ACTIONS(5701), 1, - sym_identifier, - ACTIONS(5778), 1, - sym_super, - STATE(2097), 1, + ACTIONS(5766), 1, + anon_sym_COLON_COLON, + ACTIONS(6005), 1, + anon_sym_for, + STATE(2016), 1, sym_type_arguments, STATE(2797), 2, sym_line_comment, sym_block_comment, - [84593] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [85104] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4574), 1, - anon_sym_LT2, - STATE(3554), 1, - sym_type_arguments, - ACTIONS(5778), 2, - sym_identifier, - sym_super, + ACTIONS(5052), 1, + anon_sym_where, + ACTIONS(5157), 1, + anon_sym_PLUS, + ACTIONS(6007), 1, + anon_sym_SEMI, + STATE(3463), 1, + sym_where_clause, STATE(2798), 2, sym_line_comment, sym_block_comment, - [84614] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [85127] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, - anon_sym_LBRACE, - ACTIONS(3348), 1, - anon_sym_SQUOTE, - STATE(3444), 1, - sym_block, - STATE(3664), 1, - sym_label, + ACTIONS(6009), 1, + anon_sym_in, STATE(2799), 2, sym_line_comment, sym_block_comment, - [84637] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + ACTIONS(6011), 3, + sym_self, + sym_super, + sym_crate, + [85146] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4574), 1, - anon_sym_LT2, - ACTIONS(4851), 1, - anon_sym_for, - ACTIONS(5806), 1, - anon_sym_COLON_COLON, - STATE(1999), 1, - sym_type_arguments, + ACTIONS(6013), 1, + anon_sym_LPAREN, + ACTIONS(6015), 1, + anon_sym_LBRACK, + ACTIONS(6017), 1, + anon_sym_LBRACE, + STATE(2024), 1, + sym_delim_token_tree, STATE(2800), 2, sym_line_comment, sym_block_comment, - [84660] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [85169] = 7, + ACTIONS(19), 1, + anon_sym_LBRACE, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4989), 1, - anon_sym_where, - ACTIONS(5385), 1, - anon_sym_LBRACE, - STATE(645), 1, - sym_enum_variant_list, - STATE(3341), 1, - sym_where_clause, + ACTIONS(3386), 1, + anon_sym_SQUOTE, + STATE(400), 1, + sym_block, + STATE(3582), 1, + sym_label, STATE(2801), 2, sym_line_comment, sym_block_comment, - [84683] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [85192] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6014), 1, - anon_sym_COLON, + ACTIONS(4618), 1, + anon_sym_DOT_DOT, + ACTIONS(5339), 1, + anon_sym_COLON_COLON, + ACTIONS(4620), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, STATE(2802), 2, sym_line_comment, sym_block_comment, - ACTIONS(4879), 3, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_COMMA, - [84702] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [85213] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(1399), 1, + ACTIONS(5586), 1, + anon_sym_PIPE, + ACTIONS(6019), 1, anon_sym_RPAREN, - ACTIONS(5082), 1, - anon_sym_PLUS, - ACTIONS(5677), 1, + ACTIONS(6021), 1, anon_sym_COMMA, - STATE(2927), 1, - aux_sym_parameters_repeat1, + STATE(2860), 1, + aux_sym_tuple_pattern_repeat1, STATE(2803), 2, sym_line_comment, sym_block_comment, - [84725] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [85236] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6016), 1, - anon_sym_DQUOTE, - STATE(2794), 1, - aux_sym_string_literal_repeat1, - ACTIONS(5707), 2, - sym_string_content, - sym_escape_sequence, + ACTIONS(1366), 1, + anon_sym_LBRACE, + ACTIONS(3386), 1, + anon_sym_SQUOTE, + STATE(490), 1, + sym_block, + STATE(3747), 1, + sym_label, STATE(2804), 2, sym_line_comment, sym_block_comment, - [84746] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [85259] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5969), 1, - anon_sym_LPAREN, - ACTIONS(5971), 1, - anon_sym_LBRACK, - ACTIONS(5973), 1, + ACTIONS(6023), 1, anon_sym_LBRACE, - STATE(2013), 1, - sym_delim_token_tree, + ACTIONS(6025), 1, + anon_sym_for, + ACTIONS(6027), 1, + anon_sym_loop, + ACTIONS(6029), 1, + anon_sym_while, STATE(2805), 2, sym_line_comment, sym_block_comment, - [84769] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [85282] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4084), 1, - anon_sym_LT2, - ACTIONS(6018), 1, - sym_identifier, - ACTIONS(6020), 1, - sym_super, - STATE(1597), 1, - sym_type_arguments, + ACTIONS(348), 1, + anon_sym_LBRACE, + ACTIONS(3386), 1, + anon_sym_SQUOTE, + STATE(3693), 1, + sym_label, + STATE(3717), 1, + sym_block, STATE(2806), 2, sym_line_comment, sym_block_comment, - [84792] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [85305] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4084), 1, - anon_sym_LT2, - ACTIONS(6018), 1, - sym_identifier, - ACTIONS(6020), 1, - sym_super, - STATE(1592), 1, - sym_type_arguments, + ACTIONS(348), 1, + anon_sym_LBRACE, + ACTIONS(3386), 1, + anon_sym_SQUOTE, + STATE(3693), 1, + sym_label, + STATE(3740), 1, + sym_block, STATE(2807), 2, sym_line_comment, sym_block_comment, - [84815] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [85328] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4574), 1, - anon_sym_LT2, - ACTIONS(5806), 1, - anon_sym_COLON_COLON, - ACTIONS(6022), 1, - anon_sym_for, - STATE(1999), 1, - sym_type_arguments, + ACTIONS(5586), 1, + anon_sym_PIPE, + ACTIONS(6031), 1, + anon_sym_RBRACK, + ACTIONS(6033), 1, + anon_sym_COMMA, + STATE(2861), 1, + aux_sym_slice_pattern_repeat1, STATE(2808), 2, sym_line_comment, sym_block_comment, - [84838] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [85351] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4574), 1, - anon_sym_LT2, - ACTIONS(5806), 1, - anon_sym_COLON_COLON, - ACTIONS(6024), 1, - anon_sym_for, - STATE(1999), 1, - sym_type_arguments, + ACTIONS(1366), 1, + anon_sym_LBRACE, + ACTIONS(3386), 1, + anon_sym_SQUOTE, + STATE(462), 1, + sym_block, + STATE(3747), 1, + sym_label, STATE(2809), 2, sym_line_comment, sym_block_comment, - [84861] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [85374] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4989), 1, - anon_sym_where, - ACTIONS(4993), 1, - anon_sym_LBRACE, - STATE(544), 1, - sym_declaration_list, - STATE(3380), 1, - sym_where_clause, + ACTIONS(5157), 1, + anon_sym_PLUS, + ACTIONS(6035), 1, + anon_sym_RPAREN, + ACTIONS(6037), 1, + anon_sym_COMMA, + STATE(3098), 1, + aux_sym_ordered_field_declaration_list_repeat1, STATE(2810), 2, sym_line_comment, sym_block_comment, - [84884] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [85397] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4989), 1, - anon_sym_where, - ACTIONS(4993), 1, + ACTIONS(5927), 1, + anon_sym_LPAREN, + ACTIONS(5929), 1, + anon_sym_LBRACK, + ACTIONS(5931), 1, anon_sym_LBRACE, - STATE(763), 1, - sym_declaration_list, - STATE(3229), 1, - sym_where_clause, + STATE(396), 1, + sym_delim_token_tree, STATE(2811), 2, sym_line_comment, sym_block_comment, - [84907] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [85420] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5917), 1, - sym_super, - ACTIONS(6026), 1, + ACTIONS(6039), 1, sym_identifier, - ACTIONS(6028), 1, - anon_sym_LT2, - STATE(2501), 1, - sym_type_arguments, STATE(2812), 2, sym_line_comment, sym_block_comment, - [84930] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + ACTIONS(6041), 3, + anon_sym_default, + anon_sym_gen, + anon_sym_union, + [85439] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4574), 1, - anon_sym_LT2, - ACTIONS(5806), 1, - anon_sym_COLON_COLON, - ACTIONS(6030), 1, - anon_sym_for, - STATE(1999), 1, - sym_type_arguments, + ACTIONS(1366), 1, + anon_sym_LBRACE, + ACTIONS(3386), 1, + anon_sym_SQUOTE, + STATE(472), 1, + sym_block, + STATE(3747), 1, + sym_label, STATE(2813), 2, sym_line_comment, sym_block_comment, - [84953] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [85462] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5082), 1, - anon_sym_PLUS, - ACTIONS(6032), 1, - anon_sym_RPAREN, - ACTIONS(6034), 1, - anon_sym_COMMA, - STATE(2875), 1, - aux_sym_ordered_field_declaration_list_repeat1, + ACTIONS(4604), 1, + anon_sym_LT2, + ACTIONS(5776), 1, + sym_super, + ACTIONS(6043), 1, + sym_identifier, + STATE(2113), 1, + sym_type_arguments, STATE(2814), 2, sym_line_comment, sym_block_comment, - [84976] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [85485] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5917), 1, + ACTIONS(3376), 1, + anon_sym_LT2, + ACTIONS(5295), 1, sym_super, - ACTIONS(6026), 1, + ACTIONS(6045), 1, sym_identifier, - ACTIONS(6028), 1, - anon_sym_LT2, - STATE(2508), 1, + STATE(1422), 1, sym_type_arguments, STATE(2815), 2, sym_line_comment, sym_block_comment, - [84999] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [85508] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5082), 1, + ACTIONS(5157), 1, anon_sym_PLUS, - ACTIONS(6036), 1, - anon_sym_RPAREN, - ACTIONS(6038), 1, - anon_sym_COMMA, - STATE(3132), 1, - aux_sym_tuple_type_repeat1, STATE(2816), 2, sym_line_comment, sym_block_comment, - [85022] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(5082), 1, - anon_sym_PLUS, - ACTIONS(6040), 1, + ACTIONS(6047), 3, anon_sym_RPAREN, - ACTIONS(6042), 1, + anon_sym_PIPE, anon_sym_COMMA, - STATE(3034), 1, - aux_sym_tuple_type_repeat1, + [85527] = 7, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(4604), 1, + anon_sym_LT2, + ACTIONS(5776), 1, + sym_super, + ACTIONS(6043), 1, + sym_identifier, + STATE(2118), 1, + sym_type_arguments, STATE(2817), 2, sym_line_comment, sym_block_comment, - [85045] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [85550] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4574), 1, - anon_sym_LT2, - STATE(3554), 1, - sym_type_arguments, - ACTIONS(5296), 2, - sym_identifier, - sym_super, + ACTIONS(6049), 1, + anon_sym_DQUOTE, + STATE(2770), 1, + aux_sym_string_literal_repeat1, + ACTIONS(5799), 2, + sym_string_content, + sym_escape_sequence, STATE(2818), 2, sym_line_comment, sym_block_comment, - [85066] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [85571] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4574), 1, + ACTIONS(4604), 1, anon_sym_LT2, - ACTIONS(5701), 1, - sym_identifier, - ACTIONS(5778), 1, - sym_super, - STATE(2094), 1, + ACTIONS(4906), 1, + anon_sym_for, + ACTIONS(5766), 1, + anon_sym_COLON_COLON, + STATE(2016), 1, sym_type_arguments, STATE(2819), 2, sym_line_comment, sym_block_comment, - [85089] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [85594] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, - anon_sym_LBRACE, - ACTIONS(3348), 1, - anon_sym_SQUOTE, - STATE(3584), 1, - sym_block, - STATE(3664), 1, - sym_label, + ACTIONS(6051), 1, + anon_sym_DQUOTE, + STATE(2783), 1, + aux_sym_string_literal_repeat1, + ACTIONS(5799), 2, + sym_string_content, + sym_escape_sequence, STATE(2820), 2, sym_line_comment, sym_block_comment, - [85112] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [85615] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, + ACTIONS(6013), 1, + anon_sym_LPAREN, + ACTIONS(6015), 1, + anon_sym_LBRACK, + ACTIONS(6017), 1, anon_sym_LBRACE, - ACTIONS(3348), 1, - anon_sym_SQUOTE, - STATE(1444), 1, - sym_block, - STATE(3664), 1, - sym_label, + STATE(2047), 1, + sym_delim_token_tree, STATE(2821), 2, sym_line_comment, sym_block_comment, - [85135] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [85638] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, - anon_sym_LBRACE, - ACTIONS(3348), 1, - anon_sym_SQUOTE, - STATE(3646), 1, - sym_block, - STATE(3664), 1, - sym_label, + ACTIONS(5157), 1, + anon_sym_PLUS, + ACTIONS(6053), 1, + anon_sym_RPAREN, + ACTIONS(6055), 1, + anon_sym_COMMA, + STATE(2866), 1, + aux_sym_tuple_type_repeat1, STATE(2822), 2, sym_line_comment, sym_block_comment, - [85158] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [85661] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6044), 1, - anon_sym_LPAREN, - ACTIONS(6046), 1, - anon_sym_LBRACK, - ACTIONS(6048), 1, - anon_sym_LBRACE, + ACTIONS(4608), 2, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(6057), 2, + anon_sym_RPAREN, + anon_sym_COMMA, STATE(2823), 2, sym_line_comment, sym_block_comment, - [85178] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [85680] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6050), 1, - anon_sym_RBRACE, - ACTIONS(6052), 1, - anon_sym_COMMA, - STATE(2865), 1, - aux_sym_field_initializer_list_repeat1, + ACTIONS(4122), 1, + anon_sym_LT2, + ACTIONS(6059), 1, + sym_identifier, + ACTIONS(6061), 1, + sym_super, + STATE(1608), 1, + sym_type_arguments, STATE(2824), 2, sym_line_comment, sym_block_comment, - [85198] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [85703] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4971), 1, + ACTIONS(348), 1, anon_sym_LBRACE, - ACTIONS(6054), 1, - anon_sym_SEMI, - STATE(1168), 1, - sym_declaration_list, + ACTIONS(3386), 1, + anon_sym_SQUOTE, + STATE(3576), 1, + sym_block, + STATE(3693), 1, + sym_label, STATE(2825), 2, sym_line_comment, sym_block_comment, - [85218] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [85726] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4993), 1, - anon_sym_LBRACE, - ACTIONS(6056), 1, - anon_sym_SEMI, - STATE(556), 1, - sym_declaration_list, + ACTIONS(4122), 1, + anon_sym_LT2, + ACTIONS(6059), 1, + sym_identifier, + ACTIONS(6061), 1, + sym_super, + STATE(1607), 1, + sym_type_arguments, STATE(2826), 2, sym_line_comment, sym_block_comment, - [85238] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [85749] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4993), 1, - anon_sym_LBRACE, - ACTIONS(6058), 1, - anon_sym_SEMI, - STATE(558), 1, - sym_declaration_list, + ACTIONS(4604), 1, + anon_sym_LT2, + ACTIONS(5766), 1, + anon_sym_COLON_COLON, + ACTIONS(6063), 1, + anon_sym_for, + STATE(2016), 1, + sym_type_arguments, STATE(2827), 2, sym_line_comment, sym_block_comment, - [85258] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [85772] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4993), 1, - anon_sym_LBRACE, - ACTIONS(6060), 1, - anon_sym_SEMI, - STATE(669), 1, - sym_declaration_list, + ACTIONS(4604), 1, + anon_sym_LT2, + ACTIONS(5766), 1, + anon_sym_COLON_COLON, + ACTIONS(6065), 1, + anon_sym_for, + STATE(2016), 1, + sym_type_arguments, STATE(2828), 2, sym_line_comment, sym_block_comment, - [85278] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [85795] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4993), 1, - anon_sym_LBRACE, - ACTIONS(6062), 1, + ACTIONS(5157), 1, + anon_sym_PLUS, + ACTIONS(6067), 1, anon_sym_SEMI, - STATE(636), 1, - sym_declaration_list, + ACTIONS(6069), 1, + anon_sym_EQ, + ACTIONS(6071), 1, + anon_sym_else, STATE(2829), 2, sym_line_comment, sym_block_comment, - [85298] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [85818] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, STATE(2830), 2, sym_line_comment, sym_block_comment, - ACTIONS(6064), 3, + ACTIONS(968), 4, anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, anon_sym_RBRACE, - anon_sym_COMMA, - [85314] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [85835] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(943), 1, - anon_sym_RBRACK, - ACTIONS(4246), 1, - anon_sym_COMMA, - STATE(2576), 1, - aux_sym_arguments_repeat1, + ACTIONS(348), 1, + anon_sym_LBRACE, + ACTIONS(3386), 1, + anon_sym_SQUOTE, + STATE(3554), 1, + sym_block, + STATE(3693), 1, + sym_label, STATE(2831), 2, sym_line_comment, sym_block_comment, - [85334] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [85858] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(2708), 1, - anon_sym_RPAREN, - ACTIONS(6066), 1, - anon_sym_COMMA, - STATE(3041), 1, - aux_sym_tuple_pattern_repeat1, + ACTIONS(4604), 1, + anon_sym_LT2, + ACTIONS(5766), 1, + anon_sym_COLON_COLON, + ACTIONS(6073), 1, + anon_sym_for, + STATE(2016), 1, + sym_type_arguments, STATE(2832), 2, sym_line_comment, sym_block_comment, - [85354] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [85881] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4388), 1, - anon_sym_RBRACE, - ACTIONS(6068), 1, - anon_sym_COMMA, - STATE(3084), 1, - aux_sym_use_list_repeat1, + ACTIONS(4604), 1, + anon_sym_LT2, + ACTIONS(5295), 1, + sym_super, + ACTIONS(5795), 1, + sym_identifier, + STATE(3462), 1, + sym_type_arguments, STATE(2833), 2, sym_line_comment, sym_block_comment, - [85374] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [85904] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3092), 1, - anon_sym_RBRACK, - ACTIONS(6070), 1, - anon_sym_COMMA, - STATE(2656), 1, - aux_sym_slice_pattern_repeat1, + ACTIONS(5825), 1, + sym_super, + ACTIONS(6075), 1, + sym_identifier, + ACTIONS(6077), 1, + anon_sym_LT2, + STATE(2524), 1, + sym_type_arguments, STATE(2834), 2, sym_line_comment, sym_block_comment, - [85394] = 6, - ACTIONS(103), 1, + [85927] = 7, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(5825), 1, + sym_super, + ACTIONS(6075), 1, + sym_identifier, + ACTIONS(6077), 1, + anon_sym_LT2, + STATE(2533), 1, + sym_type_arguments, + STATE(2835), 2, + sym_line_comment, + sym_block_comment, + [85950] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5082), 1, + ACTIONS(5157), 1, anon_sym_PLUS, - ACTIONS(6072), 1, - anon_sym_SEMI, - ACTIONS(6074), 1, - anon_sym_EQ, - STATE(2835), 2, + ACTIONS(6079), 1, + anon_sym_RPAREN, + ACTIONS(6081), 1, + anon_sym_COMMA, + STATE(3011), 1, + aux_sym_tuple_type_repeat1, + STATE(2836), 2, sym_line_comment, sym_block_comment, - [85414] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [85973] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4574), 1, + ACTIONS(3376), 1, anon_sym_LT2, - ACTIONS(5055), 1, - anon_sym_for, - STATE(1993), 1, + ACTIONS(5295), 1, + sym_super, + ACTIONS(6045), 1, + sym_identifier, + STATE(1461), 1, sym_type_arguments, - STATE(2836), 2, - sym_line_comment, - sym_block_comment, - [85434] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(6076), 1, - anon_sym_RBRACE, - ACTIONS(6078), 1, - anon_sym_COMMA, - STATE(2887), 1, - aux_sym_struct_pattern_repeat1, STATE(2837), 2, sym_line_comment, sym_block_comment, - [85454] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [85996] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6080), 1, - anon_sym_RBRACE, - ACTIONS(6082), 1, - anon_sym_COMMA, - STATE(2890), 1, - aux_sym_struct_pattern_repeat1, + ACTIONS(4604), 1, + anon_sym_LT2, + ACTIONS(5295), 1, + sym_super, + ACTIONS(5752), 1, + sym_identifier, + STATE(3462), 1, + sym_type_arguments, STATE(2838), 2, sym_line_comment, sym_block_comment, - [85474] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [86019] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, + ACTIONS(4604), 1, + anon_sym_LT2, + ACTIONS(4860), 1, + anon_sym_for, + ACTIONS(5766), 1, + anon_sym_COLON_COLON, + STATE(2016), 1, + sym_type_arguments, STATE(2839), 2, sym_line_comment, sym_block_comment, - ACTIONS(6084), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [85490] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [86042] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3228), 1, - anon_sym_RPAREN, - ACTIONS(6086), 1, - anon_sym_COMMA, - STATE(3075), 1, - aux_sym_tuple_type_repeat1, + ACTIONS(5052), 1, + anon_sym_where, + ACTIONS(5157), 1, + anon_sym_PLUS, + ACTIONS(6083), 1, + anon_sym_SEMI, + STATE(3546), 1, + sym_where_clause, STATE(2840), 2, sym_line_comment, sym_block_comment, - [85510] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [86065] = 7, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, + ACTIONS(5157), 1, + anon_sym_PLUS, + ACTIONS(6085), 1, + anon_sym_RPAREN, + ACTIONS(6087), 1, + anon_sym_COMMA, + STATE(3102), 1, + aux_sym_ordered_field_declaration_list_repeat1, STATE(2841), 2, sym_line_comment, sym_block_comment, - ACTIONS(6088), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [85526] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [86088] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, + ACTIONS(4984), 1, + anon_sym_LBRACE, + ACTIONS(6089), 1, + anon_sym_SEMI, + STATE(1256), 1, + sym_declaration_list, STATE(2842), 2, sym_line_comment, sym_block_comment, - ACTIONS(6090), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [85542] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [86108] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5631), 1, - anon_sym_RPAREN, - ACTIONS(5633), 1, - anon_sym_COMMA, - STATE(2891), 1, - aux_sym_parameters_repeat1, + ACTIONS(5052), 1, + anon_sym_where, + ACTIONS(6091), 1, + anon_sym_SEMI, + STATE(3686), 1, + sym_where_clause, STATE(2843), 2, sym_line_comment, sym_block_comment, - [85562] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [86128] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, + ACTIONS(4788), 1, + anon_sym_COLON, + ACTIONS(4948), 1, + anon_sym_COLON_COLON, + STATE(2508), 1, + sym_trait_bounds, STATE(2844), 2, sym_line_comment, sym_block_comment, - ACTIONS(6092), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [85578] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [86148] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, + ACTIONS(5157), 1, + anon_sym_PLUS, + ACTIONS(6093), 2, + anon_sym_RPAREN, + anon_sym_COMMA, STATE(2845), 2, sym_line_comment, sym_block_comment, - ACTIONS(6094), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [85594] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [86166] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5082), 1, - anon_sym_PLUS, - ACTIONS(6096), 1, - anon_sym_SEMI, - ACTIONS(6098), 1, - anon_sym_EQ, - STATE(2846), 2, + ACTIONS(6093), 1, + anon_sym_RPAREN, + ACTIONS(6095), 1, + anon_sym_COMMA, + STATE(2846), 3, sym_line_comment, sym_block_comment, - [85614] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + aux_sym_tuple_type_repeat1, + [86184] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, + ACTIONS(4984), 1, + anon_sym_LBRACE, + ACTIONS(6098), 1, + anon_sym_SEMI, + STATE(1251), 1, + sym_declaration_list, STATE(2847), 2, sym_line_comment, sym_block_comment, - ACTIONS(6100), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [85630] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [86204] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6102), 1, + ACTIONS(6100), 1, anon_sym_RBRACE, - ACTIONS(6104), 1, + ACTIONS(6102), 1, anon_sym_COMMA, - STATE(2894), 1, - aux_sym_enum_variant_list_repeat2, + STATE(2889), 1, + aux_sym_field_initializer_list_repeat1, STATE(2848), 2, sym_line_comment, sym_block_comment, - [85650] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [86224] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6106), 1, + ACTIONS(5157), 1, + anon_sym_PLUS, + ACTIONS(6104), 2, anon_sym_RBRACE, - ACTIONS(6108), 1, anon_sym_COMMA, - STATE(3098), 1, - aux_sym_enum_variant_list_repeat2, STATE(2849), 2, sym_line_comment, sym_block_comment, - [85670] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [86242] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5015), 1, - anon_sym_RBRACE, - ACTIONS(6110), 1, - anon_sym_COMMA, - STATE(2922), 1, - aux_sym_field_declaration_list_repeat1, STATE(2850), 2, sym_line_comment, sym_block_comment, - [85690] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + ACTIONS(4938), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [86258] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6114), 1, - anon_sym_COLON, - ACTIONS(6112), 2, - anon_sym_RBRACE, - anon_sym_COMMA, STATE(2851), 2, sym_line_comment, sym_block_comment, - [85708] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + ACTIONS(4940), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [86274] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4769), 1, - anon_sym_GT, - ACTIONS(6116), 1, - anon_sym_COMMA, - STATE(3115), 1, - aux_sym_type_parameters_repeat1, STATE(2852), 2, sym_line_comment, sym_block_comment, - [85728] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + ACTIONS(4950), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [86290] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4769), 1, - anon_sym_GT, - ACTIONS(6116), 1, - anon_sym_COMMA, - STATE(2901), 1, - aux_sym_type_parameters_repeat1, STATE(2853), 2, sym_line_comment, sym_block_comment, - [85748] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + ACTIONS(4954), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [86306] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6118), 1, - anon_sym_RBRACE, - ACTIONS(6120), 1, - anon_sym_COMMA, - STATE(2878), 1, - aux_sym_field_initializer_list_repeat1, STATE(2854), 2, sym_line_comment, sym_block_comment, - [85768] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + ACTIONS(4956), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [86322] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4971), 1, - anon_sym_LBRACE, - ACTIONS(6122), 1, - anon_sym_SEMI, - STATE(1190), 1, - sym_declaration_list, STATE(2855), 2, sym_line_comment, sym_block_comment, - [85788] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + ACTIONS(4958), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [86338] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5082), 1, - anon_sym_PLUS, - ACTIONS(6124), 1, - anon_sym_SEMI, - ACTIONS(6126), 1, - anon_sym_RBRACK, STATE(2856), 2, sym_line_comment, sym_block_comment, - [85808] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + ACTIONS(4876), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [86354] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5082), 1, - anon_sym_PLUS, - ACTIONS(6128), 1, - anon_sym_SEMI, - ACTIONS(6130), 1, - anon_sym_EQ, STATE(2857), 2, sym_line_comment, sym_block_comment, - [85828] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + ACTIONS(6106), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [86370] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6132), 1, - anon_sym_RBRACE, - ACTIONS(6134), 1, + ACTIONS(932), 1, + anon_sym_RBRACK, + ACTIONS(4252), 1, anon_sym_COMMA, - STATE(2909), 1, - aux_sym_field_declaration_list_repeat1, + STATE(2608), 1, + aux_sym_arguments_repeat1, STATE(2858), 2, sym_line_comment, sym_block_comment, - [85848] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [86390] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4989), 1, - anon_sym_where, - ACTIONS(6136), 1, - anon_sym_SEMI, - STATE(3675), 1, - sym_where_clause, STATE(2859), 2, sym_line_comment, sym_block_comment, - [85868] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + ACTIONS(4910), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [86406] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6138), 1, - anon_sym_RBRACE, - ACTIONS(6140), 1, + ACTIONS(3058), 1, + anon_sym_RPAREN, + ACTIONS(6108), 1, anon_sym_COMMA, - STATE(2860), 3, + STATE(3117), 1, + aux_sym_tuple_pattern_repeat1, + STATE(2860), 2, sym_line_comment, sym_block_comment, - aux_sym_field_initializer_list_repeat1, - [85886] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [86426] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4989), 1, - anon_sym_where, - ACTIONS(6143), 1, - anon_sym_SEMI, - STATE(3699), 1, - sym_where_clause, + ACTIONS(3142), 1, + anon_sym_RBRACK, + ACTIONS(6110), 1, + anon_sym_COMMA, + STATE(2789), 1, + aux_sym_slice_pattern_repeat1, STATE(2861), 2, sym_line_comment, sym_block_comment, - [85906] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [86446] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4971), 1, - anon_sym_LBRACE, - ACTIONS(6145), 1, - anon_sym_SEMI, - STATE(1211), 1, - sym_declaration_list, + ACTIONS(3072), 1, + anon_sym_SQUOTE, + ACTIONS(5785), 1, + sym_identifier, + STATE(3179), 1, + sym_lifetime, STATE(2862), 2, sym_line_comment, sym_block_comment, - [85926] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [86466] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6149), 1, - anon_sym_COLON, - ACTIONS(6147), 2, - anon_sym_RBRACE, - anon_sym_COMMA, + ACTIONS(5157), 1, + anon_sym_PLUS, + ACTIONS(6112), 1, + anon_sym_SEMI, + ACTIONS(6114), 1, + anon_sym_EQ, STATE(2863), 2, sym_line_comment, sym_block_comment, - [85944] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [86486] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6151), 1, + ACTIONS(6116), 1, anon_sym_RBRACE, - ACTIONS(6153), 1, + ACTIONS(6118), 1, anon_sym_COMMA, - STATE(3054), 1, + STATE(2907), 1, aux_sym_struct_pattern_repeat1, STATE(2864), 2, sym_line_comment, sym_block_comment, - [85964] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [86506] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4905), 1, + ACTIONS(6120), 1, anon_sym_RBRACE, - ACTIONS(6155), 1, + ACTIONS(6122), 1, anon_sym_COMMA, - STATE(2860), 1, - aux_sym_field_initializer_list_repeat1, + STATE(2909), 1, + aux_sym_struct_pattern_repeat1, STATE(2865), 2, sym_line_comment, sym_block_comment, - [85984] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [86526] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6157), 1, + ACTIONS(3254), 1, anon_sym_RPAREN, - ACTIONS(6159), 1, + ACTIONS(6124), 1, anon_sym_COMMA, - STATE(2879), 1, - aux_sym_ordered_field_declaration_list_repeat1, + STATE(2846), 1, + aux_sym_tuple_type_repeat1, STATE(2866), 2, sym_line_comment, sym_block_comment, - [86004] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [86546] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(1641), 1, - anon_sym_GT, - ACTIONS(6161), 1, - anon_sym_COMMA, - STATE(2870), 1, - aux_sym_type_arguments_repeat1, + ACTIONS(4707), 1, + anon_sym_COLON_COLON, + ACTIONS(4788), 1, + anon_sym_COLON, + STATE(2508), 1, + sym_trait_bounds, STATE(2867), 2, sym_line_comment, sym_block_comment, - [86024] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [86566] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4989), 1, - anon_sym_where, - ACTIONS(6163), 1, - anon_sym_SEMI, - STATE(3498), 1, - sym_where_clause, + ACTIONS(5617), 1, + anon_sym_RPAREN, + ACTIONS(5619), 1, + anon_sym_COMMA, + STATE(2912), 1, + aux_sym_parameters_repeat1, STATE(2868), 2, sym_line_comment, sym_block_comment, - [86044] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [86586] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5082), 1, - anon_sym_PLUS, - ACTIONS(6165), 2, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(4928), 1, + anon_sym_LBRACE, + ACTIONS(6126), 1, + anon_sym_SEMI, + STATE(694), 1, + sym_declaration_list, STATE(2869), 2, sym_line_comment, sym_block_comment, - [86062] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [86606] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5538), 1, - anon_sym_GT, - ACTIONS(6167), 1, - anon_sym_COMMA, - STATE(2870), 3, + ACTIONS(5157), 1, + anon_sym_PLUS, + ACTIONS(6128), 1, + anon_sym_SEMI, + ACTIONS(6130), 1, + anon_sym_EQ, + STATE(2870), 2, sym_line_comment, sym_block_comment, - aux_sym_type_arguments_repeat1, - [86080] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [86626] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5082), 1, - anon_sym_PLUS, - ACTIONS(6170), 2, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(4604), 1, + anon_sym_LT2, + ACTIONS(6132), 1, + anon_sym_for, + STATE(2013), 1, + sym_type_arguments, STATE(2871), 2, sym_line_comment, sym_block_comment, - [86098] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [86646] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5387), 1, - anon_sym_GT, - ACTIONS(5389), 1, - anon_sym_COMMA, - STATE(2964), 1, - aux_sym_type_parameters_repeat1, + ACTIONS(6134), 1, + sym_identifier, + ACTIONS(6136), 1, + anon_sym_ref, + ACTIONS(6138), 1, + sym_mutable_specifier, STATE(2872), 2, sym_line_comment, sym_block_comment, - [86118] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [86666] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(949), 1, - anon_sym_RPAREN, - ACTIONS(4250), 1, + ACTIONS(5562), 1, anon_sym_COMMA, - STATE(2576), 1, - aux_sym_arguments_repeat1, + ACTIONS(6140), 1, + anon_sym_PIPE, + STATE(3101), 1, + aux_sym_closure_parameters_repeat1, STATE(2873), 2, sym_line_comment, sym_block_comment, - [86138] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [86686] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5015), 1, + ACTIONS(6142), 1, anon_sym_RBRACE, - ACTIONS(6110), 1, + ACTIONS(6144), 1, anon_sym_COMMA, - STATE(2933), 1, - aux_sym_field_declaration_list_repeat1, + STATE(2917), 1, + aux_sym_enum_variant_list_repeat2, STATE(2874), 2, sym_line_comment, sym_block_comment, - [86158] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [86706] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6172), 1, + ACTIONS(1414), 1, anon_sym_RPAREN, - ACTIONS(6174), 1, + ACTIONS(5625), 1, anon_sym_COMMA, - STATE(2879), 1, - aux_sym_ordered_field_declaration_list_repeat1, + STATE(3097), 1, + aux_sym_parameters_repeat1, STATE(2875), 2, sym_line_comment, sym_block_comment, - [86178] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [86726] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6176), 1, - sym_identifier, - ACTIONS(6178), 1, - anon_sym_ref, - ACTIONS(6180), 1, - sym_mutable_specifier, + ACTIONS(4928), 1, + anon_sym_LBRACE, + ACTIONS(6146), 1, + anon_sym_SEMI, + STATE(696), 1, + sym_declaration_list, STATE(2876), 2, sym_line_comment, sym_block_comment, - [86198] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [86746] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4713), 1, - anon_sym_COLON, - ACTIONS(5007), 1, - anon_sym_COLON_COLON, - STATE(2542), 1, - sym_trait_bounds, + ACTIONS(4796), 1, + anon_sym_GT, + ACTIONS(6148), 1, + anon_sym_COMMA, + STATE(3042), 1, + aux_sym_type_parameters_repeat1, STATE(2877), 2, sym_line_comment, sym_block_comment, - [86218] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [86766] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4907), 1, - anon_sym_RBRACE, - ACTIONS(6182), 1, + ACTIONS(4796), 1, + anon_sym_GT, + ACTIONS(6148), 1, anon_sym_COMMA, - STATE(2860), 1, - aux_sym_field_initializer_list_repeat1, + STATE(2921), 1, + aux_sym_type_parameters_repeat1, STATE(2878), 2, sym_line_comment, sym_block_comment, - [86238] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [86786] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6184), 1, - anon_sym_RPAREN, - ACTIONS(6186), 1, - anon_sym_COMMA, - STATE(2879), 3, + ACTIONS(4984), 1, + anon_sym_LBRACE, + ACTIONS(6150), 1, + anon_sym_SEMI, + STATE(1316), 1, + sym_declaration_list, + STATE(2879), 2, sym_line_comment, sym_block_comment, - aux_sym_ordered_field_declaration_list_repeat1, - [86256] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [86806] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(963), 1, - anon_sym_RBRACK, - ACTIONS(6189), 1, - anon_sym_COMMA, - STATE(2576), 1, - aux_sym_arguments_repeat1, + ACTIONS(5157), 1, + anon_sym_PLUS, + ACTIONS(6152), 1, + anon_sym_SEMI, + ACTIONS(6154), 1, + anon_sym_EQ, STATE(2880), 2, sym_line_comment, sym_block_comment, - [86276] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [86826] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6193), 1, - anon_sym_COLON, - ACTIONS(6191), 2, + ACTIONS(6156), 1, anon_sym_RBRACE, + ACTIONS(6158), 1, anon_sym_COMMA, + STATE(3014), 1, + aux_sym_struct_pattern_repeat1, STATE(2881), 2, sym_line_comment, sym_block_comment, - [86294] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [86846] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6197), 1, - anon_sym_COLON, - ACTIONS(6195), 2, + ACTIONS(6160), 1, anon_sym_RBRACE, + ACTIONS(6162), 1, anon_sym_COMMA, + STATE(2929), 1, + aux_sym_field_declaration_list_repeat1, STATE(2882), 2, sym_line_comment, sym_block_comment, - [86312] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [86866] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(1627), 1, - anon_sym_GT, - ACTIONS(6199), 1, - anon_sym_COMMA, - STATE(2925), 1, - aux_sym_type_arguments_repeat1, + ACTIONS(5052), 1, + anon_sym_where, + ACTIONS(6164), 1, + anon_sym_SEMI, + STATE(3625), 1, + sym_where_clause, STATE(2883), 2, sym_line_comment, sym_block_comment, - [86332] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [86886] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(1627), 1, - anon_sym_GT, - ACTIONS(6199), 1, + ACTIONS(1414), 1, + anon_sym_RPAREN, + ACTIONS(5625), 1, anon_sym_COMMA, - STATE(2870), 1, - aux_sym_type_arguments_repeat1, + STATE(3099), 1, + aux_sym_parameters_repeat1, STATE(2884), 2, sym_line_comment, sym_block_comment, - [86352] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [86906] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3098), 1, - anon_sym_RPAREN, - ACTIONS(6201), 1, - anon_sym_COMMA, - STATE(2656), 1, - aux_sym_slice_pattern_repeat1, + ACTIONS(5052), 1, + anon_sym_where, + ACTIONS(6166), 1, + anon_sym_SEMI, + STATE(3722), 1, + sym_where_clause, STATE(2885), 2, sym_line_comment, sym_block_comment, - [86372] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [86926] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5082), 1, - anon_sym_PLUS, - ACTIONS(6203), 2, - anon_sym_RBRACE, - anon_sym_COMMA, + ACTIONS(4984), 1, + anon_sym_LBRACE, + ACTIONS(6168), 1, + anon_sym_SEMI, + STATE(1355), 1, + sym_declaration_list, STATE(2886), 2, sym_line_comment, sym_block_comment, - [86390] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [86946] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5286), 1, - anon_sym_RBRACE, - ACTIONS(6205), 1, - anon_sym_COMMA, - STATE(2942), 1, - aux_sym_struct_pattern_repeat1, + ACTIONS(4838), 1, + anon_sym_COLON_COLON, + ACTIONS(4964), 1, + anon_sym_BANG, + ACTIONS(6170), 1, + sym_identifier, STATE(2887), 2, sym_line_comment, sym_block_comment, - [86410] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [86966] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3100), 1, - anon_sym_RPAREN, - ACTIONS(6207), 1, + ACTIONS(5470), 1, + anon_sym_GT, + ACTIONS(5472), 1, anon_sym_COMMA, - STATE(2656), 1, - aux_sym_slice_pattern_repeat1, + STATE(2916), 1, + aux_sym_type_parameters_repeat1, STATE(2888), 2, sym_line_comment, sym_block_comment, - [86430] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [86986] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5082), 1, - anon_sym_PLUS, - ACTIONS(6209), 2, + ACTIONS(4930), 1, anon_sym_RBRACE, + ACTIONS(6172), 1, anon_sym_COMMA, + STATE(2946), 1, + aux_sym_field_initializer_list_repeat1, STATE(2889), 2, sym_line_comment, sym_block_comment, - [86448] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [87006] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5300), 1, - anon_sym_RBRACE, - ACTIONS(6211), 1, - anon_sym_COMMA, - STATE(2942), 1, - aux_sym_struct_pattern_repeat1, + ACTIONS(4928), 1, + anon_sym_LBRACE, + ACTIONS(6174), 1, + anon_sym_SEMI, + STATE(703), 1, + sym_declaration_list, STATE(2890), 2, sym_line_comment, sym_block_comment, - [86468] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [87026] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(1399), 1, - anon_sym_RPAREN, - ACTIONS(5677), 1, - anon_sym_COMMA, - STATE(2979), 1, - aux_sym_parameters_repeat1, + ACTIONS(5052), 1, + anon_sym_where, + ACTIONS(6176), 1, + anon_sym_SEMI, + STATE(3483), 1, + sym_where_clause, STATE(2891), 2, sym_line_comment, sym_block_comment, - [86488] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [87046] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5082), 1, - anon_sym_PLUS, - ACTIONS(6213), 1, - anon_sym_SEMI, - ACTIONS(6215), 1, - anon_sym_EQ, + ACTIONS(1004), 1, + anon_sym_RBRACK, + ACTIONS(4234), 1, + anon_sym_COMMA, + STATE(2608), 1, + aux_sym_arguments_repeat1, STATE(2892), 2, sym_line_comment, sym_block_comment, - [86508] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [87066] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(1399), 1, - anon_sym_RPAREN, - ACTIONS(5677), 1, - anon_sym_COMMA, - STATE(2927), 1, - aux_sym_parameters_repeat1, + ACTIONS(4604), 1, + anon_sym_LT2, + ACTIONS(5002), 1, + anon_sym_LBRACE, + STATE(2013), 1, + sym_type_arguments, STATE(2893), 2, sym_line_comment, sym_block_comment, - [86528] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [87086] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4999), 1, - anon_sym_RBRACE, - ACTIONS(6217), 1, + ACTIONS(934), 1, + anon_sym_RPAREN, + ACTIONS(4272), 1, anon_sym_COMMA, - STATE(3039), 1, - aux_sym_enum_variant_list_repeat2, + STATE(2608), 1, + aux_sym_arguments_repeat1, STATE(2894), 2, sym_line_comment, sym_block_comment, - [86548] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [87106] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4999), 1, - anon_sym_RBRACE, - ACTIONS(6217), 1, + ACTIONS(3272), 1, + anon_sym_RPAREN, + ACTIONS(6178), 1, anon_sym_COMMA, - STATE(2931), 1, - aux_sym_enum_variant_list_repeat2, + STATE(2846), 1, + aux_sym_tuple_type_repeat1, STATE(2895), 2, sym_line_comment, sym_block_comment, - [86568] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [87126] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4660), 1, - anon_sym_COLON_COLON, - ACTIONS(4713), 1, - anon_sym_COLON, - STATE(2542), 1, - sym_trait_bounds, + ACTIONS(4928), 1, + anon_sym_LBRACE, + ACTIONS(6180), 1, + anon_sym_SEMI, + STATE(526), 1, + sym_declaration_list, STATE(2896), 2, sym_line_comment, sym_block_comment, - [86588] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [87146] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, + ACTIONS(4928), 1, + anon_sym_LBRACE, + ACTIONS(6182), 1, + anon_sym_SEMI, + STATE(710), 1, + sym_declaration_list, STATE(2897), 2, sym_line_comment, sym_block_comment, - ACTIONS(4861), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [86604] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [87166] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, + ACTIONS(5157), 1, + anon_sym_PLUS, + ACTIONS(6184), 1, + anon_sym_SEMI, + ACTIONS(6186), 1, + anon_sym_EQ, STATE(2898), 2, sym_line_comment, sym_block_comment, - ACTIONS(4867), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [86620] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [87186] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6219), 1, - sym_identifier, - ACTIONS(6221), 1, - anon_sym_ref, - ACTIONS(6223), 1, - sym_mutable_specifier, + ACTIONS(6188), 1, + anon_sym_EQ, + ACTIONS(6190), 2, + anon_sym_GT, + anon_sym_COMMA, STATE(2899), 2, sym_line_comment, sym_block_comment, - [86640] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [87204] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4993), 1, + ACTIONS(4928), 1, anon_sym_LBRACE, - ACTIONS(6225), 1, + ACTIONS(6192), 1, anon_sym_SEMI, - STATE(566), 1, + STATE(612), 1, sym_declaration_list, STATE(2900), 2, sym_line_comment, sym_block_comment, - [86660] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [87224] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4761), 1, + ACTIONS(5949), 1, anon_sym_GT, - ACTIONS(6227), 1, + ACTIONS(6194), 1, anon_sym_COMMA, - STATE(3115), 1, - aux_sym_type_parameters_repeat1, + STATE(3000), 1, + aux_sym_use_bounds_repeat1, STATE(2901), 2, sym_line_comment, sym_block_comment, - [86680] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [87244] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4971), 1, - anon_sym_LBRACE, - ACTIONS(6229), 1, - anon_sym_SEMI, - STATE(1241), 1, - sym_declaration_list, + ACTIONS(944), 1, + anon_sym_RBRACK, + ACTIONS(6196), 1, + anon_sym_COMMA, + STATE(2608), 1, + aux_sym_arguments_repeat1, STATE(2902), 2, sym_line_comment, sym_block_comment, - [86700] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [87264] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4791), 1, - anon_sym_COLON_COLON, - ACTIONS(4961), 1, - anon_sym_BANG, - ACTIONS(6231), 1, - sym_identifier, STATE(2903), 2, sym_line_comment, sym_block_comment, - [86720] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + ACTIONS(5018), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [87280] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4971), 1, - anon_sym_LBRACE, - ACTIONS(6233), 1, - anon_sym_SEMI, - STATE(1247), 1, - sym_declaration_list, + ACTIONS(1642), 1, + anon_sym_GT, + ACTIONS(6198), 1, + anon_sym_COMMA, + STATE(2945), 1, + aux_sym_type_arguments_repeat1, STATE(2904), 2, sym_line_comment, sym_block_comment, - [86740] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [87300] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, + ACTIONS(1642), 1, + anon_sym_GT, + ACTIONS(6198), 1, + anon_sym_COMMA, + STATE(3076), 1, + aux_sym_type_arguments_repeat1, STATE(2905), 2, sym_line_comment, sym_block_comment, - ACTIONS(4881), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [86756] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [87320] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5082), 1, - anon_sym_PLUS, - ACTIONS(6235), 1, - anon_sym_SEMI, - ACTIONS(6237), 1, - anon_sym_EQ, + ACTIONS(3146), 1, + anon_sym_RPAREN, + ACTIONS(6200), 1, + anon_sym_COMMA, + STATE(2789), 1, + aux_sym_slice_pattern_repeat1, STATE(2906), 2, sym_line_comment, sym_block_comment, - [86776] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [87340] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, + ACTIONS(5329), 1, + anon_sym_RBRACE, + ACTIONS(6202), 1, + anon_sym_COMMA, + STATE(3084), 1, + aux_sym_struct_pattern_repeat1, STATE(2907), 2, sym_line_comment, sym_block_comment, - ACTIONS(4883), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [86792] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [87360] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5544), 1, - anon_sym_PIPE, - ACTIONS(6239), 2, - anon_sym_RBRACE, + ACTIONS(3148), 1, + anon_sym_RPAREN, + ACTIONS(6204), 1, anon_sym_COMMA, + STATE(2789), 1, + aux_sym_slice_pattern_repeat1, STATE(2908), 2, sym_line_comment, sym_block_comment, - [86810] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [87380] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5001), 1, + ACTIONS(5331), 1, anon_sym_RBRACE, - ACTIONS(6241), 1, + ACTIONS(6206), 1, anon_sym_COMMA, - STATE(2922), 1, - aux_sym_field_declaration_list_repeat1, + STATE(3084), 1, + aux_sym_struct_pattern_repeat1, STATE(2909), 2, sym_line_comment, sym_block_comment, - [86830] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [87400] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5001), 1, - anon_sym_RBRACE, - ACTIONS(6241), 1, - anon_sym_COMMA, - STATE(2940), 1, - aux_sym_field_declaration_list_repeat1, STATE(2910), 2, sym_line_comment, sym_block_comment, - [86850] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + ACTIONS(6208), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [87416] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4971), 1, - anon_sym_LBRACE, - ACTIONS(6243), 1, - anon_sym_SEMI, - STATE(1259), 1, - sym_declaration_list, + ACTIONS(3060), 1, + anon_sym_RPAREN, + ACTIONS(6210), 1, + anon_sym_COMMA, + STATE(3117), 1, + aux_sym_tuple_pattern_repeat1, STATE(2911), 2, sym_line_comment, sym_block_comment, - [86870] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [87436] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, + ACTIONS(1400), 1, + anon_sym_RPAREN, + ACTIONS(5631), 1, + anon_sym_COMMA, + STATE(3097), 1, + aux_sym_parameters_repeat1, STATE(2912), 2, sym_line_comment, sym_block_comment, - ACTIONS(4911), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [86886] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [87456] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(2913), 2, + ACTIONS(6212), 1, + anon_sym_RBRACE, + ACTIONS(6214), 1, + anon_sym_COMMA, + STATE(2913), 3, sym_line_comment, sym_block_comment, - ACTIONS(4913), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [86902] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + aux_sym_use_list_repeat1, + [87474] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4993), 1, - anon_sym_LBRACE, - ACTIONS(6245), 1, - anon_sym_SEMI, - STATE(568), 1, - sym_declaration_list, STATE(2914), 2, sym_line_comment, sym_block_comment, - [86922] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + ACTIONS(6217), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [87490] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, + ACTIONS(1400), 1, + anon_sym_RPAREN, + ACTIONS(5631), 1, + anon_sym_COMMA, + STATE(2949), 1, + aux_sym_parameters_repeat1, STATE(2915), 2, sym_line_comment, sym_block_comment, - ACTIONS(4921), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [86938] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [87510] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5082), 1, - anon_sym_PLUS, - ACTIONS(6247), 1, - anon_sym_SEMI, - ACTIONS(6249), 1, - anon_sym_EQ, + ACTIONS(4812), 1, + anon_sym_GT, + ACTIONS(6219), 1, + anon_sym_COMMA, + STATE(3042), 1, + aux_sym_type_parameters_repeat1, STATE(2916), 2, sym_line_comment, sym_block_comment, - [86958] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [87530] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4989), 1, - anon_sym_where, - ACTIONS(6251), 1, - anon_sym_SEMI, - STATE(3539), 1, - sym_where_clause, + ACTIONS(5062), 1, + anon_sym_RBRACE, + ACTIONS(6221), 1, + anon_sym_COMMA, + STATE(3113), 1, + aux_sym_enum_variant_list_repeat2, STATE(2917), 2, sym_line_comment, sym_block_comment, - [86978] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [87550] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, + ACTIONS(5062), 1, + anon_sym_RBRACE, + ACTIONS(6221), 1, + anon_sym_COMMA, + STATE(2952), 1, + aux_sym_enum_variant_list_repeat2, STATE(2918), 2, sym_line_comment, sym_block_comment, - ACTIONS(4923), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [86994] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [87570] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, + ACTIONS(4812), 1, + anon_sym_GT, + ACTIONS(6219), 1, + anon_sym_COMMA, + STATE(3046), 1, + aux_sym_type_parameters_repeat1, STATE(2919), 2, sym_line_comment, sym_block_comment, - ACTIONS(4929), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [87010] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [87590] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, + ACTIONS(5399), 1, + anon_sym_PLUS, + ACTIONS(6223), 1, + anon_sym_GT, + ACTIONS(6225), 1, + anon_sym_as, STATE(2920), 2, sym_line_comment, sym_block_comment, - ACTIONS(4935), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [87026] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [87610] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(965), 1, - anon_sym_RPAREN, - ACTIONS(6253), 1, + ACTIONS(4802), 1, + anon_sym_GT, + ACTIONS(6227), 1, anon_sym_COMMA, - STATE(2576), 1, - aux_sym_arguments_repeat1, + STATE(3042), 1, + aux_sym_type_parameters_repeat1, STATE(2921), 2, sym_line_comment, sym_block_comment, - [87046] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [87630] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6255), 1, - anon_sym_RBRACE, - ACTIONS(6257), 1, - anon_sym_COMMA, - STATE(2922), 3, + ACTIONS(4984), 1, + anon_sym_LBRACE, + ACTIONS(6229), 1, + anon_sym_SEMI, + STATE(1183), 1, + sym_declaration_list, + STATE(2922), 2, sym_line_comment, sym_block_comment, - aux_sym_field_declaration_list_repeat1, - [87064] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [87650] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, + ACTIONS(4604), 1, + anon_sym_LT2, + ACTIONS(6231), 1, + anon_sym_for, + STATE(2013), 1, + sym_type_arguments, STATE(2923), 2, sym_line_comment, sym_block_comment, - ACTIONS(4813), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [87080] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [87670] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4989), 1, - anon_sym_where, - ACTIONS(6260), 1, - anon_sym_SEMI, - STATE(3567), 1, - sym_where_clause, + ACTIONS(3072), 1, + anon_sym_SQUOTE, + ACTIONS(6233), 1, + anon_sym_GT, + STATE(3369), 1, + sym_lifetime, STATE(2924), 2, sym_line_comment, sym_block_comment, - [87100] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [87690] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(1643), 1, - anon_sym_GT, - ACTIONS(6262), 1, - anon_sym_COMMA, - STATE(2870), 1, - aux_sym_type_arguments_repeat1, + ACTIONS(4984), 1, + anon_sym_LBRACE, + ACTIONS(6235), 1, + anon_sym_SEMI, + STATE(1190), 1, + sym_declaration_list, STATE(2925), 2, sym_line_comment, sym_block_comment, - [87120] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [87710] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, + ACTIONS(6233), 1, + anon_sym_GT, + ACTIONS(6237), 1, + anon_sym_COMMA, + STATE(3104), 1, + aux_sym_for_lifetimes_repeat1, STATE(2926), 2, sym_line_comment, sym_block_comment, - ACTIONS(4869), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [87136] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [87730] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(1401), 1, - anon_sym_RPAREN, - ACTIONS(6264), 1, - anon_sym_COMMA, - STATE(2979), 1, - aux_sym_parameters_repeat1, + ACTIONS(5157), 1, + anon_sym_PLUS, + ACTIONS(6239), 1, + anon_sym_SEMI, + ACTIONS(6241), 1, + anon_sym_EQ, STATE(2927), 2, sym_line_comment, sym_block_comment, - [87156] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [87750] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6266), 1, - anon_sym_GT, - ACTIONS(6268), 1, - anon_sym_COMMA, - STATE(2946), 1, - aux_sym_use_bounds_repeat1, + ACTIONS(6243), 1, + sym_identifier, + ACTIONS(6245), 1, + anon_sym_ref, + ACTIONS(6247), 1, + sym_mutable_specifier, STATE(2928), 2, sym_line_comment, sym_block_comment, - [87176] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [87770] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6270), 1, - anon_sym_GT, - ACTIONS(6272), 1, + ACTIONS(5064), 1, + anon_sym_RBRACE, + ACTIONS(6249), 1, anon_sym_COMMA, - STATE(2947), 1, - aux_sym_use_bounds_repeat1, + STATE(2934), 1, + aux_sym_field_declaration_list_repeat1, STATE(2929), 2, sym_line_comment, sym_block_comment, - [87196] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [87790] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5550), 1, - anon_sym_COLON, - ACTIONS(6274), 2, - anon_sym_PIPE, + ACTIONS(5064), 1, + anon_sym_RBRACE, + ACTIONS(6249), 1, anon_sym_COMMA, + STATE(2959), 1, + aux_sym_field_declaration_list_repeat1, STATE(2930), 2, sym_line_comment, sym_block_comment, - [87214] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [87810] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5005), 1, - anon_sym_RBRACE, - ACTIONS(6276), 1, - anon_sym_COMMA, - STATE(3039), 1, - aux_sym_enum_variant_list_repeat2, + ACTIONS(4928), 1, + anon_sym_LBRACE, + ACTIONS(6251), 1, + anon_sym_SEMI, + STATE(718), 1, + sym_declaration_list, STATE(2931), 2, sym_line_comment, sym_block_comment, - [87234] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [87830] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4993), 1, + ACTIONS(4984), 1, anon_sym_LBRACE, - ACTIONS(6278), 1, + ACTIONS(6253), 1, anon_sym_SEMI, - STATE(574), 1, + STATE(1219), 1, sym_declaration_list, STATE(2932), 2, sym_line_comment, sym_block_comment, - [87254] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [87850] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5039), 1, - anon_sym_RBRACE, - ACTIONS(6280), 1, - anon_sym_COMMA, - STATE(2922), 1, - aux_sym_field_declaration_list_repeat1, + ACTIONS(4926), 1, + anon_sym_SEMI, + ACTIONS(4928), 1, + anon_sym_LBRACE, + STATE(495), 1, + sym_declaration_list, STATE(2933), 2, sym_line_comment, sym_block_comment, - [87274] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [87870] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4971), 1, - anon_sym_LBRACE, - ACTIONS(6282), 1, - anon_sym_SEMI, - STATE(1291), 1, - sym_declaration_list, - STATE(2934), 2, + ACTIONS(6255), 1, + anon_sym_RBRACE, + ACTIONS(6257), 1, + anon_sym_COMMA, + STATE(2934), 3, sym_line_comment, sym_block_comment, - [87294] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + aux_sym_field_declaration_list_repeat1, + [87888] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4971), 1, - anon_sym_LBRACE, - ACTIONS(6284), 1, - anon_sym_SEMI, - STATE(1293), 1, - sym_declaration_list, + ACTIONS(5953), 1, + anon_sym_GT, + ACTIONS(6260), 1, + anon_sym_COMMA, + STATE(3000), 1, + aux_sym_use_bounds_repeat1, STATE(2935), 2, sym_line_comment, sym_block_comment, - [87314] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [87908] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4993), 1, - anon_sym_LBRACE, - ACTIONS(6286), 1, + ACTIONS(5157), 1, + anon_sym_PLUS, + ACTIONS(6262), 1, anon_sym_SEMI, - STATE(576), 1, - sym_declaration_list, + ACTIONS(6264), 1, + anon_sym_EQ, STATE(2936), 2, sym_line_comment, sym_block_comment, - [87334] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [87928] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4971), 1, - anon_sym_LBRACE, - ACTIONS(6288), 1, + ACTIONS(5052), 1, + anon_sym_where, + ACTIONS(6266), 1, anon_sym_SEMI, - STATE(1299), 1, - sym_declaration_list, + STATE(3578), 1, + sym_where_clause, STATE(2937), 2, sym_line_comment, sym_block_comment, - [87354] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [87948] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4971), 1, - anon_sym_LBRACE, - ACTIONS(6290), 1, - anon_sym_SEMI, - STATE(1301), 1, - sym_declaration_list, + ACTIONS(3120), 1, + anon_sym_RBRACK, + ACTIONS(6268), 1, + anon_sym_COMMA, + STATE(2789), 1, + aux_sym_slice_pattern_repeat1, STATE(2938), 2, sym_line_comment, sym_block_comment, - [87374] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [87968] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5082), 1, - anon_sym_PLUS, - ACTIONS(6292), 1, - anon_sym_SEMI, - ACTIONS(6294), 1, - anon_sym_EQ, STATE(2939), 2, sym_line_comment, sym_block_comment, - [87394] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(5009), 1, + ACTIONS(6270), 3, + anon_sym_SEMI, anon_sym_RBRACE, - ACTIONS(6296), 1, anon_sym_COMMA, - STATE(2922), 1, - aux_sym_field_declaration_list_repeat1, - STATE(2940), 2, - sym_line_comment, - sym_block_comment, - [87414] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [87984] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, + ACTIONS(6272), 1, + anon_sym_RPAREN, ACTIONS(6274), 1, - anon_sym_PIPE, - ACTIONS(6298), 1, anon_sym_COMMA, - STATE(2941), 3, + STATE(2940), 3, sym_line_comment, sym_block_comment, - aux_sym_closure_parameters_repeat1, - [87432] = 5, - ACTIONS(103), 1, + aux_sym_ordered_field_declaration_list_repeat1, + [88002] = 6, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(4928), 1, + anon_sym_LBRACE, + ACTIONS(6277), 1, + anon_sym_SEMI, + STATE(656), 1, + sym_declaration_list, + STATE(2941), 2, + sym_line_comment, + sym_block_comment, + [88022] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6301), 1, - anon_sym_RBRACE, - ACTIONS(6303), 1, + ACTIONS(946), 1, + anon_sym_RPAREN, + ACTIONS(6279), 1, anon_sym_COMMA, - STATE(2942), 3, + STATE(2608), 1, + aux_sym_arguments_repeat1, + STATE(2942), 2, sym_line_comment, sym_block_comment, - aux_sym_struct_pattern_repeat1, - [87450] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [88042] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4993), 1, - anon_sym_LBRACE, - ACTIONS(6306), 1, - anon_sym_SEMI, - STATE(712), 1, - sym_declaration_list, + ACTIONS(5106), 1, + anon_sym_RBRACE, + ACTIONS(6281), 1, + anon_sym_COMMA, + STATE(2934), 1, + aux_sym_field_declaration_list_repeat1, STATE(2943), 2, sym_line_comment, sym_block_comment, - [87470] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [88062] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5082), 1, - anon_sym_PLUS, - ACTIONS(6308), 1, - anon_sym_SEMI, - ACTIONS(6310), 1, - anon_sym_EQ, STATE(2944), 2, sym_line_comment, sym_block_comment, - [87490] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + ACTIONS(6283), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [88078] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4989), 1, - anon_sym_where, - ACTIONS(6312), 1, - anon_sym_EQ, - STATE(3445), 1, - sym_where_clause, + ACTIONS(1638), 1, + anon_sym_GT, + ACTIONS(6285), 1, + anon_sym_COMMA, + STATE(3076), 1, + aux_sym_type_arguments_repeat1, STATE(2945), 2, sym_line_comment, sym_block_comment, - [87510] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [88098] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5841), 1, - anon_sym_GT, - ACTIONS(6314), 1, + ACTIONS(6287), 1, + anon_sym_RBRACE, + ACTIONS(6289), 1, anon_sym_COMMA, - STATE(2977), 1, - aux_sym_use_bounds_repeat1, - STATE(2946), 2, + STATE(2946), 3, sym_line_comment, sym_block_comment, - [87530] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + aux_sym_field_initializer_list_repeat1, + [88116] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5843), 1, - anon_sym_GT, - ACTIONS(6316), 1, - anon_sym_COMMA, - STATE(2977), 1, - aux_sym_use_bounds_repeat1, + ACTIONS(6292), 1, + anon_sym_EQ_GT, + ACTIONS(6294), 1, + anon_sym_PIPE, + ACTIONS(6296), 1, + anon_sym_if, STATE(2947), 2, sym_line_comment, sym_block_comment, - [87550] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [88136] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4971), 1, - anon_sym_LBRACE, - ACTIONS(6318), 1, - anon_sym_SEMI, - STATE(1341), 1, - sym_declaration_list, STATE(2948), 2, sym_line_comment, sym_block_comment, - [87570] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + ACTIONS(1002), 3, + anon_sym_COLON, + anon_sym_GT, + anon_sym_COMMA, + [88152] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4971), 1, - anon_sym_LBRACE, - ACTIONS(6320), 1, - anon_sym_SEMI, - STATE(1343), 1, - sym_declaration_list, + ACTIONS(1406), 1, + anon_sym_RPAREN, + ACTIONS(6298), 1, + anon_sym_COMMA, + STATE(3097), 1, + aux_sym_parameters_repeat1, STATE(2949), 2, sym_line_comment, sym_block_comment, - [87590] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [88172] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5518), 1, - anon_sym_RPAREN, - ACTIONS(5520), 1, + ACTIONS(6300), 1, + anon_sym_GT, + ACTIONS(6302), 1, anon_sym_COMMA, - STATE(3078), 1, - aux_sym_parameters_repeat1, + STATE(2968), 1, + aux_sym_use_bounds_repeat1, STATE(2950), 2, sym_line_comment, sym_block_comment, - [87610] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [88192] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4971), 1, - anon_sym_LBRACE, - ACTIONS(6322), 1, - anon_sym_SEMI, - STATE(1350), 1, - sym_declaration_list, + ACTIONS(6304), 1, + anon_sym_GT, + ACTIONS(6306), 1, + anon_sym_COMMA, + STATE(2969), 1, + aux_sym_use_bounds_repeat1, STATE(2951), 2, sym_line_comment, sym_block_comment, - [87630] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [88212] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4971), 1, - anon_sym_LBRACE, - ACTIONS(6324), 1, - anon_sym_SEMI, - STATE(1352), 1, - sym_declaration_list, + ACTIONS(5080), 1, + anon_sym_RBRACE, + ACTIONS(6308), 1, + anon_sym_COMMA, + STATE(3113), 1, + aux_sym_enum_variant_list_repeat2, STATE(2952), 2, sym_line_comment, sym_block_comment, - [87650] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [88232] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, + ACTIONS(4984), 1, + anon_sym_LBRACE, + ACTIONS(6310), 1, + anon_sym_SEMI, + STATE(1299), 1, + sym_declaration_list, STATE(2953), 2, sym_line_comment, sym_block_comment, - ACTIONS(4879), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [87666] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [88252] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5354), 1, - anon_sym_PLUS, - ACTIONS(6326), 1, - anon_sym_GT, - ACTIONS(6328), 1, - anon_sym_as, + ACTIONS(4984), 1, + anon_sym_LBRACE, + ACTIONS(6312), 1, + anon_sym_SEMI, + STATE(1304), 1, + sym_declaration_list, STATE(2954), 2, sym_line_comment, sym_block_comment, - [87686] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [88272] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4971), 1, + ACTIONS(4984), 1, anon_sym_LBRACE, - ACTIONS(6330), 1, + ACTIONS(6314), 1, anon_sym_SEMI, - STATE(1358), 1, + STATE(1312), 1, sym_declaration_list, STATE(2955), 2, sym_line_comment, sym_block_comment, - [87706] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [88292] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4971), 1, + ACTIONS(4984), 1, anon_sym_LBRACE, - ACTIONS(6332), 1, + ACTIONS(6316), 1, anon_sym_SEMI, - STATE(1360), 1, + STATE(1315), 1, sym_declaration_list, STATE(2956), 2, sym_line_comment, sym_block_comment, - [87726] = 6, - ACTIONS(27), 1, - anon_sym_PIPE, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [88312] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6334), 1, - anon_sym_move, - STATE(218), 1, - sym_closure_parameters, + ACTIONS(5157), 1, + anon_sym_PLUS, + ACTIONS(6318), 1, + anon_sym_SEMI, + ACTIONS(6320), 1, + anon_sym_EQ, STATE(2957), 2, sym_line_comment, sym_block_comment, - [87746] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [88332] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6336), 1, - anon_sym_RBRACE, - ACTIONS(6338), 1, - anon_sym_COMMA, - STATE(3066), 1, - aux_sym_struct_pattern_repeat1, + ACTIONS(6322), 1, + sym_identifier, + ACTIONS(6324), 1, + anon_sym_ref, + ACTIONS(6326), 1, + sym_mutable_specifier, STATE(2958), 2, sym_line_comment, sym_block_comment, - [87766] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [88352] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5082), 1, - anon_sym_PLUS, - ACTIONS(6340), 1, - anon_sym_SEMI, - ACTIONS(6342), 1, - anon_sym_EQ, + ACTIONS(5141), 1, + anon_sym_RBRACE, + ACTIONS(6328), 1, + anon_sym_COMMA, + STATE(2934), 1, + aux_sym_field_declaration_list_repeat1, STATE(2959), 2, sym_line_comment, sym_block_comment, - [87786] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [88372] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6344), 1, - anon_sym_EQ, - ACTIONS(6346), 2, - anon_sym_GT, - anon_sym_COMMA, STATE(2960), 2, sym_line_comment, sym_block_comment, - [87804] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + ACTIONS(4976), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [88388] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4989), 1, - anon_sym_where, - ACTIONS(6348), 1, - anon_sym_SEMI, - STATE(3533), 1, - sym_where_clause, STATE(2961), 2, sym_line_comment, sym_block_comment, - [87824] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + ACTIONS(4980), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [88404] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4971), 1, - anon_sym_LBRACE, - ACTIONS(6350), 1, - anon_sym_SEMI, - STATE(1378), 1, - sym_declaration_list, STATE(2962), 2, sym_line_comment, sym_block_comment, - [87844] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + ACTIONS(4988), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [88420] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4971), 1, - anon_sym_LBRACE, - ACTIONS(6352), 1, - anon_sym_SEMI, - STATE(1380), 1, - sym_declaration_list, STATE(2963), 2, sym_line_comment, sym_block_comment, - [87864] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + ACTIONS(4990), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [88436] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4759), 1, - anon_sym_GT, - ACTIONS(6354), 1, - anon_sym_COMMA, - STATE(3115), 1, - aux_sym_type_parameters_repeat1, STATE(2964), 2, sym_line_comment, sym_block_comment, - [87884] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + ACTIONS(4992), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [88452] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4671), 1, - anon_sym_COLON_COLON, - ACTIONS(5383), 2, - anon_sym_RPAREN, - anon_sym_COMMA, STATE(2965), 2, sym_line_comment, sym_block_comment, - [87902] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + ACTIONS(4994), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [88468] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4759), 1, - anon_sym_GT, - ACTIONS(6354), 1, - anon_sym_COMMA, - STATE(3126), 1, - aux_sym_type_parameters_repeat1, + ACTIONS(5157), 1, + anon_sym_PLUS, + ACTIONS(6330), 1, + anon_sym_SEMI, + ACTIONS(6332), 1, + anon_sym_RBRACK, STATE(2966), 2, sym_line_comment, sym_block_comment, - [87922] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [88488] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, + ACTIONS(5157), 1, + anon_sym_PLUS, + ACTIONS(6334), 1, + anon_sym_SEMI, + ACTIONS(6336), 1, + anon_sym_EQ, STATE(2967), 2, sym_line_comment, sym_block_comment, - ACTIONS(6356), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [87938] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [88508] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4993), 1, - anon_sym_LBRACE, - ACTIONS(6358), 1, - anon_sym_SEMI, - STATE(740), 1, - sym_declaration_list, + ACTIONS(5893), 1, + anon_sym_GT, + ACTIONS(6338), 1, + anon_sym_COMMA, + STATE(3000), 1, + aux_sym_use_bounds_repeat1, STATE(2968), 2, sym_line_comment, sym_block_comment, - [87958] = 6, - ACTIONS(27), 1, - anon_sym_PIPE, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [88528] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6360), 1, - anon_sym_move, - STATE(246), 1, - sym_closure_parameters, + ACTIONS(5899), 1, + anon_sym_GT, + ACTIONS(6340), 1, + anon_sym_COMMA, + STATE(3000), 1, + aux_sym_use_bounds_repeat1, STATE(2969), 2, sym_line_comment, sym_block_comment, - [87978] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [88548] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4574), 1, - anon_sym_LT2, - ACTIONS(6362), 1, - anon_sym_for, - STATE(1993), 1, - sym_type_arguments, + ACTIONS(4984), 1, + anon_sym_LBRACE, + ACTIONS(6342), 1, + anon_sym_SEMI, + STATE(1106), 1, + sym_declaration_list, STATE(2970), 2, sym_line_comment, sym_block_comment, - [87998] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [88568] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5544), 1, - anon_sym_PIPE, - ACTIONS(6364), 2, - anon_sym_RBRACE, - anon_sym_COMMA, + ACTIONS(4984), 1, + anon_sym_LBRACE, + ACTIONS(6344), 1, + anon_sym_SEMI, + STATE(1109), 1, + sym_declaration_list, STATE(2971), 2, sym_line_comment, sym_block_comment, - [88016] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [88588] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(1025), 1, - anon_sym_RPAREN, - ACTIONS(4254), 1, - anon_sym_COMMA, - STATE(2576), 1, - aux_sym_arguments_repeat1, + ACTIONS(4984), 1, + anon_sym_LBRACE, + ACTIONS(6346), 1, + anon_sym_SEMI, + STATE(1120), 1, + sym_declaration_list, STATE(2972), 2, sym_line_comment, sym_block_comment, - [88036] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [88608] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4993), 1, + ACTIONS(4984), 1, anon_sym_LBRACE, - ACTIONS(6366), 1, + ACTIONS(6348), 1, anon_sym_SEMI, - STATE(611), 1, + STATE(1122), 1, sym_declaration_list, STATE(2973), 2, sym_line_comment, sym_block_comment, - [88056] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [88628] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5554), 1, + ACTIONS(5562), 1, anon_sym_COMMA, - ACTIONS(6368), 1, + ACTIONS(6350), 1, anon_sym_PIPE, - STATE(3003), 1, + STATE(2873), 1, aux_sym_closure_parameters_repeat1, STATE(2974), 2, sym_line_comment, sym_block_comment, - [88076] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [88648] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5082), 1, - anon_sym_PLUS, - ACTIONS(5915), 2, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(4984), 1, + anon_sym_LBRACE, + ACTIONS(6352), 1, + anon_sym_SEMI, + STATE(1128), 1, + sym_declaration_list, STATE(2975), 2, sym_line_comment, sym_block_comment, - [88094] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [88668] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, + ACTIONS(4984), 1, + anon_sym_LBRACE, + ACTIONS(6354), 1, + anon_sym_SEMI, + STATE(1130), 1, + sym_declaration_list, STATE(2976), 2, sym_line_comment, sym_block_comment, - ACTIONS(6370), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [88110] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [88688] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6372), 1, - anon_sym_GT, - ACTIONS(6374), 1, - anon_sym_COMMA, - STATE(2977), 3, + ACTIONS(5157), 1, + anon_sym_PLUS, + ACTIONS(6356), 1, + anon_sym_SEMI, + ACTIONS(6358), 1, + anon_sym_EQ, + STATE(2977), 2, sym_line_comment, sym_block_comment, - aux_sym_use_bounds_repeat1, - [88128] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [88708] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, + ACTIONS(5157), 1, + anon_sym_PLUS, + ACTIONS(6360), 1, + anon_sym_SEMI, + ACTIONS(6362), 1, + anon_sym_EQ, STATE(2978), 2, sym_line_comment, sym_block_comment, - ACTIONS(6377), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [88144] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [88728] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5915), 1, - anon_sym_RPAREN, - ACTIONS(6379), 1, - anon_sym_COMMA, - STATE(2979), 3, + STATE(2979), 2, sym_line_comment, sym_block_comment, - aux_sym_parameters_repeat1, - [88162] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + ACTIONS(6364), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [88744] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4574), 1, - anon_sym_LT2, - ACTIONS(6382), 1, - anon_sym_for, - STATE(1993), 1, - sym_type_arguments, + ACTIONS(5157), 1, + anon_sym_PLUS, + ACTIONS(6366), 2, + anon_sym_RPAREN, + anon_sym_COMMA, STATE(2980), 2, sym_line_comment, sym_block_comment, - [88182] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [88762] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, STATE(2981), 2, sym_line_comment, sym_block_comment, - ACTIONS(4937), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [88198] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + ACTIONS(5522), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [88778] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, + ACTIONS(4928), 1, + anon_sym_LBRACE, + ACTIONS(6368), 1, + anon_sym_SEMI, + STATE(647), 1, + sym_declaration_list, STATE(2982), 2, sym_line_comment, sym_block_comment, - ACTIONS(4939), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [88214] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [88798] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5082), 1, - anon_sym_PLUS, - ACTIONS(6384), 1, + ACTIONS(4984), 1, + anon_sym_LBRACE, + ACTIONS(6370), 1, anon_sym_SEMI, - ACTIONS(6386), 1, - anon_sym_RBRACK, + STATE(1148), 1, + sym_declaration_list, STATE(2983), 2, sym_line_comment, sym_block_comment, - [88234] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [88818] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, + ACTIONS(4984), 1, + anon_sym_LBRACE, + ACTIONS(6372), 1, + anon_sym_SEMI, + STATE(1152), 1, + sym_declaration_list, STATE(2984), 2, sym_line_comment, sym_block_comment, - ACTIONS(4945), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [88250] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [88838] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, + ACTIONS(5157), 1, + anon_sym_PLUS, + ACTIONS(6374), 1, + anon_sym_SEMI, + ACTIONS(6376), 1, + anon_sym_EQ, STATE(2985), 2, sym_line_comment, sym_block_comment, - ACTIONS(4947), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [88266] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [88858] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(1377), 1, - anon_sym_RPAREN, - ACTIONS(6388), 1, - anon_sym_COMMA, - STATE(2979), 1, - aux_sym_parameters_repeat1, STATE(2986), 2, sym_line_comment, sym_block_comment, - [88286] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + ACTIONS(6378), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [88874] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3362), 1, - anon_sym_LT2, - ACTIONS(4975), 1, - anon_sym_COLON_COLON, - STATE(1106), 1, - sym_type_arguments, + ACTIONS(6380), 1, + anon_sym_RBRACE, + ACTIONS(6382), 1, + anon_sym_COMMA, + STATE(3124), 1, + aux_sym_field_declaration_list_repeat1, STATE(2987), 2, sym_line_comment, sym_block_comment, - [88306] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [88894] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4574), 1, - anon_sym_LT2, - ACTIONS(4885), 1, - anon_sym_LBRACE, - STATE(1993), 1, - sym_type_arguments, + ACTIONS(6386), 1, + anon_sym_EQ, + ACTIONS(6384), 2, + anon_sym_RBRACE, + anon_sym_COMMA, STATE(2988), 2, sym_line_comment, sym_block_comment, - [88326] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [88912] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3058), 1, - anon_sym_SQUOTE, + ACTIONS(6388), 1, + anon_sym_RBRACE, ACTIONS(6390), 1, - anon_sym_GT, - STATE(3183), 1, - sym_lifetime, + anon_sym_COMMA, + STATE(3045), 1, + aux_sym_use_list_repeat1, STATE(2989), 2, sym_line_comment, sym_block_comment, - [88346] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [88932] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6392), 1, - anon_sym_GT, - ACTIONS(6394), 1, + ACTIONS(5586), 1, + anon_sym_PIPE, + ACTIONS(6392), 2, + anon_sym_RBRACE, anon_sym_COMMA, - STATE(2990), 3, + STATE(2990), 2, sym_line_comment, sym_block_comment, - aux_sym_for_lifetimes_repeat1, - [88364] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [88950] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4989), 1, - anon_sym_where, - ACTIONS(6397), 1, - anon_sym_SEMI, - STATE(3622), 1, - sym_where_clause, + ACTIONS(5038), 1, + anon_sym_RBRACE, + ACTIONS(6394), 1, + anon_sym_COMMA, + STATE(3113), 1, + aux_sym_enum_variant_list_repeat2, STATE(2991), 2, sym_line_comment, sym_block_comment, - [88384] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [88970] = 6, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5082), 1, - anon_sym_PLUS, - ACTIONS(6399), 2, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(6396), 1, + anon_sym_move, + STATE(237), 1, + sym_closure_parameters, STATE(2992), 2, sym_line_comment, sym_block_comment, - [88402] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [88990] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5556), 1, - anon_sym_RPAREN, - ACTIONS(5558), 1, + ACTIONS(5038), 1, + anon_sym_RBRACE, + ACTIONS(6394), 1, anon_sym_COMMA, - STATE(2999), 1, - aux_sym_parameters_repeat1, + STATE(3115), 1, + aux_sym_enum_variant_list_repeat2, STATE(2993), 2, sym_line_comment, sym_block_comment, - [88422] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [89010] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6401), 1, - anon_sym_GT, - ACTIONS(6403), 1, - anon_sym_COMMA, - STATE(3086), 1, - aux_sym_use_bounds_repeat1, + ACTIONS(5052), 1, + anon_sym_where, + ACTIONS(6398), 1, + anon_sym_SEMI, + STATE(3663), 1, + sym_where_clause, STATE(2994), 2, sym_line_comment, sym_block_comment, - [88442] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [89030] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(1623), 1, - anon_sym_GT, - ACTIONS(6405), 1, - anon_sym_COMMA, - STATE(3005), 1, - aux_sym_type_arguments_repeat1, + ACTIONS(5052), 1, + anon_sym_where, + ACTIONS(6400), 1, + anon_sym_SEMI, + STATE(3700), 1, + sym_where_clause, STATE(2995), 2, sym_line_comment, sym_block_comment, - [88462] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [89050] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(1623), 1, - anon_sym_GT, - ACTIONS(6405), 1, - anon_sym_COMMA, - STATE(2870), 1, - aux_sym_type_arguments_repeat1, STATE(2996), 2, sym_line_comment, sym_block_comment, - [88482] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + ACTIONS(4608), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [89066] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6407), 1, - anon_sym_GT, - ACTIONS(6409), 1, + ACTIONS(1010), 1, + anon_sym_RBRACK, + ACTIONS(4220), 1, anon_sym_COMMA, - STATE(3088), 1, - aux_sym_use_bounds_repeat1, + STATE(2608), 1, + aux_sym_arguments_repeat1, STATE(2997), 2, sym_line_comment, sym_block_comment, - [88502] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [89086] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6411), 1, - anon_sym_EQ_GT, - ACTIONS(6413), 1, - anon_sym_PIPE, - ACTIONS(6415), 1, - anon_sym_if, STATE(2998), 2, sym_line_comment, sym_block_comment, - [88522] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + ACTIONS(6402), 3, + sym_string_content, + anon_sym_DQUOTE, + sym_escape_sequence, + [89102] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(1405), 1, + ACTIONS(5576), 1, anon_sym_RPAREN, - ACTIONS(5570), 1, + ACTIONS(5578), 1, anon_sym_COMMA, - STATE(2979), 1, + STATE(2875), 1, aux_sym_parameters_repeat1, STATE(2999), 2, sym_line_comment, sym_block_comment, - [88542] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [89122] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(3000), 2, + ACTIONS(6404), 1, + anon_sym_GT, + ACTIONS(6406), 1, + anon_sym_COMMA, + STATE(3000), 3, sym_line_comment, sym_block_comment, - ACTIONS(4889), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [88558] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + aux_sym_use_bounds_repeat1, + [89140] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(1405), 1, - anon_sym_RPAREN, - ACTIONS(5570), 1, - anon_sym_COMMA, - STATE(3006), 1, - aux_sym_parameters_repeat1, STATE(3001), 2, sym_line_comment, sym_block_comment, - [88578] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + ACTIONS(6409), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [89156] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, STATE(3002), 2, sym_line_comment, sym_block_comment, - ACTIONS(4891), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [88594] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + ACTIONS(6411), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [89172] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5554), 1, - anon_sym_COMMA, - ACTIONS(6417), 1, - anon_sym_PIPE, - STATE(2941), 1, - aux_sym_closure_parameters_repeat1, STATE(3003), 2, sym_line_comment, sym_block_comment, - [88614] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + ACTIONS(4952), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [89188] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4993), 1, - anon_sym_LBRACE, - ACTIONS(6419), 1, - anon_sym_SEMI, - STATE(594), 1, - sym_declaration_list, STATE(3004), 2, sym_line_comment, sym_block_comment, - [88634] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + ACTIONS(4960), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [89204] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(1625), 1, - anon_sym_GT, - ACTIONS(6421), 1, - anon_sym_COMMA, - STATE(2870), 1, - aux_sym_type_arguments_repeat1, + ACTIONS(5157), 1, + anon_sym_PLUS, + ACTIONS(6413), 1, + anon_sym_SEMI, + ACTIONS(6415), 1, + anon_sym_RBRACK, STATE(3005), 2, sym_line_comment, sym_block_comment, - [88654] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [89224] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(1407), 1, - anon_sym_RPAREN, - ACTIONS(6423), 1, - anon_sym_COMMA, - STATE(2979), 1, - aux_sym_parameters_repeat1, + ACTIONS(5052), 1, + anon_sym_where, + ACTIONS(6417), 1, + anon_sym_SEMI, + STATE(3662), 1, + sym_where_clause, STATE(3006), 2, sym_line_comment, sym_block_comment, - [88674] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [89244] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6425), 1, - anon_sym_GT, - ACTIONS(6427), 1, - anon_sym_COMMA, - STATE(3010), 1, - aux_sym_use_bounds_repeat1, + ACTIONS(3376), 1, + anon_sym_LT2, + ACTIONS(4908), 1, + anon_sym_COLON_COLON, + STATE(1383), 1, + sym_type_arguments, STATE(3007), 2, sym_line_comment, sym_block_comment, - [88694] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [89264] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6429), 1, - anon_sym_GT, - ACTIONS(6431), 1, - anon_sym_COMMA, - STATE(3012), 1, - aux_sym_use_bounds_repeat1, + ACTIONS(4928), 1, + anon_sym_LBRACE, + ACTIONS(6419), 1, + anon_sym_SEMI, + STATE(681), 1, + sym_declaration_list, STATE(3008), 2, sym_line_comment, sym_block_comment, - [88714] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [89284] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, + ACTIONS(5052), 1, + anon_sym_where, + ACTIONS(6421), 1, + anon_sym_SEMI, + STATE(3714), 1, + sym_where_clause, STATE(3009), 2, sym_line_comment, sym_block_comment, - ACTIONS(4777), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [88730] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [89304] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5752), 1, + ACTIONS(5157), 1, + anon_sym_PLUS, + ACTIONS(6423), 2, anon_sym_GT, - ACTIONS(6433), 1, anon_sym_COMMA, - STATE(2977), 1, - aux_sym_use_bounds_repeat1, STATE(3010), 2, sym_line_comment, sym_block_comment, - [88750] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [89322] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3140), 1, - anon_sym_PLUS, - ACTIONS(6435), 1, - sym_mutable_specifier, - ACTIONS(6437), 1, - sym_self, + ACTIONS(3268), 1, + anon_sym_RPAREN, + ACTIONS(6425), 1, + anon_sym_COMMA, + STATE(2846), 1, + aux_sym_tuple_type_repeat1, STATE(3011), 2, sym_line_comment, sym_block_comment, - [88770] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [89342] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5754), 1, - anon_sym_GT, - ACTIONS(6439), 1, + ACTIONS(5528), 1, + anon_sym_RPAREN, + ACTIONS(5530), 1, anon_sym_COMMA, - STATE(2977), 1, - aux_sym_use_bounds_repeat1, + STATE(3021), 1, + aux_sym_parameters_repeat1, STATE(3012), 2, sym_line_comment, sym_block_comment, - [88790] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [89362] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4993), 1, - anon_sym_LBRACE, - ACTIONS(6441), 1, - anon_sym_SEMI, - STATE(596), 1, - sym_declaration_list, STATE(3013), 2, sym_line_comment, sym_block_comment, - [88810] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + ACTIONS(4886), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [89378] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, + ACTIONS(5321), 1, + anon_sym_RBRACE, + ACTIONS(6427), 1, + anon_sym_COMMA, + STATE(3084), 1, + aux_sym_struct_pattern_repeat1, STATE(3014), 2, sym_line_comment, sym_block_comment, - ACTIONS(4903), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [88826] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [89398] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, + ACTIONS(4928), 1, + anon_sym_LBRACE, + ACTIONS(6429), 1, + anon_sym_SEMI, + STATE(683), 1, + sym_declaration_list, STATE(3015), 2, sym_line_comment, sym_block_comment, - ACTIONS(5586), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [88842] = 6, - ACTIONS(27), 1, - anon_sym_PIPE, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [89418] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6443), 1, - anon_sym_move, - STATE(216), 1, - sym_closure_parameters, STATE(3016), 2, sym_line_comment, sym_block_comment, - [88862] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + ACTIONS(4986), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [89434] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, + ACTIONS(4604), 1, + anon_sym_LT2, + ACTIONS(4948), 1, + anon_sym_COLON_COLON, + STATE(2011), 1, + sym_type_arguments, STATE(3017), 2, sym_line_comment, sym_block_comment, - ACTIONS(4925), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [88878] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [89454] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, + ACTIONS(1612), 1, + anon_sym_GT, + ACTIONS(6431), 1, + anon_sym_COMMA, + STATE(3029), 1, + aux_sym_type_arguments_repeat1, STATE(3018), 2, sym_line_comment, sym_block_comment, - ACTIONS(4927), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [88894] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [89474] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, + ACTIONS(1612), 1, + anon_sym_GT, + ACTIONS(6431), 1, + anon_sym_COMMA, + STATE(3076), 1, + aux_sym_type_arguments_repeat1, STATE(3019), 2, sym_line_comment, sym_block_comment, - ACTIONS(4941), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [88910] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [89494] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4574), 1, - anon_sym_LT2, - ACTIONS(5007), 1, - anon_sym_COLON_COLON, - STATE(1994), 1, - sym_type_arguments, STATE(3020), 2, sym_line_comment, sym_block_comment, - [88930] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + ACTIONS(4936), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [89510] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, + ACTIONS(1416), 1, + anon_sym_RPAREN, + ACTIONS(5546), 1, + anon_sym_COMMA, + STATE(3097), 1, + aux_sym_parameters_repeat1, STATE(3021), 2, sym_line_comment, sym_block_comment, - ACTIONS(4793), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [88946] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [89530] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4084), 1, - anon_sym_LT2, - ACTIONS(5019), 1, - anon_sym_COLON_COLON, - STATE(1682), 1, - sym_type_arguments, + ACTIONS(6433), 1, + anon_sym_LPAREN, + ACTIONS(6435), 1, + anon_sym_LBRACK, + ACTIONS(6437), 1, + anon_sym_LBRACE, STATE(3022), 2, sym_line_comment, sym_block_comment, - [88966] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [89550] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, STATE(3023), 2, sym_line_comment, sym_block_comment, - ACTIONS(4957), 3, + ACTIONS(4974), 3, anon_sym_EQ_GT, anon_sym_PIPE, anon_sym_if, - [88982] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [89566] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, + ACTIONS(1416), 1, + anon_sym_RPAREN, + ACTIONS(5546), 1, + anon_sym_COMMA, + STATE(3031), 1, + aux_sym_parameters_repeat1, STATE(3024), 2, sym_line_comment, sym_block_comment, - ACTIONS(4865), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [88998] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [89586] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, STATE(3025), 2, sym_line_comment, sym_block_comment, - ACTIONS(4863), 3, + ACTIONS(5008), 3, anon_sym_EQ_GT, anon_sym_PIPE, anon_sym_if, - [89014] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [89602] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(1631), 1, - anon_sym_GT, - ACTIONS(6445), 1, - anon_sym_COMMA, - STATE(3029), 1, - aux_sym_type_arguments_repeat1, STATE(3026), 2, sym_line_comment, sym_block_comment, - [89034] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + ACTIONS(5024), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [89618] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(1631), 1, - anon_sym_GT, - ACTIONS(6445), 1, - anon_sym_COMMA, - STATE(2870), 1, - aux_sym_type_arguments_repeat1, STATE(3027), 2, sym_line_comment, sym_block_comment, - [89054] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + ACTIONS(5028), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [89634] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4993), 1, - anon_sym_LBRACE, - ACTIONS(6447), 1, - anon_sym_SEMI, - STATE(729), 1, - sym_declaration_list, STATE(3028), 2, sym_line_comment, sym_block_comment, - [89074] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + ACTIONS(4962), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [89650] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(1633), 1, + ACTIONS(1628), 1, anon_sym_GT, - ACTIONS(6449), 1, + ACTIONS(6439), 1, anon_sym_COMMA, - STATE(2870), 1, + STATE(3076), 1, aux_sym_type_arguments_repeat1, STATE(3029), 2, sym_line_comment, sym_block_comment, - [89094] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [89670] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5082), 1, - anon_sym_PLUS, - ACTIONS(6451), 1, - anon_sym_SEMI, - ACTIONS(6453), 1, - anon_sym_EQ, STATE(3030), 2, sym_line_comment, sym_block_comment, - [89114] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + ACTIONS(5000), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [89686] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6455), 1, - sym_identifier, - ACTIONS(6457), 1, - anon_sym_await, - ACTIONS(6459), 1, - sym_integer_literal, + ACTIONS(1418), 1, + anon_sym_RPAREN, + ACTIONS(6441), 1, + anon_sym_COMMA, + STATE(3097), 1, + aux_sym_parameters_repeat1, STATE(3031), 2, sym_line_comment, sym_block_comment, - [89134] = 6, - ACTIONS(27), 1, - anon_sym_PIPE, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [89706] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6461), 1, - anon_sym_move, - STATE(230), 1, - sym_closure_parameters, + ACTIONS(6443), 1, + anon_sym_GT, + ACTIONS(6445), 1, + anon_sym_COMMA, + STATE(3035), 1, + aux_sym_use_bounds_repeat1, STATE(3032), 2, sym_line_comment, sym_block_comment, - [89154] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [89726] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4989), 1, - anon_sym_where, - ACTIONS(6463), 1, - anon_sym_SEMI, - STATE(3685), 1, - sym_where_clause, + ACTIONS(6447), 1, + anon_sym_GT, + ACTIONS(6449), 1, + anon_sym_COMMA, + STATE(3036), 1, + aux_sym_use_bounds_repeat1, STATE(3033), 2, sym_line_comment, sym_block_comment, - [89174] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [89746] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3258), 1, + ACTIONS(998), 1, anon_sym_RPAREN, - ACTIONS(6465), 1, + ACTIONS(6451), 1, anon_sym_COMMA, - STATE(3075), 1, - aux_sym_tuple_type_repeat1, + STATE(2608), 1, + aux_sym_arguments_repeat1, STATE(3034), 2, sym_line_comment, sym_block_comment, - [89194] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [89766] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, + ACTIONS(5787), 1, + anon_sym_GT, + ACTIONS(6453), 1, + anon_sym_COMMA, + STATE(3000), 1, + aux_sym_use_bounds_repeat1, STATE(3035), 2, sym_line_comment, sym_block_comment, - ACTIONS(1481), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [89210] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [89786] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, + ACTIONS(5789), 1, + anon_sym_GT, + ACTIONS(6455), 1, + anon_sym_COMMA, + STATE(3000), 1, + aux_sym_use_bounds_repeat1, STATE(3036), 2, sym_line_comment, sym_block_comment, - ACTIONS(6467), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [89226] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [89806] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(987), 1, - anon_sym_RPAREN, - ACTIONS(6469), 1, - anon_sym_COMMA, - STATE(2576), 1, - aux_sym_arguments_repeat1, STATE(3037), 2, sym_line_comment, sym_block_comment, - [89246] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + ACTIONS(4840), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [89822] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(1007), 1, - anon_sym_RBRACK, - ACTIONS(6471), 1, - anon_sym_COMMA, - STATE(2576), 1, - aux_sym_arguments_repeat1, + ACTIONS(4928), 1, + anon_sym_LBRACE, + ACTIONS(6457), 1, + anon_sym_SEMI, + STATE(772), 1, + sym_declaration_list, STATE(3038), 2, sym_line_comment, sym_block_comment, - [89266] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [89842] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6473), 1, - anon_sym_RBRACE, - ACTIONS(6475), 1, - anon_sym_COMMA, - STATE(3039), 3, + ACTIONS(3558), 1, + anon_sym_LBRACE, + ACTIONS(6459), 1, + anon_sym_COLON_COLON, + STATE(1500), 1, + sym_field_initializer_list, + STATE(3039), 2, sym_line_comment, sym_block_comment, - aux_sym_enum_variant_list_repeat2, - [89284] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [89862] = 6, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5544), 1, - anon_sym_PIPE, - ACTIONS(6478), 2, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(6461), 1, + anon_sym_move, + STATE(223), 1, + sym_closure_parameters, STATE(3040), 2, sym_line_comment, sym_block_comment, - [89302] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [89882] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6478), 1, - anon_sym_RPAREN, - ACTIONS(6480), 1, - anon_sym_COMMA, - STATE(3041), 3, + STATE(3041), 2, sym_line_comment, sym_block_comment, - aux_sym_tuple_pattern_repeat1, - [89320] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + ACTIONS(4946), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [89898] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3058), 1, - anon_sym_SQUOTE, - ACTIONS(5750), 1, - sym_identifier, - STATE(3157), 1, - sym_lifetime, - STATE(3042), 2, + ACTIONS(6463), 1, + anon_sym_GT, + ACTIONS(6465), 1, + anon_sym_COMMA, + STATE(3042), 3, sym_line_comment, sym_block_comment, - [89340] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + aux_sym_type_parameters_repeat1, + [89916] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6485), 1, - anon_sym_EQ, - ACTIONS(6483), 2, - anon_sym_RBRACE, - anon_sym_COMMA, STATE(3043), 2, sym_line_comment, sym_block_comment, - [89358] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(5037), 1, + ACTIONS(6468), 3, + anon_sym_SEMI, anon_sym_RBRACE, - ACTIONS(6487), 1, anon_sym_COMMA, - STATE(3039), 1, - aux_sym_enum_variant_list_repeat2, + [89932] = 4, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, STATE(3044), 2, sym_line_comment, sym_block_comment, - [89378] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + ACTIONS(5010), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [89948] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4993), 1, - anon_sym_LBRACE, - ACTIONS(6489), 1, - anon_sym_SEMI, - STATE(707), 1, - sym_declaration_list, + ACTIONS(4300), 1, + anon_sym_RBRACE, + ACTIONS(6470), 1, + anon_sym_COMMA, + STATE(2913), 1, + aux_sym_use_list_repeat1, STATE(3045), 2, sym_line_comment, sym_block_comment, - [89398] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [89968] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6491), 1, - anon_sym_RBRACE, - ACTIONS(6493), 1, + ACTIONS(4830), 1, + anon_sym_GT, + ACTIONS(6472), 1, anon_sym_COMMA, - STATE(2850), 1, - aux_sym_field_declaration_list_repeat1, + STATE(3042), 1, + aux_sym_type_parameters_repeat1, STATE(3046), 2, sym_line_comment, sym_block_comment, - [89418] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [89988] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(1607), 1, - anon_sym_GT, - ACTIONS(6495), 1, - anon_sym_COMMA, - STATE(2867), 1, - aux_sym_type_arguments_repeat1, STATE(3047), 2, sym_line_comment, sym_block_comment, - [89438] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + ACTIONS(6474), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [90004] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(1607), 1, - anon_sym_GT, - ACTIONS(6495), 1, - anon_sym_COMMA, - STATE(2870), 1, - aux_sym_type_arguments_repeat1, STATE(3048), 2, sym_line_comment, sym_block_comment, - [89458] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + ACTIONS(6476), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [90020] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4989), 1, - anon_sym_where, - ACTIONS(6497), 1, - anon_sym_SEMI, - STATE(3566), 1, - sym_where_clause, + ACTIONS(4122), 1, + anon_sym_LT2, + ACTIONS(4944), 1, + anon_sym_COLON_COLON, + STATE(1641), 1, + sym_type_arguments, STATE(3049), 2, sym_line_comment, sym_block_comment, - [89478] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [90040] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(1001), 1, - anon_sym_RBRACK, - ACTIONS(4234), 1, - anon_sym_COMMA, - STATE(2576), 1, - aux_sym_arguments_repeat1, + ACTIONS(6478), 1, + anon_sym_LPAREN, + ACTIONS(6480), 1, + anon_sym_LBRACK, + ACTIONS(6482), 1, + anon_sym_LBRACE, STATE(3050), 2, sym_line_comment, sym_block_comment, - [89498] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [90060] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3088), 1, - anon_sym_RPAREN, - ACTIONS(6499), 1, - anon_sym_COMMA, - STATE(2656), 1, - aux_sym_slice_pattern_repeat1, STATE(3051), 2, sym_line_comment, sym_block_comment, - [89518] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + ACTIONS(6484), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [90076] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, + ACTIONS(4928), 1, + anon_sym_LBRACE, + ACTIONS(6486), 1, + anon_sym_SEMI, + STATE(778), 1, + sym_declaration_list, STATE(3052), 2, sym_line_comment, sym_block_comment, - ACTIONS(6501), 3, - sym_string_content, - anon_sym_DQUOTE, - sym_escape_sequence, - [89534] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [90096] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6505), 1, - anon_sym_COLON, - ACTIONS(6503), 2, - anon_sym_RBRACE, - anon_sym_COMMA, STATE(3053), 2, sym_line_comment, sym_block_comment, - [89552] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(5252), 1, + ACTIONS(6488), 3, + anon_sym_SEMI, anon_sym_RBRACE, - ACTIONS(6507), 1, anon_sym_COMMA, - STATE(2942), 1, - aux_sym_struct_pattern_repeat1, + [90112] = 4, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, STATE(3054), 2, sym_line_comment, sym_block_comment, - [89572] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + ACTIONS(6490), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [90128] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4989), 1, - anon_sym_where, - ACTIONS(6509), 1, - anon_sym_SEMI, - STATE(3636), 1, - sym_where_clause, STATE(3055), 2, sym_line_comment, sym_block_comment, - [89592] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + ACTIONS(6492), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [90144] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3496), 1, - anon_sym_LBRACE, - ACTIONS(6511), 1, - anon_sym_COLON_COLON, - STATE(1508), 1, - sym_field_initializer_list, STATE(3056), 2, sym_line_comment, sym_block_comment, - [89612] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + ACTIONS(4972), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [90160] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, + ACTIONS(5026), 1, + anon_sym_RBRACE, + ACTIONS(6494), 1, + anon_sym_COMMA, + STATE(2946), 1, + aux_sym_field_initializer_list_repeat1, STATE(3057), 2, sym_line_comment, sym_block_comment, - ACTIONS(6513), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [89628] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [90180] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6515), 1, - anon_sym_LPAREN, - ACTIONS(6517), 1, - anon_sym_LBRACK, - ACTIONS(6519), 1, - anon_sym_LBRACE, + ACTIONS(6498), 1, + anon_sym_COLON, + ACTIONS(6496), 2, + anon_sym_RBRACE, + anon_sym_COMMA, STATE(3058), 2, sym_line_comment, sym_block_comment, - [89648] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [90198] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4574), 1, - anon_sym_LT2, - ACTIONS(6521), 1, - anon_sym_LBRACE, - STATE(1993), 1, - sym_type_arguments, + ACTIONS(1634), 1, + anon_sym_GT, + ACTIONS(6500), 1, + anon_sym_COMMA, + STATE(3061), 1, + aux_sym_type_arguments_repeat1, STATE(3059), 2, sym_line_comment, sym_block_comment, - [89668] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [90218] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6523), 1, - anon_sym_RPAREN, - ACTIONS(6525), 1, + ACTIONS(1634), 1, + anon_sym_GT, + ACTIONS(6500), 1, anon_sym_COMMA, - STATE(2879), 1, - aux_sym_ordered_field_declaration_list_repeat1, + STATE(3076), 1, + aux_sym_type_arguments_repeat1, STATE(3060), 2, sym_line_comment, sym_block_comment, - [89688] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [90238] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(2722), 1, - anon_sym_RPAREN, - ACTIONS(6527), 1, + ACTIONS(1632), 1, + anon_sym_GT, + ACTIONS(6502), 1, anon_sym_COMMA, - STATE(3041), 1, - aux_sym_tuple_pattern_repeat1, + STATE(3076), 1, + aux_sym_type_arguments_repeat1, STATE(3061), 2, sym_line_comment, sym_block_comment, - [89708] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [90258] = 6, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4993), 1, - anon_sym_LBRACE, - ACTIONS(6529), 1, - anon_sym_SEMI, - STATE(503), 1, - sym_declaration_list, + ACTIONS(6504), 1, + anon_sym_move, + STATE(234), 1, + sym_closure_parameters, STATE(3062), 2, sym_line_comment, sym_block_comment, - [89728] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [90278] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4126), 1, - anon_sym_LBRACE, - ACTIONS(6531), 1, - anon_sym_COLON_COLON, - STATE(1842), 1, - sym_field_initializer_list, + ACTIONS(5933), 1, + anon_sym_RPAREN, + ACTIONS(5935), 1, + anon_sym_COMMA, + STATE(2911), 1, + aux_sym_tuple_pattern_repeat1, STATE(3063), 2, sym_line_comment, sym_block_comment, - [89748] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [90298] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3090), 1, - anon_sym_RPAREN, - ACTIONS(6533), 1, - anon_sym_COMMA, - STATE(2656), 1, - aux_sym_slice_pattern_repeat1, + ACTIONS(4928), 1, + anon_sym_LBRACE, + ACTIONS(6506), 1, + anon_sym_SEMI, + STATE(502), 1, + sym_declaration_list, STATE(3064), 2, sym_line_comment, sym_block_comment, - [89768] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [90318] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3094), 1, - anon_sym_RBRACK, - ACTIONS(6535), 1, - anon_sym_COMMA, - STATE(2656), 1, - aux_sym_slice_pattern_repeat1, STATE(3065), 2, sym_line_comment, sym_block_comment, - [89788] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + ACTIONS(1452), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [90334] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5254), 1, - anon_sym_RBRACE, - ACTIONS(6537), 1, - anon_sym_COMMA, - STATE(2942), 1, - aux_sym_struct_pattern_repeat1, STATE(3066), 2, sym_line_comment, sym_block_comment, - [89808] = 6, - ACTIONS(27), 1, - anon_sym_PIPE, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + ACTIONS(6508), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [90350] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6539), 1, - anon_sym_move, - STATE(215), 1, - sym_closure_parameters, + ACTIONS(3166), 1, + anon_sym_PLUS, + ACTIONS(6510), 1, + sym_mutable_specifier, + ACTIONS(6512), 1, + sym_self, STATE(3067), 2, sym_line_comment, sym_block_comment, - [89828] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [90370] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, + ACTIONS(5052), 1, + anon_sym_where, + ACTIONS(6514), 1, + anon_sym_SEMI, + STATE(3564), 1, + sym_where_clause, STATE(3068), 2, sym_line_comment, sym_block_comment, - ACTIONS(6541), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [89844] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [90390] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5955), 1, + ACTIONS(5157), 1, + anon_sym_PLUS, + ACTIONS(6516), 2, anon_sym_RPAREN, - ACTIONS(5957), 1, anon_sym_COMMA, - STATE(3061), 1, - aux_sym_tuple_pattern_repeat1, STATE(3069), 2, sym_line_comment, sym_block_comment, - [89864] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [90408] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, + ACTIONS(5052), 1, + anon_sym_where, + ACTIONS(6518), 1, + anon_sym_EQ, + STATE(3461), 1, + sym_where_clause, STATE(3070), 2, sym_line_comment, sym_block_comment, - ACTIONS(995), 3, - anon_sym_COLON, - anon_sym_GT, - anon_sym_COMMA, - [89880] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [90428] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5544), 1, - anon_sym_PIPE, - ACTIONS(6543), 2, + ACTIONS(6522), 1, + anon_sym_COLON, + ACTIONS(6520), 2, anon_sym_RBRACE, anon_sym_COMMA, STATE(3071), 2, sym_line_comment, sym_block_comment, - [89898] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [90446] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4993), 1, - anon_sym_LBRACE, - ACTIONS(6545), 1, - anon_sym_SEMI, - STATE(505), 1, - sym_declaration_list, + ACTIONS(5157), 1, + anon_sym_PLUS, + ACTIONS(6524), 2, + anon_sym_RBRACE, + anon_sym_COMMA, STATE(3072), 2, sym_line_comment, sym_block_comment, - [89918] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [90464] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5082), 1, - anon_sym_PLUS, - ACTIONS(6547), 2, - anon_sym_RPAREN, + ACTIONS(6528), 1, + anon_sym_COLON, + ACTIONS(6526), 2, + anon_sym_RBRACE, anon_sym_COMMA, STATE(3073), 2, sym_line_comment, sym_block_comment, - [89936] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [90482] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, + ACTIONS(6530), 1, + anon_sym_RBRACE, + ACTIONS(6532), 1, + anon_sym_COMMA, + STATE(3149), 1, + aux_sym_struct_pattern_repeat1, STATE(3074), 2, sym_line_comment, sym_block_comment, - ACTIONS(6549), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [89952] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [90502] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6547), 1, - anon_sym_RPAREN, - ACTIONS(6551), 1, + ACTIONS(1648), 1, + anon_sym_GT, + ACTIONS(6534), 1, anon_sym_COMMA, - STATE(3075), 3, + STATE(3076), 1, + aux_sym_type_arguments_repeat1, + STATE(3075), 2, sym_line_comment, sym_block_comment, - aux_sym_tuple_type_repeat1, - [89970] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [90522] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5082), 1, - anon_sym_PLUS, - ACTIONS(6554), 2, + ACTIONS(5613), 1, anon_sym_GT, + ACTIONS(6536), 1, anon_sym_COMMA, - STATE(3076), 2, + STATE(3076), 3, sym_line_comment, sym_block_comment, - [89988] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + aux_sym_type_arguments_repeat1, + [90540] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4671), 1, - anon_sym_COLON_COLON, - ACTIONS(6556), 2, - anon_sym_RPAREN, + ACTIONS(6539), 1, + anon_sym_RBRACE, + ACTIONS(6541), 1, anon_sym_COMMA, + STATE(3057), 1, + aux_sym_field_initializer_list_repeat1, STATE(3077), 2, sym_line_comment, sym_block_comment, - [90006] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [90560] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(1381), 1, - anon_sym_RPAREN, - ACTIONS(5627), 1, + ACTIONS(5586), 1, + anon_sym_PIPE, + ACTIONS(6543), 2, + anon_sym_RBRACE, anon_sym_COMMA, - STATE(2979), 1, - aux_sym_parameters_repeat1, STATE(3078), 2, sym_line_comment, sym_block_comment, - [90026] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [90578] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5082), 1, - anon_sym_PLUS, - ACTIONS(5855), 2, - anon_sym_RPAREN, + ACTIONS(6545), 1, + anon_sym_GT, + ACTIONS(6547), 1, anon_sym_COMMA, + STATE(2926), 1, + aux_sym_for_lifetimes_repeat1, STATE(3079), 2, sym_line_comment, sym_block_comment, - [90044] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [90598] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5082), 1, - anon_sym_PLUS, - ACTIONS(6558), 1, - anon_sym_SEMI, - ACTIONS(6560), 1, - anon_sym_EQ, + ACTIONS(6551), 1, + anon_sym_COLON, + ACTIONS(6549), 2, + anon_sym_RBRACE, + anon_sym_COMMA, STATE(3080), 2, sym_line_comment, sym_block_comment, - [90064] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [90616] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(1381), 1, + ACTIONS(1034), 1, anon_sym_RPAREN, - ACTIONS(5627), 1, + ACTIONS(4246), 1, anon_sym_COMMA, - STATE(2986), 1, - aux_sym_parameters_repeat1, + STATE(2608), 1, + aux_sym_arguments_repeat1, STATE(3081), 2, sym_line_comment, sym_block_comment, - [90084] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [90636] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3058), 1, - anon_sym_SQUOTE, - ACTIONS(6562), 1, - anon_sym_GT, - STATE(3183), 1, - sym_lifetime, + ACTIONS(5586), 1, + anon_sym_PIPE, + ACTIONS(6553), 2, + anon_sym_RBRACE, + anon_sym_COMMA, STATE(3082), 2, sym_line_comment, sym_block_comment, - [90104] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [90654] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6562), 1, - anon_sym_GT, - ACTIONS(6564), 1, - anon_sym_COMMA, - STATE(2990), 1, - aux_sym_for_lifetimes_repeat1, + ACTIONS(4928), 1, + anon_sym_LBRACE, + ACTIONS(6555), 1, + anon_sym_SEMI, + STATE(752), 1, + sym_declaration_list, STATE(3083), 2, sym_line_comment, sym_block_comment, - [90124] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [90674] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6566), 1, + ACTIONS(6557), 1, anon_sym_RBRACE, - ACTIONS(6568), 1, + ACTIONS(6559), 1, anon_sym_COMMA, STATE(3084), 3, sym_line_comment, sym_block_comment, - aux_sym_use_list_repeat1, - [90142] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + aux_sym_struct_pattern_repeat1, + [90692] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4971), 1, + ACTIONS(3558), 1, anon_sym_LBRACE, - ACTIONS(6571), 1, - anon_sym_SEMI, - STATE(1122), 1, - sym_declaration_list, + ACTIONS(6562), 1, + anon_sym_COLON_COLON, + STATE(1500), 1, + sym_field_initializer_list, STATE(3085), 2, sym_line_comment, sym_block_comment, - [90162] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [90712] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5869), 1, - anon_sym_GT, - ACTIONS(6573), 1, - anon_sym_COMMA, - STATE(2977), 1, - aux_sym_use_bounds_repeat1, + ACTIONS(5157), 1, + anon_sym_PLUS, + ACTIONS(6564), 1, + anon_sym_SEMI, + ACTIONS(6566), 1, + anon_sym_EQ, STATE(3086), 2, sym_line_comment, sym_block_comment, - [90182] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [90732] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6575), 1, - anon_sym_GT, - ACTIONS(6577), 1, - anon_sym_COMMA, - STATE(3083), 1, - aux_sym_for_lifetimes_repeat1, + ACTIONS(6568), 1, + anon_sym_LPAREN, + ACTIONS(6570), 1, + anon_sym_LBRACK, + ACTIONS(6572), 1, + anon_sym_LBRACE, STATE(3087), 2, sym_line_comment, sym_block_comment, - [90202] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [90752] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5879), 1, - anon_sym_GT, - ACTIONS(6579), 1, - anon_sym_COMMA, - STATE(2977), 1, - aux_sym_use_bounds_repeat1, + ACTIONS(6574), 1, + anon_sym_LPAREN, + ACTIONS(6576), 1, + anon_sym_LBRACK, + ACTIONS(6578), 1, + anon_sym_LBRACE, STATE(3088), 2, sym_line_comment, sym_block_comment, - [90222] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [90772] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4993), 1, + ACTIONS(6580), 1, + anon_sym_AMP_AMP, + ACTIONS(4374), 2, anon_sym_LBRACE, - ACTIONS(6581), 1, - anon_sym_SEMI, - STATE(511), 1, - sym_declaration_list, + anon_sym_SQUOTE, STATE(3089), 2, sym_line_comment, sym_block_comment, - [90242] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [90790] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6583), 1, - anon_sym_AMP_AMP, - ACTIONS(4332), 2, + ACTIONS(4604), 1, + anon_sym_LT2, + ACTIONS(6582), 1, anon_sym_LBRACE, - anon_sym_SQUOTE, + STATE(2013), 1, + sym_type_arguments, STATE(3090), 2, sym_line_comment, sym_block_comment, - [90260] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [90810] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, + ACTIONS(4152), 1, + anon_sym_LBRACE, + ACTIONS(6584), 1, + anon_sym_COLON_COLON, + STATE(1847), 1, + sym_field_initializer_list, STATE(3091), 2, sym_line_comment, sym_block_comment, - ACTIONS(4931), 3, - anon_sym_EQ_GT, + [90830] = 6, + ACTIONS(27), 1, anon_sym_PIPE, - anon_sym_if, - [90276] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, + ACTIONS(6586), 1, + anon_sym_move, + STATE(224), 1, + sym_closure_parameters, STATE(3092), 2, sym_line_comment, sym_block_comment, - ACTIONS(4933), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [90292] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [90850] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4993), 1, + ACTIONS(4928), 1, anon_sym_LBRACE, - ACTIONS(6585), 1, + ACTIONS(6588), 1, anon_sym_SEMI, - STATE(513), 1, + STATE(754), 1, sym_declaration_list, STATE(3093), 2, sym_line_comment, sym_block_comment, - [90312] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [90870] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6587), 1, - sym_identifier, - ACTIONS(6589), 1, - anon_sym_await, - ACTIONS(6591), 1, - sym_integer_literal, + ACTIONS(5157), 1, + anon_sym_PLUS, + ACTIONS(6590), 2, + anon_sym_RPAREN, + anon_sym_COMMA, STATE(3094), 2, sym_line_comment, sym_block_comment, - [90332] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [90888] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, + ACTIONS(4728), 1, + anon_sym_COLON_COLON, + ACTIONS(5485), 2, + anon_sym_RPAREN, + anon_sym_COMMA, STATE(3095), 2, sym_line_comment, sym_block_comment, - ACTIONS(4943), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [90348] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [90906] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6595), 1, - anon_sym_EQ, - ACTIONS(6593), 2, - anon_sym_RBRACE, + ACTIONS(5157), 1, + anon_sym_PLUS, + ACTIONS(5937), 2, + anon_sym_RPAREN, anon_sym_COMMA, STATE(3096), 2, sym_line_comment, sym_block_comment, - [90366] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [90924] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(3097), 2, + ACTIONS(5937), 1, + anon_sym_RPAREN, + ACTIONS(6592), 1, + anon_sym_COMMA, + STATE(3097), 3, sym_line_comment, sym_block_comment, - ACTIONS(4949), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [90382] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + aux_sym_parameters_repeat1, + [90942] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5059), 1, - anon_sym_RBRACE, + ACTIONS(6595), 1, + anon_sym_RPAREN, ACTIONS(6597), 1, anon_sym_COMMA, - STATE(3039), 1, - aux_sym_enum_variant_list_repeat2, + STATE(2940), 1, + aux_sym_ordered_field_declaration_list_repeat1, STATE(3098), 2, sym_line_comment, sym_block_comment, - [90402] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [90962] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, + ACTIONS(1362), 1, + anon_sym_RPAREN, + ACTIONS(6599), 1, + anon_sym_COMMA, + STATE(3097), 1, + aux_sym_parameters_repeat1, STATE(3099), 2, sym_line_comment, sym_block_comment, - ACTIONS(4951), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [90418] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [90982] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5059), 1, - anon_sym_RBRACE, - ACTIONS(6597), 1, + ACTIONS(5558), 1, + anon_sym_COLON, + ACTIONS(6601), 2, + anon_sym_PIPE, anon_sym_COMMA, - STATE(3044), 1, - aux_sym_enum_variant_list_repeat2, STATE(3100), 2, sym_line_comment, sym_block_comment, - [90438] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [91000] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(937), 1, - anon_sym_RBRACK, - ACTIONS(4186), 1, + ACTIONS(6601), 1, + anon_sym_PIPE, + ACTIONS(6603), 1, anon_sym_COMMA, - STATE(2576), 1, - aux_sym_arguments_repeat1, - STATE(3101), 2, + STATE(3101), 3, sym_line_comment, sym_block_comment, - [90458] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + aux_sym_closure_parameters_repeat1, + [91018] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, + ACTIONS(6606), 1, + anon_sym_RPAREN, + ACTIONS(6608), 1, + anon_sym_COMMA, + STATE(2940), 1, + aux_sym_ordered_field_declaration_list_repeat1, STATE(3102), 2, sym_line_comment, sym_block_comment, - ACTIONS(4953), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [90474] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [91038] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5786), 1, - anon_sym_RPAREN, - ACTIONS(5788), 1, - anon_sym_COMMA, - STATE(2832), 1, - aux_sym_tuple_pattern_repeat1, + ACTIONS(3072), 1, + anon_sym_SQUOTE, + ACTIONS(6610), 1, + anon_sym_GT, + STATE(3369), 1, + sym_lifetime, STATE(3103), 2, sym_line_comment, sym_block_comment, - [90494] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [91058] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4989), 1, - anon_sym_where, - ACTIONS(6599), 1, - anon_sym_SEMI, - STATE(3543), 1, - sym_where_clause, - STATE(3104), 2, + ACTIONS(6612), 1, + anon_sym_GT, + ACTIONS(6614), 1, + anon_sym_COMMA, + STATE(3104), 3, sym_line_comment, sym_block_comment, - [90514] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + aux_sym_for_lifetimes_repeat1, + [91076] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(913), 1, - anon_sym_RBRACK, - ACTIONS(4178), 1, + ACTIONS(6617), 1, + anon_sym_GT, + ACTIONS(6619), 1, anon_sym_COMMA, - STATE(2576), 1, - aux_sym_arguments_repeat1, + STATE(2901), 1, + aux_sym_use_bounds_repeat1, STATE(3105), 2, sym_line_comment, sym_block_comment, - [90534] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [91096] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3496), 1, - anon_sym_LBRACE, - ACTIONS(6601), 1, - anon_sym_COLON_COLON, - STATE(1508), 1, - sym_field_initializer_list, + ACTIONS(6621), 1, + anon_sym_GT, + ACTIONS(6623), 1, + anon_sym_COMMA, + STATE(2935), 1, + aux_sym_use_bounds_repeat1, STATE(3106), 2, sym_line_comment, sym_block_comment, - [90554] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [91116] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6603), 1, - anon_sym_LPAREN, - ACTIONS(6605), 1, - anon_sym_LBRACK, - ACTIONS(6607), 1, + ACTIONS(4984), 1, anon_sym_LBRACE, + ACTIONS(6625), 1, + anon_sym_SEMI, + STATE(1195), 1, + sym_declaration_list, STATE(3107), 2, sym_line_comment, sym_block_comment, - [90574] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [91136] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, + ACTIONS(4728), 1, + anon_sym_COLON_COLON, + ACTIONS(6627), 2, + anon_sym_RPAREN, + anon_sym_COMMA, STATE(3108), 2, sym_line_comment, sym_block_comment, - ACTIONS(4576), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [90590] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [91154] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6609), 1, - anon_sym_LPAREN, - ACTIONS(6611), 1, - anon_sym_LBRACK, - ACTIONS(6613), 1, - anon_sym_LBRACE, + ACTIONS(6629), 1, + sym_identifier, + ACTIONS(6631), 1, + anon_sym_await, + ACTIONS(6633), 1, + sym_integer_literal, STATE(3109), 2, sym_line_comment, sym_block_comment, - [90610] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [91174] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5082), 1, - anon_sym_PLUS, - ACTIONS(6615), 2, - anon_sym_GT, + ACTIONS(910), 1, + anon_sym_RBRACK, + ACTIONS(6635), 1, anon_sym_COMMA, + STATE(2608), 1, + aux_sym_arguments_repeat1, STATE(3110), 2, sym_line_comment, sym_block_comment, - [90628] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [91194] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5082), 1, - anon_sym_PLUS, - ACTIONS(6617), 1, + ACTIONS(4984), 1, + anon_sym_LBRACE, + ACTIONS(5020), 1, anon_sym_SEMI, - ACTIONS(6619), 1, - anon_sym_RBRACK, + STATE(1207), 1, + sym_declaration_list, STATE(3111), 2, sym_line_comment, sym_block_comment, - [90648] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [91214] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, + ACTIONS(6580), 1, + anon_sym_AMP_AMP, + ACTIONS(6637), 2, + anon_sym_LBRACE, + anon_sym_SQUOTE, STATE(3112), 2, sym_line_comment, sym_block_comment, - ACTIONS(6621), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [90664] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [91232] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4574), 1, - anon_sym_LT2, - ACTIONS(6623), 1, - anon_sym_for, - STATE(1993), 1, - sym_type_arguments, - STATE(3113), 2, + ACTIONS(6639), 1, + anon_sym_RBRACE, + ACTIONS(6641), 1, + anon_sym_COMMA, + STATE(3113), 3, sym_line_comment, sym_block_comment, - [90684] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + aux_sym_enum_variant_list_repeat2, + [91250] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4574), 1, - anon_sym_LT2, - ACTIONS(6625), 1, - anon_sym_COLON_COLON, - STATE(1994), 1, - sym_type_arguments, + ACTIONS(6646), 1, + anon_sym_EQ, + ACTIONS(6644), 2, + anon_sym_RBRACE, + anon_sym_COMMA, STATE(3114), 2, sym_line_comment, sym_block_comment, - [90704] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [91268] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6627), 1, - anon_sym_GT, - ACTIONS(6629), 1, + ACTIONS(5100), 1, + anon_sym_RBRACE, + ACTIONS(6648), 1, anon_sym_COMMA, - STATE(3115), 3, + STATE(3113), 1, + aux_sym_enum_variant_list_repeat2, + STATE(3115), 2, sym_line_comment, sym_block_comment, - aux_sym_type_parameters_repeat1, - [90722] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [91288] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6583), 1, - anon_sym_AMP_AMP, - ACTIONS(6632), 2, - anon_sym_LBRACE, - anon_sym_SQUOTE, + ACTIONS(5586), 1, + anon_sym_PIPE, + ACTIONS(6650), 2, + anon_sym_RPAREN, + anon_sym_COMMA, STATE(3116), 2, sym_line_comment, sym_block_comment, - [90740] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [91306] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4574), 1, - anon_sym_LT2, - ACTIONS(5074), 1, - anon_sym_for, - STATE(1993), 1, - sym_type_arguments, - STATE(3117), 2, + ACTIONS(6650), 1, + anon_sym_RPAREN, + ACTIONS(6652), 1, + anon_sym_COMMA, + STATE(3117), 3, sym_line_comment, sym_block_comment, - [90760] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + aux_sym_tuple_pattern_repeat1, + [91324] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5082), 1, - anon_sym_PLUS, - ACTIONS(6634), 1, + ACTIONS(5052), 1, + anon_sym_where, + ACTIONS(6655), 1, anon_sym_SEMI, - ACTIONS(6636), 1, - anon_sym_EQ, + STATE(3530), 1, + sym_where_clause, STATE(3118), 2, sym_line_comment, sym_block_comment, - [90780] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [91344] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6638), 1, - anon_sym_RBRACE, - ACTIONS(6640), 1, - anon_sym_COMMA, - STATE(2833), 1, - aux_sym_use_list_repeat1, + ACTIONS(6657), 1, + sym_identifier, + ACTIONS(6659), 1, + anon_sym_await, + ACTIONS(6661), 1, + sym_integer_literal, STATE(3119), 2, sym_line_comment, sym_block_comment, - [90800] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [91364] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6642), 1, - anon_sym_GT, - ACTIONS(6644), 1, - anon_sym_COMMA, - STATE(2852), 1, - aux_sym_type_parameters_repeat1, + ACTIONS(4928), 1, + anon_sym_LBRACE, + ACTIONS(6663), 1, + anon_sym_SEMI, + STATE(575), 1, + sym_declaration_list, STATE(3120), 2, sym_line_comment, sym_block_comment, - [90820] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [91384] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4574), 1, - anon_sym_LT2, - ACTIONS(6646), 1, - anon_sym_for, - STATE(1993), 1, - sym_type_arguments, + ACTIONS(4928), 1, + anon_sym_LBRACE, + ACTIONS(6665), 1, + anon_sym_SEMI, + STATE(577), 1, + sym_declaration_list, STATE(3121), 2, sym_line_comment, sym_block_comment, - [90840] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [91404] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4971), 1, - anon_sym_LBRACE, - ACTIONS(6648), 1, - anon_sym_SEMI, - STATE(1147), 1, - sym_declaration_list, + ACTIONS(5157), 1, + anon_sym_PLUS, + ACTIONS(6667), 2, + anon_sym_GT, + anon_sym_COMMA, STATE(3122), 2, sym_line_comment, sym_block_comment, - [90860] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [91422] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4574), 1, - anon_sym_LT2, - ACTIONS(6650), 1, - anon_sym_for, - STATE(1993), 1, - sym_type_arguments, + ACTIONS(5157), 1, + anon_sym_PLUS, + ACTIONS(6669), 1, + anon_sym_SEMI, + ACTIONS(6671), 1, + anon_sym_EQ, STATE(3123), 2, sym_line_comment, sym_block_comment, - [90880] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [91442] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4989), 1, - anon_sym_where, - ACTIONS(6652), 1, - anon_sym_EQ, - STATE(3704), 1, - sym_where_clause, + ACTIONS(5133), 1, + anon_sym_RBRACE, + ACTIONS(6673), 1, + anon_sym_COMMA, + STATE(2934), 1, + aux_sym_field_declaration_list_repeat1, STATE(3124), 2, sym_line_comment, sym_block_comment, - [90900] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [91462] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4574), 1, - anon_sym_LT2, - ACTIONS(6654), 1, - anon_sym_for, - STATE(1993), 1, - sym_type_arguments, + ACTIONS(926), 1, + anon_sym_RBRACK, + ACTIONS(4180), 1, + anon_sym_COMMA, + STATE(2608), 1, + aux_sym_arguments_repeat1, STATE(3125), 2, sym_line_comment, sym_block_comment, - [90920] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [91482] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4771), 1, - anon_sym_GT, - ACTIONS(6656), 1, + ACTIONS(6019), 1, + anon_sym_RPAREN, + ACTIONS(6021), 1, anon_sym_COMMA, - STATE(3115), 1, - aux_sym_type_parameters_repeat1, + STATE(2860), 1, + aux_sym_tuple_pattern_repeat1, STATE(3126), 2, sym_line_comment, sym_block_comment, - [90940] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [91502] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4989), 1, - anon_sym_where, - ACTIONS(6658), 1, - anon_sym_SEMI, - STATE(3525), 1, - sym_where_clause, + ACTIONS(1646), 1, + anon_sym_GT, + ACTIONS(6675), 1, + anon_sym_COMMA, + STATE(3075), 1, + aux_sym_type_arguments_repeat1, STATE(3127), 2, sym_line_comment, sym_block_comment, - [90960] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [91522] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6660), 1, - sym_identifier, - ACTIONS(6662), 1, - anon_sym_ref, - ACTIONS(6664), 1, - sym_mutable_specifier, + ACTIONS(4928), 1, + anon_sym_LBRACE, + ACTIONS(6677), 1, + anon_sym_SEMI, + STATE(584), 1, + sym_declaration_list, STATE(3128), 2, sym_line_comment, sym_block_comment, - [90980] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [91542] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, + ACTIONS(5133), 1, + anon_sym_RBRACE, + ACTIONS(6673), 1, + anon_sym_COMMA, + STATE(2943), 1, + aux_sym_field_declaration_list_repeat1, STATE(3129), 2, sym_line_comment, sym_block_comment, - ACTIONS(6666), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [90996] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [91562] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, + ACTIONS(6679), 1, + anon_sym_RPAREN, + ACTIONS(6681), 1, + anon_sym_COMMA, + STATE(2940), 1, + aux_sym_ordered_field_declaration_list_repeat1, STATE(3130), 2, sym_line_comment, sym_block_comment, - ACTIONS(6668), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [91012] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [91582] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4993), 1, - anon_sym_LBRACE, - ACTIONS(6670), 1, - anon_sym_SEMI, - STATE(699), 1, - sym_declaration_list, + ACTIONS(1646), 1, + anon_sym_GT, + ACTIONS(6675), 1, + anon_sym_COMMA, + STATE(3076), 1, + aux_sym_type_arguments_repeat1, STATE(3131), 2, sym_line_comment, sym_block_comment, - [91032] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [91602] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3264), 1, - anon_sym_RPAREN, - ACTIONS(6672), 1, - anon_sym_COMMA, - STATE(3075), 1, - aux_sym_tuple_type_repeat1, + ACTIONS(4928), 1, + anon_sym_LBRACE, + ACTIONS(6683), 1, + anon_sym_SEMI, + STATE(587), 1, + sym_declaration_list, STATE(3132), 2, sym_line_comment, sym_block_comment, - [91052] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [91622] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6674), 2, - anon_sym_const, - sym_mutable_specifier, + ACTIONS(4604), 1, + anon_sym_LT2, + ACTIONS(5114), 1, + anon_sym_for, + STATE(2013), 1, + sym_type_arguments, STATE(3133), 2, sym_line_comment, sym_block_comment, - [91067] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [91642] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6676), 1, + ACTIONS(5157), 1, + anon_sym_PLUS, + ACTIONS(6685), 1, anon_sym_SEMI, - ACTIONS(6678), 1, - anon_sym_as, + ACTIONS(6687), 1, + anon_sym_RBRACK, STATE(3134), 2, sym_line_comment, sym_block_comment, - [91084] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [91662] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3776), 1, - anon_sym_COLON, - ACTIONS(5354), 1, - anon_sym_PLUS, STATE(3135), 2, sym_line_comment, sym_block_comment, - [91101] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + ACTIONS(4998), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [91678] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6680), 2, - anon_sym_GT, - anon_sym_COMMA, STATE(3136), 2, sym_line_comment, sym_block_comment, - [91116] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + ACTIONS(5022), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [91694] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5043), 1, + ACTIONS(4928), 1, anon_sym_LBRACE, - STATE(759), 1, - sym_field_declaration_list, + ACTIONS(6689), 1, + anon_sym_SEMI, + STATE(674), 1, + sym_declaration_list, STATE(3137), 2, sym_line_comment, sym_block_comment, - [91133] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [91714] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4568), 1, - anon_sym_LPAREN, - STATE(2285), 1, - sym_parameters, + ACTIONS(5157), 1, + anon_sym_PLUS, + ACTIONS(6691), 1, + anon_sym_SEMI, + ACTIONS(6693), 1, + anon_sym_EQ, STATE(3138), 2, sym_line_comment, sym_block_comment, - [91150] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [91734] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5651), 1, - sym_super, - ACTIONS(6682), 1, - sym_identifier, + ACTIONS(4604), 1, + anon_sym_LT2, + ACTIONS(6695), 1, + anon_sym_COLON_COLON, + STATE(2011), 1, + sym_type_arguments, STATE(3139), 2, sym_line_comment, sym_block_comment, - [91167] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [91754] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6684), 1, - anon_sym_SEMI, - ACTIONS(6686), 1, - anon_sym_as, + ACTIONS(6697), 1, + anon_sym_RBRACE, + ACTIONS(6699), 1, + anon_sym_COMMA, + STATE(2991), 1, + aux_sym_enum_variant_list_repeat2, STATE(3140), 2, sym_line_comment, sym_block_comment, - [91184] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [91774] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6688), 1, - sym_identifier, - ACTIONS(6690), 1, - sym_super, + ACTIONS(3132), 1, + anon_sym_RPAREN, + ACTIONS(6701), 1, + anon_sym_COMMA, + STATE(2789), 1, + aux_sym_slice_pattern_repeat1, STATE(3141), 2, sym_line_comment, sym_block_comment, - [91201] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [91794] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4660), 1, - anon_sym_COLON_COLON, - ACTIONS(6382), 1, + ACTIONS(4604), 1, + anon_sym_LT2, + ACTIONS(5137), 1, anon_sym_for, + STATE(2013), 1, + sym_type_arguments, STATE(3142), 2, sym_line_comment, sym_block_comment, - [91218] = 5, + [91814] = 6, ACTIONS(27), 1, anon_sym_PIPE, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(246), 1, + ACTIONS(6703), 1, + anon_sym_move, + STATE(222), 1, sym_closure_parameters, STATE(3143), 2, sym_line_comment, sym_block_comment, - [91235] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [91834] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3058), 1, - anon_sym_SQUOTE, - STATE(3087), 1, - sym_lifetime, + ACTIONS(6707), 1, + anon_sym_COLON, + ACTIONS(6705), 2, + anon_sym_RBRACE, + anon_sym_COMMA, STATE(3144), 2, sym_line_comment, sym_block_comment, - [91252] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [91852] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5651), 1, - sym_super, - ACTIONS(6692), 1, - sym_identifier, + ACTIONS(4604), 1, + anon_sym_LT2, + ACTIONS(6709), 1, + anon_sym_for, + STATE(2013), 1, + sym_type_arguments, STATE(3145), 2, sym_line_comment, sym_block_comment, - [91269] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [91872] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4660), 1, - anon_sym_COLON_COLON, - ACTIONS(6362), 1, - anon_sym_for, + ACTIONS(5157), 1, + anon_sym_PLUS, + ACTIONS(6057), 2, + anon_sym_RPAREN, + anon_sym_COMMA, STATE(3146), 2, sym_line_comment, sym_block_comment, - [91286] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [91890] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5915), 2, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(4604), 1, + anon_sym_LT2, + ACTIONS(6711), 1, + anon_sym_for, + STATE(2013), 1, + sym_type_arguments, STATE(3147), 2, sym_line_comment, sym_block_comment, - [91301] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [91910] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6694), 1, - sym_identifier, - ACTIONS(6696), 1, - sym_super, + ACTIONS(6713), 1, + anon_sym_GT, + ACTIONS(6715), 1, + anon_sym_COMMA, + STATE(2877), 1, + aux_sym_type_parameters_repeat1, STATE(3148), 2, sym_line_comment, sym_block_comment, - [91318] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [91930] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6698), 2, - anon_sym_const, - sym_mutable_specifier, + ACTIONS(5305), 1, + anon_sym_RBRACE, + ACTIONS(6717), 1, + anon_sym_COMMA, + STATE(3084), 1, + aux_sym_struct_pattern_repeat1, STATE(3149), 2, sym_line_comment, sym_block_comment, - [91333] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [91950] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5510), 1, - sym_super, - ACTIONS(6700), 1, - sym_identifier, + ACTIONS(5052), 1, + anon_sym_where, + ACTIONS(6719), 1, + anon_sym_EQ, + STATE(3733), 1, + sym_where_clause, STATE(3150), 2, sym_line_comment, sym_block_comment, - [91350] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [91970] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3354), 1, - anon_sym_LPAREN, - STATE(1178), 1, - sym_parameters, + ACTIONS(4984), 1, + anon_sym_LBRACE, + ACTIONS(6721), 1, + anon_sym_SEMI, + STATE(1232), 1, + sym_declaration_list, STATE(3151), 2, sym_line_comment, sym_block_comment, - [91367] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [91990] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6702), 2, - anon_sym_const, - sym_mutable_specifier, + ACTIONS(4604), 1, + anon_sym_LT2, + ACTIONS(6723), 1, + anon_sym_for, + STATE(2013), 1, + sym_type_arguments, STATE(3152), 2, sym_line_comment, sym_block_comment, - [91382] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [92010] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4078), 1, - anon_sym_LPAREN, - STATE(1654), 1, - sym_parameters, + ACTIONS(6725), 1, + sym_identifier, + ACTIONS(6727), 1, + anon_sym_ref, + ACTIONS(6729), 1, + sym_mutable_specifier, STATE(3153), 2, sym_line_comment, sym_block_comment, - [91399] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [92030] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4993), 1, - anon_sym_LBRACE, - STATE(637), 1, - sym_declaration_list, STATE(3154), 2, sym_line_comment, sym_block_comment, - [91416] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + ACTIONS(4978), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [92046] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5242), 1, - anon_sym_RBRACE, - ACTIONS(6704), 1, - anon_sym_SEMI, + ACTIONS(3134), 1, + anon_sym_RPAREN, + ACTIONS(6731), 1, + anon_sym_COMMA, + STATE(2789), 1, + aux_sym_slice_pattern_repeat1, STATE(3155), 2, sym_line_comment, sym_block_comment, - [91433] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [92066] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6706), 2, - anon_sym_GT, - anon_sym_COMMA, + ACTIONS(6733), 1, + sym_identifier, + ACTIONS(6735), 1, + anon_sym_ref, + ACTIONS(6737), 1, + sym_mutable_specifier, STATE(3156), 2, sym_line_comment, sym_block_comment, - [91448] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [92086] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6372), 2, - anon_sym_GT, - anon_sym_COMMA, + ACTIONS(5052), 1, + anon_sym_where, + ACTIONS(6739), 1, + anon_sym_SEMI, + STATE(3529), 1, + sym_where_clause, STATE(3157), 2, sym_line_comment, sym_block_comment, - [91463] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [92106] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3832), 1, - anon_sym_COLON, - ACTIONS(5354), 1, - anon_sym_PLUS, STATE(3158), 2, sym_line_comment, sym_block_comment, - [91480] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + ACTIONS(4996), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [92122] = 6, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6708), 1, - anon_sym_LPAREN, - ACTIONS(6710), 1, - anon_sym_COLON_COLON, + ACTIONS(4604), 1, + anon_sym_LT2, + ACTIONS(6741), 1, + anon_sym_for, + STATE(2013), 1, + sym_type_arguments, STATE(3159), 2, sym_line_comment, sym_block_comment, - [91497] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [92142] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4993), 1, - anon_sym_LBRACE, - STATE(533), 1, - sym_declaration_list, + ACTIONS(6743), 1, + anon_sym_LPAREN, + ACTIONS(6745), 1, + anon_sym_COLON_COLON, STATE(3160), 2, sym_line_comment, sym_block_comment, - [91514] = 5, - ACTIONS(27), 1, - anon_sym_PIPE, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [92159] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(222), 1, - sym_closure_parameters, + ACTIONS(6747), 1, + anon_sym_SEMI, + ACTIONS(6749), 1, + anon_sym_RBRACE, STATE(3161), 2, sym_line_comment, sym_block_comment, - [91531] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [92176] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3836), 1, - anon_sym_COLON, - ACTIONS(5354), 1, - anon_sym_PLUS, + ACTIONS(5607), 2, + sym_identifier, + sym_super, STATE(3162), 2, sym_line_comment, sym_block_comment, - [91548] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [92191] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6712), 2, - anon_sym_GT, - anon_sym_COMMA, + ACTIONS(5592), 1, + sym_super, + ACTIONS(6751), 1, + sym_identifier, STATE(3163), 2, sym_line_comment, sym_block_comment, - [91563] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [92208] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6018), 1, - sym_identifier, - ACTIONS(6020), 1, - sym_super, + ACTIONS(5416), 1, + anon_sym_LBRACE, + STATE(541), 1, + sym_enum_variant_list, STATE(3164), 2, sym_line_comment, sym_block_comment, - [91580] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [92225] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5917), 2, + ACTIONS(5752), 1, sym_identifier, + ACTIONS(5776), 1, sym_super, STATE(3165), 2, sym_line_comment, sym_block_comment, - [91595] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [92242] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6714), 1, + ACTIONS(6753), 1, sym_identifier, - ACTIONS(6716), 1, + ACTIONS(6755), 1, sym_super, STATE(3166), 2, sym_line_comment, sym_block_comment, - [91612] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [92259] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5385), 1, + ACTIONS(4928), 1, anon_sym_LBRACE, - STATE(644), 1, - sym_enum_variant_list, + STATE(531), 1, + sym_declaration_list, STATE(3167), 2, sym_line_comment, sym_block_comment, - [91629] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [92276] = 5, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6682), 1, - sym_identifier, - ACTIONS(6718), 1, - sym_super, + STATE(237), 1, + sym_closure_parameters, STATE(3168), 2, sym_line_comment, sym_block_comment, - [91646] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [92293] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5043), 1, - anon_sym_LBRACE, - STATE(761), 1, - sym_field_declaration_list, + ACTIONS(6757), 1, + anon_sym_SEMI, + ACTIONS(6759), 1, + anon_sym_EQ, STATE(3169), 2, sym_line_comment, sym_block_comment, - [91663] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [92310] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5296), 1, - sym_super, - ACTIONS(5822), 1, - sym_identifier, + ACTIONS(4928), 1, + anon_sym_LBRACE, + STATE(532), 1, + sym_declaration_list, STATE(3170), 2, sym_line_comment, sym_block_comment, - [91680] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [92327] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6720), 1, + ACTIONS(6761), 1, sym_identifier, - ACTIONS(6722), 1, + ACTIONS(6763), 1, sym_super, STATE(3171), 2, sym_line_comment, sym_block_comment, - [91697] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [92344] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6255), 2, - anon_sym_RBRACE, - anon_sym_COMMA, + ACTIONS(6765), 2, + anon_sym_const, + sym_mutable_specifier, STATE(3172), 2, sym_line_comment, sym_block_comment, - [91712] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [92359] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4791), 1, - anon_sym_COLON_COLON, - ACTIONS(4961), 1, - anon_sym_BANG, + ACTIONS(5607), 1, + sym_super, + ACTIONS(6767), 1, + sym_identifier, STATE(3173), 2, sym_line_comment, sym_block_comment, - [91729] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [92376] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5128), 1, - anon_sym_COLON, - STATE(2542), 1, - sym_trait_bounds, + ACTIONS(6769), 2, + anon_sym_GT, + anon_sym_COMMA, STATE(3174), 2, sym_line_comment, sym_block_comment, - [91746] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [92391] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6724), 1, - anon_sym_LT, - STATE(940), 1, - sym_type_parameters, + ACTIONS(6771), 2, + anon_sym_const, + sym_mutable_specifier, STATE(3175), 2, sym_line_comment, sym_block_comment, - [91763] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [92406] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5383), 2, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(4116), 1, + anon_sym_LPAREN, + STATE(1644), 1, + sym_parameters, STATE(3176), 2, sym_line_comment, sym_block_comment, - [91778] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [92423] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4078), 1, - anon_sym_LPAREN, - STATE(1640), 1, - sym_parameters, + ACTIONS(6773), 2, + sym__block_comment_content, + anon_sym_STAR_SLASH, STATE(3177), 2, sym_line_comment, sym_block_comment, - [91795] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [92438] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6726), 2, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(5110), 1, + anon_sym_LBRACE, + STATE(733), 1, + sym_field_declaration_list, STATE(3178), 2, sym_line_comment, sym_block_comment, - [91810] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [92455] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5544), 1, - anon_sym_PIPE, - ACTIONS(6728), 1, - anon_sym_in, + ACTIONS(6404), 2, + anon_sym_GT, + anon_sym_COMMA, STATE(3179), 2, sym_line_comment, sym_block_comment, - [91827] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [92470] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3496), 1, - anon_sym_LBRACE, - STATE(1508), 1, - sym_field_initializer_list, + ACTIONS(4765), 1, + anon_sym_BANG, + ACTIONS(4846), 1, + anon_sym_COLON_COLON, STATE(3180), 2, sym_line_comment, sym_block_comment, - [91844] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [92487] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6724), 1, - anon_sym_LT, - STATE(1085), 1, - sym_type_parameters, + ACTIONS(6775), 1, + anon_sym_STAR_SLASH, + ACTIONS(6777), 1, + sym__block_comment_content, STATE(3181), 2, sym_line_comment, sym_block_comment, - [91861] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [92504] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6730), 2, - sym_identifier, - sym_super, + ACTIONS(3376), 1, + anon_sym_LT2, + STATE(1424), 1, + sym_type_arguments, STATE(3182), 2, sym_line_comment, sym_block_comment, - [91876] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [92521] = 5, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6392), 2, - anon_sym_GT, - anon_sym_COMMA, + STATE(243), 1, + sym_closure_parameters, STATE(3183), 2, sym_line_comment, sym_block_comment, - [91891] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [92538] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5440), 1, + ACTIONS(4928), 1, anon_sym_LBRACE, - STATE(1182), 1, - sym_enum_variant_list, + STATE(734), 1, + sym_declaration_list, STATE(3184), 2, sym_line_comment, sym_block_comment, - [91908] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [92555] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5244), 1, - anon_sym_RBRACE, - ACTIONS(6704), 1, - anon_sym_SEMI, + ACTIONS(5367), 2, + anon_sym_RPAREN, + anon_sym_COMMA, STATE(3185), 2, sym_line_comment, sym_block_comment, - [91925] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [92570] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6732), 2, - sym_identifier, - sym_metavariable, + ACTIONS(4838), 1, + anon_sym_COLON_COLON, + ACTIONS(4964), 1, + anon_sym_BANG, STATE(3186), 2, sym_line_comment, sym_block_comment, - [91940] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [92587] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4078), 1, - anon_sym_LPAREN, - STATE(1677), 1, - sym_parameters, + ACTIONS(4928), 1, + anon_sym_LBRACE, + STATE(735), 1, + sym_declaration_list, STATE(3187), 2, sym_line_comment, sym_block_comment, - [91957] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [92604] = 5, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4993), 1, - anon_sym_LBRACE, - STATE(762), 1, - sym_declaration_list, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(6059), 1, + sym_identifier, + ACTIONS(6061), 1, + sym_super, STATE(3188), 2, sym_line_comment, sym_block_comment, - [91974] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [92621] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6734), 2, - anon_sym_const, - sym_mutable_specifier, + ACTIONS(5825), 2, + sym_identifier, + sym_super, STATE(3189), 2, sym_line_comment, sym_block_comment, - [91989] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [92636] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6736), 1, - anon_sym_SEMI, - ACTIONS(6738), 1, - anon_sym_as, + ACTIONS(6779), 1, + sym_identifier, + ACTIONS(6781), 1, + sym_super, STATE(3190), 2, sym_line_comment, sym_block_comment, - [92006] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [92653] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5651), 1, - sym_super, - ACTIONS(6740), 1, - sym_identifier, + ACTIONS(4707), 1, + anon_sym_COLON_COLON, + ACTIONS(6132), 1, + anon_sym_for, STATE(3191), 2, sym_line_comment, sym_block_comment, - [92023] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [92670] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6274), 2, - anon_sym_PIPE, - anon_sym_COMMA, + ACTIONS(3368), 1, + anon_sym_LPAREN, + STATE(1402), 1, + sym_parameters, STATE(3192), 2, sym_line_comment, sym_block_comment, - [92038] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [92687] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5544), 1, - anon_sym_PIPE, - ACTIONS(6742), 1, - anon_sym_in, + ACTIONS(6751), 1, + sym_identifier, + ACTIONS(6783), 1, + sym_super, STATE(3193), 2, sym_line_comment, sym_block_comment, - [92055] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [92704] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5510), 1, + ACTIONS(5295), 1, sym_super, - ACTIONS(6744), 1, + ACTIONS(5795), 1, sym_identifier, STATE(3194), 2, sym_line_comment, sym_block_comment, - [92072] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [92721] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6704), 1, - anon_sym_SEMI, - ACTIONS(6746), 1, - anon_sym_RPAREN, + ACTIONS(6785), 1, + sym_identifier, + ACTIONS(6787), 1, + sym_super, STATE(3195), 2, sym_line_comment, sym_block_comment, - [92089] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [92738] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6748), 1, - anon_sym_RPAREN, - ACTIONS(6750), 1, - anon_sym_COLON_COLON, + ACTIONS(6212), 2, + anon_sym_RBRACE, + anon_sym_COMMA, STATE(3196), 2, sym_line_comment, sym_block_comment, - [92106] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [92753] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4570), 1, - anon_sym_BANG, - ACTIONS(6752), 1, - anon_sym_COLON_COLON, + ACTIONS(5110), 1, + anon_sym_LBRACE, + STATE(544), 1, + sym_field_declaration_list, STATE(3197), 2, sym_line_comment, sym_block_comment, - [92123] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [92770] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6704), 1, + ACTIONS(5323), 1, + anon_sym_RBRACE, + ACTIONS(6747), 1, anon_sym_SEMI, - ACTIONS(6746), 1, - anon_sym_RBRACK, STATE(3198), 2, sym_line_comment, sym_block_comment, - [92140] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [92787] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4971), 1, - anon_sym_LBRACE, - STATE(1253), 1, - sym_declaration_list, + ACTIONS(6789), 1, + anon_sym_LT, + STATE(952), 1, + sym_type_parameters, STATE(3199), 2, sym_line_comment, sym_block_comment, - [92157] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [92804] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5510), 2, - sym_identifier, + ACTIONS(5592), 1, sym_super, + ACTIONS(6791), 1, + sym_identifier, STATE(3200), 2, sym_line_comment, sym_block_comment, - [92172] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [92821] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5385), 1, - anon_sym_LBRACE, - STATE(494), 1, - sym_enum_variant_list, + ACTIONS(4116), 1, + anon_sym_LPAREN, + STATE(1675), 1, + sym_parameters, STATE(3201), 2, sym_line_comment, sym_block_comment, - [92189] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [92838] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5651), 1, - sym_super, - ACTIONS(6754), 1, - sym_identifier, + ACTIONS(6793), 1, + anon_sym_SEMI, + ACTIONS(6795), 1, + anon_sym_EQ, STATE(3202), 2, sym_line_comment, sym_block_comment, - [92206] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [92855] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6704), 1, - anon_sym_SEMI, - ACTIONS(6756), 1, - anon_sym_RBRACE, + ACTIONS(3072), 1, + anon_sym_SQUOTE, + STATE(3079), 1, + sym_lifetime, STATE(3203), 2, sym_line_comment, sym_block_comment, - [92223] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [92872] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6758), 1, - anon_sym_RPAREN, - ACTIONS(6760), 1, - anon_sym_COLON_COLON, + ACTIONS(6797), 2, + sym_identifier, + sym_super, STATE(3204), 2, sym_line_comment, sym_block_comment, - [92240] = 5, - ACTIONS(27), 1, - anon_sym_PIPE, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [92887] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(216), 1, - sym_closure_parameters, + ACTIONS(3786), 1, + anon_sym_COLON, + ACTIONS(5399), 1, + anon_sym_PLUS, STATE(3205), 2, sym_line_comment, sym_block_comment, - [92257] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [92904] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5651), 2, - sym_identifier, + ACTIONS(5295), 1, sym_super, + ACTIONS(6045), 1, + sym_identifier, STATE(3206), 2, sym_line_comment, sym_block_comment, - [92272] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [92921] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4971), 1, + ACTIONS(5110), 1, anon_sym_LBRACE, - STATE(1260), 1, - sym_declaration_list, + STATE(747), 1, + sym_field_declaration_list, STATE(3207), 2, sym_line_comment, sym_block_comment, - [92289] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [92938] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6750), 1, + ACTIONS(4707), 1, anon_sym_COLON_COLON, - ACTIONS(6762), 1, - anon_sym_RPAREN, + ACTIONS(6741), 1, + anon_sym_for, STATE(3208), 2, sym_line_comment, sym_block_comment, - [92306] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [92955] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6764), 2, - anon_sym_const, - sym_mutable_specifier, + ACTIONS(3790), 1, + anon_sym_COLON, + ACTIONS(5399), 1, + anon_sym_PLUS, STATE(3209), 2, sym_line_comment, sym_block_comment, - [92321] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [92972] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5510), 1, - sym_super, - ACTIONS(6766), 1, - sym_identifier, + ACTIONS(5110), 1, + anon_sym_LBRACE, + STATE(546), 1, + sym_field_declaration_list, STATE(3210), 2, sym_line_comment, sym_block_comment, - [92338] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [92989] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4971), 1, - anon_sym_LBRACE, - STATE(1261), 1, - sym_declaration_list, + ACTIONS(6799), 2, + anon_sym_GT, + anon_sym_COMMA, STATE(3211), 2, sym_line_comment, sym_block_comment, - [92355] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [93004] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6758), 1, - anon_sym_RPAREN, - ACTIONS(6768), 1, - anon_sym_COLON_COLON, + ACTIONS(5273), 1, + anon_sym_RBRACE, + ACTIONS(6747), 1, + anon_sym_SEMI, STATE(3212), 2, sym_line_comment, sym_block_comment, - [92372] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [93021] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6758), 1, - anon_sym_RPAREN, - ACTIONS(6770), 1, - anon_sym_COLON_COLON, + ACTIONS(4116), 1, + anon_sym_LPAREN, + STATE(1685), 1, + sym_parameters, STATE(3213), 2, sym_line_comment, sym_block_comment, - [92389] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [93038] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6760), 1, - anon_sym_COLON_COLON, - ACTIONS(6772), 1, - anon_sym_RPAREN, + ACTIONS(6789), 1, + anon_sym_LT, + STATE(1069), 1, + sym_type_parameters, STATE(3214), 2, sym_line_comment, sym_block_comment, - [92406] = 5, - ACTIONS(27), 1, - anon_sym_PIPE, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [93055] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(224), 1, - sym_closure_parameters, + ACTIONS(4928), 1, + anon_sym_LBRACE, + STATE(547), 1, + sym_declaration_list, STATE(3215), 2, sym_line_comment, sym_block_comment, - [92423] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [93072] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5218), 1, - anon_sym_RPAREN, - ACTIONS(6704), 1, - anon_sym_SEMI, + ACTIONS(6801), 2, + anon_sym_GT, + anon_sym_COMMA, STATE(3216), 2, sym_line_comment, sym_block_comment, - [92440] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [93087] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6768), 1, - anon_sym_COLON_COLON, - ACTIONS(6772), 1, - anon_sym_RPAREN, + ACTIONS(5393), 1, + anon_sym_LBRACE, + STATE(1292), 1, + sym_enum_variant_list, STATE(3217), 2, sym_line_comment, sym_block_comment, - [92457] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [93104] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6770), 1, - anon_sym_COLON_COLON, - ACTIONS(6772), 1, - anon_sym_RPAREN, + ACTIONS(4928), 1, + anon_sym_LBRACE, + STATE(517), 1, + sym_declaration_list, STATE(3218), 2, sym_line_comment, sym_block_comment, - [92474] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [93121] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6020), 2, + ACTIONS(5592), 2, sym_identifier, sym_super, STATE(3219), 2, sym_line_comment, sym_block_comment, - [92489] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [93136] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6718), 1, - sym_super, - ACTIONS(6774), 1, - sym_identifier, + ACTIONS(5110), 1, + anon_sym_LBRACE, + STATE(639), 1, + sym_field_declaration_list, STATE(3220), 2, sym_line_comment, sym_block_comment, - [92506] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [93153] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5296), 1, - sym_super, - ACTIONS(5701), 1, - sym_identifier, + ACTIONS(4707), 1, + anon_sym_COLON_COLON, + ACTIONS(6231), 1, + anon_sym_for, STATE(3221), 2, sym_line_comment, sym_block_comment, - [92523] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [93170] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6722), 1, - sym_super, - ACTIONS(6776), 1, - sym_identifier, + ACTIONS(6803), 2, + anon_sym_RPAREN, + anon_sym_COMMA, STATE(3222), 2, sym_line_comment, sym_block_comment, - [92540] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [93185] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3318), 2, - anon_sym_RBRACE, - anon_sym_COMMA, + ACTIONS(4598), 1, + anon_sym_LPAREN, + STATE(2297), 1, + sym_parameters, STATE(3223), 2, sym_line_comment, sym_block_comment, - [92555] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [93202] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6704), 1, - anon_sym_SEMI, - ACTIONS(6778), 1, - anon_sym_RPAREN, + ACTIONS(5416), 1, + anon_sym_LBRACE, + STATE(704), 1, + sym_enum_variant_list, STATE(3224), 2, sym_line_comment, sym_block_comment, - [92572] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [93219] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6704), 1, - anon_sym_SEMI, - ACTIONS(6778), 1, - anon_sym_RBRACK, + ACTIONS(5048), 1, + anon_sym_LBRACE, + STATE(1245), 1, + sym_field_declaration_list, STATE(3225), 2, sym_line_comment, sym_block_comment, - [92589] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [93236] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6704), 1, - anon_sym_SEMI, - ACTIONS(6780), 1, - anon_sym_RBRACE, + ACTIONS(4707), 1, + anon_sym_COLON_COLON, + ACTIONS(5114), 1, + anon_sym_for, STATE(3226), 2, sym_line_comment, sym_block_comment, - [92606] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [93253] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4568), 1, - anon_sym_LPAREN, - STATE(2249), 1, - sym_parameters, + ACTIONS(5110), 1, + anon_sym_LBRACE, + STATE(627), 1, + sym_field_declaration_list, STATE(3227), 2, sym_line_comment, sym_block_comment, - [92623] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [93270] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5218), 1, - anon_sym_RBRACK, - ACTIONS(6704), 1, - anon_sym_SEMI, + ACTIONS(5050), 1, + anon_sym_LT, + STATE(946), 1, + sym_type_parameters, STATE(3228), 2, sym_line_comment, sym_block_comment, - [92640] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [93287] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4993), 1, - anon_sym_LBRACE, - STATE(542), 1, - sym_declaration_list, + ACTIONS(6243), 1, + sym_identifier, + ACTIONS(6247), 1, + sym_mutable_specifier, STATE(3229), 2, sym_line_comment, sym_block_comment, - [92657] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [93304] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5228), 1, - anon_sym_RBRACE, - ACTIONS(6704), 1, - anon_sym_SEMI, + ACTIONS(6463), 2, + anon_sym_GT, + anon_sym_COMMA, STATE(3230), 2, sym_line_comment, sym_block_comment, - [92674] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [93319] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5440), 1, + ACTIONS(4984), 1, anon_sym_LBRACE, - STATE(1269), 1, - sym_enum_variant_list, + STATE(1213), 1, + sym_declaration_list, STATE(3231), 2, sym_line_comment, sym_block_comment, - [92691] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [93336] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4993), 1, - anon_sym_LBRACE, - STATE(543), 1, - sym_declaration_list, + ACTIONS(6787), 2, + sym_identifier, + sym_super, STATE(3232), 2, sym_line_comment, sym_block_comment, - [92708] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [93351] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5230), 1, - anon_sym_RPAREN, - ACTIONS(6704), 1, - anon_sym_SEMI, + ACTIONS(6743), 1, + anon_sym_LPAREN, + ACTIONS(6805), 1, + anon_sym_COLON_COLON, STATE(3233), 2, sym_line_comment, sym_block_comment, - [92725] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [93368] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4985), 1, - anon_sym_LBRACE, - STATE(1272), 1, - sym_field_declaration_list, + ACTIONS(4086), 2, + anon_sym_extern, + sym_identifier, STATE(3234), 2, sym_line_comment, sym_block_comment, - [92742] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [93383] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3906), 1, - anon_sym_COLON, - ACTIONS(5354), 1, - anon_sym_PLUS, + ACTIONS(5592), 1, + sym_super, + ACTIONS(6807), 1, + sym_identifier, STATE(3235), 2, sym_line_comment, sym_block_comment, - [92759] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [93400] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4985), 1, - anon_sym_LBRACE, - STATE(1274), 1, - sym_field_declaration_list, + ACTIONS(6809), 2, + sym_identifier, + sym_metavariable, STATE(3236), 2, sym_line_comment, sym_block_comment, - [92776] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [93415] = 5, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5230), 1, - anon_sym_RBRACK, - ACTIONS(6704), 1, - anon_sym_SEMI, + STATE(223), 1, + sym_closure_parameters, STATE(3237), 2, sym_line_comment, sym_block_comment, - [92793] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [93432] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4971), 1, + ACTIONS(4984), 1, anon_sym_LBRACE, - STATE(1275), 1, + STATE(1220), 1, sym_declaration_list, STATE(3238), 2, sym_line_comment, sym_block_comment, - [92810] = 5, - ACTIONS(27), 1, - anon_sym_PIPE, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [93449] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(230), 1, - sym_closure_parameters, + ACTIONS(4928), 1, + anon_sym_LBRACE, + STATE(774), 1, + sym_declaration_list, STATE(3239), 2, sym_line_comment, sym_block_comment, - [92827] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [93466] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6473), 2, - anon_sym_RBRACE, - anon_sym_COMMA, + ACTIONS(6811), 2, + anon_sym_const, + sym_mutable_specifier, STATE(3240), 2, sym_line_comment, sym_block_comment, - [92842] = 5, - ACTIONS(27), 1, - anon_sym_PIPE, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [93481] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(218), 1, - sym_closure_parameters, + ACTIONS(5607), 1, + sym_super, + ACTIONS(6813), 1, + sym_identifier, STATE(3241), 2, sym_line_comment, sym_block_comment, - [92859] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [93498] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6782), 1, - sym_identifier, - ACTIONS(6784), 1, - sym_super, + ACTIONS(4984), 1, + anon_sym_LBRACE, + STATE(1221), 1, + sym_declaration_list, STATE(3242), 2, sym_line_comment, sym_block_comment, - [92876] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [93515] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5232), 1, + ACTIONS(3344), 2, anon_sym_RBRACE, - ACTIONS(6704), 1, - anon_sym_SEMI, + anon_sym_COMMA, STATE(3243), 2, sym_line_comment, sym_block_comment, - [92893] = 5, - ACTIONS(27), 1, - anon_sym_PIPE, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [93530] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(232), 1, - sym_closure_parameters, + ACTIONS(6815), 1, + anon_sym_SEMI, + ACTIONS(6817), 1, + anon_sym_as, STATE(3244), 2, sym_line_comment, sym_block_comment, - [92910] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [93547] = 5, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4985), 1, - anon_sym_LBRACE, - STATE(1199), 1, - sym_field_declaration_list, + STATE(246), 1, + sym_closure_parameters, STATE(3245), 2, sym_line_comment, sym_block_comment, - [92927] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [93564] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4971), 1, - anon_sym_LBRACE, - STATE(1200), 1, - sym_declaration_list, + ACTIONS(6819), 1, + anon_sym_extern, + STATE(2982), 1, + sym_extern_modifier, STATE(3246), 2, sym_line_comment, sym_block_comment, - [92944] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [93581] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6786), 1, - sym_identifier, - ACTIONS(6788), 1, - sym_super, + ACTIONS(6821), 1, + anon_sym_RPAREN, + ACTIONS(6823), 1, + anon_sym_COLON_COLON, STATE(3247), 2, sym_line_comment, sym_block_comment, - [92961] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [93598] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5043), 1, - anon_sym_LBRACE, - STATE(747), 1, - sym_field_declaration_list, + ACTIONS(6061), 2, + sym_identifier, + sym_super, STATE(3248), 2, sym_line_comment, sym_block_comment, - [92978] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [93613] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5778), 1, - sym_super, - ACTIONS(5780), 1, - sym_identifier, + ACTIONS(6825), 1, + anon_sym_RPAREN, + ACTIONS(6827), 1, + anon_sym_COLON_COLON, STATE(3249), 2, sym_line_comment, sym_block_comment, - [92995] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [93630] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6790), 1, - sym_identifier, - ACTIONS(6792), 1, + ACTIONS(6783), 1, sym_super, + ACTIONS(6829), 1, + sym_identifier, STATE(3250), 2, sym_line_comment, sym_block_comment, - [93012] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [93647] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4971), 1, - anon_sym_LBRACE, - STATE(1201), 1, - sym_declaration_list, + ACTIONS(6825), 1, + anon_sym_RPAREN, + ACTIONS(6831), 1, + anon_sym_COLON_COLON, STATE(3251), 2, sym_line_comment, sym_block_comment, - [93029] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [93664] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6478), 2, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(5295), 1, + sym_super, + ACTIONS(5752), 1, + sym_identifier, STATE(3252), 2, sym_line_comment, sym_block_comment, - [93044] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [93681] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6776), 1, - sym_identifier, - ACTIONS(6792), 1, + ACTIONS(6787), 1, sym_super, + ACTIONS(6833), 1, + sym_identifier, STATE(3253), 2, sym_line_comment, sym_block_comment, - [93061] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [93698] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4727), 1, - anon_sym_BANG, - ACTIONS(4781), 1, - anon_sym_COLON_COLON, + ACTIONS(5393), 1, + anon_sym_LBRACE, + STATE(1268), 1, + sym_enum_variant_list, STATE(3254), 2, sym_line_comment, sym_block_comment, - [93078] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [93715] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5296), 2, - sym_identifier, - sym_super, + ACTIONS(6825), 1, + anon_sym_RPAREN, + ACTIONS(6835), 1, + anon_sym_COLON_COLON, STATE(3255), 2, sym_line_comment, sym_block_comment, - [93093] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [93732] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6784), 1, - sym_super, - ACTIONS(6794), 1, - sym_identifier, + ACTIONS(5048), 1, + anon_sym_LBRACE, + STATE(1272), 1, + sym_field_declaration_list, STATE(3256), 2, sym_line_comment, sym_block_comment, - [93110] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [93749] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4993), 1, - anon_sym_LBRACE, - STATE(750), 1, - sym_declaration_list, + ACTIONS(6837), 2, + sym__block_comment_content, + anon_sym_STAR_SLASH, STATE(3257), 2, sym_line_comment, sym_block_comment, - [93127] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [93764] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6718), 1, - sym_super, - ACTIONS(6796), 1, - sym_identifier, + ACTIONS(5048), 1, + anon_sym_LBRACE, + STATE(1274), 1, + sym_field_declaration_list, STATE(3258), 2, sym_line_comment, sym_block_comment, - [93144] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [93781] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5778), 1, - sym_super, - ACTIONS(5794), 1, - sym_identifier, + ACTIONS(6789), 1, + anon_sym_LT, + STATE(910), 1, + sym_type_parameters, STATE(3259), 2, sym_line_comment, sym_block_comment, - [93161] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [93798] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6792), 1, - sym_super, - ACTIONS(6798), 1, - sym_identifier, + ACTIONS(4984), 1, + anon_sym_LBRACE, + STATE(1275), 1, + sym_declaration_list, STATE(3260), 2, sym_line_comment, sym_block_comment, - [93178] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [93815] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5043), 1, - anon_sym_LBRACE, - STATE(647), 1, - sym_field_declaration_list, + ACTIONS(6255), 2, + anon_sym_RBRACE, + anon_sym_COMMA, STATE(3261), 2, sym_line_comment, sym_block_comment, - [93195] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [93830] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6301), 2, - anon_sym_RBRACE, - anon_sym_COMMA, + ACTIONS(6839), 1, + anon_sym_SEMI, + ACTIONS(6841), 1, + anon_sym_EQ, STATE(3262), 2, sym_line_comment, sym_block_comment, - [93210] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [93847] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6800), 1, - anon_sym_SEMI, - ACTIONS(6802), 1, - anon_sym_EQ, + ACTIONS(4928), 1, + anon_sym_LBRACE, + STATE(631), 1, + sym_declaration_list, STATE(3263), 2, sym_line_comment, sym_block_comment, - [93227] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [93864] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6784), 2, - sym_identifier, - sym_super, + ACTIONS(4598), 1, + anon_sym_LPAREN, + STATE(2266), 1, + sym_parameters, STATE(3264), 2, sym_line_comment, sym_block_comment, - [93242] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [93881] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6804), 1, - anon_sym_SEMI, - ACTIONS(6806), 1, - anon_sym_EQ, + ACTIONS(6843), 2, + anon_sym_GT, + anon_sym_COMMA, STATE(3265), 2, sym_line_comment, sym_block_comment, - [93259] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [93896] = 5, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6176), 1, - sym_identifier, - ACTIONS(6180), 1, - sym_mutable_specifier, + STATE(234), 1, + sym_closure_parameters, STATE(3266), 2, sym_line_comment, sym_block_comment, - [93276] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [93913] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6808), 1, - sym_identifier, - ACTIONS(6810), 1, - sym_super, + ACTIONS(3822), 1, + anon_sym_COLON, + ACTIONS(5399), 1, + anon_sym_PLUS, STATE(3267), 2, sym_line_comment, sym_block_comment, - [93293] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [93930] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6718), 1, - sym_super, - ACTIONS(6812), 1, + ACTIONS(6845), 1, sym_identifier, + ACTIONS(6847), 1, + sym_super, STATE(3268), 2, sym_line_comment, sym_block_comment, - [93310] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [93947] = 5, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5917), 1, - sym_super, - ACTIONS(6026), 1, - sym_identifier, + STATE(240), 1, + sym_closure_parameters, STATE(3269), 2, sym_line_comment, sym_block_comment, - [93327] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [93964] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6730), 1, - sym_super, - ACTIONS(6814), 1, - sym_identifier, + ACTIONS(4928), 1, + anon_sym_LBRACE, + STATE(621), 1, + sym_declaration_list, STATE(3270), 2, sym_line_comment, sym_block_comment, - [93344] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [93981] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6722), 1, - sym_super, - ACTIONS(6816), 1, + ACTIONS(6849), 1, sym_identifier, + ACTIONS(6851), 1, + sym_mutable_specifier, STATE(3271), 2, sym_line_comment, sym_block_comment, - [93361] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [93998] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6818), 2, - sym__block_comment_content, - anon_sym_STAR_SLASH, + ACTIONS(5416), 1, + anon_sym_LBRACE, + STATE(569), 1, + sym_enum_variant_list, STATE(3272), 2, sym_line_comment, sym_block_comment, - [93376] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [94015] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5510), 1, - sym_super, - ACTIONS(6782), 1, + ACTIONS(6853), 1, sym_identifier, + ACTIONS(6855), 1, + sym_super, STATE(3273), 2, sym_line_comment, sym_block_comment, - [93393] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [94032] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6718), 1, + ACTIONS(5776), 1, sym_super, - ACTIONS(6754), 1, + ACTIONS(5819), 1, sym_identifier, STATE(3274), 2, sym_line_comment, sym_block_comment, - [93410] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [94049] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5296), 1, - sym_super, - ACTIONS(5780), 1, + ACTIONS(6857), 1, sym_identifier, + ACTIONS(6859), 1, + sym_super, STATE(3275), 2, sym_line_comment, sym_block_comment, - [93427] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [94066] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6722), 1, - sym_super, - ACTIONS(6790), 1, - sym_identifier, + ACTIONS(5048), 1, + anon_sym_LBRACE, + STATE(1342), 1, + sym_field_declaration_list, STATE(3276), 2, sym_line_comment, sym_block_comment, - [93444] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [94083] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6784), 1, - sym_super, - ACTIONS(6820), 1, - sym_identifier, + ACTIONS(6287), 2, + anon_sym_RBRACE, + anon_sym_COMMA, STATE(3277), 2, sym_line_comment, sym_block_comment, - [93461] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [94098] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5776), 1, - sym_identifier, - ACTIONS(5778), 1, - sym_super, + ACTIONS(6861), 2, + anon_sym_const, + sym_mutable_specifier, STATE(3278), 2, sym_line_comment, sym_block_comment, - [93478] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [94113] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6792), 1, - sym_super, - ACTIONS(6822), 1, - sym_identifier, + ACTIONS(5110), 1, + anon_sym_LBRACE, + STATE(509), 1, + sym_field_declaration_list, STATE(3279), 2, sym_line_comment, sym_block_comment, - [93495] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [94130] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6784), 1, - sym_super, - ACTIONS(6824), 1, - sym_identifier, + ACTIONS(4984), 1, + anon_sym_LBRACE, + STATE(1344), 1, + sym_declaration_list, STATE(3280), 2, sym_line_comment, sym_block_comment, - [93512] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [94147] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5778), 1, - sym_super, - ACTIONS(5820), 1, + ACTIONS(5295), 2, sym_identifier, + sym_super, STATE(3281), 2, sym_line_comment, sym_block_comment, - [93529] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [94162] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6792), 1, - sym_super, - ACTIONS(6826), 1, - sym_identifier, + ACTIONS(4598), 1, + anon_sym_LPAREN, + STATE(2038), 1, + sym_parameters, STATE(3282), 2, sym_line_comment, sym_block_comment, - [93546] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [94179] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6784), 1, - sym_super, - ACTIONS(6828), 1, - sym_identifier, + ACTIONS(4984), 1, + anon_sym_LBRACE, + STATE(1345), 1, + sym_declaration_list, STATE(3283), 2, sym_line_comment, sym_block_comment, - [93563] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [94196] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5778), 1, + ACTIONS(6787), 1, sym_super, - ACTIONS(5834), 1, + ACTIONS(6863), 1, sym_identifier, STATE(3284), 2, sym_line_comment, sym_block_comment, - [93580] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [94213] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6792), 1, - sym_super, - ACTIONS(6830), 1, - sym_identifier, + ACTIONS(5110), 1, + anon_sym_LBRACE, + STATE(554), 1, + sym_field_declaration_list, STATE(3285), 2, sym_line_comment, sym_block_comment, - [93597] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [94230] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5510), 1, + ACTIONS(5592), 1, sym_super, - ACTIONS(6828), 1, + ACTIONS(6865), 1, sym_identifier, STATE(3286), 2, sym_line_comment, sym_block_comment, - [93614] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [94247] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5296), 1, + ACTIONS(6847), 1, sym_super, - ACTIONS(5834), 1, + ACTIONS(6867), 1, sym_identifier, STATE(3287), 2, sym_line_comment, sym_block_comment, - [93631] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [94264] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6722), 1, - sym_super, - ACTIONS(6830), 1, - sym_identifier, + ACTIONS(6869), 2, + anon_sym_RBRACE, + anon_sym_COMMA, STATE(3288), 2, sym_line_comment, sym_block_comment, - [93648] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [94279] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4993), 1, - anon_sym_LBRACE, - STATE(732), 1, - sym_declaration_list, + ACTIONS(6783), 1, + sym_super, + ACTIONS(6871), 1, + sym_identifier, STATE(3289), 2, sym_line_comment, sym_block_comment, - [93665] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [94296] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4568), 1, - anon_sym_LPAREN, - STATE(2027), 1, - sym_parameters, + ACTIONS(5776), 1, + sym_super, + ACTIONS(6043), 1, + sym_identifier, STATE(3290), 2, sym_line_comment, sym_block_comment, - [93682] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [94313] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5043), 1, - anon_sym_LBRACE, - STATE(773), 1, - sym_field_declaration_list, + ACTIONS(6859), 1, + sym_super, + ACTIONS(6873), 1, + sym_identifier, STATE(3291), 2, sym_line_comment, sym_block_comment, - [93699] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [94330] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4985), 1, - anon_sym_LBRACE, - STATE(1207), 1, - sym_field_declaration_list, + ACTIONS(5586), 1, + anon_sym_PIPE, + ACTIONS(5635), 1, + anon_sym_COLON, STATE(3292), 2, sym_line_comment, sym_block_comment, - [93716] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [94347] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6832), 1, - anon_sym_SEMI, - ACTIONS(6834), 1, - anon_sym_EQ, + ACTIONS(6875), 1, + sym_identifier, + ACTIONS(6877), 1, + sym_mutable_specifier, STATE(3293), 2, sym_line_comment, sym_block_comment, - [93733] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [94364] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6836), 1, - sym_identifier, - ACTIONS(6838), 1, - sym_mutable_specifier, + ACTIONS(4598), 1, + anon_sym_LPAREN, + STATE(2026), 1, + sym_parameters, STATE(3294), 2, sym_line_comment, sym_block_comment, - [93750] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [94381] = 5, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5651), 1, - sym_super, - ACTIONS(6840), 1, - sym_identifier, + STATE(236), 1, + sym_closure_parameters, STATE(3295), 2, sym_line_comment, sym_block_comment, - [93767] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [94398] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6724), 1, - anon_sym_LT, - STATE(898), 1, - sym_type_parameters, + ACTIONS(6879), 1, + anon_sym_SEMI, + ACTIONS(6881), 1, + anon_sym_as, STATE(3296), 2, sym_line_comment, sym_block_comment, - [93784] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [94415] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5510), 1, - sym_super, - ACTIONS(6842), 1, + ACTIONS(6883), 1, sym_identifier, + ACTIONS(6885), 1, + sym_super, STATE(3297), 2, sym_line_comment, sym_block_comment, - [93801] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [94432] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6844), 2, - anon_sym_GT, - anon_sym_COMMA, + ACTIONS(6783), 1, + sym_super, + ACTIONS(6791), 1, + sym_identifier, STATE(3298), 2, sym_line_comment, sym_block_comment, - [93816] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [94449] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6708), 1, - anon_sym_LPAREN, - ACTIONS(6846), 1, - anon_sym_COLON_COLON, + ACTIONS(6783), 1, + sym_super, + ACTIONS(6887), 1, + sym_identifier, STATE(3299), 2, sym_line_comment, sym_block_comment, - [93833] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [94466] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6848), 2, - sym_float_literal, - sym_integer_literal, + ACTIONS(5825), 1, + sym_super, + ACTIONS(6075), 1, + sym_identifier, STATE(3300), 2, sym_line_comment, sym_block_comment, - [93848] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [94483] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4971), 1, - anon_sym_LBRACE, - STATE(1212), 1, - sym_declaration_list, + ACTIONS(6797), 1, + sym_super, + ACTIONS(6889), 1, + sym_identifier, STATE(3301), 2, sym_line_comment, sym_block_comment, - [93865] = 5, - ACTIONS(27), 1, - anon_sym_PIPE, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [94500] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(215), 1, - sym_closure_parameters, + ACTIONS(6891), 1, + anon_sym_SEMI, + ACTIONS(6893), 1, + anon_sym_EQ, STATE(3302), 2, sym_line_comment, sym_block_comment, - [93882] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [94517] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6850), 2, + ACTIONS(6895), 2, anon_sym_const, sym_mutable_specifier, STATE(3303), 2, sym_line_comment, sym_block_comment, - [93897] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [94532] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6852), 1, - anon_sym_BANG, - ACTIONS(6854), 1, - anon_sym_COLON_COLON, + ACTIONS(6897), 2, + anon_sym_RPAREN, + anon_sym_COMMA, STATE(3304), 2, sym_line_comment, sym_block_comment, - [93914] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [94547] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6788), 2, - sym_identifier, + ACTIONS(5607), 1, sym_super, + ACTIONS(6845), 1, + sym_identifier, STATE(3305), 2, sym_line_comment, sym_block_comment, - [93929] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [94564] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4727), 1, - anon_sym_BANG, - ACTIONS(4785), 1, - anon_sym_COLON_COLON, + ACTIONS(6783), 1, + sym_super, + ACTIONS(6807), 1, + sym_identifier, STATE(3306), 2, sym_line_comment, sym_block_comment, - [93946] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [94581] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4126), 1, - anon_sym_LBRACE, - STATE(1842), 1, - sym_field_initializer_list, + ACTIONS(5295), 1, + sym_super, + ACTIONS(5819), 1, + sym_identifier, STATE(3307), 2, sym_line_comment, sym_block_comment, - [93963] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [94598] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4993), 1, - anon_sym_LBRACE, - STATE(733), 1, - sym_declaration_list, + ACTIONS(6787), 1, + sym_super, + ACTIONS(6857), 1, + sym_identifier, STATE(3308), 2, sym_line_comment, sym_block_comment, - [93980] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [94615] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4660), 1, - anon_sym_COLON_COLON, - ACTIONS(5055), 1, - anon_sym_for, + ACTIONS(6847), 1, + sym_super, + ACTIONS(6899), 1, + sym_identifier, STATE(3309), 2, sym_line_comment, sym_block_comment, - [93997] = 5, - ACTIONS(27), 1, - anon_sym_PIPE, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [94632] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(220), 1, - sym_closure_parameters, + ACTIONS(5776), 1, + sym_super, + ACTIONS(5817), 1, + sym_identifier, STATE(3310), 2, sym_line_comment, sym_block_comment, - [94014] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [94649] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5440), 1, - anon_sym_LBRACE, - STATE(1217), 1, - sym_enum_variant_list, + ACTIONS(6859), 1, + sym_super, + ACTIONS(6901), 1, + sym_identifier, STATE(3311), 2, sym_line_comment, sym_block_comment, - [94031] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [94666] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4985), 1, - anon_sym_LBRACE, - STATE(1159), 1, - sym_field_declaration_list, + ACTIONS(6847), 1, + sym_super, + ACTIONS(6903), 1, + sym_identifier, STATE(3312), 2, sym_line_comment, sym_block_comment, - [94048] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [94683] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4985), 1, - anon_sym_LBRACE, - STATE(1220), 1, - sym_field_declaration_list, + ACTIONS(5776), 1, + sym_super, + ACTIONS(5851), 1, + sym_identifier, STATE(3313), 2, sym_line_comment, sym_block_comment, - [94065] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [94700] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6724), 1, - anon_sym_LT, - STATE(1079), 1, - sym_type_parameters, + ACTIONS(6859), 1, + sym_super, + ACTIONS(6905), 1, + sym_identifier, STATE(3314), 2, sym_line_comment, sym_block_comment, - [94082] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [94717] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5651), 1, + ACTIONS(6847), 1, sym_super, - ACTIONS(6856), 1, + ACTIONS(6907), 1, sym_identifier, STATE(3315), 2, sym_line_comment, sym_block_comment, - [94099] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [94734] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6858), 2, - anon_sym_const, - sym_mutable_specifier, + ACTIONS(5776), 1, + sym_super, + ACTIONS(5871), 1, + sym_identifier, STATE(3316), 2, sym_line_comment, sym_block_comment, - [94114] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [94751] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4993), 1, - anon_sym_LBRACE, - STATE(624), 1, - sym_declaration_list, + ACTIONS(6859), 1, + sym_super, + ACTIONS(6909), 1, + sym_identifier, STATE(3317), 2, sym_line_comment, sym_block_comment, - [94131] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [94768] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4568), 1, - anon_sym_LPAREN, - STATE(2272), 1, - sym_parameters, + ACTIONS(5607), 1, + sym_super, + ACTIONS(6907), 1, + sym_identifier, STATE(3318), 2, sym_line_comment, sym_block_comment, - [94148] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [94785] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6860), 2, - sym_float_literal, - sym_integer_literal, + ACTIONS(5295), 1, + sym_super, + ACTIONS(5871), 1, + sym_identifier, STATE(3319), 2, sym_line_comment, sym_block_comment, - [94163] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [94802] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6700), 1, - sym_identifier, - ACTIONS(6784), 1, + ACTIONS(6787), 1, sym_super, + ACTIONS(6909), 1, + sym_identifier, STATE(3320), 2, sym_line_comment, sym_block_comment, - [94180] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [94819] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3362), 1, - anon_sym_LT2, - STATE(1477), 1, - sym_type_arguments, + ACTIONS(6557), 2, + anon_sym_RBRACE, + anon_sym_COMMA, STATE(3321), 2, sym_line_comment, sym_block_comment, - [94197] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [94834] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6862), 2, - sym__block_comment_content, - anon_sym_STAR_SLASH, + ACTIONS(5048), 1, + anon_sym_LBRACE, + STATE(1351), 1, + sym_field_declaration_list, STATE(3322), 2, sym_line_comment, sym_block_comment, - [94212] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [94851] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6864), 2, - anon_sym_GT, - anon_sym_COMMA, + ACTIONS(5586), 1, + anon_sym_PIPE, + ACTIONS(6911), 1, + anon_sym_in, STATE(3323), 2, sym_line_comment, sym_block_comment, - [94227] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [94868] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4993), 1, - anon_sym_LBRACE, - STATE(625), 1, - sym_declaration_list, + ACTIONS(6322), 1, + sym_identifier, + ACTIONS(6326), 1, + sym_mutable_specifier, STATE(3324), 2, sym_line_comment, sym_block_comment, - [94244] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [94885] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6866), 2, - anon_sym_const, - sym_mutable_specifier, + ACTIONS(3072), 1, + anon_sym_SQUOTE, + STATE(3369), 1, + sym_lifetime, STATE(3325), 2, sym_line_comment, sym_block_comment, - [94259] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [94902] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6566), 2, - anon_sym_RBRACE, - anon_sym_COMMA, + ACTIONS(6823), 1, + anon_sym_COLON_COLON, + ACTIONS(6913), 1, + anon_sym_RPAREN, STATE(3326), 2, sym_line_comment, sym_block_comment, - [94274] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [94919] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6868), 2, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(5607), 1, + sym_super, + ACTIONS(6915), 1, + sym_identifier, STATE(3327), 2, sym_line_comment, sym_block_comment, - [94289] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [94936] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5855), 2, + ACTIONS(6827), 1, + anon_sym_COLON_COLON, + ACTIONS(6917), 1, anon_sym_RPAREN, - anon_sym_COMMA, STATE(3328), 2, sym_line_comment, sym_block_comment, - [94304] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [94953] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5266), 1, - anon_sym_RPAREN, - ACTIONS(6704), 1, - anon_sym_SEMI, + ACTIONS(6743), 1, + anon_sym_LPAREN, + ACTIONS(6919), 1, + anon_sym_COLON_COLON, STATE(3329), 2, sym_line_comment, sym_block_comment, - [94321] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [94970] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3354), 1, - anon_sym_LPAREN, - STATE(1111), 1, - sym_parameters, + ACTIONS(6831), 1, + anon_sym_COLON_COLON, + ACTIONS(6917), 1, + anon_sym_RPAREN, STATE(3330), 2, sym_line_comment, sym_block_comment, - [94338] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [94987] = 5, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5266), 1, - anon_sym_RBRACK, - ACTIONS(6704), 1, - anon_sym_SEMI, + STATE(224), 1, + sym_closure_parameters, STATE(3331), 2, sym_line_comment, sym_block_comment, - [94355] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [95004] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5268), 1, - anon_sym_RPAREN, - ACTIONS(6704), 1, - anon_sym_SEMI, + ACTIONS(6921), 2, + anon_sym_const, + sym_mutable_specifier, STATE(3332), 2, sym_line_comment, sym_block_comment, - [94372] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [95019] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5268), 1, - anon_sym_RBRACK, - ACTIONS(6704), 1, - anon_sym_SEMI, + ACTIONS(6923), 1, + anon_sym_BANG, + ACTIONS(6925), 1, + anon_sym_COLON_COLON, STATE(3333), 2, sym_line_comment, sym_block_comment, - [94389] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [95036] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6870), 2, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(4600), 1, + anon_sym_BANG, + ACTIONS(6927), 1, + anon_sym_COLON_COLON, STATE(3334), 2, sym_line_comment, sym_block_comment, - [94404] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [95053] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4985), 1, + ACTIONS(3558), 1, anon_sym_LBRACE, - STATE(1223), 1, - sym_field_declaration_list, + STATE(1500), 1, + sym_field_initializer_list, STATE(3335), 2, sym_line_comment, sym_block_comment, - [94421] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [95070] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3058), 1, - anon_sym_SQUOTE, - STATE(3183), 1, - sym_lifetime, + ACTIONS(4984), 1, + anon_sym_LBRACE, + STATE(1356), 1, + sym_declaration_list, STATE(3336), 2, sym_line_comment, sym_block_comment, - [94438] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [95087] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6718), 2, - sym_identifier, - sym_super, + ACTIONS(4152), 1, + anon_sym_LBRACE, + STATE(1847), 1, + sym_field_initializer_list, STATE(3337), 2, sym_line_comment, sym_block_comment, - [94453] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [95104] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5328), 2, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(6819), 1, + anon_sym_extern, + STATE(2847), 1, + sym_extern_modifier, STATE(3338), 2, sym_line_comment, sym_block_comment, - [94468] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [95121] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4332), 1, - anon_sym_EQ_GT, - ACTIONS(6872), 1, - anon_sym_AMP_AMP, + ACTIONS(6929), 2, + sym_identifier, + sym_metavariable, STATE(3339), 2, sym_line_comment, sym_block_comment, - [94485] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [95136] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6632), 1, - anon_sym_EQ_GT, - ACTIONS(6872), 1, - anon_sym_AMP_AMP, + ACTIONS(5586), 1, + anon_sym_PIPE, + ACTIONS(6931), 1, + anon_sym_in, STATE(3340), 2, sym_line_comment, sym_block_comment, - [94502] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [95153] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5385), 1, - anon_sym_LBRACE, - STATE(755), 1, - sym_enum_variant_list, + ACTIONS(5592), 1, + sym_super, + ACTIONS(6933), 1, + sym_identifier, STATE(3341), 2, sym_line_comment, sym_block_comment, - [94519] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [95170] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4971), 1, - anon_sym_LBRACE, - STATE(1318), 1, - sym_declaration_list, + ACTIONS(6935), 2, + anon_sym_const, + sym_mutable_specifier, STATE(3342), 2, sym_line_comment, sym_block_comment, - [94536] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [95185] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6874), 1, - sym_identifier, - ACTIONS(6876), 1, - sym_mutable_specifier, + ACTIONS(5327), 1, + anon_sym_RPAREN, + ACTIONS(6747), 1, + anon_sym_SEMI, STATE(3343), 2, sym_line_comment, sym_block_comment, - [94553] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [95202] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5385), 1, - anon_sym_LBRACE, - STATE(727), 1, - sym_enum_variant_list, + ACTIONS(6789), 1, + anon_sym_LT, + STATE(1071), 1, + sym_type_parameters, STATE(3344), 2, sym_line_comment, sym_block_comment, - [94570] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [95219] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5544), 1, - anon_sym_PIPE, - ACTIONS(5673), 1, - anon_sym_COLON, + ACTIONS(6747), 1, + anon_sym_SEMI, + ACTIONS(6937), 1, + anon_sym_RPAREN, STATE(3345), 2, sym_line_comment, sym_block_comment, - [94587] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [95236] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4568), 1, - anon_sym_LPAREN, - STATE(2257), 1, - sym_parameters, + ACTIONS(6939), 2, + sym_float_literal, + sym_integer_literal, STATE(3346), 2, sym_line_comment, sym_block_comment, - [94604] = 5, - ACTIONS(27), 1, - anon_sym_PIPE, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [95251] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(238), 1, - sym_closure_parameters, + ACTIONS(4598), 1, + anon_sym_LPAREN, + STATE(2300), 1, + sym_parameters, STATE(3347), 2, sym_line_comment, sym_block_comment, - [94621] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [95268] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6704), 1, - anon_sym_SEMI, - ACTIONS(6878), 1, - anon_sym_RPAREN, + ACTIONS(6767), 1, + sym_identifier, + ACTIONS(6847), 1, + sym_super, STATE(3348), 2, sym_line_comment, sym_block_comment, - [94638] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [95285] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6704), 1, - anon_sym_SEMI, - ACTIONS(6878), 1, - anon_sym_RBRACK, + ACTIONS(6601), 2, + anon_sym_PIPE, + anon_sym_COMMA, STATE(3349), 2, sym_line_comment, sym_block_comment, - [94655] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [95300] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6704), 1, + ACTIONS(6747), 1, anon_sym_SEMI, - ACTIONS(6880), 1, - anon_sym_RPAREN, + ACTIONS(6937), 1, + anon_sym_RBRACK, STATE(3350), 2, sym_line_comment, sym_block_comment, - [94672] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [95317] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6704), 1, - anon_sym_SEMI, - ACTIONS(6880), 1, - anon_sym_RBRACK, + ACTIONS(6941), 2, + anon_sym_const, + sym_mutable_specifier, STATE(3351), 2, sym_line_comment, sym_block_comment, - [94689] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [95332] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4568), 1, - anon_sym_LPAREN, - STATE(2290), 1, - sym_parameters, + ACTIONS(5937), 2, + anon_sym_RPAREN, + anon_sym_COMMA, STATE(3352), 2, sym_line_comment, sym_block_comment, - [94706] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [95347] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4993), 1, - anon_sym_LBRACE, - STATE(720), 1, - sym_declaration_list, + ACTIONS(6855), 2, + sym_identifier, + sym_super, STATE(3353), 2, sym_line_comment, sym_block_comment, - [94723] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [95362] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6882), 2, + ACTIONS(6747), 1, + anon_sym_SEMI, + ACTIONS(6943), 1, anon_sym_RBRACE, - anon_sym_COMMA, STATE(3354), 2, sym_line_comment, sym_block_comment, - [94738] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [95379] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4971), 1, - anon_sym_LBRACE, - STATE(1327), 1, - sym_declaration_list, + ACTIONS(6847), 2, + sym_identifier, + sym_super, STATE(3355), 2, sym_line_comment, sym_block_comment, - [94755] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [95394] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5296), 1, - sym_super, - ACTIONS(5726), 1, - sym_identifier, + ACTIONS(5157), 1, + anon_sym_PLUS, + ACTIONS(6945), 1, + anon_sym_GT, STATE(3356), 2, sym_line_comment, sym_block_comment, - [94772] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [95411] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4971), 1, - anon_sym_LBRACE, - STATE(1328), 1, - sym_declaration_list, + ACTIONS(3368), 1, + anon_sym_LPAREN, + STATE(1388), 1, + sym_parameters, STATE(3357), 2, sym_line_comment, sym_block_comment, - [94789] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [95428] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5778), 2, - sym_identifier, - sym_super, + ACTIONS(3748), 1, + anon_sym_COLON, + ACTIONS(5399), 1, + anon_sym_PLUS, STATE(3358), 2, sym_line_comment, sym_block_comment, - [94804] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [95445] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6722), 1, - sym_super, - ACTIONS(6884), 1, - sym_identifier, + ACTIONS(5291), 1, + anon_sym_RPAREN, + ACTIONS(6747), 1, + anon_sym_SEMI, STATE(3359), 2, sym_line_comment, sym_block_comment, - [94821] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [95462] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4568), 1, - anon_sym_LPAREN, - STATE(2284), 1, - sym_parameters, + ACTIONS(6747), 1, + anon_sym_SEMI, + ACTIONS(6947), 1, + anon_sym_RPAREN, STATE(3360), 2, sym_line_comment, sym_block_comment, - [94838] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [95479] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5701), 1, - sym_identifier, - ACTIONS(5778), 1, - sym_super, + ACTIONS(5291), 1, + anon_sym_RBRACK, + ACTIONS(6747), 1, + anon_sym_SEMI, STATE(3361), 2, sym_line_comment, sym_block_comment, - [94855] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [95496] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4084), 1, - anon_sym_LT2, - STATE(1855), 1, - sym_type_arguments, + ACTIONS(6747), 1, + anon_sym_SEMI, + ACTIONS(6947), 1, + anon_sym_RBRACK, STATE(3362), 2, sym_line_comment, sym_block_comment, - [94872] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [95513] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5296), 1, - sym_super, - ACTIONS(5839), 1, - sym_identifier, + ACTIONS(5293), 1, + anon_sym_RPAREN, + ACTIONS(6747), 1, + anon_sym_SEMI, STATE(3363), 2, sym_line_comment, sym_block_comment, - [94889] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [95530] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6886), 1, + ACTIONS(5293), 1, + anon_sym_RBRACK, + ACTIONS(6747), 1, anon_sym_SEMI, - ACTIONS(6888), 1, - anon_sym_as, STATE(3364), 2, sym_line_comment, sym_block_comment, - [94906] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [95547] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5043), 1, - anon_sym_LBRACE, - STATE(650), 1, - sym_field_declaration_list, + ACTIONS(6747), 1, + anon_sym_SEMI, + ACTIONS(6949), 1, + anon_sym_RBRACE, STATE(3365), 2, sym_line_comment, sym_block_comment, - [94923] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [95564] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6890), 2, - sym_identifier, - sym_metavariable, + ACTIONS(5485), 2, + anon_sym_RPAREN, + anon_sym_COMMA, STATE(3366), 2, sym_line_comment, sym_block_comment, - [94938] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [95579] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6892), 1, - anon_sym_SEMI, - ACTIONS(6894), 1, - anon_sym_EQ, + ACTIONS(6951), 2, + anon_sym_RPAREN, + anon_sym_COMMA, STATE(3367), 2, sym_line_comment, sym_block_comment, - [94955] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [95594] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6896), 1, - anon_sym_LBRACK, - ACTIONS(6898), 1, - anon_sym_BANG, + ACTIONS(5327), 1, + anon_sym_RBRACK, + ACTIONS(6747), 1, + anon_sym_SEMI, STATE(3368), 2, sym_line_comment, sym_block_comment, - [94972] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [95611] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6900), 1, - anon_sym_STAR_SLASH, - ACTIONS(6902), 1, - sym__block_comment_content, + ACTIONS(6612), 2, + anon_sym_GT, + anon_sym_COMMA, STATE(3369), 2, sym_line_comment, sym_block_comment, - [94989] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [95626] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6904), 1, - anon_sym_LPAREN, - ACTIONS(6906), 1, - anon_sym_COLON_COLON, + ACTIONS(6783), 2, + sym_identifier, + sym_super, STATE(3370), 2, sym_line_comment, sym_block_comment, - [95006] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [95641] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6718), 1, - sym_super, - ACTIONS(6740), 1, - sym_identifier, + ACTIONS(4374), 1, + anon_sym_EQ_GT, + ACTIONS(6953), 1, + anon_sym_AMP_AMP, STATE(3371), 2, sym_line_comment, sym_block_comment, - [95023] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [95658] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6810), 2, - sym_identifier, - sym_super, + ACTIONS(6637), 1, + anon_sym_EQ_GT, + ACTIONS(6953), 1, + anon_sym_AMP_AMP, STATE(3372), 2, sym_line_comment, sym_block_comment, - [95038] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [95675] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6908), 1, - anon_sym_BANG, - ACTIONS(6910), 1, - anon_sym_COLON_COLON, + ACTIONS(5393), 1, + anon_sym_LBRACE, + STATE(1239), 1, + sym_enum_variant_list, STATE(3373), 2, sym_line_comment, sym_block_comment, - [95055] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [95692] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6766), 1, - sym_identifier, - ACTIONS(6784), 1, - sym_super, + ACTIONS(4928), 1, + anon_sym_LBRACE, + STATE(661), 1, + sym_declaration_list, STATE(3374), 2, sym_line_comment, sym_block_comment, - [95072] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [95709] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6724), 1, - anon_sym_LT, - STATE(1080), 1, - sym_type_parameters, + ACTIONS(4598), 1, + anon_sym_LPAREN, + STATE(2036), 1, + sym_parameters, STATE(3375), 2, sym_line_comment, sym_block_comment, - [95089] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [95726] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5778), 1, - sym_super, - ACTIONS(5822), 1, - sym_identifier, + ACTIONS(4598), 1, + anon_sym_LPAREN, + STATE(2317), 1, + sym_parameters, STATE(3376), 2, sym_line_comment, sym_block_comment, - [95106] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [95743] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6720), 1, - sym_identifier, - ACTIONS(6792), 1, - sym_super, + ACTIONS(4984), 1, + anon_sym_LBRACE, + STATE(1360), 1, + sym_declaration_list, STATE(3377), 2, sym_line_comment, sym_block_comment, - [95123] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [95760] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6912), 2, - sym_identifier, - sym_metavariable, + ACTIONS(4765), 1, + anon_sym_BANG, + ACTIONS(4844), 1, + anon_sym_COLON_COLON, STATE(3378), 2, sym_line_comment, sym_block_comment, - [95138] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [95777] = 5, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6138), 2, - anon_sym_RBRACE, - anon_sym_COMMA, + STATE(238), 1, + sym_closure_parameters, STATE(3379), 2, sym_line_comment, sym_block_comment, - [95153] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [95794] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4993), 1, - anon_sym_LBRACE, - STATE(586), 1, - sym_declaration_list, + ACTIONS(6747), 1, + anon_sym_SEMI, + ACTIONS(6955), 1, + anon_sym_RPAREN, STATE(3380), 2, sym_line_comment, sym_block_comment, - [95170] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [95811] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5082), 1, - anon_sym_PLUS, - ACTIONS(6914), 1, - anon_sym_GT, + ACTIONS(6747), 1, + anon_sym_SEMI, + ACTIONS(6955), 1, + anon_sym_RBRACK, STATE(3381), 2, sym_line_comment, sym_block_comment, - [95187] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [95828] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6708), 1, - anon_sym_LPAREN, - ACTIONS(6916), 1, - anon_sym_COLON_COLON, + ACTIONS(6747), 1, + anon_sym_SEMI, + ACTIONS(6957), 1, + anon_sym_RPAREN, STATE(3382), 2, sym_line_comment, sym_block_comment, - [95204] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [95845] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5043), 1, - anon_sym_LBRACE, - STATE(632), 1, - sym_field_declaration_list, + ACTIONS(6747), 1, + anon_sym_SEMI, + ACTIONS(6957), 1, + anon_sym_RBRACK, STATE(3383), 2, sym_line_comment, sym_block_comment, - [95221] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [95862] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4660), 1, - anon_sym_COLON_COLON, - ACTIONS(6623), 1, - anon_sym_for, + ACTIONS(6859), 2, + sym_identifier, + sym_super, STATE(3384), 2, sym_line_comment, sym_block_comment, - [95238] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [95877] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6627), 2, - anon_sym_GT, + ACTIONS(6639), 2, + anon_sym_RBRACE, anon_sym_COMMA, STATE(3385), 2, sym_line_comment, sym_block_comment, - [95253] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [95892] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4568), 1, - anon_sym_LPAREN, - STATE(2023), 1, - sym_parameters, + ACTIONS(5048), 1, + anon_sym_LBRACE, + STATE(1172), 1, + sym_field_declaration_list, STATE(3386), 2, sym_line_comment, sym_block_comment, - [95270] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [95909] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6708), 1, - anon_sym_LPAREN, - ACTIONS(6918), 1, - anon_sym_COLON_COLON, + ACTIONS(6650), 2, + anon_sym_RPAREN, + anon_sym_COMMA, STATE(3387), 2, sym_line_comment, sym_block_comment, - [95287] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [95924] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6724), 1, - anon_sym_LT, - STATE(953), 1, - sym_type_parameters, + ACTIONS(4984), 1, + anon_sym_LBRACE, + STATE(1092), 1, + sym_declaration_list, STATE(3388), 2, sym_line_comment, sym_block_comment, - [95304] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [95941] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5544), 1, - anon_sym_PIPE, - ACTIONS(6920), 1, - anon_sym_EQ, + ACTIONS(4984), 1, + anon_sym_LBRACE, + STATE(1093), 1, + sym_declaration_list, STATE(3389), 2, sym_line_comment, sym_block_comment, - [95321] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [95958] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3354), 1, - anon_sym_LPAREN, - STATE(1136), 1, - sym_parameters, + ACTIONS(5295), 1, + sym_super, + ACTIONS(5984), 1, + sym_identifier, STATE(3390), 2, sym_line_comment, sym_block_comment, - [95338] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [95975] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6922), 1, - anon_sym_LBRACK, - ACTIONS(6924), 1, - anon_sym_BANG, + ACTIONS(4598), 1, + anon_sym_LPAREN, + STATE(2323), 1, + sym_parameters, STATE(3391), 2, sym_line_comment, sym_block_comment, - [95355] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [95992] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6926), 2, + ACTIONS(5776), 2, sym_identifier, - sym_metavariable, + sym_super, STATE(3392), 2, sym_line_comment, sym_block_comment, - [95370] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [96007] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5544), 1, - anon_sym_PIPE, - ACTIONS(6928), 1, - anon_sym_in, + ACTIONS(6787), 1, + sym_super, + ACTIONS(6959), 1, + sym_identifier, STATE(3393), 2, sym_line_comment, sym_block_comment, - [95387] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [96024] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6930), 2, - sym_identifier, - sym_metavariable, + ACTIONS(5315), 1, + anon_sym_RBRACE, + ACTIONS(6747), 1, + anon_sym_SEMI, STATE(3394), 2, sym_line_comment, sym_block_comment, - [95402] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [96041] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6932), 2, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(6961), 2, + sym_float_literal, + sym_integer_literal, STATE(3395), 2, sym_line_comment, sym_block_comment, - [95417] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [96056] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4660), 1, - anon_sym_COLON_COLON, - ACTIONS(5074), 1, - anon_sym_for, + ACTIONS(5048), 1, + anon_sym_LBRACE, + STATE(1323), 1, + sym_field_declaration_list, STATE(3396), 2, sym_line_comment, sym_block_comment, - [95434] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [96073] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6934), 2, - anon_sym_RBRACE, - anon_sym_COMMA, + ACTIONS(6835), 1, + anon_sym_COLON_COLON, + ACTIONS(6917), 1, + anon_sym_RPAREN, STATE(3397), 2, sym_line_comment, sym_block_comment, - [95449] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [96090] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3930), 1, - anon_sym_COLON, - ACTIONS(5354), 1, - anon_sym_PLUS, + ACTIONS(4122), 1, + anon_sym_LT2, + STATE(1728), 1, + sym_type_arguments, STATE(3398), 2, sym_line_comment, sym_block_comment, - [95466] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [96107] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5440), 1, + ACTIONS(4928), 1, anon_sym_LBRACE, - STATE(1140), 1, - sym_enum_variant_list, + STATE(740), 1, + sym_declaration_list, STATE(3399), 2, sym_line_comment, sym_block_comment, - [95483] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [96124] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6722), 2, - sym_identifier, - sym_super, + ACTIONS(6963), 2, + anon_sym_GT, + anon_sym_COMMA, STATE(3400), 2, sym_line_comment, sym_block_comment, - [95498] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [96139] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5544), 1, - anon_sym_PIPE, - ACTIONS(6936), 1, - anon_sym_EQ, + ACTIONS(6965), 2, + sym_identifier, + sym_metavariable, STATE(3401), 2, sym_line_comment, sym_block_comment, - [95515] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [96154] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6792), 2, - sym_identifier, - sym_super, + ACTIONS(5416), 1, + anon_sym_LBRACE, + STATE(596), 1, + sym_enum_variant_list, STATE(3402), 2, sym_line_comment, sym_block_comment, - [95530] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [96171] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6938), 2, - sym_identifier, - sym_metavariable, + ACTIONS(6967), 2, + anon_sym_RPAREN, + anon_sym_COMMA, STATE(3403), 2, sym_line_comment, sym_block_comment, - [95545] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [96186] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4660), 1, - anon_sym_COLON_COLON, - ACTIONS(6646), 1, - anon_sym_for, + ACTIONS(6057), 2, + anon_sym_RPAREN, + anon_sym_COMMA, STATE(3404), 2, sym_line_comment, sym_block_comment, - [95562] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [96201] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6704), 1, - anon_sym_SEMI, - ACTIONS(6940), 1, - anon_sym_RBRACE, + ACTIONS(6969), 1, + anon_sym_LPAREN, + ACTIONS(6971), 1, + anon_sym_COLON_COLON, STATE(3405), 2, sym_line_comment, sym_block_comment, - [95579] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [96218] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4660), 1, - anon_sym_COLON_COLON, - ACTIONS(6650), 1, - anon_sym_for, + ACTIONS(5607), 1, + sym_super, + ACTIONS(6973), 1, + sym_identifier, STATE(3406), 2, sym_line_comment, sym_block_comment, - [95596] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [96235] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6718), 1, - sym_super, - ACTIONS(6840), 1, - sym_identifier, + ACTIONS(5333), 1, + anon_sym_RPAREN, + ACTIONS(6747), 1, + anon_sym_SEMI, STATE(3407), 2, sym_line_comment, sym_block_comment, - [95613] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [96252] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5544), 1, - anon_sym_PIPE, - ACTIONS(6942), 1, - anon_sym_in, + ACTIONS(6975), 1, + anon_sym_BANG, + ACTIONS(6977), 1, + anon_sym_COLON_COLON, STATE(3408), 2, sym_line_comment, sym_block_comment, - [95630] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [96269] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4660), 1, - anon_sym_COLON_COLON, - ACTIONS(6654), 1, - anon_sym_for, + ACTIONS(6783), 1, + sym_super, + ACTIONS(6979), 1, + sym_identifier, STATE(3409), 2, sym_line_comment, sym_block_comment, - [95647] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [96286] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6704), 1, - anon_sym_SEMI, - ACTIONS(6944), 1, - anon_sym_RBRACE, + ACTIONS(6789), 1, + anon_sym_LT, + STATE(1072), 1, + sym_type_parameters, STATE(3410), 2, sym_line_comment, sym_block_comment, - [95664] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [96303] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6946), 1, - anon_sym_LBRACK, - ACTIONS(6948), 1, - anon_sym_BANG, + ACTIONS(6885), 2, + sym_identifier, + sym_super, STATE(3411), 2, sym_line_comment, sym_block_comment, - [95681] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [96318] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5544), 1, - anon_sym_PIPE, - ACTIONS(6950), 1, - anon_sym_in, + ACTIONS(4598), 1, + anon_sym_LPAREN, + STATE(2292), 1, + sym_parameters, STATE(3412), 2, sym_line_comment, sym_block_comment, - [95698] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [96335] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5544), 1, - anon_sym_PIPE, - ACTIONS(6952), 1, - anon_sym_in, + ACTIONS(6981), 1, + anon_sym_SEMI, + ACTIONS(6983), 1, + anon_sym_as, STATE(3413), 2, sym_line_comment, sym_block_comment, - [95715] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [96352] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5544), 1, - anon_sym_PIPE, - ACTIONS(6954), 1, - anon_sym_in, + ACTIONS(5776), 1, + sym_super, + ACTIONS(5795), 1, + sym_identifier, STATE(3414), 2, sym_line_comment, sym_block_comment, - [95732] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [96369] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5544), 1, - anon_sym_PIPE, - ACTIONS(6956), 1, - anon_sym_in, + ACTIONS(5333), 1, + anon_sym_RBRACK, + ACTIONS(6747), 1, + anon_sym_SEMI, STATE(3415), 2, sym_line_comment, sym_block_comment, - [95749] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [96386] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4987), 1, - anon_sym_LT, - STATE(882), 1, - sym_type_parameters, + ACTIONS(5586), 1, + anon_sym_PIPE, + ACTIONS(6985), 1, + anon_sym_EQ, STATE(3416), 2, sym_line_comment, sym_block_comment, - [95766] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [96403] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6660), 1, + ACTIONS(6785), 1, sym_identifier, - ACTIONS(6664), 1, - sym_mutable_specifier, + ACTIONS(6859), 1, + sym_super, STATE(3417), 2, sym_line_comment, sym_block_comment, - [95783] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [96420] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4985), 1, - anon_sym_LBRACE, - STATE(1150), 1, - sym_field_declaration_list, + ACTIONS(5149), 1, + anon_sym_COLON, + STATE(2508), 1, + sym_trait_bounds, STATE(3418), 2, sym_line_comment, sym_block_comment, - [95800] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [96437] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4971), 1, - anon_sym_LBRACE, - STATE(1153), 1, - sym_declaration_list, + ACTIONS(6813), 1, + sym_identifier, + ACTIONS(6847), 1, + sym_super, STATE(3419), 2, sym_line_comment, sym_block_comment, - [95817] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [96454] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6958), 1, - sym_identifier, - ACTIONS(6960), 1, - sym_mutable_specifier, + ACTIONS(6743), 1, + anon_sym_LPAREN, + ACTIONS(6987), 1, + anon_sym_COLON_COLON, STATE(3420), 2, sym_line_comment, sym_block_comment, - [95834] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [96471] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4971), 1, - anon_sym_LBRACE, - STATE(1370), 1, - sym_declaration_list, + ACTIONS(6989), 1, + anon_sym_LBRACK, + ACTIONS(6991), 1, + anon_sym_BANG, STATE(3421), 2, sym_line_comment, sym_block_comment, - [95851] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [96488] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4568), 1, - anon_sym_LPAREN, - STATE(2010), 1, - sym_parameters, + ACTIONS(6993), 2, + sym_identifier, + sym_metavariable, STATE(3422), 2, sym_line_comment, sym_block_comment, - [95868] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [96503] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5043), 1, - anon_sym_LBRACE, - STATE(623), 1, - sym_field_declaration_list, + ACTIONS(5586), 1, + anon_sym_PIPE, + ACTIONS(6995), 1, + anon_sym_in, STATE(3423), 2, sym_line_comment, sym_block_comment, - [95885] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [96520] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6962), 1, - anon_sym_SEMI, + ACTIONS(6789), 1, + anon_sym_LT, + STATE(972), 1, + sym_type_parameters, STATE(3424), 2, sym_line_comment, sym_block_comment, - [95899] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [96537] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6964), 1, - sym_identifier, + ACTIONS(3368), 1, + anon_sym_LPAREN, + STATE(1396), 1, + sym_parameters, STATE(3425), 2, sym_line_comment, sym_block_comment, - [95913] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [96554] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6966), 1, + ACTIONS(6997), 2, sym_identifier, + sym_metavariable, STATE(3426), 2, sym_line_comment, sym_block_comment, - [95927] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [96569] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6106), 1, + ACTIONS(6999), 2, anon_sym_RBRACE, + anon_sym_COMMA, STATE(3427), 2, sym_line_comment, sym_block_comment, - [95941] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [96584] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6968), 1, - sym_identifier, + ACTIONS(4707), 1, + anon_sym_COLON_COLON, + ACTIONS(5137), 1, + anon_sym_for, STATE(3428), 2, sym_line_comment, sym_block_comment, - [95955] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [96601] = 5, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6970), 1, - anon_sym_SEMI, + STATE(222), 1, + sym_closure_parameters, STATE(3429), 2, sym_line_comment, sym_block_comment, - [95969] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [96618] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6972), 1, - anon_sym_RBRACE, + ACTIONS(5592), 1, + sym_super, + ACTIONS(6979), 1, + sym_identifier, STATE(3430), 2, sym_line_comment, sym_block_comment, - [95983] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [96635] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6974), 1, - sym_identifier, + ACTIONS(7001), 1, + anon_sym_SEMI, + ACTIONS(7003), 1, + anon_sym_as, STATE(3431), 2, sym_line_comment, sym_block_comment, - [95997] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [96652] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6976), 1, - sym_identifier, + ACTIONS(5393), 1, + anon_sym_LBRACE, + STATE(1224), 1, + sym_enum_variant_list, STATE(3432), 2, sym_line_comment, sym_block_comment, - [96011] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [96669] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6978), 1, + ACTIONS(7005), 2, sym_identifier, + sym_metavariable, STATE(3433), 2, sym_line_comment, sym_block_comment, - [96025] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [96684] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6980), 1, - sym_identifier, + ACTIONS(4707), 1, + anon_sym_COLON_COLON, + ACTIONS(6709), 1, + anon_sym_for, STATE(3434), 2, sym_line_comment, sym_block_comment, - [96039] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [96701] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6982), 1, - sym_identifier, + ACTIONS(4707), 1, + anon_sym_COLON_COLON, + ACTIONS(6711), 1, + anon_sym_for, STATE(3435), 2, sym_line_comment, sym_block_comment, - [96053] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [96718] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(961), 1, - anon_sym_EQ_GT, + ACTIONS(6833), 1, + sym_identifier, + ACTIONS(6859), 1, + sym_super, STATE(3436), 2, sym_line_comment, sym_block_comment, - [96067] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [96735] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6270), 1, - anon_sym_GT, + ACTIONS(5586), 1, + anon_sym_PIPE, + ACTIONS(7007), 1, + anon_sym_EQ, STATE(3437), 2, sym_line_comment, sym_block_comment, - [96081] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [96752] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6984), 1, - anon_sym_SEMI, + ACTIONS(3968), 1, + anon_sym_COLON, + ACTIONS(5399), 1, + anon_sym_PLUS, STATE(3438), 2, sym_line_comment, sym_block_comment, - [96095] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [96769] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4188), 1, - anon_sym_COLON_COLON, + ACTIONS(5586), 1, + anon_sym_PIPE, + ACTIONS(7009), 1, + anon_sym_in, STATE(3439), 2, sym_line_comment, sym_block_comment, - [96109] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [96786] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6986), 1, - sym__raw_string_literal_end, + ACTIONS(4707), 1, + anon_sym_COLON_COLON, + ACTIONS(6723), 1, + anon_sym_for, STATE(3440), 2, sym_line_comment, sym_block_comment, - [96123] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [96803] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4703), 1, - anon_sym_COLON_COLON, + ACTIONS(7011), 1, + anon_sym_LBRACK, + ACTIONS(7013), 1, + anon_sym_BANG, STATE(3441), 2, sym_line_comment, sym_block_comment, - [96137] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [96820] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6988), 1, - anon_sym_RBRACK, + ACTIONS(5586), 1, + anon_sym_PIPE, + ACTIONS(7015), 1, + anon_sym_in, STATE(3442), 2, sym_line_comment, sym_block_comment, - [96151] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [96837] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6990), 1, - sym_identifier, + ACTIONS(5586), 1, + anon_sym_PIPE, + ACTIONS(7017), 1, + anon_sym_in, STATE(3443), 2, sym_line_comment, sym_block_comment, - [96165] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [96854] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6992), 1, - anon_sym_SEMI, + ACTIONS(5586), 1, + anon_sym_PIPE, + ACTIONS(7019), 1, + anon_sym_in, STATE(3444), 2, sym_line_comment, sym_block_comment, - [96179] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [96871] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6994), 1, - anon_sym_EQ, + ACTIONS(5586), 1, + anon_sym_PIPE, + ACTIONS(7021), 1, + anon_sym_in, STATE(3445), 2, sym_line_comment, sym_block_comment, - [96193] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [96888] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6996), 1, - anon_sym_EQ_GT, + ACTIONS(4928), 1, + anon_sym_LBRACE, + STATE(662), 1, + sym_declaration_list, STATE(3446), 2, sym_line_comment, sym_block_comment, - [96207] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [96905] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6998), 1, + ACTIONS(6725), 1, sym_identifier, + ACTIONS(6729), 1, + sym_mutable_specifier, STATE(3447), 2, sym_line_comment, sym_block_comment, - [96221] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [96922] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5332), 1, - anon_sym_COLON_COLON, + ACTIONS(4984), 1, + anon_sym_LBRACE, + STATE(1140), 1, + sym_declaration_list, STATE(3448), 2, sym_line_comment, sym_block_comment, - [96235] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [96939] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4671), 1, - anon_sym_COLON_COLON, + ACTIONS(6733), 1, + sym_identifier, + ACTIONS(6737), 1, + sym_mutable_specifier, STATE(3449), 2, sym_line_comment, sym_block_comment, - [96249] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [96956] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4660), 1, - anon_sym_COLON_COLON, + ACTIONS(6747), 1, + anon_sym_SEMI, + ACTIONS(7023), 1, + anon_sym_RBRACE, STATE(3450), 2, sym_line_comment, sym_block_comment, - [96263] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [96973] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7000), 1, - anon_sym_EQ_GT, + ACTIONS(5048), 1, + anon_sym_LBRACE, + STATE(1236), 1, + sym_field_declaration_list, STATE(3451), 2, sym_line_comment, sym_block_comment, - [96277] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [96990] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(953), 1, - anon_sym_EQ_GT, + ACTIONS(7025), 1, + sym_identifier, + ACTIONS(7027), 1, + sym_mutable_specifier, STATE(3452), 2, sym_line_comment, sym_block_comment, - [96291] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [97007] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7002), 1, - sym_identifier, + ACTIONS(4984), 1, + anon_sym_LBRACE, + STATE(1366), 1, + sym_declaration_list, STATE(3453), 2, sym_line_comment, sym_block_comment, - [96305] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [97024] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7004), 1, - anon_sym_COLON, + ACTIONS(5359), 1, + anon_sym_RBRACE, + ACTIONS(6747), 1, + anon_sym_SEMI, STATE(3454), 2, sym_line_comment, sym_block_comment, - [96319] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [97041] = 5, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7006), 1, - anon_sym_fn, + ACTIONS(7029), 1, + anon_sym_LBRACK, + ACTIONS(7031), 1, + anon_sym_BANG, STATE(3455), 2, sym_line_comment, sym_block_comment, - [96333] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [97058] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7008), 1, - sym_identifier, + ACTIONS(7033), 1, + anon_sym_COLON_COLON, STATE(3456), 2, sym_line_comment, sym_block_comment, - [96347] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [97072] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7010), 1, - anon_sym_COLON_COLON, + ACTIONS(7035), 1, + sym_identifier, STATE(3457), 2, sym_line_comment, sym_block_comment, - [96361] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [97086] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7012), 1, + ACTIONS(7037), 1, sym_identifier, STATE(3458), 2, sym_line_comment, sym_block_comment, - [96375] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [97100] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7014), 1, + ACTIONS(7039), 1, sym_identifier, STATE(3459), 2, sym_line_comment, sym_block_comment, - [96389] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [97114] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7016), 1, - anon_sym_SEMI, + ACTIONS(7041), 1, + sym_identifier, STATE(3460), 2, sym_line_comment, sym_block_comment, - [96403] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [97128] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7018), 1, - anon_sym_COLON_COLON, + ACTIONS(7043), 1, + anon_sym_EQ, STATE(3461), 2, sym_line_comment, sym_block_comment, - [96417] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [97142] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5244), 1, - anon_sym_SEMI, + ACTIONS(3834), 1, + anon_sym_COLON_COLON, STATE(3462), 2, sym_line_comment, sym_block_comment, - [96431] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [97156] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7020), 1, - anon_sym_COLON, + ACTIONS(7045), 1, + anon_sym_SEMI, STATE(3463), 2, sym_line_comment, sym_block_comment, - [96445] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [97170] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7022), 1, - sym__raw_string_literal_end, + ACTIONS(7047), 1, + anon_sym_SEMI, STATE(3464), 2, sym_line_comment, sym_block_comment, - [96459] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [97184] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7024), 1, + ACTIONS(4224), 1, anon_sym_COLON_COLON, STATE(3465), 2, sym_line_comment, sym_block_comment, - [96473] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [97198] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7026), 1, + ACTIONS(7049), 1, sym_identifier, STATE(3466), 2, sym_line_comment, sym_block_comment, - [96487] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [97212] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7028), 1, + ACTIONS(4722), 1, anon_sym_COLON_COLON, STATE(3467), 2, sym_line_comment, sym_block_comment, - [96501] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [97226] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7030), 1, - sym_identifier, + ACTIONS(7051), 1, + anon_sym_STAR_SLASH, STATE(3468), 2, sym_line_comment, sym_block_comment, - [96515] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [97240] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7032), 1, - sym_identifier, + ACTIONS(4948), 1, + anon_sym_COLON_COLON, STATE(3469), 2, sym_line_comment, sym_block_comment, - [96529] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [97254] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7034), 1, - sym_identifier, + ACTIONS(4248), 1, + anon_sym_RPAREN, STATE(3470), 2, sym_line_comment, sym_block_comment, - [96543] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [97268] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7036), 1, - sym_identifier, + ACTIONS(884), 1, + anon_sym_RBRACK, STATE(3471), 2, sym_line_comment, sym_block_comment, - [96557] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [97282] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7038), 1, - sym_identifier, + ACTIONS(7053), 1, + anon_sym_COLON, STATE(3472), 2, sym_line_comment, sym_block_comment, - [96571] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [97296] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7040), 1, - anon_sym_RBRACK, + ACTIONS(7055), 1, + sym_identifier, STATE(3473), 2, sym_line_comment, sym_block_comment, - [96585] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [97310] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6780), 1, - anon_sym_SEMI, + ACTIONS(4728), 1, + anon_sym_COLON_COLON, STATE(3474), 2, sym_line_comment, sym_block_comment, - [96599] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [97324] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7042), 1, - anon_sym_RPAREN, + ACTIONS(4707), 1, + anon_sym_COLON_COLON, STATE(3475), 2, sym_line_comment, sym_block_comment, - [96613] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [97338] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7044), 1, - sym_identifier, + ACTIONS(942), 1, + anon_sym_EQ_GT, STATE(3476), 2, sym_line_comment, sym_block_comment, - [96627] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [97352] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7046), 1, - anon_sym_fn, + ACTIONS(5323), 1, + anon_sym_SEMI, STATE(3477), 2, sym_line_comment, sym_block_comment, - [96641] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [97366] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(871), 1, - anon_sym_RBRACK, + ACTIONS(6380), 1, + anon_sym_RBRACE, STATE(3478), 2, sym_line_comment, sym_block_comment, - [96655] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [97380] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7048), 1, - anon_sym_SEMI, + ACTIONS(7057), 1, + sym_self, STATE(3479), 2, sym_line_comment, sym_block_comment, - [96669] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [97394] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7050), 1, - anon_sym_LPAREN, + ACTIONS(7059), 1, + anon_sym_fn, STATE(3480), 2, sym_line_comment, sym_block_comment, - [96683] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [97408] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7052), 1, - anon_sym_SEMI, + ACTIONS(7061), 1, + anon_sym_LPAREN, STATE(3481), 2, sym_line_comment, sym_block_comment, - [96697] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [97422] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7054), 1, - anon_sym_COLON, + ACTIONS(7063), 1, + anon_sym_COLON_COLON, STATE(3482), 2, sym_line_comment, sym_block_comment, - [96711] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [97436] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7056), 1, - anon_sym_EQ_GT, + ACTIONS(7065), 1, + anon_sym_SEMI, STATE(3483), 2, sym_line_comment, sym_block_comment, - [96725] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [97450] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7058), 1, - sym_identifier, + ACTIONS(7067), 1, + anon_sym_SEMI, STATE(3484), 2, sym_line_comment, sym_block_comment, - [96739] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [97464] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4975), 1, - anon_sym_COLON_COLON, + ACTIONS(5528), 1, + anon_sym_RPAREN, STATE(3485), 2, sym_line_comment, sym_block_comment, - [96753] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [97478] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7060), 1, - sym_identifier, + ACTIONS(7069), 1, + anon_sym_fn, STATE(3486), 2, sym_line_comment, sym_block_comment, - [96767] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [97492] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7062), 1, - anon_sym_COLON_COLON, + ACTIONS(7071), 1, + anon_sym_RBRACK, STATE(3487), 2, sym_line_comment, sym_block_comment, - [96781] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [97506] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7064), 1, - anon_sym_fn, + ACTIONS(7073), 1, + anon_sym_COLON_COLON, STATE(3488), 2, sym_line_comment, sym_block_comment, - [96795] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [97520] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5242), 1, - anon_sym_SEMI, + ACTIONS(7075), 1, + sym__raw_string_literal_end, STATE(3489), 2, sym_line_comment, sym_block_comment, - [96809] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [97534] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5871), 1, - anon_sym_LBRACE, + ACTIONS(7077), 1, + anon_sym_LT2, STATE(3490), 2, sym_line_comment, sym_block_comment, - [96823] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [97548] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5556), 1, - anon_sym_RPAREN, + ACTIONS(7079), 1, + sym_identifier, STATE(3491), 2, sym_line_comment, sym_block_comment, - [96837] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [97562] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6132), 1, + ACTIONS(6142), 1, anon_sym_RBRACE, STATE(3492), 2, sym_line_comment, sym_block_comment, - [96851] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [97576] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7066), 1, - sym_identifier, + ACTIONS(7081), 1, + anon_sym_COLON_COLON, STATE(3493), 2, sym_line_comment, sym_block_comment, - [96865] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [97590] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7068), 1, - anon_sym_SEMI, + ACTIONS(7083), 1, + sym_identifier, STATE(3494), 2, sym_line_comment, sym_block_comment, - [96879] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [97604] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7070), 1, + ACTIONS(7085), 1, sym_identifier, STATE(3495), 2, sym_line_comment, sym_block_comment, - [96893] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [97618] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7072), 1, - sym__line_doc_content, + ACTIONS(7087), 1, + sym_identifier, STATE(3496), 2, sym_line_comment, sym_block_comment, - [96907] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [97632] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7074), 1, - anon_sym_COLON, + ACTIONS(7089), 1, + sym_identifier, STATE(3497), 2, sym_line_comment, sym_block_comment, - [96921] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [97646] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7076), 1, - anon_sym_SEMI, + ACTIONS(7091), 1, + sym_identifier, STATE(3498), 2, sym_line_comment, sym_block_comment, - [96935] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [97660] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7078), 1, - anon_sym_RBRACE, + ACTIONS(5315), 1, + anon_sym_SEMI, STATE(3499), 2, sym_line_comment, sym_block_comment, - [96949] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [97674] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7080), 1, - anon_sym_SEMI, + ACTIONS(7093), 1, + anon_sym_COLON, STATE(3500), 2, sym_line_comment, sym_block_comment, - [96963] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [97688] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7082), 1, + ACTIONS(7095), 1, anon_sym_SEMI, STATE(3501), 2, sym_line_comment, sym_block_comment, - [96977] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [97702] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7084), 1, - sym__line_doc_content, + ACTIONS(956), 1, + anon_sym_EQ_GT, STATE(3502), 2, sym_line_comment, sym_block_comment, - [96991] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [97716] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7086), 1, - anon_sym_COLON, + ACTIONS(880), 1, + anon_sym_RBRACK, STATE(3503), 2, sym_line_comment, sym_block_comment, - [97005] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [97730] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7088), 1, - sym_identifier, + ACTIONS(7097), 1, + anon_sym_COLON, STATE(3504), 2, sym_line_comment, sym_block_comment, - [97019] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [97744] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7090), 1, - sym_identifier, + ACTIONS(7099), 1, + anon_sym_SEMI, STATE(3505), 2, sym_line_comment, sym_block_comment, - [97033] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [97758] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7092), 1, - sym_identifier, + ACTIONS(7101), 1, + anon_sym_SEMI, STATE(3506), 2, sym_line_comment, sym_block_comment, - [97047] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [97772] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5232), 1, + ACTIONS(6943), 1, anon_sym_SEMI, STATE(3507), 2, sym_line_comment, sym_block_comment, - [97061] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [97786] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7094), 1, - anon_sym_SEMI, + ACTIONS(7103), 1, + sym_identifier, STATE(3508), 2, sym_line_comment, sym_block_comment, - [97075] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [97800] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5671), 1, - anon_sym_RPAREN, + ACTIONS(1010), 1, + anon_sym_RBRACK, STATE(3509), 2, sym_line_comment, sym_block_comment, - [97089] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [97814] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7096), 1, + ACTIONS(7105), 1, anon_sym_RBRACK, STATE(3510), 2, sym_line_comment, sym_block_comment, - [97103] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [97828] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7098), 1, - anon_sym_RBRACE, + ACTIONS(4908), 1, + anon_sym_COLON_COLON, STATE(3511), 2, sym_line_comment, sym_block_comment, - [97117] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [97842] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5923), 1, - anon_sym_RPAREN, + ACTIONS(7107), 1, + sym_identifier, STATE(3512), 2, sym_line_comment, sym_block_comment, - [97131] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [97856] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4791), 1, + ACTIONS(7109), 1, anon_sym_COLON_COLON, STATE(3513), 2, sym_line_comment, sym_block_comment, - [97145] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [97870] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7100), 1, - anon_sym_SEMI, + ACTIONS(7111), 1, + anon_sym_fn, STATE(3514), 2, sym_line_comment, sym_block_comment, - [97159] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [97884] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7102), 1, - anon_sym_SEMI, + ACTIONS(7113), 1, + sym_identifier, STATE(3515), 2, sym_line_comment, sym_block_comment, - [97173] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [97898] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7104), 1, - anon_sym_LT, + ACTIONS(5905), 1, + anon_sym_LBRACE, STATE(3516), 2, sym_line_comment, sym_block_comment, - [97187] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [97912] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3188), 1, - anon_sym_PLUS, + ACTIONS(7115), 1, + anon_sym_SEMI, STATE(3517), 2, sym_line_comment, sym_block_comment, - [97201] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [97926] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7106), 1, - anon_sym_SEMI, + ACTIONS(6160), 1, + anon_sym_RBRACE, STATE(3518), 2, sym_line_comment, sym_block_comment, - [97215] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [97940] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6704), 1, + ACTIONS(7117), 1, anon_sym_SEMI, STATE(3519), 2, sym_line_comment, sym_block_comment, - [97229] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [97954] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7108), 1, + ACTIONS(7119), 1, sym_identifier, STATE(3520), 2, sym_line_comment, sym_block_comment, - [97243] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [97968] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7110), 1, - anon_sym_COLON, + ACTIONS(7121), 1, + sym_identifier, STATE(3521), 2, sym_line_comment, sym_block_comment, - [97257] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [97982] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7112), 1, - anon_sym_LT2, + ACTIONS(6530), 1, + anon_sym_RBRACE, STATE(3522), 2, sym_line_comment, sym_block_comment, - [97271] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [97996] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6407), 1, - anon_sym_GT, + ACTIONS(7123), 1, + anon_sym_RBRACE, STATE(3523), 2, sym_line_comment, sym_block_comment, - [97285] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [98010] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6118), 1, - anon_sym_RBRACE, + ACTIONS(7125), 1, + sym__raw_string_literal_end, STATE(3524), 2, sym_line_comment, sym_block_comment, - [97299] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [98024] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7114), 1, - anon_sym_SEMI, + ACTIONS(7127), 1, + anon_sym_COLON, STATE(3525), 2, sym_line_comment, sym_block_comment, - [97313] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [98038] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7116), 1, - sym_self, + ACTIONS(7129), 1, + anon_sym_LBRACK, STATE(3526), 2, sym_line_comment, sym_block_comment, - [97327] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [98052] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7118), 1, - anon_sym_EQ_GT, + ACTIONS(7131), 1, + anon_sym_SEMI, STATE(3527), 2, sym_line_comment, sym_block_comment, - [97341] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [98066] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7120), 1, - anon_sym_SEMI, + ACTIONS(7133), 1, + sym_identifier, STATE(3528), 2, sym_line_comment, sym_block_comment, - [97355] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [98080] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7122), 1, - sym__raw_string_literal_end, + ACTIONS(7135), 1, + anon_sym_SEMI, STATE(3529), 2, sym_line_comment, sym_block_comment, - [97369] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [98094] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7124), 1, + ACTIONS(7137), 1, anon_sym_SEMI, STATE(3530), 2, sym_line_comment, sym_block_comment, - [97383] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [98108] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7126), 1, - anon_sym_RBRACE, + ACTIONS(6949), 1, + anon_sym_SEMI, STATE(3531), 2, sym_line_comment, sym_block_comment, - [97397] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [98122] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7128), 1, - anon_sym_SEMI, + ACTIONS(7139), 1, + sym_identifier, STATE(3532), 2, sym_line_comment, sym_block_comment, - [97411] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [98136] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7130), 1, - anon_sym_SEMI, + ACTIONS(7141), 1, + sym_identifier, STATE(3533), 2, sym_line_comment, sym_block_comment, - [97425] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [98150] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7132), 1, + ACTIONS(7143), 1, anon_sym_RPAREN, STATE(3534), 2, sym_line_comment, sym_block_comment, - [97439] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [98164] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7134), 1, - sym_identifier, + ACTIONS(7145), 1, + anon_sym_RBRACE, STATE(3535), 2, sym_line_comment, sym_block_comment, - [97453] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [98178] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7136), 1, - anon_sym_fn, + ACTIONS(7147), 1, + sym_identifier, STATE(3536), 2, sym_line_comment, sym_block_comment, - [97467] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [98192] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7138), 1, - sym_identifier, + ACTIONS(7149), 1, + anon_sym_SEMI, STATE(3537), 2, sym_line_comment, sym_block_comment, - [97481] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [98206] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7140), 1, - sym_identifier, + ACTIONS(4838), 1, + anon_sym_COLON_COLON, STATE(3538), 2, sym_line_comment, sym_block_comment, - [97495] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [98220] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7142), 1, - anon_sym_SEMI, + ACTIONS(7151), 1, + anon_sym_LBRACK, STATE(3539), 2, sym_line_comment, sym_block_comment, - [97509] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [98234] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7144), 1, + ACTIONS(6747), 1, anon_sym_SEMI, STATE(3540), 2, sym_line_comment, sym_block_comment, - [97523] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [98248] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7146), 1, - anon_sym_SEMI, + ACTIONS(3216), 1, + anon_sym_PLUS, STATE(3541), 2, sym_line_comment, sym_block_comment, - [97537] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [98262] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7148), 1, - anon_sym_EQ_GT, + ACTIONS(7153), 1, + sym_identifier, STATE(3542), 2, sym_line_comment, sym_block_comment, - [97551] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [98276] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7150), 1, - anon_sym_SEMI, + ACTIONS(7155), 1, + sym_identifier, STATE(3543), 2, sym_line_comment, sym_block_comment, - [97565] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [98290] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5007), 1, - anon_sym_COLON_COLON, + ACTIONS(7157), 1, + anon_sym_SEMI, STATE(3544), 2, sym_line_comment, sym_block_comment, - [97579] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [98304] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5631), 1, + ACTIONS(5933), 1, anon_sym_RPAREN, STATE(3545), 2, sym_line_comment, sym_block_comment, - [97593] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [98318] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7152), 1, + ACTIONS(7159), 1, anon_sym_SEMI, STATE(3546), 2, sym_line_comment, sym_block_comment, - [97607] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [98332] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6076), 1, - anon_sym_RBRACE, + ACTIONS(7161), 1, + anon_sym_EQ_GT, STATE(3547), 2, sym_line_comment, sym_block_comment, - [97621] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [98346] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7154), 1, - anon_sym_COLON, + ACTIONS(7163), 1, + anon_sym_SEMI, STATE(3548), 2, sym_line_comment, sym_block_comment, - [97635] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [98360] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7156), 1, - anon_sym_STAR_SLASH, + ACTIONS(7165), 1, + sym__raw_string_literal_end, STATE(3549), 2, sym_line_comment, sym_block_comment, - [97649] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [98374] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7158), 1, - anon_sym_SEMI, + ACTIONS(7167), 1, + anon_sym_LT2, STATE(3550), 2, sym_line_comment, sym_block_comment, - [97663] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [98388] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4028), 1, - anon_sym_COLON_COLON, + ACTIONS(7169), 1, + anon_sym_STAR_SLASH, STATE(3551), 2, sym_line_comment, sym_block_comment, - [97677] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [98402] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7160), 1, - anon_sym_COLON_COLON, + ACTIONS(7171), 1, + sym_identifier, STATE(3552), 2, sym_line_comment, sym_block_comment, - [97691] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [98416] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7162), 1, + ACTIONS(7173), 1, anon_sym_RBRACE, STATE(3553), 2, sym_line_comment, sym_block_comment, - [97705] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [98430] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3846), 1, - anon_sym_COLON_COLON, + ACTIONS(7175), 1, + anon_sym_SEMI, STATE(3554), 2, sym_line_comment, sym_block_comment, - [97719] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [98444] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7164), 1, - anon_sym_EQ_GT, + ACTIONS(7177), 1, + anon_sym_SEMI, STATE(3555), 2, sym_line_comment, sym_block_comment, - [97733] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [98458] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(883), 1, - anon_sym_RBRACK, + ACTIONS(7179), 1, + anon_sym_SEMI, STATE(3556), 2, sym_line_comment, sym_block_comment, - [97747] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [98472] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6756), 1, - anon_sym_SEMI, + ACTIONS(7181), 1, + anon_sym_COLON, STATE(3557), 2, sym_line_comment, sym_block_comment, - [97761] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [98486] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7166), 1, - anon_sym_fn, + ACTIONS(6621), 1, + anon_sym_GT, STATE(3558), 2, sym_line_comment, sym_block_comment, - [97775] = 4, - ACTIONS(103), 1, + [98500] = 4, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6006), 1, - anon_sym_RPAREN, + ACTIONS(7183), 1, + aux_sym_line_comment_token2, STATE(3559), 2, sym_line_comment, sym_block_comment, - [97789] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [98514] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7168), 1, - anon_sym_RBRACK, + ACTIONS(7185), 1, + anon_sym_SEMI, STATE(3560), 2, sym_line_comment, sym_block_comment, - [97803] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [98528] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7170), 1, - sym__line_doc_content, + ACTIONS(7187), 1, + sym_identifier, STATE(3561), 2, sym_line_comment, sym_block_comment, - [97817] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [98542] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7172), 1, - anon_sym_SEMI, + ACTIONS(5633), 1, + anon_sym_RPAREN, STATE(3562), 2, sym_line_comment, sym_block_comment, - [97831] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [98556] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7174), 1, - sym_identifier, + ACTIONS(7189), 1, + anon_sym_RBRACK, STATE(3563), 2, sym_line_comment, sym_block_comment, - [97845] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [98570] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7176), 1, - sym_identifier, + ACTIONS(7191), 1, + anon_sym_SEMI, STATE(3564), 2, sym_line_comment, sym_block_comment, - [97859] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [98584] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6151), 1, - anon_sym_RBRACE, + ACTIONS(7193), 1, + sym_identifier, STATE(3565), 2, sym_line_comment, sym_block_comment, - [97873] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [98598] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7178), 1, - anon_sym_SEMI, + ACTIONS(7195), 1, + anon_sym_COLON, STATE(3566), 2, sym_line_comment, sym_block_comment, - [97887] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [98612] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7180), 1, - anon_sym_SEMI, + ACTIONS(6120), 1, + anon_sym_RBRACE, STATE(3567), 2, sym_line_comment, sym_block_comment, - [97901] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [98626] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6050), 1, + ACTIONS(6156), 1, anon_sym_RBRACE, STATE(3568), 2, sym_line_comment, sym_block_comment, - [97915] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [98640] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7182), 1, - anon_sym_SEMI, + ACTIONS(7197), 1, + sym_identifier, STATE(3569), 2, sym_line_comment, sym_block_comment, - [97929] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [98654] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7184), 1, - anon_sym_STAR_SLASH, + ACTIONS(7199), 1, + sym_identifier, STATE(3570), 2, sym_line_comment, sym_block_comment, - [97943] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [98668] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7186), 1, - sym__line_doc_content, + ACTIONS(7201), 1, + sym_identifier, STATE(3571), 2, sym_line_comment, sym_block_comment, - [97957] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [98682] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7188), 1, + ACTIONS(7203), 1, anon_sym_SEMI, STATE(3572), 2, sym_line_comment, sym_block_comment, - [97971] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [98696] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7190), 1, - sym_identifier, + ACTIONS(7205), 1, + anon_sym_COLON, STATE(3573), 2, sym_line_comment, sym_block_comment, - [97985] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [98710] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7192), 1, - anon_sym_SEMI, + ACTIONS(7207), 1, + sym__line_doc_content, STATE(3574), 2, sym_line_comment, sym_block_comment, - [97999] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [98724] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7194), 1, - anon_sym_SEMI, + ACTIONS(3758), 1, + anon_sym_COLON_COLON, STATE(3575), 2, sym_line_comment, sym_block_comment, - [98013] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [98738] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7196), 1, - anon_sym_COLON, + ACTIONS(7209), 1, + anon_sym_SEMI, STATE(3576), 2, sym_line_comment, sym_block_comment, - [98027] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [98752] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7198), 1, - anon_sym_SEMI, + ACTIONS(7211), 1, + anon_sym_RBRACK, STATE(3577), 2, sym_line_comment, sym_block_comment, - [98041] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [98766] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7200), 1, - sym_identifier, + ACTIONS(7213), 1, + anon_sym_SEMI, STATE(3578), 2, sym_line_comment, sym_block_comment, - [98055] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [98780] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7202), 1, - anon_sym_COLON, + ACTIONS(7215), 1, + anon_sym_SEMI, STATE(3579), 2, sym_line_comment, sym_block_comment, - [98069] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [98794] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7204), 1, - sym_identifier, + ACTIONS(7217), 1, + anon_sym_SEMI, STATE(3580), 2, sym_line_comment, sym_block_comment, - [98083] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [98808] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7206), 1, - sym_raw_string_literal_content, + ACTIONS(5371), 1, + anon_sym_COLON_COLON, STATE(3581), 2, sym_line_comment, sym_block_comment, - [98097] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [98822] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7208), 1, - sym_raw_string_literal_content, + ACTIONS(7219), 1, + anon_sym_COLON, STATE(3582), 2, sym_line_comment, sym_block_comment, - [98111] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [98836] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5786), 1, - anon_sym_RPAREN, + ACTIONS(7221), 1, + anon_sym_fn, STATE(3583), 2, sym_line_comment, sym_block_comment, - [98125] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [98850] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7210), 1, - anon_sym_SEMI, + ACTIONS(6388), 1, + anon_sym_RBRACE, STATE(3584), 2, sym_line_comment, sym_block_comment, - [98139] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [98864] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7212), 1, + ACTIONS(7223), 1, anon_sym_SEMI, STATE(3585), 2, sym_line_comment, sym_block_comment, - [98153] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [98878] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4224), 1, - anon_sym_COLON_COLON, + ACTIONS(7225), 1, + anon_sym_SEMI, STATE(3586), 2, sym_line_comment, sym_block_comment, - [98167] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [98892] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5770), 1, - anon_sym_COLON_COLON, + ACTIONS(5853), 1, + anon_sym_LBRACE, STATE(3587), 2, sym_line_comment, sym_block_comment, - [98181] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [98906] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7214), 1, - sym_identifier, + ACTIONS(7227), 1, + sym__line_doc_content, STATE(3588), 2, sym_line_comment, sym_block_comment, - [98195] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [98920] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5790), 1, - anon_sym_RBRACK, + ACTIONS(7229), 1, + anon_sym_SEMI, STATE(3589), 2, sym_line_comment, sym_block_comment, - [98209] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [98934] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7216), 1, - anon_sym_SEMI, + ACTIONS(7231), 1, + sym_identifier, STATE(3590), 2, sym_line_comment, sym_block_comment, - [98223] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [98948] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7218), 1, - anon_sym_COLON_COLON, + ACTIONS(7233), 1, + anon_sym_fn, STATE(3591), 2, sym_line_comment, sym_block_comment, - [98237] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [98962] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7220), 1, - anon_sym_RBRACE, + ACTIONS(7235), 1, + sym_identifier, STATE(3592), 2, sym_line_comment, sym_block_comment, - [98251] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [98976] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7222), 1, - sym__raw_string_literal_end, + ACTIONS(7237), 1, + sym_identifier, STATE(3593), 2, sym_line_comment, sym_block_comment, - [98265] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [98990] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7224), 1, - sym__raw_string_literal_end, + ACTIONS(7239), 1, + anon_sym_RBRACK, STATE(3594), 2, sym_line_comment, sym_block_comment, - [98279] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [99004] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7226), 1, - anon_sym_fn, + ACTIONS(7241), 1, + sym__line_doc_content, STATE(3595), 2, sym_line_comment, sym_block_comment, - [98293] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [99018] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7228), 1, - anon_sym_SEMI, + ACTIONS(4671), 1, + anon_sym_fn, STATE(3596), 2, sym_line_comment, sym_block_comment, - [98307] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [99032] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7230), 1, - anon_sym_COLON_COLON, + ACTIONS(7243), 1, + anon_sym_EQ, STATE(3597), 2, sym_line_comment, sym_block_comment, - [98321] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [99046] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7232), 1, - sym__line_doc_content, + ACTIONS(7245), 1, + anon_sym_SEMI, STATE(3598), 2, sym_line_comment, sym_block_comment, - [98335] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [99060] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4242), 1, - anon_sym_RPAREN, + ACTIONS(7247), 1, + sym_identifier, STATE(3599), 2, sym_line_comment, sym_block_comment, - [98349] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [99074] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7234), 1, - anon_sym_COLON_COLON, + ACTIONS(7249), 1, + anon_sym_RBRACE, STATE(3600), 2, sym_line_comment, sym_block_comment, - [98363] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [99088] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7236), 1, - anon_sym_LT2, + ACTIONS(7251), 1, + anon_sym_RBRACE, STATE(3601), 2, sym_line_comment, sym_block_comment, - [98377] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [99102] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7238), 1, - anon_sym_RBRACE, + ACTIONS(7253), 1, + anon_sym_RBRACK, STATE(3602), 2, sym_line_comment, sym_block_comment, - [98391] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [99116] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5019), 1, - anon_sym_COLON_COLON, + ACTIONS(7255), 1, + sym__line_doc_content, STATE(3603), 2, sym_line_comment, sym_block_comment, - [98405] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [99130] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7240), 1, - anon_sym_SEMI, + ACTIONS(7257), 1, + anon_sym_COLON_COLON, STATE(3604), 2, sym_line_comment, sym_block_comment, - [98419] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [99144] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7242), 1, - anon_sym_COLON_COLON, + ACTIONS(7259), 1, + sym__raw_string_literal_end, STATE(3605), 2, sym_line_comment, sym_block_comment, - [98433] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [99158] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7244), 1, - anon_sym_fn, + ACTIONS(4060), 1, + anon_sym_COLON_COLON, STATE(3606), 2, sym_line_comment, sym_block_comment, - [98447] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [99172] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7246), 1, - anon_sym_LBRACK, + ACTIONS(7261), 1, + anon_sym_EQ_GT, STATE(3607), 2, sym_line_comment, sym_block_comment, - [98461] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [99186] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7248), 1, - anon_sym_LBRACE, + ACTIONS(7263), 1, + anon_sym_SEMI, STATE(3608), 2, sym_line_comment, sym_block_comment, - [98475] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [99200] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7250), 1, - sym_identifier, + ACTIONS(7265), 1, + anon_sym_RBRACK, STATE(3609), 2, sym_line_comment, sym_block_comment, - [98489] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [99214] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(913), 1, - anon_sym_RBRACK, + ACTIONS(7267), 1, + sym_identifier, STATE(3610), 2, sym_line_comment, sym_block_comment, - [98503] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [99228] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7252), 1, + ACTIONS(7269), 1, sym_identifier, STATE(3611), 2, sym_line_comment, sym_block_comment, - [98517] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [99242] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5929), 1, - anon_sym_RPAREN, + ACTIONS(7271), 1, + anon_sym_COLON, STATE(3612), 2, sym_line_comment, sym_block_comment, - [98531] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [99256] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7254), 1, - sym_identifier, + ACTIONS(7273), 1, + sym_raw_string_literal_content, STATE(3613), 2, sym_line_comment, sym_block_comment, - [98545] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [99270] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7256), 1, - anon_sym_LT2, + ACTIONS(7275), 1, + sym_identifier, STATE(3614), 2, sym_line_comment, sym_block_comment, - [98559] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [99284] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7258), 1, - sym_identifier, + ACTIONS(7277), 1, + anon_sym_RPAREN, STATE(3615), 2, sym_line_comment, sym_block_comment, - [98573] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [99298] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4614), 1, - anon_sym_fn, + ACTIONS(7279), 1, + anon_sym_RBRACE, STATE(3616), 2, sym_line_comment, sym_block_comment, - [98587] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [99312] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7260), 1, - sym_raw_string_literal_content, + ACTIONS(4236), 1, + anon_sym_COLON_COLON, STATE(3617), 2, sym_line_comment, sym_block_comment, - [98601] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [99326] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7262), 1, - anon_sym_RPAREN, + ACTIONS(5883), 1, + anon_sym_COLON_COLON, STATE(3618), 2, sym_line_comment, sym_block_comment, - [98615] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [99340] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4107), 1, - sym_identifier, + ACTIONS(926), 1, + anon_sym_RBRACK, STATE(3619), 2, sym_line_comment, sym_block_comment, - [98629] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [99354] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5993), 1, - anon_sym_RBRACK, + ACTIONS(5359), 1, + anon_sym_SEMI, STATE(3620), 2, sym_line_comment, sym_block_comment, - [98643] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [99368] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7264), 1, + ACTIONS(7281), 1, anon_sym_COLON_COLON, STATE(3621), 2, sym_line_comment, sym_block_comment, - [98657] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [99382] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7266), 1, - anon_sym_SEMI, + ACTIONS(6447), 1, + anon_sym_GT, STATE(3622), 2, sym_line_comment, sym_block_comment, - [98671] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [99396] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5881), 1, - anon_sym_LBRACE, + ACTIONS(6019), 1, + anon_sym_RPAREN, STATE(3623), 2, sym_line_comment, sym_block_comment, - [98685] = 4, - ACTIONS(103), 1, + [99410] = 4, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(7283), 1, + anon_sym_fn, + STATE(3624), 2, + sym_line_comment, + sym_block_comment, + [99424] = 4, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(7285), 1, + anon_sym_SEMI, + STATE(3625), 2, + sym_line_comment, + sym_block_comment, + [99438] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7268), 1, + ACTIONS(7287), 1, anon_sym_COLON_COLON, - STATE(3624), 2, + STATE(3626), 2, sym_line_comment, sym_block_comment, - [98699] = 4, - ACTIONS(103), 1, + [99452] = 4, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(6539), 1, + anon_sym_RBRACE, + STATE(3627), 2, + sym_line_comment, + sym_block_comment, + [99466] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7270), 1, + ACTIONS(6031), 1, anon_sym_RBRACK, - STATE(3625), 2, + STATE(3628), 2, sym_line_comment, sym_block_comment, - [98713] = 4, - ACTIONS(103), 1, + [99480] = 4, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(7289), 1, + sym__raw_string_literal_end, + STATE(3629), 2, + sym_line_comment, + sym_block_comment, + [99494] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5955), 1, - anon_sym_RPAREN, - STATE(3626), 2, + ACTIONS(7291), 1, + anon_sym_RBRACK, + STATE(3630), 2, + sym_line_comment, + sym_block_comment, + [99508] = 4, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(4944), 1, + anon_sym_COLON_COLON, + STATE(3631), 2, sym_line_comment, sym_block_comment, - [98727] = 4, - ACTIONS(103), 1, + [99522] = 4, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(5813), 1, + anon_sym_RBRACK, + STATE(3632), 2, + sym_line_comment, + sym_block_comment, + [99536] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7272), 1, + ACTIONS(7293), 1, anon_sym_COLON_COLON, - STATE(3627), 2, + STATE(3633), 2, + sym_line_comment, + sym_block_comment, + [99550] = 4, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(7295), 1, + anon_sym_fn, + STATE(3634), 2, sym_line_comment, sym_block_comment, - [98741] = 4, - ACTIONS(103), 1, + [99564] = 4, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(7297), 1, + anon_sym_COLON_COLON, + STATE(3635), 2, + sym_line_comment, + sym_block_comment, + [99578] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7274), 1, - anon_sym_SEMI, - STATE(3628), 2, + ACTIONS(7299), 1, + anon_sym_LBRACE, + STATE(3636), 2, + sym_line_comment, + sym_block_comment, + [99592] = 4, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(7301), 1, + anon_sym_COLON, + STATE(3637), 2, + sym_line_comment, + sym_block_comment, + [99606] = 4, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(5915), 1, + anon_sym_RPAREN, + STATE(3638), 2, + sym_line_comment, + sym_block_comment, + [99620] = 4, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(6223), 1, + anon_sym_GT, + STATE(3639), 2, sym_line_comment, sym_block_comment, - [98755] = 4, - ACTIONS(103), 1, + [99634] = 4, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(7303), 1, + anon_sym_EQ_GT, + STATE(3640), 2, + sym_line_comment, + sym_block_comment, + [99648] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7276), 1, + ACTIONS(7305), 1, sym_identifier, - STATE(3629), 2, + STATE(3641), 2, + sym_line_comment, + sym_block_comment, + [99662] = 4, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(7307), 1, + anon_sym_RBRACK, + STATE(3642), 2, sym_line_comment, sym_block_comment, - [98769] = 4, - ACTIONS(103), 1, + [99676] = 4, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(7309), 1, + anon_sym_LT2, + STATE(3643), 2, + sym_line_comment, + sym_block_comment, + [99690] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7278), 1, - anon_sym_SEMI, - STATE(3630), 2, + ACTIONS(7311), 1, + anon_sym_COLON, + STATE(3644), 2, sym_line_comment, sym_block_comment, - [98783] = 4, - ACTIONS(103), 1, + [99704] = 4, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(7313), 1, + sym_identifier, + STATE(3645), 2, + sym_line_comment, + sym_block_comment, + [99718] = 4, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(7315), 1, + sym_raw_string_literal_content, + STATE(3646), 2, + sym_line_comment, + sym_block_comment, + [99732] = 4, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(7317), 1, + sym_identifier, + STATE(3647), 2, + sym_line_comment, + sym_block_comment, + [99746] = 4, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(7319), 1, + sym_raw_string_literal_content, + STATE(3648), 2, + sym_line_comment, + sym_block_comment, + [99760] = 4, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(7321), 1, + sym_identifier, + STATE(3649), 2, + sym_line_comment, + sym_block_comment, + [99774] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7280), 1, + ACTIONS(7323), 1, anon_sym_COLON_COLON, - STATE(3631), 2, + STATE(3650), 2, sym_line_comment, sym_block_comment, - [98797] = 4, - ACTIONS(103), 1, + [99788] = 4, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(7325), 1, + anon_sym_SEMI, + STATE(3651), 2, + sym_line_comment, + sym_block_comment, + [99802] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7282), 1, - anon_sym_LBRACE, - STATE(3632), 2, + ACTIONS(7327), 1, + ts_builtin_sym_end, + STATE(3652), 2, sym_line_comment, sym_block_comment, - [98811] = 4, - ACTIONS(103), 1, + [99816] = 4, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(7329), 1, + anon_sym_COLON_COLON, + STATE(3653), 2, + sym_line_comment, + sym_block_comment, + [99830] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6625), 1, + ACTIONS(7331), 1, + sym_identifier, + STATE(3654), 2, + sym_line_comment, + sym_block_comment, + [99844] = 4, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(7333), 1, + anon_sym_SEMI, + STATE(3655), 2, + sym_line_comment, + sym_block_comment, + [99858] = 4, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(7335), 1, anon_sym_COLON_COLON, - STATE(3633), 2, + STATE(3656), 2, sym_line_comment, sym_block_comment, - [98825] = 4, - ACTIONS(103), 1, + [99872] = 4, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(5827), 1, + anon_sym_RPAREN, + STATE(3657), 2, + sym_line_comment, + sym_block_comment, + [99886] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7284), 1, - anon_sym_LPAREN, - STATE(3634), 2, + ACTIONS(7337), 1, + sym_identifier, + STATE(3658), 2, sym_line_comment, sym_block_comment, - [98839] = 4, - ACTIONS(103), 1, + [99900] = 4, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(7339), 1, + anon_sym_COLON, + STATE(3659), 2, + sym_line_comment, + sym_block_comment, + [99914] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6491), 1, - anon_sym_RBRACE, - STATE(3635), 2, + ACTIONS(7341), 1, + anon_sym_COLON_COLON, + STATE(3660), 2, + sym_line_comment, + sym_block_comment, + [99928] = 4, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(7343), 1, + anon_sym_LBRACE, + STATE(3661), 2, sym_line_comment, sym_block_comment, - [98853] = 4, - ACTIONS(103), 1, + [99942] = 4, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(7345), 1, + anon_sym_SEMI, + STATE(3662), 2, + sym_line_comment, + sym_block_comment, + [99956] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7286), 1, + ACTIONS(7347), 1, anon_sym_SEMI, - STATE(3636), 2, + STATE(3663), 2, + sym_line_comment, + sym_block_comment, + [99970] = 4, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(7349), 1, + anon_sym_SEMI, + STATE(3664), 2, sym_line_comment, sym_block_comment, - [98867] = 4, - ACTIONS(103), 1, + [99984] = 4, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(7351), 1, + anon_sym_SEMI, + STATE(3665), 2, + sym_line_comment, + sym_block_comment, + [99998] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7288), 1, + ACTIONS(7353), 1, sym_raw_string_literal_content, - STATE(3637), 2, + STATE(3666), 2, sym_line_comment, sym_block_comment, - [98881] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [100012] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3574), 1, + ACTIONS(3610), 1, anon_sym_COLON_COLON, - STATE(3638), 2, + STATE(3667), 2, sym_line_comment, sym_block_comment, - [98895] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [100026] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7290), 1, - anon_sym_COLON, - STATE(3639), 2, + ACTIONS(7355), 1, + anon_sym_RPAREN, + STATE(3668), 2, sym_line_comment, sym_block_comment, - [98909] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [100040] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7292), 1, + ACTIONS(7357), 1, anon_sym_COLON_COLON, - STATE(3640), 2, + STATE(3669), 2, sym_line_comment, sym_block_comment, - [98923] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [100054] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7294), 1, - anon_sym_RPAREN, - STATE(3641), 2, + ACTIONS(6697), 1, + anon_sym_RBRACE, + STATE(3670), 2, sym_line_comment, sym_block_comment, - [98937] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [100068] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7296), 1, + ACTIONS(7359), 1, anon_sym_LBRACE, - STATE(3642), 2, + STATE(3671), 2, sym_line_comment, sym_block_comment, - [98951] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [100082] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7298), 1, + ACTIONS(7361), 1, sym_raw_string_literal_content, - STATE(3643), 2, + STATE(3672), 2, sym_line_comment, sym_block_comment, - [98965] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [100096] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5210), 1, + ACTIONS(5313), 1, anon_sym_COLON_COLON, - STATE(3644), 2, + STATE(3673), 2, sym_line_comment, sym_block_comment, - [98979] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [100110] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7300), 1, + ACTIONS(7363), 1, anon_sym_COLON_COLON, - STATE(3645), 2, + STATE(3674), 2, sym_line_comment, sym_block_comment, - [98993] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [100124] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7302), 1, - anon_sym_SEMI, - STATE(3646), 2, + ACTIONS(6695), 1, + anon_sym_COLON_COLON, + STATE(3675), 2, sym_line_comment, sym_block_comment, - [99007] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [100138] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5961), 1, + ACTIONS(5995), 1, anon_sym_LBRACE, - STATE(3647), 2, + STATE(3676), 2, sym_line_comment, sym_block_comment, - [99021] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [100152] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5734), 1, + ACTIONS(5919), 1, anon_sym_COLON_COLON, - STATE(3648), 2, + STATE(3677), 2, sym_line_comment, sym_block_comment, - [99035] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [100166] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7304), 1, + ACTIONS(7365), 1, anon_sym_COLON_COLON, - STATE(3649), 2, + STATE(3678), 2, sym_line_comment, sym_block_comment, - [99049] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [100180] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5985), 1, + ACTIONS(6023), 1, anon_sym_LBRACE, - STATE(3650), 2, + STATE(3679), 2, sym_line_comment, sym_block_comment, - [99063] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [100194] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7306), 1, + ACTIONS(7367), 1, anon_sym_COLON_COLON, - STATE(3651), 2, + STATE(3680), 2, sym_line_comment, sym_block_comment, - [99077] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [100208] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5274), 1, + ACTIONS(5303), 1, anon_sym_COLON_COLON, - STATE(3652), 2, + STATE(3681), 2, sym_line_comment, sym_block_comment, - [99091] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [100222] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5312), 1, + ACTIONS(5339), 1, anon_sym_COLON_COLON, - STATE(3653), 2, + STATE(3682), 2, sym_line_comment, sym_block_comment, - [99105] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [100236] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4230), 1, + ACTIONS(4280), 1, anon_sym_COLON_COLON, - STATE(3654), 2, + STATE(3683), 2, sym_line_comment, sym_block_comment, - [99119] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [100250] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7308), 1, + ACTIONS(7369), 1, anon_sym_COLON_COLON, - STATE(3655), 2, + STATE(3684), 2, sym_line_comment, sym_block_comment, - [99133] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [100264] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7310), 1, - anon_sym_COLON_COLON, - STATE(3656), 2, + ACTIONS(7371), 1, + sym_identifier, + STATE(3685), 2, sym_line_comment, sym_block_comment, - [99147] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [100278] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6429), 1, - anon_sym_GT, - STATE(3657), 2, + ACTIONS(7373), 1, + anon_sym_SEMI, + STATE(3686), 2, sym_line_comment, sym_block_comment, - [99161] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [100292] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7312), 1, - sym_identifier, - STATE(3658), 2, + ACTIONS(6304), 1, + anon_sym_GT, + STATE(3687), 2, sym_line_comment, sym_block_comment, - [99175] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [100306] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3884), 1, - anon_sym_COLON_COLON, - STATE(3659), 2, + ACTIONS(4282), 1, + anon_sym_RPAREN, + STATE(3688), 2, sym_line_comment, sym_block_comment, - [99189] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [100320] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7314), 1, + ACTIONS(7375), 1, anon_sym_COLON, - STATE(3660), 2, + STATE(3689), 2, sym_line_comment, sym_block_comment, - [99203] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [100334] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7316), 1, + ACTIONS(7377), 1, anon_sym_LBRACK, - STATE(3661), 2, + STATE(3690), 2, sym_line_comment, sym_block_comment, - [99217] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [100348] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6080), 1, - anon_sym_RBRACE, - STATE(3662), 2, + ACTIONS(7379), 1, + anon_sym_SEMI, + STATE(3691), 2, sym_line_comment, sym_block_comment, - [99231] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [100362] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7318), 1, + ACTIONS(7381), 1, anon_sym_LBRACK, - STATE(3663), 2, + STATE(3692), 2, sym_line_comment, sym_block_comment, - [99245] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [100376] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7320), 1, + ACTIONS(7383), 1, anon_sym_COLON, - STATE(3664), 2, + STATE(3693), 2, sym_line_comment, sym_block_comment, - [99259] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [100390] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7322), 1, + ACTIONS(7385), 1, anon_sym_COLON, - STATE(3665), 2, + STATE(3694), 2, sym_line_comment, sym_block_comment, - [99273] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [100404] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7324), 1, - anon_sym_RBRACE, - STATE(3666), 2, + ACTIONS(7387), 1, + anon_sym_SEMI, + STATE(3695), 2, sym_line_comment, sym_block_comment, - [99287] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [100418] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7326), 1, + ACTIONS(7389), 1, anon_sym_SEMI, - STATE(3667), 2, + STATE(3696), 2, sym_line_comment, sym_block_comment, - [99301] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [100432] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6638), 1, - anon_sym_RBRACE, - STATE(3668), 2, + ACTIONS(7391), 1, + anon_sym_SEMI, + STATE(3697), 2, sym_line_comment, sym_block_comment, - [99315] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [100446] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7328), 1, - anon_sym_RBRACK, - STATE(3669), 2, + ACTIONS(7393), 1, + sym_identifier, + STATE(3698), 2, sym_line_comment, sym_block_comment, - [99329] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [100460] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7330), 1, + ACTIONS(7395), 1, anon_sym_COLON, - STATE(3670), 2, + STATE(3699), 2, sym_line_comment, sym_block_comment, - [99343] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [100474] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3140), 1, - anon_sym_PLUS, - STATE(3671), 2, + ACTIONS(7397), 1, + anon_sym_SEMI, + STATE(3700), 2, sym_line_comment, sym_block_comment, - [99357] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [100488] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7332), 1, - anon_sym_RBRACK, - STATE(3672), 2, + ACTIONS(7399), 1, + sym_identifier, + STATE(3701), 2, sym_line_comment, sym_block_comment, - [99371] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [100502] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7334), 1, - sym_identifier, - STATE(3673), 2, + ACTIONS(5617), 1, + anon_sym_RPAREN, + STATE(3702), 2, sym_line_comment, sym_block_comment, - [99385] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [100516] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7336), 1, - anon_sym_RBRACK, - STATE(3674), 2, + ACTIONS(6116), 1, + anon_sym_RBRACE, + STATE(3703), 2, sym_line_comment, sym_block_comment, - [99399] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [100530] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7338), 1, - anon_sym_SEMI, - STATE(3675), 2, + ACTIONS(7401), 1, + anon_sym_RBRACE, + STATE(3704), 2, sym_line_comment, sym_block_comment, - [99413] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [100544] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7340), 1, - anon_sym_COLON, - STATE(3676), 2, + ACTIONS(7403), 1, + anon_sym_SEMI, + STATE(3705), 2, sym_line_comment, sym_block_comment, - [99427] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [100558] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7342), 1, + ACTIONS(7405), 1, sym_identifier, - STATE(3677), 2, + STATE(3706), 2, sym_line_comment, sym_block_comment, - [99441] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [100572] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7344), 1, + ACTIONS(7407), 1, anon_sym_RBRACK, - STATE(3678), 2, + STATE(3707), 2, sym_line_comment, sym_block_comment, - [99455] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [100586] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7346), 1, - anon_sym_SEMI, - STATE(3679), 2, + ACTIONS(6100), 1, + anon_sym_RBRACE, + STATE(3708), 2, sym_line_comment, sym_block_comment, - [99469] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [100600] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7348), 1, + ACTIONS(7409), 1, anon_sym_COLON, - STATE(3680), 2, + STATE(3709), 2, sym_line_comment, sym_block_comment, - [99483] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [100614] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7350), 1, + ACTIONS(7411), 1, sym_identifier, - STATE(3681), 2, + STATE(3710), 2, sym_line_comment, sym_block_comment, - [99497] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [100628] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7352), 1, - sym_identifier, - STATE(3682), 2, + ACTIONS(7413), 1, + anon_sym_SEMI, + STATE(3711), 2, sym_line_comment, sym_block_comment, - [99511] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [100642] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7354), 1, - anon_sym_SEMI, - STATE(3683), 2, + ACTIONS(7415), 1, + anon_sym_EQ_GT, + STATE(3712), 2, sym_line_comment, sym_block_comment, - [99525] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [100656] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7356), 1, + ACTIONS(7417), 1, anon_sym_COLON, - STATE(3684), 2, + STATE(3713), 2, sym_line_comment, sym_block_comment, - [99539] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [100670] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7358), 1, + ACTIONS(7419), 1, anon_sym_SEMI, - STATE(3685), 2, + STATE(3714), 2, sym_line_comment, sym_block_comment, - [99553] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [100684] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7360), 1, + ACTIONS(7421), 1, sym_identifier, - STATE(3686), 2, + STATE(3715), 2, sym_line_comment, sym_block_comment, - [99567] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [100698] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7362), 1, - ts_builtin_sym_end, - STATE(3687), 2, + ACTIONS(7423), 1, + sym__line_doc_content, + STATE(3716), 2, sym_line_comment, sym_block_comment, - [99581] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [100712] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6768), 1, - anon_sym_COLON_COLON, - STATE(3688), 2, + ACTIONS(7425), 1, + anon_sym_SEMI, + STATE(3717), 2, sym_line_comment, sym_block_comment, - [99595] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [100726] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6940), 1, - anon_sym_SEMI, - STATE(3689), 2, + ACTIONS(5923), 1, + anon_sym_RPAREN, + STATE(3718), 2, sym_line_comment, sym_block_comment, - [99609] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [100740] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7364), 1, + ACTIONS(7427), 1, anon_sym_COLON, - STATE(3690), 2, + STATE(3719), 2, sym_line_comment, sym_block_comment, - [99623] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [100754] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7366), 1, - anon_sym_EQ, - STATE(3691), 2, + ACTIONS(7429), 1, + anon_sym_COLON, + STATE(3720), 2, sym_line_comment, sym_block_comment, - [99637] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [100768] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7368), 1, - anon_sym_RPAREN, - STATE(3692), 2, + ACTIONS(7431), 1, + sym_identifier, + STATE(3721), 2, sym_line_comment, sym_block_comment, - [99651] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [100782] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6944), 1, + ACTIONS(7433), 1, anon_sym_SEMI, - STATE(3693), 2, + STATE(3722), 2, sym_line_comment, sym_block_comment, - [99665] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [100796] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5518), 1, - anon_sym_RPAREN, - STATE(3694), 2, + ACTIONS(7435), 1, + sym_identifier, + STATE(3723), 2, sym_line_comment, sym_block_comment, - [99679] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [100810] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7370), 1, - sym_identifier, - STATE(3695), 2, + ACTIONS(7437), 1, + anon_sym_LT, + STATE(3724), 2, sym_line_comment, sym_block_comment, - [99693] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [100824] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7372), 1, - anon_sym_RPAREN, - STATE(3696), 2, + ACTIONS(7439), 1, + sym__raw_string_literal_end, + STATE(3725), 2, sym_line_comment, sym_block_comment, - [99707] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [100838] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7374), 1, + ACTIONS(7441), 1, anon_sym_EQ, - STATE(3697), 2, + STATE(3726), 2, sym_line_comment, sym_block_comment, - [99721] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [100852] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6336), 1, - anon_sym_RBRACE, - STATE(3698), 2, + ACTIONS(3166), 1, + anon_sym_PLUS, + STATE(3727), 2, sym_line_comment, sym_block_comment, - [99735] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [100866] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7376), 1, + ACTIONS(7443), 1, anon_sym_SEMI, - STATE(3699), 2, + STATE(3728), 2, sym_line_comment, sym_block_comment, - [99749] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [100880] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7378), 1, - sym_identifier, - STATE(3700), 2, + ACTIONS(7445), 1, + anon_sym_SEMI, + STATE(3729), 2, sym_line_comment, sym_block_comment, - [99763] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [100894] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7380), 1, + ACTIONS(7447), 1, sym_identifier, - STATE(3701), 2, + STATE(3730), 2, sym_line_comment, sym_block_comment, - [99777] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [100908] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4264), 1, - anon_sym_RPAREN, - STATE(3702), 2, + ACTIONS(7449), 1, + anon_sym_SEMI, + STATE(3731), 2, sym_line_comment, sym_block_comment, - [99791] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [100922] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7382), 1, + ACTIONS(7451), 1, anon_sym_COLON, - STATE(3703), 2, + STATE(3732), 2, sym_line_comment, sym_block_comment, - [99805] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [100936] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7384), 1, + ACTIONS(7453), 1, anon_sym_EQ, - STATE(3704), 2, + STATE(3733), 2, sym_line_comment, sym_block_comment, - [99819] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [100950] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7386), 1, - sym_identifier, - STATE(3705), 2, + ACTIONS(7455), 1, + anon_sym_COLON, + STATE(3734), 2, sym_line_comment, sym_block_comment, - [99833] = 4, - ACTIONS(103), 1, + [100964] = 4, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(7457), 1, + anon_sym_SEMI, + STATE(3735), 2, + sym_line_comment, + sym_block_comment, + [100978] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7388), 1, + ACTIONS(7459), 1, anon_sym_COLON, - STATE(3706), 2, + STATE(3736), 2, sym_line_comment, sym_block_comment, - [99847] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [100992] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7390), 1, + ACTIONS(7461), 1, anon_sym_LBRACK, - STATE(3707), 2, + STATE(3737), 2, sym_line_comment, sym_block_comment, - [99861] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [101006] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7392), 1, + ACTIONS(7463), 1, anon_sym_LBRACK, - STATE(3708), 2, + STATE(3738), 2, sym_line_comment, sym_block_comment, - [99875] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [101020] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7394), 1, + ACTIONS(7465), 1, anon_sym_COLON, - STATE(3709), 2, + STATE(3739), 2, sym_line_comment, sym_block_comment, - [99889] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [101034] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6102), 1, - anon_sym_RBRACE, - STATE(3710), 2, + ACTIONS(7467), 1, + anon_sym_SEMI, + STATE(3740), 2, sym_line_comment, sym_block_comment, - [99903] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [101048] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7396), 1, + ACTIONS(5273), 1, anon_sym_SEMI, - STATE(3711), 2, + STATE(3741), 2, sym_line_comment, sym_block_comment, - [99917] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [101062] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7398), 1, + ACTIONS(7469), 1, anon_sym_COLON, - STATE(3712), 2, + STATE(3742), 2, sym_line_comment, sym_block_comment, - [99931] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [101076] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7400), 1, + ACTIONS(7471), 1, anon_sym_COLON, - STATE(3713), 2, + STATE(3743), 2, sym_line_comment, sym_block_comment, - [99945] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [101090] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7402), 1, + ACTIONS(7473), 1, anon_sym_RBRACK, - STATE(3714), 2, + STATE(3744), 2, sym_line_comment, sym_block_comment, - [99959] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [101104] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5228), 1, - anon_sym_SEMI, - STATE(3715), 2, + ACTIONS(7475), 1, + sym_identifier, + STATE(3745), 2, sym_line_comment, sym_block_comment, - [99973] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [101118] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7404), 1, + ACTIONS(7477), 1, anon_sym_COLON, - STATE(3716), 2, + STATE(3746), 2, sym_line_comment, sym_block_comment, - [99987] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [101132] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7406), 1, + ACTIONS(7479), 1, anon_sym_COLON, - STATE(3717), 2, + STATE(3747), 2, sym_line_comment, sym_block_comment, - [100001] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [101146] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7408), 1, + ACTIONS(7481), 1, anon_sym_COLON, - STATE(3718), 2, + STATE(3748), 2, sym_line_comment, sym_block_comment, - [100015] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [101160] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7410), 1, - sym__raw_string_literal_end, - STATE(3719), 2, + ACTIONS(7483), 1, + anon_sym_SEMI, + STATE(3749), 2, sym_line_comment, sym_block_comment, - [100029] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [101174] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4638), 1, + ACTIONS(4630), 1, anon_sym_fn, - STATE(3720), 2, + STATE(3750), 2, sym_line_comment, sym_block_comment, - [100043] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [101188] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7412), 1, + ACTIONS(7485), 1, anon_sym_SEMI, - STATE(3721), 2, + STATE(3751), 2, sym_line_comment, sym_block_comment, - [100057] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [101202] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7414), 1, - anon_sym_RBRACK, - STATE(3722), 2, + ACTIONS(6831), 1, + anon_sym_COLON_COLON, + STATE(3752), 2, sym_line_comment, sym_block_comment, - [100071] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [101216] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7416), 1, + ACTIONS(7487), 1, sym_identifier, - STATE(3723), 2, + STATE(3753), 2, sym_line_comment, sym_block_comment, - [100085] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [101230] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7418), 1, + ACTIONS(7023), 1, anon_sym_SEMI, - STATE(3724), 2, + STATE(3754), 2, sym_line_comment, sym_block_comment, - [100099] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [101244] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7420), 1, - anon_sym_SEMI, - STATE(3725), 2, + ACTIONS(3178), 1, + anon_sym_PLUS, + STATE(3755), 2, sym_line_comment, sym_block_comment, - [100113] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [101258] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7422), 1, + ACTIONS(7489), 1, sym_identifier, - STATE(3726), 2, + STATE(3756), 2, sym_line_comment, sym_block_comment, - [100127] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [101272] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7424), 1, + ACTIONS(7491), 1, anon_sym_fn, - STATE(3727), 2, + STATE(3757), 2, sym_line_comment, sym_block_comment, - [100141] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [101286] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7426), 1, - anon_sym_COLON, - STATE(3728), 2, + ACTIONS(7493), 1, + anon_sym_RPAREN, + STATE(3758), 2, sym_line_comment, sym_block_comment, - [100155] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [101300] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7428), 1, + ACTIONS(7495), 1, sym_identifier, - STATE(3729), 2, + STATE(3759), 2, sym_line_comment, sym_block_comment, - [100169] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [101314] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7430), 1, - anon_sym_COLON, - STATE(3730), 2, + ACTIONS(7497), 1, + anon_sym_LPAREN, + STATE(3760), 2, sym_line_comment, sym_block_comment, - [100183] = 4, - ACTIONS(3), 1, + [101328] = 4, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7432), 1, - aux_sym_line_comment_token2, - STATE(3731), 2, + ACTIONS(7499), 1, + anon_sym_RBRACE, + STATE(3761), 2, sym_line_comment, sym_block_comment, - [100197] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [101342] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3150), 1, - anon_sym_PLUS, - STATE(3732), 2, + ACTIONS(7501), 1, + anon_sym_RPAREN, + STATE(3762), 2, sym_line_comment, sym_block_comment, - [100211] = 4, - ACTIONS(103), 1, + [101356] = 4, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(7503), 1, + sym_raw_string_literal_content, + STATE(3763), 2, + sym_line_comment, + sym_block_comment, + [101370] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7434), 1, - anon_sym_SEMI, - STATE(3733), 2, + ACTIONS(7505), 1, + anon_sym_COLON_COLON, + STATE(3764), 2, sym_line_comment, sym_block_comment, - [100225] = 4, - ACTIONS(103), 1, + [101384] = 4, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(7507), 1, + sym_identifier, + STATE(3765), 2, + sym_line_comment, + sym_block_comment, + [101398] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7436), 1, + ACTIONS(7509), 1, sym_identifier, - STATE(3734), 2, + STATE(3766), 2, sym_line_comment, sym_block_comment, - [100239] = 4, - ACTIONS(103), 1, + [101412] = 4, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(7511), 1, + sym_identifier, + STATE(3767), 2, + sym_line_comment, + sym_block_comment, + [101426] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7438), 1, - sym_raw_string_literal_content, - STATE(3735), 2, + ACTIONS(7513), 1, + sym_identifier, + STATE(3768), 2, sym_line_comment, sym_block_comment, - [100253] = 4, - ACTIONS(103), 1, + [101440] = 4, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(7515), 1, + anon_sym_EQ_GT, + STATE(3769), 2, + sym_line_comment, + sym_block_comment, + [101454] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7440), 1, + ACTIONS(6749), 1, anon_sym_SEMI, - STATE(3736), 2, + STATE(3770), 2, sym_line_comment, sym_block_comment, - [100267] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [101468] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6326), 1, - anon_sym_GT, - STATE(3737), 2, + ACTIONS(7517), 1, + anon_sym_EQ_GT, + STATE(3771), 2, sym_line_comment, sym_block_comment, - [100281] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, + [101482] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7442), 1, - anon_sym_LBRACK, - STATE(3738), 2, + ACTIONS(7519), 1, + anon_sym_COLON, + STATE(3772), 2, sym_line_comment, sym_block_comment, - [100295] = 4, - ACTIONS(103), 1, + [101496] = 4, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(5576), 1, + anon_sym_RPAREN, + STATE(3773), 2, + sym_line_comment, + sym_block_comment, + [101510] = 4, ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(937), 1, - anon_sym_RBRACK, - STATE(3739), 2, + ACTIONS(7521), 1, + anon_sym_RPAREN, + STATE(3774), 2, sym_line_comment, sym_block_comment, - [100309] = 1, - ACTIONS(7444), 1, + [101524] = 1, + ACTIONS(7523), 1, ts_builtin_sym_end, - [100313] = 1, - ACTIONS(7446), 1, + [101528] = 1, + ACTIONS(7525), 1, ts_builtin_sym_end, - [100317] = 1, - ACTIONS(7448), 1, + [101532] = 1, + ACTIONS(7527), 1, ts_builtin_sym_end, - [100321] = 1, - ACTIONS(7450), 1, + [101536] = 1, + ACTIONS(7529), 1, ts_builtin_sym_end, - [100325] = 1, - ACTIONS(7452), 1, + [101540] = 1, + ACTIONS(7531), 1, ts_builtin_sym_end, - [100329] = 1, - ACTIONS(7454), 1, + [101544] = 1, + ACTIONS(7533), 1, ts_builtin_sym_end, - [100333] = 1, - ACTIONS(7456), 1, + [101548] = 1, + ACTIONS(7535), 1, ts_builtin_sym_end, }; static const uint32_t ts_small_parse_table_map[] = { - [SMALL_STATE(1034)] = 0, - [SMALL_STATE(1035)] = 75, - [SMALL_STATE(1036)] = 147, - [SMALL_STATE(1037)] = 217, - [SMALL_STATE(1038)] = 317, - [SMALL_STATE(1039)] = 417, - [SMALL_STATE(1040)] = 517, - [SMALL_STATE(1041)] = 596, - [SMALL_STATE(1042)] = 673, - [SMALL_STATE(1043)] = 737, - [SMALL_STATE(1044)] = 801, - [SMALL_STATE(1045)] = 865, - [SMALL_STATE(1046)] = 929, - [SMALL_STATE(1047)] = 993, - [SMALL_STATE(1048)] = 1057, - [SMALL_STATE(1049)] = 1121, - [SMALL_STATE(1050)] = 1195, - [SMALL_STATE(1051)] = 1259, - [SMALL_STATE(1052)] = 1333, - [SMALL_STATE(1053)] = 1401, - [SMALL_STATE(1054)] = 1475, - [SMALL_STATE(1055)] = 1539, - [SMALL_STATE(1056)] = 1640, - [SMALL_STATE(1057)] = 1707, - [SMALL_STATE(1058)] = 1774, - [SMALL_STATE(1059)] = 1845, - [SMALL_STATE(1060)] = 1908, - [SMALL_STATE(1061)] = 1979, - [SMALL_STATE(1062)] = 2046, - [SMALL_STATE(1063)] = 2117, - [SMALL_STATE(1064)] = 2218, - [SMALL_STATE(1065)] = 2319, - [SMALL_STATE(1066)] = 2382, - [SMALL_STATE(1067)] = 2445, - [SMALL_STATE(1068)] = 2508, - [SMALL_STATE(1069)] = 2579, - [SMALL_STATE(1070)] = 2646, - [SMALL_STATE(1071)] = 2709, - [SMALL_STATE(1072)] = 2815, - [SMALL_STATE(1073)] = 2921, - [SMALL_STATE(1074)] = 2983, - [SMALL_STATE(1075)] = 3049, - [SMALL_STATE(1076)] = 3111, - [SMALL_STATE(1077)] = 3175, - [SMALL_STATE(1078)] = 3237, - [SMALL_STATE(1079)] = 3307, - [SMALL_STATE(1080)] = 3413, - [SMALL_STATE(1081)] = 3519, - [SMALL_STATE(1082)] = 3625, - [SMALL_STATE(1083)] = 3689, - [SMALL_STATE(1084)] = 3757, - [SMALL_STATE(1085)] = 3819, - [SMALL_STATE(1086)] = 3925, - [SMALL_STATE(1087)] = 4000, - [SMALL_STATE(1088)] = 4061, - [SMALL_STATE(1089)] = 4122, - [SMALL_STATE(1090)] = 4185, - [SMALL_STATE(1091)] = 4246, - [SMALL_STATE(1092)] = 4309, - [SMALL_STATE(1093)] = 4370, - [SMALL_STATE(1094)] = 4431, - [SMALL_STATE(1095)] = 4494, - [SMALL_STATE(1096)] = 4555, - [SMALL_STATE(1097)] = 4616, - [SMALL_STATE(1098)] = 4677, - [SMALL_STATE(1099)] = 4738, - [SMALL_STATE(1100)] = 4831, - [SMALL_STATE(1101)] = 4894, - [SMALL_STATE(1102)] = 4957, - [SMALL_STATE(1103)] = 5020, - [SMALL_STATE(1104)] = 5081, - [SMALL_STATE(1105)] = 5142, - [SMALL_STATE(1106)] = 5235, - [SMALL_STATE(1107)] = 5296, - [SMALL_STATE(1108)] = 5389, - [SMALL_STATE(1109)] = 5450, - [SMALL_STATE(1110)] = 5511, - [SMALL_STATE(1111)] = 5572, - [SMALL_STATE(1112)] = 5635, - [SMALL_STATE(1113)] = 5698, - [SMALL_STATE(1114)] = 5761, - [SMALL_STATE(1115)] = 5824, - [SMALL_STATE(1116)] = 5887, - [SMALL_STATE(1117)] = 5948, - [SMALL_STATE(1118)] = 6013, - [SMALL_STATE(1119)] = 6074, - [SMALL_STATE(1120)] = 6135, - [SMALL_STATE(1121)] = 6196, - [SMALL_STATE(1122)] = 6257, - [SMALL_STATE(1123)] = 6318, - [SMALL_STATE(1124)] = 6379, - [SMALL_STATE(1125)] = 6440, - [SMALL_STATE(1126)] = 6501, - [SMALL_STATE(1127)] = 6562, - [SMALL_STATE(1128)] = 6623, - [SMALL_STATE(1129)] = 6684, - [SMALL_STATE(1130)] = 6745, - [SMALL_STATE(1131)] = 6806, - [SMALL_STATE(1132)] = 6867, - [SMALL_STATE(1133)] = 6928, - [SMALL_STATE(1134)] = 6989, - [SMALL_STATE(1135)] = 7050, - [SMALL_STATE(1136)] = 7111, - [SMALL_STATE(1137)] = 7174, - [SMALL_STATE(1138)] = 7237, - [SMALL_STATE(1139)] = 7300, - [SMALL_STATE(1140)] = 7361, - [SMALL_STATE(1141)] = 7422, - [SMALL_STATE(1142)] = 7483, - [SMALL_STATE(1143)] = 7544, - [SMALL_STATE(1144)] = 7605, - [SMALL_STATE(1145)] = 7666, - [SMALL_STATE(1146)] = 7727, - [SMALL_STATE(1147)] = 7788, - [SMALL_STATE(1148)] = 7849, - [SMALL_STATE(1149)] = 7910, - [SMALL_STATE(1150)] = 7971, - [SMALL_STATE(1151)] = 8032, - [SMALL_STATE(1152)] = 8093, - [SMALL_STATE(1153)] = 8154, - [SMALL_STATE(1154)] = 8215, - [SMALL_STATE(1155)] = 8276, - [SMALL_STATE(1156)] = 8337, - [SMALL_STATE(1157)] = 8398, - [SMALL_STATE(1158)] = 8459, - [SMALL_STATE(1159)] = 8520, - [SMALL_STATE(1160)] = 8581, - [SMALL_STATE(1161)] = 8642, - [SMALL_STATE(1162)] = 8703, - [SMALL_STATE(1163)] = 8764, - [SMALL_STATE(1164)] = 8825, - [SMALL_STATE(1165)] = 8886, - [SMALL_STATE(1166)] = 8947, - [SMALL_STATE(1167)] = 9008, - [SMALL_STATE(1168)] = 9069, - [SMALL_STATE(1169)] = 9130, - [SMALL_STATE(1170)] = 9191, - [SMALL_STATE(1171)] = 9252, - [SMALL_STATE(1172)] = 9313, - [SMALL_STATE(1173)] = 9374, - [SMALL_STATE(1174)] = 9435, - [SMALL_STATE(1175)] = 9496, - [SMALL_STATE(1176)] = 9557, - [SMALL_STATE(1177)] = 9618, - [SMALL_STATE(1178)] = 9681, - [SMALL_STATE(1179)] = 9744, - [SMALL_STATE(1180)] = 9805, - [SMALL_STATE(1181)] = 9866, - [SMALL_STATE(1182)] = 9927, - [SMALL_STATE(1183)] = 9988, - [SMALL_STATE(1184)] = 10049, - [SMALL_STATE(1185)] = 10110, - [SMALL_STATE(1186)] = 10171, - [SMALL_STATE(1187)] = 10232, - [SMALL_STATE(1188)] = 10293, - [SMALL_STATE(1189)] = 10354, - [SMALL_STATE(1190)] = 10415, - [SMALL_STATE(1191)] = 10476, - [SMALL_STATE(1192)] = 10537, - [SMALL_STATE(1193)] = 10598, - [SMALL_STATE(1194)] = 10659, - [SMALL_STATE(1195)] = 10720, - [SMALL_STATE(1196)] = 10781, - [SMALL_STATE(1197)] = 10842, - [SMALL_STATE(1198)] = 10903, - [SMALL_STATE(1199)] = 10964, - [SMALL_STATE(1200)] = 11025, - [SMALL_STATE(1201)] = 11086, - [SMALL_STATE(1202)] = 11147, - [SMALL_STATE(1203)] = 11208, - [SMALL_STATE(1204)] = 11269, - [SMALL_STATE(1205)] = 11330, - [SMALL_STATE(1206)] = 11391, - [SMALL_STATE(1207)] = 11452, - [SMALL_STATE(1208)] = 11513, - [SMALL_STATE(1209)] = 11574, - [SMALL_STATE(1210)] = 11635, - [SMALL_STATE(1211)] = 11696, - [SMALL_STATE(1212)] = 11757, - [SMALL_STATE(1213)] = 11818, - [SMALL_STATE(1214)] = 11879, - [SMALL_STATE(1215)] = 11940, - [SMALL_STATE(1216)] = 12001, - [SMALL_STATE(1217)] = 12062, - [SMALL_STATE(1218)] = 12123, - [SMALL_STATE(1219)] = 12184, - [SMALL_STATE(1220)] = 12245, - [SMALL_STATE(1221)] = 12306, - [SMALL_STATE(1222)] = 12367, - [SMALL_STATE(1223)] = 12428, - [SMALL_STATE(1224)] = 12489, - [SMALL_STATE(1225)] = 12550, - [SMALL_STATE(1226)] = 12611, - [SMALL_STATE(1227)] = 12672, - [SMALL_STATE(1228)] = 12733, - [SMALL_STATE(1229)] = 12794, - [SMALL_STATE(1230)] = 12855, - [SMALL_STATE(1231)] = 12916, - [SMALL_STATE(1232)] = 12977, - [SMALL_STATE(1233)] = 13038, - [SMALL_STATE(1234)] = 13099, - [SMALL_STATE(1235)] = 13160, - [SMALL_STATE(1236)] = 13221, - [SMALL_STATE(1237)] = 13282, - [SMALL_STATE(1238)] = 13343, - [SMALL_STATE(1239)] = 13404, - [SMALL_STATE(1240)] = 13465, - [SMALL_STATE(1241)] = 13526, - [SMALL_STATE(1242)] = 13587, - [SMALL_STATE(1243)] = 13648, - [SMALL_STATE(1244)] = 13709, - [SMALL_STATE(1245)] = 13770, - [SMALL_STATE(1246)] = 13831, - [SMALL_STATE(1247)] = 13892, - [SMALL_STATE(1248)] = 13953, - [SMALL_STATE(1249)] = 14014, - [SMALL_STATE(1250)] = 14075, - [SMALL_STATE(1251)] = 14136, - [SMALL_STATE(1252)] = 14197, - [SMALL_STATE(1253)] = 14258, - [SMALL_STATE(1254)] = 14319, - [SMALL_STATE(1255)] = 14380, - [SMALL_STATE(1256)] = 14441, - [SMALL_STATE(1257)] = 14502, - [SMALL_STATE(1258)] = 14563, - [SMALL_STATE(1259)] = 14626, - [SMALL_STATE(1260)] = 14687, - [SMALL_STATE(1261)] = 14748, - [SMALL_STATE(1262)] = 14809, - [SMALL_STATE(1263)] = 14870, - [SMALL_STATE(1264)] = 14931, - [SMALL_STATE(1265)] = 14992, - [SMALL_STATE(1266)] = 15053, - [SMALL_STATE(1267)] = 15114, - [SMALL_STATE(1268)] = 15175, - [SMALL_STATE(1269)] = 15236, - [SMALL_STATE(1270)] = 15297, - [SMALL_STATE(1271)] = 15358, - [SMALL_STATE(1272)] = 15419, - [SMALL_STATE(1273)] = 15480, - [SMALL_STATE(1274)] = 15541, - [SMALL_STATE(1275)] = 15602, - [SMALL_STATE(1276)] = 15663, - [SMALL_STATE(1277)] = 15724, - [SMALL_STATE(1278)] = 15785, - [SMALL_STATE(1279)] = 15846, - [SMALL_STATE(1280)] = 15907, - [SMALL_STATE(1281)] = 15968, - [SMALL_STATE(1282)] = 16029, - [SMALL_STATE(1283)] = 16090, - [SMALL_STATE(1284)] = 16151, - [SMALL_STATE(1285)] = 16212, - [SMALL_STATE(1286)] = 16273, - [SMALL_STATE(1287)] = 16334, - [SMALL_STATE(1288)] = 16395, - [SMALL_STATE(1289)] = 16456, - [SMALL_STATE(1290)] = 16517, - [SMALL_STATE(1291)] = 16578, - [SMALL_STATE(1292)] = 16639, - [SMALL_STATE(1293)] = 16700, - [SMALL_STATE(1294)] = 16761, - [SMALL_STATE(1295)] = 16822, - [SMALL_STATE(1296)] = 16883, - [SMALL_STATE(1297)] = 16944, - [SMALL_STATE(1298)] = 17005, - [SMALL_STATE(1299)] = 17066, - [SMALL_STATE(1300)] = 17127, - [SMALL_STATE(1301)] = 17188, - [SMALL_STATE(1302)] = 17249, - [SMALL_STATE(1303)] = 17310, - [SMALL_STATE(1304)] = 17371, - [SMALL_STATE(1305)] = 17432, - [SMALL_STATE(1306)] = 17493, - [SMALL_STATE(1307)] = 17554, - [SMALL_STATE(1308)] = 17615, - [SMALL_STATE(1309)] = 17676, - [SMALL_STATE(1310)] = 17737, - [SMALL_STATE(1311)] = 17798, - [SMALL_STATE(1312)] = 17859, - [SMALL_STATE(1313)] = 17920, - [SMALL_STATE(1314)] = 17981, - [SMALL_STATE(1315)] = 18042, - [SMALL_STATE(1316)] = 18103, - [SMALL_STATE(1317)] = 18164, - [SMALL_STATE(1318)] = 18225, - [SMALL_STATE(1319)] = 18286, - [SMALL_STATE(1320)] = 18347, - [SMALL_STATE(1321)] = 18408, - [SMALL_STATE(1322)] = 18469, - [SMALL_STATE(1323)] = 18530, - [SMALL_STATE(1324)] = 18591, - [SMALL_STATE(1325)] = 18652, - [SMALL_STATE(1326)] = 18713, - [SMALL_STATE(1327)] = 18774, - [SMALL_STATE(1328)] = 18835, - [SMALL_STATE(1329)] = 18896, - [SMALL_STATE(1330)] = 18957, - [SMALL_STATE(1331)] = 19018, - [SMALL_STATE(1332)] = 19079, - [SMALL_STATE(1333)] = 19140, - [SMALL_STATE(1334)] = 19201, - [SMALL_STATE(1335)] = 19262, - [SMALL_STATE(1336)] = 19323, - [SMALL_STATE(1337)] = 19384, - [SMALL_STATE(1338)] = 19445, - [SMALL_STATE(1339)] = 19506, - [SMALL_STATE(1340)] = 19567, - [SMALL_STATE(1341)] = 19628, - [SMALL_STATE(1342)] = 19689, - [SMALL_STATE(1343)] = 19750, - [SMALL_STATE(1344)] = 19811, - [SMALL_STATE(1345)] = 19872, - [SMALL_STATE(1346)] = 19933, - [SMALL_STATE(1347)] = 19994, - [SMALL_STATE(1348)] = 20055, - [SMALL_STATE(1349)] = 20116, - [SMALL_STATE(1350)] = 20177, - [SMALL_STATE(1351)] = 20238, - [SMALL_STATE(1352)] = 20299, - [SMALL_STATE(1353)] = 20360, - [SMALL_STATE(1354)] = 20421, - [SMALL_STATE(1355)] = 20482, - [SMALL_STATE(1356)] = 20543, - [SMALL_STATE(1357)] = 20604, - [SMALL_STATE(1358)] = 20665, - [SMALL_STATE(1359)] = 20726, - [SMALL_STATE(1360)] = 20787, - [SMALL_STATE(1361)] = 20848, - [SMALL_STATE(1362)] = 20909, - [SMALL_STATE(1363)] = 20970, - [SMALL_STATE(1364)] = 21031, - [SMALL_STATE(1365)] = 21092, - [SMALL_STATE(1366)] = 21153, - [SMALL_STATE(1367)] = 21214, - [SMALL_STATE(1368)] = 21275, - [SMALL_STATE(1369)] = 21336, - [SMALL_STATE(1370)] = 21397, - [SMALL_STATE(1371)] = 21458, - [SMALL_STATE(1372)] = 21519, - [SMALL_STATE(1373)] = 21580, - [SMALL_STATE(1374)] = 21641, - [SMALL_STATE(1375)] = 21702, - [SMALL_STATE(1376)] = 21763, - [SMALL_STATE(1377)] = 21824, - [SMALL_STATE(1378)] = 21885, - [SMALL_STATE(1379)] = 21946, - [SMALL_STATE(1380)] = 22007, - [SMALL_STATE(1381)] = 22068, - [SMALL_STATE(1382)] = 22129, - [SMALL_STATE(1383)] = 22190, - [SMALL_STATE(1384)] = 22251, - [SMALL_STATE(1385)] = 22312, - [SMALL_STATE(1386)] = 22373, - [SMALL_STATE(1387)] = 22434, - [SMALL_STATE(1388)] = 22495, - [SMALL_STATE(1389)] = 22556, - [SMALL_STATE(1390)] = 22617, - [SMALL_STATE(1391)] = 22678, - [SMALL_STATE(1392)] = 22739, - [SMALL_STATE(1393)] = 22804, - [SMALL_STATE(1394)] = 22865, - [SMALL_STATE(1395)] = 22926, - [SMALL_STATE(1396)] = 22987, - [SMALL_STATE(1397)] = 23048, - [SMALL_STATE(1398)] = 23109, - [SMALL_STATE(1399)] = 23170, - [SMALL_STATE(1400)] = 23235, - [SMALL_STATE(1401)] = 23310, - [SMALL_STATE(1402)] = 23373, - [SMALL_STATE(1403)] = 23434, - [SMALL_STATE(1404)] = 23495, - [SMALL_STATE(1405)] = 23555, - [SMALL_STATE(1406)] = 23615, - [SMALL_STATE(1407)] = 23675, - [SMALL_STATE(1408)] = 23735, - [SMALL_STATE(1409)] = 23795, - [SMALL_STATE(1410)] = 23855, - [SMALL_STATE(1411)] = 23915, - [SMALL_STATE(1412)] = 23975, - [SMALL_STATE(1413)] = 24035, - [SMALL_STATE(1414)] = 24095, - [SMALL_STATE(1415)] = 24155, - [SMALL_STATE(1416)] = 24215, - [SMALL_STATE(1417)] = 24275, - [SMALL_STATE(1418)] = 24335, - [SMALL_STATE(1419)] = 24395, - [SMALL_STATE(1420)] = 24461, - [SMALL_STATE(1421)] = 24521, - [SMALL_STATE(1422)] = 24581, - [SMALL_STATE(1423)] = 24641, - [SMALL_STATE(1424)] = 24701, - [SMALL_STATE(1425)] = 24761, - [SMALL_STATE(1426)] = 24821, - [SMALL_STATE(1427)] = 24881, - [SMALL_STATE(1428)] = 24941, - [SMALL_STATE(1429)] = 25005, - [SMALL_STATE(1430)] = 25065, - [SMALL_STATE(1431)] = 25125, - [SMALL_STATE(1432)] = 25185, - [SMALL_STATE(1433)] = 25245, - [SMALL_STATE(1434)] = 25305, - [SMALL_STATE(1435)] = 25365, - [SMALL_STATE(1436)] = 25425, - [SMALL_STATE(1437)] = 25485, - [SMALL_STATE(1438)] = 25545, - [SMALL_STATE(1439)] = 25605, - [SMALL_STATE(1440)] = 25665, - [SMALL_STATE(1441)] = 25725, - [SMALL_STATE(1442)] = 25785, - [SMALL_STATE(1443)] = 25845, - [SMALL_STATE(1444)] = 25941, - [SMALL_STATE(1445)] = 26001, - [SMALL_STATE(1446)] = 26061, - [SMALL_STATE(1447)] = 26121, - [SMALL_STATE(1448)] = 26181, - [SMALL_STATE(1449)] = 26241, - [SMALL_STATE(1450)] = 26301, - [SMALL_STATE(1451)] = 26361, - [SMALL_STATE(1452)] = 26421, - [SMALL_STATE(1453)] = 26481, - [SMALL_STATE(1454)] = 26541, - [SMALL_STATE(1455)] = 26601, - [SMALL_STATE(1456)] = 26661, - [SMALL_STATE(1457)] = 26721, - [SMALL_STATE(1458)] = 26781, - [SMALL_STATE(1459)] = 26841, - [SMALL_STATE(1460)] = 26903, - [SMALL_STATE(1461)] = 26963, - [SMALL_STATE(1462)] = 27023, - [SMALL_STATE(1463)] = 27083, - [SMALL_STATE(1464)] = 27143, - [SMALL_STATE(1465)] = 27203, - [SMALL_STATE(1466)] = 27263, - [SMALL_STATE(1467)] = 27323, - [SMALL_STATE(1468)] = 27391, - [SMALL_STATE(1469)] = 27451, - [SMALL_STATE(1470)] = 27511, - [SMALL_STATE(1471)] = 27571, - [SMALL_STATE(1472)] = 27631, - [SMALL_STATE(1473)] = 27691, - [SMALL_STATE(1474)] = 27751, - [SMALL_STATE(1475)] = 27811, - [SMALL_STATE(1476)] = 27871, - [SMALL_STATE(1477)] = 27933, - [SMALL_STATE(1478)] = 27993, - [SMALL_STATE(1479)] = 28053, - [SMALL_STATE(1480)] = 28113, - [SMALL_STATE(1481)] = 28179, - [SMALL_STATE(1482)] = 28239, - [SMALL_STATE(1483)] = 28299, - [SMALL_STATE(1484)] = 28359, - [SMALL_STATE(1485)] = 28419, - [SMALL_STATE(1486)] = 28479, - [SMALL_STATE(1487)] = 28539, - [SMALL_STATE(1488)] = 28599, - [SMALL_STATE(1489)] = 28659, - [SMALL_STATE(1490)] = 28719, - [SMALL_STATE(1491)] = 28779, - [SMALL_STATE(1492)] = 28839, - [SMALL_STATE(1493)] = 28899, - [SMALL_STATE(1494)] = 28959, - [SMALL_STATE(1495)] = 29019, - [SMALL_STATE(1496)] = 29079, - [SMALL_STATE(1497)] = 29139, - [SMALL_STATE(1498)] = 29199, - [SMALL_STATE(1499)] = 29273, - [SMALL_STATE(1500)] = 29333, - [SMALL_STATE(1501)] = 29393, - [SMALL_STATE(1502)] = 29453, - [SMALL_STATE(1503)] = 29513, - [SMALL_STATE(1504)] = 29573, - [SMALL_STATE(1505)] = 29633, - [SMALL_STATE(1506)] = 29699, - [SMALL_STATE(1507)] = 29759, - [SMALL_STATE(1508)] = 29825, - [SMALL_STATE(1509)] = 29885, - [SMALL_STATE(1510)] = 29945, - [SMALL_STATE(1511)] = 30005, - [SMALL_STATE(1512)] = 30065, - [SMALL_STATE(1513)] = 30125, - [SMALL_STATE(1514)] = 30185, - [SMALL_STATE(1515)] = 30245, - [SMALL_STATE(1516)] = 30305, - [SMALL_STATE(1517)] = 30365, - [SMALL_STATE(1518)] = 30425, - [SMALL_STATE(1519)] = 30485, - [SMALL_STATE(1520)] = 30545, - [SMALL_STATE(1521)] = 30609, - [SMALL_STATE(1522)] = 30669, - [SMALL_STATE(1523)] = 30729, - [SMALL_STATE(1524)] = 30789, - [SMALL_STATE(1525)] = 30849, - [SMALL_STATE(1526)] = 30909, - [SMALL_STATE(1527)] = 30969, - [SMALL_STATE(1528)] = 31029, - [SMALL_STATE(1529)] = 31128, - [SMALL_STATE(1530)] = 31227, - [SMALL_STATE(1531)] = 31288, - [SMALL_STATE(1532)] = 31359, - [SMALL_STATE(1533)] = 31420, - [SMALL_STATE(1534)] = 31519, - [SMALL_STATE(1535)] = 31588, - [SMALL_STATE(1536)] = 31674, - [SMALL_STATE(1537)] = 31760, - [SMALL_STATE(1538)] = 31828, - [SMALL_STATE(1539)] = 31914, - [SMALL_STATE(1540)] = 31988, - [SMALL_STATE(1541)] = 32060, - [SMALL_STATE(1542)] = 32136, - [SMALL_STATE(1543)] = 32218, - [SMALL_STATE(1544)] = 32302, - [SMALL_STATE(1545)] = 32372, - [SMALL_STATE(1546)] = 32462, - [SMALL_STATE(1547)] = 32552, - [SMALL_STATE(1548)] = 32630, - [SMALL_STATE(1549)] = 32722, - [SMALL_STATE(1550)] = 32808, - [SMALL_STATE(1551)] = 32894, - [SMALL_STATE(1552)] = 32984, - [SMALL_STATE(1553)] = 33050, - [SMALL_STATE(1554)] = 33120, - [SMALL_STATE(1555)] = 33206, - [SMALL_STATE(1556)] = 33296, - [SMALL_STATE(1557)] = 33382, - [SMALL_STATE(1558)] = 33474, - [SMALL_STATE(1559)] = 33564, - [SMALL_STATE(1560)] = 33654, - [SMALL_STATE(1561)] = 33746, - [SMALL_STATE(1562)] = 33832, - [SMALL_STATE(1563)] = 33895, - [SMALL_STATE(1564)] = 33962, - [SMALL_STATE(1565)] = 34021, - [SMALL_STATE(1566)] = 34088, - [SMALL_STATE(1567)] = 34145, - [SMALL_STATE(1568)] = 34212, - [SMALL_STATE(1569)] = 34269, - [SMALL_STATE(1570)] = 34332, - [SMALL_STATE(1571)] = 34391, - [SMALL_STATE(1572)] = 34448, - [SMALL_STATE(1573)] = 34513, - [SMALL_STATE(1574)] = 34577, - [SMALL_STATE(1575)] = 34635, - [SMALL_STATE(1576)] = 34693, - [SMALL_STATE(1577)] = 34749, - [SMALL_STATE(1578)] = 34807, - [SMALL_STATE(1579)] = 34865, - [SMALL_STATE(1580)] = 34929, - [SMALL_STATE(1581)] = 34993, - [SMALL_STATE(1582)] = 35049, - [SMALL_STATE(1583)] = 35109, - [SMALL_STATE(1584)] = 35169, - [SMALL_STATE(1585)] = 35229, - [SMALL_STATE(1586)] = 35285, - [SMALL_STATE(1587)] = 35345, - [SMALL_STATE(1588)] = 35405, - [SMALL_STATE(1589)] = 35461, - [SMALL_STATE(1590)] = 35521, - [SMALL_STATE(1591)] = 35585, - [SMALL_STATE(1592)] = 35645, - [SMALL_STATE(1593)] = 35702, - [SMALL_STATE(1594)] = 35759, - [SMALL_STATE(1595)] = 35848, - [SMALL_STATE(1596)] = 35905, - [SMALL_STATE(1597)] = 35960, - [SMALL_STATE(1598)] = 36017, - [SMALL_STATE(1599)] = 36072, - [SMALL_STATE(1600)] = 36131, - [SMALL_STATE(1601)] = 36186, - [SMALL_STATE(1602)] = 36281, - [SMALL_STATE(1603)] = 36376, - [SMALL_STATE(1604)] = 36431, - [SMALL_STATE(1605)] = 36486, - [SMALL_STATE(1606)] = 36541, - [SMALL_STATE(1607)] = 36600, - [SMALL_STATE(1608)] = 36659, - [SMALL_STATE(1609)] = 36754, - [SMALL_STATE(1610)] = 36849, - [SMALL_STATE(1611)] = 36944, - [SMALL_STATE(1612)] = 37039, - [SMALL_STATE(1613)] = 37134, - [SMALL_STATE(1614)] = 37229, - [SMALL_STATE(1615)] = 37284, - [SMALL_STATE(1616)] = 37341, - [SMALL_STATE(1617)] = 37436, - [SMALL_STATE(1618)] = 37531, - [SMALL_STATE(1619)] = 37626, - [SMALL_STATE(1620)] = 37721, - [SMALL_STATE(1621)] = 37778, - [SMALL_STATE(1622)] = 37835, - [SMALL_STATE(1623)] = 37890, - [SMALL_STATE(1624)] = 37979, - [SMALL_STATE(1625)] = 38068, - [SMALL_STATE(1626)] = 38127, - [SMALL_STATE(1627)] = 38183, - [SMALL_STATE(1628)] = 38271, - [SMALL_STATE(1629)] = 38325, - [SMALL_STATE(1630)] = 38397, - [SMALL_STATE(1631)] = 38477, - [SMALL_STATE(1632)] = 38533, - [SMALL_STATE(1633)] = 38587, - [SMALL_STATE(1634)] = 38651, - [SMALL_STATE(1635)] = 38705, - [SMALL_STATE(1636)] = 38783, - [SMALL_STATE(1637)] = 38853, - [SMALL_STATE(1638)] = 38907, - [SMALL_STATE(1639)] = 38961, - [SMALL_STATE(1640)] = 39015, - [SMALL_STATE(1641)] = 39071, - [SMALL_STATE(1642)] = 39125, - [SMALL_STATE(1643)] = 39179, - [SMALL_STATE(1644)] = 39233, - [SMALL_STATE(1645)] = 39321, - [SMALL_STATE(1646)] = 39377, - [SMALL_STATE(1647)] = 39433, - [SMALL_STATE(1648)] = 39525, - [SMALL_STATE(1649)] = 39605, - [SMALL_STATE(1650)] = 39661, - [SMALL_STATE(1651)] = 39743, - [SMALL_STATE(1652)] = 39829, - [SMALL_STATE(1653)] = 39915, - [SMALL_STATE(1654)] = 40001, - [SMALL_STATE(1655)] = 40057, - [SMALL_STATE(1656)] = 40113, - [SMALL_STATE(1657)] = 40179, - [SMALL_STATE(1658)] = 40271, - [SMALL_STATE(1659)] = 40363, - [SMALL_STATE(1660)] = 40421, - [SMALL_STATE(1661)] = 40513, - [SMALL_STATE(1662)] = 40599, - [SMALL_STATE(1663)] = 40685, - [SMALL_STATE(1664)] = 40741, - [SMALL_STATE(1665)] = 40815, - [SMALL_STATE(1666)] = 40869, - [SMALL_STATE(1667)] = 40961, - [SMALL_STATE(1668)] = 41015, - [SMALL_STATE(1669)] = 41097, - [SMALL_STATE(1670)] = 41153, - [SMALL_STATE(1671)] = 41207, - [SMALL_STATE(1672)] = 41263, - [SMALL_STATE(1673)] = 41351, - [SMALL_STATE(1674)] = 41407, - [SMALL_STATE(1675)] = 41463, - [SMALL_STATE(1676)] = 41551, - [SMALL_STATE(1677)] = 41619, - [SMALL_STATE(1678)] = 41675, - [SMALL_STATE(1679)] = 41767, - [SMALL_STATE(1680)] = 41823, - [SMALL_STATE(1681)] = 41879, - [SMALL_STATE(1682)] = 41933, - [SMALL_STATE(1683)] = 41987, - [SMALL_STATE(1684)] = 42041, - [SMALL_STATE(1685)] = 42127, - [SMALL_STATE(1686)] = 42181, - [SMALL_STATE(1687)] = 42269, - [SMALL_STATE(1688)] = 42346, - [SMALL_STATE(1689)] = 42399, - [SMALL_STATE(1690)] = 42452, - [SMALL_STATE(1691)] = 42505, - [SMALL_STATE(1692)] = 42558, - [SMALL_STATE(1693)] = 42611, - [SMALL_STATE(1694)] = 42670, - [SMALL_STATE(1695)] = 42757, - [SMALL_STATE(1696)] = 42810, - [SMALL_STATE(1697)] = 42863, - [SMALL_STATE(1698)] = 42916, - [SMALL_STATE(1699)] = 42969, - [SMALL_STATE(1700)] = 43022, - [SMALL_STATE(1701)] = 43075, - [SMALL_STATE(1702)] = 43164, - [SMALL_STATE(1703)] = 43253, - [SMALL_STATE(1704)] = 43306, - [SMALL_STATE(1705)] = 43359, - [SMALL_STATE(1706)] = 43412, - [SMALL_STATE(1707)] = 43465, - [SMALL_STATE(1708)] = 43524, - [SMALL_STATE(1709)] = 43577, - [SMALL_STATE(1710)] = 43630, - [SMALL_STATE(1711)] = 43683, - [SMALL_STATE(1712)] = 43736, - [SMALL_STATE(1713)] = 43789, - [SMALL_STATE(1714)] = 43842, - [SMALL_STATE(1715)] = 43895, - [SMALL_STATE(1716)] = 43948, - [SMALL_STATE(1717)] = 44033, - [SMALL_STATE(1718)] = 44086, - [SMALL_STATE(1719)] = 44147, - [SMALL_STATE(1720)] = 44200, - [SMALL_STATE(1721)] = 44253, - [SMALL_STATE(1722)] = 44306, - [SMALL_STATE(1723)] = 44359, - [SMALL_STATE(1724)] = 44448, - [SMALL_STATE(1725)] = 44535, - [SMALL_STATE(1726)] = 44588, - [SMALL_STATE(1727)] = 44641, - [SMALL_STATE(1728)] = 44694, - [SMALL_STATE(1729)] = 44747, - [SMALL_STATE(1730)] = 44824, - [SMALL_STATE(1731)] = 44913, - [SMALL_STATE(1732)] = 44966, - [SMALL_STATE(1733)] = 45019, - [SMALL_STATE(1734)] = 45072, - [SMALL_STATE(1735)] = 45125, - [SMALL_STATE(1736)] = 45178, - [SMALL_STATE(1737)] = 45231, - [SMALL_STATE(1738)] = 45316, - [SMALL_STATE(1739)] = 45403, - [SMALL_STATE(1740)] = 45492, - [SMALL_STATE(1741)] = 45545, - [SMALL_STATE(1742)] = 45598, - [SMALL_STATE(1743)] = 45683, - [SMALL_STATE(1744)] = 45736, - [SMALL_STATE(1745)] = 45789, - [SMALL_STATE(1746)] = 45842, - [SMALL_STATE(1747)] = 45929, - [SMALL_STATE(1748)] = 46016, - [SMALL_STATE(1749)] = 46069, - [SMALL_STATE(1750)] = 46122, - [SMALL_STATE(1751)] = 46185, - [SMALL_STATE(1752)] = 46254, - [SMALL_STATE(1753)] = 46321, - [SMALL_STATE(1754)] = 46392, - [SMALL_STATE(1755)] = 46481, - [SMALL_STATE(1756)] = 46560, - [SMALL_STATE(1757)] = 46625, - [SMALL_STATE(1758)] = 46710, - [SMALL_STATE(1759)] = 46795, - [SMALL_STATE(1760)] = 46868, - [SMALL_STATE(1761)] = 46949, - [SMALL_STATE(1762)] = 47002, - [SMALL_STATE(1763)] = 47055, - [SMALL_STATE(1764)] = 47142, - [SMALL_STATE(1765)] = 47195, - [SMALL_STATE(1766)] = 47248, - [SMALL_STATE(1767)] = 47335, - [SMALL_STATE(1768)] = 47388, - [SMALL_STATE(1769)] = 47441, - [SMALL_STATE(1770)] = 47494, - [SMALL_STATE(1771)] = 47547, - [SMALL_STATE(1772)] = 47600, - [SMALL_STATE(1773)] = 47653, - [SMALL_STATE(1774)] = 47706, - [SMALL_STATE(1775)] = 47759, - [SMALL_STATE(1776)] = 47812, - [SMALL_STATE(1777)] = 47865, - [SMALL_STATE(1778)] = 47918, - [SMALL_STATE(1779)] = 47971, - [SMALL_STATE(1780)] = 48024, - [SMALL_STATE(1781)] = 48111, - [SMALL_STATE(1782)] = 48164, - [SMALL_STATE(1783)] = 48217, - [SMALL_STATE(1784)] = 48270, - [SMALL_STATE(1785)] = 48357, - [SMALL_STATE(1786)] = 48410, - [SMALL_STATE(1787)] = 48463, - [SMALL_STATE(1788)] = 48516, - [SMALL_STATE(1789)] = 48569, - [SMALL_STATE(1790)] = 48656, - [SMALL_STATE(1791)] = 48709, - [SMALL_STATE(1792)] = 48762, - [SMALL_STATE(1793)] = 48815, - [SMALL_STATE(1794)] = 48902, - [SMALL_STATE(1795)] = 48961, - [SMALL_STATE(1796)] = 49014, - [SMALL_STATE(1797)] = 49067, - [SMALL_STATE(1798)] = 49120, - [SMALL_STATE(1799)] = 49173, - [SMALL_STATE(1800)] = 49226, - [SMALL_STATE(1801)] = 49307, - [SMALL_STATE(1802)] = 49394, - [SMALL_STATE(1803)] = 49481, - [SMALL_STATE(1804)] = 49534, - [SMALL_STATE(1805)] = 49623, - [SMALL_STATE(1806)] = 49712, - [SMALL_STATE(1807)] = 49765, - [SMALL_STATE(1808)] = 49854, - [SMALL_STATE(1809)] = 49941, - [SMALL_STATE(1810)] = 49994, - [SMALL_STATE(1811)] = 50047, - [SMALL_STATE(1812)] = 50136, - [SMALL_STATE(1813)] = 50189, - [SMALL_STATE(1814)] = 50242, - [SMALL_STATE(1815)] = 50295, - [SMALL_STATE(1816)] = 50348, - [SMALL_STATE(1817)] = 50401, - [SMALL_STATE(1818)] = 50490, - [SMALL_STATE(1819)] = 50577, - [SMALL_STATE(1820)] = 50630, - [SMALL_STATE(1821)] = 50719, - [SMALL_STATE(1822)] = 50806, - [SMALL_STATE(1823)] = 50883, - [SMALL_STATE(1824)] = 50970, - [SMALL_STATE(1825)] = 51059, - [SMALL_STATE(1826)] = 51146, - [SMALL_STATE(1827)] = 51199, - [SMALL_STATE(1828)] = 51288, - [SMALL_STATE(1829)] = 51341, - [SMALL_STATE(1830)] = 51430, - [SMALL_STATE(1831)] = 51515, - [SMALL_STATE(1832)] = 51604, - [SMALL_STATE(1833)] = 51693, - [SMALL_STATE(1834)] = 51782, - [SMALL_STATE(1835)] = 51871, - [SMALL_STATE(1836)] = 51958, - [SMALL_STATE(1837)] = 52047, - [SMALL_STATE(1838)] = 52136, - [SMALL_STATE(1839)] = 52189, - [SMALL_STATE(1840)] = 52242, - [SMALL_STATE(1841)] = 52331, - [SMALL_STATE(1842)] = 52384, - [SMALL_STATE(1843)] = 52437, - [SMALL_STATE(1844)] = 52522, - [SMALL_STATE(1845)] = 52575, - [SMALL_STATE(1846)] = 52656, - [SMALL_STATE(1847)] = 52741, - [SMALL_STATE(1848)] = 52830, - [SMALL_STATE(1849)] = 52915, - [SMALL_STATE(1850)] = 53000, - [SMALL_STATE(1851)] = 53089, - [SMALL_STATE(1852)] = 53142, - [SMALL_STATE(1853)] = 53231, - [SMALL_STATE(1854)] = 53294, - [SMALL_STATE(1855)] = 53363, - [SMALL_STATE(1856)] = 53416, - [SMALL_STATE(1857)] = 53483, - [SMALL_STATE(1858)] = 53572, - [SMALL_STATE(1859)] = 53643, - [SMALL_STATE(1860)] = 53732, - [SMALL_STATE(1861)] = 53809, - [SMALL_STATE(1862)] = 53898, - [SMALL_STATE(1863)] = 53987, - [SMALL_STATE(1864)] = 54076, - [SMALL_STATE(1865)] = 54165, - [SMALL_STATE(1866)] = 54254, - [SMALL_STATE(1867)] = 54333, - [SMALL_STATE(1868)] = 54422, - [SMALL_STATE(1869)] = 54475, - [SMALL_STATE(1870)] = 54564, - [SMALL_STATE(1871)] = 54629, - [SMALL_STATE(1872)] = 54714, - [SMALL_STATE(1873)] = 54767, - [SMALL_STATE(1874)] = 54856, - [SMALL_STATE(1875)] = 54945, - [SMALL_STATE(1876)] = 55034, - [SMALL_STATE(1877)] = 55123, - [SMALL_STATE(1878)] = 55212, - [SMALL_STATE(1879)] = 55301, - [SMALL_STATE(1880)] = 55354, - [SMALL_STATE(1881)] = 55443, - [SMALL_STATE(1882)] = 55532, - [SMALL_STATE(1883)] = 55621, - [SMALL_STATE(1884)] = 55710, - [SMALL_STATE(1885)] = 55799, - [SMALL_STATE(1886)] = 55888, - [SMALL_STATE(1887)] = 55973, - [SMALL_STATE(1888)] = 56046, - [SMALL_STATE(1889)] = 56127, - [SMALL_STATE(1890)] = 56186, - [SMALL_STATE(1891)] = 56239, - [SMALL_STATE(1892)] = 56292, - [SMALL_STATE(1893)] = 56345, - [SMALL_STATE(1894)] = 56398, - [SMALL_STATE(1895)] = 56451, - [SMALL_STATE(1896)] = 56536, - [SMALL_STATE(1897)] = 56589, - [SMALL_STATE(1898)] = 56642, - [SMALL_STATE(1899)] = 56695, - [SMALL_STATE(1900)] = 56780, - [SMALL_STATE(1901)] = 56869, - [SMALL_STATE(1902)] = 56958, - [SMALL_STATE(1903)] = 57047, - [SMALL_STATE(1904)] = 57100, - [SMALL_STATE(1905)] = 57189, - [SMALL_STATE(1906)] = 57275, - [SMALL_STATE(1907)] = 57361, - [SMALL_STATE(1908)] = 57447, - [SMALL_STATE(1909)] = 57533, - [SMALL_STATE(1910)] = 57607, - [SMALL_STATE(1911)] = 57693, - [SMALL_STATE(1912)] = 57767, - [SMALL_STATE(1913)] = 57851, - [SMALL_STATE(1914)] = 57937, - [SMALL_STATE(1915)] = 58023, - [SMALL_STATE(1916)] = 58109, - [SMALL_STATE(1917)] = 58195, - [SMALL_STATE(1918)] = 58281, - [SMALL_STATE(1919)] = 58355, - [SMALL_STATE(1920)] = 58441, - [SMALL_STATE(1921)] = 58527, - [SMALL_STATE(1922)] = 58613, - [SMALL_STATE(1923)] = 58699, - [SMALL_STATE(1924)] = 58785, - [SMALL_STATE(1925)] = 58871, - [SMALL_STATE(1926)] = 58957, - [SMALL_STATE(1927)] = 59043, - [SMALL_STATE(1928)] = 59129, - [SMALL_STATE(1929)] = 59213, - [SMALL_STATE(1930)] = 59299, - [SMALL_STATE(1931)] = 59385, - [SMALL_STATE(1932)] = 59471, - [SMALL_STATE(1933)] = 59557, - [SMALL_STATE(1934)] = 59631, - [SMALL_STATE(1935)] = 59717, - [SMALL_STATE(1936)] = 59791, - [SMALL_STATE(1937)] = 59877, - [SMALL_STATE(1938)] = 59963, - [SMALL_STATE(1939)] = 60049, - [SMALL_STATE(1940)] = 60135, - [SMALL_STATE(1941)] = 60221, - [SMALL_STATE(1942)] = 60307, - [SMALL_STATE(1943)] = 60382, - [SMALL_STATE(1944)] = 60457, - [SMALL_STATE(1945)] = 60532, - [SMALL_STATE(1946)] = 60607, - [SMALL_STATE(1947)] = 60682, - [SMALL_STATE(1948)] = 60757, - [SMALL_STATE(1949)] = 60832, - [SMALL_STATE(1950)] = 60907, - [SMALL_STATE(1951)] = 60954, - [SMALL_STATE(1952)] = 61001, - [SMALL_STATE(1953)] = 61048, - [SMALL_STATE(1954)] = 61110, - [SMALL_STATE(1955)] = 61172, - [SMALL_STATE(1956)] = 61234, - [SMALL_STATE(1957)] = 61296, - [SMALL_STATE(1958)] = 61358, - [SMALL_STATE(1959)] = 61420, - [SMALL_STATE(1960)] = 61482, - [SMALL_STATE(1961)] = 61544, - [SMALL_STATE(1962)] = 61606, - [SMALL_STATE(1963)] = 61665, - [SMALL_STATE(1964)] = 61724, - [SMALL_STATE(1965)] = 61760, - [SMALL_STATE(1966)] = 61796, - [SMALL_STATE(1967)] = 61844, - [SMALL_STATE(1968)] = 61881, - [SMALL_STATE(1969)] = 61918, - [SMALL_STATE(1970)] = 61955, - [SMALL_STATE(1971)] = 62008, - [SMALL_STATE(1972)] = 62045, - [SMALL_STATE(1973)] = 62090, - [SMALL_STATE(1974)] = 62135, - [SMALL_STATE(1975)] = 62180, - [SMALL_STATE(1976)] = 62220, - [SMALL_STATE(1977)] = 62256, - [SMALL_STATE(1978)] = 62290, - [SMALL_STATE(1979)] = 62330, - [SMALL_STATE(1980)] = 62364, - [SMALL_STATE(1981)] = 62400, - [SMALL_STATE(1982)] = 62436, - [SMALL_STATE(1983)] = 62470, - [SMALL_STATE(1984)] = 62504, - [SMALL_STATE(1985)] = 62544, - [SMALL_STATE(1986)] = 62580, - [SMALL_STATE(1987)] = 62620, - [SMALL_STATE(1988)] = 62671, - [SMALL_STATE(1989)] = 62704, - [SMALL_STATE(1990)] = 62737, - [SMALL_STATE(1991)] = 62770, - [SMALL_STATE(1992)] = 62801, - [SMALL_STATE(1993)] = 62834, - [SMALL_STATE(1994)] = 62866, - [SMALL_STATE(1995)] = 62898, - [SMALL_STATE(1996)] = 62944, - [SMALL_STATE(1997)] = 63004, - [SMALL_STATE(1998)] = 63064, - [SMALL_STATE(1999)] = 63108, - [SMALL_STATE(2000)] = 63140, - [SMALL_STATE(2001)] = 63173, - [SMALL_STATE(2002)] = 63206, - [SMALL_STATE(2003)] = 63237, - [SMALL_STATE(2004)] = 63292, - [SMALL_STATE(2005)] = 63321, - [SMALL_STATE(2006)] = 63354, - [SMALL_STATE(2007)] = 63385, - [SMALL_STATE(2008)] = 63414, - [SMALL_STATE(2009)] = 63443, - [SMALL_STATE(2010)] = 63472, - [SMALL_STATE(2011)] = 63503, - [SMALL_STATE(2012)] = 63532, - [SMALL_STATE(2013)] = 63561, - [SMALL_STATE(2014)] = 63590, - [SMALL_STATE(2015)] = 63619, - [SMALL_STATE(2016)] = 63650, - [SMALL_STATE(2017)] = 63691, - [SMALL_STATE(2018)] = 63722, - [SMALL_STATE(2019)] = 63775, - [SMALL_STATE(2020)] = 63808, - [SMALL_STATE(2021)] = 63837, - [SMALL_STATE(2022)] = 63890, - [SMALL_STATE(2023)] = 63923, - [SMALL_STATE(2024)] = 63954, - [SMALL_STATE(2025)] = 63985, - [SMALL_STATE(2026)] = 64018, - [SMALL_STATE(2027)] = 64061, - [SMALL_STATE(2028)] = 64092, - [SMALL_STATE(2029)] = 64120, - [SMALL_STATE(2030)] = 64148, - [SMALL_STATE(2031)] = 64176, - [SMALL_STATE(2032)] = 64204, - [SMALL_STATE(2033)] = 64232, - [SMALL_STATE(2034)] = 64260, - [SMALL_STATE(2035)] = 64288, - [SMALL_STATE(2036)] = 64316, - [SMALL_STATE(2037)] = 64344, - [SMALL_STATE(2038)] = 64372, - [SMALL_STATE(2039)] = 64400, - [SMALL_STATE(2040)] = 64428, - [SMALL_STATE(2041)] = 64456, - [SMALL_STATE(2042)] = 64484, - [SMALL_STATE(2043)] = 64512, - [SMALL_STATE(2044)] = 64540, - [SMALL_STATE(2045)] = 64568, - [SMALL_STATE(2046)] = 64596, - [SMALL_STATE(2047)] = 64624, - [SMALL_STATE(2048)] = 64652, - [SMALL_STATE(2049)] = 64682, - [SMALL_STATE(2050)] = 64710, - [SMALL_STATE(2051)] = 64738, - [SMALL_STATE(2052)] = 64766, - [SMALL_STATE(2053)] = 64794, - [SMALL_STATE(2054)] = 64822, - [SMALL_STATE(2055)] = 64850, - [SMALL_STATE(2056)] = 64878, - [SMALL_STATE(2057)] = 64906, - [SMALL_STATE(2058)] = 64934, - [SMALL_STATE(2059)] = 64962, - [SMALL_STATE(2060)] = 64990, - [SMALL_STATE(2061)] = 65018, - [SMALL_STATE(2062)] = 65046, - [SMALL_STATE(2063)] = 65074, - [SMALL_STATE(2064)] = 65102, - [SMALL_STATE(2065)] = 65146, - [SMALL_STATE(2066)] = 65174, - [SMALL_STATE(2067)] = 65202, - [SMALL_STATE(2068)] = 65232, - [SMALL_STATE(2069)] = 65263, - [SMALL_STATE(2070)] = 65298, - [SMALL_STATE(2071)] = 65327, - [SMALL_STATE(2072)] = 65356, - [SMALL_STATE(2073)] = 65385, - [SMALL_STATE(2074)] = 65431, - [SMALL_STATE(2075)] = 65459, - [SMALL_STATE(2076)] = 65503, - [SMALL_STATE(2077)] = 65533, - [SMALL_STATE(2078)] = 65565, - [SMALL_STATE(2079)] = 65597, - [SMALL_STATE(2080)] = 65629, - [SMALL_STATE(2081)] = 65661, - [SMALL_STATE(2082)] = 65693, - [SMALL_STATE(2083)] = 65725, - [SMALL_STATE(2084)] = 65757, - [SMALL_STATE(2085)] = 65789, - [SMALL_STATE(2086)] = 65821, - [SMALL_STATE(2087)] = 65853, - [SMALL_STATE(2088)] = 65885, - [SMALL_STATE(2089)] = 65917, - [SMALL_STATE(2090)] = 65960, - [SMALL_STATE(2091)] = 65997, - [SMALL_STATE(2092)] = 66040, - [SMALL_STATE(2093)] = 66083, - [SMALL_STATE(2094)] = 66126, - [SMALL_STATE(2095)] = 66155, - [SMALL_STATE(2096)] = 66198, - [SMALL_STATE(2097)] = 66241, - [SMALL_STATE(2098)] = 66270, - [SMALL_STATE(2099)] = 66300, - [SMALL_STATE(2100)] = 66328, - [SMALL_STATE(2101)] = 66352, - [SMALL_STATE(2102)] = 66382, - [SMALL_STATE(2103)] = 66422, - [SMALL_STATE(2104)] = 66450, - [SMALL_STATE(2105)] = 66478, - [SMALL_STATE(2106)] = 66506, - [SMALL_STATE(2107)] = 66534, - [SMALL_STATE(2108)] = 66562, - [SMALL_STATE(2109)] = 66586, - [SMALL_STATE(2110)] = 66624, - [SMALL_STATE(2111)] = 66662, - [SMALL_STATE(2112)] = 66702, - [SMALL_STATE(2113)] = 66726, - [SMALL_STATE(2114)] = 66750, - [SMALL_STATE(2115)] = 66784, - [SMALL_STATE(2116)] = 66812, - [SMALL_STATE(2117)] = 66840, - [SMALL_STATE(2118)] = 66878, - [SMALL_STATE(2119)] = 66906, - [SMALL_STATE(2120)] = 66934, - [SMALL_STATE(2121)] = 66974, - [SMALL_STATE(2122)] = 67014, - [SMALL_STATE(2123)] = 67052, - [SMALL_STATE(2124)] = 67092, - [SMALL_STATE(2125)] = 67116, - [SMALL_STATE(2126)] = 67156, - [SMALL_STATE(2127)] = 67196, - [SMALL_STATE(2128)] = 67236, - [SMALL_STATE(2129)] = 67276, - [SMALL_STATE(2130)] = 67306, - [SMALL_STATE(2131)] = 67334, - [SMALL_STATE(2132)] = 67364, - [SMALL_STATE(2133)] = 67402, - [SMALL_STATE(2134)] = 67430, - [SMALL_STATE(2135)] = 67468, - [SMALL_STATE(2136)] = 67506, - [SMALL_STATE(2137)] = 67544, - [SMALL_STATE(2138)] = 67572, - [SMALL_STATE(2139)] = 67600, - [SMALL_STATE(2140)] = 67628, - [SMALL_STATE(2141)] = 67666, - [SMALL_STATE(2142)] = 67694, - [SMALL_STATE(2143)] = 67728, - [SMALL_STATE(2144)] = 67768, - [SMALL_STATE(2145)] = 67791, - [SMALL_STATE(2146)] = 67814, - [SMALL_STATE(2147)] = 67837, - [SMALL_STATE(2148)] = 67860, - [SMALL_STATE(2149)] = 67883, - [SMALL_STATE(2150)] = 67924, - [SMALL_STATE(2151)] = 67947, - [SMALL_STATE(2152)] = 67970, - [SMALL_STATE(2153)] = 67993, - [SMALL_STATE(2154)] = 68016, - [SMALL_STATE(2155)] = 68049, - [SMALL_STATE(2156)] = 68080, - [SMALL_STATE(2157)] = 68103, - [SMALL_STATE(2158)] = 68126, - [SMALL_STATE(2159)] = 68167, - [SMALL_STATE(2160)] = 68208, - [SMALL_STATE(2161)] = 68231, - [SMALL_STATE(2162)] = 68254, - [SMALL_STATE(2163)] = 68291, - [SMALL_STATE(2164)] = 68328, - [SMALL_STATE(2165)] = 68365, - [SMALL_STATE(2166)] = 68388, - [SMALL_STATE(2167)] = 68411, - [SMALL_STATE(2168)] = 68442, - [SMALL_STATE(2169)] = 68465, - [SMALL_STATE(2170)] = 68496, - [SMALL_STATE(2171)] = 68537, - [SMALL_STATE(2172)] = 68560, - [SMALL_STATE(2173)] = 68583, - [SMALL_STATE(2174)] = 68606, - [SMALL_STATE(2175)] = 68629, - [SMALL_STATE(2176)] = 68660, - [SMALL_STATE(2177)] = 68683, - [SMALL_STATE(2178)] = 68706, - [SMALL_STATE(2179)] = 68729, - [SMALL_STATE(2180)] = 68752, - [SMALL_STATE(2181)] = 68775, - [SMALL_STATE(2182)] = 68798, - [SMALL_STATE(2183)] = 68821, - [SMALL_STATE(2184)] = 68844, - [SMALL_STATE(2185)] = 68867, - [SMALL_STATE(2186)] = 68890, - [SMALL_STATE(2187)] = 68913, - [SMALL_STATE(2188)] = 68936, - [SMALL_STATE(2189)] = 68959, - [SMALL_STATE(2190)] = 68982, - [SMALL_STATE(2191)] = 69005, - [SMALL_STATE(2192)] = 69040, - [SMALL_STATE(2193)] = 69075, - [SMALL_STATE(2194)] = 69098, - [SMALL_STATE(2195)] = 69135, - [SMALL_STATE(2196)] = 69170, - [SMALL_STATE(2197)] = 69194, - [SMALL_STATE(2198)] = 69222, - [SMALL_STATE(2199)] = 69260, - [SMALL_STATE(2200)] = 69288, - [SMALL_STATE(2201)] = 69320, - [SMALL_STATE(2202)] = 69352, - [SMALL_STATE(2203)] = 69390, - [SMALL_STATE(2204)] = 69418, - [SMALL_STATE(2205)] = 69444, - [SMALL_STATE(2206)] = 69478, - [SMALL_STATE(2207)] = 69516, - [SMALL_STATE(2208)] = 69554, - [SMALL_STATE(2209)] = 69578, - [SMALL_STATE(2210)] = 69606, - [SMALL_STATE(2211)] = 69644, - [SMALL_STATE(2212)] = 69676, - [SMALL_STATE(2213)] = 69704, - [SMALL_STATE(2214)] = 69742, - [SMALL_STATE(2215)] = 69780, - [SMALL_STATE(2216)] = 69818, - [SMALL_STATE(2217)] = 69856, - [SMALL_STATE(2218)] = 69880, - [SMALL_STATE(2219)] = 69912, - [SMALL_STATE(2220)] = 69940, - [SMALL_STATE(2221)] = 69974, - [SMALL_STATE(2222)] = 70006, - [SMALL_STATE(2223)] = 70038, - [SMALL_STATE(2224)] = 70076, - [SMALL_STATE(2225)] = 70114, - [SMALL_STATE(2226)] = 70152, - [SMALL_STATE(2227)] = 70178, - [SMALL_STATE(2228)] = 70204, - [SMALL_STATE(2229)] = 70230, - [SMALL_STATE(2230)] = 70258, - [SMALL_STATE(2231)] = 70294, - [SMALL_STATE(2232)] = 70332, - [SMALL_STATE(2233)] = 70364, - [SMALL_STATE(2234)] = 70402, - [SMALL_STATE(2235)] = 70434, - [SMALL_STATE(2236)] = 70472, - [SMALL_STATE(2237)] = 70496, - [SMALL_STATE(2238)] = 70528, - [SMALL_STATE(2239)] = 70560, - [SMALL_STATE(2240)] = 70598, - [SMALL_STATE(2241)] = 70630, - [SMALL_STATE(2242)] = 70662, - [SMALL_STATE(2243)] = 70694, - [SMALL_STATE(2244)] = 70718, - [SMALL_STATE(2245)] = 70753, - [SMALL_STATE(2246)] = 70788, - [SMALL_STATE(2247)] = 70823, - [SMALL_STATE(2248)] = 70858, - [SMALL_STATE(2249)] = 70893, - [SMALL_STATE(2250)] = 70928, - [SMALL_STATE(2251)] = 70961, - [SMALL_STATE(2252)] = 70996, - [SMALL_STATE(2253)] = 71025, - [SMALL_STATE(2254)] = 71058, - [SMALL_STATE(2255)] = 71093, - [SMALL_STATE(2256)] = 71128, - [SMALL_STATE(2257)] = 71163, - [SMALL_STATE(2258)] = 71198, - [SMALL_STATE(2259)] = 71233, - [SMALL_STATE(2260)] = 71254, - [SMALL_STATE(2261)] = 71289, - [SMALL_STATE(2262)] = 71324, - [SMALL_STATE(2263)] = 71359, - [SMALL_STATE(2264)] = 71394, - [SMALL_STATE(2265)] = 71415, - [SMALL_STATE(2266)] = 71436, - [SMALL_STATE(2267)] = 71469, - [SMALL_STATE(2268)] = 71504, - [SMALL_STATE(2269)] = 71539, - [SMALL_STATE(2270)] = 71574, - [SMALL_STATE(2271)] = 71595, - [SMALL_STATE(2272)] = 71630, - [SMALL_STATE(2273)] = 71665, - [SMALL_STATE(2274)] = 71698, - [SMALL_STATE(2275)] = 71723, - [SMALL_STATE(2276)] = 71758, - [SMALL_STATE(2277)] = 71791, - [SMALL_STATE(2278)] = 71826, - [SMALL_STATE(2279)] = 71853, - [SMALL_STATE(2280)] = 71888, - [SMALL_STATE(2281)] = 71923, - [SMALL_STATE(2282)] = 71958, - [SMALL_STATE(2283)] = 71993, - [SMALL_STATE(2284)] = 72028, - [SMALL_STATE(2285)] = 72063, - [SMALL_STATE(2286)] = 72098, - [SMALL_STATE(2287)] = 72133, - [SMALL_STATE(2288)] = 72168, - [SMALL_STATE(2289)] = 72189, - [SMALL_STATE(2290)] = 72224, - [SMALL_STATE(2291)] = 72259, - [SMALL_STATE(2292)] = 72280, - [SMALL_STATE(2293)] = 72315, - [SMALL_STATE(2294)] = 72350, - [SMALL_STATE(2295)] = 72385, - [SMALL_STATE(2296)] = 72410, - [SMALL_STATE(2297)] = 72445, - [SMALL_STATE(2298)] = 72480, - [SMALL_STATE(2299)] = 72505, - [SMALL_STATE(2300)] = 72540, - [SMALL_STATE(2301)] = 72566, - [SMALL_STATE(2302)] = 72598, - [SMALL_STATE(2303)] = 72628, - [SMALL_STATE(2304)] = 72660, - [SMALL_STATE(2305)] = 72692, - [SMALL_STATE(2306)] = 72724, - [SMALL_STATE(2307)] = 72756, - [SMALL_STATE(2308)] = 72788, - [SMALL_STATE(2309)] = 72820, - [SMALL_STATE(2310)] = 72846, - [SMALL_STATE(2311)] = 72878, - [SMALL_STATE(2312)] = 72910, - [SMALL_STATE(2313)] = 72942, - [SMALL_STATE(2314)] = 72974, - [SMALL_STATE(2315)] = 73004, - [SMALL_STATE(2316)] = 73026, - [SMALL_STATE(2317)] = 73058, - [SMALL_STATE(2318)] = 73090, - [SMALL_STATE(2319)] = 73120, - [SMALL_STATE(2320)] = 73148, - [SMALL_STATE(2321)] = 73178, - [SMALL_STATE(2322)] = 73208, - [SMALL_STATE(2323)] = 73240, - [SMALL_STATE(2324)] = 73272, - [SMALL_STATE(2325)] = 73304, - [SMALL_STATE(2326)] = 73336, - [SMALL_STATE(2327)] = 73358, - [SMALL_STATE(2328)] = 73390, - [SMALL_STATE(2329)] = 73420, - [SMALL_STATE(2330)] = 73452, - [SMALL_STATE(2331)] = 73484, - [SMALL_STATE(2332)] = 73516, - [SMALL_STATE(2333)] = 73548, - [SMALL_STATE(2334)] = 73576, - [SMALL_STATE(2335)] = 73602, - [SMALL_STATE(2336)] = 73630, - [SMALL_STATE(2337)] = 73662, - [SMALL_STATE(2338)] = 73692, - [SMALL_STATE(2339)] = 73724, - [SMALL_STATE(2340)] = 73756, - [SMALL_STATE(2341)] = 73788, - [SMALL_STATE(2342)] = 73820, - [SMALL_STATE(2343)] = 73852, - [SMALL_STATE(2344)] = 73884, - [SMALL_STATE(2345)] = 73914, - [SMALL_STATE(2346)] = 73944, - [SMALL_STATE(2347)] = 73972, - [SMALL_STATE(2348)] = 73994, - [SMALL_STATE(2349)] = 74026, - [SMALL_STATE(2350)] = 74058, - [SMALL_STATE(2351)] = 74090, - [SMALL_STATE(2352)] = 74116, - [SMALL_STATE(2353)] = 74146, - [SMALL_STATE(2354)] = 74178, - [SMALL_STATE(2355)] = 74200, - [SMALL_STATE(2356)] = 74222, - [SMALL_STATE(2357)] = 74244, - [SMALL_STATE(2358)] = 74272, - [SMALL_STATE(2359)] = 74301, - [SMALL_STATE(2360)] = 74330, - [SMALL_STATE(2361)] = 74359, - [SMALL_STATE(2362)] = 74388, - [SMALL_STATE(2363)] = 74417, - [SMALL_STATE(2364)] = 74446, - [SMALL_STATE(2365)] = 74475, - [SMALL_STATE(2366)] = 74496, - [SMALL_STATE(2367)] = 74519, - [SMALL_STATE(2368)] = 74548, - [SMALL_STATE(2369)] = 74577, - [SMALL_STATE(2370)] = 74606, - [SMALL_STATE(2371)] = 74633, - [SMALL_STATE(2372)] = 74662, - [SMALL_STATE(2373)] = 74691, - [SMALL_STATE(2374)] = 74718, - [SMALL_STATE(2375)] = 74739, - [SMALL_STATE(2376)] = 74766, - [SMALL_STATE(2377)] = 74795, - [SMALL_STATE(2378)] = 74824, - [SMALL_STATE(2379)] = 74845, - [SMALL_STATE(2380)] = 74874, - [SMALL_STATE(2381)] = 74903, - [SMALL_STATE(2382)] = 74932, - [SMALL_STATE(2383)] = 74961, - [SMALL_STATE(2384)] = 74984, - [SMALL_STATE(2385)] = 75013, - [SMALL_STATE(2386)] = 75042, - [SMALL_STATE(2387)] = 75071, - [SMALL_STATE(2388)] = 75096, - [SMALL_STATE(2389)] = 75125, - [SMALL_STATE(2390)] = 75146, - [SMALL_STATE(2391)] = 75169, - [SMALL_STATE(2392)] = 75196, - [SMALL_STATE(2393)] = 75219, - [SMALL_STATE(2394)] = 75248, - [SMALL_STATE(2395)] = 75277, - [SMALL_STATE(2396)] = 75302, - [SMALL_STATE(2397)] = 75331, - [SMALL_STATE(2398)] = 75352, - [SMALL_STATE(2399)] = 75375, - [SMALL_STATE(2400)] = 75396, - [SMALL_STATE(2401)] = 75425, - [SMALL_STATE(2402)] = 75448, - [SMALL_STATE(2403)] = 75477, - [SMALL_STATE(2404)] = 75498, - [SMALL_STATE(2405)] = 75527, - [SMALL_STATE(2406)] = 75556, - [SMALL_STATE(2407)] = 75585, - [SMALL_STATE(2408)] = 75614, - [SMALL_STATE(2409)] = 75643, - [SMALL_STATE(2410)] = 75664, - [SMALL_STATE(2411)] = 75693, - [SMALL_STATE(2412)] = 75722, - [SMALL_STATE(2413)] = 75751, - [SMALL_STATE(2414)] = 75774, - [SMALL_STATE(2415)] = 75803, - [SMALL_STATE(2416)] = 75832, - [SMALL_STATE(2417)] = 75861, - [SMALL_STATE(2418)] = 75890, - [SMALL_STATE(2419)] = 75919, - [SMALL_STATE(2420)] = 75946, - [SMALL_STATE(2421)] = 75975, - [SMALL_STATE(2422)] = 76000, - [SMALL_STATE(2423)] = 76019, - [SMALL_STATE(2424)] = 76048, - [SMALL_STATE(2425)] = 76077, - [SMALL_STATE(2426)] = 76100, - [SMALL_STATE(2427)] = 76129, - [SMALL_STATE(2428)] = 76158, - [SMALL_STATE(2429)] = 76187, - [SMALL_STATE(2430)] = 76210, - [SMALL_STATE(2431)] = 76233, - [SMALL_STATE(2432)] = 76262, - [SMALL_STATE(2433)] = 76291, - [SMALL_STATE(2434)] = 76320, - [SMALL_STATE(2435)] = 76349, - [SMALL_STATE(2436)] = 76378, - [SMALL_STATE(2437)] = 76407, - [SMALL_STATE(2438)] = 76436, - [SMALL_STATE(2439)] = 76463, - [SMALL_STATE(2440)] = 76484, - [SMALL_STATE(2441)] = 76513, - [SMALL_STATE(2442)] = 76542, - [SMALL_STATE(2443)] = 76565, - [SMALL_STATE(2444)] = 76594, - [SMALL_STATE(2445)] = 76623, - [SMALL_STATE(2446)] = 76646, - [SMALL_STATE(2447)] = 76669, - [SMALL_STATE(2448)] = 76688, - [SMALL_STATE(2449)] = 76717, - [SMALL_STATE(2450)] = 76740, - [SMALL_STATE(2451)] = 76769, - [SMALL_STATE(2452)] = 76792, - [SMALL_STATE(2453)] = 76821, - [SMALL_STATE(2454)] = 76844, - [SMALL_STATE(2455)] = 76873, - [SMALL_STATE(2456)] = 76898, - [SMALL_STATE(2457)] = 76924, - [SMALL_STATE(2458)] = 76942, - [SMALL_STATE(2459)] = 76968, - [SMALL_STATE(2460)] = 76994, - [SMALL_STATE(2461)] = 77020, - [SMALL_STATE(2462)] = 77046, - [SMALL_STATE(2463)] = 77064, - [SMALL_STATE(2464)] = 77082, - [SMALL_STATE(2465)] = 77100, - [SMALL_STATE(2466)] = 77126, - [SMALL_STATE(2467)] = 77148, - [SMALL_STATE(2468)] = 77174, - [SMALL_STATE(2469)] = 77196, - [SMALL_STATE(2470)] = 77222, - [SMALL_STATE(2471)] = 77246, - [SMALL_STATE(2472)] = 77272, - [SMALL_STATE(2473)] = 77298, - [SMALL_STATE(2474)] = 77322, - [SMALL_STATE(2475)] = 77346, - [SMALL_STATE(2476)] = 77372, - [SMALL_STATE(2477)] = 77398, - [SMALL_STATE(2478)] = 77424, - [SMALL_STATE(2479)] = 77450, - [SMALL_STATE(2480)] = 77476, - [SMALL_STATE(2481)] = 77502, - [SMALL_STATE(2482)] = 77528, - [SMALL_STATE(2483)] = 77554, - [SMALL_STATE(2484)] = 77578, - [SMALL_STATE(2485)] = 77602, - [SMALL_STATE(2486)] = 77620, - [SMALL_STATE(2487)] = 77646, - [SMALL_STATE(2488)] = 77664, - [SMALL_STATE(2489)] = 77690, - [SMALL_STATE(2490)] = 77716, - [SMALL_STATE(2491)] = 77742, - [SMALL_STATE(2492)] = 77768, - [SMALL_STATE(2493)] = 77792, - [SMALL_STATE(2494)] = 77818, - [SMALL_STATE(2495)] = 77844, - [SMALL_STATE(2496)] = 77870, - [SMALL_STATE(2497)] = 77894, - [SMALL_STATE(2498)] = 77920, - [SMALL_STATE(2499)] = 77938, - [SMALL_STATE(2500)] = 77964, - [SMALL_STATE(2501)] = 77990, - [SMALL_STATE(2502)] = 78010, - [SMALL_STATE(2503)] = 78032, - [SMALL_STATE(2504)] = 78050, - [SMALL_STATE(2505)] = 78076, - [SMALL_STATE(2506)] = 78094, - [SMALL_STATE(2507)] = 78112, - [SMALL_STATE(2508)] = 78130, - [SMALL_STATE(2509)] = 78150, - [SMALL_STATE(2510)] = 78168, - [SMALL_STATE(2511)] = 78186, - [SMALL_STATE(2512)] = 78204, - [SMALL_STATE(2513)] = 78230, - [SMALL_STATE(2514)] = 78256, - [SMALL_STATE(2515)] = 78280, - [SMALL_STATE(2516)] = 78304, - [SMALL_STATE(2517)] = 78326, - [SMALL_STATE(2518)] = 78348, - [SMALL_STATE(2519)] = 78372, - [SMALL_STATE(2520)] = 78398, - [SMALL_STATE(2521)] = 78416, - [SMALL_STATE(2522)] = 78436, - [SMALL_STATE(2523)] = 78454, - [SMALL_STATE(2524)] = 78480, - [SMALL_STATE(2525)] = 78498, - [SMALL_STATE(2526)] = 78524, - [SMALL_STATE(2527)] = 78542, - [SMALL_STATE(2528)] = 78568, - [SMALL_STATE(2529)] = 78592, - [SMALL_STATE(2530)] = 78616, - [SMALL_STATE(2531)] = 78640, - [SMALL_STATE(2532)] = 78666, - [SMALL_STATE(2533)] = 78692, - [SMALL_STATE(2534)] = 78718, - [SMALL_STATE(2535)] = 78744, - [SMALL_STATE(2536)] = 78770, - [SMALL_STATE(2537)] = 78796, - [SMALL_STATE(2538)] = 78820, - [SMALL_STATE(2539)] = 78838, - [SMALL_STATE(2540)] = 78856, - [SMALL_STATE(2541)] = 78882, - [SMALL_STATE(2542)] = 78904, - [SMALL_STATE(2543)] = 78922, - [SMALL_STATE(2544)] = 78940, - [SMALL_STATE(2545)] = 78962, - [SMALL_STATE(2546)] = 78988, - [SMALL_STATE(2547)] = 79014, - [SMALL_STATE(2548)] = 79038, - [SMALL_STATE(2549)] = 79064, - [SMALL_STATE(2550)] = 79082, - [SMALL_STATE(2551)] = 79102, - [SMALL_STATE(2552)] = 79128, - [SMALL_STATE(2553)] = 79150, - [SMALL_STATE(2554)] = 79174, - [SMALL_STATE(2555)] = 79200, - [SMALL_STATE(2556)] = 79224, - [SMALL_STATE(2557)] = 79250, - [SMALL_STATE(2558)] = 79276, - [SMALL_STATE(2559)] = 79294, - [SMALL_STATE(2560)] = 79312, - [SMALL_STATE(2561)] = 79338, - [SMALL_STATE(2562)] = 79364, - [SMALL_STATE(2563)] = 79390, - [SMALL_STATE(2564)] = 79408, - [SMALL_STATE(2565)] = 79434, - [SMALL_STATE(2566)] = 79457, - [SMALL_STATE(2567)] = 79480, - [SMALL_STATE(2568)] = 79503, - [SMALL_STATE(2569)] = 79526, - [SMALL_STATE(2570)] = 79549, - [SMALL_STATE(2571)] = 79572, - [SMALL_STATE(2572)] = 79595, - [SMALL_STATE(2573)] = 79616, - [SMALL_STATE(2574)] = 79637, - [SMALL_STATE(2575)] = 79660, - [SMALL_STATE(2576)] = 79681, - [SMALL_STATE(2577)] = 79700, - [SMALL_STATE(2578)] = 79723, - [SMALL_STATE(2579)] = 79746, - [SMALL_STATE(2580)] = 79765, - [SMALL_STATE(2581)] = 79788, - [SMALL_STATE(2582)] = 79811, - [SMALL_STATE(2583)] = 79834, - [SMALL_STATE(2584)] = 79857, - [SMALL_STATE(2585)] = 79880, - [SMALL_STATE(2586)] = 79903, - [SMALL_STATE(2587)] = 79922, - [SMALL_STATE(2588)] = 79943, - [SMALL_STATE(2589)] = 79962, - [SMALL_STATE(2590)] = 79985, - [SMALL_STATE(2591)] = 80008, - [SMALL_STATE(2592)] = 80031, - [SMALL_STATE(2593)] = 80048, - [SMALL_STATE(2594)] = 80071, - [SMALL_STATE(2595)] = 80094, - [SMALL_STATE(2596)] = 80117, - [SMALL_STATE(2597)] = 80140, - [SMALL_STATE(2598)] = 80163, - [SMALL_STATE(2599)] = 80186, - [SMALL_STATE(2600)] = 80209, - [SMALL_STATE(2601)] = 80232, - [SMALL_STATE(2602)] = 80255, - [SMALL_STATE(2603)] = 80276, - [SMALL_STATE(2604)] = 80299, - [SMALL_STATE(2605)] = 80318, - [SMALL_STATE(2606)] = 80341, - [SMALL_STATE(2607)] = 80364, - [SMALL_STATE(2608)] = 80387, - [SMALL_STATE(2609)] = 80410, - [SMALL_STATE(2610)] = 80429, - [SMALL_STATE(2611)] = 80452, - [SMALL_STATE(2612)] = 80473, - [SMALL_STATE(2613)] = 80496, - [SMALL_STATE(2614)] = 80515, - [SMALL_STATE(2615)] = 80538, - [SMALL_STATE(2616)] = 80561, - [SMALL_STATE(2617)] = 80584, - [SMALL_STATE(2618)] = 80607, - [SMALL_STATE(2619)] = 80626, - [SMALL_STATE(2620)] = 80649, - [SMALL_STATE(2621)] = 80672, - [SMALL_STATE(2622)] = 80695, - [SMALL_STATE(2623)] = 80718, - [SMALL_STATE(2624)] = 80741, - [SMALL_STATE(2625)] = 80764, - [SMALL_STATE(2626)] = 80787, - [SMALL_STATE(2627)] = 80810, - [SMALL_STATE(2628)] = 80833, - [SMALL_STATE(2629)] = 80850, - [SMALL_STATE(2630)] = 80867, - [SMALL_STATE(2631)] = 80890, - [SMALL_STATE(2632)] = 80909, - [SMALL_STATE(2633)] = 80932, - [SMALL_STATE(2634)] = 80953, - [SMALL_STATE(2635)] = 80976, - [SMALL_STATE(2636)] = 80997, - [SMALL_STATE(2637)] = 81020, - [SMALL_STATE(2638)] = 81043, - [SMALL_STATE(2639)] = 81064, - [SMALL_STATE(2640)] = 81087, - [SMALL_STATE(2641)] = 81110, - [SMALL_STATE(2642)] = 81133, - [SMALL_STATE(2643)] = 81156, - [SMALL_STATE(2644)] = 81179, - [SMALL_STATE(2645)] = 81202, - [SMALL_STATE(2646)] = 81225, - [SMALL_STATE(2647)] = 81244, - [SMALL_STATE(2648)] = 81267, - [SMALL_STATE(2649)] = 81290, - [SMALL_STATE(2650)] = 81309, - [SMALL_STATE(2651)] = 81330, - [SMALL_STATE(2652)] = 81353, - [SMALL_STATE(2653)] = 81374, - [SMALL_STATE(2654)] = 81397, - [SMALL_STATE(2655)] = 81420, - [SMALL_STATE(2656)] = 81443, - [SMALL_STATE(2657)] = 81462, - [SMALL_STATE(2658)] = 81479, - [SMALL_STATE(2659)] = 81502, - [SMALL_STATE(2660)] = 81525, - [SMALL_STATE(2661)] = 81548, - [SMALL_STATE(2662)] = 81571, - [SMALL_STATE(2663)] = 81590, - [SMALL_STATE(2664)] = 81613, - [SMALL_STATE(2665)] = 81632, - [SMALL_STATE(2666)] = 81653, - [SMALL_STATE(2667)] = 81676, - [SMALL_STATE(2668)] = 81699, - [SMALL_STATE(2669)] = 81722, - [SMALL_STATE(2670)] = 81745, - [SMALL_STATE(2671)] = 81768, - [SMALL_STATE(2672)] = 81787, - [SMALL_STATE(2673)] = 81810, - [SMALL_STATE(2674)] = 81833, - [SMALL_STATE(2675)] = 81856, - [SMALL_STATE(2676)] = 81879, - [SMALL_STATE(2677)] = 81902, - [SMALL_STATE(2678)] = 81925, - [SMALL_STATE(2679)] = 81948, - [SMALL_STATE(2680)] = 81971, - [SMALL_STATE(2681)] = 81994, - [SMALL_STATE(2682)] = 82017, - [SMALL_STATE(2683)] = 82040, - [SMALL_STATE(2684)] = 82061, - [SMALL_STATE(2685)] = 82084, - [SMALL_STATE(2686)] = 82107, - [SMALL_STATE(2687)] = 82128, - [SMALL_STATE(2688)] = 82151, - [SMALL_STATE(2689)] = 82174, - [SMALL_STATE(2690)] = 82197, - [SMALL_STATE(2691)] = 82220, - [SMALL_STATE(2692)] = 82239, - [SMALL_STATE(2693)] = 82262, - [SMALL_STATE(2694)] = 82285, - [SMALL_STATE(2695)] = 82308, - [SMALL_STATE(2696)] = 82331, - [SMALL_STATE(2697)] = 82354, - [SMALL_STATE(2698)] = 82377, - [SMALL_STATE(2699)] = 82400, - [SMALL_STATE(2700)] = 82423, - [SMALL_STATE(2701)] = 82446, - [SMALL_STATE(2702)] = 82469, - [SMALL_STATE(2703)] = 82492, - [SMALL_STATE(2704)] = 82515, - [SMALL_STATE(2705)] = 82538, - [SMALL_STATE(2706)] = 82561, - [SMALL_STATE(2707)] = 82580, - [SMALL_STATE(2708)] = 82603, - [SMALL_STATE(2709)] = 82626, - [SMALL_STATE(2710)] = 82649, - [SMALL_STATE(2711)] = 82672, - [SMALL_STATE(2712)] = 82695, - [SMALL_STATE(2713)] = 82714, - [SMALL_STATE(2714)] = 82737, - [SMALL_STATE(2715)] = 82754, - [SMALL_STATE(2716)] = 82775, - [SMALL_STATE(2717)] = 82794, - [SMALL_STATE(2718)] = 82815, - [SMALL_STATE(2719)] = 82836, - [SMALL_STATE(2720)] = 82855, - [SMALL_STATE(2721)] = 82878, - [SMALL_STATE(2722)] = 82901, - [SMALL_STATE(2723)] = 82922, - [SMALL_STATE(2724)] = 82945, - [SMALL_STATE(2725)] = 82968, - [SMALL_STATE(2726)] = 82991, - [SMALL_STATE(2727)] = 83010, - [SMALL_STATE(2728)] = 83029, - [SMALL_STATE(2729)] = 83052, - [SMALL_STATE(2730)] = 83075, - [SMALL_STATE(2731)] = 83098, - [SMALL_STATE(2732)] = 83121, - [SMALL_STATE(2733)] = 83140, - [SMALL_STATE(2734)] = 83159, - [SMALL_STATE(2735)] = 83182, - [SMALL_STATE(2736)] = 83205, - [SMALL_STATE(2737)] = 83228, - [SMALL_STATE(2738)] = 83251, - [SMALL_STATE(2739)] = 83272, - [SMALL_STATE(2740)] = 83295, - [SMALL_STATE(2741)] = 83318, - [SMALL_STATE(2742)] = 83341, - [SMALL_STATE(2743)] = 83364, - [SMALL_STATE(2744)] = 83387, - [SMALL_STATE(2745)] = 83410, - [SMALL_STATE(2746)] = 83433, - [SMALL_STATE(2747)] = 83456, - [SMALL_STATE(2748)] = 83479, - [SMALL_STATE(2749)] = 83502, - [SMALL_STATE(2750)] = 83525, - [SMALL_STATE(2751)] = 83548, - [SMALL_STATE(2752)] = 83571, - [SMALL_STATE(2753)] = 83594, - [SMALL_STATE(2754)] = 83617, - [SMALL_STATE(2755)] = 83640, - [SMALL_STATE(2756)] = 83663, - [SMALL_STATE(2757)] = 83686, - [SMALL_STATE(2758)] = 83709, - [SMALL_STATE(2759)] = 83732, - [SMALL_STATE(2760)] = 83755, - [SMALL_STATE(2761)] = 83778, - [SMALL_STATE(2762)] = 83801, - [SMALL_STATE(2763)] = 83822, - [SMALL_STATE(2764)] = 83845, - [SMALL_STATE(2765)] = 83868, - [SMALL_STATE(2766)] = 83891, - [SMALL_STATE(2767)] = 83910, - [SMALL_STATE(2768)] = 83933, - [SMALL_STATE(2769)] = 83956, - [SMALL_STATE(2770)] = 83977, - [SMALL_STATE(2771)] = 84000, - [SMALL_STATE(2772)] = 84023, - [SMALL_STATE(2773)] = 84046, - [SMALL_STATE(2774)] = 84069, - [SMALL_STATE(2775)] = 84092, - [SMALL_STATE(2776)] = 84115, - [SMALL_STATE(2777)] = 84138, - [SMALL_STATE(2778)] = 84157, - [SMALL_STATE(2779)] = 84180, - [SMALL_STATE(2780)] = 84203, - [SMALL_STATE(2781)] = 84226, - [SMALL_STATE(2782)] = 84249, - [SMALL_STATE(2783)] = 84272, - [SMALL_STATE(2784)] = 84293, - [SMALL_STATE(2785)] = 84314, - [SMALL_STATE(2786)] = 84337, - [SMALL_STATE(2787)] = 84360, - [SMALL_STATE(2788)] = 84383, - [SMALL_STATE(2789)] = 84406, - [SMALL_STATE(2790)] = 84425, - [SMALL_STATE(2791)] = 84448, - [SMALL_STATE(2792)] = 84467, - [SMALL_STATE(2793)] = 84490, - [SMALL_STATE(2794)] = 84509, - [SMALL_STATE(2795)] = 84528, - [SMALL_STATE(2796)] = 84551, - [SMALL_STATE(2797)] = 84570, - [SMALL_STATE(2798)] = 84593, - [SMALL_STATE(2799)] = 84614, - [SMALL_STATE(2800)] = 84637, - [SMALL_STATE(2801)] = 84660, - [SMALL_STATE(2802)] = 84683, - [SMALL_STATE(2803)] = 84702, - [SMALL_STATE(2804)] = 84725, - [SMALL_STATE(2805)] = 84746, - [SMALL_STATE(2806)] = 84769, - [SMALL_STATE(2807)] = 84792, - [SMALL_STATE(2808)] = 84815, - [SMALL_STATE(2809)] = 84838, - [SMALL_STATE(2810)] = 84861, - [SMALL_STATE(2811)] = 84884, - [SMALL_STATE(2812)] = 84907, - [SMALL_STATE(2813)] = 84930, - [SMALL_STATE(2814)] = 84953, - [SMALL_STATE(2815)] = 84976, - [SMALL_STATE(2816)] = 84999, - [SMALL_STATE(2817)] = 85022, - [SMALL_STATE(2818)] = 85045, - [SMALL_STATE(2819)] = 85066, - [SMALL_STATE(2820)] = 85089, - [SMALL_STATE(2821)] = 85112, - [SMALL_STATE(2822)] = 85135, - [SMALL_STATE(2823)] = 85158, - [SMALL_STATE(2824)] = 85178, - [SMALL_STATE(2825)] = 85198, - [SMALL_STATE(2826)] = 85218, - [SMALL_STATE(2827)] = 85238, - [SMALL_STATE(2828)] = 85258, - [SMALL_STATE(2829)] = 85278, - [SMALL_STATE(2830)] = 85298, - [SMALL_STATE(2831)] = 85314, - [SMALL_STATE(2832)] = 85334, - [SMALL_STATE(2833)] = 85354, - [SMALL_STATE(2834)] = 85374, - [SMALL_STATE(2835)] = 85394, - [SMALL_STATE(2836)] = 85414, - [SMALL_STATE(2837)] = 85434, - [SMALL_STATE(2838)] = 85454, - [SMALL_STATE(2839)] = 85474, - [SMALL_STATE(2840)] = 85490, - [SMALL_STATE(2841)] = 85510, - [SMALL_STATE(2842)] = 85526, - [SMALL_STATE(2843)] = 85542, - [SMALL_STATE(2844)] = 85562, - [SMALL_STATE(2845)] = 85578, - [SMALL_STATE(2846)] = 85594, - [SMALL_STATE(2847)] = 85614, - [SMALL_STATE(2848)] = 85630, - [SMALL_STATE(2849)] = 85650, - [SMALL_STATE(2850)] = 85670, - [SMALL_STATE(2851)] = 85690, - [SMALL_STATE(2852)] = 85708, - [SMALL_STATE(2853)] = 85728, - [SMALL_STATE(2854)] = 85748, - [SMALL_STATE(2855)] = 85768, - [SMALL_STATE(2856)] = 85788, - [SMALL_STATE(2857)] = 85808, - [SMALL_STATE(2858)] = 85828, - [SMALL_STATE(2859)] = 85848, - [SMALL_STATE(2860)] = 85868, - [SMALL_STATE(2861)] = 85886, - [SMALL_STATE(2862)] = 85906, - [SMALL_STATE(2863)] = 85926, - [SMALL_STATE(2864)] = 85944, - [SMALL_STATE(2865)] = 85964, - [SMALL_STATE(2866)] = 85984, - [SMALL_STATE(2867)] = 86004, - [SMALL_STATE(2868)] = 86024, - [SMALL_STATE(2869)] = 86044, - [SMALL_STATE(2870)] = 86062, - [SMALL_STATE(2871)] = 86080, - [SMALL_STATE(2872)] = 86098, - [SMALL_STATE(2873)] = 86118, - [SMALL_STATE(2874)] = 86138, - [SMALL_STATE(2875)] = 86158, - [SMALL_STATE(2876)] = 86178, - [SMALL_STATE(2877)] = 86198, - [SMALL_STATE(2878)] = 86218, - [SMALL_STATE(2879)] = 86238, - [SMALL_STATE(2880)] = 86256, - [SMALL_STATE(2881)] = 86276, - [SMALL_STATE(2882)] = 86294, - [SMALL_STATE(2883)] = 86312, - [SMALL_STATE(2884)] = 86332, - [SMALL_STATE(2885)] = 86352, - [SMALL_STATE(2886)] = 86372, - [SMALL_STATE(2887)] = 86390, - [SMALL_STATE(2888)] = 86410, - [SMALL_STATE(2889)] = 86430, - [SMALL_STATE(2890)] = 86448, - [SMALL_STATE(2891)] = 86468, - [SMALL_STATE(2892)] = 86488, - [SMALL_STATE(2893)] = 86508, - [SMALL_STATE(2894)] = 86528, - [SMALL_STATE(2895)] = 86548, - [SMALL_STATE(2896)] = 86568, - [SMALL_STATE(2897)] = 86588, - [SMALL_STATE(2898)] = 86604, - [SMALL_STATE(2899)] = 86620, - [SMALL_STATE(2900)] = 86640, - [SMALL_STATE(2901)] = 86660, - [SMALL_STATE(2902)] = 86680, - [SMALL_STATE(2903)] = 86700, - [SMALL_STATE(2904)] = 86720, - [SMALL_STATE(2905)] = 86740, - [SMALL_STATE(2906)] = 86756, - [SMALL_STATE(2907)] = 86776, - [SMALL_STATE(2908)] = 86792, - [SMALL_STATE(2909)] = 86810, - [SMALL_STATE(2910)] = 86830, - [SMALL_STATE(2911)] = 86850, - [SMALL_STATE(2912)] = 86870, - [SMALL_STATE(2913)] = 86886, - [SMALL_STATE(2914)] = 86902, - [SMALL_STATE(2915)] = 86922, - [SMALL_STATE(2916)] = 86938, - [SMALL_STATE(2917)] = 86958, - [SMALL_STATE(2918)] = 86978, - [SMALL_STATE(2919)] = 86994, - [SMALL_STATE(2920)] = 87010, - [SMALL_STATE(2921)] = 87026, - [SMALL_STATE(2922)] = 87046, - [SMALL_STATE(2923)] = 87064, - [SMALL_STATE(2924)] = 87080, - [SMALL_STATE(2925)] = 87100, - [SMALL_STATE(2926)] = 87120, - [SMALL_STATE(2927)] = 87136, - [SMALL_STATE(2928)] = 87156, - [SMALL_STATE(2929)] = 87176, - [SMALL_STATE(2930)] = 87196, - [SMALL_STATE(2931)] = 87214, - [SMALL_STATE(2932)] = 87234, - [SMALL_STATE(2933)] = 87254, - [SMALL_STATE(2934)] = 87274, - [SMALL_STATE(2935)] = 87294, - [SMALL_STATE(2936)] = 87314, - [SMALL_STATE(2937)] = 87334, - [SMALL_STATE(2938)] = 87354, - [SMALL_STATE(2939)] = 87374, - [SMALL_STATE(2940)] = 87394, - [SMALL_STATE(2941)] = 87414, - [SMALL_STATE(2942)] = 87432, - [SMALL_STATE(2943)] = 87450, - [SMALL_STATE(2944)] = 87470, - [SMALL_STATE(2945)] = 87490, - [SMALL_STATE(2946)] = 87510, - [SMALL_STATE(2947)] = 87530, - [SMALL_STATE(2948)] = 87550, - [SMALL_STATE(2949)] = 87570, - [SMALL_STATE(2950)] = 87590, - [SMALL_STATE(2951)] = 87610, - [SMALL_STATE(2952)] = 87630, - [SMALL_STATE(2953)] = 87650, - [SMALL_STATE(2954)] = 87666, - [SMALL_STATE(2955)] = 87686, - [SMALL_STATE(2956)] = 87706, - [SMALL_STATE(2957)] = 87726, - [SMALL_STATE(2958)] = 87746, - [SMALL_STATE(2959)] = 87766, - [SMALL_STATE(2960)] = 87786, - [SMALL_STATE(2961)] = 87804, - [SMALL_STATE(2962)] = 87824, - [SMALL_STATE(2963)] = 87844, - [SMALL_STATE(2964)] = 87864, - [SMALL_STATE(2965)] = 87884, - [SMALL_STATE(2966)] = 87902, - [SMALL_STATE(2967)] = 87922, - [SMALL_STATE(2968)] = 87938, - [SMALL_STATE(2969)] = 87958, - [SMALL_STATE(2970)] = 87978, - [SMALL_STATE(2971)] = 87998, - [SMALL_STATE(2972)] = 88016, - [SMALL_STATE(2973)] = 88036, - [SMALL_STATE(2974)] = 88056, - [SMALL_STATE(2975)] = 88076, - [SMALL_STATE(2976)] = 88094, - [SMALL_STATE(2977)] = 88110, - [SMALL_STATE(2978)] = 88128, - [SMALL_STATE(2979)] = 88144, - [SMALL_STATE(2980)] = 88162, - [SMALL_STATE(2981)] = 88182, - [SMALL_STATE(2982)] = 88198, - [SMALL_STATE(2983)] = 88214, - [SMALL_STATE(2984)] = 88234, - [SMALL_STATE(2985)] = 88250, - [SMALL_STATE(2986)] = 88266, - [SMALL_STATE(2987)] = 88286, - [SMALL_STATE(2988)] = 88306, - [SMALL_STATE(2989)] = 88326, - [SMALL_STATE(2990)] = 88346, - [SMALL_STATE(2991)] = 88364, - [SMALL_STATE(2992)] = 88384, - [SMALL_STATE(2993)] = 88402, - [SMALL_STATE(2994)] = 88422, - [SMALL_STATE(2995)] = 88442, - [SMALL_STATE(2996)] = 88462, - [SMALL_STATE(2997)] = 88482, - [SMALL_STATE(2998)] = 88502, - [SMALL_STATE(2999)] = 88522, - [SMALL_STATE(3000)] = 88542, - [SMALL_STATE(3001)] = 88558, - [SMALL_STATE(3002)] = 88578, - [SMALL_STATE(3003)] = 88594, - [SMALL_STATE(3004)] = 88614, - [SMALL_STATE(3005)] = 88634, - [SMALL_STATE(3006)] = 88654, - [SMALL_STATE(3007)] = 88674, - [SMALL_STATE(3008)] = 88694, - [SMALL_STATE(3009)] = 88714, - [SMALL_STATE(3010)] = 88730, - [SMALL_STATE(3011)] = 88750, - [SMALL_STATE(3012)] = 88770, - [SMALL_STATE(3013)] = 88790, - [SMALL_STATE(3014)] = 88810, - [SMALL_STATE(3015)] = 88826, - [SMALL_STATE(3016)] = 88842, - [SMALL_STATE(3017)] = 88862, - [SMALL_STATE(3018)] = 88878, - [SMALL_STATE(3019)] = 88894, - [SMALL_STATE(3020)] = 88910, - [SMALL_STATE(3021)] = 88930, - [SMALL_STATE(3022)] = 88946, - [SMALL_STATE(3023)] = 88966, - [SMALL_STATE(3024)] = 88982, - [SMALL_STATE(3025)] = 88998, - [SMALL_STATE(3026)] = 89014, - [SMALL_STATE(3027)] = 89034, - [SMALL_STATE(3028)] = 89054, - [SMALL_STATE(3029)] = 89074, - [SMALL_STATE(3030)] = 89094, - [SMALL_STATE(3031)] = 89114, - [SMALL_STATE(3032)] = 89134, - [SMALL_STATE(3033)] = 89154, - [SMALL_STATE(3034)] = 89174, - [SMALL_STATE(3035)] = 89194, - [SMALL_STATE(3036)] = 89210, - [SMALL_STATE(3037)] = 89226, - [SMALL_STATE(3038)] = 89246, - [SMALL_STATE(3039)] = 89266, - [SMALL_STATE(3040)] = 89284, - [SMALL_STATE(3041)] = 89302, - [SMALL_STATE(3042)] = 89320, - [SMALL_STATE(3043)] = 89340, - [SMALL_STATE(3044)] = 89358, - [SMALL_STATE(3045)] = 89378, - [SMALL_STATE(3046)] = 89398, - [SMALL_STATE(3047)] = 89418, - [SMALL_STATE(3048)] = 89438, - [SMALL_STATE(3049)] = 89458, - [SMALL_STATE(3050)] = 89478, - [SMALL_STATE(3051)] = 89498, - [SMALL_STATE(3052)] = 89518, - [SMALL_STATE(3053)] = 89534, - [SMALL_STATE(3054)] = 89552, - [SMALL_STATE(3055)] = 89572, - [SMALL_STATE(3056)] = 89592, - [SMALL_STATE(3057)] = 89612, - [SMALL_STATE(3058)] = 89628, - [SMALL_STATE(3059)] = 89648, - [SMALL_STATE(3060)] = 89668, - [SMALL_STATE(3061)] = 89688, - [SMALL_STATE(3062)] = 89708, - [SMALL_STATE(3063)] = 89728, - [SMALL_STATE(3064)] = 89748, - [SMALL_STATE(3065)] = 89768, - [SMALL_STATE(3066)] = 89788, - [SMALL_STATE(3067)] = 89808, - [SMALL_STATE(3068)] = 89828, - [SMALL_STATE(3069)] = 89844, - [SMALL_STATE(3070)] = 89864, - [SMALL_STATE(3071)] = 89880, - [SMALL_STATE(3072)] = 89898, - [SMALL_STATE(3073)] = 89918, - [SMALL_STATE(3074)] = 89936, - [SMALL_STATE(3075)] = 89952, - [SMALL_STATE(3076)] = 89970, - [SMALL_STATE(3077)] = 89988, - [SMALL_STATE(3078)] = 90006, - [SMALL_STATE(3079)] = 90026, - [SMALL_STATE(3080)] = 90044, - [SMALL_STATE(3081)] = 90064, - [SMALL_STATE(3082)] = 90084, - [SMALL_STATE(3083)] = 90104, - [SMALL_STATE(3084)] = 90124, - [SMALL_STATE(3085)] = 90142, - [SMALL_STATE(3086)] = 90162, - [SMALL_STATE(3087)] = 90182, - [SMALL_STATE(3088)] = 90202, - [SMALL_STATE(3089)] = 90222, - [SMALL_STATE(3090)] = 90242, - [SMALL_STATE(3091)] = 90260, - [SMALL_STATE(3092)] = 90276, - [SMALL_STATE(3093)] = 90292, - [SMALL_STATE(3094)] = 90312, - [SMALL_STATE(3095)] = 90332, - [SMALL_STATE(3096)] = 90348, - [SMALL_STATE(3097)] = 90366, - [SMALL_STATE(3098)] = 90382, - [SMALL_STATE(3099)] = 90402, - [SMALL_STATE(3100)] = 90418, - [SMALL_STATE(3101)] = 90438, - [SMALL_STATE(3102)] = 90458, - [SMALL_STATE(3103)] = 90474, - [SMALL_STATE(3104)] = 90494, - [SMALL_STATE(3105)] = 90514, - [SMALL_STATE(3106)] = 90534, - [SMALL_STATE(3107)] = 90554, - [SMALL_STATE(3108)] = 90574, - [SMALL_STATE(3109)] = 90590, - [SMALL_STATE(3110)] = 90610, - [SMALL_STATE(3111)] = 90628, - [SMALL_STATE(3112)] = 90648, - [SMALL_STATE(3113)] = 90664, - [SMALL_STATE(3114)] = 90684, - [SMALL_STATE(3115)] = 90704, - [SMALL_STATE(3116)] = 90722, - [SMALL_STATE(3117)] = 90740, - [SMALL_STATE(3118)] = 90760, - [SMALL_STATE(3119)] = 90780, - [SMALL_STATE(3120)] = 90800, - [SMALL_STATE(3121)] = 90820, - [SMALL_STATE(3122)] = 90840, - [SMALL_STATE(3123)] = 90860, - [SMALL_STATE(3124)] = 90880, - [SMALL_STATE(3125)] = 90900, - [SMALL_STATE(3126)] = 90920, - [SMALL_STATE(3127)] = 90940, - [SMALL_STATE(3128)] = 90960, - [SMALL_STATE(3129)] = 90980, - [SMALL_STATE(3130)] = 90996, - [SMALL_STATE(3131)] = 91012, - [SMALL_STATE(3132)] = 91032, - [SMALL_STATE(3133)] = 91052, - [SMALL_STATE(3134)] = 91067, - [SMALL_STATE(3135)] = 91084, - [SMALL_STATE(3136)] = 91101, - [SMALL_STATE(3137)] = 91116, - [SMALL_STATE(3138)] = 91133, - [SMALL_STATE(3139)] = 91150, - [SMALL_STATE(3140)] = 91167, - [SMALL_STATE(3141)] = 91184, - [SMALL_STATE(3142)] = 91201, - [SMALL_STATE(3143)] = 91218, - [SMALL_STATE(3144)] = 91235, - [SMALL_STATE(3145)] = 91252, - [SMALL_STATE(3146)] = 91269, - [SMALL_STATE(3147)] = 91286, - [SMALL_STATE(3148)] = 91301, - [SMALL_STATE(3149)] = 91318, - [SMALL_STATE(3150)] = 91333, - [SMALL_STATE(3151)] = 91350, - [SMALL_STATE(3152)] = 91367, - [SMALL_STATE(3153)] = 91382, - [SMALL_STATE(3154)] = 91399, - [SMALL_STATE(3155)] = 91416, - [SMALL_STATE(3156)] = 91433, - [SMALL_STATE(3157)] = 91448, - [SMALL_STATE(3158)] = 91463, - [SMALL_STATE(3159)] = 91480, - [SMALL_STATE(3160)] = 91497, - [SMALL_STATE(3161)] = 91514, - [SMALL_STATE(3162)] = 91531, - [SMALL_STATE(3163)] = 91548, - [SMALL_STATE(3164)] = 91563, - [SMALL_STATE(3165)] = 91580, - [SMALL_STATE(3166)] = 91595, - [SMALL_STATE(3167)] = 91612, - [SMALL_STATE(3168)] = 91629, - [SMALL_STATE(3169)] = 91646, - [SMALL_STATE(3170)] = 91663, - [SMALL_STATE(3171)] = 91680, - [SMALL_STATE(3172)] = 91697, - [SMALL_STATE(3173)] = 91712, - [SMALL_STATE(3174)] = 91729, - [SMALL_STATE(3175)] = 91746, - [SMALL_STATE(3176)] = 91763, - [SMALL_STATE(3177)] = 91778, - [SMALL_STATE(3178)] = 91795, - [SMALL_STATE(3179)] = 91810, - [SMALL_STATE(3180)] = 91827, - [SMALL_STATE(3181)] = 91844, - [SMALL_STATE(3182)] = 91861, - [SMALL_STATE(3183)] = 91876, - [SMALL_STATE(3184)] = 91891, - [SMALL_STATE(3185)] = 91908, - [SMALL_STATE(3186)] = 91925, - [SMALL_STATE(3187)] = 91940, - [SMALL_STATE(3188)] = 91957, - [SMALL_STATE(3189)] = 91974, - [SMALL_STATE(3190)] = 91989, - [SMALL_STATE(3191)] = 92006, - [SMALL_STATE(3192)] = 92023, - [SMALL_STATE(3193)] = 92038, - [SMALL_STATE(3194)] = 92055, - [SMALL_STATE(3195)] = 92072, - [SMALL_STATE(3196)] = 92089, - [SMALL_STATE(3197)] = 92106, - [SMALL_STATE(3198)] = 92123, - [SMALL_STATE(3199)] = 92140, - [SMALL_STATE(3200)] = 92157, - [SMALL_STATE(3201)] = 92172, - [SMALL_STATE(3202)] = 92189, - [SMALL_STATE(3203)] = 92206, - [SMALL_STATE(3204)] = 92223, - [SMALL_STATE(3205)] = 92240, - [SMALL_STATE(3206)] = 92257, - [SMALL_STATE(3207)] = 92272, - [SMALL_STATE(3208)] = 92289, - [SMALL_STATE(3209)] = 92306, - [SMALL_STATE(3210)] = 92321, - [SMALL_STATE(3211)] = 92338, - [SMALL_STATE(3212)] = 92355, - [SMALL_STATE(3213)] = 92372, - [SMALL_STATE(3214)] = 92389, - [SMALL_STATE(3215)] = 92406, - [SMALL_STATE(3216)] = 92423, - [SMALL_STATE(3217)] = 92440, - [SMALL_STATE(3218)] = 92457, - [SMALL_STATE(3219)] = 92474, - [SMALL_STATE(3220)] = 92489, - [SMALL_STATE(3221)] = 92506, - [SMALL_STATE(3222)] = 92523, - [SMALL_STATE(3223)] = 92540, - [SMALL_STATE(3224)] = 92555, - [SMALL_STATE(3225)] = 92572, - [SMALL_STATE(3226)] = 92589, - [SMALL_STATE(3227)] = 92606, - [SMALL_STATE(3228)] = 92623, - [SMALL_STATE(3229)] = 92640, - [SMALL_STATE(3230)] = 92657, - [SMALL_STATE(3231)] = 92674, - [SMALL_STATE(3232)] = 92691, - [SMALL_STATE(3233)] = 92708, - [SMALL_STATE(3234)] = 92725, - [SMALL_STATE(3235)] = 92742, - [SMALL_STATE(3236)] = 92759, - [SMALL_STATE(3237)] = 92776, - [SMALL_STATE(3238)] = 92793, - [SMALL_STATE(3239)] = 92810, - [SMALL_STATE(3240)] = 92827, - [SMALL_STATE(3241)] = 92842, - [SMALL_STATE(3242)] = 92859, - [SMALL_STATE(3243)] = 92876, - [SMALL_STATE(3244)] = 92893, - [SMALL_STATE(3245)] = 92910, - [SMALL_STATE(3246)] = 92927, - [SMALL_STATE(3247)] = 92944, - [SMALL_STATE(3248)] = 92961, - [SMALL_STATE(3249)] = 92978, - [SMALL_STATE(3250)] = 92995, - [SMALL_STATE(3251)] = 93012, - [SMALL_STATE(3252)] = 93029, - [SMALL_STATE(3253)] = 93044, - [SMALL_STATE(3254)] = 93061, - [SMALL_STATE(3255)] = 93078, - [SMALL_STATE(3256)] = 93093, - [SMALL_STATE(3257)] = 93110, - [SMALL_STATE(3258)] = 93127, - [SMALL_STATE(3259)] = 93144, - [SMALL_STATE(3260)] = 93161, - [SMALL_STATE(3261)] = 93178, - [SMALL_STATE(3262)] = 93195, - [SMALL_STATE(3263)] = 93210, - [SMALL_STATE(3264)] = 93227, - [SMALL_STATE(3265)] = 93242, - [SMALL_STATE(3266)] = 93259, - [SMALL_STATE(3267)] = 93276, - [SMALL_STATE(3268)] = 93293, - [SMALL_STATE(3269)] = 93310, - [SMALL_STATE(3270)] = 93327, - [SMALL_STATE(3271)] = 93344, - [SMALL_STATE(3272)] = 93361, - [SMALL_STATE(3273)] = 93376, - [SMALL_STATE(3274)] = 93393, - [SMALL_STATE(3275)] = 93410, - [SMALL_STATE(3276)] = 93427, - [SMALL_STATE(3277)] = 93444, - [SMALL_STATE(3278)] = 93461, - [SMALL_STATE(3279)] = 93478, - [SMALL_STATE(3280)] = 93495, - [SMALL_STATE(3281)] = 93512, - [SMALL_STATE(3282)] = 93529, - [SMALL_STATE(3283)] = 93546, - [SMALL_STATE(3284)] = 93563, - [SMALL_STATE(3285)] = 93580, - [SMALL_STATE(3286)] = 93597, - [SMALL_STATE(3287)] = 93614, - [SMALL_STATE(3288)] = 93631, - [SMALL_STATE(3289)] = 93648, - [SMALL_STATE(3290)] = 93665, - [SMALL_STATE(3291)] = 93682, - [SMALL_STATE(3292)] = 93699, - [SMALL_STATE(3293)] = 93716, - [SMALL_STATE(3294)] = 93733, - [SMALL_STATE(3295)] = 93750, - [SMALL_STATE(3296)] = 93767, - [SMALL_STATE(3297)] = 93784, - [SMALL_STATE(3298)] = 93801, - [SMALL_STATE(3299)] = 93816, - [SMALL_STATE(3300)] = 93833, - [SMALL_STATE(3301)] = 93848, - [SMALL_STATE(3302)] = 93865, - [SMALL_STATE(3303)] = 93882, - [SMALL_STATE(3304)] = 93897, - [SMALL_STATE(3305)] = 93914, - [SMALL_STATE(3306)] = 93929, - [SMALL_STATE(3307)] = 93946, - [SMALL_STATE(3308)] = 93963, - [SMALL_STATE(3309)] = 93980, - [SMALL_STATE(3310)] = 93997, - [SMALL_STATE(3311)] = 94014, - [SMALL_STATE(3312)] = 94031, - [SMALL_STATE(3313)] = 94048, - [SMALL_STATE(3314)] = 94065, - [SMALL_STATE(3315)] = 94082, - [SMALL_STATE(3316)] = 94099, - [SMALL_STATE(3317)] = 94114, - [SMALL_STATE(3318)] = 94131, - [SMALL_STATE(3319)] = 94148, - [SMALL_STATE(3320)] = 94163, - [SMALL_STATE(3321)] = 94180, - [SMALL_STATE(3322)] = 94197, - [SMALL_STATE(3323)] = 94212, - [SMALL_STATE(3324)] = 94227, - [SMALL_STATE(3325)] = 94244, - [SMALL_STATE(3326)] = 94259, - [SMALL_STATE(3327)] = 94274, - [SMALL_STATE(3328)] = 94289, - [SMALL_STATE(3329)] = 94304, - [SMALL_STATE(3330)] = 94321, - [SMALL_STATE(3331)] = 94338, - [SMALL_STATE(3332)] = 94355, - [SMALL_STATE(3333)] = 94372, - [SMALL_STATE(3334)] = 94389, - [SMALL_STATE(3335)] = 94404, - [SMALL_STATE(3336)] = 94421, - [SMALL_STATE(3337)] = 94438, - [SMALL_STATE(3338)] = 94453, - [SMALL_STATE(3339)] = 94468, - [SMALL_STATE(3340)] = 94485, - [SMALL_STATE(3341)] = 94502, - [SMALL_STATE(3342)] = 94519, - [SMALL_STATE(3343)] = 94536, - [SMALL_STATE(3344)] = 94553, - [SMALL_STATE(3345)] = 94570, - [SMALL_STATE(3346)] = 94587, - [SMALL_STATE(3347)] = 94604, - [SMALL_STATE(3348)] = 94621, - [SMALL_STATE(3349)] = 94638, - [SMALL_STATE(3350)] = 94655, - [SMALL_STATE(3351)] = 94672, - [SMALL_STATE(3352)] = 94689, - [SMALL_STATE(3353)] = 94706, - [SMALL_STATE(3354)] = 94723, - [SMALL_STATE(3355)] = 94738, - [SMALL_STATE(3356)] = 94755, - [SMALL_STATE(3357)] = 94772, - [SMALL_STATE(3358)] = 94789, - [SMALL_STATE(3359)] = 94804, - [SMALL_STATE(3360)] = 94821, - [SMALL_STATE(3361)] = 94838, - [SMALL_STATE(3362)] = 94855, - [SMALL_STATE(3363)] = 94872, - [SMALL_STATE(3364)] = 94889, - [SMALL_STATE(3365)] = 94906, - [SMALL_STATE(3366)] = 94923, - [SMALL_STATE(3367)] = 94938, - [SMALL_STATE(3368)] = 94955, - [SMALL_STATE(3369)] = 94972, - [SMALL_STATE(3370)] = 94989, - [SMALL_STATE(3371)] = 95006, - [SMALL_STATE(3372)] = 95023, - [SMALL_STATE(3373)] = 95038, - [SMALL_STATE(3374)] = 95055, - [SMALL_STATE(3375)] = 95072, - [SMALL_STATE(3376)] = 95089, - [SMALL_STATE(3377)] = 95106, - [SMALL_STATE(3378)] = 95123, - [SMALL_STATE(3379)] = 95138, - [SMALL_STATE(3380)] = 95153, - [SMALL_STATE(3381)] = 95170, - [SMALL_STATE(3382)] = 95187, - [SMALL_STATE(3383)] = 95204, - [SMALL_STATE(3384)] = 95221, - [SMALL_STATE(3385)] = 95238, - [SMALL_STATE(3386)] = 95253, - [SMALL_STATE(3387)] = 95270, - [SMALL_STATE(3388)] = 95287, - [SMALL_STATE(3389)] = 95304, - [SMALL_STATE(3390)] = 95321, - [SMALL_STATE(3391)] = 95338, - [SMALL_STATE(3392)] = 95355, - [SMALL_STATE(3393)] = 95370, - [SMALL_STATE(3394)] = 95387, - [SMALL_STATE(3395)] = 95402, - [SMALL_STATE(3396)] = 95417, - [SMALL_STATE(3397)] = 95434, - [SMALL_STATE(3398)] = 95449, - [SMALL_STATE(3399)] = 95466, - [SMALL_STATE(3400)] = 95483, - [SMALL_STATE(3401)] = 95498, - [SMALL_STATE(3402)] = 95515, - [SMALL_STATE(3403)] = 95530, - [SMALL_STATE(3404)] = 95545, - [SMALL_STATE(3405)] = 95562, - [SMALL_STATE(3406)] = 95579, - [SMALL_STATE(3407)] = 95596, - [SMALL_STATE(3408)] = 95613, - [SMALL_STATE(3409)] = 95630, - [SMALL_STATE(3410)] = 95647, - [SMALL_STATE(3411)] = 95664, - [SMALL_STATE(3412)] = 95681, - [SMALL_STATE(3413)] = 95698, - [SMALL_STATE(3414)] = 95715, - [SMALL_STATE(3415)] = 95732, - [SMALL_STATE(3416)] = 95749, - [SMALL_STATE(3417)] = 95766, - [SMALL_STATE(3418)] = 95783, - [SMALL_STATE(3419)] = 95800, - [SMALL_STATE(3420)] = 95817, - [SMALL_STATE(3421)] = 95834, - [SMALL_STATE(3422)] = 95851, - [SMALL_STATE(3423)] = 95868, - [SMALL_STATE(3424)] = 95885, - [SMALL_STATE(3425)] = 95899, - [SMALL_STATE(3426)] = 95913, - [SMALL_STATE(3427)] = 95927, - [SMALL_STATE(3428)] = 95941, - [SMALL_STATE(3429)] = 95955, - [SMALL_STATE(3430)] = 95969, - [SMALL_STATE(3431)] = 95983, - [SMALL_STATE(3432)] = 95997, - [SMALL_STATE(3433)] = 96011, - [SMALL_STATE(3434)] = 96025, - [SMALL_STATE(3435)] = 96039, - [SMALL_STATE(3436)] = 96053, - [SMALL_STATE(3437)] = 96067, - [SMALL_STATE(3438)] = 96081, - [SMALL_STATE(3439)] = 96095, - [SMALL_STATE(3440)] = 96109, - [SMALL_STATE(3441)] = 96123, - [SMALL_STATE(3442)] = 96137, - [SMALL_STATE(3443)] = 96151, - [SMALL_STATE(3444)] = 96165, - [SMALL_STATE(3445)] = 96179, - [SMALL_STATE(3446)] = 96193, - [SMALL_STATE(3447)] = 96207, - [SMALL_STATE(3448)] = 96221, - [SMALL_STATE(3449)] = 96235, - [SMALL_STATE(3450)] = 96249, - [SMALL_STATE(3451)] = 96263, - [SMALL_STATE(3452)] = 96277, - [SMALL_STATE(3453)] = 96291, - [SMALL_STATE(3454)] = 96305, - [SMALL_STATE(3455)] = 96319, - [SMALL_STATE(3456)] = 96333, - [SMALL_STATE(3457)] = 96347, - [SMALL_STATE(3458)] = 96361, - [SMALL_STATE(3459)] = 96375, - [SMALL_STATE(3460)] = 96389, - [SMALL_STATE(3461)] = 96403, - [SMALL_STATE(3462)] = 96417, - [SMALL_STATE(3463)] = 96431, - [SMALL_STATE(3464)] = 96445, - [SMALL_STATE(3465)] = 96459, - [SMALL_STATE(3466)] = 96473, - [SMALL_STATE(3467)] = 96487, - [SMALL_STATE(3468)] = 96501, - [SMALL_STATE(3469)] = 96515, - [SMALL_STATE(3470)] = 96529, - [SMALL_STATE(3471)] = 96543, - [SMALL_STATE(3472)] = 96557, - [SMALL_STATE(3473)] = 96571, - [SMALL_STATE(3474)] = 96585, - [SMALL_STATE(3475)] = 96599, - [SMALL_STATE(3476)] = 96613, - [SMALL_STATE(3477)] = 96627, - [SMALL_STATE(3478)] = 96641, - [SMALL_STATE(3479)] = 96655, - [SMALL_STATE(3480)] = 96669, - [SMALL_STATE(3481)] = 96683, - [SMALL_STATE(3482)] = 96697, - [SMALL_STATE(3483)] = 96711, - [SMALL_STATE(3484)] = 96725, - [SMALL_STATE(3485)] = 96739, - [SMALL_STATE(3486)] = 96753, - [SMALL_STATE(3487)] = 96767, - [SMALL_STATE(3488)] = 96781, - [SMALL_STATE(3489)] = 96795, - [SMALL_STATE(3490)] = 96809, - [SMALL_STATE(3491)] = 96823, - [SMALL_STATE(3492)] = 96837, - [SMALL_STATE(3493)] = 96851, - [SMALL_STATE(3494)] = 96865, - [SMALL_STATE(3495)] = 96879, - [SMALL_STATE(3496)] = 96893, - [SMALL_STATE(3497)] = 96907, - [SMALL_STATE(3498)] = 96921, - [SMALL_STATE(3499)] = 96935, - [SMALL_STATE(3500)] = 96949, - [SMALL_STATE(3501)] = 96963, - [SMALL_STATE(3502)] = 96977, - [SMALL_STATE(3503)] = 96991, - [SMALL_STATE(3504)] = 97005, - [SMALL_STATE(3505)] = 97019, - [SMALL_STATE(3506)] = 97033, - [SMALL_STATE(3507)] = 97047, - [SMALL_STATE(3508)] = 97061, - [SMALL_STATE(3509)] = 97075, - [SMALL_STATE(3510)] = 97089, - [SMALL_STATE(3511)] = 97103, - [SMALL_STATE(3512)] = 97117, - [SMALL_STATE(3513)] = 97131, - [SMALL_STATE(3514)] = 97145, - [SMALL_STATE(3515)] = 97159, - [SMALL_STATE(3516)] = 97173, - [SMALL_STATE(3517)] = 97187, - [SMALL_STATE(3518)] = 97201, - [SMALL_STATE(3519)] = 97215, - [SMALL_STATE(3520)] = 97229, - [SMALL_STATE(3521)] = 97243, - [SMALL_STATE(3522)] = 97257, - [SMALL_STATE(3523)] = 97271, - [SMALL_STATE(3524)] = 97285, - [SMALL_STATE(3525)] = 97299, - [SMALL_STATE(3526)] = 97313, - [SMALL_STATE(3527)] = 97327, - [SMALL_STATE(3528)] = 97341, - [SMALL_STATE(3529)] = 97355, - [SMALL_STATE(3530)] = 97369, - [SMALL_STATE(3531)] = 97383, - [SMALL_STATE(3532)] = 97397, - [SMALL_STATE(3533)] = 97411, - [SMALL_STATE(3534)] = 97425, - [SMALL_STATE(3535)] = 97439, - [SMALL_STATE(3536)] = 97453, - [SMALL_STATE(3537)] = 97467, - [SMALL_STATE(3538)] = 97481, - [SMALL_STATE(3539)] = 97495, - [SMALL_STATE(3540)] = 97509, - [SMALL_STATE(3541)] = 97523, - [SMALL_STATE(3542)] = 97537, - [SMALL_STATE(3543)] = 97551, - [SMALL_STATE(3544)] = 97565, - [SMALL_STATE(3545)] = 97579, - [SMALL_STATE(3546)] = 97593, - [SMALL_STATE(3547)] = 97607, - [SMALL_STATE(3548)] = 97621, - [SMALL_STATE(3549)] = 97635, - [SMALL_STATE(3550)] = 97649, - [SMALL_STATE(3551)] = 97663, - [SMALL_STATE(3552)] = 97677, - [SMALL_STATE(3553)] = 97691, - [SMALL_STATE(3554)] = 97705, - [SMALL_STATE(3555)] = 97719, - [SMALL_STATE(3556)] = 97733, - [SMALL_STATE(3557)] = 97747, - [SMALL_STATE(3558)] = 97761, - [SMALL_STATE(3559)] = 97775, - [SMALL_STATE(3560)] = 97789, - [SMALL_STATE(3561)] = 97803, - [SMALL_STATE(3562)] = 97817, - [SMALL_STATE(3563)] = 97831, - [SMALL_STATE(3564)] = 97845, - [SMALL_STATE(3565)] = 97859, - [SMALL_STATE(3566)] = 97873, - [SMALL_STATE(3567)] = 97887, - [SMALL_STATE(3568)] = 97901, - [SMALL_STATE(3569)] = 97915, - [SMALL_STATE(3570)] = 97929, - [SMALL_STATE(3571)] = 97943, - [SMALL_STATE(3572)] = 97957, - [SMALL_STATE(3573)] = 97971, - [SMALL_STATE(3574)] = 97985, - [SMALL_STATE(3575)] = 97999, - [SMALL_STATE(3576)] = 98013, - [SMALL_STATE(3577)] = 98027, - [SMALL_STATE(3578)] = 98041, - [SMALL_STATE(3579)] = 98055, - [SMALL_STATE(3580)] = 98069, - [SMALL_STATE(3581)] = 98083, - [SMALL_STATE(3582)] = 98097, - [SMALL_STATE(3583)] = 98111, - [SMALL_STATE(3584)] = 98125, - [SMALL_STATE(3585)] = 98139, - [SMALL_STATE(3586)] = 98153, - [SMALL_STATE(3587)] = 98167, - [SMALL_STATE(3588)] = 98181, - [SMALL_STATE(3589)] = 98195, - [SMALL_STATE(3590)] = 98209, - [SMALL_STATE(3591)] = 98223, - [SMALL_STATE(3592)] = 98237, - [SMALL_STATE(3593)] = 98251, - [SMALL_STATE(3594)] = 98265, - [SMALL_STATE(3595)] = 98279, - [SMALL_STATE(3596)] = 98293, - [SMALL_STATE(3597)] = 98307, - [SMALL_STATE(3598)] = 98321, - [SMALL_STATE(3599)] = 98335, - [SMALL_STATE(3600)] = 98349, - [SMALL_STATE(3601)] = 98363, - [SMALL_STATE(3602)] = 98377, - [SMALL_STATE(3603)] = 98391, - [SMALL_STATE(3604)] = 98405, - [SMALL_STATE(3605)] = 98419, - [SMALL_STATE(3606)] = 98433, - [SMALL_STATE(3607)] = 98447, - [SMALL_STATE(3608)] = 98461, - [SMALL_STATE(3609)] = 98475, - [SMALL_STATE(3610)] = 98489, - [SMALL_STATE(3611)] = 98503, - [SMALL_STATE(3612)] = 98517, - [SMALL_STATE(3613)] = 98531, - [SMALL_STATE(3614)] = 98545, - [SMALL_STATE(3615)] = 98559, - [SMALL_STATE(3616)] = 98573, - [SMALL_STATE(3617)] = 98587, - [SMALL_STATE(3618)] = 98601, - [SMALL_STATE(3619)] = 98615, - [SMALL_STATE(3620)] = 98629, - [SMALL_STATE(3621)] = 98643, - [SMALL_STATE(3622)] = 98657, - [SMALL_STATE(3623)] = 98671, - [SMALL_STATE(3624)] = 98685, - [SMALL_STATE(3625)] = 98699, - [SMALL_STATE(3626)] = 98713, - [SMALL_STATE(3627)] = 98727, - [SMALL_STATE(3628)] = 98741, - [SMALL_STATE(3629)] = 98755, - [SMALL_STATE(3630)] = 98769, - [SMALL_STATE(3631)] = 98783, - [SMALL_STATE(3632)] = 98797, - [SMALL_STATE(3633)] = 98811, - [SMALL_STATE(3634)] = 98825, - [SMALL_STATE(3635)] = 98839, - [SMALL_STATE(3636)] = 98853, - [SMALL_STATE(3637)] = 98867, - [SMALL_STATE(3638)] = 98881, - [SMALL_STATE(3639)] = 98895, - [SMALL_STATE(3640)] = 98909, - [SMALL_STATE(3641)] = 98923, - [SMALL_STATE(3642)] = 98937, - [SMALL_STATE(3643)] = 98951, - [SMALL_STATE(3644)] = 98965, - [SMALL_STATE(3645)] = 98979, - [SMALL_STATE(3646)] = 98993, - [SMALL_STATE(3647)] = 99007, - [SMALL_STATE(3648)] = 99021, - [SMALL_STATE(3649)] = 99035, - [SMALL_STATE(3650)] = 99049, - [SMALL_STATE(3651)] = 99063, - [SMALL_STATE(3652)] = 99077, - [SMALL_STATE(3653)] = 99091, - [SMALL_STATE(3654)] = 99105, - [SMALL_STATE(3655)] = 99119, - [SMALL_STATE(3656)] = 99133, - [SMALL_STATE(3657)] = 99147, - [SMALL_STATE(3658)] = 99161, - [SMALL_STATE(3659)] = 99175, - [SMALL_STATE(3660)] = 99189, - [SMALL_STATE(3661)] = 99203, - [SMALL_STATE(3662)] = 99217, - [SMALL_STATE(3663)] = 99231, - [SMALL_STATE(3664)] = 99245, - [SMALL_STATE(3665)] = 99259, - [SMALL_STATE(3666)] = 99273, - [SMALL_STATE(3667)] = 99287, - [SMALL_STATE(3668)] = 99301, - [SMALL_STATE(3669)] = 99315, - [SMALL_STATE(3670)] = 99329, - [SMALL_STATE(3671)] = 99343, - [SMALL_STATE(3672)] = 99357, - [SMALL_STATE(3673)] = 99371, - [SMALL_STATE(3674)] = 99385, - [SMALL_STATE(3675)] = 99399, - [SMALL_STATE(3676)] = 99413, - [SMALL_STATE(3677)] = 99427, - [SMALL_STATE(3678)] = 99441, - [SMALL_STATE(3679)] = 99455, - [SMALL_STATE(3680)] = 99469, - [SMALL_STATE(3681)] = 99483, - [SMALL_STATE(3682)] = 99497, - [SMALL_STATE(3683)] = 99511, - [SMALL_STATE(3684)] = 99525, - [SMALL_STATE(3685)] = 99539, - [SMALL_STATE(3686)] = 99553, - [SMALL_STATE(3687)] = 99567, - [SMALL_STATE(3688)] = 99581, - [SMALL_STATE(3689)] = 99595, - [SMALL_STATE(3690)] = 99609, - [SMALL_STATE(3691)] = 99623, - [SMALL_STATE(3692)] = 99637, - [SMALL_STATE(3693)] = 99651, - [SMALL_STATE(3694)] = 99665, - [SMALL_STATE(3695)] = 99679, - [SMALL_STATE(3696)] = 99693, - [SMALL_STATE(3697)] = 99707, - [SMALL_STATE(3698)] = 99721, - [SMALL_STATE(3699)] = 99735, - [SMALL_STATE(3700)] = 99749, - [SMALL_STATE(3701)] = 99763, - [SMALL_STATE(3702)] = 99777, - [SMALL_STATE(3703)] = 99791, - [SMALL_STATE(3704)] = 99805, - [SMALL_STATE(3705)] = 99819, - [SMALL_STATE(3706)] = 99833, - [SMALL_STATE(3707)] = 99847, - [SMALL_STATE(3708)] = 99861, - [SMALL_STATE(3709)] = 99875, - [SMALL_STATE(3710)] = 99889, - [SMALL_STATE(3711)] = 99903, - [SMALL_STATE(3712)] = 99917, - [SMALL_STATE(3713)] = 99931, - [SMALL_STATE(3714)] = 99945, - [SMALL_STATE(3715)] = 99959, - [SMALL_STATE(3716)] = 99973, - [SMALL_STATE(3717)] = 99987, - [SMALL_STATE(3718)] = 100001, - [SMALL_STATE(3719)] = 100015, - [SMALL_STATE(3720)] = 100029, - [SMALL_STATE(3721)] = 100043, - [SMALL_STATE(3722)] = 100057, - [SMALL_STATE(3723)] = 100071, - [SMALL_STATE(3724)] = 100085, - [SMALL_STATE(3725)] = 100099, - [SMALL_STATE(3726)] = 100113, - [SMALL_STATE(3727)] = 100127, - [SMALL_STATE(3728)] = 100141, - [SMALL_STATE(3729)] = 100155, - [SMALL_STATE(3730)] = 100169, - [SMALL_STATE(3731)] = 100183, - [SMALL_STATE(3732)] = 100197, - [SMALL_STATE(3733)] = 100211, - [SMALL_STATE(3734)] = 100225, - [SMALL_STATE(3735)] = 100239, - [SMALL_STATE(3736)] = 100253, - [SMALL_STATE(3737)] = 100267, - [SMALL_STATE(3738)] = 100281, - [SMALL_STATE(3739)] = 100295, - [SMALL_STATE(3740)] = 100309, - [SMALL_STATE(3741)] = 100313, - [SMALL_STATE(3742)] = 100317, - [SMALL_STATE(3743)] = 100321, - [SMALL_STATE(3744)] = 100325, - [SMALL_STATE(3745)] = 100329, - [SMALL_STATE(3746)] = 100333, + [SMALL_STATE(1042)] = 0, + [SMALL_STATE(1043)] = 75, + [SMALL_STATE(1044)] = 148, + [SMALL_STATE(1045)] = 219, + [SMALL_STATE(1046)] = 319, + [SMALL_STATE(1047)] = 419, + [SMALL_STATE(1048)] = 519, + [SMALL_STATE(1049)] = 596, + [SMALL_STATE(1050)] = 661, + [SMALL_STATE(1051)] = 726, + [SMALL_STATE(1052)] = 791, + [SMALL_STATE(1053)] = 856, + [SMALL_STATE(1054)] = 935, + [SMALL_STATE(1055)] = 1000, + [SMALL_STATE(1056)] = 1065, + [SMALL_STATE(1057)] = 1130, + [SMALL_STATE(1058)] = 1195, + [SMALL_STATE(1059)] = 1260, + [SMALL_STATE(1060)] = 1324, + [SMALL_STATE(1061)] = 1398, + [SMALL_STATE(1062)] = 1472, + [SMALL_STATE(1063)] = 1536, + [SMALL_STATE(1064)] = 1600, + [SMALL_STATE(1065)] = 1664, + [SMALL_STATE(1066)] = 1732, + [SMALL_STATE(1067)] = 1806, + [SMALL_STATE(1068)] = 1870, + [SMALL_STATE(1069)] = 1937, + [SMALL_STATE(1070)] = 2044, + [SMALL_STATE(1071)] = 2111, + [SMALL_STATE(1072)] = 2218, + [SMALL_STATE(1073)] = 2325, + [SMALL_STATE(1074)] = 2396, + [SMALL_STATE(1075)] = 2497, + [SMALL_STATE(1076)] = 2604, + [SMALL_STATE(1077)] = 2671, + [SMALL_STATE(1078)] = 2742, + [SMALL_STATE(1079)] = 2813, + [SMALL_STATE(1080)] = 2920, + [SMALL_STATE(1081)] = 3021, + [SMALL_STATE(1082)] = 3128, + [SMALL_STATE(1083)] = 3197, + [SMALL_STATE(1084)] = 3268, + [SMALL_STATE(1085)] = 3369, + [SMALL_STATE(1086)] = 3436, + [SMALL_STATE(1087)] = 3503, + [SMALL_STATE(1088)] = 3565, + [SMALL_STATE(1089)] = 3627, + [SMALL_STATE(1090)] = 3689, + [SMALL_STATE(1091)] = 3751, + [SMALL_STATE(1092)] = 3813, + [SMALL_STATE(1093)] = 3875, + [SMALL_STATE(1094)] = 3937, + [SMALL_STATE(1095)] = 3999, + [SMALL_STATE(1096)] = 4061, + [SMALL_STATE(1097)] = 4123, + [SMALL_STATE(1098)] = 4185, + [SMALL_STATE(1099)] = 4247, + [SMALL_STATE(1100)] = 4309, + [SMALL_STATE(1101)] = 4371, + [SMALL_STATE(1102)] = 4433, + [SMALL_STATE(1103)] = 4495, + [SMALL_STATE(1104)] = 4557, + [SMALL_STATE(1105)] = 4619, + [SMALL_STATE(1106)] = 4681, + [SMALL_STATE(1107)] = 4743, + [SMALL_STATE(1108)] = 4805, + [SMALL_STATE(1109)] = 4867, + [SMALL_STATE(1110)] = 4929, + [SMALL_STATE(1111)] = 4991, + [SMALL_STATE(1112)] = 5053, + [SMALL_STATE(1113)] = 5115, + [SMALL_STATE(1114)] = 5177, + [SMALL_STATE(1115)] = 5239, + [SMALL_STATE(1116)] = 5301, + [SMALL_STATE(1117)] = 5363, + [SMALL_STATE(1118)] = 5425, + [SMALL_STATE(1119)] = 5487, + [SMALL_STATE(1120)] = 5549, + [SMALL_STATE(1121)] = 5611, + [SMALL_STATE(1122)] = 5673, + [SMALL_STATE(1123)] = 5735, + [SMALL_STATE(1124)] = 5797, + [SMALL_STATE(1125)] = 5859, + [SMALL_STATE(1126)] = 5921, + [SMALL_STATE(1127)] = 5983, + [SMALL_STATE(1128)] = 6045, + [SMALL_STATE(1129)] = 6107, + [SMALL_STATE(1130)] = 6169, + [SMALL_STATE(1131)] = 6231, + [SMALL_STATE(1132)] = 6293, + [SMALL_STATE(1133)] = 6355, + [SMALL_STATE(1134)] = 6417, + [SMALL_STATE(1135)] = 6479, + [SMALL_STATE(1136)] = 6541, + [SMALL_STATE(1137)] = 6603, + [SMALL_STATE(1138)] = 6665, + [SMALL_STATE(1139)] = 6727, + [SMALL_STATE(1140)] = 6789, + [SMALL_STATE(1141)] = 6851, + [SMALL_STATE(1142)] = 6913, + [SMALL_STATE(1143)] = 6975, + [SMALL_STATE(1144)] = 7037, + [SMALL_STATE(1145)] = 7099, + [SMALL_STATE(1146)] = 7161, + [SMALL_STATE(1147)] = 7223, + [SMALL_STATE(1148)] = 7285, + [SMALL_STATE(1149)] = 7347, + [SMALL_STATE(1150)] = 7409, + [SMALL_STATE(1151)] = 7471, + [SMALL_STATE(1152)] = 7533, + [SMALL_STATE(1153)] = 7595, + [SMALL_STATE(1154)] = 7657, + [SMALL_STATE(1155)] = 7719, + [SMALL_STATE(1156)] = 7781, + [SMALL_STATE(1157)] = 7843, + [SMALL_STATE(1158)] = 7905, + [SMALL_STATE(1159)] = 7967, + [SMALL_STATE(1160)] = 8029, + [SMALL_STATE(1161)] = 8091, + [SMALL_STATE(1162)] = 8153, + [SMALL_STATE(1163)] = 8215, + [SMALL_STATE(1164)] = 8277, + [SMALL_STATE(1165)] = 8339, + [SMALL_STATE(1166)] = 8401, + [SMALL_STATE(1167)] = 8463, + [SMALL_STATE(1168)] = 8525, + [SMALL_STATE(1169)] = 8587, + [SMALL_STATE(1170)] = 8649, + [SMALL_STATE(1171)] = 8711, + [SMALL_STATE(1172)] = 8773, + [SMALL_STATE(1173)] = 8835, + [SMALL_STATE(1174)] = 8897, + [SMALL_STATE(1175)] = 8959, + [SMALL_STATE(1176)] = 9021, + [SMALL_STATE(1177)] = 9083, + [SMALL_STATE(1178)] = 9145, + [SMALL_STATE(1179)] = 9207, + [SMALL_STATE(1180)] = 9269, + [SMALL_STATE(1181)] = 9331, + [SMALL_STATE(1182)] = 9393, + [SMALL_STATE(1183)] = 9455, + [SMALL_STATE(1184)] = 9517, + [SMALL_STATE(1185)] = 9579, + [SMALL_STATE(1186)] = 9641, + [SMALL_STATE(1187)] = 9703, + [SMALL_STATE(1188)] = 9765, + [SMALL_STATE(1189)] = 9827, + [SMALL_STATE(1190)] = 9889, + [SMALL_STATE(1191)] = 9951, + [SMALL_STATE(1192)] = 10013, + [SMALL_STATE(1193)] = 10075, + [SMALL_STATE(1194)] = 10137, + [SMALL_STATE(1195)] = 10199, + [SMALL_STATE(1196)] = 10261, + [SMALL_STATE(1197)] = 10323, + [SMALL_STATE(1198)] = 10385, + [SMALL_STATE(1199)] = 10447, + [SMALL_STATE(1200)] = 10509, + [SMALL_STATE(1201)] = 10571, + [SMALL_STATE(1202)] = 10633, + [SMALL_STATE(1203)] = 10695, + [SMALL_STATE(1204)] = 10757, + [SMALL_STATE(1205)] = 10819, + [SMALL_STATE(1206)] = 10881, + [SMALL_STATE(1207)] = 10943, + [SMALL_STATE(1208)] = 11005, + [SMALL_STATE(1209)] = 11067, + [SMALL_STATE(1210)] = 11129, + [SMALL_STATE(1211)] = 11191, + [SMALL_STATE(1212)] = 11253, + [SMALL_STATE(1213)] = 11315, + [SMALL_STATE(1214)] = 11377, + [SMALL_STATE(1215)] = 11439, + [SMALL_STATE(1216)] = 11501, + [SMALL_STATE(1217)] = 11563, + [SMALL_STATE(1218)] = 11625, + [SMALL_STATE(1219)] = 11687, + [SMALL_STATE(1220)] = 11749, + [SMALL_STATE(1221)] = 11811, + [SMALL_STATE(1222)] = 11873, + [SMALL_STATE(1223)] = 11935, + [SMALL_STATE(1224)] = 11997, + [SMALL_STATE(1225)] = 12059, + [SMALL_STATE(1226)] = 12121, + [SMALL_STATE(1227)] = 12183, + [SMALL_STATE(1228)] = 12245, + [SMALL_STATE(1229)] = 12307, + [SMALL_STATE(1230)] = 12369, + [SMALL_STATE(1231)] = 12431, + [SMALL_STATE(1232)] = 12493, + [SMALL_STATE(1233)] = 12555, + [SMALL_STATE(1234)] = 12617, + [SMALL_STATE(1235)] = 12679, + [SMALL_STATE(1236)] = 12741, + [SMALL_STATE(1237)] = 12803, + [SMALL_STATE(1238)] = 12865, + [SMALL_STATE(1239)] = 12927, + [SMALL_STATE(1240)] = 12989, + [SMALL_STATE(1241)] = 13051, + [SMALL_STATE(1242)] = 13113, + [SMALL_STATE(1243)] = 13175, + [SMALL_STATE(1244)] = 13237, + [SMALL_STATE(1245)] = 13299, + [SMALL_STATE(1246)] = 13361, + [SMALL_STATE(1247)] = 13423, + [SMALL_STATE(1248)] = 13485, + [SMALL_STATE(1249)] = 13547, + [SMALL_STATE(1250)] = 13609, + [SMALL_STATE(1251)] = 13671, + [SMALL_STATE(1252)] = 13733, + [SMALL_STATE(1253)] = 13795, + [SMALL_STATE(1254)] = 13857, + [SMALL_STATE(1255)] = 13919, + [SMALL_STATE(1256)] = 13981, + [SMALL_STATE(1257)] = 14043, + [SMALL_STATE(1258)] = 14105, + [SMALL_STATE(1259)] = 14167, + [SMALL_STATE(1260)] = 14229, + [SMALL_STATE(1261)] = 14291, + [SMALL_STATE(1262)] = 14353, + [SMALL_STATE(1263)] = 14415, + [SMALL_STATE(1264)] = 14477, + [SMALL_STATE(1265)] = 14541, + [SMALL_STATE(1266)] = 14603, + [SMALL_STATE(1267)] = 14665, + [SMALL_STATE(1268)] = 14727, + [SMALL_STATE(1269)] = 14789, + [SMALL_STATE(1270)] = 14851, + [SMALL_STATE(1271)] = 14921, + [SMALL_STATE(1272)] = 14983, + [SMALL_STATE(1273)] = 15045, + [SMALL_STATE(1274)] = 15107, + [SMALL_STATE(1275)] = 15169, + [SMALL_STATE(1276)] = 15231, + [SMALL_STATE(1277)] = 15293, + [SMALL_STATE(1278)] = 15355, + [SMALL_STATE(1279)] = 15417, + [SMALL_STATE(1280)] = 15479, + [SMALL_STATE(1281)] = 15541, + [SMALL_STATE(1282)] = 15603, + [SMALL_STATE(1283)] = 15665, + [SMALL_STATE(1284)] = 15727, + [SMALL_STATE(1285)] = 15789, + [SMALL_STATE(1286)] = 15851, + [SMALL_STATE(1287)] = 15913, + [SMALL_STATE(1288)] = 15975, + [SMALL_STATE(1289)] = 16037, + [SMALL_STATE(1290)] = 16099, + [SMALL_STATE(1291)] = 16161, + [SMALL_STATE(1292)] = 16223, + [SMALL_STATE(1293)] = 16285, + [SMALL_STATE(1294)] = 16347, + [SMALL_STATE(1295)] = 16409, + [SMALL_STATE(1296)] = 16471, + [SMALL_STATE(1297)] = 16533, + [SMALL_STATE(1298)] = 16595, + [SMALL_STATE(1299)] = 16659, + [SMALL_STATE(1300)] = 16721, + [SMALL_STATE(1301)] = 16783, + [SMALL_STATE(1302)] = 16845, + [SMALL_STATE(1303)] = 16907, + [SMALL_STATE(1304)] = 16969, + [SMALL_STATE(1305)] = 17031, + [SMALL_STATE(1306)] = 17093, + [SMALL_STATE(1307)] = 17155, + [SMALL_STATE(1308)] = 17217, + [SMALL_STATE(1309)] = 17279, + [SMALL_STATE(1310)] = 17341, + [SMALL_STATE(1311)] = 17403, + [SMALL_STATE(1312)] = 17465, + [SMALL_STATE(1313)] = 17527, + [SMALL_STATE(1314)] = 17589, + [SMALL_STATE(1315)] = 17651, + [SMALL_STATE(1316)] = 17713, + [SMALL_STATE(1317)] = 17775, + [SMALL_STATE(1318)] = 17837, + [SMALL_STATE(1319)] = 17899, + [SMALL_STATE(1320)] = 17961, + [SMALL_STATE(1321)] = 18023, + [SMALL_STATE(1322)] = 18085, + [SMALL_STATE(1323)] = 18147, + [SMALL_STATE(1324)] = 18209, + [SMALL_STATE(1325)] = 18271, + [SMALL_STATE(1326)] = 18333, + [SMALL_STATE(1327)] = 18395, + [SMALL_STATE(1328)] = 18457, + [SMALL_STATE(1329)] = 18519, + [SMALL_STATE(1330)] = 18581, + [SMALL_STATE(1331)] = 18643, + [SMALL_STATE(1332)] = 18705, + [SMALL_STATE(1333)] = 18767, + [SMALL_STATE(1334)] = 18829, + [SMALL_STATE(1335)] = 18891, + [SMALL_STATE(1336)] = 18953, + [SMALL_STATE(1337)] = 19015, + [SMALL_STATE(1338)] = 19077, + [SMALL_STATE(1339)] = 19139, + [SMALL_STATE(1340)] = 19201, + [SMALL_STATE(1341)] = 19263, + [SMALL_STATE(1342)] = 19325, + [SMALL_STATE(1343)] = 19387, + [SMALL_STATE(1344)] = 19449, + [SMALL_STATE(1345)] = 19511, + [SMALL_STATE(1346)] = 19573, + [SMALL_STATE(1347)] = 19635, + [SMALL_STATE(1348)] = 19697, + [SMALL_STATE(1349)] = 19759, + [SMALL_STATE(1350)] = 19821, + [SMALL_STATE(1351)] = 19883, + [SMALL_STATE(1352)] = 19945, + [SMALL_STATE(1353)] = 20007, + [SMALL_STATE(1354)] = 20069, + [SMALL_STATE(1355)] = 20131, + [SMALL_STATE(1356)] = 20193, + [SMALL_STATE(1357)] = 20255, + [SMALL_STATE(1358)] = 20317, + [SMALL_STATE(1359)] = 20379, + [SMALL_STATE(1360)] = 20441, + [SMALL_STATE(1361)] = 20503, + [SMALL_STATE(1362)] = 20565, + [SMALL_STATE(1363)] = 20627, + [SMALL_STATE(1364)] = 20689, + [SMALL_STATE(1365)] = 20751, + [SMALL_STATE(1366)] = 20813, + [SMALL_STATE(1367)] = 20875, + [SMALL_STATE(1368)] = 20950, + [SMALL_STATE(1369)] = 21025, + [SMALL_STATE(1370)] = 21088, + [SMALL_STATE(1371)] = 21151, + [SMALL_STATE(1372)] = 21212, + [SMALL_STATE(1373)] = 21273, + [SMALL_STATE(1374)] = 21336, + [SMALL_STATE(1375)] = 21397, + [SMALL_STATE(1376)] = 21458, + [SMALL_STATE(1377)] = 21519, + [SMALL_STATE(1378)] = 21580, + [SMALL_STATE(1379)] = 21673, + [SMALL_STATE(1380)] = 21736, + [SMALL_STATE(1381)] = 21799, + [SMALL_STATE(1382)] = 21862, + [SMALL_STATE(1383)] = 21955, + [SMALL_STATE(1384)] = 22016, + [SMALL_STATE(1385)] = 22109, + [SMALL_STATE(1386)] = 22170, + [SMALL_STATE(1387)] = 22231, + [SMALL_STATE(1388)] = 22292, + [SMALL_STATE(1389)] = 22355, + [SMALL_STATE(1390)] = 22418, + [SMALL_STATE(1391)] = 22481, + [SMALL_STATE(1392)] = 22544, + [SMALL_STATE(1393)] = 22607, + [SMALL_STATE(1394)] = 22672, + [SMALL_STATE(1395)] = 22733, + [SMALL_STATE(1396)] = 22794, + [SMALL_STATE(1397)] = 22857, + [SMALL_STATE(1398)] = 22920, + [SMALL_STATE(1399)] = 22983, + [SMALL_STATE(1400)] = 23044, + [SMALL_STATE(1401)] = 23105, + [SMALL_STATE(1402)] = 23168, + [SMALL_STATE(1403)] = 23231, + [SMALL_STATE(1404)] = 23292, + [SMALL_STATE(1405)] = 23353, + [SMALL_STATE(1406)] = 23414, + [SMALL_STATE(1407)] = 23475, + [SMALL_STATE(1408)] = 23536, + [SMALL_STATE(1409)] = 23597, + [SMALL_STATE(1410)] = 23662, + [SMALL_STATE(1411)] = 23723, + [SMALL_STATE(1412)] = 23784, + [SMALL_STATE(1413)] = 23847, + [SMALL_STATE(1414)] = 23908, + [SMALL_STATE(1415)] = 23969, + [SMALL_STATE(1416)] = 24032, + [SMALL_STATE(1417)] = 24093, + [SMALL_STATE(1418)] = 24158, + [SMALL_STATE(1419)] = 24218, + [SMALL_STATE(1420)] = 24278, + [SMALL_STATE(1421)] = 24338, + [SMALL_STATE(1422)] = 24398, + [SMALL_STATE(1423)] = 24460, + [SMALL_STATE(1424)] = 24520, + [SMALL_STATE(1425)] = 24580, + [SMALL_STATE(1426)] = 24640, + [SMALL_STATE(1427)] = 24700, + [SMALL_STATE(1428)] = 24760, + [SMALL_STATE(1429)] = 24820, + [SMALL_STATE(1430)] = 24916, + [SMALL_STATE(1431)] = 24976, + [SMALL_STATE(1432)] = 25036, + [SMALL_STATE(1433)] = 25096, + [SMALL_STATE(1434)] = 25156, + [SMALL_STATE(1435)] = 25216, + [SMALL_STATE(1436)] = 25276, + [SMALL_STATE(1437)] = 25336, + [SMALL_STATE(1438)] = 25396, + [SMALL_STATE(1439)] = 25456, + [SMALL_STATE(1440)] = 25516, + [SMALL_STATE(1441)] = 25576, + [SMALL_STATE(1442)] = 25636, + [SMALL_STATE(1443)] = 25696, + [SMALL_STATE(1444)] = 25756, + [SMALL_STATE(1445)] = 25822, + [SMALL_STATE(1446)] = 25882, + [SMALL_STATE(1447)] = 25942, + [SMALL_STATE(1448)] = 26002, + [SMALL_STATE(1449)] = 26062, + [SMALL_STATE(1450)] = 26162, + [SMALL_STATE(1451)] = 26222, + [SMALL_STATE(1452)] = 26282, + [SMALL_STATE(1453)] = 26342, + [SMALL_STATE(1454)] = 26402, + [SMALL_STATE(1455)] = 26462, + [SMALL_STATE(1456)] = 26522, + [SMALL_STATE(1457)] = 26582, + [SMALL_STATE(1458)] = 26642, + [SMALL_STATE(1459)] = 26702, + [SMALL_STATE(1460)] = 26762, + [SMALL_STATE(1461)] = 26822, + [SMALL_STATE(1462)] = 26884, + [SMALL_STATE(1463)] = 26944, + [SMALL_STATE(1464)] = 27004, + [SMALL_STATE(1465)] = 27064, + [SMALL_STATE(1466)] = 27124, + [SMALL_STATE(1467)] = 27184, + [SMALL_STATE(1468)] = 27244, + [SMALL_STATE(1469)] = 27304, + [SMALL_STATE(1470)] = 27364, + [SMALL_STATE(1471)] = 27424, + [SMALL_STATE(1472)] = 27484, + [SMALL_STATE(1473)] = 27544, + [SMALL_STATE(1474)] = 27604, + [SMALL_STATE(1475)] = 27664, + [SMALL_STATE(1476)] = 27724, + [SMALL_STATE(1477)] = 27784, + [SMALL_STATE(1478)] = 27844, + [SMALL_STATE(1479)] = 27904, + [SMALL_STATE(1480)] = 27964, + [SMALL_STATE(1481)] = 28024, + [SMALL_STATE(1482)] = 28084, + [SMALL_STATE(1483)] = 28144, + [SMALL_STATE(1484)] = 28204, + [SMALL_STATE(1485)] = 28264, + [SMALL_STATE(1486)] = 28324, + [SMALL_STATE(1487)] = 28384, + [SMALL_STATE(1488)] = 28444, + [SMALL_STATE(1489)] = 28504, + [SMALL_STATE(1490)] = 28564, + [SMALL_STATE(1491)] = 28624, + [SMALL_STATE(1492)] = 28684, + [SMALL_STATE(1493)] = 28744, + [SMALL_STATE(1494)] = 28804, + [SMALL_STATE(1495)] = 28864, + [SMALL_STATE(1496)] = 28924, + [SMALL_STATE(1497)] = 28984, + [SMALL_STATE(1498)] = 29044, + [SMALL_STATE(1499)] = 29104, + [SMALL_STATE(1500)] = 29164, + [SMALL_STATE(1501)] = 29224, + [SMALL_STATE(1502)] = 29284, + [SMALL_STATE(1503)] = 29344, + [SMALL_STATE(1504)] = 29404, + [SMALL_STATE(1505)] = 29464, + [SMALL_STATE(1506)] = 29524, + [SMALL_STATE(1507)] = 29584, + [SMALL_STATE(1508)] = 29644, + [SMALL_STATE(1509)] = 29704, + [SMALL_STATE(1510)] = 29764, + [SMALL_STATE(1511)] = 29824, + [SMALL_STATE(1512)] = 29884, + [SMALL_STATE(1513)] = 29944, + [SMALL_STATE(1514)] = 30004, + [SMALL_STATE(1515)] = 30064, + [SMALL_STATE(1516)] = 30124, + [SMALL_STATE(1517)] = 30184, + [SMALL_STATE(1518)] = 30252, + [SMALL_STATE(1519)] = 30312, + [SMALL_STATE(1520)] = 30386, + [SMALL_STATE(1521)] = 30446, + [SMALL_STATE(1522)] = 30506, + [SMALL_STATE(1523)] = 30566, + [SMALL_STATE(1524)] = 30632, + [SMALL_STATE(1525)] = 30692, + [SMALL_STATE(1526)] = 30752, + [SMALL_STATE(1527)] = 30812, + [SMALL_STATE(1528)] = 30912, + [SMALL_STATE(1529)] = 30976, + [SMALL_STATE(1530)] = 31036, + [SMALL_STATE(1531)] = 31096, + [SMALL_STATE(1532)] = 31156, + [SMALL_STATE(1533)] = 31216, + [SMALL_STATE(1534)] = 31276, + [SMALL_STATE(1535)] = 31376, + [SMALL_STATE(1536)] = 31442, + [SMALL_STATE(1537)] = 31502, + [SMALL_STATE(1538)] = 31562, + [SMALL_STATE(1539)] = 31622, + [SMALL_STATE(1540)] = 31682, + [SMALL_STATE(1541)] = 31746, + [SMALL_STATE(1542)] = 31812, + [SMALL_STATE(1543)] = 31872, + [SMALL_STATE(1544)] = 31941, + [SMALL_STATE(1545)] = 32002, + [SMALL_STATE(1546)] = 32073, + [SMALL_STATE(1547)] = 32134, + [SMALL_STATE(1548)] = 32220, + [SMALL_STATE(1549)] = 32280, + [SMALL_STATE(1550)] = 32370, + [SMALL_STATE(1551)] = 32442, + [SMALL_STATE(1552)] = 32518, + [SMALL_STATE(1553)] = 32600, + [SMALL_STATE(1554)] = 32684, + [SMALL_STATE(1555)] = 32754, + [SMALL_STATE(1556)] = 32840, + [SMALL_STATE(1557)] = 32930, + [SMALL_STATE(1558)] = 33020, + [SMALL_STATE(1559)] = 33106, + [SMALL_STATE(1560)] = 33196, + [SMALL_STATE(1561)] = 33274, + [SMALL_STATE(1562)] = 33332, + [SMALL_STATE(1563)] = 33392, + [SMALL_STATE(1564)] = 33462, + [SMALL_STATE(1565)] = 33554, + [SMALL_STATE(1566)] = 33646, + [SMALL_STATE(1567)] = 33738, + [SMALL_STATE(1568)] = 33824, + [SMALL_STATE(1569)] = 33914, + [SMALL_STATE(1570)] = 34000, + [SMALL_STATE(1571)] = 34068, + [SMALL_STATE(1572)] = 34154, + [SMALL_STATE(1573)] = 34228, + [SMALL_STATE(1574)] = 34286, + [SMALL_STATE(1575)] = 34344, + [SMALL_STATE(1576)] = 34430, + [SMALL_STATE(1577)] = 34496, + [SMALL_STATE(1578)] = 34582, + [SMALL_STATE(1579)] = 34672, + [SMALL_STATE(1580)] = 34739, + [SMALL_STATE(1581)] = 34806, + [SMALL_STATE(1582)] = 34873, + [SMALL_STATE(1583)] = 34936, + [SMALL_STATE(1584)] = 34999, + [SMALL_STATE(1585)] = 35064, + [SMALL_STATE(1586)] = 35124, + [SMALL_STATE(1587)] = 35182, + [SMALL_STATE(1588)] = 35246, + [SMALL_STATE(1589)] = 35310, + [SMALL_STATE(1590)] = 35370, + [SMALL_STATE(1591)] = 35428, + [SMALL_STATE(1592)] = 35518, + [SMALL_STATE(1593)] = 35578, + [SMALL_STATE(1594)] = 35638, + [SMALL_STATE(1595)] = 35698, + [SMALL_STATE(1596)] = 35762, + [SMALL_STATE(1597)] = 35820, + [SMALL_STATE(1598)] = 35876, + [SMALL_STATE(1599)] = 35932, + [SMALL_STATE(1600)] = 35990, + [SMALL_STATE(1601)] = 36046, + [SMALL_STATE(1602)] = 36102, + [SMALL_STATE(1603)] = 36162, + [SMALL_STATE(1604)] = 36252, + [SMALL_STATE(1605)] = 36312, + [SMALL_STATE(1606)] = 36402, + [SMALL_STATE(1607)] = 36466, + [SMALL_STATE(1608)] = 36523, + [SMALL_STATE(1609)] = 36580, + [SMALL_STATE(1610)] = 36635, + [SMALL_STATE(1611)] = 36690, + [SMALL_STATE(1612)] = 36747, + [SMALL_STATE(1613)] = 36842, + [SMALL_STATE(1614)] = 36897, + [SMALL_STATE(1615)] = 36952, + [SMALL_STATE(1616)] = 37047, + [SMALL_STATE(1617)] = 37102, + [SMALL_STATE(1618)] = 37157, + [SMALL_STATE(1619)] = 37216, + [SMALL_STATE(1620)] = 37311, + [SMALL_STATE(1621)] = 37370, + [SMALL_STATE(1622)] = 37465, + [SMALL_STATE(1623)] = 37560, + [SMALL_STATE(1624)] = 37619, + [SMALL_STATE(1625)] = 37714, + [SMALL_STATE(1626)] = 37771, + [SMALL_STATE(1627)] = 37866, + [SMALL_STATE(1628)] = 37925, + [SMALL_STATE(1629)] = 38020, + [SMALL_STATE(1630)] = 38115, + [SMALL_STATE(1631)] = 38210, + [SMALL_STATE(1632)] = 38267, + [SMALL_STATE(1633)] = 38324, + [SMALL_STATE(1634)] = 38419, + [SMALL_STATE(1635)] = 38474, + [SMALL_STATE(1636)] = 38529, + [SMALL_STATE(1637)] = 38624, + [SMALL_STATE(1638)] = 38681, + [SMALL_STATE(1639)] = 38737, + [SMALL_STATE(1640)] = 38823, + [SMALL_STATE(1641)] = 38911, + [SMALL_STATE(1642)] = 38965, + [SMALL_STATE(1643)] = 39019, + [SMALL_STATE(1644)] = 39073, + [SMALL_STATE(1645)] = 39129, + [SMALL_STATE(1646)] = 39221, + [SMALL_STATE(1647)] = 39277, + [SMALL_STATE(1648)] = 39331, + [SMALL_STATE(1649)] = 39385, + [SMALL_STATE(1650)] = 39439, + [SMALL_STATE(1651)] = 39525, + [SMALL_STATE(1652)] = 39579, + [SMALL_STATE(1653)] = 39633, + [SMALL_STATE(1654)] = 39689, + [SMALL_STATE(1655)] = 39745, + [SMALL_STATE(1656)] = 39833, + [SMALL_STATE(1657)] = 39889, + [SMALL_STATE(1658)] = 39945, + [SMALL_STATE(1659)] = 40003, + [SMALL_STATE(1660)] = 40069, + [SMALL_STATE(1661)] = 40155, + [SMALL_STATE(1662)] = 40237, + [SMALL_STATE(1663)] = 40323, + [SMALL_STATE(1664)] = 40409, + [SMALL_STATE(1665)] = 40495, + [SMALL_STATE(1666)] = 40587, + [SMALL_STATE(1667)] = 40669, + [SMALL_STATE(1668)] = 40761, + [SMALL_STATE(1669)] = 40835, + [SMALL_STATE(1670)] = 40927, + [SMALL_STATE(1671)] = 41007, + [SMALL_STATE(1672)] = 41061, + [SMALL_STATE(1673)] = 41115, + [SMALL_STATE(1674)] = 41207, + [SMALL_STATE(1675)] = 41295, + [SMALL_STATE(1676)] = 41351, + [SMALL_STATE(1677)] = 41407, + [SMALL_STATE(1678)] = 41463, + [SMALL_STATE(1679)] = 41519, + [SMALL_STATE(1680)] = 41575, + [SMALL_STATE(1681)] = 41629, + [SMALL_STATE(1682)] = 41683, + [SMALL_STATE(1683)] = 41763, + [SMALL_STATE(1684)] = 41819, + [SMALL_STATE(1685)] = 41911, + [SMALL_STATE(1686)] = 41967, + [SMALL_STATE(1687)] = 42031, + [SMALL_STATE(1688)] = 42101, + [SMALL_STATE(1689)] = 42169, + [SMALL_STATE(1690)] = 42257, + [SMALL_STATE(1691)] = 42313, + [SMALL_STATE(1692)] = 42385, + [SMALL_STATE(1693)] = 42439, + [SMALL_STATE(1694)] = 42527, + [SMALL_STATE(1695)] = 42605, + [SMALL_STATE(1696)] = 42659, + [SMALL_STATE(1697)] = 42713, + [SMALL_STATE(1698)] = 42767, + [SMALL_STATE(1699)] = 42823, + [SMALL_STATE(1700)] = 42912, + [SMALL_STATE(1701)] = 43001, + [SMALL_STATE(1702)] = 43054, + [SMALL_STATE(1703)] = 43107, + [SMALL_STATE(1704)] = 43160, + [SMALL_STATE(1705)] = 43213, + [SMALL_STATE(1706)] = 43290, + [SMALL_STATE(1707)] = 43377, + [SMALL_STATE(1708)] = 43430, + [SMALL_STATE(1709)] = 43483, + [SMALL_STATE(1710)] = 43536, + [SMALL_STATE(1711)] = 43625, + [SMALL_STATE(1712)] = 43678, + [SMALL_STATE(1713)] = 43731, + [SMALL_STATE(1714)] = 43820, + [SMALL_STATE(1715)] = 43881, + [SMALL_STATE(1716)] = 43934, + [SMALL_STATE(1717)] = 43987, + [SMALL_STATE(1718)] = 44040, + [SMALL_STATE(1719)] = 44093, + [SMALL_STATE(1720)] = 44146, + [SMALL_STATE(1721)] = 44233, + [SMALL_STATE(1722)] = 44286, + [SMALL_STATE(1723)] = 44345, + [SMALL_STATE(1724)] = 44398, + [SMALL_STATE(1725)] = 44457, + [SMALL_STATE(1726)] = 44544, + [SMALL_STATE(1727)] = 44597, + [SMALL_STATE(1728)] = 44684, + [SMALL_STATE(1729)] = 44737, + [SMALL_STATE(1730)] = 44790, + [SMALL_STATE(1731)] = 44843, + [SMALL_STATE(1732)] = 44930, + [SMALL_STATE(1733)] = 44989, + [SMALL_STATE(1734)] = 45042, + [SMALL_STATE(1735)] = 45095, + [SMALL_STATE(1736)] = 45148, + [SMALL_STATE(1737)] = 45201, + [SMALL_STATE(1738)] = 45254, + [SMALL_STATE(1739)] = 45335, + [SMALL_STATE(1740)] = 45420, + [SMALL_STATE(1741)] = 45507, + [SMALL_STATE(1742)] = 45592, + [SMALL_STATE(1743)] = 45655, + [SMALL_STATE(1744)] = 45724, + [SMALL_STATE(1745)] = 45791, + [SMALL_STATE(1746)] = 45862, + [SMALL_STATE(1747)] = 45939, + [SMALL_STATE(1748)] = 46018, + [SMALL_STATE(1749)] = 46083, + [SMALL_STATE(1750)] = 46168, + [SMALL_STATE(1751)] = 46253, + [SMALL_STATE(1752)] = 46326, + [SMALL_STATE(1753)] = 46407, + [SMALL_STATE(1754)] = 46460, + [SMALL_STATE(1755)] = 46513, + [SMALL_STATE(1756)] = 46566, + [SMALL_STATE(1757)] = 46619, + [SMALL_STATE(1758)] = 46672, + [SMALL_STATE(1759)] = 46725, + [SMALL_STATE(1760)] = 46812, + [SMALL_STATE(1761)] = 46899, + [SMALL_STATE(1762)] = 46986, + [SMALL_STATE(1763)] = 47039, + [SMALL_STATE(1764)] = 47124, + [SMALL_STATE(1765)] = 47177, + [SMALL_STATE(1766)] = 47230, + [SMALL_STATE(1767)] = 47283, + [SMALL_STATE(1768)] = 47370, + [SMALL_STATE(1769)] = 47423, + [SMALL_STATE(1770)] = 47508, + [SMALL_STATE(1771)] = 47561, + [SMALL_STATE(1772)] = 47614, + [SMALL_STATE(1773)] = 47667, + [SMALL_STATE(1774)] = 47720, + [SMALL_STATE(1775)] = 47773, + [SMALL_STATE(1776)] = 47826, + [SMALL_STATE(1777)] = 47879, + [SMALL_STATE(1778)] = 47932, + [SMALL_STATE(1779)] = 47985, + [SMALL_STATE(1780)] = 48038, + [SMALL_STATE(1781)] = 48091, + [SMALL_STATE(1782)] = 48144, + [SMALL_STATE(1783)] = 48197, + [SMALL_STATE(1784)] = 48250, + [SMALL_STATE(1785)] = 48303, + [SMALL_STATE(1786)] = 48356, + [SMALL_STATE(1787)] = 48445, + [SMALL_STATE(1788)] = 48498, + [SMALL_STATE(1789)] = 48551, + [SMALL_STATE(1790)] = 48604, + [SMALL_STATE(1791)] = 48657, + [SMALL_STATE(1792)] = 48710, + [SMALL_STATE(1793)] = 48763, + [SMALL_STATE(1794)] = 48816, + [SMALL_STATE(1795)] = 48903, + [SMALL_STATE(1796)] = 48988, + [SMALL_STATE(1797)] = 49041, + [SMALL_STATE(1798)] = 49094, + [SMALL_STATE(1799)] = 49147, + [SMALL_STATE(1800)] = 49232, + [SMALL_STATE(1801)] = 49285, + [SMALL_STATE(1802)] = 49338, + [SMALL_STATE(1803)] = 49391, + [SMALL_STATE(1804)] = 49478, + [SMALL_STATE(1805)] = 49531, + [SMALL_STATE(1806)] = 49594, + [SMALL_STATE(1807)] = 49663, + [SMALL_STATE(1808)] = 49730, + [SMALL_STATE(1809)] = 49801, + [SMALL_STATE(1810)] = 49878, + [SMALL_STATE(1811)] = 49957, + [SMALL_STATE(1812)] = 50022, + [SMALL_STATE(1813)] = 50107, + [SMALL_STATE(1814)] = 50192, + [SMALL_STATE(1815)] = 50265, + [SMALL_STATE(1816)] = 50346, + [SMALL_STATE(1817)] = 50399, + [SMALL_STATE(1818)] = 50452, + [SMALL_STATE(1819)] = 50541, + [SMALL_STATE(1820)] = 50594, + [SMALL_STATE(1821)] = 50647, + [SMALL_STATE(1822)] = 50734, + [SMALL_STATE(1823)] = 50787, + [SMALL_STATE(1824)] = 50840, + [SMALL_STATE(1825)] = 50893, + [SMALL_STATE(1826)] = 50946, + [SMALL_STATE(1827)] = 50999, + [SMALL_STATE(1828)] = 51052, + [SMALL_STATE(1829)] = 51105, + [SMALL_STATE(1830)] = 51158, + [SMALL_STATE(1831)] = 51211, + [SMALL_STATE(1832)] = 51264, + [SMALL_STATE(1833)] = 51317, + [SMALL_STATE(1834)] = 51370, + [SMALL_STATE(1835)] = 51423, + [SMALL_STATE(1836)] = 51476, + [SMALL_STATE(1837)] = 51529, + [SMALL_STATE(1838)] = 51582, + [SMALL_STATE(1839)] = 51669, + [SMALL_STATE(1840)] = 51722, + [SMALL_STATE(1841)] = 51775, + [SMALL_STATE(1842)] = 51862, + [SMALL_STATE(1843)] = 51915, + [SMALL_STATE(1844)] = 51968, + [SMALL_STATE(1845)] = 52055, + [SMALL_STATE(1846)] = 52144, + [SMALL_STATE(1847)] = 52197, + [SMALL_STATE(1848)] = 52250, + [SMALL_STATE(1849)] = 52303, + [SMALL_STATE(1850)] = 52356, + [SMALL_STATE(1851)] = 52409, + [SMALL_STATE(1852)] = 52462, + [SMALL_STATE(1853)] = 52515, + [SMALL_STATE(1854)] = 52568, + [SMALL_STATE(1855)] = 52657, + [SMALL_STATE(1856)] = 52710, + [SMALL_STATE(1857)] = 52799, + [SMALL_STATE(1858)] = 52852, + [SMALL_STATE(1859)] = 52941, + [SMALL_STATE(1860)] = 53030, + [SMALL_STATE(1861)] = 53115, + [SMALL_STATE(1862)] = 53174, + [SMALL_STATE(1863)] = 53263, + [SMALL_STATE(1864)] = 53352, + [SMALL_STATE(1865)] = 53405, + [SMALL_STATE(1866)] = 53494, + [SMALL_STATE(1867)] = 53547, + [SMALL_STATE(1868)] = 53636, + [SMALL_STATE(1869)] = 53725, + [SMALL_STATE(1870)] = 53814, + [SMALL_STATE(1871)] = 53903, + [SMALL_STATE(1872)] = 53980, + [SMALL_STATE(1873)] = 54069, + [SMALL_STATE(1874)] = 54158, + [SMALL_STATE(1875)] = 54245, + [SMALL_STATE(1876)] = 54332, + [SMALL_STATE(1877)] = 54421, + [SMALL_STATE(1878)] = 54510, + [SMALL_STATE(1879)] = 54563, + [SMALL_STATE(1880)] = 54652, + [SMALL_STATE(1881)] = 54741, + [SMALL_STATE(1882)] = 54830, + [SMALL_STATE(1883)] = 54919, + [SMALL_STATE(1884)] = 54972, + [SMALL_STATE(1885)] = 55053, + [SMALL_STATE(1886)] = 55138, + [SMALL_STATE(1887)] = 55227, + [SMALL_STATE(1888)] = 55312, + [SMALL_STATE(1889)] = 55397, + [SMALL_STATE(1890)] = 55486, + [SMALL_STATE(1891)] = 55539, + [SMALL_STATE(1892)] = 55592, + [SMALL_STATE(1893)] = 55681, + [SMALL_STATE(1894)] = 55770, + [SMALL_STATE(1895)] = 55859, + [SMALL_STATE(1896)] = 55948, + [SMALL_STATE(1897)] = 56037, + [SMALL_STATE(1898)] = 56126, + [SMALL_STATE(1899)] = 56215, + [SMALL_STATE(1900)] = 56304, + [SMALL_STATE(1901)] = 56393, + [SMALL_STATE(1902)] = 56482, + [SMALL_STATE(1903)] = 56571, + [SMALL_STATE(1904)] = 56660, + [SMALL_STATE(1905)] = 56749, + [SMALL_STATE(1906)] = 56838, + [SMALL_STATE(1907)] = 56927, + [SMALL_STATE(1908)] = 57016, + [SMALL_STATE(1909)] = 57105, + [SMALL_STATE(1910)] = 57194, + [SMALL_STATE(1911)] = 57283, + [SMALL_STATE(1912)] = 57372, + [SMALL_STATE(1913)] = 57461, + [SMALL_STATE(1914)] = 57548, + [SMALL_STATE(1915)] = 57601, + [SMALL_STATE(1916)] = 57690, + [SMALL_STATE(1917)] = 57743, + [SMALL_STATE(1918)] = 57829, + [SMALL_STATE(1919)] = 57915, + [SMALL_STATE(1920)] = 58001, + [SMALL_STATE(1921)] = 58087, + [SMALL_STATE(1922)] = 58173, + [SMALL_STATE(1923)] = 58259, + [SMALL_STATE(1924)] = 58343, + [SMALL_STATE(1925)] = 58429, + [SMALL_STATE(1926)] = 58515, + [SMALL_STATE(1927)] = 58601, + [SMALL_STATE(1928)] = 58687, + [SMALL_STATE(1929)] = 58773, + [SMALL_STATE(1930)] = 58859, + [SMALL_STATE(1931)] = 58945, + [SMALL_STATE(1932)] = 59031, + [SMALL_STATE(1933)] = 59117, + [SMALL_STATE(1934)] = 59203, + [SMALL_STATE(1935)] = 59289, + [SMALL_STATE(1936)] = 59375, + [SMALL_STATE(1937)] = 59461, + [SMALL_STATE(1938)] = 59535, + [SMALL_STATE(1939)] = 59609, + [SMALL_STATE(1940)] = 59695, + [SMALL_STATE(1941)] = 59781, + [SMALL_STATE(1942)] = 59867, + [SMALL_STATE(1943)] = 59953, + [SMALL_STATE(1944)] = 60039, + [SMALL_STATE(1945)] = 60125, + [SMALL_STATE(1946)] = 60211, + [SMALL_STATE(1947)] = 60285, + [SMALL_STATE(1948)] = 60371, + [SMALL_STATE(1949)] = 60457, + [SMALL_STATE(1950)] = 60531, + [SMALL_STATE(1951)] = 60605, + [SMALL_STATE(1952)] = 60691, + [SMALL_STATE(1953)] = 60777, + [SMALL_STATE(1954)] = 60861, + [SMALL_STATE(1955)] = 60947, + [SMALL_STATE(1956)] = 61033, + [SMALL_STATE(1957)] = 61108, + [SMALL_STATE(1958)] = 61183, + [SMALL_STATE(1959)] = 61258, + [SMALL_STATE(1960)] = 61333, + [SMALL_STATE(1961)] = 61408, + [SMALL_STATE(1962)] = 61483, + [SMALL_STATE(1963)] = 61558, + [SMALL_STATE(1964)] = 61633, + [SMALL_STATE(1965)] = 61681, + [SMALL_STATE(1966)] = 61729, + [SMALL_STATE(1967)] = 61777, + [SMALL_STATE(1968)] = 61839, + [SMALL_STATE(1969)] = 61901, + [SMALL_STATE(1970)] = 61963, + [SMALL_STATE(1971)] = 62025, + [SMALL_STATE(1972)] = 62087, + [SMALL_STATE(1973)] = 62149, + [SMALL_STATE(1974)] = 62211, + [SMALL_STATE(1975)] = 62273, + [SMALL_STATE(1976)] = 62335, + [SMALL_STATE(1977)] = 62394, + [SMALL_STATE(1978)] = 62453, + [SMALL_STATE(1979)] = 62490, + [SMALL_STATE(1980)] = 62527, + [SMALL_STATE(1981)] = 62575, + [SMALL_STATE(1982)] = 62612, + [SMALL_STATE(1983)] = 62649, + [SMALL_STATE(1984)] = 62686, + [SMALL_STATE(1985)] = 62731, + [SMALL_STATE(1986)] = 62768, + [SMALL_STATE(1987)] = 62813, + [SMALL_STATE(1988)] = 62866, + [SMALL_STATE(1989)] = 62911, + [SMALL_STATE(1990)] = 62945, + [SMALL_STATE(1991)] = 62985, + [SMALL_STATE(1992)] = 63021, + [SMALL_STATE(1993)] = 63061, + [SMALL_STATE(1994)] = 63097, + [SMALL_STATE(1995)] = 63131, + [SMALL_STATE(1996)] = 63167, + [SMALL_STATE(1997)] = 63201, + [SMALL_STATE(1998)] = 63241, + [SMALL_STATE(1999)] = 63277, + [SMALL_STATE(2000)] = 63317, + [SMALL_STATE(2001)] = 63351, + [SMALL_STATE(2002)] = 63384, + [SMALL_STATE(2003)] = 63415, + [SMALL_STATE(2004)] = 63478, + [SMALL_STATE(2005)] = 63533, + [SMALL_STATE(2006)] = 63566, + [SMALL_STATE(2007)] = 63617, + [SMALL_STATE(2008)] = 63650, + [SMALL_STATE(2009)] = 63713, + [SMALL_STATE(2010)] = 63746, + [SMALL_STATE(2011)] = 63793, + [SMALL_STATE(2012)] = 63825, + [SMALL_STATE(2013)] = 63869, + [SMALL_STATE(2014)] = 63901, + [SMALL_STATE(2015)] = 63933, + [SMALL_STATE(2016)] = 63977, + [SMALL_STATE(2017)] = 64009, + [SMALL_STATE(2018)] = 64042, + [SMALL_STATE(2019)] = 64073, + [SMALL_STATE(2020)] = 64126, + [SMALL_STATE(2021)] = 64159, + [SMALL_STATE(2022)] = 64188, + [SMALL_STATE(2023)] = 64221, + [SMALL_STATE(2024)] = 64250, + [SMALL_STATE(2025)] = 64279, + [SMALL_STATE(2026)] = 64310, + [SMALL_STATE(2027)] = 64341, + [SMALL_STATE(2028)] = 64370, + [SMALL_STATE(2029)] = 64403, + [SMALL_STATE(2030)] = 64434, + [SMALL_STATE(2031)] = 64463, + [SMALL_STATE(2032)] = 64492, + [SMALL_STATE(2033)] = 64533, + [SMALL_STATE(2034)] = 64564, + [SMALL_STATE(2035)] = 64597, + [SMALL_STATE(2036)] = 64626, + [SMALL_STATE(2037)] = 64657, + [SMALL_STATE(2038)] = 64702, + [SMALL_STATE(2039)] = 64733, + [SMALL_STATE(2040)] = 64764, + [SMALL_STATE(2041)] = 64793, + [SMALL_STATE(2042)] = 64822, + [SMALL_STATE(2043)] = 64855, + [SMALL_STATE(2044)] = 64886, + [SMALL_STATE(2045)] = 64939, + [SMALL_STATE(2046)] = 64968, + [SMALL_STATE(2047)] = 64997, + [SMALL_STATE(2048)] = 65026, + [SMALL_STATE(2049)] = 65081, + [SMALL_STATE(2050)] = 65109, + [SMALL_STATE(2051)] = 65137, + [SMALL_STATE(2052)] = 65165, + [SMALL_STATE(2053)] = 65193, + [SMALL_STATE(2054)] = 65221, + [SMALL_STATE(2055)] = 65249, + [SMALL_STATE(2056)] = 65277, + [SMALL_STATE(2057)] = 65305, + [SMALL_STATE(2058)] = 65333, + [SMALL_STATE(2059)] = 65361, + [SMALL_STATE(2060)] = 65389, + [SMALL_STATE(2061)] = 65417, + [SMALL_STATE(2062)] = 65445, + [SMALL_STATE(2063)] = 65473, + [SMALL_STATE(2064)] = 65501, + [SMALL_STATE(2065)] = 65529, + [SMALL_STATE(2066)] = 65557, + [SMALL_STATE(2067)] = 65585, + [SMALL_STATE(2068)] = 65613, + [SMALL_STATE(2069)] = 65641, + [SMALL_STATE(2070)] = 65669, + [SMALL_STATE(2071)] = 65697, + [SMALL_STATE(2072)] = 65725, + [SMALL_STATE(2073)] = 65753, + [SMALL_STATE(2074)] = 65781, + [SMALL_STATE(2075)] = 65809, + [SMALL_STATE(2076)] = 65837, + [SMALL_STATE(2077)] = 65865, + [SMALL_STATE(2078)] = 65893, + [SMALL_STATE(2079)] = 65921, + [SMALL_STATE(2080)] = 65949, + [SMALL_STATE(2081)] = 65977, + [SMALL_STATE(2082)] = 66005, + [SMALL_STATE(2083)] = 66033, + [SMALL_STATE(2084)] = 66076, + [SMALL_STATE(2085)] = 66111, + [SMALL_STATE(2086)] = 66140, + [SMALL_STATE(2087)] = 66171, + [SMALL_STATE(2088)] = 66200, + [SMALL_STATE(2089)] = 66229, + [SMALL_STATE(2090)] = 66261, + [SMALL_STATE(2091)] = 66305, + [SMALL_STATE(2092)] = 66337, + [SMALL_STATE(2093)] = 66369, + [SMALL_STATE(2094)] = 66401, + [SMALL_STATE(2095)] = 66433, + [SMALL_STATE(2096)] = 66461, + [SMALL_STATE(2097)] = 66493, + [SMALL_STATE(2098)] = 66525, + [SMALL_STATE(2099)] = 66555, + [SMALL_STATE(2100)] = 66587, + [SMALL_STATE(2101)] = 66619, + [SMALL_STATE(2102)] = 66651, + [SMALL_STATE(2103)] = 66697, + [SMALL_STATE(2104)] = 66729, + [SMALL_STATE(2105)] = 66761, + [SMALL_STATE(2106)] = 66804, + [SMALL_STATE(2107)] = 66847, + [SMALL_STATE(2108)] = 66878, + [SMALL_STATE(2109)] = 66913, + [SMALL_STATE(2110)] = 66956, + [SMALL_STATE(2111)] = 66999, + [SMALL_STATE(2112)] = 67042, + [SMALL_STATE(2113)] = 67073, + [SMALL_STATE(2114)] = 67102, + [SMALL_STATE(2115)] = 67137, + [SMALL_STATE(2116)] = 67168, + [SMALL_STATE(2117)] = 67199, + [SMALL_STATE(2118)] = 67242, + [SMALL_STATE(2119)] = 67271, + [SMALL_STATE(2120)] = 67295, + [SMALL_STATE(2121)] = 67333, + [SMALL_STATE(2122)] = 67357, + [SMALL_STATE(2123)] = 67381, + [SMALL_STATE(2124)] = 67409, + [SMALL_STATE(2125)] = 67437, + [SMALL_STATE(2126)] = 67465, + [SMALL_STATE(2127)] = 67493, + [SMALL_STATE(2128)] = 67533, + [SMALL_STATE(2129)] = 67565, + [SMALL_STATE(2130)] = 67605, + [SMALL_STATE(2131)] = 67643, + [SMALL_STATE(2132)] = 67681, + [SMALL_STATE(2133)] = 67709, + [SMALL_STATE(2134)] = 67737, + [SMALL_STATE(2135)] = 67765, + [SMALL_STATE(2136)] = 67793, + [SMALL_STATE(2137)] = 67821, + [SMALL_STATE(2138)] = 67853, + [SMALL_STATE(2139)] = 67893, + [SMALL_STATE(2140)] = 67931, + [SMALL_STATE(2141)] = 67959, + [SMALL_STATE(2142)] = 67987, + [SMALL_STATE(2143)] = 68019, + [SMALL_STATE(2144)] = 68051, + [SMALL_STATE(2145)] = 68075, + [SMALL_STATE(2146)] = 68099, + [SMALL_STATE(2147)] = 68127, + [SMALL_STATE(2148)] = 68155, + [SMALL_STATE(2149)] = 68183, + [SMALL_STATE(2150)] = 68211, + [SMALL_STATE(2151)] = 68251, + [SMALL_STATE(2152)] = 68291, + [SMALL_STATE(2153)] = 68331, + [SMALL_STATE(2154)] = 68371, + [SMALL_STATE(2155)] = 68411, + [SMALL_STATE(2156)] = 68451, + [SMALL_STATE(2157)] = 68489, + [SMALL_STATE(2158)] = 68527, + [SMALL_STATE(2159)] = 68567, + [SMALL_STATE(2160)] = 68605, + [SMALL_STATE(2161)] = 68643, + [SMALL_STATE(2162)] = 68681, + [SMALL_STATE(2163)] = 68709, + [SMALL_STATE(2164)] = 68732, + [SMALL_STATE(2165)] = 68761, + [SMALL_STATE(2166)] = 68784, + [SMALL_STATE(2167)] = 68825, + [SMALL_STATE(2168)] = 68866, + [SMALL_STATE(2169)] = 68895, + [SMALL_STATE(2170)] = 68932, + [SMALL_STATE(2171)] = 68969, + [SMALL_STATE(2172)] = 69006, + [SMALL_STATE(2173)] = 69029, + [SMALL_STATE(2174)] = 69052, + [SMALL_STATE(2175)] = 69075, + [SMALL_STATE(2176)] = 69104, + [SMALL_STATE(2177)] = 69133, + [SMALL_STATE(2178)] = 69156, + [SMALL_STATE(2179)] = 69185, + [SMALL_STATE(2180)] = 69208, + [SMALL_STATE(2181)] = 69231, + [SMALL_STATE(2182)] = 69254, + [SMALL_STATE(2183)] = 69277, + [SMALL_STATE(2184)] = 69300, + [SMALL_STATE(2185)] = 69323, + [SMALL_STATE(2186)] = 69346, + [SMALL_STATE(2187)] = 69369, + [SMALL_STATE(2188)] = 69404, + [SMALL_STATE(2189)] = 69427, + [SMALL_STATE(2190)] = 69450, + [SMALL_STATE(2191)] = 69473, + [SMALL_STATE(2192)] = 69496, + [SMALL_STATE(2193)] = 69519, + [SMALL_STATE(2194)] = 69542, + [SMALL_STATE(2195)] = 69571, + [SMALL_STATE(2196)] = 69594, + [SMALL_STATE(2197)] = 69617, + [SMALL_STATE(2198)] = 69640, + [SMALL_STATE(2199)] = 69663, + [SMALL_STATE(2200)] = 69686, + [SMALL_STATE(2201)] = 69709, + [SMALL_STATE(2202)] = 69732, + [SMALL_STATE(2203)] = 69755, + [SMALL_STATE(2204)] = 69788, + [SMALL_STATE(2205)] = 69829, + [SMALL_STATE(2206)] = 69852, + [SMALL_STATE(2207)] = 69875, + [SMALL_STATE(2208)] = 69916, + [SMALL_STATE(2209)] = 69951, + [SMALL_STATE(2210)] = 69974, + [SMALL_STATE(2211)] = 70003, + [SMALL_STATE(2212)] = 70026, + [SMALL_STATE(2213)] = 70061, + [SMALL_STATE(2214)] = 70084, + [SMALL_STATE(2215)] = 70107, + [SMALL_STATE(2216)] = 70130, + [SMALL_STATE(2217)] = 70167, + [SMALL_STATE(2218)] = 70190, + [SMALL_STATE(2219)] = 70228, + [SMALL_STATE(2220)] = 70254, + [SMALL_STATE(2221)] = 70286, + [SMALL_STATE(2222)] = 70324, + [SMALL_STATE(2223)] = 70362, + [SMALL_STATE(2224)] = 70394, + [SMALL_STATE(2225)] = 70432, + [SMALL_STATE(2226)] = 70458, + [SMALL_STATE(2227)] = 70480, + [SMALL_STATE(2228)] = 70506, + [SMALL_STATE(2229)] = 70544, + [SMALL_STATE(2230)] = 70576, + [SMALL_STATE(2231)] = 70614, + [SMALL_STATE(2232)] = 70642, + [SMALL_STATE(2233)] = 70668, + [SMALL_STATE(2234)] = 70700, + [SMALL_STATE(2235)] = 70736, + [SMALL_STATE(2236)] = 70762, + [SMALL_STATE(2237)] = 70800, + [SMALL_STATE(2238)] = 70832, + [SMALL_STATE(2239)] = 70864, + [SMALL_STATE(2240)] = 70902, + [SMALL_STATE(2241)] = 70928, + [SMALL_STATE(2242)] = 70962, + [SMALL_STATE(2243)] = 70996, + [SMALL_STATE(2244)] = 71034, + [SMALL_STATE(2245)] = 71064, + [SMALL_STATE(2246)] = 71102, + [SMALL_STATE(2247)] = 71140, + [SMALL_STATE(2248)] = 71178, + [SMALL_STATE(2249)] = 71202, + [SMALL_STATE(2250)] = 71234, + [SMALL_STATE(2251)] = 71272, + [SMALL_STATE(2252)] = 71296, + [SMALL_STATE(2253)] = 71320, + [SMALL_STATE(2254)] = 71358, + [SMALL_STATE(2255)] = 71390, + [SMALL_STATE(2256)] = 71422, + [SMALL_STATE(2257)] = 71446, + [SMALL_STATE(2258)] = 71478, + [SMALL_STATE(2259)] = 71504, + [SMALL_STATE(2260)] = 71542, + [SMALL_STATE(2261)] = 71574, + [SMALL_STATE(2262)] = 71598, + [SMALL_STATE(2263)] = 71630, + [SMALL_STATE(2264)] = 71656, + [SMALL_STATE(2265)] = 71688, + [SMALL_STATE(2266)] = 71726, + [SMALL_STATE(2267)] = 71761, + [SMALL_STATE(2268)] = 71796, + [SMALL_STATE(2269)] = 71831, + [SMALL_STATE(2270)] = 71866, + [SMALL_STATE(2271)] = 71901, + [SMALL_STATE(2272)] = 71924, + [SMALL_STATE(2273)] = 71945, + [SMALL_STATE(2274)] = 71980, + [SMALL_STATE(2275)] = 72015, + [SMALL_STATE(2276)] = 72050, + [SMALL_STATE(2277)] = 72071, + [SMALL_STATE(2278)] = 72092, + [SMALL_STATE(2279)] = 72113, + [SMALL_STATE(2280)] = 72148, + [SMALL_STATE(2281)] = 72183, + [SMALL_STATE(2282)] = 72218, + [SMALL_STATE(2283)] = 72253, + [SMALL_STATE(2284)] = 72288, + [SMALL_STATE(2285)] = 72321, + [SMALL_STATE(2286)] = 72356, + [SMALL_STATE(2287)] = 72389, + [SMALL_STATE(2288)] = 72424, + [SMALL_STATE(2289)] = 72459, + [SMALL_STATE(2290)] = 72482, + [SMALL_STATE(2291)] = 72517, + [SMALL_STATE(2292)] = 72552, + [SMALL_STATE(2293)] = 72587, + [SMALL_STATE(2294)] = 72622, + [SMALL_STATE(2295)] = 72655, + [SMALL_STATE(2296)] = 72690, + [SMALL_STATE(2297)] = 72725, + [SMALL_STATE(2298)] = 72760, + [SMALL_STATE(2299)] = 72783, + [SMALL_STATE(2300)] = 72816, + [SMALL_STATE(2301)] = 72851, + [SMALL_STATE(2302)] = 72874, + [SMALL_STATE(2303)] = 72909, + [SMALL_STATE(2304)] = 72944, + [SMALL_STATE(2305)] = 72979, + [SMALL_STATE(2306)] = 73014, + [SMALL_STATE(2307)] = 73049, + [SMALL_STATE(2308)] = 73084, + [SMALL_STATE(2309)] = 73119, + [SMALL_STATE(2310)] = 73152, + [SMALL_STATE(2311)] = 73187, + [SMALL_STATE(2312)] = 73210, + [SMALL_STATE(2313)] = 73245, + [SMALL_STATE(2314)] = 73280, + [SMALL_STATE(2315)] = 73315, + [SMALL_STATE(2316)] = 73336, + [SMALL_STATE(2317)] = 73371, + [SMALL_STATE(2318)] = 73406, + [SMALL_STATE(2319)] = 73441, + [SMALL_STATE(2320)] = 73464, + [SMALL_STATE(2321)] = 73487, + [SMALL_STATE(2322)] = 73522, + [SMALL_STATE(2323)] = 73545, + [SMALL_STATE(2324)] = 73580, + [SMALL_STATE(2325)] = 73612, + [SMALL_STATE(2326)] = 73638, + [SMALL_STATE(2327)] = 73670, + [SMALL_STATE(2328)] = 73702, + [SMALL_STATE(2329)] = 73734, + [SMALL_STATE(2330)] = 73766, + [SMALL_STATE(2331)] = 73798, + [SMALL_STATE(2332)] = 73830, + [SMALL_STATE(2333)] = 73862, + [SMALL_STATE(2334)] = 73894, + [SMALL_STATE(2335)] = 73924, + [SMALL_STATE(2336)] = 73952, + [SMALL_STATE(2337)] = 73978, + [SMALL_STATE(2338)] = 74008, + [SMALL_STATE(2339)] = 74040, + [SMALL_STATE(2340)] = 74072, + [SMALL_STATE(2341)] = 74104, + [SMALL_STATE(2342)] = 74130, + [SMALL_STATE(2343)] = 74162, + [SMALL_STATE(2344)] = 74194, + [SMALL_STATE(2345)] = 74222, + [SMALL_STATE(2346)] = 74252, + [SMALL_STATE(2347)] = 74284, + [SMALL_STATE(2348)] = 74316, + [SMALL_STATE(2349)] = 74348, + [SMALL_STATE(2350)] = 74378, + [SMALL_STATE(2351)] = 74408, + [SMALL_STATE(2352)] = 74440, + [SMALL_STATE(2353)] = 74470, + [SMALL_STATE(2354)] = 74502, + [SMALL_STATE(2355)] = 74534, + [SMALL_STATE(2356)] = 74564, + [SMALL_STATE(2357)] = 74590, + [SMALL_STATE(2358)] = 74622, + [SMALL_STATE(2359)] = 74654, + [SMALL_STATE(2360)] = 74686, + [SMALL_STATE(2361)] = 74718, + [SMALL_STATE(2362)] = 74750, + [SMALL_STATE(2363)] = 74782, + [SMALL_STATE(2364)] = 74814, + [SMALL_STATE(2365)] = 74842, + [SMALL_STATE(2366)] = 74872, + [SMALL_STATE(2367)] = 74904, + [SMALL_STATE(2368)] = 74936, + [SMALL_STATE(2369)] = 74966, + [SMALL_STATE(2370)] = 74996, + [SMALL_STATE(2371)] = 75024, + [SMALL_STATE(2372)] = 75052, + [SMALL_STATE(2373)] = 75084, + [SMALL_STATE(2374)] = 75104, + [SMALL_STATE(2375)] = 75136, + [SMALL_STATE(2376)] = 75168, + [SMALL_STATE(2377)] = 75200, + [SMALL_STATE(2378)] = 75223, + [SMALL_STATE(2379)] = 75252, + [SMALL_STATE(2380)] = 75281, + [SMALL_STATE(2381)] = 75310, + [SMALL_STATE(2382)] = 75339, + [SMALL_STATE(2383)] = 75368, + [SMALL_STATE(2384)] = 75397, + [SMALL_STATE(2385)] = 75426, + [SMALL_STATE(2386)] = 75455, + [SMALL_STATE(2387)] = 75484, + [SMALL_STATE(2388)] = 75507, + [SMALL_STATE(2389)] = 75536, + [SMALL_STATE(2390)] = 75559, + [SMALL_STATE(2391)] = 75588, + [SMALL_STATE(2392)] = 75617, + [SMALL_STATE(2393)] = 75646, + [SMALL_STATE(2394)] = 75675, + [SMALL_STATE(2395)] = 75698, + [SMALL_STATE(2396)] = 75725, + [SMALL_STATE(2397)] = 75754, + [SMALL_STATE(2398)] = 75783, + [SMALL_STATE(2399)] = 75804, + [SMALL_STATE(2400)] = 75833, + [SMALL_STATE(2401)] = 75862, + [SMALL_STATE(2402)] = 75883, + [SMALL_STATE(2403)] = 75912, + [SMALL_STATE(2404)] = 75941, + [SMALL_STATE(2405)] = 75970, + [SMALL_STATE(2406)] = 75999, + [SMALL_STATE(2407)] = 76028, + [SMALL_STATE(2408)] = 76057, + [SMALL_STATE(2409)] = 76086, + [SMALL_STATE(2410)] = 76115, + [SMALL_STATE(2411)] = 76144, + [SMALL_STATE(2412)] = 76167, + [SMALL_STATE(2413)] = 76190, + [SMALL_STATE(2414)] = 76209, + [SMALL_STATE(2415)] = 76238, + [SMALL_STATE(2416)] = 76267, + [SMALL_STATE(2417)] = 76296, + [SMALL_STATE(2418)] = 76325, + [SMALL_STATE(2419)] = 76354, + [SMALL_STATE(2420)] = 76383, + [SMALL_STATE(2421)] = 76412, + [SMALL_STATE(2422)] = 76433, + [SMALL_STATE(2423)] = 76454, + [SMALL_STATE(2424)] = 76483, + [SMALL_STATE(2425)] = 76512, + [SMALL_STATE(2426)] = 76541, + [SMALL_STATE(2427)] = 76562, + [SMALL_STATE(2428)] = 76591, + [SMALL_STATE(2429)] = 76612, + [SMALL_STATE(2430)] = 76635, + [SMALL_STATE(2431)] = 76658, + [SMALL_STATE(2432)] = 76687, + [SMALL_STATE(2433)] = 76716, + [SMALL_STATE(2434)] = 76745, + [SMALL_STATE(2435)] = 76772, + [SMALL_STATE(2436)] = 76801, + [SMALL_STATE(2437)] = 76830, + [SMALL_STATE(2438)] = 76859, + [SMALL_STATE(2439)] = 76886, + [SMALL_STATE(2440)] = 76913, + [SMALL_STATE(2441)] = 76934, + [SMALL_STATE(2442)] = 76957, + [SMALL_STATE(2443)] = 76982, + [SMALL_STATE(2444)] = 77005, + [SMALL_STATE(2445)] = 77032, + [SMALL_STATE(2446)] = 77059, + [SMALL_STATE(2447)] = 77088, + [SMALL_STATE(2448)] = 77111, + [SMALL_STATE(2449)] = 77134, + [SMALL_STATE(2450)] = 77159, + [SMALL_STATE(2451)] = 77182, + [SMALL_STATE(2452)] = 77203, + [SMALL_STATE(2453)] = 77232, + [SMALL_STATE(2454)] = 77261, + [SMALL_STATE(2455)] = 77290, + [SMALL_STATE(2456)] = 77319, + [SMALL_STATE(2457)] = 77344, + [SMALL_STATE(2458)] = 77373, + [SMALL_STATE(2459)] = 77394, + [SMALL_STATE(2460)] = 77423, + [SMALL_STATE(2461)] = 77448, + [SMALL_STATE(2462)] = 77477, + [SMALL_STATE(2463)] = 77506, + [SMALL_STATE(2464)] = 77535, + [SMALL_STATE(2465)] = 77564, + [SMALL_STATE(2466)] = 77593, + [SMALL_STATE(2467)] = 77622, + [SMALL_STATE(2468)] = 77651, + [SMALL_STATE(2469)] = 77680, + [SMALL_STATE(2470)] = 77709, + [SMALL_STATE(2471)] = 77732, + [SMALL_STATE(2472)] = 77755, + [SMALL_STATE(2473)] = 77778, + [SMALL_STATE(2474)] = 77807, + [SMALL_STATE(2475)] = 77825, + [SMALL_STATE(2476)] = 77843, + [SMALL_STATE(2477)] = 77869, + [SMALL_STATE(2478)] = 77893, + [SMALL_STATE(2479)] = 77919, + [SMALL_STATE(2480)] = 77941, + [SMALL_STATE(2481)] = 77967, + [SMALL_STATE(2482)] = 77991, + [SMALL_STATE(2483)] = 78015, + [SMALL_STATE(2484)] = 78041, + [SMALL_STATE(2485)] = 78065, + [SMALL_STATE(2486)] = 78091, + [SMALL_STATE(2487)] = 78117, + [SMALL_STATE(2488)] = 78141, + [SMALL_STATE(2489)] = 78167, + [SMALL_STATE(2490)] = 78193, + [SMALL_STATE(2491)] = 78211, + [SMALL_STATE(2492)] = 78229, + [SMALL_STATE(2493)] = 78255, + [SMALL_STATE(2494)] = 78281, + [SMALL_STATE(2495)] = 78307, + [SMALL_STATE(2496)] = 78333, + [SMALL_STATE(2497)] = 78359, + [SMALL_STATE(2498)] = 78385, + [SMALL_STATE(2499)] = 78407, + [SMALL_STATE(2500)] = 78433, + [SMALL_STATE(2501)] = 78451, + [SMALL_STATE(2502)] = 78469, + [SMALL_STATE(2503)] = 78493, + [SMALL_STATE(2504)] = 78511, + [SMALL_STATE(2505)] = 78531, + [SMALL_STATE(2506)] = 78557, + [SMALL_STATE(2507)] = 78581, + [SMALL_STATE(2508)] = 78607, + [SMALL_STATE(2509)] = 78625, + [SMALL_STATE(2510)] = 78643, + [SMALL_STATE(2511)] = 78669, + [SMALL_STATE(2512)] = 78695, + [SMALL_STATE(2513)] = 78717, + [SMALL_STATE(2514)] = 78741, + [SMALL_STATE(2515)] = 78767, + [SMALL_STATE(2516)] = 78793, + [SMALL_STATE(2517)] = 78819, + [SMALL_STATE(2518)] = 78843, + [SMALL_STATE(2519)] = 78867, + [SMALL_STATE(2520)] = 78893, + [SMALL_STATE(2521)] = 78919, + [SMALL_STATE(2522)] = 78937, + [SMALL_STATE(2523)] = 78961, + [SMALL_STATE(2524)] = 78983, + [SMALL_STATE(2525)] = 79003, + [SMALL_STATE(2526)] = 79021, + [SMALL_STATE(2527)] = 79043, + [SMALL_STATE(2528)] = 79061, + [SMALL_STATE(2529)] = 79085, + [SMALL_STATE(2530)] = 79109, + [SMALL_STATE(2531)] = 79127, + [SMALL_STATE(2532)] = 79145, + [SMALL_STATE(2533)] = 79171, + [SMALL_STATE(2534)] = 79191, + [SMALL_STATE(2535)] = 79217, + [SMALL_STATE(2536)] = 79241, + [SMALL_STATE(2537)] = 79267, + [SMALL_STATE(2538)] = 79285, + [SMALL_STATE(2539)] = 79311, + [SMALL_STATE(2540)] = 79329, + [SMALL_STATE(2541)] = 79355, + [SMALL_STATE(2542)] = 79381, + [SMALL_STATE(2543)] = 79407, + [SMALL_STATE(2544)] = 79425, + [SMALL_STATE(2545)] = 79451, + [SMALL_STATE(2546)] = 79475, + [SMALL_STATE(2547)] = 79501, + [SMALL_STATE(2548)] = 79527, + [SMALL_STATE(2549)] = 79549, + [SMALL_STATE(2550)] = 79567, + [SMALL_STATE(2551)] = 79593, + [SMALL_STATE(2552)] = 79619, + [SMALL_STATE(2553)] = 79639, + [SMALL_STATE(2554)] = 79665, + [SMALL_STATE(2555)] = 79691, + [SMALL_STATE(2556)] = 79709, + [SMALL_STATE(2557)] = 79735, + [SMALL_STATE(2558)] = 79761, + [SMALL_STATE(2559)] = 79779, + [SMALL_STATE(2560)] = 79805, + [SMALL_STATE(2561)] = 79831, + [SMALL_STATE(2562)] = 79857, + [SMALL_STATE(2563)] = 79883, + [SMALL_STATE(2564)] = 79909, + [SMALL_STATE(2565)] = 79935, + [SMALL_STATE(2566)] = 79961, + [SMALL_STATE(2567)] = 79979, + [SMALL_STATE(2568)] = 79997, + [SMALL_STATE(2569)] = 80019, + [SMALL_STATE(2570)] = 80045, + [SMALL_STATE(2571)] = 80071, + [SMALL_STATE(2572)] = 80089, + [SMALL_STATE(2573)] = 80107, + [SMALL_STATE(2574)] = 80133, + [SMALL_STATE(2575)] = 80159, + [SMALL_STATE(2576)] = 80185, + [SMALL_STATE(2577)] = 80207, + [SMALL_STATE(2578)] = 80233, + [SMALL_STATE(2579)] = 80251, + [SMALL_STATE(2580)] = 80277, + [SMALL_STATE(2581)] = 80295, + [SMALL_STATE(2582)] = 80319, + [SMALL_STATE(2583)] = 80343, + [SMALL_STATE(2584)] = 80366, + [SMALL_STATE(2585)] = 80389, + [SMALL_STATE(2586)] = 80412, + [SMALL_STATE(2587)] = 80435, + [SMALL_STATE(2588)] = 80458, + [SMALL_STATE(2589)] = 80481, + [SMALL_STATE(2590)] = 80504, + [SMALL_STATE(2591)] = 80523, + [SMALL_STATE(2592)] = 80546, + [SMALL_STATE(2593)] = 80569, + [SMALL_STATE(2594)] = 80588, + [SMALL_STATE(2595)] = 80611, + [SMALL_STATE(2596)] = 80634, + [SMALL_STATE(2597)] = 80657, + [SMALL_STATE(2598)] = 80680, + [SMALL_STATE(2599)] = 80703, + [SMALL_STATE(2600)] = 80726, + [SMALL_STATE(2601)] = 80749, + [SMALL_STATE(2602)] = 80768, + [SMALL_STATE(2603)] = 80789, + [SMALL_STATE(2604)] = 80812, + [SMALL_STATE(2605)] = 80835, + [SMALL_STATE(2606)] = 80858, + [SMALL_STATE(2607)] = 80881, + [SMALL_STATE(2608)] = 80904, + [SMALL_STATE(2609)] = 80923, + [SMALL_STATE(2610)] = 80946, + [SMALL_STATE(2611)] = 80969, + [SMALL_STATE(2612)] = 80992, + [SMALL_STATE(2613)] = 81015, + [SMALL_STATE(2614)] = 81038, + [SMALL_STATE(2615)] = 81061, + [SMALL_STATE(2616)] = 81084, + [SMALL_STATE(2617)] = 81107, + [SMALL_STATE(2618)] = 81130, + [SMALL_STATE(2619)] = 81151, + [SMALL_STATE(2620)] = 81174, + [SMALL_STATE(2621)] = 81193, + [SMALL_STATE(2622)] = 81216, + [SMALL_STATE(2623)] = 81239, + [SMALL_STATE(2624)] = 81262, + [SMALL_STATE(2625)] = 81285, + [SMALL_STATE(2626)] = 81308, + [SMALL_STATE(2627)] = 81331, + [SMALL_STATE(2628)] = 81354, + [SMALL_STATE(2629)] = 81375, + [SMALL_STATE(2630)] = 81398, + [SMALL_STATE(2631)] = 81421, + [SMALL_STATE(2632)] = 81444, + [SMALL_STATE(2633)] = 81467, + [SMALL_STATE(2634)] = 81490, + [SMALL_STATE(2635)] = 81513, + [SMALL_STATE(2636)] = 81530, + [SMALL_STATE(2637)] = 81553, + [SMALL_STATE(2638)] = 81576, + [SMALL_STATE(2639)] = 81599, + [SMALL_STATE(2640)] = 81616, + [SMALL_STATE(2641)] = 81639, + [SMALL_STATE(2642)] = 81660, + [SMALL_STATE(2643)] = 81683, + [SMALL_STATE(2644)] = 81706, + [SMALL_STATE(2645)] = 81729, + [SMALL_STATE(2646)] = 81752, + [SMALL_STATE(2647)] = 81771, + [SMALL_STATE(2648)] = 81790, + [SMALL_STATE(2649)] = 81813, + [SMALL_STATE(2650)] = 81830, + [SMALL_STATE(2651)] = 81853, + [SMALL_STATE(2652)] = 81876, + [SMALL_STATE(2653)] = 81899, + [SMALL_STATE(2654)] = 81920, + [SMALL_STATE(2655)] = 81943, + [SMALL_STATE(2656)] = 81966, + [SMALL_STATE(2657)] = 81989, + [SMALL_STATE(2658)] = 82010, + [SMALL_STATE(2659)] = 82033, + [SMALL_STATE(2660)] = 82052, + [SMALL_STATE(2661)] = 82075, + [SMALL_STATE(2662)] = 82098, + [SMALL_STATE(2663)] = 82121, + [SMALL_STATE(2664)] = 82144, + [SMALL_STATE(2665)] = 82167, + [SMALL_STATE(2666)] = 82190, + [SMALL_STATE(2667)] = 82211, + [SMALL_STATE(2668)] = 82234, + [SMALL_STATE(2669)] = 82257, + [SMALL_STATE(2670)] = 82280, + [SMALL_STATE(2671)] = 82303, + [SMALL_STATE(2672)] = 82326, + [SMALL_STATE(2673)] = 82349, + [SMALL_STATE(2674)] = 82372, + [SMALL_STATE(2675)] = 82393, + [SMALL_STATE(2676)] = 82416, + [SMALL_STATE(2677)] = 82437, + [SMALL_STATE(2678)] = 82460, + [SMALL_STATE(2679)] = 82483, + [SMALL_STATE(2680)] = 82506, + [SMALL_STATE(2681)] = 82525, + [SMALL_STATE(2682)] = 82548, + [SMALL_STATE(2683)] = 82571, + [SMALL_STATE(2684)] = 82594, + [SMALL_STATE(2685)] = 82615, + [SMALL_STATE(2686)] = 82638, + [SMALL_STATE(2687)] = 82661, + [SMALL_STATE(2688)] = 82680, + [SMALL_STATE(2689)] = 82701, + [SMALL_STATE(2690)] = 82720, + [SMALL_STATE(2691)] = 82743, + [SMALL_STATE(2692)] = 82766, + [SMALL_STATE(2693)] = 82785, + [SMALL_STATE(2694)] = 82804, + [SMALL_STATE(2695)] = 82825, + [SMALL_STATE(2696)] = 82848, + [SMALL_STATE(2697)] = 82871, + [SMALL_STATE(2698)] = 82892, + [SMALL_STATE(2699)] = 82913, + [SMALL_STATE(2700)] = 82934, + [SMALL_STATE(2701)] = 82953, + [SMALL_STATE(2702)] = 82972, + [SMALL_STATE(2703)] = 82991, + [SMALL_STATE(2704)] = 83014, + [SMALL_STATE(2705)] = 83035, + [SMALL_STATE(2706)] = 83058, + [SMALL_STATE(2707)] = 83077, + [SMALL_STATE(2708)] = 83096, + [SMALL_STATE(2709)] = 83117, + [SMALL_STATE(2710)] = 83140, + [SMALL_STATE(2711)] = 83159, + [SMALL_STATE(2712)] = 83182, + [SMALL_STATE(2713)] = 83201, + [SMALL_STATE(2714)] = 83224, + [SMALL_STATE(2715)] = 83247, + [SMALL_STATE(2716)] = 83270, + [SMALL_STATE(2717)] = 83289, + [SMALL_STATE(2718)] = 83312, + [SMALL_STATE(2719)] = 83335, + [SMALL_STATE(2720)] = 83358, + [SMALL_STATE(2721)] = 83381, + [SMALL_STATE(2722)] = 83402, + [SMALL_STATE(2723)] = 83421, + [SMALL_STATE(2724)] = 83444, + [SMALL_STATE(2725)] = 83463, + [SMALL_STATE(2726)] = 83486, + [SMALL_STATE(2727)] = 83509, + [SMALL_STATE(2728)] = 83532, + [SMALL_STATE(2729)] = 83555, + [SMALL_STATE(2730)] = 83578, + [SMALL_STATE(2731)] = 83597, + [SMALL_STATE(2732)] = 83620, + [SMALL_STATE(2733)] = 83643, + [SMALL_STATE(2734)] = 83666, + [SMALL_STATE(2735)] = 83687, + [SMALL_STATE(2736)] = 83710, + [SMALL_STATE(2737)] = 83733, + [SMALL_STATE(2738)] = 83756, + [SMALL_STATE(2739)] = 83779, + [SMALL_STATE(2740)] = 83802, + [SMALL_STATE(2741)] = 83825, + [SMALL_STATE(2742)] = 83848, + [SMALL_STATE(2743)] = 83871, + [SMALL_STATE(2744)] = 83894, + [SMALL_STATE(2745)] = 83917, + [SMALL_STATE(2746)] = 83940, + [SMALL_STATE(2747)] = 83963, + [SMALL_STATE(2748)] = 83986, + [SMALL_STATE(2749)] = 84009, + [SMALL_STATE(2750)] = 84032, + [SMALL_STATE(2751)] = 84055, + [SMALL_STATE(2752)] = 84078, + [SMALL_STATE(2753)] = 84101, + [SMALL_STATE(2754)] = 84124, + [SMALL_STATE(2755)] = 84147, + [SMALL_STATE(2756)] = 84170, + [SMALL_STATE(2757)] = 84193, + [SMALL_STATE(2758)] = 84216, + [SMALL_STATE(2759)] = 84239, + [SMALL_STATE(2760)] = 84262, + [SMALL_STATE(2761)] = 84285, + [SMALL_STATE(2762)] = 84308, + [SMALL_STATE(2763)] = 84331, + [SMALL_STATE(2764)] = 84354, + [SMALL_STATE(2765)] = 84377, + [SMALL_STATE(2766)] = 84400, + [SMALL_STATE(2767)] = 84423, + [SMALL_STATE(2768)] = 84446, + [SMALL_STATE(2769)] = 84467, + [SMALL_STATE(2770)] = 84488, + [SMALL_STATE(2771)] = 84507, + [SMALL_STATE(2772)] = 84530, + [SMALL_STATE(2773)] = 84553, + [SMALL_STATE(2774)] = 84576, + [SMALL_STATE(2775)] = 84599, + [SMALL_STATE(2776)] = 84622, + [SMALL_STATE(2777)] = 84645, + [SMALL_STATE(2778)] = 84668, + [SMALL_STATE(2779)] = 84689, + [SMALL_STATE(2780)] = 84712, + [SMALL_STATE(2781)] = 84731, + [SMALL_STATE(2782)] = 84754, + [SMALL_STATE(2783)] = 84777, + [SMALL_STATE(2784)] = 84798, + [SMALL_STATE(2785)] = 84821, + [SMALL_STATE(2786)] = 84844, + [SMALL_STATE(2787)] = 84863, + [SMALL_STATE(2788)] = 84884, + [SMALL_STATE(2789)] = 84907, + [SMALL_STATE(2790)] = 84926, + [SMALL_STATE(2791)] = 84943, + [SMALL_STATE(2792)] = 84966, + [SMALL_STATE(2793)] = 84989, + [SMALL_STATE(2794)] = 85012, + [SMALL_STATE(2795)] = 85035, + [SMALL_STATE(2796)] = 85058, + [SMALL_STATE(2797)] = 85081, + [SMALL_STATE(2798)] = 85104, + [SMALL_STATE(2799)] = 85127, + [SMALL_STATE(2800)] = 85146, + [SMALL_STATE(2801)] = 85169, + [SMALL_STATE(2802)] = 85192, + [SMALL_STATE(2803)] = 85213, + [SMALL_STATE(2804)] = 85236, + [SMALL_STATE(2805)] = 85259, + [SMALL_STATE(2806)] = 85282, + [SMALL_STATE(2807)] = 85305, + [SMALL_STATE(2808)] = 85328, + [SMALL_STATE(2809)] = 85351, + [SMALL_STATE(2810)] = 85374, + [SMALL_STATE(2811)] = 85397, + [SMALL_STATE(2812)] = 85420, + [SMALL_STATE(2813)] = 85439, + [SMALL_STATE(2814)] = 85462, + [SMALL_STATE(2815)] = 85485, + [SMALL_STATE(2816)] = 85508, + [SMALL_STATE(2817)] = 85527, + [SMALL_STATE(2818)] = 85550, + [SMALL_STATE(2819)] = 85571, + [SMALL_STATE(2820)] = 85594, + [SMALL_STATE(2821)] = 85615, + [SMALL_STATE(2822)] = 85638, + [SMALL_STATE(2823)] = 85661, + [SMALL_STATE(2824)] = 85680, + [SMALL_STATE(2825)] = 85703, + [SMALL_STATE(2826)] = 85726, + [SMALL_STATE(2827)] = 85749, + [SMALL_STATE(2828)] = 85772, + [SMALL_STATE(2829)] = 85795, + [SMALL_STATE(2830)] = 85818, + [SMALL_STATE(2831)] = 85835, + [SMALL_STATE(2832)] = 85858, + [SMALL_STATE(2833)] = 85881, + [SMALL_STATE(2834)] = 85904, + [SMALL_STATE(2835)] = 85927, + [SMALL_STATE(2836)] = 85950, + [SMALL_STATE(2837)] = 85973, + [SMALL_STATE(2838)] = 85996, + [SMALL_STATE(2839)] = 86019, + [SMALL_STATE(2840)] = 86042, + [SMALL_STATE(2841)] = 86065, + [SMALL_STATE(2842)] = 86088, + [SMALL_STATE(2843)] = 86108, + [SMALL_STATE(2844)] = 86128, + [SMALL_STATE(2845)] = 86148, + [SMALL_STATE(2846)] = 86166, + [SMALL_STATE(2847)] = 86184, + [SMALL_STATE(2848)] = 86204, + [SMALL_STATE(2849)] = 86224, + [SMALL_STATE(2850)] = 86242, + [SMALL_STATE(2851)] = 86258, + [SMALL_STATE(2852)] = 86274, + [SMALL_STATE(2853)] = 86290, + [SMALL_STATE(2854)] = 86306, + [SMALL_STATE(2855)] = 86322, + [SMALL_STATE(2856)] = 86338, + [SMALL_STATE(2857)] = 86354, + [SMALL_STATE(2858)] = 86370, + [SMALL_STATE(2859)] = 86390, + [SMALL_STATE(2860)] = 86406, + [SMALL_STATE(2861)] = 86426, + [SMALL_STATE(2862)] = 86446, + [SMALL_STATE(2863)] = 86466, + [SMALL_STATE(2864)] = 86486, + [SMALL_STATE(2865)] = 86506, + [SMALL_STATE(2866)] = 86526, + [SMALL_STATE(2867)] = 86546, + [SMALL_STATE(2868)] = 86566, + [SMALL_STATE(2869)] = 86586, + [SMALL_STATE(2870)] = 86606, + [SMALL_STATE(2871)] = 86626, + [SMALL_STATE(2872)] = 86646, + [SMALL_STATE(2873)] = 86666, + [SMALL_STATE(2874)] = 86686, + [SMALL_STATE(2875)] = 86706, + [SMALL_STATE(2876)] = 86726, + [SMALL_STATE(2877)] = 86746, + [SMALL_STATE(2878)] = 86766, + [SMALL_STATE(2879)] = 86786, + [SMALL_STATE(2880)] = 86806, + [SMALL_STATE(2881)] = 86826, + [SMALL_STATE(2882)] = 86846, + [SMALL_STATE(2883)] = 86866, + [SMALL_STATE(2884)] = 86886, + [SMALL_STATE(2885)] = 86906, + [SMALL_STATE(2886)] = 86926, + [SMALL_STATE(2887)] = 86946, + [SMALL_STATE(2888)] = 86966, + [SMALL_STATE(2889)] = 86986, + [SMALL_STATE(2890)] = 87006, + [SMALL_STATE(2891)] = 87026, + [SMALL_STATE(2892)] = 87046, + [SMALL_STATE(2893)] = 87066, + [SMALL_STATE(2894)] = 87086, + [SMALL_STATE(2895)] = 87106, + [SMALL_STATE(2896)] = 87126, + [SMALL_STATE(2897)] = 87146, + [SMALL_STATE(2898)] = 87166, + [SMALL_STATE(2899)] = 87186, + [SMALL_STATE(2900)] = 87204, + [SMALL_STATE(2901)] = 87224, + [SMALL_STATE(2902)] = 87244, + [SMALL_STATE(2903)] = 87264, + [SMALL_STATE(2904)] = 87280, + [SMALL_STATE(2905)] = 87300, + [SMALL_STATE(2906)] = 87320, + [SMALL_STATE(2907)] = 87340, + [SMALL_STATE(2908)] = 87360, + [SMALL_STATE(2909)] = 87380, + [SMALL_STATE(2910)] = 87400, + [SMALL_STATE(2911)] = 87416, + [SMALL_STATE(2912)] = 87436, + [SMALL_STATE(2913)] = 87456, + [SMALL_STATE(2914)] = 87474, + [SMALL_STATE(2915)] = 87490, + [SMALL_STATE(2916)] = 87510, + [SMALL_STATE(2917)] = 87530, + [SMALL_STATE(2918)] = 87550, + [SMALL_STATE(2919)] = 87570, + [SMALL_STATE(2920)] = 87590, + [SMALL_STATE(2921)] = 87610, + [SMALL_STATE(2922)] = 87630, + [SMALL_STATE(2923)] = 87650, + [SMALL_STATE(2924)] = 87670, + [SMALL_STATE(2925)] = 87690, + [SMALL_STATE(2926)] = 87710, + [SMALL_STATE(2927)] = 87730, + [SMALL_STATE(2928)] = 87750, + [SMALL_STATE(2929)] = 87770, + [SMALL_STATE(2930)] = 87790, + [SMALL_STATE(2931)] = 87810, + [SMALL_STATE(2932)] = 87830, + [SMALL_STATE(2933)] = 87850, + [SMALL_STATE(2934)] = 87870, + [SMALL_STATE(2935)] = 87888, + [SMALL_STATE(2936)] = 87908, + [SMALL_STATE(2937)] = 87928, + [SMALL_STATE(2938)] = 87948, + [SMALL_STATE(2939)] = 87968, + [SMALL_STATE(2940)] = 87984, + [SMALL_STATE(2941)] = 88002, + [SMALL_STATE(2942)] = 88022, + [SMALL_STATE(2943)] = 88042, + [SMALL_STATE(2944)] = 88062, + [SMALL_STATE(2945)] = 88078, + [SMALL_STATE(2946)] = 88098, + [SMALL_STATE(2947)] = 88116, + [SMALL_STATE(2948)] = 88136, + [SMALL_STATE(2949)] = 88152, + [SMALL_STATE(2950)] = 88172, + [SMALL_STATE(2951)] = 88192, + [SMALL_STATE(2952)] = 88212, + [SMALL_STATE(2953)] = 88232, + [SMALL_STATE(2954)] = 88252, + [SMALL_STATE(2955)] = 88272, + [SMALL_STATE(2956)] = 88292, + [SMALL_STATE(2957)] = 88312, + [SMALL_STATE(2958)] = 88332, + [SMALL_STATE(2959)] = 88352, + [SMALL_STATE(2960)] = 88372, + [SMALL_STATE(2961)] = 88388, + [SMALL_STATE(2962)] = 88404, + [SMALL_STATE(2963)] = 88420, + [SMALL_STATE(2964)] = 88436, + [SMALL_STATE(2965)] = 88452, + [SMALL_STATE(2966)] = 88468, + [SMALL_STATE(2967)] = 88488, + [SMALL_STATE(2968)] = 88508, + [SMALL_STATE(2969)] = 88528, + [SMALL_STATE(2970)] = 88548, + [SMALL_STATE(2971)] = 88568, + [SMALL_STATE(2972)] = 88588, + [SMALL_STATE(2973)] = 88608, + [SMALL_STATE(2974)] = 88628, + [SMALL_STATE(2975)] = 88648, + [SMALL_STATE(2976)] = 88668, + [SMALL_STATE(2977)] = 88688, + [SMALL_STATE(2978)] = 88708, + [SMALL_STATE(2979)] = 88728, + [SMALL_STATE(2980)] = 88744, + [SMALL_STATE(2981)] = 88762, + [SMALL_STATE(2982)] = 88778, + [SMALL_STATE(2983)] = 88798, + [SMALL_STATE(2984)] = 88818, + [SMALL_STATE(2985)] = 88838, + [SMALL_STATE(2986)] = 88858, + [SMALL_STATE(2987)] = 88874, + [SMALL_STATE(2988)] = 88894, + [SMALL_STATE(2989)] = 88912, + [SMALL_STATE(2990)] = 88932, + [SMALL_STATE(2991)] = 88950, + [SMALL_STATE(2992)] = 88970, + [SMALL_STATE(2993)] = 88990, + [SMALL_STATE(2994)] = 89010, + [SMALL_STATE(2995)] = 89030, + [SMALL_STATE(2996)] = 89050, + [SMALL_STATE(2997)] = 89066, + [SMALL_STATE(2998)] = 89086, + [SMALL_STATE(2999)] = 89102, + [SMALL_STATE(3000)] = 89122, + [SMALL_STATE(3001)] = 89140, + [SMALL_STATE(3002)] = 89156, + [SMALL_STATE(3003)] = 89172, + [SMALL_STATE(3004)] = 89188, + [SMALL_STATE(3005)] = 89204, + [SMALL_STATE(3006)] = 89224, + [SMALL_STATE(3007)] = 89244, + [SMALL_STATE(3008)] = 89264, + [SMALL_STATE(3009)] = 89284, + [SMALL_STATE(3010)] = 89304, + [SMALL_STATE(3011)] = 89322, + [SMALL_STATE(3012)] = 89342, + [SMALL_STATE(3013)] = 89362, + [SMALL_STATE(3014)] = 89378, + [SMALL_STATE(3015)] = 89398, + [SMALL_STATE(3016)] = 89418, + [SMALL_STATE(3017)] = 89434, + [SMALL_STATE(3018)] = 89454, + [SMALL_STATE(3019)] = 89474, + [SMALL_STATE(3020)] = 89494, + [SMALL_STATE(3021)] = 89510, + [SMALL_STATE(3022)] = 89530, + [SMALL_STATE(3023)] = 89550, + [SMALL_STATE(3024)] = 89566, + [SMALL_STATE(3025)] = 89586, + [SMALL_STATE(3026)] = 89602, + [SMALL_STATE(3027)] = 89618, + [SMALL_STATE(3028)] = 89634, + [SMALL_STATE(3029)] = 89650, + [SMALL_STATE(3030)] = 89670, + [SMALL_STATE(3031)] = 89686, + [SMALL_STATE(3032)] = 89706, + [SMALL_STATE(3033)] = 89726, + [SMALL_STATE(3034)] = 89746, + [SMALL_STATE(3035)] = 89766, + [SMALL_STATE(3036)] = 89786, + [SMALL_STATE(3037)] = 89806, + [SMALL_STATE(3038)] = 89822, + [SMALL_STATE(3039)] = 89842, + [SMALL_STATE(3040)] = 89862, + [SMALL_STATE(3041)] = 89882, + [SMALL_STATE(3042)] = 89898, + [SMALL_STATE(3043)] = 89916, + [SMALL_STATE(3044)] = 89932, + [SMALL_STATE(3045)] = 89948, + [SMALL_STATE(3046)] = 89968, + [SMALL_STATE(3047)] = 89988, + [SMALL_STATE(3048)] = 90004, + [SMALL_STATE(3049)] = 90020, + [SMALL_STATE(3050)] = 90040, + [SMALL_STATE(3051)] = 90060, + [SMALL_STATE(3052)] = 90076, + [SMALL_STATE(3053)] = 90096, + [SMALL_STATE(3054)] = 90112, + [SMALL_STATE(3055)] = 90128, + [SMALL_STATE(3056)] = 90144, + [SMALL_STATE(3057)] = 90160, + [SMALL_STATE(3058)] = 90180, + [SMALL_STATE(3059)] = 90198, + [SMALL_STATE(3060)] = 90218, + [SMALL_STATE(3061)] = 90238, + [SMALL_STATE(3062)] = 90258, + [SMALL_STATE(3063)] = 90278, + [SMALL_STATE(3064)] = 90298, + [SMALL_STATE(3065)] = 90318, + [SMALL_STATE(3066)] = 90334, + [SMALL_STATE(3067)] = 90350, + [SMALL_STATE(3068)] = 90370, + [SMALL_STATE(3069)] = 90390, + [SMALL_STATE(3070)] = 90408, + [SMALL_STATE(3071)] = 90428, + [SMALL_STATE(3072)] = 90446, + [SMALL_STATE(3073)] = 90464, + [SMALL_STATE(3074)] = 90482, + [SMALL_STATE(3075)] = 90502, + [SMALL_STATE(3076)] = 90522, + [SMALL_STATE(3077)] = 90540, + [SMALL_STATE(3078)] = 90560, + [SMALL_STATE(3079)] = 90578, + [SMALL_STATE(3080)] = 90598, + [SMALL_STATE(3081)] = 90616, + [SMALL_STATE(3082)] = 90636, + [SMALL_STATE(3083)] = 90654, + [SMALL_STATE(3084)] = 90674, + [SMALL_STATE(3085)] = 90692, + [SMALL_STATE(3086)] = 90712, + [SMALL_STATE(3087)] = 90732, + [SMALL_STATE(3088)] = 90752, + [SMALL_STATE(3089)] = 90772, + [SMALL_STATE(3090)] = 90790, + [SMALL_STATE(3091)] = 90810, + [SMALL_STATE(3092)] = 90830, + [SMALL_STATE(3093)] = 90850, + [SMALL_STATE(3094)] = 90870, + [SMALL_STATE(3095)] = 90888, + [SMALL_STATE(3096)] = 90906, + [SMALL_STATE(3097)] = 90924, + [SMALL_STATE(3098)] = 90942, + [SMALL_STATE(3099)] = 90962, + [SMALL_STATE(3100)] = 90982, + [SMALL_STATE(3101)] = 91000, + [SMALL_STATE(3102)] = 91018, + [SMALL_STATE(3103)] = 91038, + [SMALL_STATE(3104)] = 91058, + [SMALL_STATE(3105)] = 91076, + [SMALL_STATE(3106)] = 91096, + [SMALL_STATE(3107)] = 91116, + [SMALL_STATE(3108)] = 91136, + [SMALL_STATE(3109)] = 91154, + [SMALL_STATE(3110)] = 91174, + [SMALL_STATE(3111)] = 91194, + [SMALL_STATE(3112)] = 91214, + [SMALL_STATE(3113)] = 91232, + [SMALL_STATE(3114)] = 91250, + [SMALL_STATE(3115)] = 91268, + [SMALL_STATE(3116)] = 91288, + [SMALL_STATE(3117)] = 91306, + [SMALL_STATE(3118)] = 91324, + [SMALL_STATE(3119)] = 91344, + [SMALL_STATE(3120)] = 91364, + [SMALL_STATE(3121)] = 91384, + [SMALL_STATE(3122)] = 91404, + [SMALL_STATE(3123)] = 91422, + [SMALL_STATE(3124)] = 91442, + [SMALL_STATE(3125)] = 91462, + [SMALL_STATE(3126)] = 91482, + [SMALL_STATE(3127)] = 91502, + [SMALL_STATE(3128)] = 91522, + [SMALL_STATE(3129)] = 91542, + [SMALL_STATE(3130)] = 91562, + [SMALL_STATE(3131)] = 91582, + [SMALL_STATE(3132)] = 91602, + [SMALL_STATE(3133)] = 91622, + [SMALL_STATE(3134)] = 91642, + [SMALL_STATE(3135)] = 91662, + [SMALL_STATE(3136)] = 91678, + [SMALL_STATE(3137)] = 91694, + [SMALL_STATE(3138)] = 91714, + [SMALL_STATE(3139)] = 91734, + [SMALL_STATE(3140)] = 91754, + [SMALL_STATE(3141)] = 91774, + [SMALL_STATE(3142)] = 91794, + [SMALL_STATE(3143)] = 91814, + [SMALL_STATE(3144)] = 91834, + [SMALL_STATE(3145)] = 91852, + [SMALL_STATE(3146)] = 91872, + [SMALL_STATE(3147)] = 91890, + [SMALL_STATE(3148)] = 91910, + [SMALL_STATE(3149)] = 91930, + [SMALL_STATE(3150)] = 91950, + [SMALL_STATE(3151)] = 91970, + [SMALL_STATE(3152)] = 91990, + [SMALL_STATE(3153)] = 92010, + [SMALL_STATE(3154)] = 92030, + [SMALL_STATE(3155)] = 92046, + [SMALL_STATE(3156)] = 92066, + [SMALL_STATE(3157)] = 92086, + [SMALL_STATE(3158)] = 92106, + [SMALL_STATE(3159)] = 92122, + [SMALL_STATE(3160)] = 92142, + [SMALL_STATE(3161)] = 92159, + [SMALL_STATE(3162)] = 92176, + [SMALL_STATE(3163)] = 92191, + [SMALL_STATE(3164)] = 92208, + [SMALL_STATE(3165)] = 92225, + [SMALL_STATE(3166)] = 92242, + [SMALL_STATE(3167)] = 92259, + [SMALL_STATE(3168)] = 92276, + [SMALL_STATE(3169)] = 92293, + [SMALL_STATE(3170)] = 92310, + [SMALL_STATE(3171)] = 92327, + [SMALL_STATE(3172)] = 92344, + [SMALL_STATE(3173)] = 92359, + [SMALL_STATE(3174)] = 92376, + [SMALL_STATE(3175)] = 92391, + [SMALL_STATE(3176)] = 92406, + [SMALL_STATE(3177)] = 92423, + [SMALL_STATE(3178)] = 92438, + [SMALL_STATE(3179)] = 92455, + [SMALL_STATE(3180)] = 92470, + [SMALL_STATE(3181)] = 92487, + [SMALL_STATE(3182)] = 92504, + [SMALL_STATE(3183)] = 92521, + [SMALL_STATE(3184)] = 92538, + [SMALL_STATE(3185)] = 92555, + [SMALL_STATE(3186)] = 92570, + [SMALL_STATE(3187)] = 92587, + [SMALL_STATE(3188)] = 92604, + [SMALL_STATE(3189)] = 92621, + [SMALL_STATE(3190)] = 92636, + [SMALL_STATE(3191)] = 92653, + [SMALL_STATE(3192)] = 92670, + [SMALL_STATE(3193)] = 92687, + [SMALL_STATE(3194)] = 92704, + [SMALL_STATE(3195)] = 92721, + [SMALL_STATE(3196)] = 92738, + [SMALL_STATE(3197)] = 92753, + [SMALL_STATE(3198)] = 92770, + [SMALL_STATE(3199)] = 92787, + [SMALL_STATE(3200)] = 92804, + [SMALL_STATE(3201)] = 92821, + [SMALL_STATE(3202)] = 92838, + [SMALL_STATE(3203)] = 92855, + [SMALL_STATE(3204)] = 92872, + [SMALL_STATE(3205)] = 92887, + [SMALL_STATE(3206)] = 92904, + [SMALL_STATE(3207)] = 92921, + [SMALL_STATE(3208)] = 92938, + [SMALL_STATE(3209)] = 92955, + [SMALL_STATE(3210)] = 92972, + [SMALL_STATE(3211)] = 92989, + [SMALL_STATE(3212)] = 93004, + [SMALL_STATE(3213)] = 93021, + [SMALL_STATE(3214)] = 93038, + [SMALL_STATE(3215)] = 93055, + [SMALL_STATE(3216)] = 93072, + [SMALL_STATE(3217)] = 93087, + [SMALL_STATE(3218)] = 93104, + [SMALL_STATE(3219)] = 93121, + [SMALL_STATE(3220)] = 93136, + [SMALL_STATE(3221)] = 93153, + [SMALL_STATE(3222)] = 93170, + [SMALL_STATE(3223)] = 93185, + [SMALL_STATE(3224)] = 93202, + [SMALL_STATE(3225)] = 93219, + [SMALL_STATE(3226)] = 93236, + [SMALL_STATE(3227)] = 93253, + [SMALL_STATE(3228)] = 93270, + [SMALL_STATE(3229)] = 93287, + [SMALL_STATE(3230)] = 93304, + [SMALL_STATE(3231)] = 93319, + [SMALL_STATE(3232)] = 93336, + [SMALL_STATE(3233)] = 93351, + [SMALL_STATE(3234)] = 93368, + [SMALL_STATE(3235)] = 93383, + [SMALL_STATE(3236)] = 93400, + [SMALL_STATE(3237)] = 93415, + [SMALL_STATE(3238)] = 93432, + [SMALL_STATE(3239)] = 93449, + [SMALL_STATE(3240)] = 93466, + [SMALL_STATE(3241)] = 93481, + [SMALL_STATE(3242)] = 93498, + [SMALL_STATE(3243)] = 93515, + [SMALL_STATE(3244)] = 93530, + [SMALL_STATE(3245)] = 93547, + [SMALL_STATE(3246)] = 93564, + [SMALL_STATE(3247)] = 93581, + [SMALL_STATE(3248)] = 93598, + [SMALL_STATE(3249)] = 93613, + [SMALL_STATE(3250)] = 93630, + [SMALL_STATE(3251)] = 93647, + [SMALL_STATE(3252)] = 93664, + [SMALL_STATE(3253)] = 93681, + [SMALL_STATE(3254)] = 93698, + [SMALL_STATE(3255)] = 93715, + [SMALL_STATE(3256)] = 93732, + [SMALL_STATE(3257)] = 93749, + [SMALL_STATE(3258)] = 93764, + [SMALL_STATE(3259)] = 93781, + [SMALL_STATE(3260)] = 93798, + [SMALL_STATE(3261)] = 93815, + [SMALL_STATE(3262)] = 93830, + [SMALL_STATE(3263)] = 93847, + [SMALL_STATE(3264)] = 93864, + [SMALL_STATE(3265)] = 93881, + [SMALL_STATE(3266)] = 93896, + [SMALL_STATE(3267)] = 93913, + [SMALL_STATE(3268)] = 93930, + [SMALL_STATE(3269)] = 93947, + [SMALL_STATE(3270)] = 93964, + [SMALL_STATE(3271)] = 93981, + [SMALL_STATE(3272)] = 93998, + [SMALL_STATE(3273)] = 94015, + [SMALL_STATE(3274)] = 94032, + [SMALL_STATE(3275)] = 94049, + [SMALL_STATE(3276)] = 94066, + [SMALL_STATE(3277)] = 94083, + [SMALL_STATE(3278)] = 94098, + [SMALL_STATE(3279)] = 94113, + [SMALL_STATE(3280)] = 94130, + [SMALL_STATE(3281)] = 94147, + [SMALL_STATE(3282)] = 94162, + [SMALL_STATE(3283)] = 94179, + [SMALL_STATE(3284)] = 94196, + [SMALL_STATE(3285)] = 94213, + [SMALL_STATE(3286)] = 94230, + [SMALL_STATE(3287)] = 94247, + [SMALL_STATE(3288)] = 94264, + [SMALL_STATE(3289)] = 94279, + [SMALL_STATE(3290)] = 94296, + [SMALL_STATE(3291)] = 94313, + [SMALL_STATE(3292)] = 94330, + [SMALL_STATE(3293)] = 94347, + [SMALL_STATE(3294)] = 94364, + [SMALL_STATE(3295)] = 94381, + [SMALL_STATE(3296)] = 94398, + [SMALL_STATE(3297)] = 94415, + [SMALL_STATE(3298)] = 94432, + [SMALL_STATE(3299)] = 94449, + [SMALL_STATE(3300)] = 94466, + [SMALL_STATE(3301)] = 94483, + [SMALL_STATE(3302)] = 94500, + [SMALL_STATE(3303)] = 94517, + [SMALL_STATE(3304)] = 94532, + [SMALL_STATE(3305)] = 94547, + [SMALL_STATE(3306)] = 94564, + [SMALL_STATE(3307)] = 94581, + [SMALL_STATE(3308)] = 94598, + [SMALL_STATE(3309)] = 94615, + [SMALL_STATE(3310)] = 94632, + [SMALL_STATE(3311)] = 94649, + [SMALL_STATE(3312)] = 94666, + [SMALL_STATE(3313)] = 94683, + [SMALL_STATE(3314)] = 94700, + [SMALL_STATE(3315)] = 94717, + [SMALL_STATE(3316)] = 94734, + [SMALL_STATE(3317)] = 94751, + [SMALL_STATE(3318)] = 94768, + [SMALL_STATE(3319)] = 94785, + [SMALL_STATE(3320)] = 94802, + [SMALL_STATE(3321)] = 94819, + [SMALL_STATE(3322)] = 94834, + [SMALL_STATE(3323)] = 94851, + [SMALL_STATE(3324)] = 94868, + [SMALL_STATE(3325)] = 94885, + [SMALL_STATE(3326)] = 94902, + [SMALL_STATE(3327)] = 94919, + [SMALL_STATE(3328)] = 94936, + [SMALL_STATE(3329)] = 94953, + [SMALL_STATE(3330)] = 94970, + [SMALL_STATE(3331)] = 94987, + [SMALL_STATE(3332)] = 95004, + [SMALL_STATE(3333)] = 95019, + [SMALL_STATE(3334)] = 95036, + [SMALL_STATE(3335)] = 95053, + [SMALL_STATE(3336)] = 95070, + [SMALL_STATE(3337)] = 95087, + [SMALL_STATE(3338)] = 95104, + [SMALL_STATE(3339)] = 95121, + [SMALL_STATE(3340)] = 95136, + [SMALL_STATE(3341)] = 95153, + [SMALL_STATE(3342)] = 95170, + [SMALL_STATE(3343)] = 95185, + [SMALL_STATE(3344)] = 95202, + [SMALL_STATE(3345)] = 95219, + [SMALL_STATE(3346)] = 95236, + [SMALL_STATE(3347)] = 95251, + [SMALL_STATE(3348)] = 95268, + [SMALL_STATE(3349)] = 95285, + [SMALL_STATE(3350)] = 95300, + [SMALL_STATE(3351)] = 95317, + [SMALL_STATE(3352)] = 95332, + [SMALL_STATE(3353)] = 95347, + [SMALL_STATE(3354)] = 95362, + [SMALL_STATE(3355)] = 95379, + [SMALL_STATE(3356)] = 95394, + [SMALL_STATE(3357)] = 95411, + [SMALL_STATE(3358)] = 95428, + [SMALL_STATE(3359)] = 95445, + [SMALL_STATE(3360)] = 95462, + [SMALL_STATE(3361)] = 95479, + [SMALL_STATE(3362)] = 95496, + [SMALL_STATE(3363)] = 95513, + [SMALL_STATE(3364)] = 95530, + [SMALL_STATE(3365)] = 95547, + [SMALL_STATE(3366)] = 95564, + [SMALL_STATE(3367)] = 95579, + [SMALL_STATE(3368)] = 95594, + [SMALL_STATE(3369)] = 95611, + [SMALL_STATE(3370)] = 95626, + [SMALL_STATE(3371)] = 95641, + [SMALL_STATE(3372)] = 95658, + [SMALL_STATE(3373)] = 95675, + [SMALL_STATE(3374)] = 95692, + [SMALL_STATE(3375)] = 95709, + [SMALL_STATE(3376)] = 95726, + [SMALL_STATE(3377)] = 95743, + [SMALL_STATE(3378)] = 95760, + [SMALL_STATE(3379)] = 95777, + [SMALL_STATE(3380)] = 95794, + [SMALL_STATE(3381)] = 95811, + [SMALL_STATE(3382)] = 95828, + [SMALL_STATE(3383)] = 95845, + [SMALL_STATE(3384)] = 95862, + [SMALL_STATE(3385)] = 95877, + [SMALL_STATE(3386)] = 95892, + [SMALL_STATE(3387)] = 95909, + [SMALL_STATE(3388)] = 95924, + [SMALL_STATE(3389)] = 95941, + [SMALL_STATE(3390)] = 95958, + [SMALL_STATE(3391)] = 95975, + [SMALL_STATE(3392)] = 95992, + [SMALL_STATE(3393)] = 96007, + [SMALL_STATE(3394)] = 96024, + [SMALL_STATE(3395)] = 96041, + [SMALL_STATE(3396)] = 96056, + [SMALL_STATE(3397)] = 96073, + [SMALL_STATE(3398)] = 96090, + [SMALL_STATE(3399)] = 96107, + [SMALL_STATE(3400)] = 96124, + [SMALL_STATE(3401)] = 96139, + [SMALL_STATE(3402)] = 96154, + [SMALL_STATE(3403)] = 96171, + [SMALL_STATE(3404)] = 96186, + [SMALL_STATE(3405)] = 96201, + [SMALL_STATE(3406)] = 96218, + [SMALL_STATE(3407)] = 96235, + [SMALL_STATE(3408)] = 96252, + [SMALL_STATE(3409)] = 96269, + [SMALL_STATE(3410)] = 96286, + [SMALL_STATE(3411)] = 96303, + [SMALL_STATE(3412)] = 96318, + [SMALL_STATE(3413)] = 96335, + [SMALL_STATE(3414)] = 96352, + [SMALL_STATE(3415)] = 96369, + [SMALL_STATE(3416)] = 96386, + [SMALL_STATE(3417)] = 96403, + [SMALL_STATE(3418)] = 96420, + [SMALL_STATE(3419)] = 96437, + [SMALL_STATE(3420)] = 96454, + [SMALL_STATE(3421)] = 96471, + [SMALL_STATE(3422)] = 96488, + [SMALL_STATE(3423)] = 96503, + [SMALL_STATE(3424)] = 96520, + [SMALL_STATE(3425)] = 96537, + [SMALL_STATE(3426)] = 96554, + [SMALL_STATE(3427)] = 96569, + [SMALL_STATE(3428)] = 96584, + [SMALL_STATE(3429)] = 96601, + [SMALL_STATE(3430)] = 96618, + [SMALL_STATE(3431)] = 96635, + [SMALL_STATE(3432)] = 96652, + [SMALL_STATE(3433)] = 96669, + [SMALL_STATE(3434)] = 96684, + [SMALL_STATE(3435)] = 96701, + [SMALL_STATE(3436)] = 96718, + [SMALL_STATE(3437)] = 96735, + [SMALL_STATE(3438)] = 96752, + [SMALL_STATE(3439)] = 96769, + [SMALL_STATE(3440)] = 96786, + [SMALL_STATE(3441)] = 96803, + [SMALL_STATE(3442)] = 96820, + [SMALL_STATE(3443)] = 96837, + [SMALL_STATE(3444)] = 96854, + [SMALL_STATE(3445)] = 96871, + [SMALL_STATE(3446)] = 96888, + [SMALL_STATE(3447)] = 96905, + [SMALL_STATE(3448)] = 96922, + [SMALL_STATE(3449)] = 96939, + [SMALL_STATE(3450)] = 96956, + [SMALL_STATE(3451)] = 96973, + [SMALL_STATE(3452)] = 96990, + [SMALL_STATE(3453)] = 97007, + [SMALL_STATE(3454)] = 97024, + [SMALL_STATE(3455)] = 97041, + [SMALL_STATE(3456)] = 97058, + [SMALL_STATE(3457)] = 97072, + [SMALL_STATE(3458)] = 97086, + [SMALL_STATE(3459)] = 97100, + [SMALL_STATE(3460)] = 97114, + [SMALL_STATE(3461)] = 97128, + [SMALL_STATE(3462)] = 97142, + [SMALL_STATE(3463)] = 97156, + [SMALL_STATE(3464)] = 97170, + [SMALL_STATE(3465)] = 97184, + [SMALL_STATE(3466)] = 97198, + [SMALL_STATE(3467)] = 97212, + [SMALL_STATE(3468)] = 97226, + [SMALL_STATE(3469)] = 97240, + [SMALL_STATE(3470)] = 97254, + [SMALL_STATE(3471)] = 97268, + [SMALL_STATE(3472)] = 97282, + [SMALL_STATE(3473)] = 97296, + [SMALL_STATE(3474)] = 97310, + [SMALL_STATE(3475)] = 97324, + [SMALL_STATE(3476)] = 97338, + [SMALL_STATE(3477)] = 97352, + [SMALL_STATE(3478)] = 97366, + [SMALL_STATE(3479)] = 97380, + [SMALL_STATE(3480)] = 97394, + [SMALL_STATE(3481)] = 97408, + [SMALL_STATE(3482)] = 97422, + [SMALL_STATE(3483)] = 97436, + [SMALL_STATE(3484)] = 97450, + [SMALL_STATE(3485)] = 97464, + [SMALL_STATE(3486)] = 97478, + [SMALL_STATE(3487)] = 97492, + [SMALL_STATE(3488)] = 97506, + [SMALL_STATE(3489)] = 97520, + [SMALL_STATE(3490)] = 97534, + [SMALL_STATE(3491)] = 97548, + [SMALL_STATE(3492)] = 97562, + [SMALL_STATE(3493)] = 97576, + [SMALL_STATE(3494)] = 97590, + [SMALL_STATE(3495)] = 97604, + [SMALL_STATE(3496)] = 97618, + [SMALL_STATE(3497)] = 97632, + [SMALL_STATE(3498)] = 97646, + [SMALL_STATE(3499)] = 97660, + [SMALL_STATE(3500)] = 97674, + [SMALL_STATE(3501)] = 97688, + [SMALL_STATE(3502)] = 97702, + [SMALL_STATE(3503)] = 97716, + [SMALL_STATE(3504)] = 97730, + [SMALL_STATE(3505)] = 97744, + [SMALL_STATE(3506)] = 97758, + [SMALL_STATE(3507)] = 97772, + [SMALL_STATE(3508)] = 97786, + [SMALL_STATE(3509)] = 97800, + [SMALL_STATE(3510)] = 97814, + [SMALL_STATE(3511)] = 97828, + [SMALL_STATE(3512)] = 97842, + [SMALL_STATE(3513)] = 97856, + [SMALL_STATE(3514)] = 97870, + [SMALL_STATE(3515)] = 97884, + [SMALL_STATE(3516)] = 97898, + [SMALL_STATE(3517)] = 97912, + [SMALL_STATE(3518)] = 97926, + [SMALL_STATE(3519)] = 97940, + [SMALL_STATE(3520)] = 97954, + [SMALL_STATE(3521)] = 97968, + [SMALL_STATE(3522)] = 97982, + [SMALL_STATE(3523)] = 97996, + [SMALL_STATE(3524)] = 98010, + [SMALL_STATE(3525)] = 98024, + [SMALL_STATE(3526)] = 98038, + [SMALL_STATE(3527)] = 98052, + [SMALL_STATE(3528)] = 98066, + [SMALL_STATE(3529)] = 98080, + [SMALL_STATE(3530)] = 98094, + [SMALL_STATE(3531)] = 98108, + [SMALL_STATE(3532)] = 98122, + [SMALL_STATE(3533)] = 98136, + [SMALL_STATE(3534)] = 98150, + [SMALL_STATE(3535)] = 98164, + [SMALL_STATE(3536)] = 98178, + [SMALL_STATE(3537)] = 98192, + [SMALL_STATE(3538)] = 98206, + [SMALL_STATE(3539)] = 98220, + [SMALL_STATE(3540)] = 98234, + [SMALL_STATE(3541)] = 98248, + [SMALL_STATE(3542)] = 98262, + [SMALL_STATE(3543)] = 98276, + [SMALL_STATE(3544)] = 98290, + [SMALL_STATE(3545)] = 98304, + [SMALL_STATE(3546)] = 98318, + [SMALL_STATE(3547)] = 98332, + [SMALL_STATE(3548)] = 98346, + [SMALL_STATE(3549)] = 98360, + [SMALL_STATE(3550)] = 98374, + [SMALL_STATE(3551)] = 98388, + [SMALL_STATE(3552)] = 98402, + [SMALL_STATE(3553)] = 98416, + [SMALL_STATE(3554)] = 98430, + [SMALL_STATE(3555)] = 98444, + [SMALL_STATE(3556)] = 98458, + [SMALL_STATE(3557)] = 98472, + [SMALL_STATE(3558)] = 98486, + [SMALL_STATE(3559)] = 98500, + [SMALL_STATE(3560)] = 98514, + [SMALL_STATE(3561)] = 98528, + [SMALL_STATE(3562)] = 98542, + [SMALL_STATE(3563)] = 98556, + [SMALL_STATE(3564)] = 98570, + [SMALL_STATE(3565)] = 98584, + [SMALL_STATE(3566)] = 98598, + [SMALL_STATE(3567)] = 98612, + [SMALL_STATE(3568)] = 98626, + [SMALL_STATE(3569)] = 98640, + [SMALL_STATE(3570)] = 98654, + [SMALL_STATE(3571)] = 98668, + [SMALL_STATE(3572)] = 98682, + [SMALL_STATE(3573)] = 98696, + [SMALL_STATE(3574)] = 98710, + [SMALL_STATE(3575)] = 98724, + [SMALL_STATE(3576)] = 98738, + [SMALL_STATE(3577)] = 98752, + [SMALL_STATE(3578)] = 98766, + [SMALL_STATE(3579)] = 98780, + [SMALL_STATE(3580)] = 98794, + [SMALL_STATE(3581)] = 98808, + [SMALL_STATE(3582)] = 98822, + [SMALL_STATE(3583)] = 98836, + [SMALL_STATE(3584)] = 98850, + [SMALL_STATE(3585)] = 98864, + [SMALL_STATE(3586)] = 98878, + [SMALL_STATE(3587)] = 98892, + [SMALL_STATE(3588)] = 98906, + [SMALL_STATE(3589)] = 98920, + [SMALL_STATE(3590)] = 98934, + [SMALL_STATE(3591)] = 98948, + [SMALL_STATE(3592)] = 98962, + [SMALL_STATE(3593)] = 98976, + [SMALL_STATE(3594)] = 98990, + [SMALL_STATE(3595)] = 99004, + [SMALL_STATE(3596)] = 99018, + [SMALL_STATE(3597)] = 99032, + [SMALL_STATE(3598)] = 99046, + [SMALL_STATE(3599)] = 99060, + [SMALL_STATE(3600)] = 99074, + [SMALL_STATE(3601)] = 99088, + [SMALL_STATE(3602)] = 99102, + [SMALL_STATE(3603)] = 99116, + [SMALL_STATE(3604)] = 99130, + [SMALL_STATE(3605)] = 99144, + [SMALL_STATE(3606)] = 99158, + [SMALL_STATE(3607)] = 99172, + [SMALL_STATE(3608)] = 99186, + [SMALL_STATE(3609)] = 99200, + [SMALL_STATE(3610)] = 99214, + [SMALL_STATE(3611)] = 99228, + [SMALL_STATE(3612)] = 99242, + [SMALL_STATE(3613)] = 99256, + [SMALL_STATE(3614)] = 99270, + [SMALL_STATE(3615)] = 99284, + [SMALL_STATE(3616)] = 99298, + [SMALL_STATE(3617)] = 99312, + [SMALL_STATE(3618)] = 99326, + [SMALL_STATE(3619)] = 99340, + [SMALL_STATE(3620)] = 99354, + [SMALL_STATE(3621)] = 99368, + [SMALL_STATE(3622)] = 99382, + [SMALL_STATE(3623)] = 99396, + [SMALL_STATE(3624)] = 99410, + [SMALL_STATE(3625)] = 99424, + [SMALL_STATE(3626)] = 99438, + [SMALL_STATE(3627)] = 99452, + [SMALL_STATE(3628)] = 99466, + [SMALL_STATE(3629)] = 99480, + [SMALL_STATE(3630)] = 99494, + [SMALL_STATE(3631)] = 99508, + [SMALL_STATE(3632)] = 99522, + [SMALL_STATE(3633)] = 99536, + [SMALL_STATE(3634)] = 99550, + [SMALL_STATE(3635)] = 99564, + [SMALL_STATE(3636)] = 99578, + [SMALL_STATE(3637)] = 99592, + [SMALL_STATE(3638)] = 99606, + [SMALL_STATE(3639)] = 99620, + [SMALL_STATE(3640)] = 99634, + [SMALL_STATE(3641)] = 99648, + [SMALL_STATE(3642)] = 99662, + [SMALL_STATE(3643)] = 99676, + [SMALL_STATE(3644)] = 99690, + [SMALL_STATE(3645)] = 99704, + [SMALL_STATE(3646)] = 99718, + [SMALL_STATE(3647)] = 99732, + [SMALL_STATE(3648)] = 99746, + [SMALL_STATE(3649)] = 99760, + [SMALL_STATE(3650)] = 99774, + [SMALL_STATE(3651)] = 99788, + [SMALL_STATE(3652)] = 99802, + [SMALL_STATE(3653)] = 99816, + [SMALL_STATE(3654)] = 99830, + [SMALL_STATE(3655)] = 99844, + [SMALL_STATE(3656)] = 99858, + [SMALL_STATE(3657)] = 99872, + [SMALL_STATE(3658)] = 99886, + [SMALL_STATE(3659)] = 99900, + [SMALL_STATE(3660)] = 99914, + [SMALL_STATE(3661)] = 99928, + [SMALL_STATE(3662)] = 99942, + [SMALL_STATE(3663)] = 99956, + [SMALL_STATE(3664)] = 99970, + [SMALL_STATE(3665)] = 99984, + [SMALL_STATE(3666)] = 99998, + [SMALL_STATE(3667)] = 100012, + [SMALL_STATE(3668)] = 100026, + [SMALL_STATE(3669)] = 100040, + [SMALL_STATE(3670)] = 100054, + [SMALL_STATE(3671)] = 100068, + [SMALL_STATE(3672)] = 100082, + [SMALL_STATE(3673)] = 100096, + [SMALL_STATE(3674)] = 100110, + [SMALL_STATE(3675)] = 100124, + [SMALL_STATE(3676)] = 100138, + [SMALL_STATE(3677)] = 100152, + [SMALL_STATE(3678)] = 100166, + [SMALL_STATE(3679)] = 100180, + [SMALL_STATE(3680)] = 100194, + [SMALL_STATE(3681)] = 100208, + [SMALL_STATE(3682)] = 100222, + [SMALL_STATE(3683)] = 100236, + [SMALL_STATE(3684)] = 100250, + [SMALL_STATE(3685)] = 100264, + [SMALL_STATE(3686)] = 100278, + [SMALL_STATE(3687)] = 100292, + [SMALL_STATE(3688)] = 100306, + [SMALL_STATE(3689)] = 100320, + [SMALL_STATE(3690)] = 100334, + [SMALL_STATE(3691)] = 100348, + [SMALL_STATE(3692)] = 100362, + [SMALL_STATE(3693)] = 100376, + [SMALL_STATE(3694)] = 100390, + [SMALL_STATE(3695)] = 100404, + [SMALL_STATE(3696)] = 100418, + [SMALL_STATE(3697)] = 100432, + [SMALL_STATE(3698)] = 100446, + [SMALL_STATE(3699)] = 100460, + [SMALL_STATE(3700)] = 100474, + [SMALL_STATE(3701)] = 100488, + [SMALL_STATE(3702)] = 100502, + [SMALL_STATE(3703)] = 100516, + [SMALL_STATE(3704)] = 100530, + [SMALL_STATE(3705)] = 100544, + [SMALL_STATE(3706)] = 100558, + [SMALL_STATE(3707)] = 100572, + [SMALL_STATE(3708)] = 100586, + [SMALL_STATE(3709)] = 100600, + [SMALL_STATE(3710)] = 100614, + [SMALL_STATE(3711)] = 100628, + [SMALL_STATE(3712)] = 100642, + [SMALL_STATE(3713)] = 100656, + [SMALL_STATE(3714)] = 100670, + [SMALL_STATE(3715)] = 100684, + [SMALL_STATE(3716)] = 100698, + [SMALL_STATE(3717)] = 100712, + [SMALL_STATE(3718)] = 100726, + [SMALL_STATE(3719)] = 100740, + [SMALL_STATE(3720)] = 100754, + [SMALL_STATE(3721)] = 100768, + [SMALL_STATE(3722)] = 100782, + [SMALL_STATE(3723)] = 100796, + [SMALL_STATE(3724)] = 100810, + [SMALL_STATE(3725)] = 100824, + [SMALL_STATE(3726)] = 100838, + [SMALL_STATE(3727)] = 100852, + [SMALL_STATE(3728)] = 100866, + [SMALL_STATE(3729)] = 100880, + [SMALL_STATE(3730)] = 100894, + [SMALL_STATE(3731)] = 100908, + [SMALL_STATE(3732)] = 100922, + [SMALL_STATE(3733)] = 100936, + [SMALL_STATE(3734)] = 100950, + [SMALL_STATE(3735)] = 100964, + [SMALL_STATE(3736)] = 100978, + [SMALL_STATE(3737)] = 100992, + [SMALL_STATE(3738)] = 101006, + [SMALL_STATE(3739)] = 101020, + [SMALL_STATE(3740)] = 101034, + [SMALL_STATE(3741)] = 101048, + [SMALL_STATE(3742)] = 101062, + [SMALL_STATE(3743)] = 101076, + [SMALL_STATE(3744)] = 101090, + [SMALL_STATE(3745)] = 101104, + [SMALL_STATE(3746)] = 101118, + [SMALL_STATE(3747)] = 101132, + [SMALL_STATE(3748)] = 101146, + [SMALL_STATE(3749)] = 101160, + [SMALL_STATE(3750)] = 101174, + [SMALL_STATE(3751)] = 101188, + [SMALL_STATE(3752)] = 101202, + [SMALL_STATE(3753)] = 101216, + [SMALL_STATE(3754)] = 101230, + [SMALL_STATE(3755)] = 101244, + [SMALL_STATE(3756)] = 101258, + [SMALL_STATE(3757)] = 101272, + [SMALL_STATE(3758)] = 101286, + [SMALL_STATE(3759)] = 101300, + [SMALL_STATE(3760)] = 101314, + [SMALL_STATE(3761)] = 101328, + [SMALL_STATE(3762)] = 101342, + [SMALL_STATE(3763)] = 101356, + [SMALL_STATE(3764)] = 101370, + [SMALL_STATE(3765)] = 101384, + [SMALL_STATE(3766)] = 101398, + [SMALL_STATE(3767)] = 101412, + [SMALL_STATE(3768)] = 101426, + [SMALL_STATE(3769)] = 101440, + [SMALL_STATE(3770)] = 101454, + [SMALL_STATE(3771)] = 101468, + [SMALL_STATE(3772)] = 101482, + [SMALL_STATE(3773)] = 101496, + [SMALL_STATE(3774)] = 101510, + [SMALL_STATE(3775)] = 101524, + [SMALL_STATE(3776)] = 101528, + [SMALL_STATE(3777)] = 101532, + [SMALL_STATE(3778)] = 101536, + [SMALL_STATE(3779)] = 101540, + [SMALL_STATE(3780)] = 101544, + [SMALL_STATE(3781)] = 101548, }; 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(2353), - [5] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2494), + [3] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2360), + [5] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2544), [7] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 0, 0, 0), - [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1552), - [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), - [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2579), - [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), - [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), + [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1576), + [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), + [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2620), + [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), + [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), - [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), - [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1532), - [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), - [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), - [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), + [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), + [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1544), + [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), + [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), + [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), - [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3194), - [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3368), - [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3435), + [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3406), + [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3455), + [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3599), [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2114), [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(42), - [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2142), - [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1392), - [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1083), - [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3580), - [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3186), + [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2108), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1417), + [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1082), + [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3466), + [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3339), [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(838), - [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1086), - [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(157), - [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(864), - [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(815), - [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2739), - [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(302), - [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3476), - [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2015), - [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(41), - [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2431), - [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3520), - [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3588), - [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3538), - [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1562), - [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2090), - [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1911), - [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(145), - [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2129), - [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(40), - [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3241), - [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2760), - [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), - [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2635), - [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1425), - [103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2353), - [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2494), - [107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), - [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1530), - [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3551), - [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2048), - [115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1530), - [117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3581), - [119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1641), - [121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3368), - [123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1639), - [125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 1, 0, 0), - [127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), - [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(1552), - [136] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(497), - [139] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2579), - [142] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(185), - [145] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(134), - [148] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(34), - [151] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(280), - [154] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1532), - [157] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(221), - [160] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(810), - [163] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(875), - [166] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(36), - [169] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3194), - [172] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3368), - [175] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3435), - [178] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2114), - [181] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(42), - [184] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2142), - [187] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1392), - [190] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1083), - [193] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3580), - [196] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3186), - [199] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(838), - [202] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1086), - [205] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(157), - [208] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(864), - [211] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(815), - [214] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2739), - [217] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(302), - [220] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3476), - [223] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2015), - [226] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(41), - [229] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2431), - [232] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3520), - [235] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3588), - [238] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3538), - [241] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1562), - [244] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2090), - [247] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1911), - [250] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(145), - [253] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2129), - [256] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(40), - [259] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3241), - [262] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2760), - [265] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1473), - [268] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2635), - [271] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1425), - [274] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1530), - [277] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3551), - [280] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2048), - [283] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1530), - [286] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3581), - [289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), - [291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), - [293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1495), - [295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), - [297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1453), - [299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413), - [301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2108), - [303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2112), - [305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2124), - [307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2100), - [309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), - [311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), - [313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), - [315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), - [317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), - [319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), - [321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), - [323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), - [325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), - [327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), - [329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), - [331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), - [333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1637), - [335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1638), - [337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), - [339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1078), - [341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_expression, 2, 0, 0), - [343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), - [345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2695), - [347] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_expression, 2, 0, 0), - [349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(280), - [351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2534), - [353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2687), - [355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1428), - [357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(842), - [359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1040), - [361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(187), - [363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2696), - [365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(352), - [367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2957), - [369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2625), - [371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(188), - [373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2720), - [375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 1, 0, 0), - [377] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 1, 0, 0), - [379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 2, 0, 0), - [381] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 2, 0, 0), - [383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 1, 0, 0), - [385] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 1, 0, 0), - [387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(221), - [389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(810), - [391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(875), - [393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(38), - [395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_expression, 1, 0, 0), - [397] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_expression, 1, 0, 0), - [399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_expression, 1, 0, 0), - [401] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_expression, 1, 0, 0), - [403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3447), - [405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1572), - [407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), - [409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2786), - [411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1674), - [413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(285), - [415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3141), - [417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2482), - [419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(44), - [421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2634), - [423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1625), - [425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1607), - [427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(846), - [429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1498), - [431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(194), - [433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2600), - [435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(373), - [437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(46), - [439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3032), - [441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2743), - [443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(195), - [445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(47), - [447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3239), - [449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2601), - [451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1776), - [453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2650), - [455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1777), - [457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1631), - [459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3586), - [461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1631), - [463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3643), - [465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3615), - [467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1569), - [469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1620), - [471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(345), - [473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3297), - [475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(54), - [477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1589), - [479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1531), - [481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(59), - [483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2969), - [485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(60), - [487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3143), - [489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1621), - [491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3439), - [493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1621), - [495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), - [497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), - [499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(223), - [501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(50), - [503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(340), - [505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(57), - [507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1593), - [509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1534), - [511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(56), - [513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3067), - [515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(55), - [517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3302), - [519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(225), - [521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(53), - [523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(241), - [525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(65), - [527] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(186), - [530] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(159), - [533] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(75), - [536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), - [538] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(76), - [541] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(77), - [544] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(159), - [547] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(3480), - [550] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(175), - [553] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(2633), - [556] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(176), - [559] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(197), - [562] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(3637), - [565] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(206), - [568] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(205), - [571] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(114), - [574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), - [576] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(115), - [579] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(116), - [582] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(205), - [585] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(206), - [588] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(212), - [591] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(2738), - [594] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(214), - [597] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(3582), - [600] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(170), - [603] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(159), - [606] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(100), - [609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), - [611] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(101), - [614] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(102), - [617] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(159), - [620] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(3634), - [623] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(175), - [626] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(2633), - [629] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(176), - [632] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(170), - [635] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(3637), - [638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(186), - [640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), - [642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), - [644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2662), - [646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), - [648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), - [650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(159), - [652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3480), - [654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), - [656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2633), - [658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(176), - [660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), - [662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3637), - [664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3436), - [666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2618), - [668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), - [670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), - [672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3452), - [674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(206), - [676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), - [678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), - [680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), - [682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), - [684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), - [686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(205), - [688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), - [690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), - [692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2738), - [694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(214), - [696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3582), - [698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), - [700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(170), - [702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), - [704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), - [706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2628), - [708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), - [710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3634), - [712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), - [714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), - [716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), - [718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2714), - [720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), - [722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), - [724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), - [726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2586), - [728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2004), - [730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2008), - [732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2796), - [734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), - [736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), - [738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), - [740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1795), - [742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1796), - [744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), - [746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3556), - [748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3738), - [750] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1078), - [753] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(185), - [756] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(134), - [759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), - [761] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(11), - [764] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(280), - [767] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1532), - [770] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(221), - [773] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(810), - [776] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(875), - [779] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(36), - [782] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(3194), - [785] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3738), - [788] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(3435), - [791] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(2534), - [794] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(42), - [797] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(2687), - [800] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1392), - [803] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1428), - [806] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(842), - [809] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1040), - [812] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(187), - [815] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(2696), - [818] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(352), - [821] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(41), - [824] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(2957), - [827] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(2625), - [830] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(188), - [833] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(40), - [836] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(3241), - [839] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(2720), - [842] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1473), - [845] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(2635), - [848] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1425), - [851] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1530), - [854] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(3551), - [857] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1530), - [860] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(3581), - [863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1709), - [865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3478), - [867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), - [869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3702), - [871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1893), - [873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3739), - [875] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 1, 0, 0), - [877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 1, 0, 0), - [879] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__token_pattern, 1, 0, 0), - [881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__token_pattern, 1, 0, 0), - [883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1524), - [885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3610), - [887] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__non_special_token_repeat1, 2, 0, 0), - [889] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__non_special_token_repeat1, 2, 0, 0), SHIFT_REPEAT(159), - [892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__non_special_token_repeat1, 2, 0, 0), - [894] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__non_special_token_repeat1, 2, 0, 0), SHIFT_REPEAT(159), - [897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1705), - [899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3599), - [901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), - [903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), - [905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), - [907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(819), - [909] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition_pattern, 6, 0, 0), - [911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition_pattern, 6, 0, 0), - [913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1479), - [915] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition, 4, 0, 0), - [917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition, 4, 0, 0), - [919] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition, 5, 0, 0), - [921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition, 5, 0, 0), - [923] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition, 6, 0, 0), - [925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition, 6, 0, 0), - [927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1699), - [929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), - [931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1404), - [933] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 1, 0, 0), - [935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 1, 0, 0), - [937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1872), - [939] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fragment_specifier, 1, 0, 0), - [941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fragment_specifier, 1, 0, 0), - [943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1816), - [945] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__non_special_token_repeat1, 1, 0, 0), - [947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__non_special_token_repeat1, 1, 0, 0), - [949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1703), - [951] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree_pattern, 2, 0, 0), - [953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree_pattern, 2, 0, 0), - [955] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_binding_pattern, 3, 0, 206), - [957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_binding_pattern, 3, 0, 206), - [959] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree_pattern, 3, 0, 0), - [961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree_pattern, 3, 0, 0), - [963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1890), - [965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1799), - [967] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree, 2, 0, 0), - [969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree, 2, 0, 0), - [971] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree, 3, 0, 0), - [973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree, 3, 0, 0), - [975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1782), - [977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1788), - [979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), - [981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), - [983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), - [985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(835), - [987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), - [989] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition_pattern, 4, 0, 0), - [991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition_pattern, 4, 0, 0), - [993] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__literal, 1, 0, 0), - [995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__literal, 1, 0, 0), - [997] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean_literal, 1, 0, 0), - [999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean_literal, 1, 0, 0), - [1001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1518), - [1003] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 2, 0, 0), - [1005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 2, 0, 0), - [1007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), - [1009] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_string_literal, 3, 0, 0), - [1011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_string_literal, 3, 0, 0), - [1013] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__non_delim_token, 1, 0, 0), - [1015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__non_delim_token, 1, 0, 0), - [1017] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 3, 0, 0), - [1019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 3, 0, 0), - [1021] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition_pattern, 5, 0, 0), - [1023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition_pattern, 5, 0, 0), - [1025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525), - [1027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), - [1029] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__non_special_token_repeat1, 2, 0, 0), SHIFT_REPEAT(205), - [1032] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__non_special_token_repeat1, 2, 0, 0), SHIFT_REPEAT(205), - [1035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2068), - [1037] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__delim_tokens, 1, 0, 0), - [1039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__delim_tokens, 1, 0, 0), - [1041] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 1, 0, 0), - [1043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 1, 0, 0), - [1045] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delim_token_tree, 2, 0, 0), - [1047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delim_token_tree, 2, 0, 0), - [1049] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delim_token_tree, 3, 0, 0), - [1051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delim_token_tree, 3, 0, 0), - [1053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1437), - [1055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), - [1057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), - [1059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1516), - [1061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), - [1063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1826), - [1065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1500), - [1067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), - [1069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(318), - [1071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3133), - [1073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), - [1075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), - [1077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), - [1079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), - [1081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(320), - [1083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3209), - [1085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(286), - [1087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3316), - [1089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1519), - [1091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), - [1093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1815), - [1095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), - [1097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1692), - [1099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), - [1101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1897), - [1103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), - [1105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1812), - [1107] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1078), - [1110] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(185), - [1113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), - [1115] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(134), - [1118] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(11), - [1121] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(280), - [1124] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1532), - [1127] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(221), - [1130] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(810), - [1133] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(875), - [1136] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(36), - [1139] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(3194), - [1142] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(3435), - [1145] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2534), - [1148] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(42), - [1151] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2687), - [1154] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1392), - [1157] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1428), - [1160] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(842), - [1163] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1040), - [1166] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(187), - [1169] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2696), - [1172] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(352), - [1175] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(41), - [1178] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2957), - [1181] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2625), - [1184] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(188), - [1187] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(40), - [1190] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(3241), - [1193] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2720), - [1196] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1473), - [1199] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2635), - [1202] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1425), - [1205] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1530), - [1208] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(3551), - [1211] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1530), - [1214] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(3581), - [1217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(303), - [1219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3149), - [1221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1868), - [1223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), - [1225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), - [1227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2003), - [1229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), - [1231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2439), - [1233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), - [1235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3189), - [1237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), - [1239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2220), - [1241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3300), - [1243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2059), - [1245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), - [1247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), - [1249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2515), - [1251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1038), - [1253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3395), - [1255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1561), - [1257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3618), - [1259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3277), - [1261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3707), - [1263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3578), - [1265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2447), - [1267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2167), - [1269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1995), - [1271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3290), - [1273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3516), - [1275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2117), - [1277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1072), - [1279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2295), - [1281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(827), - [1283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1528), - [1285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(803), - [1287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2074), - [1289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2722), - [1291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2071), - [1293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2333), - [1295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2769), - [1297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2334), - [1299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3735), - [1301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), - [1303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2469), - [1305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2603), - [1307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(844), - [1309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1400), - [1311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(191), - [1313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2736), - [1315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(369), - [1317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2759), - [1319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(192), - [1321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2737), - [1323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2018), - [1325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), - [1327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2012), - [1329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2211), - [1331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), - [1333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2473), - [1335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3694), - [1337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3256), - [1339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2064), - [1341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2230), - [1343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2335), - [1345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2683), - [1347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2300), - [1349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), - [1351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 3, 0, 34), - [1353] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 3, 0, 34), - [1355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2373), - [1357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), - [1359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2530), - [1361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3545), - [1363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2429), - [1365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3692), - [1367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1634), - [1369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2492), - [1371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3491), - [1373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2445), - [1375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3641), - [1377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2014), - [1379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2712), - [1381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2007), - [1383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 6, 0, 0), - [1385] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 6, 0, 0), - [1387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 5, 0, 0), - [1389] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 5, 0, 0), - [1391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 4, 0, 0), - [1393] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 4, 0, 0), - [1395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2, 0, 0), - [1397] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2, 0, 0), - [1399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), - [1401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), - [1403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), - [1405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1681), - [1407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1685), - [1409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1628), - [1411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2011), - [1413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3, 0, 0), - [1415] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 3, 0, 0), - [1417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 4, 0, 83), - [1419] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 4, 0, 83), - [1421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gen_block, 3, 0, 0), - [1423] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gen_block, 3, 0, 0), - [1425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 1, 0, 0), - [1427] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 1, 0, 0), - [1429] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_except_range, 1, 0, 0), - [1431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_except_range, 1, 0, 0), - [1433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_expression, 3, 0, 44), - [1435] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_expression, 3, 0, 44), - [1437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_invocation, 3, 0, 45), - [1439] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_invocation, 3, 0, 45), - [1441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_async_block, 3, 0, 0), - [1443] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_async_block, 3, 0, 0), - [1445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2466), - [1447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), - [1449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), - [1451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2150), - [1453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3626), - [1455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3016), - [1457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(828), - [1459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3205), - [1461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_expression, 4, 0, 105), - [1463] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_expression, 4, 0, 105), - [1465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2521), - [1467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_expression, 2, 0, 8), - [1469] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_expression, 2, 0, 8), - [1471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_invocation, 3, 0, 32), - [1473] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_invocation, 3, 0, 32), - [1475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2552), - [1477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_async_block, 2, 0, 0), - [1479] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_async_block, 2, 0, 0), - [1481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_block, 2, 0, 8), - [1483] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_block, 2, 0, 8), - [1485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 4, 0, 0), - [1487] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 4, 0, 0), - [1489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_expression, 5, 0, 152), - [1491] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_expression, 5, 0, 152), - [1493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gen_block, 2, 0, 0), - [1495] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gen_block, 2, 0, 0), - [1497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 2, 0, 0), - [1499] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 2, 0, 0), - [1501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 1, 0, 0), - [1503] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement, 1, 0, 0), - [1505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_expression, 5, 0, 124), - [1507] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_expression, 5, 0, 124), - [1509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2, 0, 0), - [1511] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2, 0, 0), - [1513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_block, 2, 0, 0), - [1515] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_block, 2, 0, 0), - [1517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_expression, 7, 0, 253), - [1519] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_expression, 7, 0, 253), - [1521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 3, 0, 0), - [1523] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 3, 0, 0), - [1525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_expression, 3, 0, 39), - [1527] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_expression, 3, 0, 39), - [1529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unsafe_block, 2, 0, 0), - [1531] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unsafe_block, 2, 0, 0), - [1533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2553), - [1535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2528), - [1537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2496), - [1539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2671), - [1541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2021), - [1543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), - [1545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2147), - [1547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2234), - [1549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), - [1551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3620), - [1553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3280), - [1555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2026), - [1557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2192), - [1559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2783), - [1561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2351), - [1563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), - [1565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(432), - [1567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2395), - [1569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(428), - [1571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2455), - [1573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2421), - [1575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(431), - [1577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2387), - [1579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(427), - [1581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(430), - [1583] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_label, 2, 0, 0), - [1585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_label, 2, 0, 0), - [1587] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_parameters, 2, 0, 0), - [1589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_parameters, 2, 0, 0), - [1591] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_parameters, 3, 0, 0), - [1593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_parameters, 3, 0, 0), - [1595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2125), - [1597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), - [1599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), - [1601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), - [1603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2025), - [1605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), - [1607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1979), - [1609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3320), - [1611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3613), - [1613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2175), - [1615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2776), - [1617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3070), - [1619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3449), - [1621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2005), - [1623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2503), - [1625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2507), - [1627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), - [1629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2509), - [1631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1603), - [1633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1604), - [1635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1605), - [1637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1982), - [1639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), - [1641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1977), - [1643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), - [1645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2075), - [1647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), - [1649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), - [1651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), - [1653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2309), - [1655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3319), - [1657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), - [1659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), - [1661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3108), - [1663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1099), - [1665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1556), - [1667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3267), - [1669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3411), - [1671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2742), - [1673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2195), - [1675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(826), - [1677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(830), - [1679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2389), - [1681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2602), - [1683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2397), - [1685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2587), - [1687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2587), - [1689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3617), - [1691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1765), - [1693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1468), - [1695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), - [1697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2419), - [1699] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 3, 0, 180), - [1701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 3, 0, 180), - [1703] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2075), - [1706] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(492), - [1709] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(786), - [1712] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2309), - [1715] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3319), - [1718] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(824), - [1721] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(829), - [1724] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(875), - [1727] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3108), - [1730] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1099), - [1733] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1556), - [1736] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3267), - [1739] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3411), - [1742] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2742), - [1745] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2195), - [1748] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(826), - [1751] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(830), - [1754] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2389), - [1757] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2602), - [1760] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2397), - [1763] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2587), - [1766] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2587), - [1769] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3617), - [1772] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, 0, 125), - [1774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, 0, 125), - [1776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1970), - [1778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), - [1780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2897), - [1782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), - [1784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2069), - [1786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), - [1788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3583), - [1790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3374), - [1792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2751), - [1794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1998), - [1796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2715), - [1798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2715), - [1800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2144), - [1802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, 0, 120), - [1804] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, 0, 120), - [1806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 7, 0, 211), - [1808] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 7, 0, 211), - [1810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 5, 0, 0), - [1812] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 5, 0, 0), - [1814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_statement, 1, 0, 0), - [1816] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_statement, 1, 0, 0), - [1818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, 0, 214), - [1820] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, 0, 214), - [1822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, 0, 215), - [1824] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, 0, 215), - [1826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, 0, 164), - [1828] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, 0, 164), - [1830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, 0, 216), - [1832] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, 0, 216), - [1834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 166), - [1836] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 166), - [1838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 217), - [1840] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 217), - [1842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 168), - [1844] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 168), - [1846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 218), - [1848] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 218), - [1850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 219), - [1852] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 219), - [1854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 220), - [1856] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 220), - [1858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 221), - [1860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 221), - [1862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 222), - [1864] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 222), - [1866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 172), - [1868] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 172), - [1870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 223), - [1872] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 223), - [1874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 174), - [1876] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 174), - [1878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 224), - [1880] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 224), - [1882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 7, 0, 225), - [1884] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 7, 0, 225), - [1886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 7, 0, 226), - [1888] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 7, 0, 226), - [1890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 7, 0, 227), - [1892] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 7, 0, 227), - [1894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, 0, 121), - [1896] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, 0, 121), - [1898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 7, 0, 228), - [1900] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 7, 0, 228), - [1902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, 0, 122), - [1904] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, 0, 122), - [1906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 7, 0, 211), - [1908] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 7, 0, 211), - [1910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 5, 0, 0), - [1912] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 5, 0, 0), - [1914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 7, 0, 188), - [1916] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 7, 0, 188), - [1918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 7, 0, 189), - [1920] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 7, 0, 189), - [1922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 7, 0, 231), - [1924] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 7, 0, 231), - [1926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 232), - [1928] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 232), - [1930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 233), - [1932] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 233), - [1934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 234), - [1936] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 234), - [1938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 235), - [1940] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 235), - [1942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 236), - [1944] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 236), - [1946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 237), - [1948] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 237), - [1950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 238), - [1952] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 238), - [1954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 239), - [1956] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 239), - [1958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, 0, 240), - [1960] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, 0, 240), - [1962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, 0, 197), - [1964] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, 0, 197), - [1966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, 0, 241), - [1968] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, 0, 241), - [1970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, 0, 242), - [1972] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, 0, 242), - [1974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, 0, 243), - [1976] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, 0, 243), - [1978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 7, 0, 144), - [1980] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 7, 0, 144), - [1982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 7, 0, 200), - [1984] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 7, 0, 200), - [1986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 7, 0, 244), - [1988] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 7, 0, 244), - [1990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 7, 0, 245), - [1992] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 7, 0, 245), - [1994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, 0, 246), - [1996] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, 0, 246), - [1998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, 0, 247), - [2000] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, 0, 247), - [2002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, 0, 248), - [2004] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, 0, 248), - [2006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 7, 0, 249), - [2008] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 7, 0, 249), - [2010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, 0, 250), - [2012] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, 0, 250), - [2014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, 0, 251), - [2016] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, 0, 251), - [2018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, 0, 204), - [2020] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, 0, 204), - [2022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, 0, 252), - [2024] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, 0, 252), - [2026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, 0, 81), - [2028] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, 0, 81), - [2030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, 0, 123), - [2032] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, 0, 123), - [2034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 6, 0, 0), - [2036] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 6, 0, 0), - [2038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, 0, 214), - [2040] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, 0, 214), - [2042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, 0, 257), - [2044] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, 0, 257), - [2046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 219), - [2048] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 219), - [2050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 258), - [2052] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 258), - [2054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 221), - [2056] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 221), - [2058] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 259), - [2060] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 259), - [2062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 8, 0, 260), - [2064] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 8, 0, 260), - [2066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 8, 0, 261), - [2068] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 8, 0, 261), - [2070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 8, 0, 262), - [2072] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 8, 0, 262), - [2074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 8, 0, 263), - [2076] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 8, 0, 263), - [2078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 6, 0, 0), - [2080] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 6, 0, 0), - [2082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 8, 0, 231), - [2084] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 8, 0, 231), - [2086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 232), - [2088] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 232), - [2090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 265), - [2092] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 265), - [2094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 234), - [2096] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 234), - [2098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 266), - [2100] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 266), - [2102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 267), - [2104] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 267), - [2106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 268), - [2108] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 268), - [2110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 269), - [2112] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 269), - [2114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 270), - [2116] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 270), - [2118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 236), - [2120] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 236), - [2122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 271), - [2124] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 271), - [2126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 238), - [2128] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 238), - [2130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 272), - [2132] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 272), - [2134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, 0, 273), - [2136] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, 0, 273), - [2138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, 0, 274), - [2140] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, 0, 274), - [2142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, 0, 242), - [2144] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, 0, 242), - [2146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, 0, 275), - [2148] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, 0, 275), - [2150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 8, 0, 263), - [2152] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 8, 0, 263), - [2154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 8, 0, 276), - [2156] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 8, 0, 276), - [2158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 8, 0, 244), - [2160] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 8, 0, 244), - [2162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 8, 0, 245), - [2164] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 8, 0, 245), - [2166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 8, 0, 277), - [2168] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 8, 0, 277), - [2170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 8, 0, 278), - [2172] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 8, 0, 278), - [2174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, 0, 250), - [2176] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, 0, 250), - [2178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, 0, 279), - [2180] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, 0, 279), - [2182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, 0, 280), - [2184] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, 0, 280), - [2186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, 0, 281), - [2188] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, 0, 281), - [2190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 9, 0, 282), - [2192] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 9, 0, 282), - [2194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 9, 0, 283), - [2196] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 9, 0, 283), - [2198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 9, 0, 267), - [2200] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 9, 0, 267), - [2202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 9, 0, 284), - [2204] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 9, 0, 284), - [2206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 9, 0, 269), - [2208] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 9, 0, 269), - [2210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 9, 0, 285), - [2212] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 9, 0, 285), - [2214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, 0, 273), - [2216] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, 0, 273), - [2218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, 0, 286), - [2220] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, 0, 286), - [2222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 9, 0, 277), - [2224] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 9, 0, 277), - [2226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, 0, 287), - [2228] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, 0, 287), - [2230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, 0, 288), - [2232] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, 0, 288), - [2234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, 0, 280), - [2236] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, 0, 280), - [2238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, 0, 289), - [2240] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, 0, 289), - [2242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 10, 0, 290), - [2244] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 10, 0, 290), - [2246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 10, 0, 291), - [2248] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 10, 0, 291), - [2250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 10, 0, 287), - [2252] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 10, 0, 287), - [2254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 10, 0, 292), - [2256] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 10, 0, 292), - [2258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 127), - [2260] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 127), - [2262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 128), - [2264] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 128), - [2266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 86), - [2268] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 86), - [2270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 129), - [2272] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 129), - [2274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 130), - [2276] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 130), - [2278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 131), - [2280] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 131), - [2282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 5, 0, 107), - [2284] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 5, 0, 107), - [2286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 4, 0, 100), - [2288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 4, 0, 100), - [2290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 5, 0, 125), - [2292] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 5, 0, 125), - [2294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 5, 0, 132), - [2296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 5, 0, 132), - [2298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 3, 0, 0), - [2300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 3, 0, 0), - [2302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 5, 0, 117), - [2304] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 5, 0, 117), - [2306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 3, 0, 0), - [2308] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 3, 0, 0), - [2310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 33), - [2312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 33), - [2314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 80), - [2316] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 80), - [2318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 120), - [2320] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 120), - [2322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 135), - [2324] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 135), - [2326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 120), - [2328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 120), - [2330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 136), - [2332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 136), - [2334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 5, 0, 137), - [2336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 5, 0, 137), - [2338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 5, 0, 93), - [2340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 5, 0, 93), - [2342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 5, 0, 91), - [2344] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 5, 0, 91), - [2346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 3, 0, 33), - [2348] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 3, 0, 33), - [2350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 5, 0, 138), - [2352] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 5, 0, 138), - [2354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 5, 0, 120), - [2356] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 5, 0, 120), - [2358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 139), - [2360] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 139), - [2362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 140), - [2364] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 140), - [2366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 72), - [2368] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 72), - [2370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 141), - [2372] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 141), - [2374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 142), - [2376] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 142), - [2378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 143), - [2380] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 143), - [2382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_declaration, 4, 0, 103), - [2384] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_declaration, 4, 0, 103), - [2386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 5, 0, 60), - [2388] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 5, 0, 60), - [2390] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3254), - [2393] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1098), - [2396] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2793), - [2399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), - [2401] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3513), - [2404] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(875), - [2407] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3264), - [2410] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3391), - [2413] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2447), - [2416] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2326), - [2419] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2298), - [2422] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3426), - [2425] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3392), - [2428] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3173), - [2431] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(865), - [2434] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(834), - [2437] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3431), - [2440] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2015), - [2443] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2899), - [2446] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3432), - [2449] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3433), - [2452] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3434), - [2455] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2903), - [2458] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2274), - [2461] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1933), - [2464] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2131), - [2467] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3441), - [2470] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2067), - [2473] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3441), - [2476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, 0, 147), - [2478] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, 0, 147), - [2480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, 0, 148), - [2482] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, 0, 148), - [2484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, 0, 142), - [2486] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, 0, 142), - [2488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, 0, 144), - [2490] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, 0, 144), - [2492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 95), - [2494] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 95), - [2496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 142), - [2498] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 142), - [2500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 149), - [2502] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 149), - [2504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 144), - [2506] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 144), - [2508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 5, 0, 142), - [2510] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 5, 0, 142), - [2512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 5, 0, 144), - [2514] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 5, 0, 144), - [2516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 150), - [2518] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 150), - [2520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 5, 0, 151), - [2522] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 5, 0, 151), - [2524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 3, 0, 26), - [2526] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 3, 0, 26), - [2528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 3, 0, 37), - [2530] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 3, 0, 37), - [2532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 3, 0, 38), - [2534] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 3, 0, 38), - [2536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 5, 0, 6), - [2538] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 5, 0, 6), - [2540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 2, 0, 0), - [2542] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 2, 0, 0), - [2544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3254), - [2546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), - [2548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2793), - [2550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), - [2552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3513), - [2554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3264), - [2556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3391), - [2558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2326), - [2560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2298), - [2562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3426), - [2564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3392), - [2566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3173), - [2568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(865), - [2570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(834), - [2572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3431), - [2574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2899), - [2576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3432), - [2578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3433), - [2580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3434), - [2582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2903), - [2584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2274), - [2586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1933), - [2588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2131), - [2590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3441), - [2592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2067), - [2594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3441), - [2596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 6, 0, 60), - [2598] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 6, 0, 60), - [2600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 2, 0, 8), - [2602] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 2, 0, 8), - [2604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2165), - [2606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 6, 0, 6), - [2608] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 6, 0, 6), - [2610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, 0, 95), - [2612] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, 0, 95), - [2614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 3, 0, 6), - [2616] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 3, 0, 6), - [2618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 3, 0, 40), - [2620] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 3, 0, 40), - [2622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 3, 0, 7), - [2624] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 3, 0, 7), - [2626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, 0, 95), - [2628] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, 0, 95), - [2630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 3, 0, 33), - [2632] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 3, 0, 33), - [2634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 3, 0, 33), - [2636] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 3, 0, 33), - [2638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 3, 0, 7), - [2640] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 3, 0, 7), - [2642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 3, 0, 33), - [2644] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 3, 0, 33), - [2646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 4, 0, 0), - [2648] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 4, 0, 0), - [2650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_declaration, 3, 0, 43), - [2652] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_declaration, 3, 0, 43), - [2654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, 0, 121), - [2656] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, 0, 121), - [2658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, 0, 163), - [2660] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, 0, 163), - [2662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, 0, 164), - [2664] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, 0, 164), - [2666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 2, 0, 0), - [2668] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 2, 0, 0), - [2670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), - [2672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 3, 0, 0), - [2674] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 3, 0, 0), - [2676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, 0, 165), - [2678] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, 0, 165), - [2680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), - [2682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 3, 0, 50), - [2684] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 3, 0, 50), - [2686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 166), - [2688] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 166), - [2690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 167), - [2692] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 167), - [2694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 168), - [2696] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 168), - [2698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), - [2700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 4, 0, 60), - [2702] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 4, 0, 60), - [2704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 4, 0, 6), - [2706] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 4, 0, 6), - [2708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3091), - [2710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 169), - [2712] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 169), - [2714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 127), - [2716] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 127), - [2718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 171), - [2720] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 171), - [2722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2178), - [2724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 172), - [2726] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 172), - [2728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2912), - [2730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 173), - [2732] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 173), - [2734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 174), - [2736] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 174), - [2738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 175), - [2740] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 175), - [2742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 130), - [2744] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 130), - [2746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 176), - [2748] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 176), - [2750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 6, 0, 177), - [2752] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 6, 0, 177), - [2754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 4, 0, 100), - [2756] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 4, 0, 100), - [2758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 6, 0, 178), - [2760] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 6, 0, 178), - [2762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 6, 0, 179), - [2764] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 6, 0, 179), - [2766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 4, 0, 101), - [2768] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 4, 0, 101), - [2770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 102), - [2772] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 102), - [2774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 6, 0, 182), - [2776] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 6, 0, 182), - [2778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 95), - [2780] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 95), - [2782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_item, 4, 0, 0), - [2784] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_item, 4, 0, 0), - [2786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 4, 0, 0), - [2788] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 4, 0, 0), - [2790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, 0, 80), - [2792] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, 0, 80), - [2794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 187), - [2796] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 187), - [2798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 6, 0, 137), - [2800] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 6, 0, 137), - [2802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 6, 0, 188), - [2804] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 6, 0, 188), - [2806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 6, 0, 189), - [2808] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 6, 0, 189), - [2810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 6, 0, 138), - [2812] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 6, 0, 138), - [2814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 139), - [2816] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 139), - [2818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 2, 0, 0), - [2820] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 2, 0, 0), - [2822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, 0, 79), - [2824] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, 0, 79), - [2826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, 0, 80), - [2828] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, 0, 80), - [2830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 190), - [2832] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 190), - [2834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 4, 0, 81), - [2836] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 4, 0, 81), - [2838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 4, 0, 82), - [2840] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 4, 0, 82), - [2842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 191), - [2844] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 191), - [2846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 192), - [2848] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 192), - [2850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 193), - [2852] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 193), - [2854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 6, 0, 194), - [2856] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 6, 0, 194), - [2858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, 0, 197), - [2860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, 0, 197), - [2862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, 0, 86), - [2864] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, 0, 86), - [2866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, 0, 87), - [2868] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, 0, 87), - [2870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, 0, 26), - [2872] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, 0, 26), - [2874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, 0, 88), - [2876] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, 0, 88), - [2878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 4, 0, 89), - [2880] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 4, 0, 89), - [2882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, 0, 198), - [2884] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, 0, 198), - [2886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, 0, 147), - [2888] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, 0, 147), - [2890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 2, 0, 0), - [2892] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 2, 0, 0), - [2894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 33), - [2896] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 33), - [2898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 79), - [2900] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 79), - [2902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 91), - [2904] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 91), - [2906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 80), - [2908] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 80), - [2910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, 0, 79), - [2912] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, 0, 79), - [2914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, 0, 199), - [2916] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, 0, 199), - [2918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, 0, 92), - [2920] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, 0, 92), - [2922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 6, 0, 182), - [2924] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 6, 0, 182), - [2926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, 0, 80), - [2928] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, 0, 80), - [2930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 6, 0, 192), - [2932] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 6, 0, 192), - [2934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, 0, 95), - [2936] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, 0, 95), - [2938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 4, 0, 7), - [2940] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 4, 0, 7), - [2942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, 0, 144), - [2944] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, 0, 144), - [2946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, 0, 192), - [2948] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, 0, 192), - [2950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 6, 0, 200), - [2952] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 6, 0, 200), - [2954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 6, 0, 192), - [2956] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 6, 0, 192), - [2958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 201), - [2960] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 201), - [2962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 202), - [2964] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 202), - [2966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 203), - [2968] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 203), - [2970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, 0, 204), - [2972] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, 0, 204), - [2974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, 0, 205), - [2976] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, 0, 205), - [2978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 4, 0, 93), - [2980] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 4, 0, 93), - [2982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inner_attribute_item, 5, 0, 0), - [2984] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inner_attribute_item, 5, 0, 0), - [2986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 4, 0, 91), - [2988] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 4, 0, 91), - [2990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 5, 0, 117), - [2992] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 5, 0, 117), - [2994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 1, 0, 0), - [2996] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 1, 0, 0), - [2998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 4, 0, 95), - [3000] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 4, 0, 95), - [3002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 4, 0, 79), - [3004] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 4, 0, 79), - [3006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 7, 0, 60), - [3008] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 7, 0, 60), - [3010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 4, 0, 80), - [3012] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 4, 0, 80), - [3014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 7, 0, 6), - [3016] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 7, 0, 6), - [3018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2, 0, 0), - [3020] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2, 0, 0), - [3022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, 0, 72), - [3024] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, 0, 72), - [3026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 3, 0, 0), - [3028] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 3, 0, 0), - [3030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, 0, 94), - [3032] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, 0, 94), - [3034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 144), - [3036] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 144), - [3038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2174), - [3040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3509), - [3042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2073), - [3044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3661), - [3046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3504), - [3048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2355), - [3050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2391), - [3052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1966), - [3054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2526), - [3056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3534), - [3058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3578), - [3060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1564), - [3062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1570), - [3064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2898), - [3066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3589), - [3068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3017), - [3070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3512), - [3072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3023), - [3074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3612), - [3076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2193), - [3078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3559), - [3080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2166), - [3082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2181), - [3084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2185), - [3086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2522), - [3088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2171), - [3090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2177), - [3092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3092), - [3094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2179), - [3096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2913), - [3098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2915), - [3100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2919), - [3102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), - [3104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(814), - [3106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2518), - [3108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3327), - [3110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2357), - [3112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2981), - [3114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2984), - [3116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2563), - [3118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2539), - [3120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2505), - [3122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2462), - [3124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2510), - [3126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2474), - [3128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(837), - [3130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(820), - [3132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(839), - [3134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(836), - [3136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3296), - [3138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3601), - [3140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), - [3142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(950), - [3144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1553), - [3146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), - [3148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), - [3150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), - [3152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3152), - [3154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), - [3156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1626), - [3158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1744), - [3160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), - [3162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3283), - [3164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2169), - [3166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3153), - [3168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2758), - [3170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1081), - [3172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1533), - [3174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(934), - [3176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3654), - [3178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1645), - [3180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(887), - [3182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1041), - [3184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), - [3186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), - [3188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), - [3190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3325), - [3192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), - [3194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1100), - [3196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), - [3198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), - [3200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3242), - [3202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2155), - [3204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3330), - [3206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2670), - [3208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1071), - [3210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1529), - [3212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(916), - [3214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3638), - [3216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), - [3218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1019), - [3220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2965), - [3222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1022), - [3224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(889), - [3226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3334), - [3228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1483), - [3230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), - [3232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2033), - [3234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2122), - [3236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1947), - [3238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), - [3240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2132), - [3242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1946), - [3244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2046), - [3246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2110), - [3248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1945), - [3250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), - [3252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2135), - [3254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1949), - [3256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3178), - [3258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2040), - [3260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1803), - [3262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(946), - [3264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1696), - [3266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1710), - [3268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(920), - [3270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2140), - [3272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1943), - [3274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2134), - [3276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1948), - [3278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2136), - [3280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1942), - [3282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2109), - [3284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1944), - [3286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3077), - [3288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), - [3290] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 1, 0, 0), - [3292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 1, 0, 0), - [3294] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_parameters, 4, 0, 0), - [3296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_parameters, 4, 0, 0), - [3298] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), - [3300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lifetime, 2, 0, 0), - [3302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lifetime, 2, 0, 0), - [3304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2105), - [3306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 2, 0, 23), - [3308] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 2, 0, 23), - [3310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2104), - [3312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2106), - [3314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2106), - [3316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2119), - [3318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_remaining_field_pattern, 1, 0, 0), - [3320] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_remaining_field_pattern, 1, 0, 0), - [3322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2130), - [3324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2115), - [3326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2115), - [3328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2099), - [3330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 2, 0, 19), - [3332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 2, 0, 19), - [3334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2118), - [3336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2133), - [3338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2133), - [3340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_except_range, 1, 0, 1), - [3342] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_except_range, 1, 0, 1), - [3344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2565), - [3346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3145), - [3348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3435), - [3350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2721), - [3352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1, 0, 5), - [3354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), - [3356] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 1, 0, 5), - [3358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2580), - [3360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2616), - [3362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), - [3364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_type, 4, 0, 111), - [3366] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_type, 4, 0, 111), - [3368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2643), - [3370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_type, 2, 0, 28), - [3372] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_type, 2, 0, 28), - [3374] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_match_arm_repeat1, 2, 0, 0), - [3376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_arm_repeat1, 2, 0, 0), - [3378] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arm_repeat1, 2, 0, 0), SHIFT_REPEAT(3411), - [3381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dynamic_type, 2, 0, 28), - [3383] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dynamic_type, 2, 0, 28), - [3385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2533), - [3387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 3, 0, 0), - [3389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), - [3391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3303), - [3393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2877), - [3395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), - [3397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3150), - [3399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3677), - [3401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3020), - [3403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3416), - [3405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3591), - [3407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3591), - [3409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, 0, 47), - [3411] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, 0, 47), - [3413] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, 0, 46), - [3415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 46), - [3417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, 0, 17), - [3419] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, 0, 17), - [3421] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, 0, 16), - [3423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 16), - [3425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1, 0, 0), - [3427] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 1, 0, 0), - [3429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_type, 4, 0, 112), - [3431] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_type, 4, 0, 112), - [3433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, 0, 52), - [3435] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, 0, 52), - [3437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, 0, 51), - [3439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 51), - [3441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dynamic_type, 2, 0, 29), - [3443] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dynamic_type, 2, 0, 29), - [3445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 1, 0, 0), - [3447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 4, 0, 0), - [3449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_type, 2, 0, 29), - [3451] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_type, 2, 0, 29), - [3453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 2, 0, 7), - [3455] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 2, 0, 7), - [3457] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 2, 0, 6), - [3459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 2, 0, 6), - [3461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1051), - [3463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), - [3465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3485), - [3467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3273), - [3469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2199), - [3471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3314), - [3473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2987), - [3475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3651), - [3477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3651), - [3479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1972), - [3481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3544), - [3483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2212), - [3485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3181), - [3487] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3661), - [3490] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, 0, 180), - [3492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, 0, 180), - [3494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 4, 0, 180), - [3496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2111), - [3498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2672), - [3500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1049), - [3502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1567), - [3504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), - [3506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3603), - [3508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3286), - [3510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2219), - [3512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3022), - [3514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3655), - [3516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3655), - [3518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1565), - [3520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3375), - [3522] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 5, 0, 125), - [3524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 5, 0, 125), - [3526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 5, 0, 125), - [3528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2697), - [3530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 1, 0, 0), - [3532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1973), - [3534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2779), - [3536] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 5, 0, 0), - [3538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5, 0, 0), - [3540] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 6, 0, 0), - [3542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 6, 0, 0), - [3544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, 0, 47), - [3546] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 1, 0, 0), - [3548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 1, 0, 0), - [3550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, 0, 52), - [3552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, 0, 55), - [3554] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, 0, 55), - [3556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, 0, 56), - [3558] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, 0, 56), - [3560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 2, 0, 7), - [3562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2727), - [3564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2726), - [3566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3372), - [3568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2732), - [3570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2732), - [3572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3168), - [3574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3249), - [3576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3611), - [3578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2766), - [3580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2716), - [3582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2789), - [3584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2789), - [3586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, 0, 22), - [3588] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, 0, 22), - [3590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2604), - [3592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2588), - [3594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2609), - [3596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2609), - [3598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, 0, 24), - [3600] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, 0, 24), - [3602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, 0, 25), - [3604] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, 0, 25), - [3606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, 0, 27), - [3608] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, 0, 27), - [3610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), - [3612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, 0, 30), - [3614] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, 0, 30), - [3616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), - [3618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, 0, 31), - [3620] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, 0, 31), - [3622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), - [3624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2375), - [3626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 2, 0, 0), - [3628] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 2, 0, 0), - [3630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, 0, 73), - [3632] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, 0, 73), - [3634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), - [3636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, 0, 75), - [3638] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, 0, 75), - [3640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), - [3642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, 0, 76), - [3644] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, 0, 76), - [3646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), - [3648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 3, 0, 0), - [3650] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 3, 0, 0), - [3652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 3, 0, 0), - [3654] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 3, 0, 0), - [3656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, 0, 114), - [3658] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, 0, 114), - [3660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), - [3662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 4, 0, 0), - [3664] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 4, 0, 0), - [3666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 4, 0, 0), - [3668] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 4, 0, 0), - [3670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, 0, 17), - [3672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 5, 0, 0), - [3674] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 5, 0, 0), - [3676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 5, 0, 0), - [3678] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 5, 0, 0), - [3680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 6, 0, 0), - [3682] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 6, 0, 0), - [3684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 6, 0, 0), - [3686] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 6, 0, 0), - [3688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_expression, 1, 0, 0), - [3690] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_expression, 1, 0, 0), - [3692] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 3, 0, 0), - [3694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3, 0, 0), - [3696] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_match_arm_repeat1, 1, 0, 0), - [3698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_arm_repeat1, 1, 0, 0), - [3700] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 1, 0, 0), - [3702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 1, 0, 0), - [3704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1, 0, 0), - [3706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), - [3708] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1, 0, 0), - [3710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2781), - [3712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3321), - [3714] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4, 0, 0), - [3716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4, 0, 0), - [3718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 6, 0, 0), - [3720] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 6, 0, 0), - [3722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 6, 0, 0), - [3724] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 6, 0, 0), - [3726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 6, 0, 153), - [3728] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 6, 0, 153), - [3730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 6, 0, 0), - [3732] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 6, 0, 0), - [3734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 5, 0, 0), - [3736] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 5, 0, 0), - [3738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 5, 0, 157), - [3740] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 5, 0, 157), - [3742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_expression, 2, 0, 4), - [3744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), - [3746] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_expression, 2, 0, 4), - [3748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514), - [3750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3031), - [3752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, 0, 159), - [3754] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, 0, 159), - [3756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_bounds, 3, 0, 0), - [3758] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_bounds, 3, 0, 0), - [3760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, 0, 160), - [3762] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, 0, 160), - [3764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, 0, 161), - [3766] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, 0, 161), - [3768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unit_type, 2, 0, 0), - [3770] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unit_type, 2, 0, 0), - [3772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_removed_trait_bound, 2, 0, 0), - [3774] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_removed_trait_bound, 2, 0, 0), - [3776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type, 2, 0, 26), - [3778] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type, 2, 0, 26), - [3780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 6, 0, 183), - [3782] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 6, 0, 183), - [3784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 5, 0, 0), - [3786] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 5, 0, 0), - [3788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 3, 0, 41), - [3790] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 3, 0, 41), - [3792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 5, 0, 0), - [3794] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 5, 0, 0), - [3796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 7, 0, 0), - [3798] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 7, 0, 0), - [3800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 7, 0, 0), - [3802] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 7, 0, 0), - [3804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 5, 0, 134), - [3806] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 5, 0, 134), - [3808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_bounds, 4, 0, 0), - [3810] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_bounds, 4, 0, 0), - [3812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_bounds, 4, 0, 209), - [3814] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_bounds, 4, 0, 209), - [3816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 6, 0, 210), - [3818] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 6, 0, 210), - [3820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 2, 0, 0), - [3822] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 2, 0, 0), - [3824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 3, 0, 0), - [3826] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 3, 0, 0), - [3828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 3, 0, 71), - [3830] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 3, 0, 71), - [3832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type, 3, 0, 72), - [3834] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_type, 3, 0, 72), - [3836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type, 3, 0, 72), - [3838] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type, 3, 0, 72), - [3840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_expression, 2, 0, 0), - [3842] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_expression, 2, 0, 0), - [3844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_function, 3, 0, 48), - [3846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type_with_turbofish, 3, 0, 49), - [3848] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_function, 3, 0, 48), - [3850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bounded_type, 3, 0, 0), - [3852] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bounded_type, 3, 0, 0), - [3854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 2, 0, 0), - [3856] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 2, 0, 0), - [3858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, 0, 53), - [3860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 53), - [3862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), - [3864] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_await_expression, 3, 0, 0), - [3866] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_await_expression, 3, 0, 0), - [3868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_bounds, 5, 0, 209), - [3870] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_bounds, 5, 0, 209), - [3872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_bounds, 5, 0, 0), - [3874] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_bounds, 5, 0, 0), - [3876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 2, 0, 0), - [3878] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 2, 0, 0), - [3880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unit_expression, 2, 0, 0), - [3882] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unit_expression, 2, 0, 0), - [3884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type_with_turbofish, 3, 0, 58), - [3886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 4, 0, 0), - [3888] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 4, 0, 0), - [3890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 4, 0, 0), - [3892] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 4, 0, 0), - [3894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_expression, 4, 0, 61), - [3896] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_expression, 4, 0, 61), - [3898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 4, 0, 0), - [3900] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 4, 0, 0), - [3902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 4, 0, 0), - [3904] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 4, 0, 0), - [3906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type, 4, 0, 109), - [3908] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type, 4, 0, 109), - [3910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, 0, 110), - [3912] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, 0, 110), - [3914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, 0, 113), - [3916] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, 0, 113), - [3918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_bounds, 6, 0, 209), - [3920] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_bounds, 6, 0, 209), - [3922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_bounds, 6, 0, 0), - [3924] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_bounds, 6, 0, 0), - [3926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, 0, 115), - [3928] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, 0, 115), - [3930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_higher_ranked_trait_bound, 3, 0, 86), - [3932] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_higher_ranked_trait_bound, 3, 0, 86), - [3934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2637), - [3936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3148), - [3938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2607), - [3940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 4, 0, 90), - [3942] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 4, 0, 90), - [3944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_expression, 2, 0, 10), - [3946] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_expression, 2, 0, 10), - [3948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, 0, 0), - [3950] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 0), - [3952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 3, 0, 0), - [3954] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 3, 0, 0), - [3956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_expression, 3, 0, 18), - [3958] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_expression, 3, 0, 18), - [3960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_expression, 2, 0, 11), - [3962] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_expression, 2, 0, 11), - [3964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 3, 0, 0), - [3966] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 3, 0, 0), - [3968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, 0, 12), - [3970] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, 0, 12), - [3972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_expression, 4, 0, 0), - [3974] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_expression, 4, 0, 0), - [3976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 4, 0, 104), - [3978] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 4, 0, 104), - [3980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_expression, 2, 0, 0), - [3982] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_expression, 2, 0, 0), - [3984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_never_type, 1, 0, 0), - [3986] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_never_type, 1, 0, 0), - [3988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 5, 0, 0), - [3990] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 5, 0, 0), - [3992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 5, 0, 106), - [3994] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 5, 0, 106), - [3996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 5, 0, 0), - [3998] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 5, 0, 0), - [4000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 2, 0, 13), - [4002] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 2, 0, 13), - [4004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2658), - [4006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), - [4008] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), - [4010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 3, 0, 0), - [4012] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 3, 0, 0), - [4014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 4, 0, 0), - [4016] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 4, 0, 0), - [4018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_cast_expression, 3, 0, 57), - [4020] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_cast_expression, 3, 0, 57), - [4022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1974), - [4024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1053), - [4026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3388), - [4028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3363), - [4030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3315), - [4032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1563), - [4034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3175), - [4036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(261), - [4038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(259), - [4040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(247), - [4042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(272), - [4044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(262), - [4046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(263), - [4048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), - [4050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(275), - [4052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), - [4054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_assignment_expr, 3, 0, 53), - [4056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), - [4058] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_assignment_expr, 3, 0, 53), - [4060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(37), - [4062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), - [4064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, 0, 54), - [4066] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_expression, 3, 0, 54), - [4068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), - [4070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(274), - [4072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 3, 0, 0), - [4074] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 3, 0, 0), - [4076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2578), - [4078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), - [4080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2639), - [4082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2654), - [4084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), - [4086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_expression, 2, 0, 0), - [4088] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_expression, 2, 0, 0), - [4090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 2, 0, 0), - [4092] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 2, 0, 0), - [4094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_expression, 3, 0, 0), - [4096] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_expression, 3, 0, 0), - [4098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2443), - [4100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2668), - [4102] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 1, 0, 0), - [4104] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_visibility_modifier, 1, 0, 0), SHIFT(2691), - [4107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 1, 0, 0), + [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1367), + [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(186), + [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(872), + [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(824), + [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2764), + [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(291), + [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3649), + [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2014), + [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(38), + [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2463), + [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3614), + [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3647), + [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3768), + [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1582), + [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2004), + [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1949), + [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(175), + [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2112), + [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2301), + [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(40), + [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3429), + [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2650), + [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1530), + [101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2820), + [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1435), + [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2360), + [107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2544), + [109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), + [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1546), + [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3606), + [115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2039), + [117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1546), + [119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3648), + [121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1651), + [123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3455), + [125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1649), + [127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 1, 0, 0), + [129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), + [131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 2, 0, 0), + [133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), + [135] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1576), + [138] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(515), + [141] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2620), + [144] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(181), + [147] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(144), + [150] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(34), + [153] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(254), + [156] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1544), + [159] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(232), + [162] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(817), + [165] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(867), + [168] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(36), + [171] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3406), + [174] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3455), + [177] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3599), + [180] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2114), + [183] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(42), + [186] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2108), + [189] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1417), + [192] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1082), + [195] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3466), + [198] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3339), + [201] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(838), + [204] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1367), + [207] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(186), + [210] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(872), + [213] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(824), + [216] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2764), + [219] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(291), + [222] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3649), + [225] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2014), + [228] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(38), + [231] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2463), + [234] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3614), + [237] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3647), + [240] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3768), + [243] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1582), + [246] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2004), + [249] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1949), + [252] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(175), + [255] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2112), + [258] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2301), + [261] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(40), + [264] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3429), + [267] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2650), + [270] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1530), + [273] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2820), + [276] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1435), + [279] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1546), + [282] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3606), + [285] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2039), + [288] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1546), + [291] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3648), + [294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), + [296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), + [298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), + [300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), + [302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), + [304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1471), + [306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2144), + [308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2145), + [310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2119), + [312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2121), + [314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), + [316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), + [318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), + [320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), + [322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), + [324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), + [326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), + [328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), + [330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), + [332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), + [334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), + [336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), + [338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1647), + [340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1648), + [342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), + [344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1270), + [346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_expression, 2, 0, 0), + [348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), + [350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2717), + [352] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_expression, 2, 0, 0), + [354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(254), + [356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2494), + [358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2671), + [360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1528), + [362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(850), + [364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1053), + [366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(188), + [368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2685), + [370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(366), + [372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3143), + [374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2735), + [376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(189), + [378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2686), + [380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 1, 0, 0), + [382] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 1, 0, 0), + [384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 2, 0, 0), + [386] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 2, 0, 0), + [388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_expression, 1, 0, 0), + [390] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_expression, 1, 0, 0), + [392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(232), + [394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(817), + [396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(867), + [398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(41), + [400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 1, 0, 0), + [402] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 1, 0, 0), + [404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_expression, 1, 0, 0), + [406] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_expression, 1, 0, 0), + [408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3473), + [410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1584), + [412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), + [414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2805), + [416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1683), + [418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(275), + [420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3166), + [422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2573), + [424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(47), + [426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2654), + [428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1620), + [430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1618), + [432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(823), + [434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1519), + [436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(194), + [438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2616), + [440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(389), + [442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(45), + [444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3062), + [446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2775), + [448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(195), + [450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(46), + [452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3266), + [454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2617), + [456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1831), + [458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2674), + [460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1832), + [462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1653), + [464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3617), + [466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1653), + [468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3672), + [470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1583), + [472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1631), + [474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(356), + [476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3327), + [478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(60), + [480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1602), + [482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1545), + [484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(61), + [486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2992), + [488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(62), + [490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3168), + [492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1632), + [494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3465), + [496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1632), + [498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), + [500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), + [502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(218), + [504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(50), + [506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3721), + [508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(341), + [510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(56), + [512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1611), + [514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1543), + [516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(57), + [518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3092), + [520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(58), + [522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3331), + [524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(217), + [526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(65), + [528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(228), + [530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(66), + [532] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(145), + [535] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(157), + [538] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(75), + [541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), + [543] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(76), + [546] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(77), + [549] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(157), + [552] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(3481), + [555] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(174), + [558] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(2653), + [561] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(177), + [564] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(187), + [567] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(3666), + [570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(145), + [572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), + [574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), + [576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), + [578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), + [580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3502), + [582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(157), + [584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3481), + [586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), + [588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2653), + [590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(177), + [592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), + [594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3666), + [596] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(170), + [599] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(157), + [602] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(98), + [605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), + [607] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(99), + [610] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(100), + [613] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(157), + [616] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(3760), + [619] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(174), + [622] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(2653), + [625] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(177), + [628] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(170), + [631] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(3666), + [634] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(204), + [637] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(202), + [640] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(113), + [643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), + [645] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(114), + [648] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(115), + [651] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(202), + [654] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(204), + [657] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(201), + [660] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(2768), + [663] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(212), + [666] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(3613), + [669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2593), + [671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2786), + [673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), + [675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), + [677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3476), + [679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(204), + [681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), + [683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), + [685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), + [687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1850), + [689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), + [691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(202), + [693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), + [695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), + [697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2768), + [699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(212), + [701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3613), + [703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(170), + [705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), + [707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), + [709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2830), + [711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), + [713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3760), + [715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), + [719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), + [721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), + [723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2639), + [725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), + [727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2040), + [731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2031), + [733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2647), + [735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), + [737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), + [739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), + [741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), + [743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), + [745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1851), + [747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2710), + [749] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1270), + [752] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(181), + [755] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(144), + [758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), + [760] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(11), + [763] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(254), + [766] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1544), + [769] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(232), + [772] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(817), + [775] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(867), + [778] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(36), + [781] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(3406), + [784] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3526), + [787] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(3599), + [790] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(2494), + [793] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(42), + [796] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(2671), + [799] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1417), + [802] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1528), + [805] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(850), + [808] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1053), + [811] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(188), + [814] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(2685), + [817] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(366), + [820] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(38), + [823] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(3143), + [826] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(2735), + [829] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(189), + [832] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(40), + [835] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(3429), + [838] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(2686), + [841] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1530), + [844] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(2820), + [847] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1435), + [850] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1546), + [853] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(3606), + [856] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1546), + [859] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(3648), + [862] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__token_pattern, 1, 0, 0), + [864] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__token_pattern, 1, 0, 0), + [866] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 1, 0, 0), + [868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 1, 0, 0), + [870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1712), + [872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3470), + [874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3526), + [876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1719), + [878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3503), + [880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1857), + [882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3619), + [884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1521), + [886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3509), + [888] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__non_special_token_repeat1, 2, 0, 0), + [890] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__non_special_token_repeat1, 2, 0, 0), SHIFT_REPEAT(157), + [893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__non_special_token_repeat1, 2, 0, 0), + [895] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__non_special_token_repeat1, 2, 0, 0), SHIFT_REPEAT(157), + [898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), + [900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3688), + [902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1531), + [904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3471), + [906] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition_pattern, 5, 0, 0), + [908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition_pattern, 5, 0, 0), + [910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1539), + [912] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition_pattern, 6, 0, 0), + [914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition_pattern, 6, 0, 0), + [916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1716), + [918] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition, 5, 0, 0), + [920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition, 5, 0, 0), + [922] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition, 6, 0, 0), + [924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition, 6, 0, 0), + [926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1730), + [928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), + [930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), + [932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1846), + [934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1878), + [936] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__non_special_token_repeat1, 1, 0, 0), + [938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__non_special_token_repeat1, 1, 0, 0), + [940] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree_pattern, 2, 0, 0), + [942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree_pattern, 2, 0, 0), + [944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1891), + [946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1702), + [948] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__non_special_token_repeat1, 2, 0, 0), SHIFT_REPEAT(202), + [951] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__non_special_token_repeat1, 2, 0, 0), SHIFT_REPEAT(202), + [954] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree_pattern, 3, 0, 0), + [956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree_pattern, 3, 0, 0), + [958] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree, 2, 0, 0), + [960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree, 2, 0, 0), + [962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1704), + [964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1707), + [966] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree, 3, 0, 0), + [968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree, 3, 0, 0), + [970] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fragment_specifier, 1, 0, 0), + [972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fragment_specifier, 1, 0, 0), + [974] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_binding_pattern, 3, 0, 206), + [976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_binding_pattern, 3, 0, 206), + [978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), + [980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), + [982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), + [984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(839), + [986] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 1, 0, 0), + [988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 1, 0, 0), + [990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), + [992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), + [994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), + [996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(848), + [998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525), + [1000] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__literal, 1, 0, 0), + [1002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__literal, 1, 0, 0), + [1004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), + [1006] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean_literal, 1, 0, 0), + [1008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean_literal, 1, 0, 0), + [1010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), + [1012] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 2, 0, 0), + [1014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 2, 0, 0), + [1016] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__non_delim_token, 1, 0, 0), + [1018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__non_delim_token, 1, 0, 0), + [1020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1524), + [1022] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_string_literal, 3, 0, 0), + [1024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_string_literal, 3, 0, 0), + [1026] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 3, 0, 0), + [1028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 3, 0, 0), + [1030] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition_pattern, 4, 0, 0), + [1032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition_pattern, 4, 0, 0), + [1034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1536), + [1036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2086), + [1038] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition, 4, 0, 0), + [1040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition, 4, 0, 0), + [1042] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delim_token_tree, 2, 0, 0), + [1044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delim_token_tree, 2, 0, 0), + [1046] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delim_token_tree, 3, 0, 0), + [1048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delim_token_tree, 3, 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(aux_sym_delim_token_tree_repeat1, 1, 0, 0), + [1056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 1, 0, 0), + [1058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1537), + [1060] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1270), + [1063] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(181), + [1066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), + [1068] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(144), + [1071] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(11), + [1074] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(254), + [1077] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1544), + [1080] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(232), + [1083] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(817), + [1086] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(867), + [1089] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(36), + [1092] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(3406), + [1095] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(3599), + [1098] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2494), + [1101] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(42), + [1104] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2671), + [1107] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1417), + [1110] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1528), + [1113] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(850), + [1116] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1053), + [1119] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(188), + [1122] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2685), + [1125] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(366), + [1128] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(38), + [1131] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(3143), + [1134] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2735), + [1137] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(189), + [1140] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(40), + [1143] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(3429), + [1146] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2686), + [1149] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1530), + [1152] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2820), + [1155] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1435), + [1158] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1546), + [1161] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(3606), + [1164] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1546), + [1167] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(3648), + [1170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), + [1172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(277), + [1174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3342), + [1176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), + [1178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(319), + [1180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3240), + [1182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), + [1184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1513), + [1186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), + [1188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1458), + [1190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), + [1192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), + [1194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1836), + [1196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), + [1198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), + [1200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), + [1202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(297), + [1204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3172), + [1206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(352), + [1208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3303), + [1210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1852), + [1212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), + [1214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1916), + [1216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), + [1218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1481), + [1220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), + [1222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1770), + [1224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), + [1226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1729), + [1228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), + [1230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1883), + [1232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2048), + [1234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), + [1236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2451), + [1238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), + [1240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3278), + [1242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), + [1244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2242), + [1246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3395), + [1248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2052), + [1250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), + [1252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), + [1254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2545), + [1256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1046), + [1258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3304), + [1260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1569), + [1262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3534), + [1264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3309), + [1266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3737), + [1268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3685), + [1270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2373), + [1272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2142), + [1274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2010), + [1276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3294), + [1278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3724), + [1280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2156), + [1282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1081), + [1284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2240), + [1286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(825), + [1288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1449), + [1290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(805), + [1292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2095), + [1294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2688), + [1296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2088), + [1298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2335), + [1300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2787), + [1302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2336), + [1304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3763), + [1306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2044), + [1308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), + [1310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), + [1312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2229), + [1314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), + [1316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2522), + [1318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3702), + [1320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3287), + [1322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2037), + [1324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2234), + [1326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2364), + [1328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2704), + [1330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2341), + [1332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2412), + [1334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3615), + [1336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2030), + [1338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2502), + [1340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3773), + [1342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1672), + [1344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2481), + [1346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3485), + [1348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 3, 0, 34), + [1350] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 3, 0, 34), + [1352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2444), + [1354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2394), + [1356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3668), + [1358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 5, 0, 0), + [1360] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 5, 0, 0), + [1362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2041), + [1364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2730), + [1366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), + [1368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2520), + [1370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2619), + [1372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(852), + [1374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1368), + [1376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(191), + [1378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2766), + [1380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(385), + [1382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2705), + [1384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(192), + [1386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2767), + [1388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 6, 0, 0), + [1390] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 6, 0, 0), + [1392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2021), + [1394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), + [1396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 4, 0, 0), + [1398] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 4, 0, 0), + [1400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), + [1402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2, 0, 0), + [1404] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2, 0, 0), + [1406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), + [1408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3, 0, 0), + [1410] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 3, 0, 0), + [1412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), + [1414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2027), + [1416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1692), + [1418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1695), + [1420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1697), + [1422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2526), + [1424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), + [1426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), + [1428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2163), + [1430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3545), + [1432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3040), + [1434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(841), + [1436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3237), + [1438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2504), + [1440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 2, 0, 0), + [1442] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 2, 0, 0), + [1444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gen_block, 3, 0, 0), + [1446] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gen_block, 3, 0, 0), + [1448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_invocation, 3, 0, 46), + [1450] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_invocation, 3, 0, 46), + [1452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_block, 2, 0, 8), + [1454] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_block, 2, 0, 8), + [1456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2512), + [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_loop_expression, 4, 0, 96), + [1464] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_expression, 4, 0, 96), + [1466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 1, 0, 0), + [1468] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement, 1, 0, 0), + [1470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_except_range, 1, 0, 0), + [1472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_except_range, 1, 0, 0), + [1474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_async_block, 2, 0, 0), + [1476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_async_block, 2, 0, 0), + [1478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 1, 0, 0), + [1480] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 1, 0, 0), + [1482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_invocation, 3, 0, 32), + [1484] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_invocation, 3, 0, 32), + [1486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 4, 0, 83), + [1488] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 4, 0, 83), + [1490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_expression, 5, 0, 124), + [1492] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_expression, 5, 0, 124), + [1494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2, 0, 0), + [1496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2, 0, 0), + [1498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 3, 0, 0), + [1500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 3, 0, 0), + [1502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_expression, 7, 0, 253), + [1504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_expression, 7, 0, 253), + [1506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unsafe_block, 2, 0, 0), + [1508] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unsafe_block, 2, 0, 0), + [1510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_block, 2, 0, 0), + [1512] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_block, 2, 0, 0), + [1514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_expression, 3, 0, 39), + [1516] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_expression, 3, 0, 39), + [1518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 4, 0, 0), + [1520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 4, 0, 0), + [1522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_expression, 5, 0, 152), + [1524] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_expression, 5, 0, 152), + [1526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_expression, 2, 0, 8), + [1528] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_expression, 2, 0, 8), + [1530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_expression, 3, 0, 45), + [1532] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_expression, 3, 0, 45), + [1534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_async_block, 3, 0, 0), + [1536] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_async_block, 3, 0, 0), + [1538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2823), + [1540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2535), + [1542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2528), + [1544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2487), + [1546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2019), + [1548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), + [1550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2211), + [1552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2255), + [1554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), + [1556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3632), + [1558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3312), + [1560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2012), + [1562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2212), + [1564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2802), + [1566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2356), + [1568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), + [1570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(431), + [1572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2442), + [1574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(434), + [1576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2456), + [1578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(433), + [1580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(436), + [1582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2449), + [1584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(435), + [1586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2460), + [1588] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_label, 2, 0, 0), + [1590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_label, 2, 0, 0), + [1592] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_parameters, 2, 0, 0), + [1594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_parameters, 2, 0, 0), + [1596] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_parameters, 3, 0, 0), + [1598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_parameters, 3, 0, 0), + [1600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2153), + [1602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), + [1604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), + [1606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), + [1608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2042), + [1610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), + [1612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2521), + [1614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3348), + [1616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3611), + [1618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2128), + [1620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2651), + [1622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2948), + [1624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3474), + [1626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2034), + [1628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2525), + [1630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2474), + [1632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1613), + [1634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1610), + [1636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1614), + [1638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), + [1640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), + [1642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), + [1644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1996), + [1646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1989), + [1648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2000), + [1650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2090), + [1652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), + [1654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), + [1656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), + [1658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2325), + [1660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3346), + [1662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), + [1664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), + [1666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2996), + [1668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1378), + [1670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1567), + [1672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3297), + [1674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3441), + [1676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2772), + [1678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2187), + [1680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(834), + [1682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(836), + [1684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2440), + [1686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2618), + [1688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2421), + [1690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2721), + [1692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2721), + [1694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3646), + [1696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1820), + [1698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), + [1700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), + [1702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2434), + [1704] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, 0, 125), + [1706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, 0, 125), + [1708] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 3, 0, 180), + [1710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 3, 0, 180), + [1712] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2090), + [1715] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(634), + [1718] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(797), + [1721] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2325), + [1724] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3346), + [1727] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(833), + [1730] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(835), + [1733] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(867), + [1736] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2996), + [1739] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1378), + [1742] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1567), + [1745] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3297), + [1748] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3441), + [1751] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2772), + [1754] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2187), + [1757] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(834), + [1760] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(836), + [1763] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2440), + [1766] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2618), + [1769] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2421), + [1772] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2721), + [1775] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2721), + [1778] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3646), + [1781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 5, 0, 138), + [1783] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 5, 0, 138), + [1785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 3, 0, 42), + [1787] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 3, 0, 42), + [1789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_declaration, 3, 0, 44), + [1791] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_declaration, 3, 0, 44), + [1793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 172), + [1795] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 172), + [1797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 173), + [1799] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 173), + [1801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 174), + [1803] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 174), + [1805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 175), + [1807] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 175), + [1809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 130), + [1811] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 130), + [1813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 176), + [1815] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 176), + [1817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 2, 0, 0), + [1819] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 2, 0, 0), + [1821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 6, 0, 177), + [1823] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 6, 0, 177), + [1825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, 0, 144), + [1827] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, 0, 144), + [1829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 6, 0, 178), + [1831] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 6, 0, 178), + [1833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 6, 0, 179), + [1835] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 6, 0, 179), + [1837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 95), + [1839] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 95), + [1841] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 142), + [1843] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 142), + [1845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 6, 0, 60), + [1847] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 6, 0, 60), + [1849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 6, 0, 182), + [1851] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 6, 0, 182), + [1853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 149), + [1855] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 149), + [1857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3378), + [1859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), + [1861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2812), + [1863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), + [1865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3538), + [1867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3355), + [1869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3421), + [1871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2289), + [1873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2263), + [1875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3766), + [1877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3422), + [1879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3186), + [1881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(879), + [1883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(847), + [1885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3457), + [1887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2872), + [1889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3458), + [1891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3459), + [1893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3460), + [1895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2887), + [1897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2083), + [1899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1946), + [1901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2115), + [1903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2319), + [1905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3467), + [1907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2029), + [1909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3467), + [1911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 4, 0, 0), + [1913] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 4, 0, 0), + [1915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_statement, 1, 0, 0), + [1917] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_statement, 1, 0, 0), + [1919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, 0, 80), + [1921] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, 0, 80), + [1923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 187), + [1925] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 187), + [1927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 6, 0, 137), + [1929] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 6, 0, 137), + [1931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 6, 0, 188), + [1933] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 6, 0, 188), + [1935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 6, 0, 189), + [1937] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 6, 0, 189), + [1939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 2, 0, 0), + [1941] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 2, 0, 0), + [1943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 6, 0, 138), + [1945] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 6, 0, 138), + [1947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 139), + [1949] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 139), + [1951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), + [1953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 4, 0, 60), + [1955] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 4, 0, 60), + [1957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 190), + [1959] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 190), + [1961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 4, 0, 6), + [1963] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 4, 0, 6), + [1965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 2, 0, 8), + [1967] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 2, 0, 8), + [1969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 1, 0, 0), + [1971] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 1, 0, 0), + [1973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2, 0, 0), + [1975] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2, 0, 0), + [1977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 191), + [1979] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 191), + [1981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 192), + [1983] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 192), + [1985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 193), + [1987] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 193), + [1989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 6, 0, 194), + [1991] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 6, 0, 194), + [1993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, 0, 197), + [1995] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, 0, 197), + [1997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, 0, 198), + [1999] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, 0, 198), + [2001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, 0, 147), + [2003] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, 0, 147), + [2005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, 0, 199), + [2007] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, 0, 199), + [2009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 6, 0, 182), + [2011] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 6, 0, 182), + [2013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 144), + [2015] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 144), + [2017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 6, 0, 192), + [2019] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 6, 0, 192), + [2021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, 0, 95), + [2023] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, 0, 95), + [2025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, 0, 144), + [2027] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, 0, 144), + [2029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, 0, 192), + [2031] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, 0, 192), + [2033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 6, 0, 200), + [2035] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 6, 0, 200), + [2037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 6, 0, 192), + [2039] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 6, 0, 192), + [2041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 201), + [2043] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 201), + [2045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 202), + [2047] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 202), + [2049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 203), + [2051] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 203), + [2053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, 0, 204), + [2055] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, 0, 204), + [2057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, 0, 205), + [2059] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, 0, 205), + [2061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 3, 0, 33), + [2063] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 3, 0, 33), + [2065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 6, 0, 6), + [2067] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 6, 0, 6), + [2069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 5, 0, 142), + [2071] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 5, 0, 142), + [2073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 3, 0, 26), + [2075] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 3, 0, 26), + [2077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 3, 0, 37), + [2079] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 3, 0, 37), + [2081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 3, 0, 38), + [2083] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 3, 0, 38), + [2085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 5, 0, 144), + [2087] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 5, 0, 144), + [2089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 150), + [2091] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 150), + [2093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 7, 0, 60), + [2095] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 7, 0, 60), + [2097] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 7, 0, 6), + [2099] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 7, 0, 6), + [2101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 5, 0, 151), + [2103] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 5, 0, 151), + [2105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, 0, 147), + [2107] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, 0, 147), + [2109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_item, 4, 0, 0), + [2111] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_item, 4, 0, 0), + [2113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, 0, 148), + [2115] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, 0, 148), + [2117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 4, 0, 0), + [2119] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 4, 0, 0), + [2121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 7, 0, 211), + [2123] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 7, 0, 211), + [2125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 5, 0, 0), + [2127] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 5, 0, 0), + [2129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, 0, 142), + [2131] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, 0, 142), + [2133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, 0, 214), + [2135] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, 0, 214), + [2137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, 0, 215), + [2139] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, 0, 215), + [2141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, 0, 164), + [2143] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, 0, 164), + [2145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, 0, 216), + [2147] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, 0, 216), + [2149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 166), + [2151] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 166), + [2153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 217), + [2155] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 217), + [2157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 168), + [2159] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 168), + [2161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 218), + [2163] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 218), + [2165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 219), + [2167] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 219), + [2169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 220), + [2171] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 220), + [2173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 221), + [2175] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 221), + [2177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 222), + [2179] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 222), + [2181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 172), + [2183] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 172), + [2185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 223), + [2187] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 223), + [2189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 174), + [2191] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 174), + [2193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 2, 0, 0), + [2195] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 2, 0, 0), + [2197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 224), + [2199] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 224), + [2201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 7, 0, 225), + [2203] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 7, 0, 225), + [2205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 7, 0, 226), + [2207] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 7, 0, 226), + [2209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 7, 0, 227), + [2211] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 7, 0, 227), + [2213] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, 0, 121), + [2215] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, 0, 121), + [2217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, 0, 163), + [2219] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, 0, 163), + [2221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 7, 0, 228), + [2223] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 7, 0, 228), + [2225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, 0, 164), + [2227] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, 0, 164), + [2229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 7, 0, 211), + [2231] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 7, 0, 211), + [2233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, 0, 79), + [2235] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, 0, 79), + [2237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 5, 0, 0), + [2239] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 5, 0, 0), + [2241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, 0, 80), + [2243] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, 0, 80), + [2245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 7, 0, 188), + [2247] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 7, 0, 188), + [2249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 4, 0, 81), + [2251] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 4, 0, 81), + [2253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 4, 0, 82), + [2255] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 4, 0, 82), + [2257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 7, 0, 189), + [2259] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 7, 0, 189), + [2261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 7, 0, 231), + [2263] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 7, 0, 231), + [2265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, 0, 86), + [2267] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, 0, 86), + [2269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, 0, 87), + [2271] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, 0, 87), + [2273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 232), + [2275] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 232), + [2277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, 0, 26), + [2279] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, 0, 26), + [2281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, 0, 88), + [2283] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, 0, 88), + [2285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 233), + [2287] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 233), + [2289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 234), + [2291] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 234), + [2293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 4, 0, 89), + [2295] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 4, 0, 89), + [2297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 235), + [2299] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 235), + [2301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 236), + [2303] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 236), + [2305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 237), + [2307] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 237), + [2309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 238), + [2311] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 238), + [2313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 239), + [2315] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 239), + [2317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, 0, 240), + [2319] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, 0, 240), + [2321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, 0, 197), + [2323] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, 0, 197), + [2325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, 0, 241), + [2327] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, 0, 241), + [2329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 2, 0, 0), + [2331] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 2, 0, 0), + [2333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 33), + [2335] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 33), + [2337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, 0, 242), + [2339] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, 0, 242), + [2341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 79), + [2343] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 79), + [2345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 91), + [2347] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 91), + [2349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 80), + [2351] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 80), + [2353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, 0, 243), + [2355] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, 0, 243), + [2357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, 0, 79), + [2359] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, 0, 79), + [2361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, 0, 92), + [2363] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, 0, 92), + [2365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, 0, 80), + [2367] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, 0, 80), + [2369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1987), + [2371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), + [2373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3135), + [2375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), + [2377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2084), + [2379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), + [2381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3623), + [2383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3419), + [2385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2703), + [2387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2015), + [2389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2698), + [2391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2698), + [2393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), + [2395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 4, 0, 7), + [2397] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 4, 0, 7), + [2399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 4, 0, 93), + [2401] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 4, 0, 93), + [2403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 4, 0, 91), + [2405] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 4, 0, 91), + [2407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 4, 0, 79), + [2409] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 4, 0, 79), + [2411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 4, 0, 80), + [2413] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 4, 0, 80), + [2415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, 0, 72), + [2417] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, 0, 72), + [2419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, 0, 94), + [2421] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, 0, 94), + [2423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, 0, 95), + [2425] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, 0, 95), + [2427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 7, 0, 144), + [2429] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 7, 0, 144), + [2431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), + [2433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 4, 0, 0), + [2435] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 4, 0, 0), + [2437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 4, 0, 96), + [2439] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 4, 0, 96), + [2441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 4, 0, 101), + [2443] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 4, 0, 101), + [2445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 7, 0, 200), + [2447] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 7, 0, 200), + [2449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 3, 0, 0), + [2451] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 3, 0, 0), + [2453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 3, 0, 0), + [2455] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 3, 0, 0), + [2457] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3378), + [2460] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1119), + [2463] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2812), + [2466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), + [2468] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3538), + [2471] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(867), + [2474] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3355), + [2477] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3421), + [2480] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2373), + [2483] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2289), + [2486] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2263), + [2489] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3766), + [2492] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3422), + [2495] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3186), + [2498] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(879), + [2501] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(847), + [2504] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3457), + [2507] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2014), + [2510] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2872), + [2513] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3458), + [2516] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3459), + [2519] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3460), + [2522] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2887), + [2525] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2083), + [2528] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1946), + [2531] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2115), + [2534] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2319), + [2537] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3467), + [2540] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2029), + [2543] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3467), + [2546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 7, 0, 245), + [2548] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 7, 0, 245), + [2550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, 0, 95), + [2552] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, 0, 95), + [2554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 4, 0, 101), + [2556] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 4, 0, 101), + [2558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 4, 0, 102), + [2560] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 4, 0, 102), + [2562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 103), + [2564] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 103), + [2566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 95), + [2568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 95), + [2570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 4, 0, 95), + [2572] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 4, 0, 95), + [2574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_declaration, 4, 0, 104), + [2576] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_declaration, 4, 0, 104), + [2578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, 0, 246), + [2580] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, 0, 246), + [2582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, 0, 247), + [2584] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, 0, 247), + [2586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, 0, 248), + [2588] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, 0, 248), + [2590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 7, 0, 249), + [2592] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 7, 0, 249), + [2594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, 0, 250), + [2596] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, 0, 250), + [2598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, 0, 251), + [2600] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, 0, 251), + [2602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, 0, 204), + [2604] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, 0, 204), + [2606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, 0, 252), + [2608] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, 0, 252), + [2610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, 0, 165), + [2612] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, 0, 165), + [2614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 166), + [2616] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 166), + [2618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 5, 0, 60), + [2620] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 5, 0, 60), + [2622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 3, 0, 6), + [2624] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 3, 0, 6), + [2626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 3, 0, 40), + [2628] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 3, 0, 40), + [2630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 6, 0, 0), + [2632] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 6, 0, 0), + [2634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, 0, 214), + [2636] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, 0, 214), + [2638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, 0, 257), + [2640] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, 0, 257), + [2642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 5, 0, 6), + [2644] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 5, 0, 6), + [2646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2201), + [2648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 219), + [2650] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 219), + [2652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 258), + [2654] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 258), + [2656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 221), + [2658] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 221), + [2660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 259), + [2662] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 259), + [2664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 8, 0, 260), + [2666] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 8, 0, 260), + [2668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 8, 0, 261), + [2670] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 8, 0, 261), + [2672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 8, 0, 262), + [2674] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 8, 0, 262), + [2676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 167), + [2678] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 167), + [2680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 8, 0, 263), + [2682] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 8, 0, 263), + [2684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 6, 0, 0), + [2686] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 6, 0, 0), + [2688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 8, 0, 231), + [2690] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 8, 0, 231), + [2692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inner_attribute_item, 5, 0, 0), + [2694] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inner_attribute_item, 5, 0, 0), + [2696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 5, 0, 117), + [2698] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 5, 0, 117), + [2700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 232), + [2702] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 232), + [2704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 265), + [2706] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 265), + [2708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 234), + [2710] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 234), + [2712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 266), + [2714] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 266), + [2716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 267), + [2718] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 267), + [2720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 268), + [2722] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 268), + [2724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 269), + [2726] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 269), + [2728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 270), + [2730] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 270), + [2732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 236), + [2734] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 236), + [2736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 3, 0, 0), + [2738] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 3, 0, 0), + [2740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 271), + [2742] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 271), + [2744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, 0, 120), + [2746] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, 0, 120), + [2748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, 0, 121), + [2750] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, 0, 121), + [2752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 238), + [2754] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 238), + [2756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, 0, 122), + [2758] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, 0, 122), + [2760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, 0, 81), + [2762] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, 0, 81), + [2764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, 0, 123), + [2766] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, 0, 123), + [2768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 272), + [2770] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 272), + [2772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 8, 0, 273), + [2774] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 8, 0, 273), + [2776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 168), + [2778] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 168), + [2780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, 0, 274), + [2782] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, 0, 274), + [2784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, 0, 275), + [2786] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, 0, 275), + [2788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 127), + [2790] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 127), + [2792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 128), + [2794] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 128), + [2796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 86), + [2798] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 86), + [2800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 129), + [2802] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 129), + [2804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 130), + [2806] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 130), + [2808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 131), + [2810] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 131), + [2812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 5, 0, 107), + [2814] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 5, 0, 107), + [2816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, 0, 242), + [2818] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, 0, 242), + [2820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 5, 0, 125), + [2822] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 5, 0, 125), + [2824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 5, 0, 132), + [2826] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 5, 0, 132), + [2828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, 0, 276), + [2830] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, 0, 276), + [2832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 8, 0, 263), + [2834] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 8, 0, 263), + [2836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 8, 0, 244), + [2838] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 8, 0, 244), + [2840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 5, 0, 117), + [2842] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 5, 0, 117), + [2844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 8, 0, 245), + [2846] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 8, 0, 245), + [2848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 3, 0, 0), + [2850] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 3, 0, 0), + [2852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 33), + [2854] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 33), + [2856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 80), + [2858] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 80), + [2860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 120), + [2862] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 120), + [2864] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 135), + [2866] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 135), + [2868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 120), + [2870] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 120), + [2872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 136), + [2874] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 136), + [2876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 5, 0, 137), + [2878] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 5, 0, 137), + [2880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 8, 0, 277), + [2882] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 8, 0, 277), + [2884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 5, 0, 93), + [2886] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 5, 0, 93), + [2888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 8, 0, 278), + [2890] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 8, 0, 278), + [2892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, 0, 250), + [2894] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, 0, 250), + [2896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 5, 0, 91), + [2898] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 5, 0, 91), + [2900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, 0, 279), + [2902] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, 0, 279), + [2904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, 0, 280), + [2906] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, 0, 280), + [2908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, 0, 281), + [2910] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, 0, 281), + [2912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 169), + [2914] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 169), + [2916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 5, 0, 120), + [2918] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 5, 0, 120), + [2920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 3, 0, 7), + [2922] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 3, 0, 7), + [2924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 9, 0, 282), + [2926] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 9, 0, 282), + [2928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 9, 0, 283), + [2930] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 9, 0, 283), + [2932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 9, 0, 267), + [2934] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 9, 0, 267), + [2936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 9, 0, 284), + [2938] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 9, 0, 284), + [2940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 9, 0, 269), + [2942] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 9, 0, 269), + [2944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 9, 0, 285), + [2946] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 9, 0, 285), + [2948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, 0, 274), + [2950] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, 0, 274), + [2952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, 0, 286), + [2954] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, 0, 286), + [2956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 9, 0, 277), + [2958] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 9, 0, 277), + [2960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 9, 0, 287), + [2962] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 9, 0, 287), + [2964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 127), + [2966] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 127), + [2968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, 0, 288), + [2970] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, 0, 288), + [2972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, 0, 289), + [2974] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, 0, 289), + [2976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, 0, 280), + [2978] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, 0, 280), + [2980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 139), + [2982] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 139), + [2984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, 0, 290), + [2986] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, 0, 290), + [2988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 140), + [2990] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 140), + [2992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 3, 0, 33), + [2994] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 3, 0, 33), + [2996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 72), + [2998] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 72), + [3000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 10, 0, 291), + [3002] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 10, 0, 291), + [3004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 10, 0, 292), + [3006] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 10, 0, 292), + [3008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 10, 0, 288), + [3010] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 10, 0, 288), + [3012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 10, 0, 293), + [3014] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 10, 0, 293), + [3016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 141), + [3018] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 141), + [3020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 3, 0, 33), + [3022] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 3, 0, 33), + [3024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 142), + [3026] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 142), + [3028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 11, 0, 294), + [3030] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 11, 0, 294), + [3032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 3, 0, 7), + [3034] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 3, 0, 7), + [3036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 143), + [3038] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 143), + [3040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 171), + [3042] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 171), + [3044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 3, 0, 33), + [3046] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 3, 0, 33), + [3048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 144), + [3050] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 144), + [3052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 7, 0, 244), + [3054] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 7, 0, 244), + [3056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2960), + [3058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2850), + [3060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2173), + [3062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2190), + [3064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1980), + [3066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2555), + [3068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3762), + [3070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3690), + [3072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3685), + [3074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1562), + [3076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1548), + [3078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2102), + [3080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3528), + [3082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2320), + [3084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2438), + [3086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3027), + [3088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3638), + [3090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3041), + [3092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3718), + [3094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2217), + [3096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3562), + [3098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2177), + [3100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3657), + [3102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2539), + [3104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3136), + [3106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3628), + [3108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2500), + [3110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2501), + [3112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2572), + [3114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2566), + [3116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2530), + [3118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3025), + [3120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2174), + [3122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3222), + [3124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2370), + [3126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2172), + [3128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2205), + [3130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2192), + [3132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2196), + [3134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2198), + [3136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), + [3138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(826), + [3140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2477), + [3142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2851), + [3144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2961), + [3146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2962), + [3148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2964), + [3150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3020), + [3152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(828), + [3154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(830), + [3156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2529), + [3158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(842), + [3160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(849), + [3162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3259), + [3164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3490), + [3166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), + [3168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(900), + [3170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3095), + [3172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1563), + [3174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), + [3176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), + [3178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), + [3180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3175), + [3182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), + [3184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1698), + [3186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1718), + [3188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), + [3190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3315), + [3192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2143), + [3194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3176), + [3196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2784), + [3198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1079), + [3200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1534), + [3202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(950), + [3204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3683), + [3206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1678), + [3208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(993), + [3210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1048), + [3212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), + [3214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), + [3216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), + [3218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3351), + [3220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), + [3222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1379), + [3224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1463), + [3226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), + [3228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3268), + [3230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2137), + [3232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3357), + [3234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2731), + [3236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1075), + [3238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1527), + [3240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(969), + [3242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3667), + [3244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), + [3246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(945), + [3248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), + [3250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(936), + [3252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2081), + [3254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1456), + [3256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(923), + [3258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), + [3260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2120), + [3262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1961), + [3264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), + [3266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2066), + [3268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1762), + [3270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1771), + [3272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2059), + [3274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2130), + [3276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1959), + [3278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(959), + [3280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2159), + [3282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1962), + [3284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1733), + [3286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2161), + [3288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1956), + [3290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(934), + [3292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3367), + [3294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3403), + [3296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3108), + [3298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2131), + [3300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1958), + [3302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2157), + [3304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1960), + [3306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2160), + [3308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1963), + [3310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2139), + [3312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1957), + [3314] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), + [3316] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 1, 0, 0), + [3318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 1, 0, 0), + [3320] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_parameters, 4, 0, 0), + [3322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_parameters, 4, 0, 0), + [3324] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), + [3326] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lifetime, 2, 0, 0), + [3328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lifetime, 2, 0, 0), + [3330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2147), + [3332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 2, 0, 19), + [3334] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 2, 0, 19), + [3336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2146), + [3338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2148), + [3340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2148), + [3342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2162), + [3344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_remaining_field_pattern, 1, 0, 0), + [3346] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_remaining_field_pattern, 1, 0, 0), + [3348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2136), + [3350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2140), + [3352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2140), + [3354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2124), + [3356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 2, 0, 23), + [3358] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 2, 0, 23), + [3360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2123), + [3362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2125), + [3364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2125), + [3366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1, 0, 5), + [3368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), + [3370] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 1, 0, 5), + [3372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2777), + [3374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2633), + [3376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), + [3378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_except_range, 1, 0, 1), + [3380] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_except_range, 1, 0, 1), + [3382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2742), + [3384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3286), + [3386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3599), + [3388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2744), + [3390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dynamic_type, 2, 0, 28), + [3392] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dynamic_type, 2, 0, 28), + [3394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2662), + [3396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_type, 2, 0, 28), + [3398] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_type, 2, 0, 28), + [3400] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_match_arm_repeat1, 2, 0, 0), + [3402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_arm_repeat1, 2, 0, 0), + [3404] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arm_repeat1, 2, 0, 0), SHIFT_REPEAT(3441), + [3407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_type, 4, 0, 111), + [3409] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_type, 4, 0, 111), + [3411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, 0, 52), + [3413] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, 0, 52), + [3415] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, 0, 51), + [3417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 51), + [3419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1984), + [3421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), + [3423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3469), + [3425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3173), + [3427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2178), + [3429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3017), + [3431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3621), + [3433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3621), + [3435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, 0, 17), + [3437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, 0, 17), + [3439] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, 0, 16), + [3441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 16), + [3443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1066), + [3445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), + [3447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3511), + [3449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3305), + [3451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2164), + [3453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3007), + [3455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3680), + [3457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3680), + [3459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1579), + [3461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), + [3463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3631), + [3465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3318), + [3467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2176), + [3469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3049), + [3471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3684), + [3473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3684), + [3475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_type, 2, 0, 29), + [3477] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_type, 2, 0, 29), + [3479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2515), + [3481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 1, 0, 0), + [3483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3332), + [3485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2844), + [3487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), + [3489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3658), + [3491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3228), + [3493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1061), + [3495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3344), + [3497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, 0, 48), + [3499] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, 0, 48), + [3501] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, 0, 47), + [3503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 47), + [3505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1, 0, 0), + [3507] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 1, 0, 0), + [3509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_type, 4, 0, 112), + [3511] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_type, 4, 0, 112), + [3513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1580), + [3515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3410), + [3517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 4, 0, 0), + [3519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1988), + [3521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3214), + [3523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2728), + [3525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 1, 0, 0), + [3527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dynamic_type, 2, 0, 29), + [3529] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dynamic_type, 2, 0, 29), + [3531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 3, 0, 0), + [3533] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3690), + [3536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 2, 0, 7), + [3538] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 2, 0, 7), + [3540] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 2, 0, 6), + [3542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 2, 0, 6), + [3544] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 1, 0, 0), + [3546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 1, 0, 0), + [3548] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 6, 0, 0), + [3550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 6, 0, 0), + [3552] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, 0, 180), + [3554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, 0, 180), + [3556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 4, 0, 180), + [3558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2129), + [3560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2837), + [3562] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 5, 0, 0), + [3564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5, 0, 0), + [3566] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 5, 0, 125), + [3568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 5, 0, 125), + [3570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 5, 0, 125), + [3572] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 3, 0, 0), + [3574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3, 0, 0), + [3576] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4, 0, 0), + [3578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4, 0, 0), + [3580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2672), + [3582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2804), + [3584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, 0, 48), + [3586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, 0, 52), + [3588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, 0, 55), + [3590] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, 0, 55), + [3592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, 0, 56), + [3594] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, 0, 56), + [3596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 2, 0, 7), + [3598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2659), + [3600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2646), + [3602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3411), + [3604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2706), + [3606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2706), + [3608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3193), + [3610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3274), + [3612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3645), + [3614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2689), + [3616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2687), + [3618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2692), + [3620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2692), + [3622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, 0, 22), + [3624] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, 0, 22), + [3626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2701), + [3628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2700), + [3630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2702), + [3632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2702), + [3634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, 0, 24), + [3636] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, 0, 24), + [3638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, 0, 25), + [3640] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, 0, 25), + [3642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, 0, 27), + [3644] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, 0, 27), + [3646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), + [3648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, 0, 30), + [3650] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, 0, 30), + [3652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), + [3654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, 0, 31), + [3656] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, 0, 31), + [3658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), + [3660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2395), + [3662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 2, 0, 0), + [3664] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 2, 0, 0), + [3666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, 0, 73), + [3668] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, 0, 73), + [3670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), + [3672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, 0, 75), + [3674] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, 0, 75), + [3676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), + [3678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, 0, 76), + [3680] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, 0, 76), + [3682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), + [3684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 3, 0, 0), + [3686] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 3, 0, 0), + [3688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 3, 0, 0), + [3690] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 3, 0, 0), + [3692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, 0, 114), + [3694] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, 0, 114), + [3696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), + [3698] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_match_arm_repeat1, 1, 0, 0), + [3700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_arm_repeat1, 1, 0, 0), + [3702] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 1, 0, 0), + [3704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 1, 0, 0), + [3706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 4, 0, 0), + [3708] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 4, 0, 0), + [3710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 4, 0, 0), + [3712] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 4, 0, 0), + [3714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 5, 0, 0), + [3716] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 5, 0, 0), + [3718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 5, 0, 0), + [3720] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 5, 0, 0), + [3722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1, 0, 0), + [3724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), + [3726] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1, 0, 0), + [3728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 6, 0, 0), + [3730] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 6, 0, 0), + [3732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 6, 0, 0), + [3734] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 6, 0, 0), + [3736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3182), + [3738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, 0, 17), + [3740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_expression, 1, 0, 0), + [3742] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_expression, 1, 0, 0), + [3744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_removed_trait_bound, 2, 0, 0), + [3746] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_removed_trait_bound, 2, 0, 0), + [3748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type, 2, 0, 26), + [3750] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type, 2, 0, 26), + [3752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_cast_expression, 3, 0, 57), + [3754] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_cast_expression, 3, 0, 57), + [3756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_function, 3, 0, 49), + [3758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type_with_turbofish, 3, 0, 58), + [3760] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_function, 3, 0, 49), + [3762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 7, 0, 0), + [3764] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 7, 0, 0), + [3766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_expression, 2, 0, 0), + [3768] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_expression, 2, 0, 0), + [3770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 4, 0, 0), + [3772] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 4, 0, 0), + [3774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 4, 0, 0), + [3776] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 4, 0, 0), + [3778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 3, 0, 0), + [3780] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 3, 0, 0), + [3782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 3, 0, 71), + [3784] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 3, 0, 71), + [3786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type, 3, 0, 72), + [3788] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_type, 3, 0, 72), + [3790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type, 3, 0, 72), + [3792] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type, 3, 0, 72), + [3794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_expression, 4, 0, 61), + [3796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), + [3798] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_expression, 4, 0, 61), + [3800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), + [3802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3109), + [3804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 2, 0, 0), + [3806] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 2, 0, 0), + [3808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bounded_type, 3, 0, 0), + [3810] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bounded_type, 3, 0, 0), + [3812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1986), + [3814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 6, 0, 183), + [3816] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 6, 0, 183), + [3818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 4, 0, 0), + [3820] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 4, 0, 0), + [3822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type, 4, 0, 109), + [3824] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type, 4, 0, 109), + [3826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 3, 0, 41), + [3828] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 3, 0, 41), + [3830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, 0, 110), + [3832] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, 0, 110), + [3834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type_with_turbofish, 3, 0, 50), + [3836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, 0, 113), + [3838] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, 0, 113), + [3840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_never_type, 1, 0, 0), + [3842] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_never_type, 1, 0, 0), + [3844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, 0, 115), + [3846] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, 0, 115), + [3848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 2, 0, 0), + [3850] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 2, 0, 0), + [3852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 5, 0, 0), + [3854] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 5, 0, 0), + [3856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 5, 0, 157), + [3858] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 5, 0, 157), + [3860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, 0, 159), + [3862] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, 0, 159), + [3864] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_bounds, 3, 0, 0), + [3866] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_bounds, 3, 0, 0), + [3868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, 0, 160), + [3870] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, 0, 160), + [3872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, 0, 161), + [3874] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, 0, 161), + [3876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 4, 0, 90), + [3878] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 4, 0, 90), + [3880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_expression, 2, 0, 10), + [3882] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_expression, 2, 0, 10), + [3884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 5, 0, 0), + [3886] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 5, 0, 0), + [3888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unit_type, 2, 0, 0), + [3890] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unit_type, 2, 0, 0), + [3892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_bounds, 4, 0, 0), + [3894] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_bounds, 4, 0, 0), + [3896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_bounds, 4, 0, 209), + [3898] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_bounds, 4, 0, 209), + [3900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 6, 0, 210), + [3902] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 6, 0, 210), + [3904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 3, 0, 0), + [3906] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 3, 0, 0), + [3908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_bounds, 5, 0, 209), + [3910] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_bounds, 5, 0, 209), + [3912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_bounds, 5, 0, 0), + [3914] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_bounds, 5, 0, 0), + [3916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_expression, 2, 0, 11), + [3918] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_expression, 2, 0, 11), + [3920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 3, 0, 0), + [3922] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 3, 0, 0), + [3924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_expression, 4, 0, 0), + [3926] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_expression, 4, 0, 0), + [3928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 4, 0, 105), + [3930] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 4, 0, 105), + [3932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, 0, 12), + [3934] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, 0, 12), + [3936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_expression, 2, 0, 0), + [3938] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_expression, 2, 0, 0), + [3940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 5, 0, 0), + [3942] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 5, 0, 0), + [3944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_bounds, 6, 0, 209), + [3946] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_bounds, 6, 0, 209), + [3948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_bounds, 6, 0, 0), + [3950] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_bounds, 6, 0, 0), + [3952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 5, 0, 106), + [3954] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 5, 0, 106), + [3956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 5, 0, 0), + [3958] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 5, 0, 0), + [3960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 2, 0, 13), + [3962] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 2, 0, 13), + [3964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 6, 0, 0), + [3966] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 6, 0, 0), + [3968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_higher_ranked_trait_bound, 3, 0, 86), + [3970] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_higher_ranked_trait_bound, 3, 0, 86), + [3972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, 0, 53), + [3974] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 53), + [3976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), + [3978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2656), + [3980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3171), + [3982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2624), + [3984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), + [3986] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), + [3988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 3, 0, 0), + [3990] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 3, 0, 0), + [3992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_await_expression, 3, 0, 0), + [3994] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_await_expression, 3, 0, 0), + [3996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_expression, 3, 0, 18), + [3998] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_expression, 3, 0, 18), + [4000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unit_expression, 2, 0, 0), + [4002] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unit_expression, 2, 0, 0), + [4004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 5, 0, 0), + [4006] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 5, 0, 0), + [4008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 5, 0, 134), + [4010] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 5, 0, 134), + [4012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1060), + [4014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3424), + [4016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 2, 0, 0), + [4018] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 2, 0, 0), + [4020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 4, 0, 0), + [4022] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 4, 0, 0), + [4024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 7, 0, 0), + [4026] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 7, 0, 0), + [4028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1581), + [4030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3199), + [4032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, 0, 0), + [4034] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 0), + [4036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 4, 0, 0), + [4038] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 4, 0, 0), + [4040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 6, 0, 0), + [4042] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 6, 0, 0), + [4044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 6, 0, 153), + [4046] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 6, 0, 153), + [4048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 6, 0, 0), + [4050] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 6, 0, 0), + [4052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2815), + [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}}, SHIFT(3341), + [4060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3206), + [4062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 3, 0, 0), + [4064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(313), + [4066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(314), + [4068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(315), + [4070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(316), + [4072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(317), + [4074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), + [4076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), + [4078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(321), + [4080] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 3, 0, 0), + [4082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), + [4084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(347), + [4086] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 1, 0, 0), + [4088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 1, 0, 0), + [4090] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_visibility_modifier, 1, 0, 0), SHIFT(3414), + [4093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 2, 0, 0), + [4095] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 2, 0, 0), + [4097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(39), + [4099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), + [4101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_assignment_expr, 3, 0, 53), + [4103] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_assignment_expr, 3, 0, 53), + [4105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, 0, 54), + [4107] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_expression, 3, 0, 54), [4109] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 4, 0, 0), [4111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 4, 0, 0), - [4113] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 5, 0, 133), - [4115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 5, 0, 133), - [4117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2581), - [4119] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_visibility_modifier, 1, 0, 0), SHIFT(3376), - [4122] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 5, 0, 0), - [4124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 5, 0, 0), - [4126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2126), - [4128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2806), - [4130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2594), - [4132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2495), - [4134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3422), - [4136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2807), - [4138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), - [4140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(39), - [4142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), - [4144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), - [4146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(287), - [4148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(288), - [4150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(289), - [4152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(290), - [4154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(291), - [4156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), - [4158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), - [4160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(294), - [4162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), - [4164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(296), - [4166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), - [4168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(297), - [4170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(61), - [4172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), - [4174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2438), - [4176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), - [4178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), - [4180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), - [4182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), - [4184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), - [4186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), - [4188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3356), - [4190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2504), - [4192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3390), - [4194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2488), - [4196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3177), - [4198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3705), - [4200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3274), - [4202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(64), - [4204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), - [4206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2502), - [4208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1630), - [4210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3112), - [4212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2976), - [4214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2468), - [4216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3668), - [4218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2470), - [4220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2541), - [4222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2541), - [4224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3164), - [4226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), - [4228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2, 0, 0), - [4230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3284), - [4232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3681), - [4234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), - [4236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), - [4238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), - [4240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), - [4242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1792), - [4244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), - [4246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), - [4248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), - [4250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), - [4252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), - [4254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), - [4256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), - [4258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3362), - [4260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 3, 0, 0), - [4262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), - [4264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509), - [4266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), - [4268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), - [4270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(322), - [4272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(323), - [4274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1690), - [4276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(324), - [4278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(325), - [4280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(326), - [4282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(329), - [4284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), - [4286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(332), - [4288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3094), - [4290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), - [4292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(304), - [4294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(305), - [4296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(306), - [4298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(307), - [4300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(308), - [4302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), - [4304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), - [4306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(311), - [4308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), - [4310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(313), - [4312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), - [4314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(314), - [4316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(66), - [4318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), - [4320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), - [4322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2820), - [4324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), - [4326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2698), - [4328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__let_chain, 3, 0, 0), - [4330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), - [4332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__condition, 1, 0, 0), - [4334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), - [4336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2978), - [4338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), - [4340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), - [4342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), - [4344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(51), - [4346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), - [4348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), - [4350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2780), - [4352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 5, 0, 256), - [4354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), - [4356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 3, 0, 145), - [4358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), - [4360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(331), - [4362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 4, 0, 195), - [4364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 3, 0, 146), - [4366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), - [4368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(63), - [4370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), - [4372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1892), - [4374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), - [4376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 3, 0, 180), - [4378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), - [4380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 3, 0, 162), - [4382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), - [4384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 4, 0, 196), - [4386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 4, 0, 212), - [4388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3074), - [4390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 4, 0, 213), - [4392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), - [4394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2741), - [4396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_field_initializer, 2, 0, 0), - [4398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), - [4400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2756), - [4402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), - [4404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1749), - [4406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), - [4408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2761), - [4410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), - [4412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), - [4414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2764), - [4416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), - [4418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2113), - [4420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), - [4422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 4, 0, 125), - [4424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), - [4426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), - [4428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), - [4430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), - [4432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1642), - [4434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_condition, 4, 0, 125), - [4436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), - [4438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2799), - [4440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1523), - [4442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), - [4444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), - [4446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), - [4448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), - [4450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517), - [4452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), - [4454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(49), - [4456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), - [4458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1797), - [4460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1814), - [4462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1844), - [4464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1284), - [4466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), - [4468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), - [4470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), - [4472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), - [4474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), - [4476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), - [4478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), - [4480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), - [4482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1711), - [4484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), - [4486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), - [4488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), - [4490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), - [4492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), - [4494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2039), - [4496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, 0, 116), - [4498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, 0, 18), - [4500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), - [4502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), - [4504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2813), - [4506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3633), - [4508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3210), - [4510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3114), - [4512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3624), - [4514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3624), - [4516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2785), - [4518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2708), - [4520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2636), - [4522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2800), - [4524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2674), - [4526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2808), - [4528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2809), - [4530] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_lifetimes, 6, 0, 0), - [4532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_lifetimes, 6, 0, 0), - [4534] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_lifetimes, 5, 0, 0), - [4536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_lifetimes, 5, 0, 0), - [4538] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_lifetimes, 4, 0, 0), - [4540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_lifetimes, 4, 0, 0), - [4542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2348), - [4544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2336), - [4546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2349), - [4548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2349), - [4550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3214), - [4552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3208), - [4554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3200), - [4556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3217), - [4558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3217), - [4560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3204), - [4562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3196), - [4564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3212), - [4566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3212), - [4568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), - [4570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2805), - [4572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2774), - [4574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), - [4576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern, 1, 0, 0), - [4578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), - [4580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2253), - [4582] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pattern, 1, 0, 0), - [4584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), - [4586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1037), - [4588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1536), - [4590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2819), - [4592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2645), - [4594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3163), - [4596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern, 1, 0, 1), - [4598] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pattern, 1, 0, 1), - [4600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2775), - [4602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1039), - [4604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1535), - [4606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3258), - [4608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2447), - [4610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2315), - [4612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3535), - [4614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3366), - [4616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3695), - [4618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2876), - [4620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3682), - [4622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3673), - [4624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3458), - [4626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3686), - [4628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2347), - [4630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1918), - [4632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2101), - [4634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2356), - [4636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3469), - [4638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3394), - [4640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3470), - [4642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3128), - [4644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3471), - [4646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3466), - [4648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3726), - [4650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3472), - [4652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2354), - [4654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1935), - [4656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2098), - [4658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3407), - [4660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3493), - [4662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), - [4664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), - [4666] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1, 0, 5), REDUCE(sym__pattern, 1, 0, 0), - [4669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2614), - [4671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3376), - [4673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), - [4675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), - [4677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2777), - [4679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2797), - [4681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), - [4683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), - [4685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2626), - [4687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), - [4689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2641), - [4691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), - [4693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), - [4695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3371), - [4697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3268), - [4699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), - [4701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3220), - [4703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3358), - [4705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), - [4707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(156), - [4709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_negative_literal, 2, 0, 0), - [4711] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_negative_literal, 2, 0, 0), - [4713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(877), - [4715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), - [4717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 1, 0, 35), - [4719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__literal_pattern, 1, 0, 0), - [4721] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__literal_pattern, 1, 0, 0), - [4723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), - [4725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2276), - [4727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2612), - [4729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), - [4731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1107), - [4733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1554), - [4735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2812), - [4737] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 2, 0, 6), REDUCE(sym_scoped_type_identifier, 2, 0, 7), - [4740] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 16), REDUCE(sym_scoped_type_identifier, 3, 0, 17), - [4743] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 46), REDUCE(sym_scoped_type_identifier, 3, 0, 47), - [4746] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 51), REDUCE(sym_scoped_type_identifier, 3, 0, 52), - [4749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2514), - [4751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), - [4753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3495), - [4755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3385), - [4757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), - [4759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), - [4761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2558), - [4763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2485), - [4765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_pattern, 3, 0, 68), - [4767] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_pattern, 3, 0, 68), - [4769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2487), - [4771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), - [4773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_modifier, 1, 0, 0), - [4775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3506), - [4777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, 0, 63), - [4779] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, 0, 63), - [4781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2798), - [4783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3609), - [4785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2665), - [4787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, 0, 67), - [4789] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, 0, 67), - [4791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3337), - [4793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, 0, 54), - [4795] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, 0, 54), - [4797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), - [4799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), - [4801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2851), - [4803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), - [4805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), - [4807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3524), - [4809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3454), - [4811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2566), - [4813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 2, 0, 21), - [4815] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 2, 0, 21), - [4817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, 0, 62), - [4819] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, 0, 62), - [4821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2966), - [4823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2872), - [4825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), - [4827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3120), - [4829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), - [4831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1841), - [4833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3568), - [4835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3323), - [4837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2853), - [4839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3629), - [4841] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 2, 0, 20), - [4843] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 2, 0, 20), - [4845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3468), - [4847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), - [4849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), - [4851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), - [4853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), - [4855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), - [4857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3579), - [4859] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_function_modifiers_repeat1, 1, 0, 0), - [4861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 2, 0, 0), - [4863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_or_pattern, 3, 0, 0), - [4865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 3, 0, 64), - [4867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 2, 0, 0), - [4869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ref_pattern, 2, 0, 0), - [4871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2319), - [4873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), - [4875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3427), - [4877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3619), - [4879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mut_pattern, 2, 0, 0), - [4881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_pattern, 2, 0, 0), - [4883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_or_pattern, 2, 0, 0), - [4885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2266), - [4887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2565), - [4889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 3, 0, 0), - [4891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 3, 0, 0), - [4893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), - [4895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3710), - [4897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3639), - [4899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), - [4901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3492), - [4903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_pattern, 3, 0, 0), - [4905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1828), - [4907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), - [4909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1810), - [4911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 5, 0, 0), - [4913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 5, 0, 0), - [4915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2637), - [4917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), - [4919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3635), - [4921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 5, 0, 64), - [4923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 5, 0, 65), - [4925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 3, 0, 64), - [4927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 3, 0, 65), - [4929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 5, 0, 70), - [4931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 4, 0, 0), - [4933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 4, 0, 0), - [4935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 5, 0, 64), - [4937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 6, 0, 64), - [4939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 6, 0, 65), - [4941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_captured_pattern, 3, 0, 0), - [4943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 4, 0, 64), - [4945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 6, 0, 70), - [4947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 6, 0, 64), - [4949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 4, 0, 65), - [4951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 4, 0, 70), - [4953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 4, 0, 64), - [4955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2615), - [4957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 3, 0, 70), - [4959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), - [4961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2606), - [4963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1105), - [4965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1538), - [4967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3247), - [4969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), - [4971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), - [4973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), - [4975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3139), - [4977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), - [4979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), - [4981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), - [4983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), - [4985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2159), - [4987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2121), - [4989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), - [4991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), - [4993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), - [4995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_bounds, 3, 0, 0), - [4997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), - [4999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), - [5001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), - [5003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), - [5005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), - [5007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3191), - [5009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), - [5011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), - [5013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), - [5015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), - [5017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2815), - [5019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3202), - [5021] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1, 0, 0), REDUCE(sym__pattern, 1, 0, 1), - [5024] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(81), - [5027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2, 0, 0), - [5029] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(82), - [5032] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(83), - [5035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), - [5037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), - [5039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), - [5041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), - [5043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2170), - [5045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_bounds, 2, 0, 0), - [5047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), - [5049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), - [5051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), - [5053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), - [5055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), - [5057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), - [5059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), - [5061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_trait_bounds_repeat1, 2, 0, 0), - [5063] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_trait_bounds_repeat1, 2, 0, 0), SHIFT_REPEAT(863), - [5066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2642), - [5068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), - [5070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), - [5072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), - [5074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), - [5076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), - [5078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), - [5080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), - [5082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), - [5084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), - [5086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), - [5088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), - [5090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), - [5092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), - [5094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), - [5096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), - [5098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), - [5100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2863), - [5102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3024), - [5104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3223), - [5106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3662), - [5108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3294), - [5110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3456), - [5112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), - [5114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_modifiers, 1, 0, 0), - [5116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2295), - [5118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2176), - [5120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3565), - [5122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1234), - [5124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), - [5126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), - [5128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), - [5130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2123), - [5132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), - [5134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), - [5136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), - [5138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_modifier, 2, 0, 0), - [5140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), - [5142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), - [5144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), - [5146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2146), - [5148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3698), - [5150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), - [5152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), - [5154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), - [5156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), - [5158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), - [5160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), - [5162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), - [5164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2630), - [5166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), - [5168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3018), - [5170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3547), - [5172] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(2447), - [5175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 2, 0, 0), - [5177] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(2295), - [5180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), - [5182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), - [5184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), - [5186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), - [5188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), - [5190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), - [5192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), - [5194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), - [5196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), - [5198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), - [5200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), - [5202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), - [5204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), - [5206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), - [5208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), - [5210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3259), - [5212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), - [5214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2985), - [5216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), - [5218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3557), - [5220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), - [5222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), - [5224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), - [5226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), - [5228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), - [5230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3474), - [5232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), - [5234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), - [5236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), - [5238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2182), - [5240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3503), - [5242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), - [5244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174), - [5246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2186), - [5248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 1, 0, 36), - [5250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), - [5252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2173), - [5254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2180), - [5256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3489), - [5258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3462), - [5260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3665), - [5262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1221), - [5264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2982), - [5266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3689), - [5268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3693), - [5270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 1, 0, 0), - [5272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(880), - [5274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3278), - [5276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), - [5278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), - [5280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 1, 0, 1), - [5282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), - [5284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), - [5286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2918), - [5288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3715), - [5290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), - [5292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3507), - [5294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), - [5296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1075), - [5298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2844), - [5300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2920), - [5302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 2, 0, 6), - [5304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), - [5306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3573), - [5308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 1, 0, 0), - [5310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), - [5312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3281), - [5314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3731), - [5316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3745), - [5318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3496), - [5320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3502), - [5322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3505), - [5324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3728), - [5326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3684), - [5328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 2, 0, 0), - [5330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(885), - [5332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3361), - [5334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), - [5336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), - [5338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), - [5340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), - [5342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1294), - [5344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), - [5346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1296), - [5348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), - [5350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), - [5352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), - [5354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), - [5356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), - [5358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), - [5360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), - [5362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), - [5364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), - [5366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), - [5368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), - [5370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), - [5372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), - [5374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), - [5376] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameters, 3, 0, 0), REDUCE(sym_tuple_struct_pattern, 4, 0, 64), - [5379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), - [5381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), - [5383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 3, 0, 0), - [5385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2149), - [5387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), - [5389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2091), - [5391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), - [5393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), - [5395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), - [5397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), - [5399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), - [5401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1983), - [5403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), - [5405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_where_clause_repeat1, 2, 0, 0), - [5407] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_where_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(1443), - [5410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), - [5412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), - [5414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), - [5416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 2, 0, 0), - [5418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), - [5420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), - [5422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2498), - [5424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), - [5426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), - [5428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), - [5430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1158), - [5432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), - [5434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161), - [5436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), - [5438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), - [5440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2158), - [5442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), - [5444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), - [5446] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameters, 2, 0, 0), REDUCE(sym_tuple_struct_pattern, 3, 0, 64), - [5449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3482), - [5451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3266), - [5453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3443), - [5455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3310), - [5457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1600), - [5459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), - [5461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), - [5463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), - [5465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), - [5467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), - [5469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), - [5471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), - [5473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), - [5475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), - [5477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2994), - [5479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2038), - [5481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3523), - [5483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, 0, 229), - [5485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), - [5487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), - [5489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 7, 0, 264), - [5491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, 0, 109), - [5493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 3, 0, 0), - [5495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), - [5497] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_unit_type, 2, 0, 0), REDUCE(sym_tuple_pattern, 2, 0, 0), - [5500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288), - [5502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__use_clause, 1, 0, 1), - [5504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2537), - [5506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3700), - [5508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2763), - [5510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1077), - [5512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3129), - [5514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), - [5516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), - [5518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2020), - [5520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), - [5522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), - [5524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), - [5526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), - [5528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), - [5530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), - [5532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), - [5534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), - [5536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2605), - [5538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2, 0, 0), - [5540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), - [5542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), - [5544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), - [5546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), - [5548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2822), - [5550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), - [5552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), - [5554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), - [5556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1670), - [5558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), - [5560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), - [5562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3744), - [5564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3272), - [5566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3322), - [5568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3570), - [5570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), - [5572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3007), - [5574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1714), - [5576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3657), - [5578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), - [5580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), - [5582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), - [5584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2778), - [5586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__use_clause, 1, 0, 0), - [5588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2344), - [5590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3459), - [5592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 6, 0, 229), - [5594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 3, 0, 26), - [5596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 6, 0, 109), - [5598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 6, 0, 264), - [5600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), - [5602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), - [5604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), - [5606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2728), - [5608] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__pattern, 1, 0, 0), SHIFT(2020), - [5611] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__pattern, 1, 0, 0), SHIFT(377), - [5614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2352), - [5616] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1, 0, 0), REDUCE(sym__pattern, 1, 0, 0), - [5619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, 0, 72), - [5621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, 0, 26), - [5623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), - [5625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 2, 0, 0), - [5627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), - [5629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lifetime_parameter, 1, 0, 36), - [5631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), - [5633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), - [5635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), - [5637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), - [5639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2692), - [5641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), - [5643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), - [5645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), - [5647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2676), - [5649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), - [5651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1073), - [5653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2839), - [5655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, 0, 184), - [5657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2547), - [5659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_predicate, 2, 0, 118), - [5661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_predicate, 2, 0, 119), - [5663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), - [5665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), - [5667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), - [5669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, 0, 184), - [5671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2184), - [5673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), - [5675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), - [5677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), - [5679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2928), - [5681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), - [5683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3437), - [5685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1232), - [5687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), - [5689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), - [5691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2881), - [5693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3730), - [5695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), - [5697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, 0, 72), - [5699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), - [5701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1980), - [5703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), - [5705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), - [5707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3052), - [5709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1965), - [5711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), - [5713] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2, 0, 0), SHIFT_REPEAT(202), - [5716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), - [5718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), - [5720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), - [5722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3109), - [5724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3107), - [5726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1581), - [5728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), - [5730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3068), - [5732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(149), - [5734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3269), - [5736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3305), - [5738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), - [5740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), - [5742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_rule, 3, 0, 54), - [5744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), - [5746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), - [5748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), - [5750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3156), - [5752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1725), - [5754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1726), - [5756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1727), - [5758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1728), - [5760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2365), - [5762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2717), - [5764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), - [5766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), - [5768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), - [5770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3165), - [5772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2399), - [5774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2718), - [5776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2085), - [5778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1990), - [5780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1056), - [5782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2967), - [5784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(174), - [5786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3000), - [5788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), - [5790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3002), - [5792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), - [5794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2082), - [5796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_binding, 3, 0, 154), - [5798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), - [5800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), - [5802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), - [5804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1502), - [5806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2709), - [5808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), - [5810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), - [5812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), - [5814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), - [5816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), - [5818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), - [5820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2080), - [5822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1969), - [5824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_binding, 4, 0, 207), - [5826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), - [5828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_slice_pattern_repeat1, 2, 0, 0), - [5830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1779), - [5832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1785), - [5834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1583), - [5836] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_slice_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(841), - [5839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1089), - [5841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1471), - [5843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), - [5845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3036), - [5847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(183), - [5849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, 0, 107), - [5851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2520), - [5853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), - [5855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 3, 0, 0), - [5857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), - [5859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), - [5861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), - [5863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1963), - [5865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3696), - [5867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), - [5869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2055), - [5871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), - [5873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), - [5875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2703), - [5877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), - [5879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2061), - [5881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), - [5883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), - [5885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2699), - [5887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), - [5889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), - [5891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), - [5893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2678), - [5895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), - [5897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), - [5899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), - [5901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2682), - [5903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, 0, 69), - [5905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), - [5907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), - [5909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), - [5911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), - [5913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2755), - [5915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 2, 0, 0), - [5917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2243), - [5919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), - [5921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1964), - [5923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3095), - [5925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), - [5927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), - [5929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3099), - [5931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), - [5933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), - [5935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), - [5937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), - [5939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), - [5941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1193), - [5943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), - [5945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2740), - [5947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2506), - [5949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), - [5951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), - [5953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2034), - [5955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2156), - [5957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), - [5959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2065), - [5961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), - [5963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), - [5965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2571), - [5967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), - [5969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), - [5971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), - [5973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), - [5975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1962), - [5977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3475), - [5979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1987), - [5981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_parameter, 4, 0, 117), - [5983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), - [5985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), - [5987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), - [5989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2619), - [5991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), - [5993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2157), - [5995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), - [5997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2823), - [5999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3058), - [6001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2, 0, 0), - [6003] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(3052), - [6006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2189), - [6008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), - [6010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3057), - [6012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(148), - [6014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), - [6016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), - [6018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1574), - [6020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1596), - [6022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), - [6024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), - [6026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2139), - [6028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), - [6030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), - [6032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2463), - [6034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), - [6036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1894), - [6038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), - [6040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2063), - [6042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), - [6044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2324), - [6046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2325), - [6048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2306), - [6050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1719), - [6052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2162), - [6054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), - [6056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), - [6058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), - [6060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), - [6062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), - [6064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 3, 0, 0), - [6066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), - [6068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1729), - [6070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), - [6072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), - [6074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), - [6076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3097), - [6078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2337), - [6080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3102), - [6082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2345), - [6084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 3, 0, 1), - [6086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), - [6088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 3, 0, 96), - [6090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_as_clause, 3, 0, 97), - [6092] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 3, 0, 0), - [6094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 3, 0, 98), - [6096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), - [6098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), - [6100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_as_clause, 3, 0, 99), - [6102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), - [6104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2206), - [6106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), - [6108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2235), - [6110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2224), - [6112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shorthand_field_initializer, 1, 0, 0), - [6114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), - [6116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2092), - [6118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), - [6120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2163), - [6122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), - [6124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), - [6126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2032), - [6128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), - [6130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), - [6132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), - [6134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2207), - [6136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), - [6138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_initializer_list_repeat1, 2, 0, 0), - [6140] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_initializer_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2205), - [6143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1206), - [6145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), - [6147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 1, 0, 66), - [6149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), - [6151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2187), - [6153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2320), - [6155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2164), - [6157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2457), - [6159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), - [6161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), - [6163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), - [6165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 3, 0, 72), - [6167] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2, 0, 0), SHIFT_REPEAT(451), - [6170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, 0, 26), - [6172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2511), - [6174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), - [6176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3497), - [6178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3343), - [6180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3486), - [6182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2194), - [6184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, 0, 185), - [6186] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, 0, 185), SHIFT_REPEAT(832), - [6189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), - [6191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shorthand_field_initializer, 2, 0, 0), - [6193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), - [6195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 3, 0, 155), - [6197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), - [6199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), - [6201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), - [6203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, 0, 230), - [6205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2328), - [6207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), - [6209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, 0, 186), - [6211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2302), - [6213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), - [6215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), - [6217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2210), - [6219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3670), - [6221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3417), - [6223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3723), - [6225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), - [6227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2093), - [6229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), - [6231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2408), - [6233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1246), - [6235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), - [6237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), - [6239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 3, 0, 156), - [6241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2213), - [6243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), - [6245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), - [6247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1268), - [6249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), - [6251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), - [6253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), + [4113] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_visibility_modifier, 1, 0, 0), SHIFT(2712), + [4116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), + [4118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2583), + [4120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2678), + [4122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), + [4124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), + [4126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(345), + [4128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_expression, 2, 0, 0), + [4130] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_expression, 2, 0, 0), + [4132] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 5, 0, 133), + [4134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 5, 0, 133), + [4136] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 5, 0, 0), + [4138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 5, 0, 0), + [4140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2811), + [4142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_expression, 3, 0, 0), + [4144] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_expression, 3, 0, 0), + [4146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2690), + [4148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2462), + [4150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2782), + [4152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2138), + [4154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2824), + [4156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2519), + [4158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3282), + [4160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2489), + [4162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3425), + [4164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2796), + [4166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2476), + [4168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3201), + [4170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), + [4172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(37), + [4174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), + [4176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), + [4178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), + [4180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), + [4182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(278), + [4184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(279), + [4186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(280), + [4188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(281), + [4190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(282), + [4192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), + [4194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), + [4196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(285), + [4198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), + [4200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(287), + [4202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), + [4204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(288), + [4206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(63), + [4208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), + [4210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3715), + [4212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), + [4214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), + [4216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2826), + [4218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), + [4220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), + [4222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2439), + [4224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3390), + [4226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3593), + [4228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(64), + [4230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), + [4232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), + [4234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), + [4236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3188), + [4238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 3, 0, 0), + [4240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), + [4242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), + [4244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), + [4246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), + [4248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1793), + [4250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), + [4252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), + [4254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2498), + [4256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1670), + [4258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2986), + [4260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2939), + [4262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2576), + [4264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3584), + [4266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2513), + [4268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2523), + [4270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2523), + [4272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), + [4274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), + [4276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), + [4278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), + [4280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3316), + [4282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), + [4284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), + [4286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), + [4288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2, 0, 0), + [4290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3398), + [4292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3306), + [4294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), + [4296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 3, 0, 180), + [4298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), + [4300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2910), + [4302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_field_initializer, 2, 0, 0), + [4304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), + [4306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), + [4308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1849), + [4310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3119), + [4312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), + [4314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 5, 0, 256), + [4316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 4, 0, 195), + [4318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(298), + [4320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(299), + [4322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(300), + [4324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(301), + [4326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(302), + [4328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), + [4330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), + [4332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(305), + [4334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), + [4336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(307), + [4338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), + [4340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(308), + [4342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(54), + [4344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), + [4346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 4, 0, 196), + [4348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(322), + [4350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(323), + [4352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(324), + [4354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(391), + [4356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(326), + [4358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), + [4360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), + [4362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(329), + [4364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), + [4366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(332), + [4368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(52), + [4370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), + [4372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 4, 0, 212), + [4374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__condition, 1, 0, 0), + [4376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), + [4378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 4, 0, 213), + [4380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), + [4382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(53), + [4384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), + [4386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_condition, 4, 0, 125), + [4388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), + [4390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(331), + [4392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), + [4394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2807), + [4396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1855), + [4398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), + [4400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), + [4402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2640), + [4404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), + [4406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__let_chain, 3, 0, 0), + [4408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), + [4410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), + [4412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), + [4414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2763), + [4416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), + [4418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2626), + [4420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3066), + [4422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), + [4424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2774), + [4426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), + [4428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 3, 0, 145), + [4430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 3, 0, 146), + [4432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1703), + [4434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), + [4436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2779), + [4438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), + [4440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2781), + [4442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 4, 0, 125), + [4444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), + [4446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), + [4448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2122), + [4450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), + [4452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), + [4454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), + [4456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), + [4458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), + [4460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), + [4462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1652), + [4464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 3, 0, 162), + [4466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), + [4468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2753), + [4470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2068), + [4472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), + [4474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1502), + [4476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), + [4478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, 0, 116), + [4480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(49), + [4482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), + [4484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1796), + [4486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1837), + [4488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, 0, 18), + [4490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1890), + [4492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), + [4494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), + [4496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), + [4498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), + [4500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), + [4502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), + [4504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), + [4506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), + [4508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1538), + [4510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), + [4512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1772), + [4514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), + [4516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), + [4518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), + [4520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), + [4522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), + [4524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), + [4526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), + [4528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), + [4530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), + [4532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), + [4534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2828), + [4536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3675), + [4538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3241), + [4540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3139), + [4542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3653), + [4544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3653), + [4546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2832), + [4548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2747), + [4550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2592), + [4552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2797), + [4554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2839), + [4556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2819), + [4558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2827), + [4560] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_lifetimes, 5, 0, 0), + [4562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_lifetimes, 5, 0, 0), + [4564] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_lifetimes, 4, 0, 0), + [4566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_lifetimes, 4, 0, 0), + [4568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_lifetimes, 6, 0, 0), + [4570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_lifetimes, 6, 0, 0), + [4572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2328), + [4574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2327), + [4576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2329), + [4578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2329), + [4580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3249), + [4582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3247), + [4584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3162), + [4586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3251), + [4588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3251), + [4590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3328), + [4592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3326), + [4594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3330), + [4596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3330), + [4598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), + [4600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2821), + [4602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2652), + [4604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), + [4606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2833), + [4608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern, 1, 0, 0), + [4610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), + [4612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2294), + [4614] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pattern, 1, 0, 0), + [4616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), + [4618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1047), + [4620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1575), + [4622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2598), + [4624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2373), + [4626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2322), + [4628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3495), + [4630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3426), + [4632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3496), + [4634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3153), + [4636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3497), + [4638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3491), + [4640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3756), + [4642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3498), + [4644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2258), + [4646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1950), + [4648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2116), + [4650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2311), + [4652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), + [4654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2014), + [4656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2928), + [4658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3610), + [4660] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 1, 0, 0), SHIFT(2734), + [4663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3234), + [4665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3211), + [4667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2271), + [4669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3512), + [4671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3236), + [4673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3520), + [4675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3521), + [4677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3542), + [4679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3552), + [4681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2225), + [4683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1938), + [4685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2107), + [4687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2298), + [4689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern, 1, 0, 1), + [4691] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pattern, 1, 0, 1), + [4693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2800), + [4695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1045), + [4697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1571), + [4699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3289), + [4701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3299), + [4703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2799), + [4705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3298), + [4707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3654), + [4709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), + [4711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), + [4713] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1, 0, 5), REDUCE(sym__pattern, 1, 0, 0), + [4716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2660), + [4718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), + [4720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), + [4722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3392), + [4724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2669), + [4726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), + [4728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3414), + [4730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), + [4732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3250), + [4734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), + [4736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3409), + [4738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), + [4740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), + [4742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2814), + [4744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), + [4746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2631), + [4748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), + [4750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_negative_literal, 2, 0, 0), + [4752] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_negative_literal, 2, 0, 0), + [4754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), + [4756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(167), + [4758] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 51), REDUCE(sym_scoped_type_identifier, 3, 0, 52), + [4761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), + [4763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2284), + [4765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2629), + [4767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), + [4769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1384), + [4771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1558), + [4773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2834), + [4775] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 2, 0, 6), REDUCE(sym_scoped_type_identifier, 2, 0, 7), + [4778] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 47), REDUCE(sym_scoped_type_identifier, 3, 0, 48), + [4781] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 16), REDUCE(sym_scoped_type_identifier, 3, 0, 17), + [4784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__literal_pattern, 1, 0, 0), + [4786] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__literal_pattern, 1, 0, 0), + [4788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(863), + [4790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), + [4792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 1, 0, 35), + [4794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2482), + [4796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2490), + [4798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3706), + [4800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3230), + [4802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2571), + [4804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_modifier, 1, 0, 0), + [4806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3590), + [4808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3472), + [4810] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_function_modifiers_repeat1, 1, 0, 0), + [4812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), + [4814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), + [4816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2537), + [4818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3536), + [4820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_pattern, 3, 0, 68), + [4822] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_pattern, 3, 0, 68), + [4824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2606), + [4826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3494), + [4828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3533), + [4830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1277), + [4832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), + [4834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, 0, 67), + [4836] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, 0, 67), + [4838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3370), + [4840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, 0, 54), + [4842] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, 0, 54), + [4844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2694), + [4846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2708), + [4848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3400), + [4850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3073), + [4852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), + [4854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), + [4856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3627), + [4858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3637), + [4860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), + [4862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), + [4864] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 2, 0, 20), + [4866] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 2, 0, 20), + [4868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2742), + [4870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1709), + [4872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3708), + [4874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), + [4876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 2, 0, 21), + [4878] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 2, 0, 21), + [4880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2656), + [4882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, 0, 62), + [4884] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, 0, 62), + [4886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, 0, 63), + [4888] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, 0, 63), + [4890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2919), + [4892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3148), + [4894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2878), + [4896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), + [4898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2888), + [4900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), + [4902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), + [4904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), + [4906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), + [4908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3163), + [4910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ref_pattern, 2, 0, 0), + [4912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2371), + [4914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), + [4916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3492), + [4918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3234), + [4920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3557), + [4922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), + [4924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3518), + [4926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), + [4928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), + [4930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1866), + [4932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1701), + [4934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1486), + [4936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 6, 0, 64), + [4938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 4, 0, 0), + [4940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 4, 0, 0), + [4942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), + [4944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3235), + [4946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 3, 0, 70), + [4948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3430), + [4950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 4, 0, 64), + [4952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 3, 0, 0), + [4954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 4, 0, 65), + [4956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 4, 0, 70), + [4958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 4, 0, 64), + [4960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 3, 0, 0), + [4962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 3, 0, 65), + [4964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2623), + [4966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1382), + [4968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1555), + [4970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3273), + [4972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_or_pattern, 3, 0, 0), + [4974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 6, 0, 65), + [4976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 5, 0, 0), + [4978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_pattern, 2, 0, 0), + [4980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 5, 0, 0), + [4982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), + [4984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), + [4986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_pattern, 3, 0, 0), + [4988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 5, 0, 64), + [4990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 5, 0, 65), + [4992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 5, 0, 70), + [4994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 5, 0, 64), + [4996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_or_pattern, 2, 0, 0), + [4998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 2, 0, 0), + [5000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_captured_pattern, 3, 0, 0), + [5002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2309), + [5004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), + [5006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3670), + [5008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 6, 0, 70), + [5010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 3, 0, 64), + [5012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), + [5014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3478), + [5016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2632), + [5018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mut_pattern, 2, 0, 0), + [5020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), + [5022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 2, 0, 0), + [5024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 6, 0, 64), + [5026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1532), + [5028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 3, 0, 64), + [5030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), + [5032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_bounds, 3, 0, 0), + [5034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), + [5036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), + [5038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), + [5040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), + [5042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), + [5044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), + [5046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), + [5048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2167), + [5050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2154), + [5052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), + [5054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2958), + [5056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3561), + [5058] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_modifier, 2, 0, 0), + [5060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_bounds, 2, 0, 0), + [5062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), + [5064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), + [5066] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(2373), + [5069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 2, 0, 0), + [5071] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(2240), + [5074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), + [5076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), + [5078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), + [5080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), + [5082] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(81), + [5085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2, 0, 0), + [5087] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(82), + [5090] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(83), + [5093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2835), + [5095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), + [5097] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1, 0, 0), REDUCE(sym__pattern, 1, 0, 1), + [5100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), + [5102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_modifiers, 1, 0, 0), + [5104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2240), + [5106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), + [5108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), + [5110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2207), + [5112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), + [5114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), + [5116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), + [5118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_trait_bounds_repeat1, 2, 0, 0), + [5120] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_trait_bounds_repeat1, 2, 0, 0), SHIFT_REPEAT(884), + [5123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), + [5125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2661), + [5127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), + [5129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3156), + [5131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3532), + [5133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), + [5135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), + [5137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), + [5139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), + [5141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), + [5143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), + [5145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), + [5147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), + [5149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), + [5151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2151), + [5153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), + [5155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), + [5157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), + [5159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), + [5161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), + [5163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3566), + [5165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), + [5167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), + [5169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1157), + [5171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), + [5173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), + [5175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), + [5177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3071), + [5179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3028), + [5181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3243), + [5183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3703), + [5185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3271), + [5187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3569), + [5189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), + [5191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3044), + [5193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3567), + [5195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), + [5197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), + [5199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3694), + [5201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), + [5203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), + [5205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), + [5207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), + [5209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1226), + [5211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), + [5213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2186), + [5215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3522), + [5217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), + [5219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), + [5221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), + [5223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2817), + [5225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), + [5227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), + [5229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), + [5231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), + [5233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), + [5235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2206), + [5237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3568), + [5239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), + [5241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), + [5243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), + [5245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), + [5247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), + [5249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1234), + [5251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), + [5253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), + [5255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), + [5257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3720), + [5259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288), + [5261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3713), + [5263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), + [5265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), + [5267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), + [5269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), + [5271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), + [5273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), + [5275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), + [5277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), + [5279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), + [5281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 1, 0, 1), + [5283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), + [5285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), + [5287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 1, 0, 0), + [5289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), + [5291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3754), + [5293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3770), + [5295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1104), + [5297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3053), + [5299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 1, 0, 0), + [5301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(912), + [5303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3310), + [5305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2197), + [5307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3499), + [5309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1206), + [5311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), + [5313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3290), + [5315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), + [5317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 2, 0, 6), + [5319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), + [5321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2199), + [5323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), + [5325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3741), + [5327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3507), + [5329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2963), + [5331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2965), + [5333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3531), + [5335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), + [5337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2189), + [5339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3313), + [5341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3620), + [5343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), + [5345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), + [5347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3559), + [5349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3779), + [5351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3574), + [5353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3588), + [5355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), + [5357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2214), + [5359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), + [5361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), + [5363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3023), + [5365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3026), + [5367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 2, 0, 0), + [5369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(965), + [5371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3165), + [5373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 1, 0, 36), + [5375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), + [5377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3477), + [5379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), + [5381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), + [5383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), + [5385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), + [5387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), + [5389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), + [5391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), + [5393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2166), + [5395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), + [5397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), + [5399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), + [5401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1399), + [5403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), + [5405] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameters, 2, 0, 0), REDUCE(sym_tuple_struct_pattern, 3, 0, 64), + [5408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), + [5410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), + [5412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), + [5414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), + [5416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2204), + [5418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), + [5420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), + [5422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), + [5424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), + [5426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), + [5428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), + [5430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), + [5432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), + [5434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), + [5436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), + [5438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), + [5440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), + [5442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), + [5444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), + [5446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), + [5448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), + [5450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), + [5452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), + [5454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), + [5456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), + [5458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2475), + [5460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), + [5462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), + [5464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), + [5466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1617), + [5468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), + [5470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), + [5472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2109), + [5474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [5476] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameters, 3, 0, 0), REDUCE(sym_tuple_struct_pattern, 4, 0, 64), + [5479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), + [5481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), + [5483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), + [5485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 3, 0, 0), + [5487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 2, 0, 0), + [5489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), + [5491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), + [5493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_where_clause_repeat1, 2, 0, 0), + [5495] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_where_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(1429), + [5498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), + [5500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1994), + [5502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), + [5504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3500), + [5506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3229), + [5508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3698), + [5510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3295), + [5512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), + [5514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), + [5516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), + [5518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), + [5520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), + [5522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__use_clause, 1, 0, 0), + [5524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2334), + [5526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3730), + [5528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1680), + [5530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), + [5532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), + [5534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lifetime_parameter, 1, 0, 36), + [5536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), + [5538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), + [5540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), + [5542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2750), + [5544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), + [5546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), + [5548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3032), + [5550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1774), + [5552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3622), + [5554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, 0, 184), + [5556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), + [5558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), + [5560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), + [5562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), + [5564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2740), + [5566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), + [5568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2352), + [5570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), + [5572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 6, 0, 229), + [5574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 6, 0, 109), + [5576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2035), + [5578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), + [5580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 6, 0, 264), + [5582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), + [5584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), + [5586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), + [5588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), + [5590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2831), + [5592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1301), + [5594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3047), + [5596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), + [5598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_predicate, 2, 0, 118), + [5600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_predicate, 2, 0, 119), + [5602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), + [5604] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_unit_type, 2, 0, 0), REDUCE(sym_tuple_pattern, 2, 0, 0), + [5607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1116), + [5609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3001), + [5611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), + [5613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2, 0, 0), + [5615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2794), + [5617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), + [5619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), + [5621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2582), + [5623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 3, 0, 0), + [5625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), + [5627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 7, 0, 264), + [5629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 3, 0, 26), + [5631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), + [5633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2179), + [5635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), + [5637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), + [5639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), + [5641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, 0, 26), + [5643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1193), + [5645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), + [5647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), + [5649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2732), + [5651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), + [5653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), + [5655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3781), + [5657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3257), + [5659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3177), + [5661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3468), + [5663] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__pattern, 1, 0, 0), SHIFT(2035), + [5666] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__pattern, 1, 0, 0), SHIFT(357), + [5669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), + [5671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), + [5673] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1, 0, 0), REDUCE(sym__pattern, 1, 0, 0), + [5676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2950), + [5678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), + [5680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3687), + [5682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174), + [5684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), + [5686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 2, 0, 0), + [5688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), + [5690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), + [5692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, 0, 72), + [5694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), + [5696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), + [5698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), + [5700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), + [5702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), + [5704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2825), + [5706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), + [5708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), + [5710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1159), + [5712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), + [5714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, 0, 72), + [5716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, 0, 229), + [5718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3058), + [5720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3525), + [5722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), + [5724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, 0, 184), + [5726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2622), + [5728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), + [5730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), + [5732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__use_clause, 1, 0, 1), + [5734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2506), + [5736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3543), + [5738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3105), + [5740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2073), + [5742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3558), + [5744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, 0, 109), + [5746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), + [5748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), + [5750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), + [5752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1991), + [5754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), + [5756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), + [5758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), + [5760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), + [5762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), + [5764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2762), + [5766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2838), + [5768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), + [5770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2979), + [5772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(184), + [5774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), + [5776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2005), + [5778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, 0, 107), + [5780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), + [5782] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2, 0, 0), SHIFT_REPEAT(205), + [5785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3174), + [5787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1781), + [5789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1782), + [5791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1783), + [5793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1784), + [5795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1985), + [5797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2422), + [5799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2998), + [5801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3050), + [5803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3022), + [5805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), + [5807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), + [5809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), + [5811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2428), + [5813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2185), + [5815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), + [5817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2101), + [5819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1076), + [5821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2063), + [5823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), + [5825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2256), + [5827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2183), + [5829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), + [5831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3353), + [5833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2944), + [5835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(150), + [5837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_rule, 3, 0, 54), + [5839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), + [5841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), + [5843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), + [5845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), + [5847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), + [5849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2641), + [5851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2093), + [5853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), + [5855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), + [5857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2801), + [5859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), + [5861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), + [5863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1835), + [5865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), + [5867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1842), + [5869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), + [5871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1593), + [5873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_binding, 3, 0, 154), + [5875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), + [5877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), + [5879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2806), + [5881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1979), + [5883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3189), + [5885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2666), + [5887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2050), + [5889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2914), + [5891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(197), + [5893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), + [5895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1976), + [5897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3758), + [5899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1499), + [5901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), + [5903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), + [5905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), + [5907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), + [5909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2738), + [5911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), + [5913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), + [5915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2852), + [5917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), + [5919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3300), + [5921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_binding, 4, 0, 207), + [5923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2854), + [5925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), + [5927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), + [5929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), + [5931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), + [5933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2180), + [5935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), + [5937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 2, 0, 0), + [5939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), + [5941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509), + [5943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), + [5945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), + [5947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), + [5949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2064), + [5951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2053), + [5953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2067), + [5955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), + [5957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2580), + [5959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), + [5961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), + [5963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), + [5965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1978), + [5967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2, 0, 0), + [5969] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(2998), + [5972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), + [5974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), + [5976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2773), + [5978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2006), + [5980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_parameter, 4, 0, 117), + [5982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_slice_pattern_repeat1, 2, 0, 0), + [5984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1600), + [5986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), + [5988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2857), + [5990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(146), + [5992] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_slice_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(845), + [5995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), + [5997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), + [5999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2588), + [6001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), + [6003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), + [6005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), + [6007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), + [6009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1977), + [6011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3774), + [6013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), + [6015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), + [6017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), + [6019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3003), + [6021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), + [6023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), + [6025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), + [6027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2637), + [6029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), + [6031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3004), + [6033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), + [6035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2531), + [6037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), + [6039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3088), + [6041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3087), + [6043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2103), + [6045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1369), + [6047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, 0, 69), + [6049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), + [6051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1484), + [6053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), + [6055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), + [6057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 3, 0, 0), + [6059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1590), + [6061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1634), + [6063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), + [6065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), + [6067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), + [6069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), + [6071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2621), + [6073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), + [6075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2134), + [6077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), + [6079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1754), + [6081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), + [6083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), + [6085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2558), + [6087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), + [6089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), + [6091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), + [6093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2, 0, 0), + [6095] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2, 0, 0), SHIFT_REPEAT(889), + [6098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250), + [6100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1785), + [6102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2169), + [6104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, 0, 230), + [6106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), + [6108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), + [6110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), + [6112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), + [6114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), + [6116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2853), + [6118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2349), + [6120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2855), + [6122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2350), + [6124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), + [6126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), + [6128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), + [6130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), + [6132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), + [6134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3699), + [6136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3447), + [6138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3753), + [6140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), + [6142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), + [6144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2228), + [6146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), + [6148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2106), + [6150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), + [6152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), + [6154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), + [6156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2184), + [6158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2345), + [6160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), + [6162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2230), + [6164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), + [6166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), + [6168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), + [6170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2457), + [6172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2170), + [6174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), + [6176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), + [6178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), + [6180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), + [6182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), + [6184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), + [6186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), + [6188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), + [6190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 2, 0, 84), + [6192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), + [6194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2695), + [6196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), + [6198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), + [6200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), + [6202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2368), + [6204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), + [6206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2369), + [6208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 4, 0, 0), + [6210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), + [6212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2, 0, 0), + [6214] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1937), + [6217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), + [6219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2117), + [6221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2236), + [6223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3635), + [6225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), + [6227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2111), + [6229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), + [6231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), + [6233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1964), + [6235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), + [6237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3103), + [6239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1204), + [6241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), + [6243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3644), + [6245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3324), + [6247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3641), + [6249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2265), + [6251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), + [6253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1218), [6255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 2, 0, 0), - [6257] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2282), - [6260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), - [6262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), - [6264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), - [6266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), - [6268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2660), - [6270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), - [6272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2661), - [6274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_closure_parameters_repeat1, 2, 0, 0), - [6276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2214), - [6278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), - [6280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2198), - [6282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), - [6284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), - [6286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), - [6288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), - [6290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), - [6292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), - [6294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), - [6296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2215), - [6298] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_closure_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(812), - [6301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_struct_pattern_repeat1, 2, 0, 0), - [6303] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_struct_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(2370), - [6306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), - [6308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), - [6310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), - [6312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), - [6314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2704), - [6316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2707), - [6318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), - [6320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), - [6322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349), - [6324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), - [6326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3461), - [6328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), - [6330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), - [6332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), - [6334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3310), - [6336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2190), - [6338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2321), - [6340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), - [6342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), - [6344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), - [6346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 2, 0, 84), - [6348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), - [6350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), - [6352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), - [6354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2096), - [6356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), - [6358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), - [6360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3161), - [6362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), - [6364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 5, 0, 254), - [6366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), - [6368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), - [6370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 1, 0, 0), - [6372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_use_bounds_repeat1, 2, 0, 0), - [6374] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_use_bounds_repeat1, 2, 0, 0), SHIFT_REPEAT(3042), - [6377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 5, 0, 0), - [6379] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(398), - [6382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), - [6384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), - [6386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1896), - [6388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), - [6390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1950), - [6392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_lifetimes_repeat1, 2, 0, 0), - [6394] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_lifetimes_repeat1, 2, 0, 0), SHIFT_REPEAT(3336), - [6397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1157), - [6399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 4, 0, 109), - [6401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2049), - [6403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2694), - [6405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), - [6407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2044), - [6409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2700), - [6411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 1, 0, 0), - [6413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), - [6415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), - [6417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), - [6419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), - [6421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), - [6423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), - [6425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1721), - [6427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2596), - [6429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1720), - [6431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2597), - [6433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2598), - [6435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3526), - [6437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3338), - [6439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2599), - [6441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), - [6443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3215), - [6445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), - [6447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), - [6449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), - [6451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), - [6453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), - [6455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1093), - [6457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1470), - [6459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), - [6461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3244), - [6463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), - [6465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), - [6467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), - [6469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), - [6471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), - [6473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 2, 0, 0), - [6475] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 2, 0, 0), SHIFT_REPEAT(2277), - [6478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_pattern_repeat1, 2, 0, 0), - [6480] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(782), - [6483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 3, 0, 40), - [6485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), - [6487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2233), - [6489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), - [6491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), - [6493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2216), - [6495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), - [6497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), - [6499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), - [6501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 1, 0, 0), - [6503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 2, 0, 108), - [6505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), - [6507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2314), - [6509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), - [6511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3359), - [6513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), - [6515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2322), - [6517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2323), - [6519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2305), - [6521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2250), - [6523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2549), - [6525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), - [6527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), - [6529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), - [6531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3166), - [6533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), - [6535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), - [6537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2318), - [6539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3347), - [6541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), + [6257] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2287), + [6260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2755), + [6262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1267), + [6264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), + [6266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), + [6268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), + [6270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 1, 0, 0), + [6272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, 0, 185), + [6274] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, 0, 185), SHIFT_REPEAT(806), + [6277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), + [6279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), + [6281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2222), + [6283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), + [6285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), + [6287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_initializer_list_repeat1, 2, 0, 0), + [6289] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_initializer_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2241), + [6292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 1, 0, 0), + [6294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), + [6296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), + [6298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), + [6300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1490), + [6302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2711), + [6304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), + [6306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2713), + [6308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2239), + [6310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), + [6312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), + [6314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), + [6316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), + [6318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), + [6320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), + [6322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3659), + [6324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3293), + [6326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3723), + [6328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2218), + [6330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), + [6332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2071), + [6334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), + [6336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), + [6338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2743), + [6340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2746), + [6342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), + [6344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), + [6346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), + [6348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), + [6350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), + [6352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), + [6354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), + [6356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), + [6358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), + [6360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), + [6362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), + [6364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), + [6366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, 0, 26), + [6368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), + [6370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), + [6372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), + [6374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1156), + [6376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), + [6378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 2, 0, 0), + [6380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), + [6382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2259), + [6384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 2, 0, 11), + [6386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), + [6388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3043), + [6390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1705), + [6392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 5, 0, 254), + [6394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2243), + [6396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3183), + [6398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), + [6400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), + [6402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 1, 0, 0), + [6404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_use_bounds_repeat1, 2, 0, 0), + [6406] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_use_bounds_repeat1, 2, 0, 0), SHIFT_REPEAT(2862), + [6409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 2, 0, 0), + [6411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 2, 0, 43), + [6413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), + [6415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1755), + [6417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), + [6419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), + [6421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), + [6423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 3, 0, 126), + [6425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), + [6427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2365), + [6429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), + [6431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), + [6433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2338), + [6435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2354), + [6437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2326), + [6439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), + [6441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), + [6443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1779), + [6445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2611), + [6447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1778), + [6449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2612), + [6451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), + [6453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2613), + [6455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2614), + [6457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), + [6459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3284), + [6461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3245), + [6463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, 0, 0), + [6465] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(2155), + [6468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 3, 0, 0), + [6470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1871), + [6472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2110), + [6474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 3, 0, 1), + [6476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 3, 0, 97), + [6478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2357), + [6480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2362), + [6482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2367), + [6484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_as_clause, 3, 0, 98), + [6486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), + [6488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 3, 0, 0), + [6490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 3, 0, 99), + [6492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_as_clause, 3, 0, 100), + [6494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2171), + [6496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shorthand_field_initializer, 2, 0, 0), + [6498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), + [6500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), + [6502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), + [6504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3269), + [6506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), + [6508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 5, 0, 0), + [6510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3479), + [6512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3185), + [6514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), + [6516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 4, 0, 109), + [6518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), + [6520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 1, 0, 66), + [6522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), + [6524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, 0, 186), + [6526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shorthand_field_initializer, 1, 0, 0), + [6528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), + [6530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2182), + [6532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2337), + [6534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), + [6536] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2, 0, 0), SHIFT_REPEAT(457), + [6539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), + [6541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2216), [6543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 4, 0, 208), - [6545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), - [6547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2, 0, 0), - [6549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 4, 0, 0), - [6551] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2, 0, 0), SHIFT_REPEAT(881), - [6554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 4, 0, 170), - [6556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 4, 0, 0), - [6558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), - [6560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), - [6562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1951), - [6564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2989), - [6566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2, 0, 0), - [6568] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1909), - [6571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), - [6573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2767), - [6575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1952), - [6577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3082), - [6579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2772), - [6581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), - [6583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), - [6585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), - [6587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1667), - [6589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1838), - [6591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1665), - [6593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 2, 0, 11), - [6595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), - [6597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2223), - [6599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), - [6601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3271), - [6603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2338), - [6605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2339), - [6607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2340), - [6609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2341), - [6611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2342), - [6613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2343), - [6615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 3, 0, 126), - [6617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), - [6619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), - [6621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 2, 0, 0), - [6623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), - [6625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3295), - [6627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, 0, 0), - [6629] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(2102), - [6632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__condition, 1, 0, 9), - [6634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), - [6636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), - [6638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2830), - [6640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1822), - [6642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2559), - [6644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2095), - [6646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), - [6648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), - [6650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), - [6652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), - [6654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), - [6656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2089), - [6658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), - [6660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3680), - [6662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3420), - [6664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3729), - [6666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 2, 0, 0), - [6668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 2, 0, 42), - [6670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), - [6672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), - [6674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), - [6676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), - [6678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3537), - [6680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lifetime_parameter, 2, 0, 85), - [6682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1057), - [6684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), - [6686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3453), - [6688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1575), - [6690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1614), - [6692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1258), - [6694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1578), - [6696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1622), - [6698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), - [6700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1968), - [6702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), - [6704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2422), - [6706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_use_bounds_repeat1, 2, 0, 255), - [6708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), - [6710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3253), - [6712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_parameter, 6, 0, 211), - [6714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1577), - [6716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1598), - [6718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1989), - [6720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1971), - [6722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1084), - [6724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2143), - [6726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 3, 0, 158), - [6728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), - [6730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2217), - [6732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2790), - [6734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), - [6736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), - [6738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3701), - [6740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1967), - [6742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), - [6744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1094), - [6746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3514), - [6748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1568), - [6750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3206), - [6752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2689), - [6754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1582), - [6756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), - [6758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1571), - [6760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2818), - [6762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2031), - [6764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), - [6766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1981), - [6768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3255), - [6770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2575), - [6772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2057), - [6774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2086), - [6776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1976), - [6778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3530), - [6780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), - [6782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1069), - [6784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1988), - [6786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2138), - [6788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2208), - [6790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1061), - [6792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1992), - [6794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2084), - [6796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2087), - [6798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2083), - [6800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), - [6802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), - [6804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), - [6806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), - [6808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2137), - [6810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2196), - [6812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2079), - [6814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2141), - [6816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1091), - [6818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_doc_comment_marker, 1, 0, 3), - [6820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2078), - [6822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2088), - [6824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2077), - [6826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2081), - [6828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1584), - [6830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1586), - [6832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1156), - [6834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), - [6836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3053), - [6838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3428), - [6840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1985), - [6842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1588), - [6844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 3, 0, 0), - [6846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3260), - [6848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2070), - [6850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), - [6852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2580), - [6854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2617), - [6856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1576), - [6858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), - [6860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2403), - [6862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_doc_comment_marker, 1, 0, 2), - [6864] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 3, 0, 0), - [6866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), - [6868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 2, 0, 0), - [6870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 4, 0, 38), - [6872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), - [6874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3463), - [6876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3564), - [6878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3569), - [6880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3574), - [6882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 3, 0, 0), - [6884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1585), - [6886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1226), - [6888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3563), - [6890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2679), - [6892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), - [6894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), - [6896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1955), - [6898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3607), - [6900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3742), - [6902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3549), - [6904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), - [6906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3270), - [6908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2639), - [6910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2655), - [6912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2723), - [6914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_type, 3, 0, 74), - [6916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3279), - [6918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3282), - [6920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), - [6922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1961), - [6924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3663), - [6926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2688), - [6928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), - [6930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2713), - [6932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 1, 0, 0), - [6934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 3, 0, 0), - [6936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), - [6938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2735), - [6940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), - [6942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), - [6944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), - [6946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1959), - [6948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3708), - [6950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), - [6952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), - [6954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), - [6956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), - [6958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3690), - [6960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3734), - [6962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), - [6964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1809), - [6966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2450), - [6968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2882), - [6970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), - [6972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), - [6974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3085), - [6976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2239), - [6978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2287), - [6980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2268), - [6982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), - [6984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), - [6986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), - [6988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1496), - [6990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3497), - [6992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), - [6994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), - [6996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), - [6998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), - [7000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2593), - [7002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3528), - [7004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), - [7006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3390), - [7008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3053), - [7010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3171), - [7012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2459), - [7014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2847), - [7016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), - [7018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bracketed_type, 3, 0, 0), - [7020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), - [7022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2072), - [7024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3400), - [7026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2256), - [7028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3402), - [7030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3134), - [7032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2426), - [7034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2825), - [7036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2202), - [7038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2454), - [7040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), - [7042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2041), - [7044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2828), - [7046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3422), - [7048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), - [7050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), - [7052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), - [7054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), - [7056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), - [7058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2346), - [7060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3463), - [7062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2568), - [7064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3151), - [7066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1991), - [7068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), - [7070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3728), - [7072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inner_line_doc_comment_marker, 1, 0, 0), - [7074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), - [7076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), - [7078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1772), - [7080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), - [7082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), - [7084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__outer_line_doc_comment_marker, 1, 0, 0), - [7086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), - [7088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2538), - [7090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2292), - [7092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3364), - [7094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), - [7096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), - [7098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1774), - [7100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), - [7102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), - [7104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3144), - [7106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), - [7108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2231), - [7110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2701), - [7112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2554), - [7114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), - [7116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3176), - [7118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), - [7120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), - [7122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), - [7124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), - [7126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), - [7128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), - [7130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), - [7132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2464), - [7134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2407), - [7136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3386), - [7138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3438), - [7140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2267), - [7142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), - [7144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), - [7146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), - [7148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 3, 0, 181), - [7150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), - [7152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), - [7154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), - [7156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3746), - [7158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), - [7160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3377), - [7162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), - [7164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), - [7166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3378), - [7168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), - [7170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3740), - [7172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), - [7174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3562), - [7176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3548), - [7178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), - [7180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), - [7182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), - [7184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3743), - [7186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__line_doc_comment_marker, 1, 0, 2), - [7188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), - [7190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2286), - [7192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), - [7194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), - [7196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), - [7198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250), - [7200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), - [7202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), - [7204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2388), - [7206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3594), - [7208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3440), - [7210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), - [7212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), - [7214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2275), - [7216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), - [7218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3170), - [7220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), - [7222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1781), - [7224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1522), - [7226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3177), - [7228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), - [7230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3222), - [7232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__line_doc_comment_marker, 1, 0, 3), - [7234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3182), - [7236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2456), - [7238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), - [7240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), - [7242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2644), - [7244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3187), - [7246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1953), - [7248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), - [7250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3140), - [7252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), - [7254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2657), - [7256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2497), - [7258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), - [7260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3719), - [7262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2378), - [7264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3219), - [7266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1204), - [7268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3221), - [7270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), - [7272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3250), - [7274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), - [7276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3190), - [7278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), - [7280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2669), - [7282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), - [7284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), - [7286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), - [7288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3529), - [7290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), - [7292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3276), - [7294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2453), - [7296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), - [7298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3593), - [7300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3285), - [7302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), - [7304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3288), - [7306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3275), - [7308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3287), - [7310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2659), - [7312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3576), - [7314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2695), - [7316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1957), - [7318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1956), - [7320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3490), - [7322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), - [7324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1499), - [7326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), - [7328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 2, 0, 77), - [7330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), - [7332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), - [7334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2281), - [7336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 2, 0, 78), - [7338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), - [7340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3623), - [7342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), - [7344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), - [7346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), - [7348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), - [7350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1632), - [7352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2225), - [7354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), - [7356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), - [7358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), - [7360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2368), - [7362] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [7364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), - [7366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), - [7368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2383), - [7370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2943), - [7372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1566), - [7374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), - [7376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), - [7378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2842), - [7380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3546), - [7382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), - [7384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), - [7386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1731), - [7388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2773), - [7390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1960), - [7392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1958), - [7394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3608), - [7396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), - [7398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2786), - [7400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3632), - [7402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), - [7404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3642), - [7406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3647), - [7408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3650), - [7410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2374), - [7412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), - [7414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), - [7416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3680), - [7418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), - [7420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), - [7422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2557), - [7424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3403), - [7426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), - [7428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3690), - [7430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), - [7432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3741), - [7434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), - [7436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3703), - [7438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3464), - [7440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), - [7442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1954), - [7444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_line_comment, 3, 0, 14), - [7446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_line_comment, 3, 0, 0), - [7448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_comment, 3, 0, 15), - [7450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_comment, 3, 0, 0), - [7452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_comment, 2, 0, 0), - [7454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_line_comment, 2, 0, 0), - [7456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_comment, 4, 0, 59), + [6545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1965), + [6547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2924), + [6549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 3, 0, 155), + [6551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), + [6553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 3, 0, 156), + [6555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), + [6557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_struct_pattern_repeat1, 2, 0, 0), + [6559] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_struct_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(2445), + [6562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3393), + [6564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), + [6566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), + [6568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2372), + [6570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2374), + [6572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2353), + [6574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2375), + [6576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2347), + [6578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2361), + [6580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), + [6582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2286), + [6584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3190), + [6586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3379), + [6588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), + [6590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 3, 0, 72), + [6592] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(402), + [6595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2491), + [6597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), + [6599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), + [6601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_closure_parameters_repeat1, 2, 0, 0), + [6603] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_closure_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(815), + [6606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2567), + [6608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), + [6610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1966), + [6612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_lifetimes_repeat1, 2, 0, 0), + [6614] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_lifetimes_repeat1, 2, 0, 0), SHIFT_REPEAT(3325), + [6617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2079), + [6619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2754), + [6621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2061), + [6623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2757), + [6625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), + [6627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 4, 0, 0), + [6629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1372), + [6631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1522), + [6633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), + [6635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), + [6637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__condition, 1, 0, 9), + [6639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 2, 0, 0), + [6641] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 2, 0, 0), SHIFT_REPEAT(2280), + [6644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 3, 0, 40), + [6646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), + [6648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2253), + [6650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_pattern_repeat1, 2, 0, 0), + [6652] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(788), + [6655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), + [6657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1696), + [6659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1723), + [6661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1681), + [6663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), + [6665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), + [6667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 4, 0, 170), + [6669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), + [6671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), + [6673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2245), + [6675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), + [6677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), + [6679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2503), + [6681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), + [6683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), + [6685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), + [6687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), + [6689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), + [6691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), + [6693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), + [6695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3200), + [6697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), + [6699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2221), + [6701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), + [6703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3295), + [6705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 2, 0, 108), + [6707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), + [6709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), + [6711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), + [6713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2578), + [6715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2105), + [6717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2355), + [6719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), + [6721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), + [6723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), + [6725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3709), + [6727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3449), + [6729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3759), + [6731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), + [6733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3719), + [6735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3452), + [6737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3765), + [6739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), + [6741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), + [6743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), + [6745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3311), + [6747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2413), + [6749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), + [6751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1070), + [6753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1596), + [6755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1616), + [6757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), + [6759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), + [6761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1599), + [6763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1635), + [6765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), + [6767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1981), + [6769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_use_bounds_repeat1, 2, 0, 255), + [6771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), + [6773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_doc_comment_marker, 1, 0, 2), + [6775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3775), + [6777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3551), + [6779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1586), + [6781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1609), + [6783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2009), + [6785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1983), + [6787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1117), + [6789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2158), + [6791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1993), + [6793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), + [6795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), + [6797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2261), + [6799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_parameter, 6, 0, 211), + [6801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lifetime_parameter, 2, 0, 85), + [6803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 2, 0, 0), + [6805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3436), + [6807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1585), + [6809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2642), + [6811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), + [6813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1995), + [6815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), + [6817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3515), + [6819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2734), + [6821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1573), + [6823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3219), + [6825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1574), + [6827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2697), + [6829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2104), + [6831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3281), + [6833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1998), + [6835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2699), + [6837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_doc_comment_marker, 1, 0, 3), + [6839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), + [6841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), + [6843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 3, 0, 0), + [6845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1086), + [6847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2007), + [6849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3144), + [6851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3710), + [6853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2133), + [6855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2248), + [6857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1068), + [6859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2001), + [6861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), + [6863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1370), + [6865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1415), + [6867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2091), + [6869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 3, 0, 0), + [6871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2096), + [6873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2100), + [6875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3573), + [6877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3508), + [6879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), + [6881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3570), + [6883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2132), + [6885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2252), + [6887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2094), + [6889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2135), + [6891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349), + [6893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), + [6895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), + [6897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 1, 0, 0), + [6899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2097), + [6901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2099), + [6903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2092), + [6905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2089), + [6907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1592), + [6909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1594), + [6911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), + [6913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2023), + [6915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1598), + [6917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2046), + [6919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3291), + [6921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), + [6923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2777), + [6925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2634), + [6927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2723), + [6929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2673), + [6931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), + [6933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1597), + [6935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), + [6937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3537), + [6939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2401), + [6941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), + [6943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), + [6945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_type, 3, 0, 74), + [6947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3556), + [6949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), + [6951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 3, 0, 158), + [6953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), + [6955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3560), + [6957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3572), + [6959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1601), + [6961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2085), + [6963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 3, 0, 0), + [6965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2670), + [6967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 4, 0, 38), + [6969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), + [6971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3301), + [6973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1373), + [6975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2583), + [6977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2679), + [6979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1982), + [6981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), + [6983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3592), + [6985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), + [6987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3314), + [6989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1974), + [6991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3692), + [6993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2709), + [6995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), + [6997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2737), + [6999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 3, 0, 0), + [7001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), + [7003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3565), + [7005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2756), + [7007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), + [7009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), + [7011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1968), + [7013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3738), + [7015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), + [7017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), + [7019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), + [7021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), + [7023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), + [7025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3732), + [7027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3767), + [7029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1971), + [7031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3539), + [7033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3204), + [7035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3107), + [7037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2247), + [7039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2268), + [7041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2270), + [7043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), + [7045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), + [7047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), + [7049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2402), + [7051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3780), + [7053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), + [7055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), + [7057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3366), + [7059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3425), + [7061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), + [7063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3195), + [7065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), + [7067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161), + [7069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3375), + [7071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), + [7073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2615), + [7075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2087), + [7077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2577), + [7079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2295), + [7081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3384), + [7083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3431), + [7085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2385), + [7087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2842), + [7089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2224), + [7091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2386), + [7093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), + [7095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), + [7097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2664), + [7099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), + [7101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), + [7103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3772), + [7105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), + [7107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2473), + [7109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2585), + [7111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3192), + [7113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3527), + [7115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), + [7117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), + [7119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2941), + [7121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2250), + [7123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1827), + [7125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), + [7127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), + [7129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1973), + [7131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), + [7133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2543), + [7135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), + [7137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), + [7139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2304), + [7141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3413), + [7143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2398), + [7145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1829), + [7147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3244), + [7149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), + [7151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1970), + [7153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2542), + [7155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3051), + [7157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), + [7159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), + [7161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2655), + [7163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), + [7165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), + [7167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2550), + [7169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3776), + [7171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2455), + [7173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), + [7175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), + [7177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), + [7179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), + [7181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), + [7183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3777), + [7185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1284), + [7187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2307), + [7189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), + [7191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), + [7193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3464), + [7195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), + [7197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3144), + [7199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3555), + [7201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3612), + [7203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), + [7205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), + [7207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inner_line_doc_comment_marker, 1, 0, 0), + [7209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), + [7211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), + [7213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), + [7215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), + [7217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), + [7219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3587), + [7221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3401), + [7223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), + [7225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), + [7227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__outer_line_doc_comment_marker, 1, 0, 0), + [7229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), + [7231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3296), + [7233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3282), + [7235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3589), + [7237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1671), + [7239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 2, 0, 77), + [7241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3778), + [7243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), + [7245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), + [7247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), + [7249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), + [7251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1483), + [7253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 2, 0, 78), + [7255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__line_doc_comment_marker, 1, 0, 2), + [7257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3232), + [7259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1839), + [7261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), + [7263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), + [7265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), + [7267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2282), + [7269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2790), + [7271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), + [7273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3524), + [7275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2246), + [7277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2447), + [7279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), + [7281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3194), + [7283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3201), + [7285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), + [7287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3253), + [7289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1518), + [7291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), + [7293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2663), + [7295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3213), + [7297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bracketed_type, 3, 0, 0), + [7299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), + [7301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), + [7303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), + [7305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3659), + [7307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), + [7309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2488), + [7311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), + [7313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), + [7315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3725), + [7317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2290), + [7319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3629), + [7321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3137), + [7323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3248), + [7325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), + [7327] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [7329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3252), + [7331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2002), + [7333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), + [7335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3275), + [7337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1387), + [7339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), + [7341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2691), + [7343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), + [7345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), + [7347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), + [7349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), + [7351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), + [7353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3549), + [7355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2441), + [7357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3308), + [7359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), + [7361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3605), + [7363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3317), + [7365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3320), + [7367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3307), + [7369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3319), + [7371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), + [7373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), + [7375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2717), + [7377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1969), + [7379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), + [7381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1975), + [7383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3516), + [7385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), + [7387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), + [7389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), + [7391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), + [7393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3644), + [7395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), + [7397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), + [7399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2344), + [7401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), + [7403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), + [7405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3720), + [7407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), + [7409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), + [7411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3080), + [7413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), + [7415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), + [7417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), + [7419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), + [7421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1787), + [7423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__line_doc_comment_marker, 1, 0, 3), + [7425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), + [7427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), + [7429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), + [7431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), + [7433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), + [7435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3573), + [7437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3203), + [7439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2426), + [7441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), + [7443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), + [7445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), + [7447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3055), + [7449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), + [7451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), + [7453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), + [7455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), + [7457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), + [7459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2792), + [7461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1967), + [7463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1972), + [7465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3636), + [7467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), + [7469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2805), + [7471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3661), + [7473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413), + [7475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1735), + [7477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3671), + [7479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3676), + [7481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3679), + [7483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), + [7485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), + [7487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3709), + [7489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2575), + [7491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3433), + [7493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1561), + [7495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3719), + [7497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), + [7499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1468), + [7501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2527), + [7503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3489), + [7505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3417), + [7507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3732), + [7509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2452), + [7511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3734), + [7513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2291), + [7515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 3, 0, 181), + [7517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), + [7519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), + [7521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2045), + [7523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_comment, 3, 0, 15), + [7525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_comment, 4, 0, 59), + [7527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_line_comment, 3, 0, 0), + [7529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_line_comment, 3, 0, 14), + [7531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_line_comment, 2, 0, 0), + [7533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_comment, 3, 0, 0), + [7535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_comment, 2, 0, 0), }; enum ts_external_scanner_symbol_identifiers {